/* hero-sonic-lite */
.hero-sonic-lite{
  padding: 140px 0;
}
.hero-sonic-lite .container{
  display: flex;
  align-items: center;
}
.hero-sonic-lite .container .text{
  width: 55%;
}
.hero-sonic-lite .container .text h1{
  font-size: 50px;
  font-weight: 500;
  line-height: 1.16;
  margin-bottom: 50px;
}
.hero-sonic-lite .container .text h1 span{
  color: #33D0E6;
}
.changeword{
  display: inline-block;
  white-space: nowrap;
  transition: all 0.5s ease, transform 0.5s ease;
  clip-path: inset(0 0 0 0);
  transform: translateX(0);
  width: auto;
  opacity: 1;
}
.changeword.is-hidden{
  clip-path: inset(0 100% 0 0);
  transform: translateX(50px);
  opacity: 0;
}
.hero-sonic-lite .container .text h1 + p{
  margin-bottom: 60px;
  color: #8B8F97;
  font-size: 18px;
  line-height: 1.44;
}
.hero-sonic-lite .container .image{
  width: 45%;
}
.hero-sonic-lite .container .image img{
  max-width: 100%;
}
.hero-sonic-lite .counter{
  display: flex;
  gap: 50px;
  margin-bottom: 60px;
}
.hero-sonic-lite .counter .item p{
  line-height: 1.44;
  font-size: 12px;
  color: #8B8F97;
  margin-top: 5px;
}
.hero-sonic-lite .counter .item p.title{
  font-size: 30px;
  color: #fff;
  line-height: 1;
  white-space: nowrap
}
.hero-sonic-lite .wrapper-buttons{
  display: flex;
  align-items: center;
  gap: 20px;
}
.hero-sonic-lite .wrapper-buttons a{
  width: 180px;
}
@media screen and (max-width: 1199px){

}
@media screen and (max-width: 991px){
  .hero-sonic-lite{
    padding: 100px 0 60px;
  }
  .hero-sonic-lite .container .text{
    width: 60%;
  }
  .hero-sonic-lite .container .image {
    width: 40%;
  }
  .hero-sonic-lite .container .text h1{
    font-size: 36px;
    margin-bottom: 40px;
  }
  .hero-sonic-lite .container .text h1 + p{
    margin-bottom: 40px;
    font-size: 16px;
  }
  .hero-sonic-lite .counter{
    gap: 30px;
    justify-content: space-between;
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 767px){
  .hero-sonic-lite{
    padding: 100px 0 0px;
  }
  .hero-sonic-lite .container{
    flex-wrap: wrap;
  }
  .hero-sonic-lite .container .text,
  .hero-sonic-lite .container .image{
    width: 100%;
  }
  .hero-sonic-lite .wrapper-buttons a{
    width: calc((100% - 20px) / 2);
  }
}
@media screen and (max-width: 479px){
  .hero-sonic-lite .container .text h1 + p{
    font-size: 14px;
  }
}
/* -- hero-sonic-lite */

/* type-product */
.items-type-product{
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.items-type-product .item{
  width: calc((100% - 20px) / 2);
  border: 1px solid #232325;
  border-radius: 8px;
  background: #08090A;
  overflow: hidden;
  position: relative;
}
.items-type-product .item:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-image: url(../images/line-what-we-offer-item.svg);
  background-position: 50% 0;
  background-repeat: no-repeat;
  background-size: auto 1px;
}
.items-type-product .item .content {
  padding: 40px 50px;
}
.items-type-product .item p {
  font-size: 16px;
  color: #8B8F97;
}
.items-type-product .item p.title {
  font-size: 24px;
  color: #F4F5F7;
  font-weight: 600;
  margin-bottom: 20px;
}
.items-type-product .item p.title span{
  color: #33D0E6;
}
@media screen and (max-width: 1199px){

}
@media screen and (max-width: 991px){
  .items-type-product .item .content{
    padding: 20px;
  }
}
@media screen and (max-width: 767px){
  .items-type-product .item{
    width: 100%;
  }
  .items-type-product .item .content {
    padding: 40px 50px;
  }
}
@media screen and (max-width: 479px){
  .items-type-product .item .content{
    padding: 20px;
  }
  .items-type-product .item p.title{
    margin-bottom: 15px;
  }
}
/* -- type-product */

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

/* features-sonic-lite */
.features-sonic-lite .container{
  max-width: 996px;
}
.features-sonic-lite .description{
  max-width: 800px;
  margin: 0 auto 60px;
}
.features-sonic-lite .description p{
  text-align: center;
  font-size: 24px;
  color: #fff;
  line-height: 1.33;
}
.features-sonic-lite .items-features-sonic-lite{
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.features-sonic-lite .items-features-sonic-lite .item{
  display: flex;
  align-items: center;
  gap: 50px;
  background: #111;
  border-radius: 8px;
  padding: 10px;
  width: 100%;
}
.features-sonic-lite .items-features-sonic-lite .item .image{
  overflow: hidden;
  border-radius: 8px;
  width: 226px;
  position: relative;
}
.features-sonic-lite .items-features-sonic-lite .item .image:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 100%);
  opacity: .7;
}
.features-sonic-lite .items-features-sonic-lite .item .image img{
  display: block;
}
.features-sonic-lite .items-features-sonic-lite .item .content{
  width: calc(100% - 276px);
}
.features-sonic-lite .items-features-sonic-lite .item .content p{
  color: #8B8F97;
  font-size: 16px;
  line-height: 1.5;
  max-width: 90%;
}
.features-sonic-lite .items-features-sonic-lite .item .content p.title{
  font-size: 24px;
  line-height: 1.1;
  color: #fff;
  font-weight: 500;
  margin-bottom: 20px;
}
@media screen and (max-width: 1199px){

}
@media screen and (max-width: 991px){
  .features-sonic-lite .description p{
    font-size: 20px;
  }
  .features-sonic-lite .items-features-sonic-lite .item .content p.title{
    font-size: 20px;
  }
}
@media screen and (max-width: 767px){
  .features-sonic-lite .description p{
    font-size: 18px;
  }
  .features-sonic-lite .items-features-sonic-lite .item .content p.title{
    font-size: 18px;
  }
}
@media screen and (max-width: 650px){
  .features-sonic-lite .items-features-sonic-lite .item{
    flex-wrap: wrap;
    gap: 20px;
    padding: 30px;
  }
  .features-sonic-lite .items-features-sonic-lite .item .image,
  .features-sonic-lite .items-features-sonic-lite .item .content{
    width: 100%;
  }
  .features-sonic-lite .items-features-sonic-lite .item .image img{
    width: 100%;
  }
}
@media screen and (max-width: 479px){
  .features-sonic-lite .items-features-sonic-lite .item{
    padding: 20px;
  }
  .features-sonic-lite .items-features-sonic-lite .item .content p{
    font-size: 14px;
  }
}
/* -- features-sonic-lite */

