.tabs-section__glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -25%);
  width: 80%;
  height: 310px;
  background: linear-gradient(180deg, #C7D2FE 0%, #A5B4FC 30%, #818CF8 50%, #A5B4FC 70%, #C7D2FE 100%);
  filter: blur(80px);
  z-index: 0;
  pointer-events: none;
}

.block-tabs-section .nxt-wrap {
  position: relative;
  z-index: 2;
}

.tabs-section__title {
  color: var(--NXT-Midnight, #121726);
}

.tabs-section__subtitle {
  max-width: 680px;
  color: var(--NXT-Midnight, #121726);
}

.tabs-section__container {
  overflow: hidden;
  border-radius: 24px;
  background: var(--Pure-White, #FFF);
  box-shadow: 2px 2px 10px 2px #00000012;
}

.tabs-section__nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 30px 30px 32px;
  position: relative;
}

.tabs-section__nav:after {
  content: '';
  border-bottom: 1px solid #DEDCEB;
  position: absolute;
  bottom: 0;
  width: calc(100% - 120px);
}

.tabs-section__nav-btn {
  background: transparent;
  padding: 12px 32px;
  color: var(--NXT-Midnight, #121726);
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  font-family: Outfit;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 125%;
  border-radius: 52px;
  border: 1px solid var(--Purple-Stroke, #DEDCEB);
}

.tabs-section__nav-btn:hover {
  color: #FFF;
  border-color: var(--NXT-Midnight, #121726);
  border-radius: 52px;
  background: var(--NXT-Midnight, #121726);
}

.tabs-section__nav-btn.active {
  color: #FFF;
  border-color: var(--NXT-Midnight, #121726);
  border-radius: 52px;
  background: var(--NXT-Midnight, #121726);
}

.tabs-section__content-area {
  padding: 0 60px;
}

.tabs-section__pane {
  display: none;
  animation: fadeIn 0.4s ease forwards;
}

.tabs-section__pane.active {
  display: block;
}

.tabs-section__pane-inner {
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 20px 0;
}

.tabs-section__text {
  flex: 1.2;
}

.tabs-section__media {
  flex: 1;
}

.tabs-section__media img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
}

.pane-title {
  margin-bottom: 30px;
  color: var(--NXT-Midnight, #121726);
}

.pane-desc {
  margin-bottom: 80px;
  color: var(--NXT-Midnight, #121726);
}

.pane-link {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  transition: color 0.3s ease;
  color: var(--NXT-Violet, #5E45FE);
  text-align: center;
  font-family: Outfit;
  font-size: 18px;
  font-weight: 500;
  line-height: 133%;
}

.pane-link:hover {
  color: #4c37d6;
}

.pane-link .arrow {
  margin-left: 8px;
  transition: transform 0.3s ease;
}

.pane-link:hover .arrow {
  transform: translateX(4px);
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media(max-width: 1200px) {
  .tabs-section__glow {
    width: 100%;
  }
}

@media(max-width: 1024px) {
  .tabs-section__glow {
    height: 200px;
    transform: translate(-50%, -15%);
  }

  .tabs-section__nav-btn {
    font-size: 16px;
    ;
  }

  .pane-desc {
    margin-bottom: 40px;
  }
}

@media (max-width: 767px) {

  .tabs-section__nav {
    flex-wrap: wrap;
    padding: 20px;
    gap: 12px;
    justify-content: flex-start;
  }

  .tabs-section__nav-btn {
    padding: 10px 20px;
    font-size: 16px;
    text-align: center;
  }

  .tabs-section__content-area {
    padding: 30px 20px;
  }

  .tabs-section__pane-inner {
    flex-direction: column;
    gap: 30px;
  }

  .tabs-section__media {
    width: 100%;
  }

  .pane-title {
    margin-bottom: 16px;
  }

  .pane-link {
    font-size: 16px;
  }

  .tabs-section__nav:after {
    width: calc(100% - 40px);
  }

}