.site_footer {
    background-color: var(--color_black_3);
    color: var(--color_gray_2);
    font-family: var(--font_inter_regular);
    font-size: 16px;
    line-height: 1.5;
    padding: 47px 0
}

.site_footer .footer_top {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 30px 50px;
    justify-content: space-between
}

.site_footer .footer_logo {
    width: 165px
}

.site_footer .footer_logo a {
    display: flex;
    flex-wrap: wrap
}

.site_footer .footer_bottom {
    align-items: center;
    border-top: 1px solid var(--color_black_4);
    display: flex;
    flex-wrap: wrap;
    gap: 20px 50px;
    justify-content: space-between;
    margin-top: 31px;
    padding-top: 31px
}

.site_footer .footer_menu {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 32px;
    list-style-type: none;
    margin: 0;
    padding: 0
}

.site_footer .footer_menu .menu-item a {
    color: var(--color_gray_2);
    font-family: var(--font_inter_semibold)
}

.site_footer .footer_menu .menu-item a:hover {
    color: var(--color_black_6)
}

.site_footer .footer_menu .menu-item.current-menu-item a {
    color: var(--color_black_6);
    pointer-events: none
}

.site_footer .social_links_list {
    display: flex;
    flex-wrap: wrap;
    gap: 24px
}

.site_footer .social_links_list .item a {
    display: flex;
    flex-wrap: wrap
}

.site_footer .social_links_list .item a svg path {
    transition: all .5s ease
}

.site_footer .social_links_list .item a:hover svg path {
    fill: var(--color_white)
}

@media (max-width:1199px) {
    .site_footer {
        padding: 36px 0
    }
}

@media (max-width:991px) {
    .site_footer {
        font-size: 14px
    }

    .site_footer .footer_bottom {
        margin-top: 25px;
        padding-top: 25px
    }

    .site_footer .footer_menu,
    .site_footer .social_links_list {
        justify-content: center
    }
}

@media (max-width:767px) {

    .site_footer .footer_bottom,
    .site_footer .footer_top {
        flex-direction: column;
        justify-content: center
    }

    .site_footer .footer_bottom {
        text-align: center
    }

    .site_footer .footer_bottom .footer_bottom_left {
        order: 2
    }

    .site_footer .footer_bottom .footer_bottom_right {
        order: 1
    }
}

@media (max-width:575px) {
    .site_footer .footer_bottom .copyright_text {
        font-size: 13px
    }
}

/*# sourceMappingURL=footer.css.map */