/* global */
header{
    position: relative;
}
.button-prev, .button-next {
    width: 69px;
    height: 69px;
    border: 2px solid #212121;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all .3s;
    cursor: pointer;
}
.swiper-navigation {
    display: flex;
    gap: 33px;
    align-items: center;
}

/* hero */

.hero{
    background: #ECEFF1;
    display: flex;
    margin-top: 27px;
}
.hero .text{
    width: 55%;
    padding: 60px 60px 60px 60px;
}
.hero .text h1{
    font-size: 60px;
    color: #212121;
    padding: 0;
    margin: 0;
    font-family: 'Montserrat';
    text-transform: uppercase;
    margin-bottom: 30px;
}
.hero .text p{
    font-size: 16px;
    line-height: 28px;
}
.hero .text .link-remont-pro{
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 16px;
    color: #212121;
    margin-top: 24px;
}
.hero .text .bottom-text{
    margin-top: 50px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 30px;
}
.hero .text .bottom-text .founder{
    text-align: center;
    max-width: 225px;
}
.hero .text .bottom-text .founder img{
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 50%;
}
.hero .text .bottom-text .founder .name{
    font-size: 20px;
    line-height: 1.4;
    color: #212121;
}
.hero .text .bottom-text .founder .position{
    color: #212121;
    text-transform: uppercase;
    font-size: 11px;
}
.nav-hero-slider{
    display: flex;
    gap: 33px;
    width: 150px;
    margin-bottom: 60px;
}
.nav-hero-slider > div{
    cursor: pointer;
    width: 57px;
    height: 57px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid #212121;
    transition: all .3s;
}
.nav-hero-slider > div svg path{
    stroke: #212121;
    transition: all .3s;
}
.nav-hero-slider > div:hover{
    background: #212121;
    border: 1px solid #CFD8DC;
}
.nav-hero-slider > div:hover svg path{
    stroke: #CFD8DC;
}
.hero .slider{
    width: 45%;
    background-position: center;
    background-size: cover;
}
.hero-slider-remont-pro{
    height: 100%;
}
.hero .slider .swiper-slide{
    height: 100%;
    background-size: cover;
    background-position: center;
}
.hero .title-mobile{
    display: none;
}
@media screen and (max-width: 1440px){
    .hero .text h1{
        font-size: 40px;
        margin-bottom: 30px;
    }
    .hero .text{
        padding: 60px 30px 60px 80px;
    }
}
@media screen and (max-width: 1280px){
    .hero{
        flex-wrap: wrap;
    }
    .hero .text{
        order: 2;
        display: flex;
        gap: 30px;
        justify-content: space-between;
    }
    .hero .text .top-text{
        width: calc(100% - 230px);
    }
    .hero .text .bottom-text{
        flex-direction: column-reverse;
        width: 200px;
        margin-top: 0;
        gap: 60px;
        justify-content: space-between;
        align-items: center;
    }
    .nav-hero-slider{
        margin-bottom: 0;
    }
    .hero .slider{
        order: 2;
        min-height: calc(50vw);
    }
    .hero .text,
    .hero .slider{
        width: 100%;
    }
    .hero .slider .swiper-slide{
        height: 50vw;
    }
}
@media screen and (max-width: 1199px){

}
@media screen and (max-width: 1024px){
    .hero .text {
        padding: 60px 30px 60px 30px;
    }
}
@media screen and (max-width: 992px){
    .hero .slider{
        padding: 30px 30px 0;
    }
}
@media screen and (max-width: 767px){
    .hero .text .bottom-text{
        width: 100%;
    }
    .hero .text .bottom-text .founder{
        margin: auto;
    }
}
@media screen and (max-width: 599px){
    .hero .text{
        flex-wrap: wrap;
    }
    .hero .text .top-text{
        width: 100%;
    }
    .nav-hero-slider{
        display: none;
    }
}
@media screen and (max-width: 479px){
    .hero .slider {
        padding: 30px 0 0 20px;
    }
    .hero .text{
        padding: 20px;
    }
}
@media screen and (max-width: 430px){

}
/* -- hero */

