/*========= FUNCTIONS ==========*/
/*========= MIXINS ==========*/
.advantages-wrapper {
  display: flex;
  gap: 30px;
}
.advantages-wrapper:has(.advantages-gallery) .advantages-holder {
  width: 50%;
}
.advantages-gallery {
  width: 50%;
  display: flex;
  flex-direction: column;
}
.advantages-gallery_item {
  height: 50%;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 30px;
}
.advantages-gallery_item:last-child {
  margin-bottom: 0;
}
.advantages-gallery_item img {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}
.advantages-holder {
  width: 100%;
  background: var(--bg_secondary);
  border-radius: 10px;
  padding: 60px;
  position: relative;
  z-index: 1;
}
.advantages-suptitle {
  font-family: var(--font_r);
  font-size: clamp(10px, 0.00125 * 100vw + 9.6px, 12px);
  font-weight: 400;
  line-height: 130%;
  letter-spacing: 0%;
  font-variant-numeric-figure: lining-nums;
  font-variant-numeric-spacing: proportional-nums;
  color: var(--accent_secondary);
  margin-bottom: 15px;
}
.advantages-item {
  background: var(--bg);
  border-radius: 10px;
  padding: 20px;
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
}
.advantages-item:last-child {
  margin-bottom: 0;
}
.advantages-item .advantage-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
}
.advantages-item .advantage-icon img {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}
.advantages-item .advantage-name {
  margin-bottom: 10px;
}
.advantages-item .advantage-desc {
  color: var(--text);
  margin-bottom: 0;
}
.advantages-background {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  pointer-events: none;
}
.advantages-background img {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: contain;
     object-fit: contain;
}

@media (max-width: 1100px) {
  .advantages-wrapper {
    flex-direction: column;
    gap: 20px;
  }
  .advantages-wrapper:has(.advantages-gallery) .advantages-holder {
    width: 100%;
  }
  .advantages-holder {
    width: 100%;
    padding: 15px;
  }
  .advantages-gallery {
    width: 100%;
  }
  .advantages-gallery_item {
    height: 350px;
  }
}
@media (max-width: 992px) {
  .advantages-block {
    padding: 20px 0 !important;
  }
  .advantages-item {
    padding: 10px;
    margin-bottom: 10px;
  }
}/*# sourceMappingURL=block.css.map */