@charset "utf-8";

.main_footer {
    border-radius: 88px 88px 0px 0px;
    background: #1E1E1E;
    margin: 0 auto;
    font-size: 14px;
    color: #fff;
    overflow: hidden;
}
.main_footer_inner {
    max-width: 1588px;
    padding: 72px 20px 142px;
    box-sizing: content-box;
    margin: 0 auto;
}
.footer_logo {
    width: 208px;
    margin: 0 auto;
}
.footer_menu {
    max-width: 757px;
    margin: 68px auto 73px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.footer_image {
    position: relative;
    max-width: 1568px;
    height: 270px;
    overflow: hidden;
    border-radius: 46px;
}
.footer_image_bg {
    width: 100%;
    height: 270px;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    z-index: 1;
    transition: transform 20s;
}
.footer_pallete {
    width: 267px;
    height: 70px;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    z-index: 2;
    opacity: 0.3;
    transition: opacity 0.5s;
}
.footer_image:hover .footer_pallete {opacity: 1;}
.footer_image:hover .footer_image_bg {transform: scale(2,2);}
@media screen and (max-width: 1200px) {
    .main_footer {border-radius: 66px 66px 0 0;}
}@media screen and (max-width: 900px) {
    .footer_menu {max-width: 600px;}
    .main_footer {border-radius: 55px 55px 0 0;}
}
@media screen and (max-width: 700px) {
    .main_footer {border-radius: 32px 32px 0 0;  }
    .main_footer_inner {padding: 80px 36px 56px;}
    .footer_menu {
        flex-direction: column;
        padding: 0px 16px;
        margin: 52px auto;
    }
    .footer_menu_link {
        height: 43px;
        padding-bottom: 12px;
        box-sizing: border-box;
        width: 100%;
        border-bottom: 2px solid #6E6767;
        display: flex;
        align-items: center;
    }
    .footer_menu_link:not(:last-child) {margin-bottom: 24px;}
    .footer_menu_link:after {
        content: '';
        display: block;
        background: url(../img/arrow_white.png) center center / cover no-repeat;
        width: 11px;
        height: 10px;
        margin-left: auto;
    }
    .footer_logo {width: 124px;}
    .footer_image {
        width: 320px;
        height: 136px;
        margin: 0 auto;
        border-radius: 16px;
    }
    .footer_pallete {
        width: 133px;
        height: 35px;
    }
    .footer_image_bg {height: 100%;}
}