h1 strong, h2 strong, h3 strong {
    position: relative;
    z-index: 2;
}
/* h1 strong::after, h2 strong::after, h3 strong::after {
    height: 1.5vw;
    width: 103%;
    position: absolute;
    bottom: 0.5vw;
    right: -1.5%;
    content: " ";
    z-index: -1;
} */
.container {
    max-width: 1328px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-left: 24px;
    padding-right: 24px;
}
.green-divider {
    background-image: url('../img/bg-green.webp');
    background-repeat: no-repeat;
    background-position: -2vw -1vw;
    background-size: 108vw 7vw;
    height: 6vw;
    width: 100%;
}
.coloris-divider {
    background-image: url('../img/line-coloris.webp');
    background-repeat: no-repeat;
    background-position: 0 0;
    background-size: 100vw 6vw;
    height: 6vw;
    width: 100%;
}
.notfound-container img{
    width: 15vw;
    object-fit: contain;
    position: relative;
}
.notfound-title {
    color: #0C0400;
    margin: 2vw 0;
    font-size: 3vw;
}
.notfound-text {
    font-size: 16px;
    color: #0C0400;
    margin: 0 auto 2vw;
    text-align: center;
    font-weight: bold;
}
.notfound-container {
    flex-direction: column;
    display: flex;
    justify-content: center;
    align-items: center;
}
.container-notfound {
    display: flex;
        align-items: center;
        justify-content: center;
        padding: 12vw 15.5vw 7vw;
}
.slick-dots {
    display: flex;
    width: 100%;
    padding: 0 0;
    list-style: none;
    margin: 1vw 0 0;
}
.slick-dots li {
    background-color: rgba(52, 52, 52, 0.4);
    flex: 1;
    margin: 0 0.4vw 0 0;
    height: 0.25vw;
    cursor: pointer;
}
.slick-dots li.slick-active {
    background-color: rgba(52, 52, 52, 0.6);
}
.slick-dots li button{
    opacity: 0;
    width: 100%;
    position: relative;
    top: -0.6vw;
}
.bg-word {
  position: relative;
  font-weight: 400;
  z-index: 1;
}
.bg-word:after {
  content: " ";
  background-color: #FFEA97;
  width: 0%;
  height: 45px;
  position: absolute;
  left: -3%;
  bottom: 10px;
  z-index: -1;
  transition: width ease-in 0.8s;
}
.bg-word.active:after {
  width: 102%;
}
.btn {
    text-transform: uppercase !important;
    color: #fff;
    background-color: #1B1B1B;
    font-family: 'ArchivoSemi';
    font-size: 15px;
    padding: 30px 20px;
    border-radius: 15px;
    text-decoration: none;
    position: relative;
    display: flex !important;
    align-items: center;
    /* background-color: #fff; */
}

.btn::after {
    content: " ";
    height: 0.15vw;
    width: 105%;
    right: -2.5%;
    bottom: 0vw;
    background-color: #e12e02;
    position: absolute;
    transition: width ease-in-out 0.4s;
}
.btn:hover::after{
    width: 0;
}
.btn:hover .btn__circle-container {
    scale: 1;
    width: 1.7vw;
    margin-right: 1vw;
}
.btn:hover .btn__arrow {
    transform: translate(0);
}
.btn__circle-container{
    justify-content: center;
    place-items: center;
    display: flex;
    /* position: absolute;
    left: -3vw;
    top: -0.2vw; */
    height: 1.7vw;
    scale: 0;
    width: 0;
    transition: all ease-in-out 0.3s;
}
.btn__arrow svg {
    width: 0.8vw;
}
.btn__circle-bg {
    transition: scale ease-in-out 0.3s;
    background-color: #e12e02;
        border: transparent;
    border-style: solid;
    border-width: 1px;
    border-radius: 50%;
    justify-content: center;
    align-items: center;
    width: 1.7vw;
    height: 1.7vw;
    padding: 0.3vw;
    display: flex;
    position: absolute;
}
.btn__arrow {
    color: #fff;
    justify-content: center;
    align-items: center;
    display: flex;
    transform: translate(-1vw);
    transition: transform ease-in-out 0.6s;
}

