:root {
    --color-black: #201600;
    --color-white: #fff;
    --color-gray: #979695;
    --color-main-yellow: #C5B533;
    --color-main-orange: #DCBA55;
    --color-main-orange-active: #E18C44;
    --transition: all .3s ease;
}
@font-face { 
    font-family: 'ArialRoundedMTProCyrBold';  
    src: local('ArialRoundedMTProCyr'), 
        url('../../fonts/ArialRoundedMTProCyrBold.otf') format('opentype'),
        url('../../fonts/ArialRoundedMTProCyrBold.woff') format('woff');  
}
@font-face { 
    font-family: 'PalatinoLinotype';  
    src: local('PalatinoLinotype'), 
        url('../../fonts/PalatinoLinotype.ttf') format('opentype');  
}
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    outline: none;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
}

.container {
    padding: 0 15px;
    width: 100%;
}
main {
    overflow: hidden;
}
@media (min-width: 575.98px){
    .container {
        max-width: 540px;
        margin: auto;
        padding: 0;
    }
}

@media (min-width: 767.98px){
    .container {
        max-width: 720px;	
    }
}

@media (min-width: 991.98px) {
    .container {
        max-width: 960px;
    }
    .container_small {
        max-width: 900px;
    }
}

@media (min-width: 1240px){
    .container {
        max-width: 1200px;
    }
    .container_small {
        max-width: 1100px;
    }
}

body {
    font-family: 'ArialRoundedMTProCyrBold';
    font-size: 14px;
    line-height: 1.227em;
}

hr {
    background-color: var(--color-gray);
}
hr.horizontal {
    height: 2px;
    border-radius: 2px;
    border: none;
}

h2 {
    font-size: 33px;
    line-height: 1.212em;
}
ul {
    list-style: none;
}

.slick-arrow {
    position: absolute;
    width: 25px;
    height: 40px;
    overflow: hidden;
    color: transparent;
    background-color: transparent;
    border: none;
    cursor: pointer;
    z-index: 4;
}
.slick-arrow:hover {
    -webkit-filter: brightness(0.5);
            filter: brightness(0.5);
}
.slick-prev {
    left: 0;
    background: url('../assets/arrow_left.svg') center center no-repeat;
    background-size: contain;
}
.slick-next {
    right: 0;
    background: url('../assets/arrow_right.svg') center center no-repeat;
    background-size: contain;
}

.link {
    color: var(--color-white);
    text-decoration: none;
}
.link:hover {
    color: var(--color-main-orange-active);
}

.middle-title {
    width: 270px;
    margin: 0 auto;
    text-align: center;
    border: 4px solid var(--color-white);
}
.middle-title-wrap {
    position: relative;
    z-index: 2;
    background-color: transparent;
    padding-bottom: 15px;
    margin-bottom: -5px;
}


.header {
    overflow: hidden;
    background: #051033 url('../assets/bg/hero_dark.jpg') center center no-repeat;
    background-size: contain;
}
.header-wrap {
    padding: 40px 0 0 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}

.header-right {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    margin-top: 0;
    max-width: 660px;
    width: 100%;
}

.header-lang {
    width: 120px;
    height: 35px;
    font-size: 15px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 0;
    position: relative;
}
.header-lang__item {
    font-size: 20px;
    text-decoration: none;
    color: var(--color-white);
    opacity: 0.49;
}
.header-lang__item:hover,
.header-lang__item.active {
    color: var(--color-main-orange);
    opacity: 1;
}
.header-lang__item.active {
    pointer-events: none;
}
.header-lang__item:hover {
    cursor: pointer;
}
.header-lang__sep {
    display: block;
    background-color: var(--color-white);
    width: 5px;
    border-radius: 100px;
    height: 100px;
    top: -100%;
    position: relative;
}
.header-lang + .header-phones {
    margin-top: 25px;
}