/* timeline */
.timeline-section{
    padding: 80px 100px;
}
.timeline{
    display: flex;
    position: relative;
}
.timeline .item{
    width: 20%;
    text-align: center;
    position: relative;
    padding: 40px 40px 0;
}
.timeline .item p{
    font-size: calc(100vw / 60);
    line-height: 1.2;
    color: #212121;
    font-weight: 200;
    margin-top: 10px;
}
.timeline .item:before{
    content: '';
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #212121;
    position: absolute;
    top: -5px;
    left: calc((100% - 10px) / 2);
    z-index: 3;
}
.timeline .item:after{
    content: '';
    width: 26px;
    height: 26px;
    border-radius: 50%;
    position: absolute;
    top: -15px;
    left: calc((100% - 30px) / 2);
    background: #fff;
    border: 2px solid #ECEFF1;
    z-index: 2;
}
.timeline .timeline-line{
    position: absolute;
    left: 10%;
    right: 10%;
    width: auto;
    background-image: url(../img/timeline-line.svg);
    background-position: center;
    height: 4px;
}
@media screen and (max-width: 1440px){
    .timeline-section {
        padding: 80px 30px;
    }
}
@media screen and (max-width: 1199px){
  .timeline .item p{
    font-size: calc(100vw / 80);
  }
}
@media screen and (max-width: 991px){
  .type-repair{
    padding-top: 70px;
  }
  .type-repair.type-repair2{
    padding-top: 0;
  }
  .timeline .item img{
    max-width: 50px;
  }
  .timeline .item{
    padding: 30px 10px;
  }
  .timeline .item p{
    font-size: 14px;
  }
}
@media screen and (max-width: 767px){
    .timeline-section {
        padding: 30px 30px;
    }
  .type-repair{
    background-size: cover;
  }
  .timeline .timeline-line{
    display: none;
  }
  .timeline{
    flex-wrap: wrap;
    justify-content: center;
  }
  .timeline .item{
    width: 60%;
    display: -webkit-flex;
    display: -ms-flex;
    display: flex;
    align-items: center;
    gap: 10px;
    padding-left: 30px;
  }
  .timeline .item:before {
    content: '';
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #212121;
    position: absolute;
    left: -5px;
    top: calc((100% - 10px) / 2);
    z-index: 3;
  }
  .timeline .item:after {
    content: '';
    width: 26px;
    height: 26px;
    border-radius: 50%;
    position: absolute;
    left: -15px;
    top: calc((100% - 30px) / 2);
    background: #fff;
    border: 2px solid #ECEFF1;
    z-index: 2;
  }
}

/* -- timeline */

/* type */
.type{
    background: #ECEFF1;
    padding: 80px 100px;
}
.type .title-section{
    text-align: center;
    max-width: 980px;
    margin: auto;
    margin-bottom: 60px;
}
.type .title-section h2{
    font-size: 60px;
    color: #212121;
    font-family: 'Montserrat';
    line-height: 1.1;
    margin: 0 0 30px;
}
.type .title-section p{
    font-size: 22px;
    line-height: 36px;
}
.type .swiper-slide{
    width: calc(((100% - 28px) / 2 - 28px) / 2);
    height: calc(100vw / 3.14);
    background-size: cover;
    background-position: center;
}
.type .swiper-slide:first-child,
.type .swiper-slide:nth-child(3n+1){
    width: calc((100% - 28px) / 2);
}
.nav-slider-repair-gallery{
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-top: 40px;
    gap: 40px;
}
.description-slider{
  display: flex;
  gap: 20px;
}
.description-slider p{
  width: calc(100% - 290px);
  font-size: 22px;
  line-height: 1.4;
  color: #212121;

}
.description-slider .title{
  width: 270px;
  font-size: calc(100vw / 48);
  color: #212121;
  font-weight: 500;
  line-height: calc(100vw / 27.82608696);
  font-family: 'Montserrat';
}
.nav-slider-repair-gallery .swiper-pagination{
  height: calc(100vw / 27.82608696);
}
.swiper.slider-repair-gallery{
  margin-bottom: 50px;
}
.swiper-pagination-bullet {
    width: 5px;
    height: 5px;
    background: #221D2F;
    opacity: .3;
    transition: all .2s;
}
.swiper-pagination-bullet-active {
    width: 7px;
    height: 7px;
    opacity: 1;
}
.swiper-pagination, .swiper-pagination-bullets.swiper-pagination-horizontal {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    width: auto;
    bottom: 0;
}
.nav-slider-repair-gallery .swiper-pagination {
    height: calc(100vw / 27.82608696);
}
@media screen and (max-width: 1440px){
    .type{
        padding: 60px 30px;
    }
    .type .title-section p {
        font-size: 18px;
        line-height: 1.6;
    }
    .description-slider p{
        font-size: 18px;
        line-height: 1.6;
    }
    .type .title-section h2{
        font-size: 60px;
    }
}
@media screen and (max-width: 1199px){
  .description-slider p {
    font-size: 14px;
    width: calc(100% - 190px);
  }
  .description-slider .title{
    width: 170px;
  }
}
@media screen and (max-width: 991px){
    .nav-slider-repair-gallery{
        flex-wrap: wrap;
    }
    .description-slider{
        order: 3;
    }
    .description-slider .title{
        font-size: 22px;
    }
    .type .title-section h2 {
        font-size: 40px;
    }
}
@media screen and (max-width: 900px){
    .type .swiper-slide,
    .type .swiper-slide:first-child,
    .type .swiper-slide:nth-child(3n+1){
        width: 100%;
        height: calc(100vw / 1.7);
    }
}
@media screen and (max-width: 767px){
    .description-slider{
        flex-wrap: wrap;
    }
    .description-slider .title{
        width: 100%;
    }
    .description-slider p{
        width: 100%;
    }
    .type .title-section p{
        font-size: 16px;
    }
    .type {
        padding: 40px 20px;
    }
    .nav-slider-repair-gallery .swiper-pagination{
        display: none;
    }
    .type .swiper-navigation{
        margin: auto;
    }
}
@media screen and (max-width: 599px){

}
/* -- type */

