.tabbed-section {
  background-color: #DBFF26;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
  padding: 6.25rem 0 7.5rem;
  overflow-y: hidden;
}
@media only screen and (max-width: 1199px) {
  .tabbed-section {
    overflow-y: hidden;
  }
}
@media only screen and (max-width: 575px) {
  .tabbed-section {
    padding: 3.75rem 0.625rem;
  }
}
.tabbed-section ::-webkit-scrollbar {
  width: 0;
  height: 0;
}
.tabbed-section ::-webkit-scrollbar-track {
  background: #ffffff;
}
.tabbed-section ::-webkit-scrollbar-thumb {
  background: #DBFF26;
  border-radius: 2px;
}
.tabbed-section .main-heading {
  color: #000000;
}
@media only screen and (max-width: 767px) {
  .tabbed-section .main-heading {
    max-width: 20rem;
    margin: 0 auto;
  }
}
.tabbed-section .tab-container {
  height: 540px;
  background-color: #ffffff;
  border-radius: 1rem;
  border: 1px solid #000000;
  padding: 0;
  overflow: hidden;
}
@media only screen and (max-width: 1199px) {
  .tabbed-section .tab-container {
    height: 800px;
  }
}
.tabbed-section .tabs {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  border-bottom: 1px solid #e5e5e5;
  width: 100%;
  overflow-x: scroll;
  background-color: #000000;
}
@media only screen and (min-width: 991px) {
  .tabbed-section .tabs {
    justify-content: space-around;
  }
}
.tabbed-section .tabs div {
  height: 100%;
  padding: 1.75rem 2.25rem;
  cursor: pointer;
}
.tabbed-section .tabs div h6 {
  white-space: nowrap;
  margin: 0;
  color: #ffffff;
}
.tabbed-section .tabs div.active-tab {
  border-bottom: 2px solid #DBFF26;
}
.tabbed-section .tabs div.active-tab h6 {
  font-weight: 700;
  color: #DBFF26;
}
.tabbed-section .tab-info {
  position: relative;
  height: 84%;
}
.tabbed-section .tab-info .tab-content {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 66px;
  background: #ffffff;
  pointer-events: none;
  opacity: 0;
  transition: all 0.3s ease-in-out;
  will-change: opacity;
  padding: 30px 30px 30px 60px;
}
@media only screen and (max-width: 1199px) {
  .tabbed-section .tab-info .tab-content {
    flex-direction: column;
    padding: 30px;
  }
}
.tabbed-section .tab-info .tab-content.active-tab-content {
  opacity: 1;
  pointer-events: auto;
}
.tabbed-section .tab-info .tab-content .tab-right img {
  max-height: 24.0625rem;
  border-radius: 12px;
  max-width: 100%;
  object-fit: cover;
  object-position: center;
}
.tabbed-section .tab-info .tab-content .tab-right,
.tabbed-section .tab-info .tab-content .tab-left {
  width: 50%;
}
@media only screen and (max-width: 1199px) {
  .tabbed-section .tab-info .tab-content .tab-right,
  .tabbed-section .tab-info .tab-content .tab-left {
    width: unset;
  }
}
.tabbed-section .tab-info .tab-content h2 {
  color: #000000;
}

/*# sourceMappingURL=s-tabbed_section.css.map */