.header-phones {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    font-size: 18px;
    width: 100vw;
    max-width: 560px;
}

.navbar {
    height: 53px;
    width: 100%;
    position: relative;
    margin-top: 10px;
}
.navbar__bg {
    position: absolute;
    z-index: 2;
    left: -160px;
}
.navbar__horizontal {
    position: absolute;
    z-index: 2;
    left: -190px;
    bottom: -10px;
}
.navbar-wrap {
    height: 47px;
    width: 100vw;
    position: absolute;
    z-index: 3;
    left: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding-left: 35px;
}
.navbar__item {
    font-size: 22px;
    text-decoration: none;
    color: var(--color-black);
    line-height: 1em;
}
.navbar__item + .navbar__item {
    margin-left: 90px;
}

.hero {
    margin-top: 70px;
    position: relative;
}
.hero:after {
    content: '';
    display: block;
    width: 100vw;
    height: 60px;
    position: absolute;
    bottom: 0;
    left: 0;
    background-color: #E6E6E6;
}
.hero-slider {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    right: -130px;
}
.hero-slider__item {
    display: -webkit-box!important;
    display: -ms-flexbox!important;
    display: flex!important;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
}
.hero-slider__image {
    margin-right: 20px;
}
.hero-slider__content  {
    margin-top: 35px;
}
.hero-slider__text {
    text-align: left;
    color: var(--color-white);
    font-size: 22px;
    line-height: 1.227em;
}
.hero-slider__desc {
    width: 100%;
    max-width: 340px;
    margin-top: 65px;
    text-align: left;
    float: left;
}
.hero-slider__author {
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    display: block;
    color: var(--color-white);
    font-size: 15px;
    margin-bottom: 5px;
}
.hero-slider__content .meta a {
    color: var(--color-white);
    text-decoration: none;
    font-size: 11px;
}
.hero-slider__content .meta {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    margin-top: 2px;
}
.hero-slider__phone + .hero-slider__mail {
    margin-left: 110px;
}
.hero-slider .slick-arrow {
    bottom: 15px;
}

#hero-slider {
    position: relative;
    z-index: 3;
}
#hero-dots {
    position: relative;
    z-index: 4;
}
.hero-blocks {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    width: 100%;
    max-width: 1080px;
    margin: -55px auto 0;
    padding-bottom: 80px;
}
.hero-blocks__item {
    width: 284px;
    height: 134px;
    margin: 0;
    background: url('../assets/hero/hero_item.png') center center no-repeat;
    padding: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    text-align: center;
    color: var(--color-black);
    font-size: 21px;
    line-height: 1.182em;
    cursor: pointer;
    margin: 0 -10px;
    position: relative;
    z-index: 3;
}
.hero-blocks__item p {
    -webkit-transform: rotate(358.485deg);
        -ms-transform: rotate(358.485deg);
            transform: rotate(358.485deg);
    position: relative;
    top: -5px;
}
.hero-blocks__item.active,
.hero-blocks__item:hover {
    background: url('../assets/hero/hero_item_active.png') center center no-repeat;
    color: var(--color-white);
}
.hero-blocks__arrow {
    position: absolute;
    bottom: 0;
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
    left: 50%;
    z-index: 2;
}

.section {
    padding: 55px 0;
}

.about {
    overflow: hidden;
    background: #040F23 url(../assets/bg/about_dark.jpg) center center no-repeat;
    background-size: contain;
}

.about-nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-top: 0;
    background: url('../assets/about_bg.png') center 56% no-repeat;
    position: relative;
    z-index: 3;
}
.about-nav__item {
    background-color: transparent;
    border: none;
    color: #7F7E7C;
    font-size: 24px;
    line-height: 1em;
}
.about-nav__item > span {
    display: block;
}
.about-nav__item > svg.small {
    width: 220px;
    margin-top: 10px;
    margin-bottom: 20px;
}
.about-nav__item > svg.big {
    width: 368px;
    margin-bottom: 10px;
}

