.custom-slider-container {
  display: flex;
  flex-direction: row;
  gap: 20px;
  align-items: stretch; /* ensures equal height sides */
}

.custom-slider-container .left-side,
.custom-slider-container .right-side {
  flex: 1;
  display: flex;
  position: relative;
}

.custom-slider-container .left-side {
  justify-content: flex-start;
  align-items: center;
  overflow: visible; 
  padding-left: 0; 
  flex: 0 0 45%; 
}

.custom-slider-container .left-side img {
  max-width: 500px;
  width: auto;
  height: auto;
  transition: opacity 0.5s ease;
  object-fit: contain;
  display: block;
  align-self: left;
  z-index: 9; 
}

.custom-slider-container .left-side .slider-sub-image {
    position: absolute;
    width: 100%;
    max-width: 370px;
    height: auto;
    object-fit: cover;
    z-index: 10;
}

#thumb-98 {
  bottom: 10px;
  left: -60px;
}

#thumb-96 {
  top: 20px;
  right: 40px;
}

#thumb-94 {
  bottom: 10px;
  right: 40px;
}

#thumb-103 {
  bottom: 10px;
  right: 60px;
}

#thumb-100 {
  top: 20px;
  left: -60px;
}

#thumb-109 {
  top: 30px;
  left: -40px;
}

#thumb-113 {
  bottom: 30px;
  right: 30px;
} 

#thumb-116 {
  bottom: 30px;
  left: -40px;
}

#thumb-119 {
  top: 30px;
  left: -40px;
}

#thumb-125 {
  bottom: 30px;
  right: 80px;
}

.custom-slider-container .right-side {
  /* justify-content: center; */
  align-items: center;
}

.custom-slider-container .slider-content-wrapper {
  width: 100%;
  max-width: 550px;
}

.custom-slider-container .heading {
  font-family: "Metropolis-SemiBold";
  font-size: 40px;
  line-height: 135%;
  /* letter-spacing: 1%; */
  color: #1F1F24;
  margin-bottom: 16px;
}

.custom-slider-container .subheading {
  font-family: "Metropolis-Regular";
  font-size: 20px;
  line-height: 135%;
  /* letter-spacing: 1%; */
  color: #5C5C61;
  margin-bottom: 24px;
}

.custom-slider-container .line {
  display: flex;
  align-items: center;        /* center number & text vertically */
  cursor: pointer;
  transition: color 0.3s;
  font-family: "Metropolis-Regular";
  font-size: 20px;
  line-height: 135%;
  /* letter-spacing: 1%; */
  color: #5C5C61;
  margin-bottom: 24px;
}

.custom-slider-container .line.active {
  font-family: "Metropolis-SemiBold";
  color: #1F1F24;
}

.custom-slider-container .line .line-number {
  flex: 0 0 35px;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #CCE3DE; 
  color: #006950;
  font-size: 16px;
  margin-right: 23px;
}

.custom-slider-container .line.active .line-number {
  background-color: #004C41; 
  color: #ffffff;
}

.custom-slider-container .line .line-text {
  flex: 1;
  word-break: break-word;
}

.custom-slider-container .line .coming-soon {
  background-color: #14AC2A;
  padding: 4px 11px;
  display: inline-block;
  color: #ffffff;
  font-family: "Metropolis-SemiBold";
  border-radius: 16px;
  text-transform: capitalize;
  margin-left: -2px;
}

.add-coming-soon::after {
  content: '';
  display: inline-block;
  width: 128px;   
  height: 27px;
  background-image: url('../images/coming-soon.png');
  background-size: contain;
  background-repeat: no-repeat;
  margin-left: 5px; 
  vertical-align: middle;
}

/* .custom-slider-container .line.active .line-text {
  background-color: #004C41; 
  color: #ffffff;
} */

#slider-balances-section-slider .right-side, #slider-shop-section-slider .right-side {
  order: 1;
}