.section-clients {
  background-image: url('../img/bg-1.webp');
  background-size: 100% 100%;
  background-position: top;
  background-repeat: no-repeat;
  padding-top: 200px;
  padding-bottom: 200px;
  overflow: hidden;
  width: 100%;
  flex-direction: column;
  align-items: center;
  display: flex;
}

.clients-row {
  width: 100%;
  flex-wrap: nowrap;
  align-items: center;
  display: flex;
  animation: scroll-left 20s linear infinite;
}
.box-client {
      display: inline-block;
      margin-right: 25px;
      margin-left: 25px;
    }

    @keyframes scroll-left {
      0% {
        transform: translateX(0);
      }
      100% {
        transform: translateX(-50%);
      }
    }
.clients-row .slick-track {
    display: flex;
    align-items: center;
}
.clients-row .slick-list {
   padding: 0 12%;
}
.box-client.slick-slide {
  display: flex !important;
  justify-content: center;
  align-items: center;
}
.image-cliens {
  max-width: 140px;
  max-height: 180px;
  object-fit: contain;
}
img.image-cliens[alt="cameleon-logo"] {
    max-height: 230px;
    max-width: 230px;
}
img.image-cliens[alt="seaver-logo"] {
    max-height: 230px;
    max-width: 230px;
}
.cta-button {
  background-color: #1B1B1B;
  border: 2px solid #1B1B1B;
  color: white;
  padding: 16px 34px;
  border-radius: 12px;
  font-size: 18px;
  cursor: pointer;
  transition: background-color ease-in-out 0.2s , color ease-in-out 0.2s;
}
.cta-button:hover {
  color: #1B1B1B;
  background-color: white;
}
.section-cta-final .cta-button:hover {
  background-color: #FFF7D5;
}
.section-cta-final {
  background-image: url('../img/bg-3.webp');
  background-repeat: no-repeat;
  background-position: top;
  background-size: cover;
  padding: 120px 24px 150px;
  text-align: center;
}
.section-cta-final h2 {
  font-size: 60px;
  font-weight: 400;
  margin-bottom: 30px;
  line-height: 1;
}
.section-cta-final h2 em {
  font-family: 'Instrumentserif_Italic';
}
.section-cta-final p {
  font-size: 20px;
  text-align: center;
  margin-bottom: 32px;
}
.coloris-divider {
  margin-top: -6vw;
}

.section-testimonial {
  text-align: center;
  padding: 120px 0;
}

.testimonial-title {
  font-size: 60px;
  font-weight: 400;
  line-height: 1;
  margin-bottom: 80px;
  position: relative;
}
.testimonial-subtitle {
  font-size: 20px;
  text-align: center;
  margin-bottom: 60px;
}

.testimonial-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: nowrap;
  overflow-x: auto;
  padding: 0 40px;
}
.testimonial-block {
  cursor: pointer;
  width: 100px;
  height: 310px;
  display: flex;
}
.testimonial-block.active {
  flex: 1;
  cursor:default;
  width: auto;
}
.testimonial-image {
  width: 120px;
  height: 310px;
  border-radius: 20px;
  overflow: hidden;
  /* transition: width ease-in 0.4s; */
  filter: grayscale(1);
}
.testimonial-block.active .testimonial-image {
  width: 25%;
  margin-left: -5%;
  filter: grayscale(0);
}
.testimonial-image img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.testimonial-content {
  background-color: #d7f7d8;
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
  padding: 25px 0 35px 0;
  flex-direction: column;
  display: flex;
  align-items: flex-start;
  /* transition: width ease-in 0.4s; */
  width: 0%;
  overflow: hidden;
}
.testimonial-wrapper .testimonial-block:nth-child(1) .testimonial-content {
  background-color: #FFEA9750;
}
.testimonial-wrapper .testimonial-block:nth-child(1) .testimonial-image {
  background-color: #FFEA97;
}

