.footer {
    padding-top: 3rem;
    padding-bottom: 3rem;

    display: grid;
    grid-template-columns: 1fr 3fr 1fr;
    column-gap: 4rem;
}

.footer__box-1 {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.footer__box-11 {
    display: flex;
    flex-direction: column;
    row-gap: 1em;
}

.footer__logo-text {
    font-size: calc(14px + (16 - 14) * (100vw - 320px) / (1920 - 320));
}

.footer-socials__ul {
    display: flex;
    align-items: center;
    column-gap: 1rem;
}

.footer-socials__link:hover .footer-socials__icon {
    fill: rgba(0, 0, 0, 0.5);
}

.footer-socials__icon {
    transition: fill 0.5s ease-in-out;
}

.footer-contacts {
    display: flex;
    flex-direction: column;
    row-gap: 1.5em;
}

.footer-contacts__item {
    display: flex;
    column-gap: 1em;
}

.footer-contacts__item-box-1 {
    display: flex;
    flex-direction: column;
    row-gap: 0.5em;
}

.footer-contacts__item-text {
    font-size: calc(14px + (16 - 14) * (100vw - 320px) / (1920 - 320));

    color: #5e5e5e;

    transition: opacity 0.5s ease-in-out;
}

.footer-contacts__item-text:hover {
    opacity: 0.75;
}

.footer-contacts__item-text.footer-contacts__item-text_accent {
    font-weight: 600;

    color: var(--accent-color);

    cursor: pointer;
}
