:root {
    --color-black: #000;
    --color-white: #fff;
    --color-gray: #E6E6E6;
    --color-main-green: #BFCB4C;
    --color-main-green-active: #707D35;
    --border-radius: 12px;
    --box-shadow: 2px 2px 0 0 var(--color-black);
}

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    outline: none;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
}

@font-face { 
    font-family: 'ArialRoundedMTProCyrBold';  
    src: local('ArialRoundedMTProCyr'), 
        url('../../fonts/ArialRoundedMTProCyrBold.otf') format('opentype'),
        url('../../fonts/ArialRoundedMTProCyrBold.woff') format('woff');  
}
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;
}

.container {
    padding: 0 15px;
    width: 100%;
}
@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;
    }
}

ul {
    list-style: none;
}

.header {
    overflow: hidden;
    background: #fff url(../assets/bg/hero.jpg) center center no-repeat;
}

.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-main-green-active);
    text-decoration: none;
}
.link:hover {
    color: var(--color-black);
}

.middle-title {
    position: relative;
}
.middle-title-wrap {
    position: relative;
    z-index: 3;
    margin: 0 auto;
    background-color: var(--color-main-green);
    color: var(--color-white);
    border-radius: var(--border-radius);
    height: 62px;
    padding: 0 0.5em;
    text-align: center;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    max-width: 280px;
}
.middle-title_shadow .middle-title-wrap {
    -webkit-box-shadow: var(--box-shadow);
            box-shadow: var(--box-shadow);
}
.middle-title_dark .middle-title-wrap {
    background-color: var(--color-main-green-active);
}
.middle-title.big .middle-title-wrap {
    width: 337px;
    max-width: 100%;
}
.middle-title__line {
    display: block;
    height: 5px;
    width: 90vw;
    max-width: 1180px;
    position: absolute;
    z-index: 2;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    background-color: var(--color-white);
}
.middle-title__line:before,
.middle-title__line:after {
    content: '';
    position: absolute;
    background-color: var(--color-white);
    width: 5px;
    height: 100vh;
}
.middle-title__line:before {
    left: 0;
    top: 0;
}
.middle-title__line:after {
    bottom: 0;
    right: 0;
}


.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: 36px;
    max-width: 800px;
    width: 100%;
}

.header-lang {
    width: 150px;
    height: 35px;
    background-color: var(--color-gray);
    border-radius: var(--border-radius);
    -webkit-box-shadow: 0 0 2px 2px var(--color-gray);
            box-shadow: 0 0 2px 2px var(--color-gray);
    font-size: 15px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: distribute;
        justify-content: space-around;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 0px 10px;
}
.header-lang__item {
    font-size: 20px;
    text-decoration: none;
    color: var(--color-main-green);
}
.header-lang__item:hover {
    color: var(--color-main-green-active);
}
.header-lang__item.active {
    color: var(--color-main-green-active);
    pointer-events: none;
}
.header-lang__item:hover {
    cursor: pointer;
}
.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: 14px;
}
.navbar-wrap {
    background-color: var(--color-main-green);
    height: 47px;
    width: 100vw;
    position: absolute;
    left: 0;
    border-radius: var(--border-radius);
    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: #fff;
    line-height: 1em;
}
.navbar__item + .navbar__item {
    margin-left: 90px;
}
.navbar hr.horizontal {
    position: absolute;
    width: 100vw;
    left: 15px;
    bottom: 0;
}

.hero-slider {
    max-width: 950px;
    margin: 0 auto;
    padding-right: 50px;

}
.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: end;
        -ms-flex-align: end;
            align-items: flex-end;
}
.hero-slider__image {
    margin-left: 35px;
}
.hero-slider__content  {
    margin-bottom: 10px;
}
.hero-slider__text {
    text-align: right;
    color: #6B6966;
    font-size: 22px;
    line-height: 1.227em;
}
.hero-slider__desc {
    width: 100%;
    max-width: 340px;
    margin-top: 90px;
    text-align: right;
    float: right;
}
.hero-slider__author {
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    color: var(--color-main-green-active);
    font-size: 15px;
}
.hero-slider__content .meta a {
    color: #201600;
    text-decoration: none;
    font-size: 11px;
}
.hero-slider__content .meta {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    margin-top: 2px;
}
.hero-slider__phone + .hero-slider__mail {
    margin-left: 110px;
}
.hero-slider .slick-arrow {
    bottom: 15px;
}

