
.section-hero {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 160px 60px 0;
}

.hero-content {
  max-width: 530px;
}
.dont-show {
  visibility: hidden;
}
.animation-up {
    /* transform: translateY(50px); */
}
.section-hero h1 {
  font-size: 70px;
  font-family: 'Instrumentserif';
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 24px;
}

.section-hero h1 em {
  font-family: 'Instrumentserif_Italic';
}

.section-hero p {
  font-size: 19px;
  margin-bottom: 32px;
  line-height: 32px;
  padding-right: 40px;
}


.hero-images {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 560px;
  width: 100%;
  
}
.hero-images.unloaded {
  opacity: 0;
}
.image-box {
  height: 250px;
  margin-bottom: 10px;
  border-radius: 20px;
  object-fit: cover;
  object-position: center;
  transition: width ease-in-out 0.8s;
}
.img1 {
  width: 220px;
}
.img2 {
  width: 330px;
}
.img3 {
  width: 340px;
  margin-bottom: 0;
}
.img4 {
  width: 210px;
  margin-bottom: 0;
}
.hero-images.unloaded .img1, .hero-images.unloaded .img2, .hero-images.unloaded .img3, .hero-images.unloaded .img4{
  width: 49%;
}
@media only screen and (max-width: 1248px) and (min-width: 1000px){
  .img1 {
  width: 40%;
}
.img2 {
  width: 58%;
}
.img3 {
  width: 58%;
}
.img4 {
  width: 40%;
}
}



.about-text {
  max-width: 1180px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 100px 40px 100px;
}

.about-text h2 {
  font-size: 60px;
  font-weight: 400;
  line-height: 1.3;
  margin-bottom: 32px;
  max-width: 380px;
}
.about-text h2 em{
  font-family: 'Instrumentserif_Italic';
}
.about-text .txt{
  width: 60%;
}
.about-text .txt strong{
  font-family: 'ArchivoSemi';
}

.section-about p {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.section-about-image {
  padding-bottom: 60px;
  margin-top: -200px;
  background-color: transparent;
}

.team-image {
  width: 100%;
  background-color: #ccc;
  border-radius: 24px;
  background-size: contain;
  background-position: center;
}

.section-benefits {
  padding: 80px 0 60px;
}

.benefits-title {
  font-size: 60px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  line-height: 1.1;
  font-weight: 400;
  margin-bottom: 120px;
  padding: 0 80px;
  position: relative;
}
.line-drawed {
      position: relative;
      display: inline-block;
      font-family: 'Instrumentserif_Italic';
    }

    .underline-wrapper {
          position: absolute;
    left: 0;
    top: 100%;
    width: 100%;
    pointer-events: none;
    }

    .underline-svg {
      width: 100%;
      height: 100%;
    }

    .underline-path {
      fill: none;
      stroke: #ffea97;
      stroke-width: 5;
      stroke-linecap: round;
      stroke-dasharray: 1000;
      stroke-dashoffset: 1000;
      transition: stroke-dashoffset 3s ease;
    }

    .line-drawed.drawn .underline-path {
      stroke-dashoffset: 0;
    }
.benefits-title .line{ 
  width: 100%;
  display: block;
}
.benefits-title .line:nth-child(1){ 
  text-align: left;
}
.benefits-title .line:nth-child(2){ 
  text-align: right;
}
.benefits-grid {
  display: flex;
  justify-content: space-between;
  padding: 0 80px;
}

.benefit-item {
  width: 25%;
}
.benefit-icon {
  max-width: 65px;
  height: 40px;
  margin-bottom: 16px;
  transition: all ease-in-out 0.4s;
}
.benefit-item:hover .benefit-icon{
      transform: rotate(-20deg);
}
.benefit-item h3 {
  font-size: 25px;
  font-family: 'Archivo';
  margin-bottom: 20px;
  font-weight: 600;
}

.benefit-item p {
  font-size: 16px;
  text-align: left;
  line-height: 20px;
}

.section-steps {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 120px 80px;
}

.steps-intro {
  width: 43%;
}

.steps-intro h2 {
  font-size: 60px;
  font-weight: 400;
  margin-bottom: 24px;
}
.steps-intro h2 em{
  font-family: 'Instrumentserif_Italic';
}
.steps-intro p {
  font-size: 18px;
  line-height: 25px;
  margin-bottom: 24px;
}

.steps-list {
  width: 45%;
  display: flex;
  flex-direction: column;
  gap: 45px;
}

.step-item {
  display: flex;
  align-items: flex-start;
  gap: 30px;
  position: relative;
}

.step-number {
  width: 50px;
  height: 50px;
  border: 1px solid #3D3D3D;
  border-radius: 50%;
  text-align: center;
  line-height: 50px;
  font-size: 30px;
  font-weight: 400;
  flex-shrink: 0;
  position: relative;
  font-family: 'Instrumentserif';
}

.step-item:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 25px;
  top: 60px;
  width: 1px;
  height: 0;
  background-color: #3D3D3D;
  transition: all ease-in 0.8s;
}
.step-item.animate-now:not(:last-child)::after {
  height: calc(100% - 25px);
}



