/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */html{line-height:1.15;-webkit-text-size-adjust:100%}body{margin:0}main{display:block}h1{font-size:2em;margin:0.67em 0}hr{-webkit-box-sizing:content-box;box-sizing:content-box;height:0;overflow:visible}pre{font-family:monospace, monospace;font-size:1em}a{background-color:transparent}abbr[title]{border-bottom:none;text-decoration:underline;-webkit-text-decoration:underline dotted;text-decoration:underline dotted}b,strong{font-weight:bolder}code,kbd,samp{font-family:monospace, monospace;font-size:1em}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-0.25em}sup{top:-0.5em}img{border-style:none}button,input,optgroup,select,textarea{font-family:inherit;font-size:100%;line-height:1.15;margin:0}button,input{overflow:visible}button,select{text-transform:none}button,[type="button"],[type="reset"],[type="submit"]{-webkit-appearance:button}button::-moz-focus-inner,[type="button"]::-moz-focus-inner,[type="reset"]::-moz-focus-inner,[type="submit"]::-moz-focus-inner{border-style:none;padding:0}button:-moz-focusring,[type="button"]:-moz-focusring,[type="reset"]:-moz-focusring,[type="submit"]:-moz-focusring{outline:1px dotted ButtonText}fieldset{padding:0.35em 0.75em 0.625em}legend{-webkit-box-sizing:border-box;box-sizing:border-box;color:inherit;display:table;max-width:100%;padding:0;white-space:normal}progress{vertical-align:baseline}textarea{overflow:auto}[type="checkbox"],[type="radio"]{-webkit-box-sizing:border-box;box-sizing:border-box;padding:0}[type="number"]::-webkit-inner-spin-button,[type="number"]::-webkit-outer-spin-button{height:auto}[type="search"]{-webkit-appearance:textfield;outline-offset:-2px}[type="search"]::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}details{display:block}summary{display:list-item}template{display:none}[hidden]{display:none}



@font-face{
    font-family: 'Helvetica';
    src: url('../fonts/Helvetica-Bold.woff2') format('woff2'),
         url('../fonts/Helvetica-Bold.woff') format('woff');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}