.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: 960px;
    margin: 30px auto;
}
.hero-blocks__item {
    width: 220px;
    margin: 10px;
    background-color: var(--color-main-green);
    padding: 5px 20px;
    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-white);
    font-size: 22px;
    line-height: 1.182em;
    border-radius: var(--border-radius);
    cursor: pointer;
    -webkit-box-shadow: 2px 1px 0px 0px #C9C8C8;
            box-shadow: 2px 1px 0px 0px #C9C8C8;
}
.hero-blocks__item.active,
.hero-blocks__item:hover {
    background-color: var(--color-main-green-active);
}

.section {
    padding: 55px 0;
}

.about {
    background: #e6e6e6 url(../assets/bg/about.jpg) center center no-repeat;
    overflow: hidden;
}
.about-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    max-width: 1015px;
    margin: 50px auto 0;
    width: 100%;
}
.about-logo {
    position: absolute;
    bottom: -110px;
    left: 50%;
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
}
.about-nav__item {
    background-color: var(--color-main-green);
    color: var(--color-white);
    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;
    font-size: 33px;
    line-height: 1.212em;
    -webkit-box-shadow: var(--box-shadow);
            box-shadow: var(--box-shadow);
    width: 313px;
    height: 135px;
    border-radius: var(--border-radius);
    border: none;
    cursor: pointer;
}
.about-nav__item.active,
.about-nav__item:hover {
    background-color: var(--color-white);
    color: var(--color-black);
}
.about-nav__item + .about-nav__item {
    margin-top: 20px;
}

.about__content {
    width: 639px;
    border-radius: var(--border-radius);
    -webkit-box-shadow: var(--box-shadow);
            box-shadow: var(--box-shadow);
    background-color: var(--color-white);
    color: var(--color-black);
    font-size: 18px;
    line-height: 1.294em;
    padding: 16px 20px;
    height: 287px;
    position: relative;
}
.about__item {
    display: none;
    max-width: 551px;
}
.about__item.active {
    display: block;
}

.service {
    overflow: hidden;
    background: #fff url(../assets/bg/service.jpg) center center no-repeat;
}
.service-wrap {
    margin-top: 35px;
}

.service__row {
    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;
    margin: 0 auto;
    width: 100%;
}
.service__row + .service__row {
    margin-top: 20px;
}
.service__row:nth-child(1),
.service__row:nth-child(3) {
    max-width: 440px;
}
.service__row:nth-child(2) {
    max-width: 659px;
}
.service__col {
    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: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    height: 240px;
}
.service__block {
    width: 140px;
    height: 115px;
    background-color: var(--color-gray);
    border-radius: var(--border-radius);
    padding: 8px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -ms-flex-pack: distribute;
        justify-content: space-around;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    text-align: center;
    cursor: pointer;
}
.service__block-title {
    display: block;
    margin-top: 5px;
    font-size: 13px;
    line-height: 1.231em;
    color: var(--color-black);
}
.service__block.active,
.service__block:hover {
    background-color: var(--color-main-green);
}
.service__block.active img
.service__block:hover img {
    -webkit-filter: brightness(0) invert(1);
            filter: brightness(0) invert(1);
}
.service__content {
    position: relative;
}
.service__content-wrap {
    display: none;
    position: relative;
    z-index: 3;
    background-color: var(--color-main-green);
    border-radius: var(--border-radius);
    padding: 16px 20px;
    height: 267px;
    width: 315px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}
