/* stylelint-disable */
.section-tabs {
  overflow: hidden;
  position: relative;
}
.section-tabs .container {
  z-index: 5;
}
.section-tabs__inner {
  position: relative;
}
.section-tabs .tabs-nav {
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  align-items: center;
  padding: 4px;
  border-radius: 8px;
  border: 1px solid #505050;
  background: #262626;
}
.section-tabs .tabs-nav__btn {
  background: transparent;
  border-radius: 5px;
  transition: all 0.3s;
}
.section-tabs .tabs-nav__btn span {
  min-width: 151.5px;
  padding: 12px;
  pointer-events: none;
  font-family: var(--font-family);
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
  color: rgba(163, 163, 163, 0.64);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: color 0.3s, opacity 0.3s;
  white-space: nowrap;
}
.section-tabs .tabs-nav__btn:hover:not(.active) span {
  color: var(--cl-e);
}
.section-tabs .tabs-nav__btn.active {
  background-color: var(--bg-f);
}
.section-tabs .tabs-nav__btn.active span {
  color: var(--cl-a);
}
.section-tabs .tabs-nav {
  position: absolute;
  z-index: 5;
}
.section-tabs .tab-card {
  min-height: clamp(620px, 42.969vw, 825px);
  position: relative;
  padding: 180px clamp(16px, 4.167vw, 80px) clamp(24px, 4.167vw, 80px);
  display: flex;
  align-items: flex-end;
}
.section-tabs .tab-card__label {
  position: absolute;
  z-index: 5;
  left: clamp(16px, 4.167vw, 80px);
  top: 80px;
  padding: 16px 10px;
  border-radius: 36px;
  background: rgba(255, 255, 255, 0.24);
  -webkit-backdrop-filter: blur(26.1000003815px);
          backdrop-filter: blur(26.1000003815px);
}
.section-tabs .tab-card__image {
  position: absolute;
  inset: 0;
  display: flex;
  overflow: hidden;
}
.section-tabs .tab-card__image::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000 100%);
  transition: 0.3s ease;
}
.section-tabs .tab-card__image img, .section-tabs .tab-card__image svg, .section-tabs .tab-card__image picture {
  width: 100%;
  height: 100%;
}
.section-tabs .tab-card__editor {
  max-width: 1024px;
  width: 100%;
  gap: clamp(12px, 2.344vw, 24px);
}
.section-tabs .tab-card__editor .row {
  margin-top: clamp(12px, 3.516vw, 36px);
}
@media (min-width: 768px) {
  .section-tabs {
    padding: clamp(36px, 4.167vw, 80px) 0;
  }
  .section-tabs .tab-card__image {
    border-radius: 12px;
  }
}
@media (min-width: 1025px) {
  .section-tabs {
    background-color: var(--bg-d);
  }
  .section-tabs .tabs-nav {
    top: 80px;
    right: 80px;
  }
  .section-tabs .tab-card__label {
    top: 80px;
  }
}
@media (max-width: 1024px) {
  .section-tabs .tabs-nav {
    top: 100px;
    left: clamp(16px, 4.167vw, 80px);
  }
  .section-tabs .tab-card {
    padding-top: 250px;
  }
  .section-tabs .tab-card__label {
    top: 24px;
  }
}
@media (max-width: 767px) {
  .section-tabs .container {
    padding: 0;
  }
  .section-tabs .tabs-nav {
    overflow-x: auto;
    width: calc(100vw - 12px);
    padding-right: 8px;
  }
  .section-tabs .tab-card__editor .row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
}
/*# sourceMappingURL=section-tabs.css.map */