/* section-hero-service */
.section-hero-service{
  text-align: center;
  padding: 140px 0 40px;
}
.section-hero-service .container{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}
.section-hero-service h1{
  font-size: 50px;
  font-weight: 500;
  line-height: 1.17;
  color: #fff;
  max-width: 720px;
  margin: auto;
}
.section-hero-service p.subtitle{
  color: #8B8F97;
  max-width: 600px;
  font-size: 18px;
  line-height: 1.44;
  margin-bottom: 10px;
}
@media screen and (max-width: 1199px){
  .section-hero-service h1{
    font-size: 42px;
  }
}
@media screen and (max-width: 991px){
  .section-hero-service {
    text-align: center;
    padding: 110px 0 40px;
  }
  .section-hero-service p.subtitle{
    font-size: 16px;
  }
}
@media screen and (max-width: 767px){
  .section-hero-service h1 {
    font-size: 36px;
  }
  .section-hero-service .container{
    gap: 30px;
  }
}
@media screen and (max-width: 479px){
  .section-hero-service p.subtitle{
    font-size: 14px;
  }
}
/* -- section-hero-service */

/* why-switch */
.why-switch h2.title-section{
  font-size: 50px;
  color: #F4F5F7;
  text-align: center;
  font-weight: 500;
  max-width: 760px;
  margin: 0 auto 30px;
}
.why-switch p.subtitle{
  max-width: 650px;
  font-size: 18px;
  color: #8B8F97;
  line-height: 1.44;
  text-align: center;
  margin: auto;
}
.why-switch .items-why-switch{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 60px;
  gap: 20px;
}
.why-switch .items-why-switch .item{
  width: 230px;
}
.why-switch .items-why-switch .item .icon{
  width: 48px;
  height: 48px;
  background: #232325;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.why-switch .items-why-switch .item p{
  color: #8B8F97;
  font-size: 16px;
  line-height: 1.5;
}
.why-switch .items-why-switch .item p.title{
  font-size: 18px;
  line-height: 1.44;
  color: #fff;
  font-weight: 700;
  margin: 10px 0;
}
@media screen and (max-width: 1199px){
  .why-switch .items-why-switch .item{
    width: 220px;
  }
}
@media screen and (max-width: 991px){
  .why-switch h2.title-section{
    font-size: 40px;
  }
  .why-switch .items-why-switch{
    max-width: 600px;
    margin: 40px auto 0;
  }
  .why-switch .items-why-switch .item{
    width: calc((100% - 20px) / 2);
  }
}
@media screen and (max-width: 767px){
  .why-switch h2.title-section{
    font-size: 30px;
  }
}
@media screen and (max-width: 550px){
  .why-switch .items-why-switch .item{
    width: 100%;
    padding: 20px;
  }
}
/* -- why-switch */