#slider-balances-section-slider .left-side, #slider-shop-section-slider .left-side {
  order: 2;
  flex: 0 0 50%;
}

#slider-balances-section-slider .slider-content-wrapper {
  width: 100%;
  max-width: 500px;
}

#slider-balances-section-slider .left-side img {
  /* max-width: 534px; */
  /* align-self: right; */
}

#slider-resources-section-slider .line .line-number {
    background-color: #ffffff;
}

#slider-resources-section-slider .line.active .line-number {
  background-color: #004C41; 
  color: #ffffff;
}

#slider-resources-section-slider .slider-content-wrapper {
    width: 100%;
    max-width: 500px;
}

.custom-slider-container .arrows {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 1;
}

.custom-slider-container .arrow {
  font-size: 24px;
  cursor: pointer;
  user-select: none;
}

.arrow-icon {
  width: 24px;
  height: 24px;
}

.arrow-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

@media (max-width: 768px) {

  h1.fusion-title-heading.title-heading-left {
    font-size: 32px !important;
  }

  .fusion-text.fusion-text-1.header-text {
    margin-top: 5px;
  }

  .fusion-text.fusion-text-1.header-text p {
    font-size: 16px !important;
    line-height: 120%;
    margin-bottom: 16px;
  }

  .fusion-title.title.heading-two h2.fusion-title-heading.title-heading-center {
    font-size: 32px !important;
  }

  .fusion-text.fusion-text-2.heading-two-txt p {
    font-size: 16px;
    line-height: 120%;
    margin-top: 10px;
  }

  .custom-slider-container {
    flex-direction: column;
  }

  .custom-slider-container .left-side,
  .custom-slider-container .right-side {
    flex: none;
    width: 100%;
  }

  .custom-slider-container .right-side {
    order: 2;
  }

 .custom-slider-container .left-side {
    order: 1;
  }

  #slider-balances-section-slider .right-side, #slider-shop-section-slider .right-side {
    order: 2;
  }

  #slider-balances-section-slider .left-side, #slider-shop-section-slider .left-side {
    order: 1;
  }

  .custom-slider-container .arrows {
    order: 3;
  }

  .custom-slider-container .left-side img {
    max-width: 100%;
  }

  .custom-slider-container .heading {
    font-size: 24px;
  }

  .custom-slider-container .subheading {
    font-size: 16px;
  }

  .custom-slider-container .line {
    font-size: 16px;
    margin-bottom: 24px;
    flex-direction: row;
  }
  
  .custom-slider-container .line .line-number {
    flex: 0 0 35px;
    width: 35px;
    height: 35px;
    font-size: 16px;
    margin-right: 23px;
  }

  .custom-slider-container .line span.line-text {
    max-width: 250px;
  }

  .custom-slider-container .arrows {
    position: static;
    transform: none;
    flex-direction: row;
    justify-content: center;
    margin-top: 0;
    margin-bottom: 16px;
  }

  .custom-slider-container .arrow {
    font-size: 30px;
    margin: 0px;
    transform: rotate(-90deg);
  }

  .custom-slider-container .left-side .slider-sub-image {
    max-width: 266px;
  }

  #thumb-98 {
    bottom: 10px;
    left: -25px;
  }

  #thumb-100 {
    top: 20px;
    left: -28px;  
  }

  #thumb-109 {
    top: 20px;
    left: -22px;
  }

  #thumb-119 {
    top: 20px;
    left: -20px;
  }

  #thumb-125 {
    bottom: 20px;
    right: -20px;
  }

  #thumb-113 {
    bottom: 10px;
    right: -20px;
  }

  #thumb-116 {
    bottom: 10px;
    left: -20px;
  }

  #thumb-103 {
    bottom: 10px;
    right: -25px;
  }

  #thumb-96 {
    top: 20px;
    right: -15px;
  }

  #thumb-94 {
    bottom: 10px;
    right: -15px;
  }

}
