@font-face {
    font-family: 'Roboto';
    src: url('../fonts/Roboto/Roboto-Regular.eot'),
    url('../fonts/Roboto/Roboto-Regular.woff2') format('woff2'),
    url('../fonts/Roboto/Roboto-Regular.woff') format('woff'),
    url('../fonts/Roboto/Roboto-Regular.ttf') format('truetype'),
    url('../fonts/Roboto/Roboto-Regular.svg') format('svg');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Roboto';
    src: url('../fonts/Roboto/Roboto-Medium.eot'),
    url('../fonts/Roboto/Roboto-Medium.woff2') format('woff2'),
    url('../fonts/Roboto/Roboto-Medium.woff') format('woff'),
    url('../fonts/Roboto/Roboto-Medium.ttf') format('truetype'),
    url('../fonts/Roboto/Roboto-Medium.svg') format('svg');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Roboto';
    src: url('../fonts/Roboto/Roboto-Bold.eot'),
    url('../fonts/Roboto/Roboto-Bold.woff2') format('woff2'),
    url('../fonts/Roboto/Roboto-Bold.woff') format('woff'),
    url('../fonts/Roboto/Roboto-Bold.ttf') format('truetype'),
    url('../fonts/Roboto/Roboto-Bold.svg') format('svg');
    font-weight: 700;
    font-style: normal;
}

body, html {
    margin: 0;
    padding: 0;
    position: relative;
    height: 100%;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
}

.header {
    background-color: #F9F9F9;
}

