/* stylelint-disable */
/* stylelint-disable */
.section-services {
  overflow: hidden;
  padding: clamp(36px, 4.167vw, 80px) 0;
}
.section-services__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.section-services .services {
  width: 100%;
  display: flex;
  gap: 20px;
}
.section-services .services__col {
  position: relative;
  z-index: 1;
  min-height: clamp(320px, 31.25vw, 600px);
  overflow: hidden;
  border-radius: 12px;
  display: flex;
  align-items: center;
  min-width: 200px;
  flex: 1;
  transition: all 1s;
}
.section-services .services__col.active {
  width: 100%;
  flex: 5;
}
.section-services .services__col.active .services__heading {
  opacity: 0;
  visibility: hidden;
}
.section-services .services__col.active .services__title span {
  opacity: 1;
  visibility: visible;
  transform: translate(0, 0) rotate(0);
}
.section-services .services__col.active .services__descr {
  opacity: 1;
  visibility: visible;
  transform: translate(0, 0);
}
.section-services .services__col.active .services__video {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}
.section-services .services__bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border-radius: 12px;
  display: flex;
  z-index: -1;
}
.section-services .services__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(22, 23, 27, 0.75);
}
.section-services .services__video {
  position: absolute;
  opacity: 0;
  visibility: hidden;
  inset: 0;
  border-radius: 12px;
  transform: scale(1.3);
  transition: all 1s ease;
}
.section-services .services__video video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.section-services .services [data-parallax-target] {
  height: 120%;
  width: 110%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  inset: 0;
  top: -10%;
  transform-origin: 50% 50%;
}
.section-services .services__heading {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  inset: 0;
  padding: 0 5px;
  font-size: 24px;
  text-align: center;
}
.section-services .services__content {
  padding: 0 clamp(16px, 4.167vw, 80px);
}
.section-services .services__link {
  display: flex;
  flex-direction: column;
}
.section-services .services__title {
  overflow: hidden;
  margin-bottom: 20px;
  padding-bottom: 10px;
}
.section-services .services__title span {
  margin-top: -10px;
  padding-bottom: 10px;
  line-height: 92%;
  font-weight: 500;
  color: var(--cl-a);
  opacity: 0;
  visibility: hidden;
  transform: translate(0, 130%) rotate(10deg);
  transition: transform 0.5s;
}
.section-services .services__descr {
  line-height: 150%;
  font-weight: 400;
  opacity: 0;
  visibility: hidden;
  transform: translate(0, 20%);
  transition: transform 0.5s;
}
@media (min-width: 1025px) {
  .section-services .services__title span {
    font-size: clamp(24px, 2.188vw, 42px);
  }
  .section-services .services__descr {
    width: clamp(200px, 19.948vw, 383px);
    font-size: clamp(14px, 0.938vw, 18px);
  }
}
@media (max-width: 1024px) {
  .section-services .services {
    flex-direction: column;
  }
  .section-services .services__title {
    text-align: center;
  }
  .section-services .services__title span {
    font-size: 24px;
  }
  .section-services .services__descr {
    font-size: 18px;
    text-align: center;
  }
}
/*# sourceMappingURL=section-services.css.map */