/* section-cta */
.section-cta{
  padding-bottom: 60px;
}
.section-cta .container{
    max-width: 996px;
}
.section-cta .item-cta{
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    background: rgba(137,137,137,.05);
}
.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: 140px;
    height: 100%;
    background: linear-gradient(-90deg, rgba(17, 17, 17, 0) 40%, #070707 100%);
}
.section-cta .image img{
    display: block;
    height: 100%;
}
.section-cta .content p{
    margin-bottom: 30px;
    font-size: 18px;
    color: #F4F5F7;
    max-width: 500px;
}
.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;
}
@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;
    }
}
@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-for-whom */
.wrapper-for-whom{
  padding: 10px;
  border-radius: 8px;
  background: #111;
}
.nav-for-whom{
  display: flex;
  gap: 20px;
  margin-bottom: 10px;
}
.nav-for-whom li{
  width: calc((100% - 40px) / 3);
  border-radius: 6px;
  text-align: center;
  padding: 25px 15px;
  cursor: pointer;
  transition: all .3s;
}
.nav-for-whom li.active{
  background: #191919;
}
.nav-for-whom li p{
  color: #8B8F97;
  text-transform: uppercase;
}
.nav-for-whom li p:first-child{
  font-size: 19px;
  line-height: 1;
  margin-bottom: 10px;
  transition: all .3s;
}
.nav-for-whom li p:last-child{
  font-size: 10px;
  line-height: 1;
  font-family: "Geist Mono", monospace;
  transition: all .3s;
}
.nav-for-whom li:hover,
.nav-for-whom li.active{
  background: #191919;
}
.nav-for-whom li:hover p:first-child,
.nav-for-whom li.active p:first-child{
  color: #F4F5F7;
  font-weight: 600;
}
.nav-for-whom li.active p:last-child{
  color: #8B8F97;
}
.tab-for-whom{
  padding: 10px;
  display: flex;
  gap: 20px;
  background: #191919;
  background: linear-gradient(180deg, #191919 50%, #242424 111.13%);
  border-radius: 6px;
  width: 100%;
}
.content-for-whom{
  margin-bottom: 10px;
  position: relative;
}
.content-for-whom .tab-for-whom{
  display: flex;
  gap: 20px;
  position: absolute;
  opacity: 0;
  visibility: hidden;
  transition: all .1s;
}
.content-for-whom .tab-for-whom.active{
  position: relative;
  opacity: 1;
  visibility: visible;
}
.content-for-whom .tab-for-whom .item-problem{
  width: calc((100% - 40px) / 3);
  width: 100%;
  border-radius: 5px;
  border: 1px solid #262626;
}
.tab-for-whom .item-problem .problem{
  padding: 20px;
  border-bottom: 1px solid #262626;
}
.tab-for-whom .item-problem .problem .suptitle{
  text-transform: uppercase;
  color: #8B8F97;
  font-weight: 300;
  font-size: 11px;
  letter-spacing: .03em;
  padding-left: 21px;
  font-family: "Geist Mono", monospace;
  background-image: url(../images/icon-problem.svg);
  background-position: 0 center;
  background-size: 16px;
  background-repeat: no-repeat;
}
.tab-for-whom .item-problem .title{
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.44;
  margin: 20px 0;
  padding-right: 50px;
}
.tab-for-whom .item-problem .description{
  font-size: 13px;
  color: #8B8F97;
  line-height: 1.61;
  max-width: 360px;
}
.tab-for-whom .item-problem .solutions{
  padding: 20px;
}
.tab-for-whom .item-problem .solutions .solutions-title{
  text-transform: uppercase;
  font-size: 11px;
  color: #8B8F97;
  font-family: "Geist Mono", monospace;
  letter-spacing: .03em;
  margin-bottom: 20px;
}
.tab-for-whom .item-problem .solutions ul li{
  padding-left: 27px;
  color: #fff;
  line-height: 1.61;
  font-size: 13px;
  margin-top: 20px;
  background-image: url(../images/icon-solves.svg);
  background-position: 0 2px;
  background-size: 16px;
  background-repeat: no-repeat;
}
.wrapper-for-whom .btn-transparent{
  width: 100%;
  border-color: #262626;
}
.wrapper-for-whom .btn-transparent:hover svg path{
  fill: none;
  stroke: #000;
}
@media screen and (max-width: 1199px){

}
@media screen and (max-width: 991px){
  .content-for-whom .tab-for-whom{
    flex-wrap: wrap;
    justify-content: center;
  }
  .content-for-whom .tab-for-whom .item-problem{
    width: calc((100% - 20px) / 2);
  }
  .nav-for-whom li{
    padding: 10px;
  }
}
@media screen and (max-width: 767px){
  .nav-for-whom{
    flex-wrap: wrap;
    position: relative;
  }
  .nav-for-whom li{
    width: 100%;
    position: absolute;
    visibility: hidden;
    opacity: 0;
    order: 2;
    text-align: left
  }
  .nav-for-whom li:not(.active){
    top: -10px;
  }
  .nav-for-whom.show li{
    position: relative;
    visibility: visible;
    opacity: 1;
    order: 9;
    top: 0;
  }
  .nav-for-whom li.active{
    position: relative;
    visibility: visible;
    opacity: 1;
    order: 1;
  }
  .nav-for-whom li.active:after{
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    right: 10px;
    width: 16px;
    background-image: url(../images/arrow-faq.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100%;
    transition: all .3s;
  }
  .nav-for-whom.show li.active:after{
    transform: rotate(180deg);
  }
  .content-for-whom .tab-for-whom .item-problem{
    width: 100%;
  }
}
@media screen and (max-width: 599px){
  .nav-for-whom li p:first-child{
    font-size: 18px;
  }
}
@media screen and (max-width: 479px){
  .nav-for-whom li p:first-child{
    font-size: 16px;
  }
}
/* -- section-for-whom */

/* section-cases */
.section-cases{
  padding-bottom: 120px;
}
.section-cases .container{
  max-width: 996px;
}
.section-cases h2.title-section{
  text-align: center;
}
.nav-tab-cases{
  display: flex;
  gap: 10px;
  margin-top: 60px;
  background: #111;
  padding: 10px;
  border-radius: 8px;
  /* margin-bottom: 20px; */
}
.nav-tab-cases li{
  width: calc((100% - 30px) / 4);
  padding: 9px;
  cursor: pointer;
  text-align: center;
  font-size: 16px;
  line-height: 1;
  color: #8B8F97;
  transition: all .3s;
}
.nav-tab-cases li:hover,
.nav-tab-cases li.active{
  background: #191919;
  border-radius: 5px;
  color: #F4F5F7;
  font-weight: 600;
}
.content-tab-cases{
  margin-top: 60px;
}
.content-tab-cases .item{
  padding: 10px;
  border-radius: 8px;
  background: #111;
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 20px;
}
.content-tab-cases .item .image{
  width: 280px;
}
.content-tab-cases .item .image img{
  aspect-ratio: 28 / 20;
  object-fit: cover;
  border-radius: 4px;
}
.content-tab-cases .item .content{
  width: calc(100% - 310px);
  padding: 10px;
}
.content-tab-cases .item .content p{
  font-size: 16px;
  line-height: 1.5;
  color: #8B8F97;
  margin-bottom: 20px;
}
.content-tab-cases .item .content .title{
  margin-bottom: 16px;
}
.content-tab-cases .item .content .title a{
  font-size: 28px;
  line-height: 1.28;
  color: #F4F5F7;
  font-weight: 500;
}
.content-tab-cases .item .content .title a:hover{
  opacity: .7;
}
.content-tab-cases{
  position: relative;
}
.content-tab-cases .tab{
  visibility: hidden;
  opacity: 0;
  position: absolute;
}
.content-tab-cases .tab.active{
  visibility: visible;
  opacity: 1;
  position: relative;
}
@media screen and (max-width: 1199px){

}
@media screen and (max-width: 991px){
  .content-tab-cases{
    margin-top: 40px;
  }
  .content-tab-cases .item .content .title a{
    font-size: 22px;
  }
}
@media screen and (max-width: 767px){
  .content-tab-cases{
    margin-top: 30px;
  }
  .content-tab-cases .item .content .title a{
    font-size: 20px;
  }
}
@media screen and (max-width: 650px){
  .content-tab-cases .item{
    flex-wrap: wrap;
    gap: 20px;
  }
  .content-tab-cases .item .image,
  .content-tab-cases .item .content{
    width: 100%;
  }
  .content-tab-cases .item .image img{
    aspect-ratio: 28 / 15;
  }
}
@media screen and (max-width: 479px){
  .content-tab-cases .item .content p{
    font-size: 14px;
  }
}
/* -- section-cases */

/* section-sonic-lite-advantages */
.section-sonic-lite-advantages .items-sonic-lite-advantages{
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.section-sonic-lite-advantages .items-sonic-lite-advantages .item{
  width: calc((100% - 40px) / 3);
  border-radius: 8px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding: 30px;
}
.items-sonic-lite-advantages .item:before{
  content: '';
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-image: url(../images/line-blue.svg);
  background-position: 30px 0;
  background-repeat: no-repeat;
  background-size: auto 1px;
}
.items-sonic-lite-advantages .item:after{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  border: 1px solid #fff;
  opacity: .09;
  z-index: 1;
  border-radius: 8px;
}
.items-sonic-lite-advantages .item p.title{
  text-transform: uppercase;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 700;
  color: #F4F5F7;
}
.items-sonic-lite-advantages .item .description p{
  font-size: 14px;
  line-height: 1.57;
  color: #B7B7B7;
  margin: 0;
}
.items-sonic-lite-advantages .item .description p strong{
  font-weight: 600;
  font-size: 16px;
}
@media screen and (max-width: 1199px){

}
@media screen and (max-width: 991px){
  .section-sonic-lite-advantages .items-sonic-lite-advantages .item{
    width: calc((100% - 20px) / 2);
    gap: 20px;
  }
}
@media screen and (max-width: 767px){
  .section-sonic-lite-advantages .items-sonic-lite-advantages .item{
    width: 100%;
    gap: 20px;
  }
}
@media screen and (max-width: 479px){
  .section-sonic-lite-advantages .items-sonic-lite-advantages .item{
    padding: 20px;
  }
}
/* -- section-sonic-lite-advantages */

/* section-tech-specs */
.section-tech-specs .container{
  max-width: 588px;
}
.section-tech-specs h2.title-section{
  text-align: center;
  margin-bottom: 60px;
}
.section-tech-specs .item-tech-specs{
  position: relative;
  width: 100%;
  border: 1px solid rgba(255, 255, 255, .09);
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 30px;
}
.section-tech-specs .item-tech-specs:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-image: url(../images/line-what-we-offer-item.svg);
  background-position: 50% 0;
  background-repeat: no-repeat;
  background-size: auto 1px;
}
.section-tech-specs .item-tech-specs .title{
  line-height: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, .09);
  padding: 0 40px;
  font-family: "Geist Mono", monospace;
  font-size: 12px;
  color: #fff;
  letter-spacing: .1em;
  position: relative;
  text-transform: uppercase;
}
.section-tech-specs .item-tech-specs .title:before {
  content: '';
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 2px;
  background: #00FF95;
  top: 19px;
  left: 19px;
}
.section-tech-specs .item-tech-specs:nth-child(3) .title:before{
  background: #33D0E6;
}
.section-tech-specs .item-tech-specs .content {
  padding: 20px;
}
.section-tech-specs .item-tech-specs .content ul {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.section-tech-specs .item-tech-specs .content ul{
  padding-left: 15px;
}
.section-tech-specs .item-tech-specs .content ul li {
  width: 100%;
  position: relative;
  line-height: 1.44;
  font-size: 14px;
  color: #C3C3C4;
  list-style: disc;
  letter-spacing: -.02em;
}
.section-tech-specs .wrapper-buttons{
  display: flex;
  align-items: center;
  gap: 20px;
}
.section-tech-specs .wrapper-buttons a{
  width: calc((100% - 20px) / 2);
}
@media screen and (max-width: 1199px){

}
@media screen and (max-width: 991px){
  .section-tech-specs h2.title-section{
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 767px){
  .section-tech-specs h2.title-section{
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 599px){
  .section-tech-specs .wrapper-buttons{
    flex-wrap: wrap;
  }
  .section-tech-specs .wrapper-buttons a{
    width: 100%;
  }
  .section-tech-specs .item-tech-specs .content ul{
    gap: 10px;
  }
}
@media screen and (max-width: 479px){

}
/* -- section-tech-specs */

/* section-why-plvision */
.section-why-plvision .container{
  max-width: 996px;
}
.section-why-plvision .title-section{
  text-align: center;
}
.section-why-plvision .items-why-plvision{
  display: flex;
  flex-wrap: wrap;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,.09);
  position: relative;
}
.section-why-plvision .items-why-plvision:after{
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  width: 1px;
  height: 100%;
  background: #fff;
  opacity: .09;
}
.section-why-plvision .items-why-plvision:before{
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
  background: #fff;
  opacity: .09;
}
.section-why-plvision .items-why-plvision .item{
  width: 50%;
  padding: 30px;
}
.section-why-plvision .items-why-plvision .item img{
  margin-bottom: 20px;
}
.section-why-plvision .items-why-plvision .item p,
.section-why-plvision .items-why-plvision .item li{
  color: #B7B7B7;
  font-weight: 300;
  font-size: 16px;
  line-height: 1.5;
}
.section-why-plvision .items-why-plvision .item ul{
  padding-left: 15px;
}
.section-why-plvision .items-why-plvision .item li{
  list-style: disc;
}
.section-why-plvision .items-why-plvision .item .title{
  margin-bottom: 20px;
  font-size: 20px;
  line-height: 1.3;
  font-weight: 700;
  color: #fff;
}
@media screen and (max-width: 1199px){

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

}
@media screen and (max-width: 599px){
  .section-why-plvision .items-why-plvision .item{
    width: 100%;
    border-bottom: 1px solid rgba(255,255,255,.09);
  }
  .section-why-plvision .items-why-plvision .item:last-child{
    border-bottom: 0;
  }
  .section-why-plvision .items-why-plvision:after,
  .section-why-plvision .items-why-plvision:before{
    display: none;
  }
}
@media screen and (max-width: 479px){
  .section-why-plvision .items-why-plvision .item{
    padding: 20px;
  }
}
/* -- section-why-plvision */

/* section-companies-we-partner */
.section-companies-we-partner .container{
  max-width: 996px;
}
.section-companies-we-partner .title-section{
  text-align: center;
  font-size: 16px;
  text-transform: uppercase;
  font-weight: 500;
  line-height: 1;
  color: #fff;
}
.section-companies-we-partner .items-companies-we-partner{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
  margin-top: 30px;
}
.section-companies-we-partner .items-companies-we-partner .item{
  border-radius: 8px;
  background: #111;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 90px;
  width: calc((100% - 78px) / 5);
}
@media screen and (max-width: 1199px){

}
@media screen and (max-width: 991px){
  .section-companies-we-partner .items-companies-we-partner .item{
      width: calc((100% - 36px) / 3);
  }
}
@media screen and (max-width: 599px){
  .section-companies-we-partner .items-companies-we-partner .item{
      width: calc((100% - 18px) / 2);
  }
}
@media screen and (max-width: 479px){

}
/* --section-companies-we-partner */

/* section-sonic-lite-brief */
.section-sonic-lite-brief .container{
  max-width: 996px;
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  gap: 20px;
}
.section-sonic-lite-brief .container .item{
  background: #111111;
  border-radius: 8px;
  text-align: center;
  padding: 30px;
  width: calc((100% - 20px) / 2);
}
.section-sonic-lite-brief .container .item p{
  margin: 0 auto 30px;
  letter-spacing: -.02em;
  color: #B7B7B7;
  font-size: 12px;
  line-height: 20px;
  max-width: 360px;
}
.section-sonic-lite-brief .container .item p.title{
  font-family: "Geist Mono", monospace;
  font-size: 14px;
  line-height: 1.1;
  text-transform: uppercase;
  margin-bottom: 25px;
}
.section-sonic-lite-brief .container .item p.title span{
  font-weight: 500;
  color: #33D0E6;
}
.section-sonic-lite-brief .description{
  display: flex;
  align-items: center;
}
.section-sonic-lite-brief .container .item img{
  max-width: 240px;
  margin-bottom: 30px;
}
.section-sonic-lite-brief .container .item a{
  width: 100%;
  max-width: 240px;
}
@media screen and (max-width: 1199px){

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

}
@media screen and (max-width: 767px){
  .section-sonic-lite-brief .container{
    flex-wrap: wrap;
    justify-content: center;
  }
  .section-sonic-lite-brief .container .item{
    width: 100%;
    max-width: 500px;
  }
  .section-sonic-lite-brief .container .item img{
    display: block;
    margin: 0 auto 30px;
  }
}
@media screen and (max-width: 479px){

}
/* -- section-sonic-lite-brief */

/* faq */
.faq .container{
    max-width: 720px;
}
.faq .title-section{
    font-size: 64px;
    font-weight: 500;
    color: #fff;
    margin-bottom: 40px;
    text-align: center;
}
.faq .items-faq .item{
    position: relative;
}
.faq .items-faq .item:after{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-image: url(../images/line-faq.svg);
    background-position: 50% 0;
    background-repeat: no-repeat;
    background-size: auto 1px;
}
.faq .items-faq h3{
    font-size: 20px;
    color: #F4F5F7;
    line-height: 1.3;
    padding: 30px 30px 30px 0;
    position: relative;
    cursor: pointer;
}
.faq .items-faq h3:after{
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    width: 16px;
    background-image: url(../images/arrow-faq.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100%;
    transition: all .3s;
}
.faq .items-faq h3.active:after{
    transform: rotate(180deg);
}
.faq .items-faq .content{
    display: none;
}
.faq .items-faq .content ul,
.faq .items-faq .content ol{
    padding-left: 20px;
    margin-bottom: 10px;
}
.faq .items-faq .content ul li{
    list-style: disc;
}
.faq .items-faq .content ol li{
    list-style: decimal;
}
.faq .items-faq .content li,
.faq .items-faq .content p,
.faq .items-faq .content p a{
    font-size: 14px;
    color: #B7B7B7;
    font-weight: 300;
    line-height: 1.7;
}
.faq .items-faq .content p a{
  text-decoration: underline;
}
.faq .items-faq .content p a:hover{
  color: #fff;
}
.faq .items-faq .content p {
    margin-bottom: 10px;
}
.faq .items-faq .content > *:last-child{
    margin-bottom: 30px;
}
@media screen and (max-width: 991px){
  .faq .items-faq h3{
    padding: 20px 20px 20px 0;
    font-size: 18px;
  }
}
@media screen and (max-width: 767px){

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

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

}
/* -- faq */

/* section-extend-sonic-across */
.section-extend-sonic-across .wrapper-extend-sonic-across{
  display: flex;
  align-items: center;
  gap: 50px;
  position: relative;
  background: #08090A;
  border-radius: 8px;
  padding: 50px;
}
.section-extend-sonic-across .wrapper-extend-sonic-across:after{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border: 1px solid rgba(255,255,255,.09);
  z-index: 0;
  border-radius: 8px;
}
.section-extend-sonic-across .wrapper-extend-sonic-across:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-image: url(../images/line-cta.svg);
  background-position: 80% 0;
  background-repeat: no-repeat;
  background-size: auto 1px;
  z-index: 3;
}
.section-extend-sonic-across .text,
.section-extend-sonic-across .image{
  width: calc((100% - 50px) / 2);
}
.section-extend-sonic-across h2{
  background-color: #fff;
  background-image: linear-gradient(180deg, #3197C8, #0FEBFF);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 30px;
  line-height: 1.2;
  font-weight: 600;
  margin-bottom: 30px;
}
.section-extend-sonic-across p{
  color: #F4F5F7;
  font-size: 18px;
  line-height: 1.44;
  margin-bottom: 18px;
}
.section-extend-sonic-across ul{
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.section-extend-sonic-across ul li{
  width: 100%;
  padding-left: 40px;
  position: relative;
  line-height: 24px;
  font-size: 16px;
  color: #8B8F97;
}
.section-extend-sonic-across ul 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;
}
.section-extend-sonic-across .wrapper-buttons{
  display: flex;
  align-items: center;
  gap: 20px;
}
.section-extend-sonic-across .wrapper-buttons a{
  width: calc((100% - 20px) / 2);
}
@media screen and (max-width: 1199px){

}
@media screen and (max-width: 991px){
  .section-extend-sonic-across .wrapper-extend-sonic-across{
    flex-wrap: wrap;
    gap: 0px;
  }
  .section-extend-sonic-across .text, .section-extend-sonic-across .image{
    width: 100%;
  }
  .section-extend-sonic-across p{
    font-size: 16px;
  }
}
@media screen and (max-width: 767px){
  .section-extend-sonic-across .wrapper-extend-sonic-across{
    padding: 30px;
  }
}
@media screen and (max-width: 599px){
  .section-extend-sonic-across .wrapper-buttons{
    flex-wrap: wrap;
  }
  .section-extend-sonic-across .wrapper-buttons a{
    width: 100%;
  }
}
@media screen and (max-width: 479px){
  .section-extend-sonic-across .wrapper-extend-sonic-across{
    padding: 20px;
  }
  .section-extend-sonic-across h2{
    font-size: 24px;
    margin-bottom: 20px;
  }
  .section-extend-sonic-across ul{
    gap: 10px;
  }
  .section-extend-sonic-across ul li{
    font-size: 14px;
    padding-left: 30px;
  }
}
/* --section-extend-sonic-across */

/* section-contact-us */
.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;
}
.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: 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%;
  }
}
/* -- section-contact-us */

/* section-more-less */
.section-more-less{
  position: relative;
}
.section-more-less:after{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  background-image: url(../images/section-line.svg);
  background-repeat: no-repeat;
  background-size: auto 1px;
  background-position: center;
  width: 100%;
  height: 1px;
  z-index: 0;
}
.section-more-less h2.title-section{
  text-align: center;
  font-size: 50px;
  line-height: 1.17;
  max-width: 850px;
  margin: 0 auto 30px;
}
.section-more-less h2.title-section span{
  color: #33D0E6;
}
.section-more-less .subtitle{
  color: #8B8F97;
  font-size: 18px;
  line-height: 1.44;
  max-width: 640px;
  margin: auto;
  text-align: center;
}
.section-more-less .items-section-more-less{
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 80px;
}
.section-more-less .items-section-more-less .item{
  position: relative;
  width: calc((100% - 40px) / 3);
  border-radius: 8px;
  padding: 30px;
  border: 1px solid rgba(255,255,255,.09);
  background-position: 100% 50%;
  background-size: auto 100%;
  background-repeat: no-repeat;
  display: inline-flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 30px;
  min-height: 190px;
}
.section-more-less .items-section-more-less .item:before{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(92.46deg, #111111 42.81%, rgba(17, 17, 17, 0) 120.07%);
  z-index: 0;
}
.section-more-less .items-section-more-less .item a{
  position: relative;
  z-index: 9;
  width: fit-content;
}
.section-more-less .items-section-more-less .item a.btn-arrow span:first-child{
  color: #fff;
}
.section-more-less .items-section-more-less .item p.title{
  font-size: 16px;
  line-height: 1.5;
  color: #fff;
  font-weight: 600;
  position: relative;
  z-index: 9;
}
.section-more-less .items-section-more-less .item.item-contact{
  gap: 20px;
}
.section-more-less .items-section-more-less .item.item-contact ul{
  position: relative;
  z-index: 9;
}
.section-more-less .items-section-more-less .item.item-contact ul.phones li{
  padding-left: 24px;
  background-image: url(../images/icon-phone-blue.svg);
  background-size: 16px;
  background-position: 0 50%;
  background-repeat: no-repeat;
}
.section-more-less .items-section-more-less .item.item-contact ul.emails li{
  padding-left: 24px;
  background-image: url(../images/icon-email-blue.svg);
  background-size: 16px;
  background-position: 0 50%;
  background-repeat: no-repeat;
}
.section-more-less .items-section-more-less .item.item-contact ul.phones li a,
.section-more-less .items-section-more-less .item.item-contact ul.emails li a{
  color: #fff;
  font-size: 14px;
  line-height: 24px;
  position: relative;
  top: -2px;
}
.section-more-less .items-section-more-less .item.item-contact ul.phones li a:hover,
.section-more-less .items-section-more-less .item.item-contact ul.emails li a:hover{
  opacity: .7;
}
.section-more-less .items-section-more-less .item.item-contact ul.phones li a span{
  text-transform: uppercase;
  color: #535353;
}
@media screen and (max-width: 1199px){

}
@media screen and (max-width: 991px){
  .section-more-less h2.title-section{
    font-size: 40px;
  }
  .section-more-less .subtitle{
    font-size: 16px;
  }
  .section-more-less .items-section-more-less .item{
    width: calc((100% - 20px) / 2);
  }
}
@media screen and (max-width: 599px){
  .section-more-less .items-section-more-less .item{
    width: 100%;
  }
  .section-more-less h2.title-section{
    font-size: 30px;
  }
}
@media screen and (max-width: 479px){
  .section-more-less .items-section-more-less .item{
    padding: 20px;
  }
}
/* -- section-more-less */