.step-text h3 {
  margin: 0 0 16px 0;
  font-size: 25px;
  font-weight: 600;
  font-family: 'Archivo';
}

.step-text p {
  font-size: 15px;
  line-height: 1.5;
}
.section-slack {
  background-color: #FFF7D5;
  border-radius: 15px;
  display: flex;
  flex-direction: column;
  padding: 50px 80px;
  margin: 0 60px;
}

.slack-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

.slack-header h2 {
  font-size: 60px;
  font-weight: 400;
  line-height: 1.1;
}

.slack-header h2 em {
  font-family: 'Instrumentserif_Italic';
  margin-right: 10px;
}

.slack-logo {
  width: 150px;
  height: 150px;
  object-fit: contain;
}

.slack-features {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.feature-item {
  width: 30%;
  flex: 1;
}

.feature-item h3 {
  font-size: 23px;
  font-family: 'Archivo';
  margin-bottom: 15px;
  font-weight: 600;
}

.feature-item p {
  font-size: 15px;
  line-height: 22px;
}

.section-services {
  background-image: url('../img/bg-2.webp');
  background-size: 100% 100%;
  background-position: top;
  background-repeat: no-repeat;
  padding: 160px 0 100px 80px;
  margin-top: 100px;
  overflow: hidden;
}

.services-header {
  max-width: 1260px;
    width: 100%;
  margin: 0 auto 60px;
}

.services-subtitle {
  font-size: 20px;
  margin-bottom: 20px;
  font-weight: 400;
  font-family: 'Archivo';
  color: #0C0400;
}

.services-header h2 {
  font-size: 60px;
  font-weight: 400;
  line-height: 1.1;
  position: relative;
}

.services-header em {
  font-family: 'Instrumentserif_Italic';
      position: relative;
    z-index: 2;
}
.services-header .bg-word {
  margin-right: 5px;
}
.highlight {
  background-color: #ffe880;
  padding: 0 4px;
  font-family: 'Instrumentserif_Italic';
}
.services-grid-container {
  position: relative;
  max-width: 1260px;
  margin-left: auto;
  margin-right: auto;
  overflow: visible;
}
.services-grid {
  position: absolute;
  left: 0;
  width: 100vw;
} 
.services-grid .slick-track {
    min-width: 1400px !important;
}
.services-grid .slick-list {
    padding: 0 25vw 0 0;
    overflow: visible;
}
/* .services-grid-container {
  position: relative;
    max-width: 1200px;
    padding: 0 0;
    margin-left: auto;
    margin-right: 0;
    overflow: visible;
}
.services-grid .slick-list {
    padding: 0 15% 0 0;
} */
/* .services-grid {
  position: absolute;
  left: 0;
  width: 100vw;
} */
.service-card {
  border-radius: 20px;
  padding: 25px;
  margin-right: 20px;
  display: flex !important;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  min-height: 260px !important;
  min-width: 250px;
  transition: all ease-in-out 0.3s;
}
.service-card:hover {
  transform:translateY(-10px);
}
.service-card:hover .arrow-icon{
    transform: translateX(55%);
}
.service-card h3 {
  font-size: 25px;
  font-family: 'Archivo';
  font-weight: 600;
  margin-bottom: 16px;
}
.service-card p {
  font-size: 16px;
  line-height: 21px;
  margin-bottom: 0;
  min-height: 100px;
}
.arrow-icon {
  
  height: 35px;
  opacity: 0 !important;
  height: 0 !important;
  object-fit: contain;
      align-self: flex-start;
  transition: all ease-in-out 0.3s;
}

/* 🎨 Background colors */
.card-1 {
  background-color: #D3ECEA;
}
.card-2 {
  background-color: #EBFE88;
}
.card-3 {
  background-color: #E1D3FE;
}
.card-4 {
  background-color: #FFEA97;
}
.card-5 {
  background-color: #CEF0BD;
}


.section-projects {
  padding: 120px 0 80px;
}

.section-projects h2 {
  font-size: 60px;
  font-weight: 400;
  text-align: center;
  margin-bottom: 60px;
}

.section-projects h2 em {
  font-family: 'Instrumentserif_Italic';
}

.project {
  display: block;
  margin-bottom: 80px;
}

.project h3 {
  font-size: 25px;
  font-family: 'Archivo';
  margin-bottom: 0;
  font-weight: 600;
  padding-left: 15px;
}
.project-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 15px;
}
.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag {
  background-color: #F7F7F5;
  padding: 8px 16px;
  border-radius: 20px;
  margin-bottom: 0;
  font-size: 15px;
  text-transform: uppercase;
}

