.benefits-type-2-block__holder {
  display: flex;
  flex-direction: column;
  padding: 60px 50px;
  border-radius: 40px;
  border: 6px solid var(--bg-color, #fff);
  background: var(--fon-bg);
}
.benefits-type-2-block__title {
  text-align: center;
  text-wrap: balance;
}
.benefits-type-2-block__title:not(:last-child) {
  margin-bottom: 12px;
}
.benefits-type-2-block__subtitle {
  text-align: center;
  text-wrap: balance;
}
.benefits-type-2-block__subtitle:not(:last-child) {
  margin-bottom: 24px;
}
.benefits-type-2-block__cards {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}
.benefits-type-2-block__card {
  flex: 1 1 auto;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: calc((100% - 30px) / 2);
  padding: 30px 28px 240px;
  border-radius: 24px;
  overflow: hidden;
  z-index: 2;
}
.benefits-type-2-block__card:nth-child(4n+1), .benefits-type-2-block__card:nth-child(4n+4) {
  background: linear-gradient(138deg, #81ebff 0%, #cce3ff 70.83%);
}
.benefits-type-2-block__card:nth-child(4n+2), .benefits-type-2-block__card:nth-child(4n+3) {
  background: linear-gradient(138deg, #30ab32 0%, #5ccfa4 53.4%, #a3ccff 100%);
}
.benefits-type-2-block__card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  z-index: -1;
}
.benefits-type-2-block__card:nth-child(4n+1)::before, .benefits-type-2-block__card:nth-child(4n+4)::before {
  background-image: url(./images/benefit-decor-1.png);
}
.benefits-type-2-block__card:nth-child(4n+2)::before, .benefits-type-2-block__card:nth-child(4n+3)::before {
  background-image: url(./images/benefit-decor-2.png);
}
.benefits-type-2-block__card-value {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  gap: 5px;
  color: var(--tekst-second---main-text);
  font-weight: 700;
  word-spacing: -0.45em;
}
.benefits-type-2-block__card-percent {
  width: clamp(35px, 35px + (80 - 35) * (100vw - 375px) / 1200, 80px);
  height: auto;
  aspect-ratio: 1/1;
  background-image: url(./images/percent.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  margin-bottom: 3px;
}
.benefits-type-2-block__card-text {
  text-wrap: balance;
  color: var(--tekst-second---main-text);
}
.benefits-type-2-block__card-img {
  position: absolute;
  bottom: 0;
  right: 0;
  max-width: 390px;
  width: auto;
  max-height: 260px;
  height: 100%;
  z-index: -1;
}
.benefits-type-2-block__card-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

@media (max-width: 991px) {
  .benefits-type-2-block__holder {
    padding: 30px 25px;
  }
  .benefits-type-2-block__cards {
    gap: 16px;
  }
  .benefits-type-2-block__card {
    padding: 23px 25px 200px;
  }
  .benefits-type-2-block__card-img {
    max-height: 210px;
  }
}
@media (max-width: 767px) {
  .benefits-type-2-block__holder {
    border-width: 4px;
  }
  .benefits-type-2-block__cards {
    gap: 10px;
  }
  .benefits-type-2-block__card {
    width: 100%;
  }
}
@media (max-width: 575px) {
  .benefits-type-2-block__holder {
    padding: 0;
    border: 0;
  }
  .benefits-type-2-block__card {
    padding: 20px 20px 150px;
  }
  .benefits-type-2-block__card-img {
    max-height: 160px;
  }
  .benefits-type-2-block__subtitle:not(:last-child) {
    margin-bottom: 12px;
  }
}/*# sourceMappingURL=block.css.map */