.footer {
    background: #001527;
    padding: 100px 135px 120px 135px;
}


.footer__wrapper {
    display: flex;
    justify-content: space-between;
    gap: 100px;
    align-items: center;
}

.footer__inner-wrapper {
    align-items: center;
    display: flex;
    gap: 93px;
    justify-content: space-between;
}

.footer__site-logo {
    display: flex;
    flex-basis: 169px;
    flex-shrink: 0;
}

.footer__nav-menu ul {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
}

.footer__nav-menu a {
    color: #FFF;
    font-weight: 700;
    font-size: 16px;
    position: relative;
}

.footer__nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 0;
    width: 100%;
    height: 8px;
    background: red;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.3s ease;
}

.footer__nav-menu a:hover::after {
    transform: scaleX(1);
}

.footer__socials {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.footer__social {
    flex-basis: 25px;
    display: flex;
    transition: all 0.3s ease-out;
}

.footer__social:hover {
    transform: scale(1.2);
}

.footer__social img{
    object-fit: contain;
    width: 100%;
    height: auto;
}

@media screen and (max-width: 1440.98px) {
    .footer {
        padding: 100px 135px 70px 135px;
    }
}

@media screen and (max-width: 1199.98px) {
    .footer {
        padding: 100px 0px 70px 0px;
    }
}

@media screen and (max-width: 1024.98px) {
    .footer {
        padding: 100px 0px 46px 0px;
    }

    .footer__wrapper {
        flex-direction: column;
        gap: 49px;
    }

    .footer__inner-wrapper {
        width: 100%;
        padding-left: 74px;
    }

    .footer__socials {
        width: 100%;
        justify-content: flex-end;
    }
}

@media screen and (max-width: 767.98px) {
    .footer__inner-wrapper {
        padding-left: 0;
        gap: 50px;
    }

}

@media screen and (max-width: 599.98px) {
    .footer__socials {
        justify-content: center;
    }

    .footer__wrapper {
        gap: 125px
    }

    .footer__inner-wrapper {
     flex-direction: column;
        gap: 123px;
        align-items: center;
    }

    .footer__site-logo {
        flex-basis: 100%;
        width: 169px;
        height: auto;
    }

    .footer {
        padding: 81px 0 25px 0;
    }
}