/* common container for all pages */
/* Color variables */
:root {
  --primary-color: #1bb1e7;
  --white-color: #ffffff;
  --heading-color: #212121;
  --paragraph-color: #575756;
  --bg-blue-color: #f5fdff;
  --background-color: #f8f9fa;
  --hover-color: #2980b9;
  --font-size-base: 16px;
  /* Base font size for rem calculations */
}

.bg-light-blue {
  background: linear-gradient(180deg, #feffff 0%, #f4fdff 100%);
}

.bg-white {
  background: #ffffff;
}

.bg-blue {
  background: var(--bg-blue-color);
}

.bg-mild-blue {
  background-color: #F4FDFF;
}

/* Layout containers */
.main-section {
  padding: 5.875rem 0px 2.875rem 0px;
  /* 75px 60px converted to rem */
  max-width: 123.75rem;
  /* 1980px */
  width: 100%;
  margin: 0 auto;
  box-sizing: border-box;
}

.container {
  max-width: 90rem;
  /* 1440px */
  margin: 0 auto;
  width: 100%;
  padding: 0 5rem;
}

/* Typography */
.page-heading h1 {
  font-family: "Poppins";
  font-weight: 600;
  font-size: 3.5rem;
  color: var(--heading-color);
  margin: 0 0;
  line-height: 1.4;
  margin-top: 36px;
  margin-bottom: 30px;
}

.page-subheading h3 {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: 3rem;
  /* 48px converted to rem */
  color: var(--heading-color);
  margin: 0 0;
  /* 24px */
  line-height: 1.5;
}

.page-h2-heading h3 {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: 2.2rem;
  /* 48px converted to rem */
  color: var(--heading-color);
  margin: 0 0;
  /* 24px */
  line-height: 1.5;
}

.page-subheading-para p {
  font-family: 'Inter';
  font-weight: 400;
  font-size: 1.5rem;
  line-height: 1.5;
  color: var(--black-2, #575756);
  margin: 1.5rem 0;
}

.demo-button {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 2.5rem;
}

.demo-button a {
  color: var(--white-color) !important;
  font-family: "Poppins";
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 600;
  line-height: 1.3;
  background-color: var(--primary-color);
  padding: 1rem 3rem !important;
  border-radius: 0.5rem;
  text-decoration: none;
  display: block;
  max-width: fit-content;
  width: 100%;
}

.center {
  text-align: center;
}

.left {
  text-align: left;
}

.right {
  text-align: right;
}

@media (max-width: 1024px) {
  .main-section {
    padding: 4.575rem 0px;
  }
}

@media (max-width: 768px) {
  .main-section {
    padding: 4.875rem 0px;
    /* 62px 28px converted to rem */
  }

  .container {
    padding: 0px 1.763rem;
  }

  .page-heading h1 {
    font-size: 2.5rem;
    line-height: 1.3;
    /* 36px converted to rem */
  }

  .page-subheading h3,
  .page-h2-heading h3 {
    font-size: 2.2rem;
    /* 36px converted to rem */
  }

  .page-subheading-para p {
    color: var(--black-2, #575756);
    font-family: "Inter";
    font-size: 0.9rem;
    font-style: normal;
    font-weight: 400;
    margin: 0.8rem 0;
  }

}

@media (max-width: 480px) {
  .main-section {
    padding: 5.275rem 0px 2.45rem 0px;
  }

  .page-heading h1 {
    font-size: 1.75rem;
    margin-top: 25px;
    margin-bottom: 10px;
    /* 28px converted to rem */
  }

  .page-subheading h3,
  .page-h2-heading h3 {
    font-size: 1.6rem;
    /* 28px converted to rem */
  }
}

/* btn code start */

.btn-primary {
  color: var(--white-color) !important;
  font-family: "Poppins";
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 600;
  line-height: 1.3;
  background-color: var(--primary-color);
  padding: 1rem 3rem;
  border-radius: 0.5rem;
  text-decoration: none;
  display: block;
  max-width: fit-content;
  width: 100%;
  margin: 4rem auto 1rem auto;
}

.btn-primary:hover {
  color: var(--white-color);
}

@media (max-width: 600px) {
  .btn-primary {
    font-size: 1rem;
    /* 16px converted to rem */
    margin: 1.5rem auto 1rem auto;
  }
}

/* btn code end */

/* youtube video btn code start */

/* Start of Selection */
.youtube-video-btn {
  color: #212121;
  font-family: "Inter";
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

@media screen and (max-width: 1200px) {
  .youtube-video-btn {
    font-size: 20px;
  }
}

@media screen and (max-width: 992px) {
  .youtube-video-btn {
    font-size: 18px;
  }
}

/* common css end */

/* hero section start */

.hero-image-grid-section-smart-class {
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: center;
  margin-top: 2.5rem;
  /* 40px converted to rem */
}

@media (max-width: 992px) {
  .hero-image-grid-section-smart-class {
    flex-direction: column;
    gap: 1.5rem;
  }

  .hero-image-grid-section-smart-class {
    margin-top: 2rem;
  }
}

@media (max-width: 768px) {

  .hero-image-grid-section-smart-class {
    margin-top: 1.5rem;
  }
}

@media (max-width: 600px) {
  .hero-image-grid-section-smart-class {
    gap: 0.9rem;
  }
}


.hero-text-section {
  padding: 5rem 2rem 2rem 2rem;
  border-radius: 11px;
  margin-top: -4.5rem;
}

.hero-text-section h3 {
  font-size: 2rem;
  font-weight: 500;
  color: var(--primary-color);
  font-family: "Poppins", sans-serif;
  line-height: 1.4;
}

.hero-text-section p {
  color: var(--heading-color);
  font-family: "Open Sans";
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1.4;
}

@media (max-width: 992px) {
  .hero-text-section {
    padding: 1.5rem;
  }

  .hero-text-section h3 {
    font-size: 1.5rem;
  }

  .hero-text-section p {
    font-size: 1.25rem;
  }
}

@media (max-width: 600px) {
  .hero-text-section {
    padding: 1rem;
  }

  .hero-text-section h3 {
    font-size: 1.2rem;
    /* 18px converted to rem */
  }

  .hero-text-section p {
    font-size: 1rem;
    /* 16px converted to rem */
  }

  .hero-text-section {
    margin-top: 1.5rem;
  }
}

/* youtube video container start */

.digital-learning {
  margin-top: 48px;
  background: linear-gradient(180deg, #FFF 0%, #F2FCFF 100%);
  padding-bottom: 80px;
}

.digital-learning-container {
  position: relative;
}

.ball-size {
  width: 31px;
  height: 31px;
  border-radius: 50%;
}

.light-yellow-ball {
  background: linear-gradient(180deg, #EFC48F 0%, #FAD264 100%);
  box-shadow: 0px 3px 20px 0px #0000000D;
  position: absolute;
  right: 3%;
  top: 1.5%;
  animation: Lyellow 2s ease-in-out infinite;
}

@keyframes Lyellow {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(30px);
  }
}

.light-blue-ball {
  background: linear-gradient(1f80deg, #1BB1E7 0%, #77DAFE 100%);
  box-shadow: 0px 3px 20px 0px #0000000D;
  position: absolute;
  top: -12%;
  right: 13%;
  animation: bounceBlue 2s ease-in-out infinite;
}

@keyframes bounceBlue {

  0%,
  100% {
    transform: translateX(0);
  }

  50% {
    transform: translateX(30px);
  }
}

.dark-yellow-ball {
  background: linear-gradient(180deg, #E3AC68 0%, #F2C883 100%);
  box-shadow: 0px 3px 20px 0px #0000000D;
  position: absolute;
  top: 40%;
  left: 16%;
  animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(30px);
  }
}

.yellow-circle-line {
  display: flex;
  align-items: center;
  gap: 10px;
  position: absolute;
  top: -6%;
  left: 35%;
}

.yellow-circle {
  width: 6px;
  height: 6px;
  background-color: #FCB040;
  border-radius: 50%;
}

.blue-circle-line {
  display: flex;
  align-items: center;
  gap: 10px;
  position: absolute;
  bottom: -7%;
  left: 35%;
}

.blue-circle {
  width: 6px;
  height: 6px;
  background-color: #1BB1E7;
  border-radius: 50%;
}

.digital-learning-heading>h1 {
  color: #212121;
  text-align: center;
  font-family: Poppins;
  font-size: 60px;
  font-style: normal;
  font-weight: 600;
  line-height: 96px;
  letter-spacing: 0.6px;
}

.digital-learning-heading>h1>span {
  font-size: 64px;
}

.digital-learning-content>p {
  color: #575756;
  text-align: center;
  font-family: Inter;
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  margin: 22px auto;
}

.digital-learning-subheading {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}

.digital-learning-subheading>p {
  color: #212121;
  font-family: Poppins;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  width: fit-content;
  padding: 18px 40px;
  margin: 0;
  border-radius: 16px;
  border: 1px solid #000000;
  background: #FDDAAF;
  box-shadow: 8px 8px 0px 0px #333333;
  margin: auto 16px;
  display: flex;
  justify-content: center;
}

.digital-learning-video-container {
  position: relative;
}

.digital-learning-video {
  border-radius: 30px;
  border: none;
  display: flex;
  width: 100%;
  height: 100%;
  margin: auto;
  overflow: hidden;
  justify-content: center;
  margin-top: 60px;
}

.digital-learning-video>iframe {
  aspect-ratio: 16 / 9;
  -moz-border-radius: 30px;
  border-radius: 30px;
  overflow: hidden;
  height: 100%;
  width: 70%;
  margin: auto;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  backface-visibility: hidden;
}

@media screen and (max-width: 1350px) {
  .dark-yellow-ball {
    top: 40%;
    left: 9%;
  }

  .light-blue-ball {
    right: 8%;
  }
}

@media screen and (max-width: 600px) {
  .container {
    padding: 0px 1.2rem;
  }
}

/* youtube video container end */


/*********************************************** hero section end **********************************************/

/*********************************************** why should enable iprep for students start **********************************************/

.smart-class-usage-school {
  padding: 2.875rem 0px 2.875rem 0px;
}

.smart-class-usage-main-card {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin: 2rem auto 1.2rem auto;
}

.smart-class-usage-card {
  display: flex;
  width: 32%;
  flex-direction: column;
  border-radius: 12px;
  border: 1px solid #EFEFEF;
  padding: 1.5rem;
}

.heading-smart-class-usage {
  display: flex;
  flex-direction: row;
  align-items: center;
}

.heading-smart-class-usage h3 {
  color: var(--heading-color);
  font-family: 'Poppins';
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 600;
  line-height: 1.5;
}

.description-smart-class-usage p {
  color: #212121;
  font-family: 'Inter';
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.4;
  margin: 1rem auto;
}

.smart-class-usage-para {
  background-color: #F4FDFF;
  padding: 1.5rem;
  border-radius: 12px;
  margin: 4rem auto 1.5rem auto;
  width: 80%;
}

.smart-class-usage-para p {
  font-family: 'Open Sans';
  font-weight: 600;
  font-size: 1.5rem;
  line-height: 1.5;
  color: var(--heading-color);
  text-align: center;
  margin: 0px;
  padding: 0px 0.5rem;
}

@media screen and (max-width: 992px) {
  .smart-class-usage-card {
    width: 45%;
  }
}

@media screen and (max-width: 600px) {
  .smart-class-usage-card {
    width: 100%;
  }

  .heading-smart-class-usage h3 {
    font-size: 1.25rem;
  }

  .description-smart-class-usage p {
    font-size: 1rem;
  }

  .heading-smart-class-usage svg {
    height: 50px;
    padding-right: 20px;
  }

  .smart-class-usage-para {
    background-color: #F4FDFF;
    padding: 1rem;
    border-radius: 12px;
    margin: 0.5rem auto;
  }

  .smart-class-usage-para p {
    font-size: 0.9rem;
  }

  .smart-class-usage-para {
    background-color: #F4FDFF;
    padding: 1rem;
    border-radius: 12px;
    margin: 0.5rem auto;
  }

  .smart-class-usage-para p {
    font-size: 0.9rem;
  }
}

/*********************************************** why should enable iprep for students end **********************************************/

/*********************************************** core of iprep section start **********************************************/

.core-iprep-section-main {
  padding: 1.875rem 0px 2.875rem 0px;
}

.core-iprep-number span svg {
  height: 56px;
}

.core-iprep-item {
  display: flex;
  flex-direction: column;
  max-width: 40%;
  margin-bottom: 30px;
}

.core-iprep-number {
  margin-bottom: -15px;
  z-index: 1;
}

.core-iprep-text {
  background-color: #F2FCFF;
  border-radius: 16px 0px 0px 0px;
  fill: #F4FDFF;
  filter: drop-shadow(0px 4px 2px rgba(0, 0, 0, 0.25));
  box-sizing: border-box;
  height: 78%;
  padding: 25px 20px 20px;
  border-bottom: 14px solid #1BB1E7;
}

.core-iprep-section {
  padding-top: 4rem;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}


.core-iprep-container-img {
  position: absolute;
  width: 276.035px;
  height: 557px;
}

.core-iprep-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;

}

.core-iprep-text p {
  color: var(--heading-color);
  font-family: 'Inter';
  font-size: 1.5rem;
  margin: 0px;
  font-weight: 400;
  line-height: 1.4;
}

.yellow-core-iprep {
  background-color: #FFFBEC;
  border-bottom: 14px solid #FCB040;
}

.l-30 {
  padding-left: 30px;
}

.b-r-16 {
  border-radius: 0px 16px 0px 0px;
}

@media screen and (max-width: 1200px) {
  .core-iprep-item {
    max-width: 36%;
  }

  .core-iprep-text p {
    font-size: 1.2rem;
  }


}

@media screen and (max-width: 992px) {
  .core-iprep-section {
    padding-top: 2rem;
    flex-direction: column-reverse;
  }

  .core-iprep-container-img {
    position: inherit;
  }

  .core-iprep-content {
    flex-direction: column;
    margin-top: 1rem;
  }

  .smart-class-usage-para {
    width: 88%;
  }

  .core-iprep-item {
    max-width: 100%;
  }

  .core-iprep-text {
    border-radius: 16px 16px 0px 0px;
  }

  .l-30 {
    padding-left: 20px;
  }

  .b-r-16 {
    border-radius: 16px 16px 0px 0px;
  }

  .core-iprep-number span svg {
    height: 46px;
  }

  .core-iprep-text p {
    font-size: 1.2rem;
  }

}

@media screen and (max-width: 600px) {
  .core-iprep-section-main {
    padding: 0rem 0px 2.875rem 0px;
  }

  .core-iprep-number span svg {
    height: 36px;
  }

  .core-iprep-text p {
    font-size: 1rem;
  }
}

/*********************************************** core of iprep section end **********************************************/

/*********************************************** comprenhension section start **********************************************/

.iprep-solution-comprehensive-section {
  display: flex;
  flex-wrap: wrap;
  margin: 2rem auto;
  gap: 30px;
}

.comprehensive-container:last-child {
  width: 99%;
}

.comprehensive-container {
  display: flex;
  gap: 0.8rem;
  width: 48%;
  border: 1px solid #DEDEDE;
  border-radius: 12px;
  padding: 13px 13px 8px 13px;
}

.comprehensive-container .svg-container svg {
  width: 80px;
}

.comprehensive-container .content-container h3 {
  color: var(--heading-color);
  font-family: 'Inter';
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 700;
  margin: 4px 0px 0px 0px;
  line-height: normal;
}

.comprehensive-container .content-container p {
  color: var(--paragraph-color);
  font-family: "Open Sans";
  margin: 8px 0px 0px 0px;
  font-size: 1.2rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.4;
}

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

  .iprep-solution-comprehensive-section {
    margin: 1rem auto;
    gap: 1.5rem;
  }

  .svg-container {
    margin: auto;
  }

  .comprehensive-container {
    padding: 13px 13px 8px 13px;
  }

  .comprehensive-container .svg-container svg {
    width: 60px;
  }

  .iprep-solution-compre-main {
    padding: 1.575rem 0px;
  }

  .comprehensive-container .content-container h3 {
    font-size: 1.2rem;
  }

  .comprehensive-container .content-container p {
    font-size: 1rem;
  }
}

@media screen and (max-width: 768px) {
  .comprehensive-container {
    width: 100%;
  }

  .svg-container {
    margin: initial;
  }

  .comprehensive-container .content-container p {
    margin: 0.2rem 0px;
  }
}



/* rich and comprehensive section start */

.rich-and-comprenhsive {
  padding: 1.875rem 0px 2rem 0px;
}

/* rich and comprehensive section end */

/* Navigation Arrow and Dot Circle Slider Desktop start */

.exhaustive-repository {
  margin-top: 95px;
}

.exhaustive-repository-slider {
  width: 100%;
  overflow: hidden;
}

.exhaustive-repository-slider-wrapper {
  position: relative;
  padding: 0 50px;
  margin-top: 60px;
}

.exhaustive-repository-box img {
  width: 100%;
  height: 100%;
  max-height: 560px;
  object-fit: contain;
  border-radius: 8px;
}

.exhaustive-repository-box p {
  text-align: center;
  font-family: 'Open Sans';
  font-weight: 500;
  font-size: 2rem;
  line-height: 1.4;

}

.exhaustive-repository-text {
  display: flex;
  justify-content: center;
}

.exhaustive-repository-text>p {
  color: #575756;
  text-align: center;
  font-family: "Inter";
  font-size: 30px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

/* Navigation buttons */

.exhaustive-repository-nav-prev,
.exhaustive-repository-nav-next {
  position: absolute;
  top: 40%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
}

.exhaustive-repository-nav-prev {
  left: 0;
}

.exhaustive-repository-nav-next {
  right: 0;
}

/* Pagination */

.exhaustive-repository-pagination {
  text-align: center;
  margin-top: 20px;
}

.exhaustive-repository-pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background: #c9c9c9;
  opacity: 1;
  margin: 0 4px;
}

.exhaustive-repository-pagination .swiper-pagination-bullet-active,
.swiper-pagination-bullet-active {
  background: #212121;
  width: 12px;
  border-radius: 4px;
}

@media (max-width: 768px) {
  .exhaustive-repository-box p {
    font-size: 1rem;
  }
}

/* Navigation Arrow and Dot Circle Slider Desktop end */


/* empowering section start */
.empowering-infographics-container {
  margin: 3.5rem auto 0.5rem auto;
}

.empowering-infographics-container-mobile {
  display: none;
}

/* empowering section end */



/* integrate monitor and report start */

.integrate-monitor-report,
.co-create-project {
  /* added co-create-project class for co-create your project section */
  padding: 1.875rem 0px 2.875rem 0px;
}

.integrate-monitor-section-main {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  justify-content: space-between;
  margin: 2rem auto 1.2rem auto;
}

.integrate-monitor-section {
  display: flex;
  flex-direction: column;
  border-radius: 12px;
  border: 1px solid #EFEFEF;
  padding: 1.5rem;
  width: 100%;
}

.integrate-monitor-section img {
  width: 100%;
  border-radius: 8px;
  object-fit: contain;
}

.integrate-monitor-section p {
  color: var(--paragraph-color);
  font-family: "Inter", sans-serif;
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.4;
  margin: 1.5rem 0 0 0;
}

@media screen and (max-width: 992px) {
  .integrate-monitor-section p {
    font-size: 1.2rem;
    margin: 1rem 0 0 0;
  }
}

@media (max-width: 768px) {
  .integrate-monitor-section-main {
    flex-direction: column;
  }

  .integrate-monitor-section img {
    width: 100%;
    object-fit: contain;
  }

  .integrate-monitor-section p {
    font-size: 1.2rem;
    margin: 1rem 0 0 0;
  }

  .integrate-monitor-section {
    padding: 1rem;
  }
}


@media (max-width: 480px) {
  .integrate-monitor-section p {
    font-size: 0.8rem;
  }
}

/* integrate monitor and report end */


/* co - create your project start */

.co-create-project-wrapper {
  width: 100%;
  margin: 4rem auto;
  padding: 0 1rem;
}

.co-create-project-container {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  flex-direction: row;
  flex-wrap: wrap;
}

.co-create-project-box {
  width: calc(30.33%);
  border-radius: 12px;
  border: 1px solid #EFEFEF;
  background: #FFFFFF;
  display: flex;
  align-items: center;
  flex-direction: row;
  transition: all 0.3s ease;
}

.co-create-project-box:hover {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transform: translateY(-5px);
}

.co-create-project-box img {
  width: 60px;
  height: 119px;
  flex-shrink: 0;
  margin-bottom: 0px;
}

.co-create-project-box p {
  color: #212121;
  font-family: "Open Sans", sans-serif;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;

  line-height: 1.5;
  margin: 0px 0px 0px 20px;
}

@media (max-width: 1200px) {
  .co-create-project-box {
    width: 48%;
  }
}

@media screen and (max-width: 768px) {
  .co-create-project-box {
    width: 100%;
  }


}

/* co - create your project end */


/* ------------------------Universal learning section-------- */


.universal-learning-section {
  display: flex;
  gap: 2rem;
  justify-content: space-between;
  align-items: start;
  margin-top: 48px;
}

.left-universal-learning-section {
  width: 50%;
}


.right-universal-learning-section {
  width: 50%;
}
.right-universal-learning-section>p {

  color: #575756;
  font-family: Inter;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.4;
  margin: 0px;

}


/* -----------------------------------------------------------Improve Learning------------------------------- */

.improve-learning {
  margin-top: 120px;
}

.improve-learning-heading>h2 {
  color: #212121;
  text-align: center;
  font-family: Poppins;
  font-size: 48px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.improve-learning-container {
  display: flex;
  justify-content: space-between;
  gap: 36px;
  margin-top: 56px;
}

.improve-learning-card {
  display: flex;
  flex-direction: column;
  align-items: start;
  padding: 14px;
  border-radius: 20.4px;
  justify-content: space-between;
  border: 1px solid #DEDEDE;
  width: calc(100%/3);
  padding-bottom: 20px;
  height: fit-content;
}

.improve-learning-card>img {
  width: auto;
  height: auto;
  margin: auto;
}

.improve-learning-card>p {
  color: #575756;
  font-family: Inter;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.4;
  margin: 0;
  margin-top: 36px;
  min-height: 160px;
}

.improve-learning-button>a {
  color: #1BB1E7;
  font-family: Inter;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  gap: 14px;
  justify-content: start;
  align-items: center;
  margin-top: 24px;
}


.improve-learning-button>a>svg {
  width: 18px;
  height: 14px;
}

@media screen and (max-width: 768px) {
  .improve-learning-container {
    flex-direction: column;
    gap: 10px;

  }

  .improve-learning-card {
    width: 100%;
  }

  .improve-learning-card>p {
    font-size: 16px;
    margin-top: 10px;
  }

  .enhancing-learning-section p {
    font-size: 24px;
  }

  .enhancing-learning-section h4 {
    font-size: 16px;
    margin: 10px 0px 19px 0px;
  }



}

/* enhancing learning section start */

.enhancing-learning-main {
  display: flex;
  margin-top: 2rem;
  justify-content: center;
}

.enhancing-learning-section {
  border-radius: 12.933px;
  border: 3.233px solid #EFEFEF;
  background: #FFF;
  max-width: 360px;
  box-shadow: 0px 1.617px 1.617px 0px rgba(0, 0, 0, 0.14);
  width: 100%;
  height: 124px;
  flex-shrink: 0;
  margin: 50px;
}

.enhancing-learning-section p {
  color: var(--iDream-blue-1, #1BB1E7);
  font-family: 'Poppins';
  font-size: 38.8px;
  margin: 10px 0px;
  text-align: center;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.enhancing-learning-section h4 {
  color: var(--black-1, #212121);
  font-family: 'Poppins';
  font-size: 22.634px;
  text-align: center;
  margin: 10px 0px 30px 0px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

@media screen and (max-width: 768px) {
  .enhancing-learning-main {
    flex-direction: column;
  }

  .enhancing-learning-section {
    margin: 20px auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    padding: 1rem;
  }


  .enhancing-learning-section p {
    margin-bottom: 0;
    margin-top: 0;
  }

  .enhancing-learning-section h4 {
    margin-bottom: 0;
  }
}

/* enhancing learning section end */




/* --------------------------------------Frequently Asked Questions-------------------------------------- */

.faq-heading {
  margin-top: 80.5px;
}

.faq-heading>h2 {

  color: #212121;

  text-align: center;

  font-family: Poppins;

  font-size: 48px;

  font-style: normal;

  font-weight: 400;

  line-height: 76px;

}

.faq-container {

  margin-top: 33px;

  margin-bottom: 55px;

  padding: 31px 80px;

  border-radius: 40px;

  border: 1px solid #DEDEDE;
  height: 450px;
  overflow-y: scroll;

  background: #FFF;

  box-shadow: 12px 12px 10px 0px #EFF9FF;

}

.accordion .accordion-item {

  border-bottom: 1px solid #e5e5e5;

}

.accordion-title {

  color: #212121;

  font-family: Inter;

  font-size: 24px;

  font-style: normal;

  font-weight: 400;

  line-height: 48px;

  width: 80%;

}

.accordion button {

  text-align: left;
  width: 100%;
  padding: 16px 0;
  border: none;
  background: none;
  outline: none;

}

.accordion button:hover,
.accordion button:focus {

  cursor: pointer;

}

.accordion button[aria-expanded='true']+.accordion-content {

  opacity: 1;

  max-height: 1000px;

  transition: max-height ease-out, opacity ease-out;

}

.accordion .accordion-content {

  opacity: 0;

  max-height: 0;

  overflow: hidden;

  transition: max-height ease, opacity ease;

}

.accordion .accordion-content p {

  font-size: 20px;

  color: #666666;

}

#accordion-button-3 {

  color: black;

  font-family: "Inter", sans-serif;

  display: flex;

  justify-content: space-between;

  width: 100%;

  align-items: center;

}

.accordion-content p {

  color: black;

  font-family: "Inter", sans-serif !important;

}


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

  .faq-heading>h2 {
    font-size: 42px;
    line-height: 1.4;
    width: 100%;
  }
}


@media screen and (max-width: 992px) {
  .faq-heading>h2 {
    font-size: 32px;
  }
}

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


  .faq-heading>h2 {
    font-size: 28px;
  }

  .faq-container {
    border: none;
    padding: 0 24px;

  }

  .accordion-title {
    font-size: 20px;
    line-height: 1.4;
    width: 90%;
  }

  .accordion .accordion-content p {
    font-size: 16px;
    line-height: 1.2;
  }

  .faq-container {
    border-radius: 12px;
  }
}


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


  .faq-heading>h2 {
    font-size: 22px;
  }

  .accordion-title {
    font-size: 16px;
    line-height: 1.4;
  }

  .accordion .accordion-content p {
    font-size: 14px;
    line-height: 1.2;
  }

  .faq-container {
    margin-top: 25px;
  }


  /* Empowering Infographics  mobile view */
  .empowering-infographics-container {
    display: none;
  }

  .empowering-infographics-container-mobile {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 2rem;
  }

  .subject-card-icon-heading {
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .subject-card-icon {
    width: 20px;
    height: 20px;
  }

  .empowering-infographics-svg {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .subject-card-icon-heading>h4 {
    color: #575756;
    text-align: center;
    font-family: "Poppins";
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    margin: 0;
  }

  .subject-card-text>p {
    color: #575756;
    font-family: "Inter";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    margin: 1rem 0;
    ;
  }


  .improve-learning-card>p {
    min-height: 120px;
  }

  .improve-learning-card {
    border-radius: 5px
  }
}