.about-nav__item.active,
.about-nav__item:hover {
    color: var(--color-main-orange);
    cursor: pointer;
}
.about-nav__item.active > svg .cls-1,
.about-nav__item:hover > svg .cls-1 {
    fill: var(--color-main-orange)!important;
    opacity: 1!important;
}
.about-nav__item.active {
    pointer-events: none;
}


.about__item {
    opacity: 0;
    visibility: hidden;
    max-width: 540px;
    width: 100%;
    color: var(--color-main-orange);
    text-align: center;
    font-size: 20px;
    line-height: 1.200em;
    padding: 40px 35px;
    position: relative;
    margin: 0 auto;
}
.about__item:before,
.about__item:after {
    content: '';
    background-color: var(--color-white);
    display: block;
    position: absolute;
}
.about__item:before {
    height: 1px;
    width: 152px;
    top: 0;
    right: 0;
    border-radius: 30px;
}
.about__item:after {
    width: 1px;
    height: 74px;
    top: 0;
    right: 0;
    border-radius: 30px;
}
.about__item.active {
    opacity: 1;
    visibility: visible;
}
.about__content {
    height: 200px;
    position: relative;
    z-index: 2;
}
.about__content_last {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    position: relative;
    top: -25px;
}
.about__content_last .about__item:nth-child(1) {
    position: relative;
    left: 100px;
    max-width: 450px;
}
.about__content_last .about__item:nth-child(1)::before,
.about__content_last .about__item:nth-child(1)::after {
    bottom: 0;
    top: initial;
    right: initial;
    left: 0;
}
.about__content_last .about__item:nth-child(2) {
    position: relative;
    right: 150px;
    max-width: 450px;
}
.about__content_last .about__item:nth-child(2)::before,
.about__content_last .about__item:nth-child(2)::after {
    bottom: 0;
    top: initial;
    left: initial;
    right: 0;
}