.testimonial-wrapper .testimonial-block:nth-child(3) .testimonial-content{
  background-color: #d7f7d850;
}
.testimonial-wrapper .testimonial-block:nth-child(3) .testimonial-image {
  background-color: #d7f7d8;
}
.testimonial-wrapper .testimonial-block:nth-child(2) .testimonial-content {
  background-color: #E1D3FE50;
}
.testimonial-wrapper .testimonial-block:nth-child(2) .testimonial-image {
  background-color: #E1D3FE;
}
.testimonial-wrapper .testimonial-block:nth-child(4) .testimonial-content {
  background-color: #D3ECEA50;
}
.testimonial-wrapper .testimonial-block:nth-child(4) .testimonial-image {
  background-color: #D3ECEA;
}
.testimonial-wrapper .testimonial-block:nth-child(5) .testimonial-image{
  background-color: #EBFE88;
}
.testimonial-wrapper .testimonial-block:nth-child(5) .testimonial-content {
  background-color: #EBFE8850;
}
.testimonial-block.active .testimonial-content{
  padding: 25px 0 35px 40px;
  width: 80%;
}
.testimonial-logo {
  height: 50px;
    object-fit: contain; 
    margin-bottom: 20px; 
}

.testimonial-quote {
  /* font-family: 'Instrumentserif_Italic'; */
  font-style: italic;
  font-size: 18px;
  line-height: 22px;
  margin-bottom: 20px;
  padding-right: 100px;
}
.testimonial-author {
  text-align: left;
  margin-bottom: 0;
}
.testimonial-author strong{
  font-size: 20px;
  font-family: 'ArchivoSemi';
}
.testimonial-author span{
  font-size: 16px;
}

