
/* footer */
footer {
    padding-top: 60px;
    padding-bottom: 44px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    position: relative;
    background: #1E3753;
}
.footer_container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    border-bottom: 1px solid rgb(223 227 227 / 50%);
}

.copyright {
    max-width: 630px;
    margin: 0 auto;
    padding: 0 1rem;
}
.copyright span {
    font-family: 'Inter', sans-serif;
    font-style: italic;
    font-weight: normal;
    font-size: 17px;
    line-height: 120%;
    display: flex;
    align-items: center;
    text-align: center;
}
.footer_rows {
    display: flex;
    justify-content: space-between;
    /*margin-left: -100px;*/
    /*margin-right: -100px !important;*/
}
.footer__column:nth-child(1) {
    flex: 0 0 40%;
    padding-top: 0px;
}
.footer__column {
    flex: 0 0 20%;
    padding-right: 100px;
    padding-top: 40px;
}
.footer__column:last-child {
    padding-right: 0px;
}
.footer_column_title {
    font-family: Inter;
    font-style: normal;
    font-weight: 500;
    font-size: 20px;
    line-height: 28px;
    text-align: left;
    color: #FFFFFF;
    margin: 16px 0px;
}
.footer_column_title img {
    max-width: 110px;
}
.footer_column_text {
    font-family: Inter;
    font-style: normal;
    font-weight: normal;
    font-size: 14px;
    line-height: 130%;
    color: #FFFFFF;
    opacity: 0.64;
    margin: 16px 0px;
}
.footer_contact_title,
.footer_links li a {
    font-family: Poster Gothic ATF;
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 18px;
    display: flex;
    align-items: center;
    color: #FFFFFF;
    margin: 16px 0px;
    transition: all 0.4s ease-in-out;
}
.footer_links li a:hover {
    color: #FF0A00;
    transition: all 0.4s ease-in-out;
}
.footer_contacts li a {
    font-family: Roboto;
    font-style: normal;
    font-weight: normal;
    font-size: 14px;
    line-height: 18px;
    display: flex;
    align-items: center;
    color: #FFFFFF;
    margin: 4px 0px;
}
.footer_bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.footer_copy_links {
    display: flex;
    align-items: center;
}
.footer_socials {
    display: flex;
    align-items: center;
}
.footer_social_item {
    margin-right: 5px;
}
.footer_social_item:last-child {
    margin-right: 0px;
}
.footer_term_links {
    display: flex;
    align-items: center;
}
.footer_link_item {
    margin-right: 10px;
    display: flex;
}
.footer_link_item:last-child {
    margin-right: 0px;
}
.copyright span,
.footer_link_item a {
    font-family: Roboto;
    font-style: normal;
    font-weight: 300;
    font-size: 11px;
    line-height: 13px;
    color: #FFFFFF;
}
.footer_red_line span {
    display: block;
    width: 100%;
    height: 1px;
    background-color: #FF0A00;
    margin: 60px 0 40px;
}
::-webkit-input-placeholder { /* WebKit browsers */

}
:-moz-placeholder { /* Mozilla Firefox 4 to 18 */

}
::-moz-placeholder { /* Mozilla Firefox 19+ */
}
:-ms-input-placeholder { /* Internet Explorer 10+ */

}
.footer_social_item a img {
    width: 40px;
    height: 40px;
    transition: all 0.4s ease-in-out;
}
.footer_social_item a img:hover {
    background: #ff0801;
    border-radius: 50px;
    transition: all 0.4s ease-in-out;
}
@media only screen and (max-width: 1440px) {

}
@media only screen and (max-width: 1024px) {

}
@media only screen and (max-width: 992px) {

}
@media only screen and (max-width: 768px) {

}
@media only screen and (max-width: 600px) {

}
@media only screen and (max-width: 320px) {

}


@media only screen
and (min-device-width: 375px)
and (max-device-width: 812px)
and (-webkit-min-device-pixel-ratio: 3)
and (orientation: landscape) {
    .footer_container {
        flex-direction: column;
    }
}
/* end footer */
@media only screen and (min-width: 810px) and (orientation: portrait) {
    .footer__column:nth-child(1) {
        flex: 0 0 30%;
    }
    .footer__column {
        padding-right: 20px;
    }
}

@media only screen and (max-width: 768px) {
    .footer_rows {
        flex-wrap: wrap;
    }
    .footer__column:nth-child(1) {
        flex: 0 0 100%;
        padding-top: 0px;
        padding-right: 0px;
    }
    .footer__column {
        padding-right: 0px;
    }
}
@media only screen and (max-width: 576px) {
    .footer__column:nth-child(1) {
        position: relative;
    }
    .footer__column:nth-child(1):before {
        position: absolute;
        content: '';
        top: 0;
        left: 0;
        background-repeat: no-repeat;
        background-size: cover;
        width: 100%;
        height: 1px;
        background-color: #FF0A00;
    }
    .footer__column:nth-child(1):after {
        position: absolute;
        content: '';
        bottom: 0;
        left: 0;
        background-repeat: no-repeat;
        background-size: cover;
        width: 100%;
        height: 1px;
        background-color: #FF0A00;
    }
    .footer__column:nth-child(2),
    .footer__column:nth-child(3) {
        flex: 0 0 50%;
    }
    .footer_bottom {
        flex-direction: column;
        align-items: flex-start;
    }
    .footer_social {
        margin-bottom: 50px;
        margin-top: 27px;
    }
    .footer_red_line {
        display: none;
    }
}