@font-face{
    font-family: 'Helvetica';
    src: url('../fonts/Helvetica-Regular.woff2') format('woff2'),
         url('../fonts/Helvetica-Regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}



p,
h1,
h2,
h3,
h4,
h5,
h6{
    margin: 0;
    padding: 0;
    font-weight: 400;
}
html{
    box-sizing: border-box;
    scroll-behavior: smooth;
    overflow-x: hidden;
}
*{outline:none;}
*,
*::before,
*::after{
    box-sizing: inherit;
}
body{
    overflow-x: hidden;
    font-family: 'Helvetica';
}
a{
    text-decoration: none;
}
ul{
    list-style: none;
    padding: 0;
    margin: 0;
}
.container{
    max-width: 1560px;
    margin: 0 auto;
    padding: 0 15px;
}
.header{
    position: absolute;
    width: 100%;
    top: 0;
    right: 0;
    padding: 40px 0;
}
.header .container{
    max-width: 1330px;
}
.header_wrapper{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.header_logo{
    width: 186px;
    display: flex;
}
.header_logo img{
    width: 100%;
    height: auto;
}
.header_text{
    font-size: 13px;
    color: #6F6F6F;
    width: 210px;
    line-height: 18px;
}
.header_btn{
    width: 208px;
    border: 1px solid #F9BC39;
    border-radius: 50px;
    height: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 13px;
    color: #000000;
    line-height: 18px;
    animation: btnAnim 1s ease infinite;
    transition: all 0.3s;
    font-weight: 700;
}
.header_btn:hover{
    background-color: #F9BC39;
}
@keyframes btnAnim {
    0% {
        box-shadow: 0 0 0 0 rgb(249 188 57 / 80%);
    }
    
    100% {
        box-shadow: 0 0 0 15px rgb(249 188 57 / 0%);
    }
}
.header_whats{
    padding-left: 56px;
    position: relative;
}
.header_whats::before{
    position: absolute;
    content: "";
    background-image: url(../img/whats.svg);
    background-size: cover;
    width: 45px;
    height: 45px;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}
.header_whats:hover .header_whats-title{
    color: #3DAC16;
}
.header_whats-title{
    font-size: 13px;
    color: #000000;
    line-height: 18px;
    margin-bottom: 3px;
    font-weight: 700;
    display: block;
    transition: all 0.3s;
}
.header_whats-text{
    font-size: 13px;
    color: #6F6F6F;
    line-height: 18px;
}
.header_number{
    font-size: 23px;
    color: #F3A908;
    margin-bottom: 4px;
    font-weight: 700;
    display: block;
    line-height: 32px;
    transition: all 0.3s;
}
.header_number:hover{
    color: #3DAC16;
}
.header_time{
    font-size: 13px;
    color: #6F6F6F;
    line-height: 18px;
    padding-left: 17px;
    position: relative;
}
.header_time::after {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    content: '';
    position: absolute;
    left: 0px;
    top: 50%;
    background: #F3A908;
    transform: translate(50%, -50%);
    animation: dots_anim 1s cubic-bezier(1, 0, 0, 1) infinite;
}

@keyframes dots_anim{
    0%{
        opacity: 0;

    }
    100%{
        opacity: 1;
    }
}








.main{
    margin: 130px 0 100px;
}

.main_slide{
    border-radius: 30px;
    background: #F0F0F0;
    overflow: hidden;
    padding: 115px 115px 75px;
    position: relative;
    z-index: 1;
}
.main_slide-img{
    position: absolute;
    display: flex;
    top: 0;
    right: 0;
    z-index: -1;
}
.main_slide-subtitle{
    font-size: 30px;
    line-height: 41px;
    color: #000000;
    margin-bottom: 14px;
    font-weight: 700;
}
.main_slide-title{
    font-size: 60px;
    text-transform: uppercase;
    color: #000000;
    margin-bottom: 23px;
    font-weight: 700;
    line-height: 83px;
}
.main_slide-text{
    font-size: 24px;
    line-height: 33px;
    color: #000000;
    margin-bottom: 115px;
}
.main_items{
    display: flex;
    margin-bottom: 42px;
}
.main_item{
    margin-right: 55px;
}
.main_item-title{
    font-size: 18px;
    color: #F3A908;
    margin-bottom: 13px;
    line-height: 25px;
    font-weight: 700;
}
.main_item-text{
    font-size: 16px;
    color: #000000;
    line-height: 26px;
}
.main_btn{
    width: 265px;
    background: #F9BC39;
    border-radius: 50px;
    height: 65px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 15px;
    text-align: center;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #343434;
    line-height: 21px;
    font-weight: 700;
    animation: btnAnim 1s ease infinite;
}
.main_btn.mobile{
    display: none;
}
.main_slider .slick-arrow{
    position: absolute;
    width: 38px;
    background-color: #F9BC39;
    border-radius: 50%;
    height: 38px;
    font-size: 0;
    border: none;
    background-size: cover;
    cursor: pointer;
    z-index: 1;
    bottom: 85px;
}
.main_slider .slick-next{
    right: 120px;
    background-image: url(../img/arrow_right.svg);
}
.main_slider .slick-prev{
    right: 242px;
    background-image: url(../img/arrow_left.svg);
}
.main_slider .slick-dots{
    position: absolute;
    display: flex;
    bottom: 100px;
    right: 170px;
}
.main_slider .slick-dots li{
    display: flex;
}
.main_slider .slick-dots button{
    font-size: 0;
    width: 8px;
    border: 1px solid #A4A4A4;
    margin: 0 2px;
    padding: 0;
    height: 8px;
    border-radius: 50%;
}
.main_slider .slick-dots .slick-active button{
    background: #F9BC39;
    border: none;
}
.place{
    margin: 115px 0 115px;
}
.place .container{
    max-width: 1330px;
}
.place_wrapper{
    display: flex;
    justify-content: space-between;
}
.place_info{
    width: 545px;
}
.place_title{
    font-size: 40px;
    color: #000000;
    margin-bottom: 36px;
    line-height: 60px;
    font-weight: 700;
}
.place_text{
    font-size: 16px;
    color: #000000;
    line-height: 28px;
    margin-bottom: 30px;
}
.place_text:last-child{
    margin-bottom: 0;
}
.place_img{
    display: flex;
    margin-bottom: 5px;
}
.scroll{
    position: fixed;
    right: 5%;
    bottom: 100px;
    z-index: 3;
    transform: scale(0);
    transition: all 0.3s;
}
.scroll.fixed{
    transform: scale(1);
}
.scroll_trigger{
    position: absolute;
    top: 0;
    right: 0;
}
.place_map{
    display: flex;
    height: 520px;
    width: 640px;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}
.place_map img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.place_map-item{
    position: absolute;
    background-image: url(../img/map_carker.svg);
    background-size: cover;
    width: 37px;
    height: 37px;
    display: block;
   
}
.place_map-item.mini{
    width: 26px;
    height: 26px;
}
.place_map-item.big{
    width: 62px;
    height: 62px;
}
.place_map-item:nth-child(1){
    top: 32px;
    right: 73px;
    animation: mainItem 4s infinite reverse;
}
.place_map-item:nth-child(2){
    top: 57px;
    right: 210px;
    animation: mainItem 4s infinite 2.1s reverse;  
}
.place_map-item:nth-child(3){
    top: 57px;
    left: 260px;    
    animation: mainItem 4s infinite 0.6s reverse;
}
.place_map-item:nth-child(4){
    top: 148px;
    left: 280px;    
  
    animation: mainItem 4s infinite 3.6s reverse;
}
.place_map-item:nth-child(5){
    top: 212px;
    left:192px;
    animation: mainItem 4s infinite 1.2s reverse;   
}
.place_map-item:nth-child(6){
    top: 205px;
    left:107px;    
    animation: mainItem 4s infinite 1.4s reverse;   
}
.place_map-item:nth-child(7){
    top: 216px;
    right: 216px;  
    animation: mainItem 4s infinite 1.8s reverse;   
}
.place_map-item:nth-child(8){
    bottom: 214px;
    right: 42px;

    animation: mainItem 4s infinite 0.3s reverse;
}
.place_map-item:nth-child(9){
    left: 200px;
    bottom: 135px;
    animation: mainItem 4s infinite 2.4s reverse;
}
.place_map-item:nth-child(10){
    left: 115px;
    bottom: 68px;
    animation: mainItem 4s infinite 2.7s reverse;
}
.place_map-item:nth-child(11){
    left: 320px;
    bottom: 88px;
    animation: mainItem 4s infinite 3s reverse;
}
.place_map-item:nth-child(12){
    bottom: 165px;
    right: 216px;
    animation: mainItem 4s infinite 3.3s reverse;
}
.place_map-item:nth-child(13){
    bottom: 55px;
    right: 155px;
    animation: mainItem 4s infinite 0.9s reverse;
}
@keyframes mainItem {
    0%{
        opacity: 0;
    }
    10%{
        opacity: 0;
    }
    100%{
        opacity: 1;
    }
}
.solution{
    margin-bottom: 85px;
}
.solution_wrapper{
    border-radius: 30px;
    background: #F7F7F7;
    padding: 90px 115px 100px;
    background-image: url(../img/solution_wrapper.jpg);
    background-size: cover;
    background-position: center;
}
.solution_top{
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 35px;
}
.solution_title{
    font-size: 40px;
    line-height: 60px;
    color: #000000;
    width: 755px;
    font-weight: 700;
}
.solution_top .solution_text{
    width: 475px;
    margin-bottom: 0;
}
.solution_text{
    font-size: 16px;
    color: #000000;
    width: 710px;
    line-height: 28px;
    margin-bottom: 35px;
}
.solution_text span{
    font-weight: 700;
}
.solution_inner{
    background: #F9BC39;
    border-radius: 15px;
    padding: 45px 40px;
    width: 460px;
}
.solution_inner-text{
    font-size: 16px;
    text-align: center;
    color: #000000;
    margin-bottom: 30px;
    line-height: 28px;
}
.solution_btn{
    width: 265px;
    background: #FFFFFF;
    border-radius: 50px;
    margin: 0 auto 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 65px;
    font-size: 15px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #000000;
    font-weight: 700;
    line-height: 21px;
    animation: btnAnim2 1s ease infinite;
}
.solution_btn.mobile{
    display: none;
}
@keyframes btnAnim2 {
    0% {
        box-shadow: 0 0 0 0 rgb(255 255 255 / 80%);
    }
    
    100% {
        box-shadow: 0 0 0 15px rgb(255 255 255 / 0%);
    }
}
.solution_number{
    font-size: 22px;
    color: #000000;
    display: flex;
    justify-content: center;
    font-weight: 700;
    align-items: center;
    position: relative;
}
.solution_number::before{
    position: relative;
    content: "";
    background-image: url(../img/phone.svg);
    background-size: cover;
    width: 21px;
    height: 21px;
    display: block;
    margin-right: 10px;
}

.price{
    margin-bottom: 115px;
}
.price .container{
    width: 1330px;
}
.price_title{
    font-size: 40px;
    color: #000000;
    margin-bottom: 26px;
    line-height: 60px;
    font-weight: 700;
}
.price_text{
    font-size: 16px;
    line-height: 28px;
    margin-bottom: 46px;
    color: #000000;
}
.price_text span{
    font-weight: 700;
}
.price_subtitle{
    font-size: 24px;
    color: #000000;
    margin-bottom: 40px;
    font-weight: 700;
    line-height: 28px;
}
.price_items{
    display: flex;
    justify-content: space-between;
 
}
.price_item{
    width: 32.5%;
    border-radius: 15px;
    background: #F8F8F8;
    padding: 40px 30px 40px 40px;
    min-height: 455px;
    font-size: 16px;
    color: #000000;
    line-height: 26px;
    background-size: cover;
}
.price_inner{
    background: #F9BC39;
    border-radius: 15px;
    margin-top: 30px;
    padding: 40px 70px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 1;
}
.price_inner::after{
    position: absolute;
    content: "";
    background-image: url(../img/price_inner.png);
    background-size: cover;
    width: 418px;
    height: 318px;
    left: -20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: -1;
}
.price_inner::before{
    position: absolute;
    content: "";
    background-color: #FBD47F;
    height: 60%;
    width: 1px;
    top: 50%;
    right: 50%;
    transform: translate(50%,-50%);
}
.price_links{
    width: 45%;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}
.price_info{
    width: 45%;
}
.price_btn{
    width: 265px;
    background: #FFFFFF;
    border-radius: 50px;
    margin-bottom: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 65px;
    font-size: 15px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #000000;
    font-weight: 700;
    line-height: 21px;
    animation: btnAnim2 1s ease infinite;
}
.price_btn.mobile{
    display: none;
}
.price_number{
    font-size: 22px;
    color: #000000;
    display: flex;
    justify-content: center;
    font-weight: 700;
    align-items: center;
    position: relative;
    margin-right: 30px;
}
.price_number::before{
    position: relative;
    content: "";
    background-image: url(../img/phone.svg);
    background-size: cover;
    width: 21px;
    height: 21px;
    display: block;
    margin-right: 10px;
}
.price_whats{
    padding-left: 56px;
    position: relative;
    display: block;
    margin-bottom: 10px;
}
.price_whats::before{
    position: absolute;
    content: "";
    background-image: url(../img/whats.svg);
    background-size: cover;
    width: 45px;
    height: 45px;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}
.price_whats-title{
    font-size: 13px;
    color: #000000;
    line-height: 18px;
    margin-bottom: 3px;
    font-weight: 700;
    display: block;
}
.price_whats-text{
    font-size: 13px;
    color: #6F6F6F;
    line-height: 18px;
}
.price_info-text{
    font-size: 14px;
    color: #000000;
    line-height: 24px;
}
.works{
    margin-bottom: 80px;
}
.works_wrapper{
    background: #F8F8F8;
    border-radius: 30px;
    padding: 85px 100px;
}
.works_title{
    font-size: 40px;
    color: #000000;
    line-height: 60px;
    margin-bottom: 46px;
}
.works_subtitle{
    font-size: 22px;
    color: #000000;
    font-weight: 700;
    line-height: 30px;
    margin-bottom: 50px;
    width: 100%;
    white-space: nowrap;
}
.works_slide-wrapper{
    display: flex !important;
    justify-content: space-between;
}
.works_img{
    width: 623px;
    border-radius: 10px;
    height: 351px;
    overflow: hidden;
}
.works_img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.works_info{
    width: 610px;
}
.works_item{
    border-bottom: 1px solid #DFDFDF;
    padding: 16px 0;
    display: flex;
    justify-content: space-between;
}
.works_item:last-child{
    border-bottom: none;
}
.works_item-title{
    font-size: 16px;
    width: 160px;
    color: #000000;
    line-height: 24px;
    font-weight: 700;
}
.works_item-title span{
    color: #F3A908;
}
.works_item-text{
    width: 420px;
    font-size: 16px;
    color: #000000;
    line-height: 24px;
}
.works_item-text span{
    font-weight: 700;
}
.works_item-price{
    font-size: 24px;
    line-height: 33px;
    color: #F3A908;
    margin-top: 10px;
    font-weight: 700;
}
.works_slider .slick-arrow{
    position: absolute;
    width: 38px;
    background-color: #F9BC39;
    border-radius: 50%;
    height: 38px;
    font-size: 0;
    border: none;
    background-size: cover;
    cursor: pointer;
    z-index: 1;
    top: 0px;
}
.works_slider .slick-next{
    right: 0;
    background-image: url(../img/arrow_right.svg);
}
.works_slider .slick-prev{
    right: 120px;
    background-image: url(../img/arrow_left.svg);
}
.works_slider .slick-dots{
    position: absolute;
    display: flex;
    top: 15px;
    right: 48px;
}
.works_slider .slick-dots li{
    display: flex;
}
.works_slider .slick-dots button{
    font-size: 0;
    width: 8px;
    border: 1px solid #A4A4A4;
    margin: 0 2px;
    padding: 0;
    height: 8px;
    border-radius: 50%;
}
.works_slider .slick-dots .slick-active button{
    background: #F9BC39;
    border: none;
}
.reviews{
    margin-bottom: 115px;
}
.reviews .container{
    max-width: 1330px;
}
.reviews_title{
    font-size: 40px;
    color: #2C2C2C;
    margin-bottom: 20px;
    line-height: 60px;
    font-weight: 700;
}
.reviews_slider{
    margin-bottom: 54px;
}
.reviews_slide{
    display: flex !important;
    justify-content: space-between;
}
.reviews_text{
    font-size: 16px;
    color: #2C2C2C;
    margin-bottom: 20px;
    line-height: 28px;
}
.reviews_slide-stars{
    display: flex;
    align-items: center;
    margin-bottom: 34px;
    font-size: 16px;
    color: #F9BC39;
    line-height: 28px;
}
.reviews_slide-stars span{
    margin-left: 12px;
}
.reviews_options{
    padding: 14px 0;
    position: relative;
}
.reviews_options::before{
    position: absolute;
    content: "";
    background-color: #E6E6E6;
    height: 100%;
    width: 1px;
    left: 15px;
    top: 0;
}

.reviews_option{
    padding-left: 52px;
    position: relative;
    font-size: 16px;
    color: #2C2C2C;
    line-height: 20px;
    margin-bottom: 35px;
}
.reviews_option span{
    color: #696969;
    display: block;
}
.reviews_option:last-child{
    margin-bottom: 0;
}
.reviews_option::before{
    position: absolute;
    content: "";
    background-image: url(../img/reviews_slide.svg);
    background-size: cover;
    width: 31px;
    height: 31px;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}
.reviews_slide-img{
    width: 286.92px;
    height: 583px;
    display: flex;
    border-radius: 10px;
    overflow: hidden;
    margin-left: 80px;
}
.reviews_slide-img iframe,
.reviews_slide-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.reviews_wrapper{
    display: flex;
    align-items: center;
}
.reviews_slider .slick-arrow{
    position: absolute;
    width: 38px;
    background-color: #F9BC39;
    border-radius: 50%;
    height: 38px;
    font-size: 0;
    border: none;
    background-size: cover;
    cursor: pointer;
    z-index: 1;
    bottom: 0;
}
.reviews_slider .slick-next{
    left: 120px;
    background-image: url(../img/arrow_right2.jpg);
    height: 39px;
    border-radius: 0;
    width: 190px;
}
.reviews_slider .slick-prev{
    left: 0;
    background-image: url(../img/arrow_left.svg);
}
.reviews_slider .slick-dots{
    position: absolute;
    display: flex;
    bottom: 15px;
    left: 50px;
}
.reviews_slider .slick-dots li{
    display: flex;
}
.reviews_slider .slick-dots button{
    font-size: 0;
    width: 8px;
    border: 1px solid #A4A4A4;
    margin: 0 2px;
    padding: 0;
    height: 8px;
    border-radius: 50%;
}
.reviews_slider .slick-dots .slick-active button{
    background: #F9BC39;
    border: none;
}
.reviews_dot{
    margin: 0 4px;
    cursor: pointer;
    border: 2px solid rgba(0,0,0, 0);
}
.reviews_dot.slick-current{
    border-radius: 10px;
    border: 2px solid #F9BC39;
}
.reviews_dot img{
    width: 100%;
    height: 100%;
    border-radius: 10px;
}
.form{
    margin-bottom: 80px;
}
.form_wrapper{
    display: flex;
    justify-content: space-between;
    background: #F9BC39;
    border-radius: 30px;
    position: relative;
}
.form_wrapper::before{
    position: absolute;
    content: "";
    background-image: url(../img/form_wrapper.png);
    background-size: cover;
    width: 407px;
    height: 477px;
    right: 0;
    bottom: 0;
}
.form_img{
    width: 765px;
    border-radius: 30px;
    overflow: hidden;
}
.form_img-item{
    height: 650px;
}
.form_img img{
    width: 100%;
    height: 100%;
}
.form_inner{
    width: calc(100% - 765px);
    padding: 90px 120px;
}
.form_title{
    font-size: 50px;
    color: #000000;
    margin-bottom: 30px;
    line-height: 60px;
    font-weight: 700;
}
.form_text{
    font-size: 20px;
    color: #000000;
    margin-bottom: 25px;
    line-height: 28px;
    font-weight: 700;
}
.form_inp{
    width: 280px;
    background: #FFFFFF;
    border-radius: 50px;
    margin-bottom: 10px;
    height: 65px;
    display: block;
    padding-left: 30px;
    border: none;
}
.form_btn{
    width: 280px;
    background: #FFFFFF;
    border-radius: 50px;
    margin-bottom: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 65px;
    border: none;
    cursor: pointer;
    animation: btnAnim2 1s ease infinite;
}
.form_ok{
    font-size: 11px;
    color: #323232;
    line-height: 16px;
    width: 300px;
}
.contacts{
    margin-bottom: 75px;
}
.contacts_title{
    font-size: 40px;
    text-align: center;
    color: #000000;
    margin-bottom: 35px;
    line-height: 60px;
}
.contacts_wrapper{
    display: flex;
    justify-content: center;
    margin-bottom: 50px;
}
.contacts_item{
    margin: 0 62px;
    text-align: center;
}
.contacts_item-title{
    font-size: 14px;
    color: #515151;
    line-height: 19px;
    margin-bottom: 12px;
}
.contacts_item-text{
    font-size: 18px;
    color: #000000;
    line-height: 25px;
}
.contacts_item-messages{
    display: flex;
}
.contacts_item-message{
    display: flex;
    margin: 0 13px;
}
.contacts_map{
    width: 100%;
    height: 535px;
    border-radius: 30px;
    overflow: hidden;
}
.contacts_map iframe{
    width: 100%;
    height: 100%;
}
.footer{
    background: #F8F8F8;
    padding: 55px 0;
}
.footer .container{
    max-width: 1330px;
}
.footer_wrapper{
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #D3D3D3;
    padding-bottom: 36px;
}
.footer_logo{
    width: 186px;
    display: flex;
}
.footer_logo img{
    width: 100%;
    height: auto;
}
.footer_text{
    font-size: 13px;
    color: #6F6F6F;
    width: 210px;
    line-height: 18px;
}
.footer_btn{
    width: 208px;
    border: 1px solid #F9BC39;
    border-radius: 50px;
    height: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 13px;
    color: #000000;
    line-height: 18px;
    animation: btnAnim 1s ease infinite;
    transition: all 0.3s;
    font-weight: 700;
}
.footer_btn:hover{
    background-color: #F9BC39;
}

.footer_whats{
    padding-left: 56px;
    position: relative;
}
.footer_whats::before{
    position: absolute;
    content: "";
    background-image: url(../img/whats.svg);
    background-size: cover;
    width: 45px;
    height: 45px;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}
.footer_whats-title{
    font-size: 13px;
    color: #000000;
    line-height: 18px;
    margin-bottom: 3px;
    font-weight: 700;
    display: block;
}
.footer_whats-text{
    font-size: 13px;
    color: #6F6F6F;
    line-height: 18px;
}
.footer_number{
    font-size: 23px;
    color: #F3A908;
    margin-bottom: 4px;
    font-weight: 700;
    display: block;
    line-height: 32px;
}
.footer_time{
    font-size: 13px;
    color: #6F6F6F;
    line-height: 18px;
    padding-left: 17px;
    position: relative;
}
.footer_time::after {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    content: '';
    position: absolute;
    left: 0px;
    top: 50%;
    background: #F3A908;
    transform: translate(50%, -50%);
    animation: dots_anim 1s cubic-bezier(1, 0, 0, 1) infinite;
}
.footer_inner{
    display: flex;
    justify-content: space-between;
    padding-top: 26px;
    font-size: 12px;
    line-height: 15px;
    color: #5B5B5B;
 
}
.footer_inner a{
    text-decoration-line: underline;
    color: #5B5B5B;
    transition: all 0.3s;
}
.footer_inner a:hover{
    color: #F3A908;
}
.popup_order{
    background: #F9BC39;
    border-radius: 30px;
    width: 750px;
    padding: 40px 65px;
}
.popup_title{
    font-size: 35px;
    color: #000000;
    margin-bottom: 15px;
    font-weight: 700;
    line-height: 60px;
}
.popup_text{
    font-size: 18px;
    color: #000000;
    margin-bottom: 45px;
    line-height: 26px;
}
.jb_input input[type='text'],
.popup_inp{
    width: 280px;
    background: #FFFFFF;
    border-radius: 50px;
    display: block;
    margin-bottom: 10px;
    height: 65px;
    border: none;
    padding-left: 24px;
    font-size: 16px;
}
.jb_input input[type='submit'],
.btn_popup{
    width: 280px;
    background: #FFFFFF;
    border-radius: 50px;
    margin-bottom: 15px;
    height: 65px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    border: none;
    font-weight: 700;
    font-size: 15px;
    text-align: center;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #000000;
    line-height: 21px;
}
.jbForm label,
.popup_ok{
    font-size: 11px;
    color: #323232;
    width: 300px;
    line-height: 16px;
}
.jbForm label a{
    color: #323232; 
}
.popup_order{
    position: relative;
    z-index: 1;
}
.popup_order-img{
    position: absolute;
    bottom: 0;
    right: 30px;
    display: flex;
    z-index: -1;
}
.popup_master{
    background: #F9BC39;
    border-radius: 30px;
    width: 750px;
    position: relative;
    padding: 40px 65px;
}
.popup_inps{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    width: 580px;
}
.popup_inps .popup_ok{
    width: 260px;
    color: #fff;
}
.popup_master{
    z-index: 1;
}
.popup_master .popup_order-img{
    right: 0;
    width: 420px;
}
.popup_master .popup_order-img img{
    width: 100%;
    height: 100%;
}
.popup_video{
    padding: 0;
    background: none;
    width: 800px;
    height: 400px;
}
.popup_video iframe{
    width: 100%;
    height: 100%;
    display: flex;
}
.works_img .slick-arrow{
    bottom: 25px;
    top: auto;
}
.works_img .slick-next{
    right: 31px;
}
.works_img .slick-prev{
    right: 90px;
}
.about {
    margin: 100px 0;
}
.about .container{
    max-width: 1330px;
}
.about_wrapper{
    display: flex;
    justify-content: space-between;
}
.about_info{
    width: 400px;
}
.about_title{
    font-size: 40px;
    color: #000000;
    margin-bottom: 56px;
    line-height: 60px;
    font-weight: 700;
}
.about_text{
    font-size: 16px;
    color: #000000;
    line-height: 28px;
}
.about_text p{
    margin-bottom: 25px;
}
.about_text p:last-child{
    margin-bottom: 0;
}
.about_inner{
    width: 780px;
    margin-top: 20px;
}
.about_subtitle{
    font-size: 26px;
    color: #000000;
    margin-bottom: 45px;
    line-height: 28px;
    font-weight: 700;
}
.about_items{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.about_item{
    width: 48%;
    background: #F9BC39;
    border-radius: 15px;
    margin-bottom: 20px;
    padding: 34px;
    position: relative;
    z-index: 1;
}
.about_item-img{
    position: absolute;
    right: 0;
    top: 50%;
    z-index: -1;
    transform: translateY(-50%);
}
.about_item-title{
    font-size: 18px;
    color: #000000;
    margin-bottom: 14px;
    font-weight: 700;
    line-height: 25px;
}
.about_item-text{
    font-size: 16px;
    color: #000000;
    line-height: 26px;
}
.team{
    margin: 80px 0;
}
.team_wrapper{
    border-radius: 30px;
    padding: 95px 118px 118px;
    background: #F8F8F8;
}
.team_title{
    font-size: 40px;
    line-height: 50px;
    color: #000000;
    margin-bottom: 56px;
    font-weight: 700;
}
.team_items{
    display: flex;
    justify-content: space-between;
}
.team_item{
    width: 19%;
    height: 334px;
    border-radius: 15px;
    background-size: cover;
    background-position: center;
    position: relative;
}
.team_item-info{
    background: #F9BC39;
    border-radius: 15px;
    position: absolute;
    width: 198px;
    height: 85px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    right: 50%;
    bottom: 0;
    font-size: 11px;
    transform: translate(50%,50%);
}
.team_item-info span{
    font-weight: 700;
    font-size: 16px;
    margin-top: 4px;
}

.popup_consult{
    position: fixed;
    bottom: 0;
    right: 50%;
    transform: translate(50%, 100%);
    background: #2A2A2A;
    border-radius: 30px 30px 0 0;
    padding: 45px 275px 45px  45px;
    width: 700px;
    z-index: 4;
    transition: all 0.3s;
    max-width: 100%;
    opacity: 0;
}
.popup_consult.active{
    transform: translate(50%, 0%);
    opacity: 1;
}
.popup_consult::before{
    position: absolute;
    content: "";
    background-image: url(../img/popup_consult.png);
    background-size: cover;
    width: 241px;
    height: 282px;
    right: 18px;
    bottom: 0;
    z-index: -1;
}   
.popup_consult-title{
    font-size: 26px;
    line-height: 31.2px;
    color: #FFFFFF;
    font-weight: 400;
    margin-bottom: 30px;
}
.popup_consult-btn{
    background: #F9BC39;
    border-radius: 50px;
    padding: 18px 38px 18px 81px;
    font-weight: 400;
    line-height: 27.6px;
    display: block;
    color: #000000;
    font-size: 20px;
    position: relative;
}
.popup_consult-btn::before{
    position: absolute;
    content: "";
    background-image: url(../img/popup_consult-btn.svg);
    background-size: cover;
    width: 50px;
    height: 50px;
    top: 7px;
    left: 7px;
}   
.popup_consult-close{
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    cursor: pointer;
    z-index: 1;
}

















@media(max-width:1500px){
    .about .container,
    .reviews .container,
    .place .container,
    .header .container,
    .container{
        max-width: 1150px;
    }
    .main_slide{
        padding: 40px;
    }
    .main_slide-img{
        height: 300px;
    }
    .main_slide-img img{
        height: 100%;
        width: auto;
    }
    .main_item:last-child{
        margin-right: 0;
    }
    .main_slider .slick-arrow{
        bottom: 40px;
    }
    .main_slider .slick-next{
        right: 40px;
    }
    .main_slider .slick-prev{
        right: 150px;
    }
    .main_slider .slick-dots {
        bottom: 55px;
        right: 85px;
    }
    .main_slide-text{
        margin-bottom: 80px;
    }
    .place_map{
        width: 560px;
    }
    .place_info {
        width: 500px;
    }
    .place_img img{
        width: 100%;
        height: 100%;
    }
    .solution_wrapper{
        padding: 40px;
    }
    .solution_title{
        width: 530px;
        font-size: 30px;
        line-height: 42px;
    }
    .price_item{
        padding: 25px;
    }
    .works_wrapper{
        padding: 30px;
    }
    .works_img {
        width: 480px;
        height: 280px;
    }
    .works_info {
        width: 565px;
    }
    .works_item-text {
        width: 385px;
    }
    .form_img{
        width: 560px;
       
    }
    .form_img-item{
        height: 590px;
    }
    .form_inner {
        width: calc(100% - 560px);
        padding: 60px;
    }
    .form_img img{
        object-fit: cover;
    }
    .form_wrapper::before {
        width: 270px;
        height: 340px;
    }
    .team_wrapper{
        padding: 90px 40px;
    }
    .team_item{
        height: 260px;
    }
    .team_item-info {
        width: 174px;
        height: 78px;
    }
    .about_inner {
        width: 690px;
    }

}
@media(max-width:1200px){
    .reviews .container, .place .container, .header .container, .container{
        max-width: 998px;
    }
    .header_time{
        display: none;
    }
    .header_number{
        width: 45px;
        height: 45px;
        font-size: 0;
        margin-bottom: 0;
        background-color: #F3A908;
        border-radius: 50%;
        background-image: url(../img/phone_mobile.svg);
        background-size: 26px 26px;
        background-position: center;
        background-repeat: no-repeat;
    }
    .main_slide-subtitle {
        font-size: 26px;
        line-height: 34px;
        margin-bottom: 10px;
    }
    .main_slide-title {
        font-size: 46px;
        margin-bottom: 20px;
        line-height: 60px;
    }
    .main_slide-text {
        font-size: 18px;
        line-height: 24px;
        margin-bottom: 95px;
    }
    .main_item{
        margin-right: 20px;
    }
    .main_slide{
        padding: 20px;
    }
    .main{
        margin-top: 150px;
    }
    .place{
        margin: 80px 0;
    }
    .place_map {
        width: 520px;
    }
    .place_info {
        width: 420px;
    }
    .place_title {
        font-size: 32px;
        margin-bottom: 20px;
        line-height: 42px;
    }
    .solution_inner {
        padding: 25px 20px;
        width: 360px;
    }
    .solution_title {
        width: 440px;
    }
    .solution_top .solution_text {
        width: 390px;
    }
    .works_img {
        width: 412px;
        height: 236px;
    }
    .works_info {
        width: 480px;
    }
    .works_item-text {
        width: 300px;
    }
    .form_img {
        width: 446px;
        border-radius: 20px;
    }
    .reviews_info{
        width: 600px;
    }
    .reviews_wrapper{
        justify-content: space-between;
    }
    .reviews_slide-img{
        margin-left: 0;
    }
    .form_inner {
        width: calc(100% - 446px);
        padding: 40px;
    }
    .form_img-item{
        height: 550px;
    }
    .form_wrapper::before {
        width: 240px;
        height: 316px;
    }
    .contacts_item {
        margin: 0 38px;
    }
    .contacts_map{
        height: 360px;
    }
    .footer_text{
        display: none;
    }
    .about_inner{
        width: 640px;
    }
    .about_info {
        width: 330px;
    }
    .about_item {
        width: 49%;
        padding: 26px;
    }
    .team_item-info {
        width: 154px;
        height: 72px;
    }
}
@media(max-width:991.98px){
    .reviews .container, .place .container, .header .container, .container{
        max-width: 720px;
    }
    .header_whats-text,
    .header_whats-title{
        display: none;
    }
    .header{
        position: fixed;
        background-color: #fff;
        z-index: 10;
    }
    .header_whats{
        width: 45px;
        height: 45px;
        padding: 0;
    }
    .header_btn{
        display: none;
    }
    .header{
        padding: 20px 0;
    }
    .main{
        margin-top: 100px;
    }
    .header_text{
        margin-right: 80px;
    }
    .main_slide{
        padding: 200px 30px 30px;
    }
    .main_slide-text{
        margin-bottom: 20px;
    }
    .main_slide-img{
        height: 240px;
    }
    .main_items{
        flex-wrap: wrap;
        justify-content: space-between;
        margin-bottom: 0;
    }
    .main_item{
        margin-right: 0;
        width: 48%;
        margin-bottom: 40px;
    }
    .place_wrapper{
        flex-direction: column;
        position: relative;
    }
    .place_info{
        width: 100%;
    }
    .place_img{
        width: 400px;
    }
    .place_map{
        width: 100%;
        height: 450px;
        position: absolute;
        top: 140px;
    }
    .place_title{
        margin-bottom: 500px;
    }
    .place_map-item:nth-child(12){
        bottom: 100px;
    }
    .solution_top{
        flex-direction: column;
        align-items: flex-start;
    }
    .solution_title{
        margin-bottom: 20px;
    }
    .solution_text{
        width: 100%;
    }
    .solution_inner{
        width: 100%;
    }
    .solution_wrapper{
        background: none;
        background: #F7F7F7;
        z-index: 1;
        position: relative;
        overflow: hidden;
    }
    .solution_wrapper::before{
        position: absolute;
        content: "";
        background-image: url(../img/solution_wrapper-img.png);
        background-size: cover;
        background-position: center;
        width: 90%;
        z-index: -1;
        right: 50%;
        transform: translateX(50%);
        bottom: 308px;
        height: 461px;
    }
    .solution_text{
        margin-bottom:280px;
    }
    .price_items{
        flex-wrap: wrap;
    }
    .price_item{
        width: 48%;
        margin-bottom: 45px;
    }
    .price_inner{
        flex-direction: column;
        align-items: center;
    }
    .price_inner::before{
        display: none;
    }
    .price_links{
        padding-bottom: 25px;
        margin-bottom: 25px;
    }
    .price_info{
        width: 100%;
    }
    .price_inner{
        padding-top: 200px;
    }
    .price_inner::after{
        top: -50px;
        transform: translateX(50%);
        right: 50%;
        left: auto;
    }
    .works_slide-wrapper{
        flex-direction: column;
    }
    .works_img{
        width: 100%;
        height: auto;
        margin-bottom: 80px;
    }
    .works_info{
        width: 100%;
    }
    .works_item-text {
        width: 430px;
    }
    .price{
        margin: 80px 0;
    }
    .works_slider .slick-dots{
        right: 50%;
        transform: translateX(50%);
    
        top: 480px;
    }
    .works_slider .slick-next{
        right: calc(50% - 80px);
        top: 465px;
    }
    .works_slider .slick-prev{
        right: calc(50% + 40px);
        top: 465px;
    }
    .reviews_dots{
        display: none;
    }
    .reviews_slide{
        flex-direction: column-reverse;
    }
    .reviews_slider{
        margin-bottom: 40px;
    }
    .reviews{
        margin-bottom: 80px;
    }
    .reviews_wrapper{
        flex-direction: column;
    }
    .form_wrapper{
        flex-direction: column;
    }
    .form_img{
        width: 100%;
    }
    .form_inner{
        width: 100%;
    }
    .reviews_info{
        width: 100%;
    }
    .contacts_wrapper{
        flex-direction: column;
        align-items: center;
    }
    .contacts_item{
        margin: 0 0 25px;
    }
    .contacts_item:nth-child(2){
        order: -1;
        margin-top: 25px;
    }
    .footer_wrapper{
        flex-direction: column;
        align-items: center;
    }
    .footer_logo{
        margin-bottom: 25px;
    }
    .footer_text{
        display: block;
        text-align: center;
        margin-bottom: 25px;
        width: 300px;
    }
    .footer_btn{
        margin-top: 25px;
        order: 1;
    }
    .footer_whats{
        margin-bottom: 25px;
    }
    .footer_inner{
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
    .footer_item{
        margin-bottom: 13px;
    }
    .price_whats{
        width: 280px;
        max-width: 100%;
        margin: 0 auto 15px;
    }
    .form_wrapper::before {
        width: 371px;
        height: 460px;
    }
    .works_img .slick-arrow{
        width: 28px;
        height: 28px;
        bottom: 30px;
        top: auto;
    }
    .works_img .slick-next{
        right: 20px;
    }
    .works_img .slick-prev{
        right: 60px;
    }
    .about_wrapper{
        flex-direction: column;
    }
    .about_info{
        width: 100%;
    }
    .about_inner{
        width: 100%;
    }
    .team_items{
        display: block;
    }
    .team_item{
        margin: 0 10px;
        margin-bottom: 36px;
    }
    .team_item {
        height: 370px;
    }
    .team_item-info{
        width: 198px;
    }
    .team_wrapper .slick-arrow {
        position: absolute;
        width: 38px;
        background-color: #F9BC39;
        border-radius: 50%;
        height: 38px;
        font-size: 0;
        border: none;
        background-size: cover;
        cursor: pointer;
        z-index: 1;
        top: 50%;
        transform: translateY(-50%);
    }
    .team_wrapper .slick-next {
        right: -35px;
        background-image: url(../img/arrow_right.svg);
    }
    .team_wrapper .slick-prev {
        left: -35px;
        background-image: url(../img/arrow_left.svg);
    }
}

@media (max-width: 767.98px) {
    .reviews .container, .place .container, .header .container, .container{
		max-width: 100%;
    }
    .header_wrapper{
        flex-wrap: wrap;
    }
    .header_text{
        order: 1;
        margin-right: 0;
        font-size: 13px;
        line-height: 18px;
        text-align: center;
        width: 290px;
        margin: 12px auto 0;

    }
    .header.fixed .header_text{
        display: none;
    }
    .header_logo{
        width: 146px;
    }
    .header_whats{
        width: 38px;
        height: 38px;
        margin-left: 25px;
    }
    .header_whats::before{
        width: 38px;
        height: 38px;
    }
    .header_number{
        width: 38px;
        height: 38px;
        background-size: 22px 22px;
        margin-right: 10px;
    }
    .header{
        padding: 15px 0;
    }
    .main{
        margin-top: 145px;
    }
    .main .container{
        padding: 0;
    }
    .main_slide{
        padding: 200px 15px 100px;
    }
    .main_slide-img {
        height: 230px;
    }
    .main_slide-subtitle{
        line-height: 25px;
        margin-bottom: 5px;
        font-size: 18px;
    }
    .main_slide-title{
        font-size: 42px;
        line-height: 52px;
        margin-bottom: 9px;
    }
    .main_slide-text{
        font-size: 14px;
        line-height: 19px;
        margin-bottom: 26px;
    }
    .main_slide{
        display: flex !important;
        flex-direction: column; 
    }
    .main_items{
        order: 1;
    }
    .main_btn{
        margin-bottom: 32px;
    }
    .main_item-title{
        line-height: 22px;
        font-size: 16px;
        margin-bottom: 8px;
    }
    .main_item-text{
        font-size: 14px;
        line-height: 22px;
    }
    .main_item{
        margin-bottom: 20px;
    }
    .main_item br{
        display: none;
    }
    .main_item{
        width: 48%;
    }
    .main_slider .slick-prev{
        right: auto;
        left: 15px;
    }
    .main_slider .slick-next{
        right: auto;
        left: 130px;
    }
    .main_slider .slick-dots{
        right: auto;
        left: 60px;
    }
    .place{
        margin: 60px 0;
    }
    .main{
        margin-bottom: 60px;
    }
    .place_title{
        line-height: 38px;
        width: 315px;
        margin-bottom: 345px;
        font-size: 25px;
    }
    .place_map{
        height: 300px;
        width: 330px;
        right: 50%;
        transform: translateX(50%);
    }
    .place_map-item:nth-child(2) {
        top: 40px;
        right: 246px;
    }
    .place_map-item:nth-child(1) {
        right: 184px;
    }
    .place_map-item:nth-child(6) {
        top: 230px;
        left: 71px;
    }
    .place_map-item:nth-child(13) {
        bottom: 20px;
        right: 90px;
    }
    .place_map-item:nth-child(12) {
        bottom: 165px;
    }
    .place_map-item:nth-child(10) {
        left: 138px;
        bottom: 99px;
    }
    .place_map-item:nth-child(7) {
        right: 174px;
    }
    .place_map-item:nth-child(8) {
        right: 79px;
        bottom: 214px;
    }
    .place_map-item:nth-child(11) {
        left: 256px;
    }
    .place_text{
        margin-bottom: 20px;
    }
    .solution .container{
        padding: 0; 
    }
    .solution_wrapper{
        padding: 55px 0 0;
    }
    .solution_title{
        width: 100%;
        font-size: 25px;
        line-height: 38px;
        margin-bottom: 26px;
        padding: 0 15px;
    }
    .solution_top .solution_text{
        width: 100%;
    }
    .solution_top{
        margin-bottom: 12px;
    }
    .solution_wrapper::before{
        width: 375px;
        height: 330px;
        bottom: 353px;
        background-position: center;
    }
    .solution_text{
        margin-bottom: 250px;
        padding: 0 15px;
    }
    .solution_inner{
        width: 100%;
    }
    .solution_inner-text{
        width: 276px;
        margin: 0 auto 30px;
    }
    .solution{
        margin-bottom: 70px;
    }
    .price_title {
        font-size: 24px;
        line-height: 37px;
        margin-bottom: 28px;
    }
    .price_title br{
        display: none;
    }
    .price_text{
        margin-bottom: 30px;
    }
    .price_subtitle{
        font-size: 20px;
        line-height: 28px;
        margin-bottom: 26px;
    }
    .price_item{
        width: 330px;
        margin: 0 auto 35px;
        min-height: 375px;
        line-height: 20px;
        font-size: 14px;
    }
    .price_item span{
        display: inline-block;
    }
    .price_number {
        font-size: 20px;
    }
    .price_inner::after {
        width: 284px;
        height: 175px;
        top: 0;
    }
    .price_inner{
        padding: 170px 30px 45px;
    }
    .price_links{
        width: 100%;
    }
    .works .container{
        padding: 0;
    }
    .works_wrapper{
        padding: 60px 15px;
    }
    .works_title{
        font-size: 25px;
        line-height: 38px;
        margin-bottom: 30px;
    }
    .works_subtitle{
        font-size: 16px;
        line-height: 26px;
        margin-bottom: 26px;
        width: 100%;
    }
    .works_slider{
        max-width: 330px;
        margin: 0 auto;
    }
    .works_img{
        margin-bottom: 84px;
    }
    .works_slider .slick-prev,
    .works_slider .slick-next{
        top: 260px;
    }
    .works_slider .slick-dots{
        top: 275px;
    }
    .works_img .slick-arrow{
        top: auto;
        bottom: 10px;
    }
    .works_item{
        flex-direction: column;
        padding: 8px 0;
    }
    .works_item-title{
        width: 100%;
        margin-bottom: 10px;
    }
    .works_item-title br{
        display: none;
    }
    .works{
        margin-bottom: 50px;
    }
    .reviews_title{
        font-size: 25px;
        line-height: 38px;
        margin-bottom: 26px;
        width: 240px;
    }
  
    .place_img{
        width: 100%;
    }
    .form_img-item{
        height: auto;
        padding-bottom: 80vw;
    }
    .form_img-item img{
        position: absolute;
        top: 0;
        right: 0;
    }
    .form .container{
        padding: 0;
    }
    .form_inner{
        padding: 30px 15px;
        
    }
    .form_wrapper {
        z-index: 1;
    }
    .form_title{
        line-height: 60px;
        margin-bottom: 20px;
        font-size: 38px;
    }
    .form_text{
        font-size: 17px;
        line-height: 26px;
        margin-bottom: 30px;
    }
    .form_inp{
        width: 252px;
    }
    .form_wrapper::before{
        z-index: -1;
    }
    .form_btn{
        width: 252px;
    }
    .form_ok{
        position: relative;
        width: 210px;
    }
    .form_wrapper::before {
        width: 190px;
        height: 280px;
    }
    .form{
        margin-bottom: 55px;
    }
    .contacts_title{
        font-size: 25px;
        margin-bottom: 20px;
    }
    .contacts_item-text{
        width: 230px;
    }
    .contacts_wrapper{
        margin-bottom: 0;
    }
    .contacts .container{
        padding: 0;
    }
    .contacts_map{
        height: 290px;
    }
    .contacts{
        margin-bottom: 0;
    }
    .footer_item{
        width: 275px;
        margin: 0 auto 13px;
    }
    .popup_order{
        padding: 45px 20px;
    }
    .popup_title{
        font-size: 25px;
        line-height: 1.2;
        margin-bottom: 10px;
    }
    .popup_text{
        font-size: 16px;
        line-height: 24px;
        margin-bottom: 35px;
    }
    .popup_text br{
        display: none;
    }
    .popup_order-img{
        width: 130px;
        height: 203px;
        right: 0px;
    }
    .jbForm label,
    .popup_ok{
        width: 220px;
    }
    .popup_master{
        padding: 45px 20px 210px;
        text-align: center; 
    }
    .popup_inps{
        width: 100%;
        flex-direction: column;
        align-items: center;
    }
    .popup_master .popup_order-img{
        right: 50%;
        transform: translateX(50%);
        width: 180px;
    }
    .price_links{
        align-items: center;
    }
    .popup_master     .jbForm label,
    .popup_master .popup_ok{
        width: 280px;
        margin: 0 auto;
    }
    .popup_master    .jb_input input[type='submit'],
    .popup_master    .btn_popup{
        margin: 0 auto 10px;
    }
    .popup_master   .jb_input input[type='text'],
    .popup_master   .popup_inp{
        margin: 0 auto 10px;
    }
    .main_slider  .slick-track{
        display: flex;
    }
    .main_slide{
        height: initial;
    }
    .jbForm.jbInbuilt{
        overflow:visible ;
    }
    .works_item-text{
        width: 100%;
    }
    .reviews_slider{
        padding-bottom: 0;
    }
    .footer_whats{
        padding-left: 0;
        padding-top: 60px;
        text-align: center;
        margin-bottom: 20px;
    }
    .footer_whats::before{
        top: 0;
        right: 50%;
        transform: translateX(50%);
        left: auto;
    }
    .footer_time{
        padding-left: 0;
        text-align: center;
    }
    .footer_time::after{
        left: -5px;
    }
    .price_btn,
    .solution_btn,
    .main_btn{
        display: none;
    }
    .price_btn.mobile,
    .solution_btn.mobile,
    .main_btn.mobile{
        display: flex;
    }
    .about{
        margin: 60px 0;
    }
    .about_title{
        font-size: 25px;
        line-height: 38px;
        margin-bottom: 26px;
    }
    .about_text p{
        line-height: 26px;
        font-size: 15px;
        margin-bottom: 15px;
    }
    .about_subtitle{
        font-size: 18px;
        line-height: 28px;
        margin-bottom: 25px;
    }
    .about_inner{
        margin-top: 40px;
    }
    .about_item{
        width: 100%;
        margin-bottom: 15px;
        padding: 30px 20px;
    }
    .about_item-text{
        line-height: 22px;  
        font-size: 14px;
    }
    .about_item-img{
        display: flex;
        justify-content: end;
    }
    .about_item-img img{
        width: 75%;
    }
    .team{
        margin: 60px 0;
    }
    .team .container{
        padding: 0;
    }
    .team_wrapper {
        padding: 40px 20px 70px;
    }
    .team_title{
        font-size: 25px;
        line-height: 50px;
        margin-bottom: 35px;
        text-align: center;
    }
    .team_items{
        width: 252px;
        margin: 0 auto;
    }
    .team_item{
        height: 334px;
        margin: 0 0 36px;
    }
    .team_wrapper .slick-next{
        right: -38px;
    }
    .team_wrapper .slick-prev{
        left: -38px;
    }
    .popup_consult{
        width: 330px;
        padding: 34px 20px 20px 20px;
    }
    .popup_consult-title{
        line-height: 21.6px;
        width: 177px;
        margin-bottom: 40px;
        font-size: 18px;
    }
    .popup_consult-btn{
        font-size: 16px;
        width: 100%;
        padding: 16px 20px 16px 61px;
        line-height: 22.08px;      
    }
    .popup_consult-btn::before{
        width: 39px;
        height: 39px;
    }
    .popup_consult::before{
        height: 224px;
        width: 166px;
        right: 0;
    }
}