@media only screen and (max-width: 1248px) and (min-width: 1000px){
  .testimonial-wrapper {
      padding: 0 0px;
  }
  .testimonial-quote {
    padding-right: 50px;
  }
  .testimonial-content {
      background-color: #d7f7d8;
      border-top-left-radius: 20px;
      border-bottom-left-radius: 20px;
      padding: 20px 0 25px 30px;
      display: none;
      flex-direction: column;
      align-items: flex-start;
      width: 80%;
  }
}
@media only screen and (max-width: 767px) {
      .section-clients {
      background-image: url('../img/bg-1-m.webp');
      background-size: 100% 100%;
      padding-top: 30vw;
      padding-bottom: 40vw;
          margin-top: -20vw;
  }
  .image-cliens {
    max-width: 30vw;
    max-height: 20vw;
    object-fit: contain;
  }
    img.image-cliens[alt="cameleon-logo"] {
      max-width: 30vw;
      max-height: 20vw;
  }
  img.image-cliens[alt="seaver-logo"] {
      max-width: 30vw;
      max-height: 20vw;
  }
  .clients-row .slick-list {
    padding: 0 25%;
  }
    .container {
        padding: 0 8vw;
    }
    header .container {
        padding: 0 6vw;
    }
    .site-footer .container {
        padding: 0 6vw;
    }
    .green-divider {
        background-position: -4vw -6vw;
        background-size: 120vw 25vw;
        height: 20vw;
        width: 100%;
    }
    .coloris-divider {
        background-image: url('../img/line-coloris-m.webp');
        background-position: 0vw 0vw;
        background-size: 100vw 15vw;
        height: 15vw;
        width: 100%;
    }
    .notfound-container {
        padding: 5vw 7% 8vw;
    }
    .notfound-title {
        margin: 5vw 0 3vw;
        max-width: 100%;
        font-size: 6vw;
        text-align: center;
    }
    .notfound-text {
        font-size: 3.2vw;
        padding: 0 0;
        max-width: 100%;
        margin: 1.5vw auto 4.5vw;
    }
    .content-block {
        padding: 10vw 7vw 0vw;
        height: 85vh;
    }
    h1 strong::after, h2 strong::after, h3 strong::after {
        height: 3.2vw;
        bottom: 0.8vw;
        z-index: -1;
    }
    .btn {
        font-size: 3.2vw;
        padding-bottom: 2vw !important;
    }
    .btn::after {
        height: 0.35vw;
    }
    .btn__arrow svg {
        width: 2vw;
    }
    .btn__circle-bg {
        width: 4.5vw;
        height: 4.5vw;
        padding: 0.5vw;
    }
    .btn:hover .btn__circle-container {
        width: 4.5vw;
        margin-right: 2vw;
    }
      .section-cta-final {
    padding: 20vw 6vw 25vw;
    background-image: url('../img/bg-3-m.webp');
  }

  .section-cta-final h2 {
    font-size: 9vw;
    margin-bottom: 4vw;
  }

  .section-cta-final p {
    font-size: 3.5vw;
    margin-bottom: 6vw;
  }
  .coloris-divider {
   margin-top: -12vw;
  }
  .cta-button {
    font-size: 4vw;
    padding: 3.5vw 5vw;
    display: block;
    width: 90%;
    margin: 0 auto;
  }
   section.section-testimonial.container {
      padding: 10vw 6vw 20vw;
  }
  .testimonial-title {
    font-size: 9vw;
    margin-bottom: 5vw;
  }

  .testimonial-subtitle {
    font-size: 3.5vw;
    padding: 0 8vw;
    margin-bottom: 6vw;
  }
  .bg-word:after {
    height: 9vw;
    bottom: 1.5vw;
  }
  .testimonial-title .bg-word::after {
    bottom: 0;
  }
  .testimonial-wrapper {
    flex-direction: column;
    gap: 2vw;
    padding: 0 0vw;
  }
  .testimonial-block {
      width: 100%;
              flex-direction: column;
      height: auto;        
     
  }

  .testimonial-content {
            width: 100%;
        padding: 0vw 8vw 0vw;
        border-top-left-radius: 5vw;
        border-bottom-left-radius: 0;
        border-top-right-radius: 5vw;
   height: 0;
         transition: padding ease-in 0.4s;
  }
  .testimonial-block.active .testimonial-content{
  /* height: 60vw; */
  height: auto;
  padding: 9vw 8vw 12vw;
  }
  .testimonial-image {
        width: 100%;
        height: 35vw;
  }
.testimonial-block.active .testimonial-image {
      width: 100%;
      margin-left: 0;
              margin-top: -5vw;
      height: 70vw;
  }
  .testimonial-block.active .testimonial-content {
    width: 100%;
    padding: 9vw 8vw 12vw;
  }
 .testimonial-block.active   .testimonial-image img {
      width: 100%;
      height: 100%; 
      object-fit: contain;
      object-position: bottom;
  }
  .testimonial-image img {
      width: 100%;
      height: 150%;
      object-position: top;
      object-fit: contain;
  }
   .testimonial-wrapper .testimonial-block:nth-child(4) .testimonial-image img {
        height: 120%;
    }
    .testimonial-wrapper .testimonial-block.active:nth-child(4) .testimonial-image img {
        height: 100%;
    }
    .testimonial-wrapper .testimonial-block:nth-child(1) .testimonial-image img {
        height: 200%;
    }
  .testimonial-wrapper .testimonial-block.active:nth-child(1) .testimonial-image img {
        height: auto;
    }
    
.testimonial-quote {
    font-size: 4vw;
        padding-right: 0;
        margin-bottom: 4vw;
        line-height: 5vw;
  }
  .testimonial-author strong {
    font-size: 5vw;
    line-height: 8vw;
    font-family: 'ArchivoSemi';
  }
  .testimonial-author span {
      font-size: 3.8vw;
  }
  .testimonial-logo {
    height: 11vw;
        margin-bottom: 4vw;
  }
}