.service__content-wrap.active {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.service__content:before,
.service__content:after {
    content: '';
    position: absolute;
    z-index: 2;
    background-color: var(--color-main-green-active);
    opacity: 0.1; 
}
.service__content:before {
    height: 5px;
    width: 100vw;
    right: 50px;
    top: 0;
}
.service__content::after {
    width: 5px;
    height: 100vh;
    top: 50px;
    left: 50%;
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
}

.service__text {
    font-size: 12px;
    line-height: 1.273em;
    color: var(--color-white);
}
.service__content .meta {
    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;
}
.service__content .meta__link {
    display: block;
    text-decoration: none;
    font-size: 11px;
    line-height: 1.182em;
    color: var(--color-black);
}
.service__content .meta__link:hover {
    color: var(--color-white);
}
.service__content .meta__phone {
    display: block;
    text-decoration: none;
    font-size: 15px;
    line-height: 1.200em;
    color: var(--color-main-green-active);
    margin-top: 2px;
}
.service__content .meta__phone:hover {
    color: var(--color-white);
}

.form-field {
    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-field + .form-field {
    margin-top: 8px;
}
label {
    font-size: 11px;
    line-height: 12px;
    color: var(--color-white);
    margin-bottom: 4px;
    text-align: right;
    padding-right: 0.5em;
}
input[type="text"],
input[type="phone"],
input[type="email"] {
    font-size: 11px;
    line-height: 1em;
    color: #979695;
    background-color: var(--color-white);
    border-radius: var(--border-radius);
    padding: 0 2em;
    height: 22px;
    border: none;
    width: 100%;
    -webkit-box-shadow: 2px 1px 0 0 #7F7E7C;
            box-shadow: 2px 1px 0 0 #7F7E7C;
}
input[type="submit"],
input[type="button"] {
    background-color: var(--color-main-green-active);
    color: var(--color-white);
    height: 24px;
    padding: 0 2em;
    font-size: 12px;
    line-height: 1em;
    border-radius: var(--border-radius);
    border: none;
    cursor: pointer;
}
.form-bottom {
    margin-top: 12px;
    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: var(--color-main-green) url(../assets/bg/job.jpg) center center no-repeat;
}
.job, .popup-content {
    background-color: var(--color-main-green);
}
.telegram-form {
    position: relative;
    right: -20px;
    display: none;

}
.job-actions {
    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;
    margin-bottom: 25px;
}
.job-actions__item {
    font-size: 16px;
    line-height: 1.250em;
    background-color: #C9C8C8;
    color: var(--color-black);
    border: none;
    width: 178px;
    height: 61px;
    border-radius: var(--border-radius);
    -webkit-box-shadow: 2px 2px 0 0 #7F7E7C;
            box-shadow: 2px 2px 0 0 #7F7E7C;
    cursor: pointer;
}
.job-actions__item + .job-actions__item {
    margin-left: 25px;
}
.job-actions__item.active,
.job-actions__item:hover {
    color: var(--color-main-green-active);
    background-color: var(--color-white);
}
.form-title {
    font-size: 17px;
    line-height: 1.235em;
    color: var(--color-black);
    text-align: center;
    margin-bottom: 10px;
}


.job-form-wrap {
    max-width: 232px;
    position: relative;
    right: -20px;
    display: none;
}
.job-form-wrap.active,
.job-form-wrap.show {
    display: block;
}

.contact-form {
    max-width: 232px;
    width: 100%;
    margin: 0 auto;
}
.job-form {
    max-width: 232px;
    width: 100%;
    margin: 0 auto;
}

.footer {
    background: var(--color-main-green-active) url(../assets/bg/footer.jpg) center center no-repeat;
}
.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-between;
    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: var(--color-white);
    color: var(--color-main-green);
    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-radius: var(--border-radius);
    border: 1px solid var(--color-main-green);
}
.go-to-top:hover {
    color: var(--color-main-green-active);
    border: 1px solid var(--color-main-green-active);
}
@media (max-width: 1240px){
    h2 {
        font-size: 27px;
    }
    
    .header {
        background-size: cover;
        background-position-x: 0;
    }
    .about,
    .service,
    .job
    .footer {
        background-size: cover;
    }
    .footer {
        background-size: 935px;
    }
    .service {
        background-repeat: repeat-y;
    }

    .header-logo {
        width: 280px;
    }
    .header-right {
        max-width: 640px;
    }
    .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 + .header-phones {
        margin-top: 16px;
    }
    .header-lang {
        width: 135px;
        height: 33px;
    }
    .header-lang__item {
        font-size: 18px;
    }

    .hero-slider__text {
        font-size: 20px;
    }
    .hero-slider__author {
        font-size: 14px;
    }
    .hero-blocks__item {
        font-size: 20px;
    }
    .hero-slider__image {
        height: 280px;
        margin-left: 30px;
    }

    .about-wrap {
        max-width: 800px;
        margin-top: 35px;
    }
    .about__content {
        width: 490px;
        font-size: 15px;
    }
    .about-nav__item {
        font-size: 27px;
        width: 273px;
        height: 105px;
    }
    .about-logo {
        bottom: -90px;
        width: 230px;
    }

    .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-logo {
        width: 230px;
    }
    .header-right {
        max-width: 480px;
        margin-top: 20px;
    }
    .header-phones {
        font-size: 14px;
        max-width: 430px;
    }
    .header-lang + .header-phones {
        margin-top: 14px;
    }

    .navbar {
        margin-top: 5px;
        height: 45px;
    }
    .navbar__item {
        font-size: 18px;
    }
    .navbar-wrap {
        height: 40px;
        padding-left: 25px;
    }
    .navbar__item + .navbar__item {
        margin-left: 45px;
    }

    .hero-slider__text {
        font-size: 15px;
    }
    .hero-slider__image {
        height: 245px;
        margin-left: 25px;
    }
    .hero-slider__desc {
        margin-top: 60px;
    }
    .hero-blocks__item {
        font-size: 16px;
        padding: 10px 20px;
        width: 175px;
        margin: 0;
    }
    .footer {
        background-size: 790px;
    }
    .about-wrap {
        max-width: 660px;
    }
    .about-nav__item {
        font-size: 24px;
        width: 230px;
        height: 100px;
    }
    .about__content {
        width: 410px;
    }

    .middle-title-wrap {
        height: 57px;
    }
    .middle-title.big .middle-title-wrap {
        width: 295px;
    }

    .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;
    }
    .middle-title-wrap {
        height: 48px;
    }
    .middle-title.big .middle-title-wrap {
        width: 240px;
    }
    .header-logo {
        width: 140px;
        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;
    }
    .header-phones > a + a {
        margin-top: 2px;
    }
    .header-lang {
        width: 115px;
        height: 30px;
    }
    .header-lang__item {
        font-size: 14px;
    }
    .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: -30px;
        width: 54vw;
    }
    .navbar hr.horizontal {
        bottom: 0;
        left: initial;
        right: -40px;
        width: 54vw;
    }
    .navbar__item + .navbar__item {
        margin-left: 15px;
    }
    .navbar__item {
        font-size: 14px;
    }
    .footer {
        background-image: none;
    }
    .hero-slider {
        padding: 0;
        margin-top: 80px;
    }
    .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;
    }
    .hero-slider__text {
        font-size: 12px;
        text-align: center;
    }
    .hero-slider__author {
        font-size: 11px;
    }
    .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 40px;
        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-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: 0 auto 30px auto;
    }
    .hero-blocks__item {
        font-size: 12px;
        padding: 7px 15px;
        width: 150px;
        margin: 5px;
    }

    .about-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;
        margin-top: 15px;
    }
    .about__content {
        width: calc(100% - 40px);
        font-size: 12px;
        min-height: 160px;
        height: auto;
    }
    .about-nav {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
        margin-top: 10px;
    }
    .about-nav__item {
        margin: 5px!important;
        font-size: 16px;
        width: 160px;
        height: 65px;
        padding: 10px;
    }
    .about-logo {
        display: none;
    }

    .service-wrap {
        margin-top: 20px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
            -ms-flex-direction: column-reverse;
                flex-direction: column-reverse;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
    }
    .service__row {
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
        margin: 0 -5px;
    }
    .service__col {
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
        width: 100%;
        height: auto;
        margin: 0 -5px;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
            -ms-flex-direction: row;
                flex-direction: row;
    }
    .service__row + .service__row {
        margin-top: 0;
    }
    .service__block {
        width: 125px;
        margin: 5px;
    }
    .service__content {
        position: relative;
        width: 100%;
        max-width: 400px;
    }
    .service__content::before,
    .service__content::after {
        content: none;
    }
    .service__content-wrap {
        width: 100%;
        height: auto;
        min-height: 230px;
    }
    .job-actions__item + .job-actions__item {
        margin-left: 5px;
    }
    .job-actions__item {
        margin-left: 5px;
        font-size: 14px;
        height: 53px;
        margin: 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;
    }
    .popup-content {
        width: 300px;
    }
}
@media (max-width: 575.98px){
    .navbar-wrap {
        width: 315px;
    }
    .navbar hr.horizontal {
        width: 315px;
    }
    .hero-blocks {
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
        margin: 0 auto 30px auto;
    }
    .hero-blocks__item {
        font-size: 12px;
        padding: 7px 15px;
        width: 150px;
        margin: 5px;
    }
}
@media (max-width: 370px){
    .hero-blocks__item {
        width: 134px;
    }
}