
/* весь футер */
.footer {
    background-color: white;
    position: relative;
}

/* основной блок линии */
.footer-line {
    max-width: 1230px;
    margin-inline: auto;
    margin-top: 0px;
    margin-bottom: 20px;
}

/* сетка элементов */
.footer-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

/* ширина карточек */
.footer-grid>div {
    width: 300px;
}

/* заголовки */
.footer h5 {
    margin-bottom: 0.5em;
    font-size: 1.2em;
    font-weight: 500;
    color: #212529;
    text-align: left;
}
/* описание */
.footer-grid p {
    margin-block: 0;
    padding-right: 45px;
    font-size: 1em;
    color: #6c757d;
    text-align: left;
}
/* ссылки */
.footer-grid a {
    color: #6c757d;
    text-decoration: none;
}
.perehodi>a {
    display: block;
    margin-bottom: 4px;
}
.footer-grid a:hover {
    color: #555555;
}

/* значки */
.footer_ds {
    width: 30px;
    height: auto;
    transition: .15s;
}
.footer_vk {
    width: 35px;
    height: auto;
    position: relative;
    bottom: 7px;
    margin-left: 10px;
    transition: .15s;
}
.footer_ds:hover,
.footer_vk:hover {
    filter: brightness(65%);
}

/* линия с правами © */
.footerRights {
    color: #6c757d;
    background-color: white;
    margin-top: 10px;
}
.footerRights>p {
    margin: 0;
    font-size: 0.84em;
    max-width: 1230px;
    min-width: 300;
}

@media (max-width: 1246px){
    .footerRights {
        margin-inline: 4vw;
    }
}