/* section-cta */
.section-cta{
  padding-bottom: 60px;
}
.section-cta .container{
    max-width: 996px;
}
.section-cta .item-cta{
    position: relative;
    border-radius: 8px;
    overflow: hidden;
}
.section-cta .item-cta:after{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: calc(100% - 2px);
    height: calc(100% - 2px);
    z-index: 2;
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 8px;
}
.section-cta .item-cta:before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-image: url(../images/line-cta.svg);
    background-position: 100% 0;
    background-repeat: no-repeat;
    background-size: auto 1px;
    z-index: 3;
}
.section-cta .content{
    padding: 60px 70px;
    max-width: 740px;
    position: relative;
    z-index: 9;
}
.section-cta .image{
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    z-index: 1;
}
.section-cta .image:after {
    content: '';
    position: absolute;
    z-index: 2;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 100%;
    background: linear-gradient(-90deg, rgba(17, 17, 17, 0) 40%, #070707 80%);
}
.section-cta .image img{
    display: block;
    height: 100%;
}
.section-cta .content p{
    margin-bottom: 30px;
    font-size: 18px;
    color: #F4F5F7;
    max-width: 400px;
}
.section-cta .content p.title{
    text-transform: uppercase;
    font-weight: 600;
    font-size: 36px;
    line-height: 1;
    background-color: #fff;
    background-image: linear-gradient(180deg, #3197C8, #0FEBFF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
    max-width: 100%;
}
.section-cta .content .buttons{
    display: flex;
    align-items: center;
    gap: 22px;
}
.section-cta .content .buttons a{
    min-width: 180px;
}
.section-cta.section-transitioning .content{
  max-width: 680px;
}
.section-cta.section-transitioning .content p{
  font-size: 16px;
  color: #B7B7B7;
}
.section-cta.section-transitioning .content p{
  max-width: 470px;
}
.section-cta.section-transitioning .content p.title{
  font-size: 30px;
  line-height: 1.2;
  max-width: 100%;
}

.section-cta.section-cta-full .container {
    max-width: 1200px;
}
.section-cta.section-cta-full .content p{
  max-width: 510px;
}
.section-cta.section-cta-full .content p strong{
  font-weight: 600;
  text-transform: uppercase;
}
.section-cta.section-cta-full .content p.title{
  font-size: 30px;
  line-height: 1.2;
  max-width: 430px;
}
.section-cta.section-cta-full .content{
  max-width: 650px;
}
.section-cta.section-cta-full .content ul{
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.section-cta.section-cta-full .content ul li {
  width: 100%;
  padding-left: 35px;
  position: relative;
  line-height: 22px;
  font-size: 14px;
  color: #B7B7B7;
}
.section-cta.section-cta-full .content li:after {
  content: '';
  position: absolute;
  left: 0;
  top: 2px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #232325 url(../images/icon-check.svg);
  background-position: center;
  background-size: 9px auto;
  background-repeat: no-repeat;
}

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

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

}
@media screen and (max-width: 767px){
    .section-cta .content p.title{
        font-size: 28px;
    }
    .section-cta .image:after {
        background: linear-gradient(-90deg, rgba(17, 17, 17, 0.6) 0%, #070707 100%);
        width: 100%;
    }
    .section-cta .content{
        padding: 40px 50px;
    }
    .section-cta .content p{
        font-size: 16px;
    }
    .section-cta.section-cta-full .image{
      position: relative;
    }
    .section-cta.section-cta-full .image img{
      max-width: 100%;
      width: 100%;
      height: auto;
    }
    .section-cta.section-cta-full .image:after{
      display: none;
    }
}
@media screen and (max-width: 599px){
  .section-cta .content .buttons{
    flex-wrap: wrap;
  }
  .section-cta .content .buttons a{
    width: 100%;
  }
}
@media screen and (max-width: 479px){
    .section-cta .content p.title{
        font-size: 24px;
    }
    .section-cta .content p{
        font-size: 14px;
    }
    .section-cta .content{
        padding: 20px;
    }
}
/* --section-cta */

/* section-contact-us */
.section-contact-us{
  position: relative;
}
.section-contact-us:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-image: url(../images/section-line.svg);
    background-position: 50% 0;
    background-repeat: no-repeat;
    background-size: auto 1px;
}
.section-contact-us .container{
    max-width: 996px;
}
.section-contact-us h2{
  background-color: #fff;
  background-image: linear-gradient(180deg, #3197C8, #0FEBFF);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 36px;
  line-height: 1;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.section-contact-us .subtitle{
  font-size: 18px;
  color: #8B8F97;
  line-height: 1.44;
}
.section-contact-us form{
    margin-top: 50px;
}
.section-contact-us .form-group-buttons{
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
}
.section-contact-us .form-group-buttons button{
  min-width: 180px;
}
@media screen and (max-width: 991px){
  .section-contact-us .subtitle{
    font-size: 16px;
  }
}
@media screen and (max-width: 767px){
    .section-contact-us form{
        margin-top: 40px;
    }
    .section-contact-us h2{
      font-size: 28px;
    }
}
@media screen and (max-width: 599px){
  .section-contact-us .form-group-buttons{
    flex-wrap: wrap;
  }
  .section-contact-us .form-group-buttons button{
    width: 100%;
  }
}
@media screen and (max-width: 479px){
  .section-contact-us .subtitle{
    font-size: 14px;
  }
}
/* -- section-contact-us */
