/* FOOTER */
.footer {
    background: #161616;
    padding: 65px 48px;
}


.footer-content {
    font-size: 20px;
    font-family: 'Open Sans', sans-serif;
    line-height: 1.2;
    color: white;
    max-width: 1600px;
    margin: 0 auto;
}

.footer-content .custom-logo {
    width: 150px;
    height: auto;
}


.footer-blocks {
    display: grid;
    grid-template-columns: .5fr 1fr 1fr;
    column-gap: 200px;
    margin-top: 10px;
}


.footer-center {
    align-self: center;
}

.footer-right {
    justify-self: end;
}

.footer-title {
    margin-bottom: 25px;
    font-size: 24px;
    font-weight: 600;
}

.footer-button {
    display: inline-block;
    padding: 13px 31px 14px;
    border: 2px solid #fbce00;
    text-transform: uppercase;
    font-size: 24px;
    font-weight: 600;
}

.footer-logo {
    margin-bottom: 41px;
}

.menu-item_footer {
    margin-top: 14px;
}

.menu-item_footer a {
    position: relative;
    padding: 2px 0;
    /* border-bottom: 3px solid transparent;
    text-decoration: none;   */
    transition: all .2s ease-out;
}

.menu-item_footer a:before {
    top: 24px;
}

.menu-item_footer a:focus:before,
.menu-item_footer a:hover:before {
    content: "";
    position: absolute;
    width: 50%;
    background: #fbce00;
    top: 24px;
    border-bottom: 3px solid #fbce00;
    height: 0;
}

.menu-item_footer a:active:before {
    background: white;
}

.social-item_footer:hover {
    filter: unset
}

.footer-social .twitter {
    margin-right: 15px;
}


.legal-content {
    margin: 26px 0 0;
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    line-height: 1.5;
}

.footer-social {
    display: flex;
    justify-content: flex-end;
}

.link-separator {
    display: inline-block;
    margin: 0 12px;
}


@media(max-width: 1120px) {
    .footer-blocks {
        column-gap: 150px;
    }
}

@media(max-width: 940px) {
    .footer-blocks {
        column-gap: 50px;
    }
}

@media(max-width: 768px) {
    .footer-blocks {
        display: block;
    }

    .footer-center {
        margin: 20px 0;
    }

    .footer-social {
        justify-content: flex-start;
    }
}

@media(max-width: 650px) {

    .footer-right {
        margin-top: 20px
    }
}

@media(max-width: 640px) {
    .footer-center {
        position: absolute;
        margin: 0;
        top: -4px;
        right: 0;
    }

    .footer-blocks {
        position: relative;
    }

    .footer-social {
        display: none;
    }
}

@media(max-width: 560px) {
    .footer-content {
        font-size: 16px;
    }

    .footer-blocks {
        display: block;
        margin-top: 25px
    }

    .footer-right {
        margin-top: 20px
    }
}

@media(max-width: 455px) {
    .footer {
        padding-right: 20px;
        padding-left: 20px;
    }
}

@media(max-width: 400px) {
    .footer-button {
        padding: 10px 20px 10px;
    }

    .footer-title {
        font-size: 16px;
    }
}

/* /FOOTER */