.sbi-home-carousel {
  display: flex;
  align-content: center;
  justify-content: space-between;
  width: 100%;
  min-height: 250px;
}

.sbi-home-carousel-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 32px;
  max-width: 550px;
  min-height: 250px;
}

.sbi-home-carousel-item {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.sbi-home-carousel-item-header {
  display: flex;
}

.sbi-home-carousel-item-header-left {
  width: 50px;
  min-width: 50px;
  max-width: 50px;
  font-family: "Atyp Text", Sans-Serif;
  color: #f5f5f5;
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: 1em;
}

.sbi-home-carousel-item-header-right {
    font-family: "Atyp Display", Sans-Serif;
  color: #F5F5F5;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 1em;
  cursor: pointer;
  transition: color 0.3s;
}

.sbi-home-carousel-item-header-right:hover {
  color: #E52330;
}

.sbi-home-carousel-item.active .sbi-home-carousel-item-header-left {
    color: #E52330;
}

.sbi-home-carousel-item-content {
  display: flex;
  max-height: 0;
  opacity: 0;
  transition: 0.35s ease;
  overflow: hidden;
}

.active .sbi-home-carousel-item-content {
  max-height: 180px;
  opacity: 1;
  transition: 0.35s ease;
}

.sbi-home-carousel-item-content-left {
  width: 50px;
  min-width: 50px;
  max-width: 50px;
  padding-left: 6px;
}

.sbi-home-carousel-item-content-right {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5em;
  color: #DBDBDB;
}

.sbi-home-carousel-item-progress {
  height: 100%;
  width: 2px;
  background: #b2b2b2;
  border-radius: 16px;
}

.sbi-home-carousel-item-progress-bar {
  height: 0%;
  width: 100%;
  background: #E52330;
  border-radius: 16px;
}

.sbi-home-carousel-right {
  /* min-height: 200px; */
  display: flex;
  align-items: center;
  max-width: 800px;
  width: 100%;
}


@media (max-width: 768px) {
    .active .sbi-home-carousel-item-content {
        max-height: 240px;
        opacity: 1;
      }
}