.primaryTextColor {
  color: #121e87 !important;
}

.secondaryTextColor {
  color: #000 !important;
}


.dark {
  color: var(--primary);
}

.light {
  color: var(--light);
}

.about-container {
  padding: 2.5rem;
  border-radius: 24px;
  border: 1px solid #182A63;
  background: rgba(38, 31, 135, 0.05);
}

.about-pointers li {
  color: #121e87;
  font-weight: 600;
}

.about-img img {
  border-radius: 20px;
}

.logo2Img {
  width: 215px !important;
}

/* eleigibilit section */

.eligibilitContentWrap {
  padding: 30px;
  height: 100%;
  background: #ffedee;
  display: flex;
  justify-content: center;
  align-items: center;
}

.eligibilitContentWrap .innerWrap {
  width: 65%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* fixed cta */

.mobileFixedCta {
  background: #262626;
  color: #fff;
  padding: 10px 0;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;

  z-index: 999999;
}

.footIcon {
  width: 25px;
  height: auto;
}

.feesImg {
  width: 45%;
  height: auto;
}

.rightBorder {
  border-right: 1px solid #fff;
}

.scholar-title {
  position: relative;
  border-radius: 12px;
  width: -webkit-max-content;
  width: -moz-max-content;
  margin: 1.5rem auto auto auto;
  width: max-content;
  border: 1px solid rgba(3, 31, 66, 0);
  background: linear-gradient(95deg, #261f87 -18.57%, #30cbe6 106.29%);
  font-size: 1.25vw;
  color: var(--light);
  padding: 1rem 2.5rem;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.scholar-title .point {
  position: absolute;
  border-radius: 100px;
  width: 18px;
  height: 18px;
  top: 50%;
  border: 1px solid var(--light);
  transform: translate(0%, -50%);
  background-color: var(--light);
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.scholar-title .point.point-1 {
  left: -8px;
}

.scholar-title .point.point-1::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 16px;
  width: 10vw;
  transform: translate(0%, -50%);
  height: 2px;
  background: linear-gradient(to right,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, 1) 100%);
}

.scholar-title .point.point-2 {
  right: -8px;
}

.scholar-title .point.point-2::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 16px;
  width: 10vw;
  transform: translate(0%, -50%);
  height: 2px;
  background: linear-gradient(to left,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, 1) 100%);
}

/* media query */

@media only screen and (max-width: 768px) {

  .about-container {
    padding: 15px;
  }

  .eligibilitContentWrap .innerWrap {
    width: 95%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  /* banner */

  section.section-banner {
    position: relative;
    background: url(../assets/images/banner/mobBanner.jpg) no-repeat center center / cover;
    overflow: hidden;
    height: 800px;
  }

  .section-banner::after {
    display: none;
  }

  .banner-plan {
    border: 1px solid #ff5054;
  }

  .banner-container {
    margin: 1rem auto auto auto;
  }

  .high-line {
    display: none;
  }

  span.apply-text {
    font-size: 13px;
  }

  .feesImg {
    width: 100%;
  }

  .scholar-title {
    font-size: 5vw;
    padding: 0.85rem 1.5rem;
  }
}