/* form */
.remont-pro-form{
    max-width: 855px;
    margin: 60px auto 0;
    background: #fff;
    padding: 55px 20px;
}
.remont-pro-form .manager{
    display: flex;
    align-items: center;
    gap: 25px;
    max-width: 530px;
    margin: 0 auto 35px;
}
.remont-pro-form .manager .image{
    width: 180px;
    text-align: right;
    position: relative;
}
.remont-pro-form .manager .image:before{
    content: '';
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: #ECEFF1;
    position: absolute;
    z-index: 1;
    left: 0;
    top: 0;
}
.remont-pro-form .manager .image img{
    border-radius: 50%;
    width: 140px;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    position: relative;
    z-index: 9;
}
.remont-pro-form .manager .meta{
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: calc(100% - 220px);
}
.remont-pro-form .manager .meta .title{
    font-size: 16px;
    line-height: 22px;
    color: #555;
}
.remont-pro-form .manager .meta .name{
    font-size: 25px;
    color: #212121;
}
.remont-pro-form form{
    max-width: 530px;
    margin: auto;
    text-align: center;
}
.remont-pro-form form input{
    line-height: 70px;
    border: 1px solid #D9D9D9;
    margin-bottom: 42px;
    width: 100%;
    padding: 0 35px;
    text-transform: uppercase;
    font-family: "Montserrat";
    font-size: 12px;
}
.remont-pro-form form input.error{
    border-color: red;
}
.remont-pro-form form input::-webkit-input-placeholder {color:#C2C2C2;}
.remont-pro-form form input::-moz-placeholder          {color:#C2C2C2;}/* Firefox 19+ */
.remont-pro-form form input:-moz-placeholder           {color:#C2C2C2;}/* Firefox 18- */
.remont-pro-form form input:-ms-input-placeholder      {color:#C2C2C2;}

.remont-pro-form form button{
    border: 0;
    cursor: pointer;
    font-size: 16px;
    letter-spacing: 0;
}
.remont-pro-form form input.isValid {
    border-color: red;
}
.remont-pro-form form .success{
    display: none;
    color: green;
    font-weight: 600;
    margin-top: 20px;
}
@media screen and (max-width: 1440px){

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

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

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

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

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

}
@media screen and (max-width: 599px){
    .remont-pro-form .manager .image{
        width: 100px;
    }
    .remont-pro-form .manager .image img,
    .remont-pro-form .manager .image:before{
        width: 83px;
        height: 83px;
    }
    .remont-pro-form form input{
        line-height: 55px;
        margin-bottom: 20px;
    }
    .remont-pro-form form button{
        font-size: 14px;
    }
    .remont-pro-form .manager .meta{
        width: calc(100% - 93px);
    }
    .remont-pro-form .manager .meta .title{
        font-size: 13px;
    }
    .remont-pro-form .manager .meta .name{
        font-size: 18px;
    }
    .remont-pro-form form button{
        font-size: 12px;
        padding: 0 15px;
    }
}
@media screen and (max-width: 479px){

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

}

/* -- form */

/* specification-table */

.section-specification-table{
    padding: 80px 100px;
    background: #202020;
}
.specification-table{
  position: relative;
  z-index: 9;
  overflow: hidden;
  max-width: 1000px;
  margin: 0px auto 10px;
}
.specification-table p{
  font-size: calc(100vw / 96);
  color: #fff;
  font-size: 16px;
  line-height: 25px;
}
.specification-table .row{
  display: flex;
  padding: 12px 0;
}
.specification-table .row:nth-child(even){
    background: rgba(94,94,94,.5);
}
.specification-table .row.title{
  padding: 15px 0;
  margin-bottom: 15px;
}
.specification-table .row.title p{
  text-align: center;
  color: #fff;
}
.specification-table .row.title p.title-col{
  font-size: calc(100vw / 64);
  font-weight: 600;
}
.specification-table .row .item:first-child{
  width: calc(100vw / 6.857142857);
  padding: 0 0 0 25px;
}
.specification-table .row .item{
  width: calc(100% - 100vw/5.647058824);
  padding: 0 10px;
}
.section-specification-table > p{
    color: #fff;
    text-align: center;
}

@media screen and (max-width: 1599px){
  .specification-table .row .item{
    padding: 0 0 0 20px!important;
  }
}
@media screen and (max-width: 1440px){
    .section-specification-table{
        padding: 60px 30px;
    }
    .specification-table p{
        font-size: 16px;
    }
}
@media screen and (max-width: 1199px){
  .specification-table p{
    font-size: 14px;
  }
}
@media screen and (max-width: 991px){
  .specification-table .row.title p.title-col{
    font-size: 20px;
  }
  .wrapper-specification-table{
    overflow: auto;
  }
  .specification-table .row .item:first-child{
    width: 220px;
  }
  .specification-table .row .item {
    width: calc(100% - 240px);
  }
}
@media screen and (max-width: 767px){
  .section-specification-table{
    padding: 40px 20px;
  }
  .specification-table .row{
    flex-wrap: wrap;
    gap: 12px;
    background: none!important;
  }
  .specification-table .row .item{
    width: 100%;
    padding: 10px !important;
    background: rgba(121, 150, 165, .2);
  }
  .specification-table .row .item:first-child{
    width: 100%;
    text-align: center;
    background: none!important;
    padding: 0!important;
  }
  .specification-table .row.title .item{
    background: none!important;
  }
  .specification-table .row.title{
    margin-bottom: 0;
  }
  .specification-table .row .item p{
    color: #fff;
  }
  .specification-table .row .item:first-child p{
    color: #fff;
  }
}
@media screen and (max-width: 479px){
    .specification-table p {
        font-size: 13px;
        line-height: 1.4;
    }
}

/* --specification-table */

/* development-projects */
.development-projects{
    text-align: center;
    padding-top: 50px;
    padding-bottom: 50px;
    padding-left: calc(100vw / 21.33333333);
    padding-right: calc(100vw / 21.33333333);
}
.development-projects p{
    font-size: calc(100vw / 96);
    position: relative;
    z-index: 9;
    color: #212121;
    font-size: 18px;
    line-height: 2;
}
.development-projects a{
    margin-top: 10px;
}
.content-development-projects{
    max-width: 950px;
    margin: auto;
}
.development-projects h2{
    font-family: 'Montserrat';
    font-size: 60px;
    line-height: 1.05;
    margin-bottom: 30px;
    color: #212121;
}
.content-development-projects .title-section{
    margin-bottom: 50px;
}
.content-development-projects .title-section p{
    color: #212121;
    font-size: 18px;
    line-height: 2;
}
.table-price{
    max-width: 700px;
    margin: 0 auto 0px;
    background: #ECEFF1;
    overflow: hidden;
}
.table-price .row{
    display: flex;
}
.table-price .row:last-of-type{
    border-top: 1px solid #fff;
}
.table-price .item{
    width: 50%;
    padding: 25px 0;
}
.table-price .row.title{
    background: #253035;
    padding: 10px 0;
}
.table-price .row.title p{
    color: #fff;
    font-weight: 600;
}
.btn-theme-icon{
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
@media screen and (max-width: 1440px){
  .content-development-projects{
    max-width: 750px;
  }
  .development-projects p{
    font-size: 16px;
  }
  .content-development-projects .title-section p{
    line-height: 1.6;
  }
}
@media screen and (max-width: 1199px){
    .development-projects h2{
        font-size: 40px;
    }
    .content-development-projects{
        max-width: 590px;
    }
    .table-price{
        max-width: 540px;
    }
    .development-projects p{
        font-size: 14px;
    }
}
@media screen and (max-width: 767px){
    .development-projects{
        padding: 40px 20px 60px;
    }
    .development-projects h2{
        font-size: 28px;
        line-height: 1.4;
    }
    .content-development-projects .title-section p{
        font-size: 16px;
        line-height: 1.6;
    }
    .btn-theme-icon{
        font-size: 14px;
    }
}

/* -- development-projects */