.project-images {
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-template-rows: auto auto;
  gap: 13px;
  align-items: start;
}

.img-project.img1 {
  background-color: #FFF7D5;
  grid-column: 1;
  width: 100%;
  grid-row: 1 / span 2;
  padding: 0 30px 0;
  height: 540px;
}

.img-project.img2 {
  background: linear-gradient(to bottom, #FFEA9B, #FFF7D5);
  grid-column: 2;
  grid-row: 1;
  width: 100%;
  padding: 30px 30px 0;
  height: 350px;
  margin-bottom: 0px;
}
.img-project.img3 {
  grid-column: 2;
  grid-row: 2;
  width: 100%;
  background-color: #FAF7F0;
  padding: 30px;
  height: 175px;
}

.img-project {
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.img-project.img2 img{
  align-items: flex-end;
}
.img-project.img2 img{
  position: relative;
  top: 10px;
}
.img-project img{
  object-fit: contain;
  width: 100%;
  height: 100%;
}
.img-project.img3 img{
  object-fit: contain;
  width: 100%;
  height: 60%;
}


@media only screen and (max-width: 767px) {
  .container.hero-container {
    padding: 0 6vw;
  }
  .section-hero {
      flex-direction: column;
       align-items: center;
      padding: 22vw 0 0;
  }
  .section-hero h1 {
    font-size: 10vw;
    margin-bottom: 4vw;
    text-align: center;
    line-height: 11vw;
  }

  .section-hero p {
    font-size: 4vw;
    text-align: center;
    line-height: 5vw;
    padding: 0 5%;
     margin-bottom: 5vw;
  }
  .hero-content {
      margin-bottom: 6vw;
      max-width: 100%;
  }
  

  .hero-images {
    display: flex;
    flex-direction: column-reverse;
  }
  .hero-images.unloaded .img1, .hero-images.unloaded .img2, .hero-images.unloaded .img3, .hero-images.unloaded .img4{
    width: 0%;
  }
  .image-box {
    width: 100%;
    height: 45vw;
    border-radius: 4vw;
  }
  .hero-images .img3,.hero-images .img4  {
    display: none;
  }
  

  .about-text {
      align-items: flex-start;
      padding: 10vw 8vw 6vw;
      flex-direction: column;
  }
    .about-text h2 {
      font-size: 9vw;
    
      margin-bottom: 5vw;
      width: 70%;
  }
    .about-text .txt {
      width: 100%;
  }

  .highlight {
    background-color: #ffe880;
    padding: 0 1vw;
  }

  section.section-about-image.container {
  padding: 0 8vw 0vw;
    margin-top: -40vw;  
  }
  .team-image {
        width: 100%;
        height: 70vw;
        object-fit: cover;
        border-radius: 4vw;
  }
  .container.section-benefits {
    padding: 16vw 0vw 14vw 8vw;
  }

  .benefits-title {
    font-size: 9vw;
        margin-bottom: 20vw;
        padding: 0 6vw 0 0;
        display: inline-block;
        text-align: center;
        line-height: 11vw;
  }
  .benefits-title .line {
    display: inline;
  }
  .underline-wrapper {
    height: 10vw;
  }
  .benefits-grid {
    flex-direction: column;
    align-items: center;
    padding: 0 0;
  }
  .benefits-grid .slick-list {
   padding: 0 15% 0 0;
  }

  .benefit-item {
    width: 100%;margin-right: 10vw;
    text-align: left;
  }

  .benefit-icon {
    height: 8vw;
    max-width: 14vw;
    margin-bottom: 3vw;
  }

  .benefit-item h3 {
    font-size: 5vw;
    margin-bottom: 4vw;
  }

  .benefit-item p {
    font-size: 3.5vw;
  }
  .section-steps {
    flex-direction: column;
    padding: 14vw 0 20vw;
    position: relative;
    margin-bottom: 20vw;
  }

  .steps-intro {
    width: 100%;
  }

  .steps-intro h2 {
    font-size: 9vw;
    margin-bottom: 2vw;
  }

  .steps-intro p {
    font-size: 4vw;
    line-height: 5vw;
    margin-bottom: 10vw;
  }

  .step-number {
    width: 10vw;
        height: 10vw;
        font-size: 5vw;
        line-height: 10vw;
  }
  .steps-list {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 5vw;
  }
  .step-item {
    gap: 5vw;
  }

  .step-text h3 {
    font-size: 5.8vw;
        margin-bottom: 2vw;
        padding-top: 2vw;
  }

  .step-text p {
    font-size: 3.5vw;
  }

  .step-item:not(:last-child)::after {
    left: 5vw;
        top: 14vw;
        
  }
  .step-item.animate-now:not(:last-child)::after {
    height: calc(100% - 13vw);
  }
    section.section-steps .cta-button {
      position: absolute;
      bottom: 4vw;
      left: 5%;
  }
  section.container.slack {
    padding: 0 6vw;
  }
  .section-slack {
      padding: 35vw 8vw 10vw;
      border-radius: 4vw;
      margin: 0 0;
      position: relative;
  }

  .slack-header {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 6vw;
  }

  .slack-header h2 {
    font-size: 9vw;
  }

  .slack-logo {
            width: 23vw;
        height: 23vw;
        position: absolute;
        top: 10vw;
        right: 6vw;
  }

  .slack-features {
    flex-direction: column;
    gap: 2.5vw;
  }
  .feature-item {
    width: 100%;
  }

  .feature-item h3 {
    font-size: 4.5vw;
    margin-bottom: 2vw;
  }

  .feature-item p {
    font-size: 3.5vw;
  }
  .section-services {
    padding: 30vw 0 40vw 8vw;
    background-image: url('../img/bg-2-m.webp');
    margin-top: 20vw;
    position: relative;
  }
  .section-services::after{
    background-image: url('../img/line-coloris-m.webp');
            background-repeat: no-repeat;
        background-size: 120% 18vw;
        background-position: -5vw 3vw;
        content: " ";
        position: absolute;
        height: 20vw;
        bottom: 0;
        width: 100%;
        left: 0;
  }
  .services-header h2 {
    font-size: 9vw;
    padding-right: 18vw;
  }
  .services-header h2 br{
    display: none;
  }
  .services-header {
    margin: 0 auto 6vw;
  }
  .services-subtitle {
    font-size: 4.5vw;
    margin-bottom: 2vw;
  }
  .service-card {
    min-width: unset;
    min-height: unset !important;
  }
  .services-grid .slick-list {
   padding: 0 30% 0 0;
  }
  .service-card {
    padding: 6vw;
    border-radius: 4vw;
  }

  .service-card h3 {
    font-size: 4.5vw;
  }

  .service-card p {
    font-size: 3.5vw;
  }

  .arrow-icon {
    height: 10vw;
  }
  section.section-projects.container {
    padding: 15vw 0 10vw 6vw;
  }
  .section-projects h2 {
    font-size: 9vw;
    text-align: left;
    margin-bottom: 6vw;
    padding-left: 2vw;
  }
  .project-header {
    align-items: flex-start;
    margin-bottom: 3vw;
    padding-right: 6vw;
    flex-direction: column;
  }
  .project {
    margin-bottom: 5vw;
  }
  .project h3 {
    font-size: 5vw;
    margin-bottom: 3vw;
    padding-left: 3vw;
  }
  .tags {
    padding-left: 1vw;
  }
  .tag {
      padding: 2.5vw 4.5vw;
      border-radius: 3vw;
      font-size: 3.5vw;
  }
  .project-images {
    display: block;
  }
  .img-project.img1 {
    height: 60vw;
    padding: 0 4vw 0;
  }
  .img-project {
    border-radius: 3vw;
    display: flex !important;
    margin-right: 2vw;
  }
  .img-project.img2 {
    height: 60vw;
    padding: 0 4vw 0;
    position: relative;
    top: 0;
  }
  .img-project.img3 {
    height: 60vw;
    padding: 0 4vw 0;
  }
  .project-images .slick-list {
    padding: 0 20% 0 0;
  }
  .img-project.img2 img {
      object-position: bottom;
  }
  .img-project.img3 img {
    width: 80%;
    height: 20%;
  }

 


}