.header__inner {
    height: 100px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header__logo-inner {
    width: 110px;
    height: 47px;
    background: url("../img/logo.svg") no-repeat;
    background-size: 100% auto;
}

.header__right-part {
    padding-right: 15px;
}

.header__menu-wrapper {
    height: 100%;
}

.header-menu {
    display: flex;
    height: 100%;
    width: 100%;
    justify-content: center;
}

.header-menu-item {
    height: 100%;
    display: flex;
    align-items: center;
}

.header-menu-item a {
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
    white-space: nowrap;
    height: 40px;
    -webkit-transition: all 0.2s;
    -moz-transition: all 0.2s;
    -ms-transition: all 0.2s;
    -o-transition: all 0.2s;
    transition: all 0.2s;
    font-size: 16px;
    line-height: 19px;
    text-align: center;
    text-transform: uppercase;
    color: #231F20;
}

.header-menu-item a:hover {
    color: #777777;
}

.header-menu-item a:active {
    color: #EF8127;
    font-weight: 500;
}

.header-menu-item a:focus {
    color: #EF8127;
    font-weight: 500;
}

.header-menu-item--active a {
    color: #EF8127;
    font-weight: 500;
}

.header__select-lang-mobile {
    display: none;
}

.mobile-menu {
    padding: 127px 45px 0 0;
    text-align: right;
}

.mobile-menu a {
    padding: 0 0 20px 0;
    display: block;
    text-decoration: none;
    font-size: 16px;
    line-height: 19px;
    text-transform: uppercase;
    color: #101010;
}

.mobile-menu a.item--active {
    color: #EF8127;
    font-weight: 500;
}

.container {
    max-width: 1200px;
    padding: 0 30px;
    margin: 0 auto;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.menu-toggle {
    width: 23px;
    height: 18px;
    position: relative;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .5s ease-in-out;
    -moz-transition: .5s ease-in-out;
    -o-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
    cursor: pointer;
    top: 3px;
    display: none;
}

.menu-toggle span {
    display: block;
    position: absolute;
    height: 3px;
    width: 100%;
    background: #101010;
    border-radius: 1px;
    opacity: 1;
    left: 0;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .25s ease-in-out;
    -moz-transition: .25s ease-in-out;
    -o-transition: .25s ease-in-out;
    transition: .25s ease-in-out;
}

.menu-toggle span:nth-child(1) {
    top: 0px;
}

.menu-toggle span:nth-child(2),
.menu-toggle span:nth-child(3) {
    top: 8px;
}

.menu-toggle span:nth-child(4) {
    top: 16px;
}

.menu-toggle.menu-toggle--open span:nth-child(1) {
    top: 18px;
    width: 0%;
    left: 50%;
}

.menu-toggle.menu-toggle--open span:nth-child(2) {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
}

.menu-toggle.menu-toggle--open span:nth-child(3) {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.menu-toggle.menu-toggle--open span:nth-child(4) {
    top: 18px;
    width: 0%;
    left: 50%;
}

.section {
    min-height: 735px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    position: relative;
}

.main-section {
    padding: 110px 0;
    background: url("../img/main-section-bg.png") no-repeat center;
    background-size: cover;
}

.main-section__content {
    width: 655px;
}

.main-section__logo {
    width: 42px;
    height: 41px;
    background: no-repeat center;
    background-size: 100%;
    margin-bottom: 32px;
}

.main-section__title {
    color: #EF8127;
    font-weight: 700;
    font-size: 54px;
    line-height: 64px;
    margin-bottom: 50px;
}

.main-section__text {
    color: #231F20;
}

.main-section__title span {
    color: #231F20;
}

.sfa-section {
    padding: 210px 0 230px 0;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 75% 50%;
    display: flex;
    justify-content: flex-end;
    overflow: hidden;
}

.sfa-section__logo {
    width: 562px;
    height: 150px;
    background: no-repeat center;
    background-size: 100%;
    margin: 0 auto;
    position: relative;
    margin-bottom: 30px;
}

/*.sfa-section__logo-inner {*/
/*width: 562px;*/
/*height: 261px;*/
/*background: no-repeat center;*/
/*background-size: 100%;*/
/*position: absolute;*/
/*}*/

.sfa-section__content {
    text-align: center;
    width: 540px;
    padding: 0 363px 0 0;
}

.sfa-section__title {
    margin: auto;
    text-align: center;
    color: #FFFFFF;
    margin-bottom: 40px;
}

.sfa-section__subtitle {
    font-weight: 500;
    font-size: 20px;
    line-height: 15px;
    text-align: center;
    text-transform: uppercase;
    color: #FFFFFF;
    opacity: 0.54;
}

.sfa-section__link {
    font-weight: 500;
    font-size: 20px;
    line-height: 15px;
    text-align: center;
    text-transform: uppercase;
    text-decoration: underline;
    color: #FFFFFF;
    opacity: 0.54;
}

.sf3-section {
    padding: 200px 0 0 0;
    background: no-repeat;
    background-size: cover;
    overflow: hidden;
    display: flex;
}

.sf3-section__content {
    text-align: center;
    width: 540px;
    padding: 0 0 0 310px;
}

.sf3-section__title {
    color: #FFFFFF;
    margin-bottom: 40px;
}

.sf3-section__logo {
    width: 405px;
    height: 188px;
    background: no-repeat center;
    background-size: 100%;
    margin: 0 auto 11px auto;
}

.sf3-section__subtitle {
    font-weight: 500;
    font-size: 20px;
    line-height: 15px;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    color: #FFFFFF;
}

.sf3-section__link {
    font-weight: 500;
    font-size: 20px;
    line-height: 15px;
    text-align: center;
    text-decoration-line: underline;
    text-transform: uppercase;
    color: #FFFFFF;
}

.sf3-section__img {
    position: absolute;
    right: 176px;
    bottom: -125px;
}

.sf3-section__img img {
    width: 100%;
}

.fight_me-section {
    padding: 200px 0 0 0;
    background: no-repeat;
    background-size: cover;
    overflow: hidden;
    display: flex;
}

.fight_me-section__content {
    text-align: center;
    width: 540px;
    padding: 0 0 0 363px;
}

.fight_me-section__title {
    color: #FFFFFF;
    margin-bottom: 40px;
}

.fight_me-section__logo {
    width: 170px;
    height: 188px;
    background: no-repeat center;
    background-size: 100%;
    margin: 0 auto 11px auto;
}

.fight_me-section__subtitle {
    font-weight: 500;
    font-size: 20px;
    line-height: 15px;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    color: #FFFFFF;
}

.fight_me-section__link {
    font-weight: 500;
    font-size: 20px;
    line-height: 15px;
    text-align: center;
    text-decoration-line: underline;
    text-transform: uppercase;
    color: #FFFFFF;
}

.vector-section {
    padding: 200px 0 0 0;
    background: no-repeat;
    background-size: cover;
    overflow: hidden;
    display: flex;
}

.vector-section__content {
    text-align: center;
    width: 540px;
    padding: 0 0 0 900px;
}

.vector-section__title {
    color: #FFFFFF;
    margin-bottom: 40px;
}

.vector-section__logo {
    width: 170px;
    height: 188px;
    background: no-repeat center;
    background-size: 100%;
    margin: 0 auto 11px auto;
}

.vector-section__subtitle {
    font-weight: 500;
    font-size: 20px;
    line-height: 15px;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    color: #FFFFFF;
}

.vector-section__link {
    font-weight: 500;
    font-size: 20px;
    line-height: 15px;
    text-align: center;
    text-decoration-line: underline;
    text-transform: uppercase;
    color: #FFFFFF;
}

.cascadeur-section {
    padding: 180px 0 180px 0;
    background: no-repeat center;
    background-size: cover;
    display: flex;
    justify-content: flex-end;
}

.cascadeur-section__content {
    text-align: center;
    width: 540px;
    padding: 0 362px 0 0;
}

.cascadeur-section__title {
    color: #FFFFFF;
    margin-bottom: 40px;
}

.cascadeur-section__logo {
    width: 477px;
    height: 188px;
    background: no-repeat center;
    background-size: 100%;
    margin: 0 auto 45px auto;
}

.cascadeur-section__subtitle {
    font-weight: 500;
    font-size: 20px;
    line-height: 15px;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    color: #009EE8;
}

.cascadeur-section__link {
    font-weight: 500;
    font-size: 20px;
    line-height: 15px;
    text-align: center;
    text-decoration-line: underline;
    text-transform: uppercase;
    color: #FFFFFF;
}

.cascadeur-section__img-wrapper {
    position: absolute;
    left: 407px;
    top: 70px;
}

.spine-section {
    padding: 290px 0 123px 0;
    background: no-repeat center;
    background-size: cover;
    display: flex;
}

.spine-section__content {
    text-align: center;
    width: 540px;
    padding: 0 0 0 363px;
}

.spine-section__title {
    color: #FFFFFF;
    margin-bottom: 40px;
}

.spine-section__subtitle {
    font-weight: 500;
    font-size: 20px;
    line-height: 15px;
    text-align: center;
    text-transform: uppercase;
    color: #FFFFFF;
    opacity: 0.54;
}

.spine-section__link {
    font-weight: 500;
    font-size: 20px;
    line-height: 15px;
    text-align: center;
    text-decoration: underline;
    text-transform: uppercase;
    color: #FFFFFF;
    opacity: 0.54;
}

.spine-section__logo {
    width: 361px;
    height: 120px;
    background: no-repeat center;
    background-size: 100%;
    margin: 0 auto 15px auto;
}

.section-title {
    font-weight: 700;
    font-size: 54px;
    line-height: 40px;
    text-align: center;
    text-transform: uppercase;
    color: #EF8127;
}

.careers-section {
    padding: 100px 0;
    background: url("../img/careers-section-bg.png") no-repeat center;
    background-size: cover;
}

.careers-section.section {
    min-height: auto;
}

.careers__row {
    display: flex;
    justify-content: center;
    margin-bottom: 100px;
}

.careers__col {
    margin: 100px 50px 0 50px;
    -webkit-box-flex: 0 0 50%;
    -moz-box-flex: 0 0 50%;
    -webkit-flex: 0 0 50%;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    max-width: 380px;
    text-align: center;
}

.careers__title {
    font-weight: 700;
    font-size: 34px;
    line-height: 25px;
    text-align: center;
    margin-bottom: 50px;
}

.careers__text {
    font-weight: 400;
    font-size: 18px;
    line-height: 26px;
    text-align: center;
    color: #000000;
    margin-bottom: 50px;
}

.careers__text a {
    color: #EF8127;
    text-decoration: none;
}

.careers__button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 260px;
    height: 56px;
    background: #EF8127;
    border-radius: 4px;
    font-weight: 500;
    font-size: 20px;
    line-height: 24px;
    text-transform: uppercase;
    text-decoration: none;
    color: #FFFFFF;
    margin: auto;
    border: 2px solid #EF8127;
    -webkit-transition: all 0.2s;
    -moz-transition: all 0.2s;
    -ms-transition: all 0.2s;
    -o-transition: all 0.2s;
    transition: all 0.2s;
}

.careers__button:hover {
    background: none;
    border: 2px solid #EF8127;
    color: #EF8127;
}

.careers__gallery-slider {
    display: none;
}

.careers__gallery {
    -webkit-column-count: 3;
    -moz-column-count: 3;
    column-count: 3;
    -webkit-column-width: 33%;
    -moz-column-width: 33%;
    column-width: 33%;
}

.careers__gallery-item {
    margin: 0 9px 30px 0;
}

.careers__gallery-item img {
    width: 100%;
    height: 100%;
    vertical-align: middle;
    border-style: none;
}

.contacts-section {
    min-height: 730px;
    background: url("../img/map.png") no-repeat center;
    background-size: cover;
}

.contacts-wrapper {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-color: rgba(239, 129, 39, 0.6);
}

.contacts {
    padding: 345px 0 0 0;
    display: flex;
    justify-content: flex-end;
}

.contacts__inner {
    width: 340px;
}

.contacts__title {
    font-weight: 700;
    font-size: 55px;
    line-height: 58px;
    text-transform: uppercase;
    color: #231F20;
    margin-bottom: 20px;
}

.contacts__info {
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #FFFFFF;
    margin-bottom: 20px;
}

.contacts__info:last-child {
    margin-bottom: 0;
}

.contacts__info a {
    color: #FFFFFF;
    text-decoration: none;
}

.socials {
    display: flex;
    align-items: center;
}

.socials__item {
    margin-right: 16px;
    -webkit-transition: all 0.2s;
    -moz-transition: all 0.2s;
    -ms-transition: all 0.2s;
    -o-transition: all 0.2s;
    transition: all 0.2s;
}

.socials__item a {
    display: block;
    width: 100%;
    height: 100%;
}

.socials__item--vk {
    width: 30px;
    height: 18px;
    background: url("../img/vk.svg") no-repeat;
    background-size: 100% auto;
}

.socials__item--vk:hover {
    width: 30px;
    height: 18px;
    background: url("../img/vk-orange.svg") no-repeat;
    background-size: 100% auto;
}

.socials__item--fb {
    width: 16px;
    height: 30px;
    background: url("../img/fb.svg") no-repeat;
    background-size: 100% auto;
}

.socials__item--fb:hover {
    width: 16px;
    height: 30px;
    background: url("../img/fb-orange.svg") no-repeat;
    background-size: 100% auto;
}

.socials__item--youtube {
    width: 29px;
    height: 21px;
    background: url("../img/youtube.svg") no-repeat;
    background-size: 100% auto;
}

.socials__item--youtube:hover {
    width: 29px;
    height: 21px;
    background: url("../img/youtube-orange.svg") no-repeat;
    background-size: 100% auto;
}

.socials__item--linkedin {
    width: 25px;
    height: 23px;
    background: url("../img/linkedin.svg") no-repeat;
    background-size: 100% auto;
}

.socials__item--linkedin:hover {
    width: 25px;
    height: 23px;
    background: url("../img/linkedin-orange.svg") no-repeat;
    background-size: 100% auto;
}

.socials__item--instagram {
    width: 24px;
    height: 24px;
    background: url("../img/instagram.svg") no-repeat;
    background-size: 100% auto;
}

.socials__item--instagram:hover {
    width: 24px;
    height: 24px;
    background: url("../img/instagram-orange.svg") no-repeat;
    background-size: 100% auto;
}

.footer {
    padding: 89px 0 117px 0;
    background: url("../img/footer-bg.png") no-repeat center;
    background-size: cover;
    min-height: 411px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.footer__inner {
    display: flex;
    justify-content: space-between;
}

.footer__left-part {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.footer__right-part {
    width: 50%;
}

.footer__menu {
    display: flex;
}

.footer__menu-col {
    width: 50%;
}

.footer__menu-title {
    font-weight: 400;
    font-size: 16px;
    line-height: 36px;
    text-transform: uppercase;
    color: #9A9A9A;
    margin-bottom: 30px;
}

.footer__menu-item {
    font-weight: 400;
    font-size: 16px;
    line-height: 36px;
    text-transform: uppercase;
    color: #231F20;
    text-decoration: none;
    display: block;
}

.footer__menu-item:hover {
    color: #777777;
}

.footer__info {
    font-weight: 400;
    font-size: 12px;
    line-height: 14px;
    color: #231F20;
}

.footer__info--show-on-mobile {
    display: none;
}

.footer__info p {
    margin: 0;
}

.footer__info a {
    color: #EF8127;
    text-decoration: none;
}

.blueimp-gallery > .indicator > li {
    background-image: none !important;
}

@media (max-width: 1919px) {
    .cascadeur-section__content {
        padding: 0 120px 0 0;
    }

    .cascadeur-section__img-wrapper {
        left: 167px;
    }

    .sf3-section__content {
        padding: 0 0 0 123px;
    }

    .sf3-section__img {
        right: 0;
        bottom: -20px;
        width: 700px;
    }

    .spine-section__content {
        padding: 0 0 0 123px;
    }

    .sfa-section {
        background-position: 65% 50%;
    }

    .sfa-section__content {
        padding: 0 120px 0 0;
    }
}

@media (max-width: 1439px) {
    .section {
        min-height: 653px;
    }

    .main-section__content {
        width: 533px;
    }

    .main-section__title {
        font-size: 44px;
        line-height: 54px;
        margin-bottom: 40px;
    }

    .sfa-section {
        padding: 165px 0 190px 0;
    }

    .sfa-section__logo {
        width: 100%;
        margin: 0;
    }

    .sf3-section {
        padding: 144px 0 0 0;
    }

    .sf3-section__content {
        width: 480px;
        padding: 0 0 0 100px;
    }

    .sf3-section__logo {
        width: 350px;
        height: 162px;
    }

    .sf3-section__img {
        width: 621px;
    }

    .sf3-section__img img {
        width: 621px;
    }

    .cascadeur-section {
        padding: 140px 0 121px 0;
    }

    .cascadeur-section__img-wrapper {
        left: 80px;
        top: 87px;
    }

    .cascadeur-section__img-wrapper img {
        width: 575px;
    }

    .spine-section {
        padding: 238px 0 123px 0;
    }

    .spine-section__logo {
        width: 334px;
        height: 110px;
    }

    .section-title {
        font-size: 44px;
        line-height: 32px;
    }

    .contacts__title {
        font-size: 44px;
        line-height: 31px;
        margin-bottom: 30px;
    }

    .contacts {
        padding: 329px 0 150px 0;
    }

    .sfa-section__content {
        width: 480px;
        padding: 0 100px 0 0;
    }

    .cascadeur-section__content {
        width: 480px;
        padding: 0 100px 0 0;
    }

    .cascadeur-section__logo {
        width: 402px;
        height: 158px;
        /*! background-size: 84%; */
        /* ##@@ */
    }

    .spine-section__content {
        width: 480px;
        padding: 0 0 0 100px;
    }

    .spine-section__logo {
        width: 273px;
        height: 91px;
    }
}

@media (max-width: 1279px) {
    .section {
        min-height: 522px;
    }

    .main-section__content {
        width: 486px;
    }

    .main-section__title {
        font-size: 40px;
        line-height: 50px;
    }

    .sfa-section {
        justify-content: center;
        padding: 90px 0 0 0;
    }

    .sfa-section__logo {
        width: 500px;
        margin: auto;
    }

    .sfa-section__content {
        padding: 0;
        width: 650px;
    }

    .sf3-section__content {
        padding: 0 0 0 47px;
        width: 430px;
    }

    .sf3-section__logo {
        width: 280px;
        height: 130px;
        margin: 0 auto 18px auto;
    }

    .sf3-section__img {
        width: 497px;
        right: 0;
    }

    .sf3-section__img img {
        width: 497px;
    }

    .fight_me-section__content {
        margin-top:-100px;
        padding: 0 0 0 47px;
        width: 430px;
    }

    .fight_me-section__logo {
        width: 170px;
        height: 130px;
        margin: 0 auto 18px auto;
    }

    .vector-section__content {
        margin-top:-110px;
        padding: 0 0 0 410px;
        width: 430px;
    }

    .vector-section__logo {
        width: 170px;
        height: 130px;
        margin: 0 auto 18px auto;
    }

    .cascadeur-section {
        padding: 110px 0 100px 0;
    }

    .cascadeur-section__img-wrapper {
        left: 64px;
        top: 69px;
    }

    .cascadeur-section__img-wrapper img {
        width: 460px;
    }

    .cascadeur-section__logo {
        width: 395px;
        height: 141px;
        margin: 0 auto 34px auto;
    }

    .cascadeur-section__content {
        padding: 0 48px 0 0;
        width: 430px;
    }

    .spine-section {
        padding: 177px 0 106px 0;
    }

    .spine-section__content {
        padding: 0 0 0 49px;
        width: 430px;
    }

    .spine-section__logo {
        width: 242px;
        height: 80px;
        margin: 0 auto 30px auto;
    }

    .section-title {
        font-size: 40px;
        line-height: 30px;
    }

    .careers__col {
        margin: 80px 50px 0 50px;
    }

    .careers__row {
        margin-bottom: 80px;
    }

    .careers__gallery-item {
        margin: 0 0px 27px 0;
    }

    .careers-section {
        padding: 80px 0 53px 0;
    }

    .contacts__title {
        font-size: 40px;
        line-height: 29px;
    }

    .footer {
        padding: 98px 0 98px 0;
    }

    .footer__left-part {
        width: 25%;
    }

    .menu-toggle {
        display: block;
        z-index: 99;
    }

    .header__menu-wrapper {
        display: none;
    }

    .header__select-lang {
        display: none;
    }

    .header__select-lang-mobile {
        display: block;
    }

    .contacts {
        padding: 232px 0 120px 0;
    }
}

@media (max-width: 1019px) {
    .header__inner {
        height: 80px;
    }

    .main-section {
        padding: 50px 0 147px 0;
    }

    .main-section__logo {
        width: 36px;
        height: 35px;
    }

    .main-section__content {
        width: 432px;
    }

    .main-section__title {
        font-size: 36px;
        line-height: 46px;
    }

    .sfa-section {
        padding: 130px 0 103px 0;
        background-position: center;
    }

    .sfa-section__logo {
        width: 360px;
        height: 90px;
        margin-bottom: 25px;
    }

    .sfa-section__title {
        width: 485px;
    }

    .sf3-section__content {
        width: 332px;
    }

    .sf3-section__logo {
        width: 246px;
        height: 114px;
    }

    .sf3-section__img {
        right: -115px;
    }

    .sf3-section__img img {
        width: 528px;
    }

    .fight_me-section__content {
        width: 332px;
    }

    .fight_me-section__logo {
        width: 105px;
        height: 114px;
    }

    .vector-section__content {
        width: 332px;
    }

    .vector-section__logo {
        width: 250px;
        height: 40px;
    }

    .cascadeur-section {
        padding: 120px 0 120px 0;
    }

    .cascadeur-section__img-wrapper {
        left: 33px;
        top: 99px;
    }

    .cascadeur-section__img-wrapper img {
        width: 394px;
    }

    .cascadeur-section__content {
        width: 320px;
        padding: 0 49px 0 0;
    }

    .cascadeur-section__logo {
        width: 282px;
        height: 111px;
        margin: 0 auto 35px auto;
    }

    .spine-section {
        padding: 141px 0 60px 0;
    }

    .spine-section__content {
        width: 332px;
    }

    .spine-section__logo {
        width: 199px;
        height: 66px;
    }

    .careers__col {
        max-width: 316px;
        margin: 80px 30px 0 30px;
    }

    .careers__gallery-item {
        margin: 0 0 20px 0;
    }

    .contacts {
        padding: 232px 0 120px 0;
    }

    .footer {
        padding: 91px 0 90px 0;
        min-height: 397px;
    }

    .footer__menu-item {
        font-size: 14px;
        line-height: 36px;
    }

    .footer__right-part {
        width: 63%;
    }

    .mobile-menu {
        padding: 107px 45px 0 0;
        text-align: right;
    }
}

@media (max-width: 759px) {
    .contacts-section {
        background-position: 46% 50%;
    }

    .header__logo-inner {
        width: 80px;
        height: 35px;
    }

    .header__inner {
        height: 65px;
    }

    .container {
        padding: 0 15px;
    }

    .menu-toggle {
        width: 15px;
        height: 15px;
    }

    .menu-toggle span {
        height: 2px;
    }

    .menu-toggle span:nth-child(2), .menu-toggle span:nth-child(3) {
        top: 6px;
    }

    .menu-toggle span:nth-child(4) {
        top: 12px;
    }

    .main-section {
        padding: 35px 0 152px 0;
        background-image: url("../img/main-section-mobile-bg.png");
        background-repeat: no-repeat;
        background-position: center;
        background-size: cover;
    }

    .main-section__logo {
        display: none;
    }

    .main-section__content {
        width: auto;
    }

    .main-section__title {
        font-size: 24px;
        line-height: 30px;
        margin-bottom: 25px;
    }

    .main-section.section {
        min-height: 409px;
    }

    .section {
        min-height: 568px;
    }

    .sfa-section {
        padding: 165px 0 70px 0;
        background-position: 35% 50%;
    }

    .sfa-section__title {
        width: auto;
    }

    .sfa-section__logo {
        width: 300px;
        height: 85px;
    }

    .sfa-section__content {
        padding: 0 15px;
    }

    .sf3-section {
        padding: 15px 0 70px 0;
        background: no-repeat;
        background-size: cover;
    }

    .sf3-section__img {
        display: none;
    }

    .sf3-section__content {
        width: auto;
        padding: 0 15px;
        margin-top: auto;
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
    }

    .fight_me-section {
        padding: 15px 0 70px 0;
        background: no-repeat;
        background-size: cover;
    }

    .fight_me-section__content {
        width: auto;
        padding: 0 15px;
        margin-top: auto;
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
    }

    .vector-section {
        padding: 15px 0 70px 0;
        background: no-repeat;
        background-size: cover;
    }

    .vector-section__content {
        width: auto;
        padding: 0 15px;
        margin-top: auto;
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
    }

    .cascadeur-section {
        padding: 45px 0 70px 0;
        background-position: 50% 68%;
    }

    .cascadeur-section__content {
        width: auto;
        padding: 0 15px;
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
    }

    .cascadeur-section__img-wrapper {
        position: static;
        width: 222px;
        margin: auto;
    }

    .cascadeur-section__img-wrapper img {
        width: 100%;
    }

    .cascadeur-section__logo {
        width: 259px;
        height: 102px;
        margin: 0 auto 30px auto;
    }

    .spine-section {
        padding: 235px 0 70px 0;
    }

    .spine-section__content {
        width: auto;
        padding: 0 15px;
    }

    .spine-section__logo {
        width: 199px;
        height: 64px;
        margin: 0 auto 23px auto;
    }

    .section-title {
        font-size: 28px;
        line-height: 20px;
    }

    .careers-section {
        padding: 60px 0;
        background-image: url("../img/careers-section-mobile-bg.png");
        background: no-repeat center;
        background-size: cover;
    }

    .careers__row {
        flex-direction: column;
        align-items: center;
    }

    .careers-section {
        min-height: auto;
    }

    .careers__col {
        margin: 60px 0 0 0;
    }

    .careers__title {
        font-size: 24px;
        line-height: 18px;
        margin-bottom: 30px;
    }

    .careers__text {
        font-size: 16px;
        line-height: 24px;
        margin-bottom: 30px;
    }

    .careers__gallery {
        display: none;
    }

    .careers__gallery-slider {
        display: block;
    }

    .careers__gallery-slider .swiper-slide {
        background-position: center;
        background-size: cover;
        width: 260px;
        height: 180px;
    }

    .careers__gallery-slider .swiper-container-3d .swiper-slide-shadow-right {
        background: rgba(255, 255, 255, 0.45);
    }

    .careers__gallery-slider .swiper-container-3d .swiper-slide-shadow-left {
        background: rgba(255, 255, 255, 0.45);
    }

    .swiper-container {
        width: 100%;
        padding-top: 50px;
        padding-bottom: 50px;
    }

    .careers__gallery-slider .swiper-pagination-bullet {
        width: 10px;
        height: 10px;
        border: 1px solid #C4C4C4;
        background: none;
    }

    .careers__gallery-slider .swiper-pagination-bullet-active {
        background: #EF8127;
        border: 1px solid #EF8127;
    }

    .contacts {
        padding: 321px 0 60px 0;
    }

    .contacts {
        width: auto;
        text-align: center;
    }

    .contacts__title {
        font-size: 28px;
        line-height: 20px;
    }

    .footer {
        padding: 60px 0;
        min-height: auto;
        background: url("../img/footer-mobile-bg.png") no-repeat center;
        background-size: cover;
    }

    .footer__inner {
        flex-direction: column;
    }

    .footer__left-part {
        width: auto;
        margin-bottom: 35px;
    }

    .footer__right-part {
        width: auto;
    }

    .footer__info--not-for-mobile {
        display: none;
    }

    .footer__info--show-on-mobile {
        display: block;
    }

    .footer__menu {
        flex-direction: column;
    }

    .footer__menu-col {
        width: auto;
        margin-bottom: 35px;
    }

    .footer .container {
        padding: 0 30px;
    }
}

.legal-hotfix .link,
.legal-hotfix .select-lang__link,
.legal-hotfix .footer__link {
    color: #EF8127;
}

.legal-hotfix .header__inner,
.legal-hotfix .page-container,
.legal-hotfix .footer__inner {
    padding-left: 20px;
    padding-right: 20px;
}

.legal-hotfix .select-lang__link--active {
    color: #777777;
}

.legal-hotfix .select-lang {
    display: flex;
    width: 6em;
    justify-content: space-between;
    padding-right: 20px;
}