.service {
    background: radial-gradient(#3b3b3b, #252523);
    background-size: contain;
    padding-top: 30px;
    padding-bottom: 70px;
    position: relative;
    margin-top: -1px;
}
.service:before {
    content: '';
    height: 19px;
    width: 1425px;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    background: url('../assets/about-to-service.png') center center no-repeat;
}
.service::after {
    content: '';
    height: 100%;
    width: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: url(../assets/bg/service_dark.png) center center no-repeat;
    background-size: contain;
}
.service-wrap {
    margin-top: 30px;
    max-width: 985px;
    margin: 0 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}
.service__title {
    font-family: 'PalatinoLinotype';
    text-align: center;
    color: var(--color-white);
    font-size: 77px;
    letter-spacing: 0.05em;
    font-weight: 400;
    line-height: 0.75em;
    background: url(../assets/service/service_title_bg.png) center bottom no-repeat;
    background-size: auto;
    padding: 10px 0;
    position: relative;
}
.service__title:after {
    content: '';
    display: block;
    position: absolute;
    height: 4px;
    width: 95px;
    top: 50%;
    right: 0;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
    background-color: var(--color-white);
    border-radius: 4px;
}
.service-nav {
    margin-top: 30px;
}
.service-nav__item {
    width: 330px;
    border: 5px solid var(--color-white);
    border-left: none;
    border-top: none;
    padding: 19px 15px;
    position: relative;
}
.service-nav__item:before {
    content: '';
    display: block;
    left: -5px;
    width: 5px;
    height: calc(100% + 5px);
    background-color: var(--color-white);
    position: absolute;
    z-index: 3;
    top: 0;
}
.service-nav__item + .service-nav__item {
    margin-top: 45px;
}
.service-nav__title {
    font-family: 'PalatinoLinotype';
    font-size: 16px;
    line-height: 1.125em;
    text-transform: uppercase;
    color: var(--color-white);
    position: absolute;
    top: calc(-1em + 3px);
    display: block;
    width: 100%;
    left: 0;
    padding: 0 2em;
    text-align: center;
}
.service-nav__title:before,
.service-nav__title:after {
    content: '';
    display: block;
    height: 3px;
    background: var(--color-white);
    position: absolute;
    bottom: 2px;
    border-radius: 10px;
}
.service-nav__title:before {
    left: 0;
    width: 20px;
}
.service-nav__title::after {
    right: 0;
    width: 25px;
}

.service-nav__list {
    position: relative;
    z-index: 2;
}
.service-nav__list-item {
    font-family: 'PalatinoLinotype';
    font-size: 16px;
    line-height: 1.125em;
    opacity: 0.65;
    color: var(--color-white);
    text-decoration: none;
    cursor: pointer;
}
.service-nav__list-item a {
    color: var(--color-white);
    text-decoration: none;
}
.service-nav__list-item + .service-nav__list-item {
    margin-top: 15px;
}
.service-nav__list-item.active {
    opacity: 1;
}
.service-nav__list-item.active:before {
    content: '';
    position: absolute;
    left: -2em;
    z-index: 1;
    display: block;
    background: url(../assets/service/service_item_active.png) 0 0 no-repeat;
    width: 100%;
    height: 30px;
}
.service-nav__list-item.active > span {
    position: relative;
    z-index: 2;
}
.service-content {
    margin-right: 40px;
    padding: 50px 30px;
    position: relative;
    border-right: 8px solid var(--color-white)
}
.service-content:after {
    content: '';
    display: block;
    width: 383px;
    height: 8px;
    position: absolute;
    right: -1px;
    bottom: 0;
    background-color: #fff;
    border-radius: 2px;
}
.service-content__logo {
    position: absolute;
    right: 385px;
    bottom: 0;
}
.service-content__title {
    display: block;
    color: var(--color-white);
    border: 1px solid var(--color-white);
    position: absolute;
    font-family: 'PalatinoLinotype';
    font-size: 16px;
    line-height: 1.125em;
    padding: 8px 9px;
    top: 4px;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
    right: 50px;
}
.service-content__title:after {
    content: '';
    display: block;
    width: 51px;
    height: 8px;
    background-color: var(--color-white);
    position: absolute;
    left: 100%;
    top: 50%;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
}
.service-content__text {
    display: none;
    color: var(--color-white);
    text-align: right;
    font-size: 20px;
    line-height: 1.250em;
}
.service-content__text.active {
    display: block;
}
.service-content__text p + p {
    margin-top: 2em;
}

.form {

}
.form-field {
    position: relative;
}
.form-field + .form-field {
    margin-top: 8px;
}
label {
    font-size: 11px;
    line-height: 12px;
    color: var(--color-white);
    position: absolute;
    bottom: 0;
    left: 0;
    opacity: 0.43;
    cursor: text;
    height: 100%;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    padding: 8px;
}
label:focus {
    opacity: 0;
}
input[type="text"],
input[type="phone"],
input[type="email"] {
    font-size: 11px;
    color: var(--color-white);
    background-color: #979695;
    padding: 6px;
    height: 28px;
    border: 2px solid var(--color-black);
    width: 100%;
}
input[type="submit"],
input[type="button"] {
    background-color: transparent;
    color: var(--color-black);
    height: 24px;
    padding: 0;
    font-size: 17px;
    line-height: 1em;
    border: none;
    cursor: pointer;
}
.form-bottom {
    margin-top: 5px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
}
.form-info.success,
.form-info.error {
    margin-top: 20px;
}

.job {
    overflow: hidden;
    background: #fff url(../assets/bg/job_dark.jpg) center center no-repeat;
    background-size: contain;
    position: relative;
    padding: 30px 0;
}
.job::before {
    content: '';
    display: block;
    height: 25%;
    position: absolute;
    z-index: 3;
    top: 0;
    width: 100vw;
    background: linear-gradient(#dadada 0%, transparent 55%);
}
.job > .container {
    position: relative;
    z-index: 4;
}
.popup-content { 
    width: -webkit-max-content; 
    width: -moz-max-content; 
    width: max-content;
}
.popup-content {
    background-color: lightgray;
}
.job-wrap {
    max-width: 817px;
    margin: 22px auto 0 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 217px;
}
.job-actions {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    max-width: 817px;
    width: 100%;
    margin: 5px auto 0 auto;
}
.job-actions__item {
    font-size: 22px;
    line-height: 1.227em;
    background-color: transparent;
    color: var(--color-black);
    border: 2px solid var(--color-black);
    width: 317px;
    height: 77px;
    transition: var(--transition);
    cursor: pointer;
}
.job-actions__item.active,
.job-actions__item:hover {
    color: #FFF343;
    background-color: #979695;
}
.form-title {
    font-size: 17px;
    line-height: 1.235em;
    color: var(--color-black);
    text-align: left;
    margin-bottom: 10px;
}

.job-title {
    font-size: 35px;
    line-height: 1.250em;
    margin-bottom: 0;
}
.job-form-wrap {
    opacity: 0;
    visibility: hidden;
    position: relative;
    transition: var(--transition);
}
.job-form-wrap.active,
.job-form-wrap.show {
    opacity: 1;
    visibility: visible;
}
.job-form {
    max-width: 232px;
    width: 100%;
}


.footer {
    background: #2e2e2d url('../assets/footer_bg-min.png') center center no-repeat;
    background-size: 120%;
}
.footer-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    height: 90px;
}
.footer-right {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: distribute;
        justify-content: space-around;
    padding-left: 100px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 100%;
}

.footer-right__item {
    display: block;
    position: relative;
    text-align: center;
    text-decoration: none;
    color: var(--color-white);
}
.footer-right__item_instagram {
    top: 4px;
}
.footer-right__item_instagram .text {
    font-size: 12px;
    line-height: 1.167em;
    margin-top: 2px;
    display: block;
}

.footer-right__item_phone {
    width: 144px;
}
.footer-right__item_phone .country {
    position: absolute;
    font-size: 17px;
    line-height: 1.235em;
    left: 22px;
    top: 8px;
}
.footer-right__item_phone img {
    float: left;
}
.footer-right__item_phone .number {
    display: block;
    font-size: 14px;
    line-height: 1.214em;
    position: absolute;
    width: 100%;
    bottom: 0;
    right: 0;
}

.go-to-top {
    width: 50px;
    height: 50px;
    background-color: #040f23;
    color: var(--color-white);
    opacity: 0;
    visibility: hidden;
    transition: 0.23s;
    position: fixed;
    bottom: 45px;
    right: 45px;
    z-index: 999;
    cursor: pointer;
    font-size: 2em;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid var(--color-white);
}
.go-to-top:hover {
    color: var(--color-main-orange-active);
    border: 1px solid var(--color-main-orange-active);
}
@media (max-width: 1240px){
    h2 {
        font-size: 27px;
    }
    
    .header-logo {
        width: 280px;
    }
    .header-right {
        max-width: 510px;
    }
    .navbar__bg {
        height: 46px;
    }
    .navbar__horizontal {
        bottom: -5px;
        height: 9px;
    }
    .navbar {
        margin-top: 10px;
        height: 50px;
    }
    .navbar-wrap {
        height: 45px;
        padding-left: 30px;
    }
    .navbar__item {
        font-size: 20px;
    }
    .navbar__item + .navbar__item {
        margin-left: 60px;
    }
    .header-phones {
        font-size: 16px;
        max-width: 510px;
    }
    .header-lang__sep {
        width: 4px;
    }
    .header-lang + .header-phones {
        margin-top: 10px;
    }
    .header-lang {
        width: 120px;
    }
    .header-lang__item {
        font-size: 18px;
    }

    .hero:after {
        height: 50px;
    }
    .hero-blocks__arrow {
        width: 125px;
    }
    .hero-slider{
        right: -45px;
    }
    .hero-slider__image {
        height: 320px;
    }
    .hero-slider__text {
        font-size: 18px;
    }
    .hero-slider__author {
        font-size: 14px;
    }
    .hero-slider__desc {
        margin-top: 50px;
    }
    .hero-blocks__item {
        font-size: 20px;
        background-size: contain!important;
        width: 260px;
        height: 125px;
        font-size: 18px;
    }

    .about-nav {
        background-size: contain!important;
    }
    .about-nav__item {
        font-size: 22px;
    }
    .about-nav__item > svg.small {
        width: 200px;
        margin-top: 5px;
        margin-bottom: 0;
    }
    .about-nav__item > svg.big {
        width: 348px;
        margin-bottom: 5px;
    }
    .about__item {
        padding: 35px 30px;
    }
    .about__content_last .about__item:nth-child(1) {
        left: 0;
        max-width: 350px;
    }
    .about__content_last .about__item:nth-child(2) {
        right: 0;
        max-width: 350px;
    }
    .about__content_last {
        top: -30px;
    }

    .service__title {
        font-size: 65px;
    }
    .service-content__text {
        font-size: 18px;
    }
    .service-content {
        border-width: 5px;
    }
    .service-content:after {
        width: 233px;
        height: 5px;
    }
    .service-content__title:after {
        height: 5px;
    }
    .service-content__title {
        padding: 8px 9px 9px;
        top: 3px;
    }
    .service-content__logo {
        right: 270px;
    }

    .header,
    .job,
    .about {
        background-size: cover;
    }
    .job {
        background-position-x: 65%;
    }

    .footer-right {
        padding-left: 60px;
        -webkit-box-pack: justify;
            -ms-flex-pack: justify;
                justify-content: space-between;
    }
}

@media (max-width: 991.98px) {
    h2 {
        font-size: 24px;
    }

    .header-wrap {
        padding-top: 20px;
    }
    .header-logo {
        width: 230px;
    }
    .header-lang + .header-phones {
        margin-top: 4px;
    }
    .header-lang__sep {
        width: 3px;
        height: 90px;
    }
    .header-right {
        max-width: 407px;
        margin-top: 0;
    }
    .header-phones {
        font-size: 14px;
        max-width: 430px;
    }

    .navbar {
        margin-top: 5px;
        height: 45px;
    }
    .navbar__bg {
        left: -100px;
        height: 38px;
    }
    .navbar__horizontal {
        bottom: 2px;
        height: 7px;
        left: -100px;
    }
    .navbar__item {
        font-size: 18px;
    }
    .navbar-wrap {
        height: 40px;
        padding-left: 25px;
    }
    .navbar__item + .navbar__item {
        margin-left: 45px;
    }

    .hero {
        margin-top: 30px;
    }
    .hero-slider {
        right: 55px;
    }
    .hero-slider__content {
        margin-top: 25px;
    }
    .hero-slider__text {
        font-size: 14px;
    }
    .hero-slider__image {
        height: 245px;
        margin-left: 25px;
    }
    .hero-slider__desc {
        margin-top: 35px;
    }
    .hero-blocks {
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
        margin: -45px auto 0;
    }
    .hero-blocks__item {
        margin: 0 20px;
    }

    .about__content {
        height: 175px;
    }
    .about__content_last {
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
    }
    .about__item {
        display: none;
        font-size: 18px;
    }
    .about__item.active {
        display: block;
    }
    .about__content_last .about__item {
        max-width: 540px!important;
        margin-top: 20px;
    }

    .about-nav__item {
        font-size: 20px;
    }
    .about-nav__item > svg.big {
        width: 308px;
    }
    .about-nav__item > svg.small {
        width: 160px;
    }

    .service::after {
        background-repeat: repeat-y;
    }
    .service-wrap {
        margin-top: 30px;
    }
    .service:before {
        height: 14px;
        background-size: contain;
        width: 100%;
    }
    .service__title {
        font-size: 60px;
    }
    .service-content__text {
        font-size: 14px;
    }
    .service-nav__item {
        width: 263px;
        border: 3px solid var(--color-white);
        border-left: none;
        border-top: none;
        padding: 14px 10px;
        position: relative;
    }
    .service-nav__item:before {
        left: -3px;
        width: 3px;
        height: calc(100% + 3px);
    }
    .service-nav__title:before {
        left: -3px;
        width: 15px;
    }
    .service-nav__title::after {
        right: -3px;
        width: 15px;
    }
    .service-nav__title {
        font-size: 14px;
        padding: 0;
    }
    .service-nav__list-item {
        font-size: 14px;
    }
    .service-nav__list-item + .service-nav__list-item {
        margin-top: 14px;
    }
    .service-content {
        padding-bottom: 100px;
    }
    .service-content__logo {
        right: 100px;
        bottom: 25px;
    }
    .service-content:after {
        width: 310px;
    }
    .job-wrap {
        gap: 122px;
    }
    .footer {
        background-size: 190%;
    }
    .footer-wrap > img {
        width: 120px;
    }
    .footer-right {
        padding-left: 40px;
    }
    .footer-right__item_phone {
        width: 130px;
    }
    .footer-right__item_phone .number {
        font-size: 12px;
    }
    .footer-right__item_phone img {
        height: 50px;
    }
    .footer-right__item_phone .country {
        font-size: 14px;
        left: 17px;
        top: 8px;
    }
}
@media (max-width: 767.98px){
    .go-to-top { 
        width: 40px;
        height: 40px;
        bottom: 15px;
        right: 15px;
        font-size: 1.4em;
    }
    .section {
        padding: 40px 0;
    }
    h2 {
        font-size: 20px;
    }
    .header-logo {
        position: absolute;
    }
    .header-right {
        max-width: 100%;
        margin-top: 0;
    }
    .header-wrap {
        padding-top: 20px;
    }
    .header-phones {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        -webkit-box-align: end;
            -ms-flex-align: end;
                align-items: flex-end;
        font-size: 12px;
    }
    .header-phones > a + a {
        margin-top: 2px;
    }
    .header-lang {
        width: 90px;
        height: 35px;
    }
    .header-lang__item {
        font-size: 14px;
    }
    .header-lang__sep {
        width: 2px;
    }
    .navbar {
        margin-top: 10px;
        height: 46px;
        position: absolute;
        right: 0;
        top: 120px;
        width: calc(100% - 20px);
        left: 20px;
        overflow: hidden;
    }
    .navbar-wrap {
        height: 100%;
        height: 42px;
        padding: 10px;
        left: initial;
        right: calc(50% - 310px);
        width: 315px;
    }
    .navbar hr.horizontal {
        bottom: 0;
        left: initial;
        right: -40px;
        width: 315px;
    }
    .navbar__item + .navbar__item {
        margin-left: 15px;
    }
    .navbar__item {
        font-size: 14px;
    }
    .navbar__bg {
        left: calc(50% - 130px);
    }
    .navbar__horizontal {
        left: calc(50% - 180px);
    }

    .hero-slider {
        padding: 0;
        margin-top: 80px;
        right: 0;
    }
    .hero-slider__image {
        height: 200px;
        margin: 0 auto 10px;
    }
    .hero-slider__item {
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
            -ms-flex-direction: column-reverse;
                flex-direction: column-reverse;
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
    }
    .hero-slider__text {
        font-size: 12px;
        text-align: center;
    }
    .hero-slider__author {
        font-size: 11px;
        margin: 0 auto 5px;
    }
    .hero-slider__content {
        margin-top: 0;
        margin-bottom: 25px;
        width: calc(100vw - 30px)!important;
    }
    .hero-slider__content .meta {
        -ms-flex-pack: distribute;
            justify-content: space-around;
    }
    .hero-slider__content .meta a {
        font-size: 10px;
    }
    .hero-slider__desc {
        padding: 0;
        margin: 2em auto 0;
        float: initial;
    }
    .hero-slider__phone + .hero-slider__mail {
        margin-left: 0;
    }
    .hero-slider__text br {
        display: none;
    }
    .slick-arrow {
        width: 15px;
    }
    .hero-slider .slick-arrow {
        bottom: 7px;
    }
    .hero-slider__text {
        max-width: 300px;
        margin: 0 auto;
    }
    .hero-blocks {
        display: -ms-grid;
        display: grid;
        -ms-grid-rows: auto;
        -ms-grid-columns: auto auto;
            grid-template: auto / auto auto;
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
        justify-items: center;
        margin: -50px auto 0 auto;
    }
    .hero-blocks__item {
        font-size: 12px;
        margin: 0;
        padding: 0;
        height: 75px;
        width: 160px;
    }
    .hero-blocks__arrow {
        width: 70px;
    }
    .hero:after {
        height: 30px;
    }
    
    .about__item,
    .about__content_last .about__item {
        font-size: 14px!important;
        max-width: 440px!important;
    }
    .about-nav__item > svg.small {
        width: 100px;
    }
    .about-nav__item > svg.big {
        width: 200px;
    }
    .about__content {
        height: 150px;
    }

    .service__title {
        font-size: 40px;
    }
    .service__title:after {
        content: none;
    }

    .service-content {
        border-width: 5px;
        width: 100%;
        max-width: 310px;
        padding-bottom: 40px 15px 100px 0;
        margin-right: 0;
    }
    .service-wrap {
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
            -ms-flex-direction: column-reverse;
                flex-direction: column-reverse;
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
    }
    .service-content__logo {
        right: 55px;
    }
    .service-content__title {
        top: 2px;
    }

    .job-actions {
        margin-top: 15px;
    }
    .job-actions__item + .job-actions__item {
        margin-left: 5px;
    }
    .job-actions__item {
        margin-left: 5px;
        font-size: 14px;
        height: 53px;
        margin: 0;
    }
    .job-wrap {
        gap: 0;
    }

    .footer-wrap {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
        height: 270px;
    }
    .footer-right {
        padding-left: 0;
        display: -ms-grid;
        display: grid;
        -ms-grid-rows: auto;
        -ms-grid-columns: 1fr 20px 1fr;
            grid-template: auto / 1fr 1fr;
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
        justify-items: center;
        grid-gap: 20px;
    }
    .footer-right__item {
        top: 15px!important;
    }
    .footer {
        background: #2e2e2d;
    }
    .popup-content {
        width: 300px;
    }
}
@media (max-width: 575.98px) {
    .navbar-wrap {
        right: -30px;
    }
    .middle-title {
        width: 240px;
    }
    .job-title {
        font-size: 26px;
    }
    .navbar {
        left: 0;
        right: 0;
        width: 100%;
    }
    .navbar__bg {
        left: calc(50% - 225px);
    }
    .navbar__horizontal {
        left: calc(50% - 280px);
    }
    .header-logo {
        width: 190px;
    }

    .about-nav__item > svg.big {
        width: 115px;
    }
    .about-nav__item > svg.small {
        width: 65px;
    }
    .about-nav__item {
        font-size: 14px;
    }
    .about__item, .about__content_last .about__item {
        font-size: 12px!important;
        max-width: calc(100% - 15px);
        padding: 15px;
    }
    .about__content {
        height: 115px;
        width: calc(100% - 30px);
        margin: 0 auto;
    }
    .about__content_last {
        margin-top: 15px;
    }
}