.special-footer-1 {
    padding: 30px 0;
}

section:has(footer) {
    background: #eff0f7;
}

.special-footer-1__top {
    display: flex;
    justify-content: space-between;
    gap: 100px;
    align-items: flex-end;
    padding-bottom: 30px;
    position: relative;
    margin-bottom: 30px;
}

.special-footer-1__top::after {
    content: '';
    background: #e0e2ec;
    width: 100%;
    height: 1px;
    border-radius: 50px;
    position: absolute;
    bottom: 0;
    left: 0;
}

.special-footer-1__logos {
    display: flex;
    gap: 16px;
    align-items: center;
}

.special-footer-1__logo-img {
    object-fit: contain;
}

.special-footer-1__logo-1 .special-footer-1__logo-img {
    width: 154px;
    height: 60px;
}

.special-footer-1__logo-2 .special-footer-1__logo-img {
    width: 177px;
    height: 60px;
}

.special-footer-1__bottom {
    display: flex;
    gap: 100px;
    align-items: center;
    justify-content: space-between;
}

.special-footer-1__copyright,
.special-footer-1__menu li *{
    font-weight: 400;
    font-size: 13px;
    line-height: 1.6;
    letter-spacing: 0.03em;
    color: #9aa4ac;
    transition: all 0.3s ease;
}

.special-footer-1__menu li:hover a {
    color: #000;
}

.special-footer-1__menu ul {
    padding-left: 0;
    list-style: none;
    display: flex;
    gap: 36px;
    align-items: center;
    flex-wrap: wrap;
}

.special-footer-1__socials {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.special-footer-1__social-link {
    transition: all 0.3s ease;
    display: flex;
}

.special-footer-1__social-link:hover {
    transform: scale(1.1);
}

.special-footer-1__social-icon {
    width: 30px;
    height: 30px;
}

@media screen and (max-width: 1024.98px) {
    .special-footer-1 {
        padding: 50px 0 30px 0;
    }

    .special-footer-1__top {
        flex-direction: column;
        gap: 26px;
        align-items: center;
    }

    .special-footer-1__bottom {
        flex-direction: column-reverse;
        gap: 20px;
    }

    .special-footer-1__menu ul {
        column-gap: 36px;
        row-gap: 20px;
        align-items: center;
        justify-content: center;
    }
}

@media screen and (max-width: 599.98px) {
    .special-footer-1__logos {
        gap: 10px;
    }

    .special-footer-1__logo-1 .special-footer-1__logo-img {
        width: 103px;
        height: 40px;
    }

    .special-footer-1__logo-2 .special-footer-1__logo-img {
        width: 118px;
        height: 40px;
    }
}