section.lumigo-section.tabs-vertical-section {
  overflow: hidden;
}

section.tabs-vertical-section .content-container {
  max-width: 1134px;
  margin: 0 auto;
  padding-bottom: 160px;
  /*padding-top: 160px;*/
}

section.tabs-vertical-section h2 {
  font-size: 45px;
  font-weight: 500;
  line-height: 56px;
  letter-spacing: 0.01rem;
  background: linear-gradient(180deg, #ffffff 0%, #c9d3ee 100%);
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  margin: 0;
}

section.tabs-vertical-section .tab-title {
  margin: 0;
  font-size: 20px;
  font-weight: 600;
  line-height: 22px;
  letter-spacing: 0.02rem;
  background: linear-gradient(180deg, #ffffff 0%, #c9d3ee 100%);
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  padding-top: 25px;
  padding-bottom: 12px;
}

section.tabs-vertical-section .vertical-tabs-labels {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
section.tabs-vertical-section .label-group {
  display: flex;
  flex-direction: column;
  border-top: solid 2px #ffffff4d;
  position: relative;
  cursor: pointer;
}

.tabs-vertical-section .label-group .tab-text {
  font-size: 18px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: -0.01rem;
  color: #96a0bc;
  display: grid;
  transition: grid-template-rows 0.3s linear, opacity 0.3s linear;
  padding-bottom: 38px;
}
.tabs-vertical-section .label-group .tab-text > div {
  overflow: hidden;
}
.tabs-vertical-section .label-group:last-child .tab-text {
  padding-bottom: 0;
}


section.tabs-vertical-section .image-container {
  max-width: 749px;
  height: auto;
}

section.tabs-vertical-section .image-container img {
  width: auto;
  height: 745px;
}
section.tabs-vertical-section .label-group::before {
  content: "";
  width: 0;
  height: 2px;
  background-color: #fff;
  transition: width 0s linear;
  position: absolute;
  top: -2px;
  left: 0;
}
section.tabs-vertical-section .label-group.active::before {
  transition: width 10s linear;
  width: 100%;
}
/*TABS Func*/

.tabs-vertical-section input[type="radio"].tab-selector-input {
  display: none;
}

.tabset-v {
  display: grid;
  grid-template-columns: 550px 1fr;
  gap: 80px;
}

.tabs-vertical-section .tabs-v {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: clamp(745px, 40vh, 800px);
}

.tabs-vertical-section .tab-content {
  align-items: start;
  justify-content: space-between;
  column-gap: 35px;
  row-gap: 30px;
  transition: opacity 0.5s;
  max-height: 0;
}

.tabs-vertical-section .tab-content {
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
  width: 100%;
}

.tabs-vertical-section .contents {
  position: relative;
}

@media screen and (max-width: 1100px) {
  section.tabs-vertical-section .content-container {
    padding-inline: 26px;
    padding-bottom: 100px;
  }

  .tabset-v {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  section.tabs-vertical-section h2 {
    margin-bottom: 48px;
  }

  section.tabs-vertical-section .image-container {
    margin: 0 auto;
  }
  .tabs-vertical-section .tab-content{
    max-height: initial;
    display: none;
  }
  .tabs-vertical-section .tab-content.active{
   display: block;
  }
}

@media screen and (max-width: 980px) {
  section.tabs-vertical-section h2 {
    font-size: 30px;
    line-height: 33px;
    margin-bottom: 24px;
  }

  section.tabs-vertical-section .tab-title {
    font-size: 18px;
    line-height: 20px;
  }

  section.tabs-vertical-section .tab-text {
    font-size: 14px;
    line-height: 18px;
  }
  .tabs-vertical-section .tabs-v {
    min-height: initial;
    gap: 40px;
  }
  section.tabs-vertical-section .image-container img {
    max-width: 100%;
    height: auto;
  }
  .tabs-vertical-section .label-group .tab-text{
    font-size: 14px;
    line-height: 130%;
  }
  section.lumigo-section.tabs-vertical-section .cta-single span{
    padding: 12px 16px;
  }
}
