.year_wise_hero_section {
  margin-top: 4rem;
  background: linear-gradient(0deg, rgba(255, 184, 28, 0.00) 49.88%, rgba(255, 231, 11, 0.10) 100%);

}

.year_wise_hero_para {
  width: 70%;
}
.hero_section_heading_fix_width{
  max-width: calc(1440px - 20rem);
}

.cards-wrapper {
  position: relative;
  width: 280px;

  height: 3rem;
  left: 50%;
  transform: translate(-50%);
  transition: .3s all ease-in-out;
}

.cards-wrapper::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 10rem;
  z-index: 10;
  pointer-events: none;
}

.cards-container {
  display: flex;
  align-items: center;
  overflow-x: auto;
  scroll-behavior: smooth;
  gap: 1rem;
  padding: 1rem;
  padding: 0 50%;
  -webkit-overflow-scrolling: touch;
  transition: all .3s ease-in-out;

}

.cards-container::-webkit-scrollbar {
  display: none;
}




.arrows {
  width: 1.5rem;
  height: 1.5rem;
  flex-shrink: 0;
  border-radius: 12rem;
  border: 2px solid #000000e0;
  background-color: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 15;
  cursor: pointer;
}

.arrows img {
  width: .35rem;
}

.arrow-right {
  position: absolute;
  right: -40px;
}

.arrow-left {
  position: absolute;
  left: -40px;
  transform: rotate(-180deg);
}


.arrows.disabled {
  opacity: 0.5;
  pointer-events: none;
  cursor: default;
}




.year_text {
  flex: 0 0 auto;
  padding: 0.5rem 1rem;
  border-radius: 5px;
  cursor: pointer;
  scroll-snap-align: center;
  transition: all 0.3s ease;

  color: var(--Neutral-Granite, #7A7A7A);

  /* Heading H6- 20px/Medium */
  font-family: Inter;
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: -0.0125rem;

  transition: .3s all ease-in-out;


}

.year_text_active {
  color: white;

  color: var(--Neutral-Black, #1A1A1A);

  /* Heading H4- 28px/Bold */
  font-family: Inter;
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: -0.0175rem;
}




.year_wise_dropdown_containers {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
}




@media screen and (width <=768px) {

  .cards-wrapper {
    position: fixed;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 99;
    border-right: 1px solid var(--Neutral-Stroke, #E9EBEC);

    border-radius: 50px;

    width: 150px;
    height: 3rem;


    background-color: white;


    border-radius: 1.5rem;
    border: 1px solid var(--Neutral-Stroke, #E9EBEC);
    background: rgba(255, 255, 255, 0.20);
    box-shadow: 0px 2px 12px 0px rgba(0, 0, 0, 0.12);
    backdrop-filter: blur(32px);

  }

  .arrows {
    border-radius: unset;
    height: 100%;
    width: 2rem;
  }

  .arrows img {
    width: .5rem;
  }

  .arrow-right {
    position: absolute;
    right: 0px;
    top: 50%;
    transform: translateY(-50%);
    border-top-right-radius: 1rem;
    border-bottom-right-radius: 1rem;
    border-top-left-radius: 0rem;
    border-bottom-left-radius: 0rem;
    border: 1px solid #E9EBEC;


  }

  .arrow-left {
    position: absolute;
    left: 0px;
    top: 50%;
    border-top-right-radius: 1rem;
    border-bottom-right-radius: 1rem;
    border-top-left-radius: 0rem;
    border-bottom-left-radius: 0rem;
    transform: translateY(-50%) rotate(-180deg);
    border: 1px solid #E9EBEC;
  }



  .year_wise_dropdown_containers {
  display: flex;
  align-items: center;
  justify-content:flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
  width: 100vw;
  overflow-x: auto;
  padding-left: 1rem;

}


.year_wise_dropdown_containers::-webkit-scrollbar {
  display: none;        
}



}