@import url('https://fonts.googleapis.com/css2?family=Caveat:wght@400..700&display=swap');


/* ======== Custom scrollbar ======== */

/* width */
::-webkit-scrollbar {
  width: 5px;
}

/* Track */
::-webkit-scrollbar-track {
  border-radius: 0px;
  background: rgb(192, 192, 192);
}

/* Handle */
::-webkit-scrollbar-thumb {
  background-color: rgb(143, 143, 143);
  border-radius: 10px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: rgb(41, 41, 41);
}


.jeePage {
  min-height: 100vh;
  width: 100vw;
  overflow-x: hidden;
}

.dflex_align_center {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.dflex_space_between {
  display: flex;
  align-items: center;
  justify-content: space-between;
}




.accordion {
  background-color: transparent;
  cursor: pointer;
  width: 100%;
  transition: 0.4s;
  padding: 1.25rem 0;
  border-bottom: 1px solid #7A7A7A;
  margin-bottom: 3rem;
}



.panel {
  display: none;
  background-color: transparent;
  overflow: hidden;
}




.subName {
  color: var(--Text-Primary, #1A1A1A);
  font-family: Inter;
  font-size: 2rem;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  letter-spacing: -0.0625rem;
  text-transform: uppercase;
}




.subHrs {
  color: var(--Layer-Brand, #E23744);
  font-family: var(--Font-Family-Display-style---Web, Inter);
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
  /* 2.25rem */
  letter-spacing: -0.0625rem;
}




.open_state_arrow.active {
  display: block;
}

.closed_state_arrow {
  display: block;
  /* Style for the closed arrow icon, e.g., rotate, color change, etc. */
}

/* Optionally, hide the arrow icons by default or control the icon display as needed */
.arrow_icon {
  display: none;
}



.bigDot {
  font-size: 2rem;
  margin-bottom: 1rem;
}


@media screen and (widht < 768px) {
  .subName {
    font-size: 1.25rem;
  }

  .subHrs {
    font-size: 1.1rem;
  }
}



/* ========= test prep ============== */


.test-prep-sticky-section {
  width: 100vw;
  height: 100%;
  max-height: 8rem;
  z-index: 88;
  left: 0;
  width: 100%;
  background: linear-gradient(90deg, rgba(255, 225, 117, 0.86) 0%, #FFB4BF 44.39%, rgba(255, 180, 191, 0.00) 100%), #FFF;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2.5rem;
}

.test-prep-sticky-section {
  position: fixed;
  bottom: 0;
  z-index: 999;
  transition: transform 0.3s ease;
}

.test-prep-sticky-section.hide-banner {
  transform: translateY(100%);
  opacity: 0;
  pointer-events: none;
}

#testprepbanner {
  transform: translateY(100%);
  transition: transform 0.5s ease, opacity 0.3s ease;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
}

.hide-banner {
  transform: translateY(100%) !important;
  opacity: 0;
  pointer-events: none;
}

.banner_text {
  display: flex;
  align-items: center;
  justify-content: start;
  gap: .75rem;
}



.base_heading {
  color: var(--Text-Primary, #1A1A1A);
  font-family: Caveat;
  font-size: 2.3rem;
  font-style: normal;
  font-weight: 700;
  line-height: 130%;
  /* 2.6rem */
  letter-spacing: -0.02rem;
}

.base_heading span {
  color: var(--Layer-Brand, #E23744);
  font-family: Caveat;
  font-size: 2.3rem;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: -0.02rem;
  margin-right: .5rem;
  margin-left: .5rem;
  position: relative;

}

.doubleCheck {
  position: absolute;
  top: 1rem;
  left: 50%;
}


.register-btn-banner {
  display: flex;
  padding: 1.25rem 4.5rem;
  justify-content: center;
  align-items: center;
  gap: 8px;
  color: var(--Text-On-Primary, #fff);
  text-decoration: none;
  font-family: Manrope;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: -0.32px;

  border-radius: 1rem;
  background: var(--Buttons-Primary, #E23744);
}

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

  .test-prep-sticky-section {
    max-height: 160px;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: space-between;
    padding: 1.25rem;
  }


  .star svg {
    width: 1rem;
  }

  .banner_text {
    display: flex;
    align-items: center;
    justify-content: start;
    gap: .75rem;
    margin-bottom: 2rem;
  }


  .base_heading {
    font-size: 1.4rem;
  }

  .base_heading span {
    font-size: 1.25rem;

  }

  .doubleCheck {
    position: absolute;
    top: 0;
    left: 50%;
  }

  .doubleCheck svg {
    width: 2rem;

  }



  .register-btn-banner {
    display: flex;
    padding: 1rem !important;
    width: calc(100vw - 2.5rem);
    justify-content: center;
    align-items: center;
    gap: 8px;
    color: var(--Text-On-Primary, #fff);
    text-decoration: none;
    font-family: Manrope;
    font-size: 12px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: -0.32px;

    border-radius: 1rem;
    background: var(--Buttons-Primary, #E23744);
  }


}