.footer .footer__top {
    padding: 40px 0;
    background-color: #D2B881;
}

.footer .footer__logo {
    max-width: 300px;
    margin: auto;
}

.footer .footer__social--link img {
    width: 48px;
    height: auto;
}

.footer .footer__container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
}

.footer .footer__menu {
    display: flex;
    align-items: center;
    gap: 40px;
}

.footer .footer__social {
    display: flex;
    align-self: center;
    gap: 24px;
}

.footer .footer__menu--link {
    font-style: normal;
    font-weight: 300;
    font-size: 20px;
    line-height: 24px;
    position: relative;
    transition: all 0.3s;
}

.footer .footer__menu--link:after {
    display: block;
    content: "";
    width: 0%;
    height: 1px;
    background-color: #092646;
    position: absolute;
    top: 100%;
    left: 0;
    transition: all 0.3s;
}

.footer .footer__menu--link:hover:after {
    width: 100%;
    transition: all 0.3s ;
}

.footer .footer__social--link img {
    transition: all 0.3s;
}

.footer .footer__social--link:hover img {
    transform: scale(1.08);
    transition: all 0.3s;
}

.footer .footer__bottom {
    background: linear-gradient(180deg, #0B3869 0%, #092646 100%);
    padding: 20px 0;
}

.footer .footer__bottom--item-img img {
    height: 18px;
    width: auto;
}

.footer .footer__bottom--list {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
}

.footer .footer__bottom--item,
.footer .footer__bottom--item a {
    font-style: normal;
    font-weight: 300;
    font-size: 16px;
    line-height: 21px;

    color: #FFFFFF;

    display: flex;
    align-items: self-end;
    gap: 8px;
}

@media screen and (max-width: 576px) {
    .footer .footer__bottom--list {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer .footer__bottom--item, .footer .footer__bottom--item a {
        align-items: self-start;
    }

    .footer .footer__container {
        gap: 48px;
    }
}