.footer {

}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding-top: 65px;
    border-top: 1px solid #C0C2C6;
    /* gap: 80px; */
}

.footer-left {

}
.footer-logo {
    width: 100%;
    max-width: 173px;
}
.footer-logo img {
    display: block;
    width: 100%;
}

.footer-right {
    width: calc(100% - 290px);
    max-width: 900px;
}

.footer-menu_item-data {
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.footer-menu_item {
    display: flex;
    flex-direction: column;
}
.footer-menu_item-title {
    padding-bottom: 31px;
}

.footer-social_icons {
    display: flex;
    gap: 20px;
}
.footer-social_icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 40px;
    background: #E9E9E9;
}
.footer-social_icon svg {
    display: block;
}

.footer-social_email {
    margin-top: 12px;
}

.footer-copyright {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin-top: 110px;
    padding: 16px 0 24px 0;
    border-top: 1px solid #E9E9E9;
    gap: 40px;
}
.footer-copyright_right {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 30px;
}
.footer-copyright_right a {
    display: block;
}
.footer-copyright_right a svg {
    display: block;
}

.footer-copyright_center {
	justify-content: center;
}

.footer-mobile_logo {
    display: none;
}
.footer-mobile_logo img {
    display: block;
    width: 100%;
    max-width: 112px;
}

@media (max-width: 992px) {
    .footer-content {
        padding-top: 33px;
    }

    .footer-left {
        display: none;
    }
    .footer-right {
        display: flex;
        justify-content: center;
        width: 100%;
        max-width: 100%;
    }
    .footer-menu {
        display: flex;
        flex-direction: column-reverse;
        align-items: center;
        width: 100%;
        max-width: 525px;
        border-bottom: 1px solid #E9E9E9;
    }

    .footer-social {
        margin-bottom: 32px;
        align-items: center;
        gap: 0;
    }
    .footer-social_icons {
        gap: 14px;
    }

    .footer-menu_item-data {
        padding: 10px 0 20px 0;
    }

    .footer-menu_item:not(.footer-social) {
        width: 100%;
        overflow: hidden;
    }
    .footer-menu_item.show:not(.footer-social) {

    }
    .footer-menu_item-title:not(.footer-social_title) {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 8px 0;
        border-top: 1px solid #E9E9E9;
        font-weight: 500;
        cursor: pointer;
    }
    .footer-menu_item-title:not(.footer-social_title):after {
        content: '';
        display: block;
        width: 24px;
        height: 24px;
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16' fill='none'%3E%3Cg clip-path='url(%23clip0_2009_3022)'%3E%3Cpath d='M2.5 8H13.5' stroke='%231E1E1E' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M8 2.5V13.5' stroke='%231E1E1E' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_2009_3022'%3E%3Crect width='16' height='16' fill='white'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E");
        background-position: center;
        background-repeat: no-repeat;
    }
    .footer-menu_item.active .footer-menu_item-title:not(.footer-social_title):after {
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16' fill='none'%3E%3Cg clip-path='url(%23clip0_2012_10576)'%3E%3Cpath d='M2.5 8H13.5' stroke='%231E1E1E' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_2012_10576'%3E%3Crect width='16' height='16' fill='white'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E");
    }

    .footer-mobile_logo {
        display: flex;
        margin-top: 40px;
        justify-content: center;
    }

    .footer-copyright {
        justify-content: center;
        margin-top: 40px;
        padding: 14px 0;
    }
    .footer-copyright_left {
        font-size: 12px;
        font-weight: 400;
        line-height: 14px;
    }
    .footer-copyright_right {
        display: none;
    }
}