/* import statement */

/* @import url("../font/Queen-Semi-Bold.otf");
@import url("../font/Outfit-Regular.ttf"); */

@import url("https://fonts.googleapis.com/css2?family=Funnel+Display:wght@300..800&display=swap");

@font-face {
  font-family: "Queen";
  src: url("../font/Queen-Semi-Bold.otf");
}

@font-face {
  font-family: "Outfit", sans-serif;
  src: url("../font/Outfit-Regular.ttf");
}

/* ---------------------------------------------------------- */

/* default CSS  */

*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

:root {
  --light: #ffffff;
  --dark: #000;
  --Queen: "Queen";
  --Outfit: "Outfit", sans-serif;
  --funnel-display: "Funnel Display", sans-serif;
  --primary: #6b68eb;
  --secondary: #031f42;
  --tertiary: #ffc107;
  --gray: #666;
  --gradientBg: radial-gradient(
    69.94% 74.85% at -13.28% -35.34%,
    #031f42 0%,
    #6b68eb 100%
  );
}

html {
  overflow-x: hidden !important;
}

body {
  font-family: var(--Outfit) !important;
  color: var(--secondary);
  background: #f8f8ff;
  overflow: hidden;
}

input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6,
ul,
p {
  padding: 0 !important;
  margin: 0 !important;
}

ul {
  padding-left: 0rem;
  margin-bottom: 0rem;
}

li {
  list-style: none;
  text-decoration: none;
}

a {
  text-decoration: none !important;
}

.text-balance {
  text-wrap: balance;
}

.text-pretty {
  text-wrap: pretty;
}

.text-nowrap {
  text-wrap: nowrap;
}

.owl-next:hover,
.owl-prev:hover {
  background: transparent !important;
}

.mobileView {
  display: none;
}

.desktopView {
  display: block;
}

/* lenis css */

html.lenis,
html.lenis body {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  -ms-scroll-chaining: none;
  overscroll-behavior: contain;
}

.lenis.lenis-stopped {
  overflow: hidden;
}

/* lp custom css */

.border {
  border: 2px solid var(--primary) !important;
}

.bottomBorder {
  border-bottom: 1px solid #d7d6ff !important;
}

.circleBorder {
  border-radius: 50px;
}

.secondaryTextColor {
  color: var(--secondary) !important;
}

.primaryTextColor {
  color: var(--primary) !important;
}

.grayColorText {
  color: var(--gray) !important;
}

.sectionpad {
  padding: 70px 0;
}

.sectionpadtop {
  padding-top: 70px;
}

.sectionpadbottom {
  padding-bottom: 70px;
}

.pageTitle {
  font-family: var(--funnel-display);
  color: var(--secondary);
  font-size: 35px;
  font-weight: 700;
}

.sectionTitle {
  font-family: var(--funnel-display);
  color: var(--secondary);
  text-align: center;
  font-weight: 700;
  font-size: 2.5vw;
  text-wrap: balance;
  position: relative;
}

.sectioncontent {
  font-size: 19px;
  line-height: 30px;
  padding: 0 5% !important;
  margin-top: 20px !important;
}

.imgfluid {
  width: 100%;
  height: auto;
}

.fixedctaCallBtn {
  position: fixed;
  bottom: 230px;
  right: 2px;
  z-index: 999;
}

.fixedEnquire {
  position: fixed;
  top: 300px;
  right: -43px;
  transform: rotate(-90deg);
  background: linear-gradient(335deg, #031f42 44.1%, #084fa8 128.25%);
  color: var(--light);
  padding: 10px 20px;
  text-align: center;
  border-radius: 10px 10px 0 0;
}

.fixedctabtn {
  position: fixed;
  bottom: 35px;
  right: 35px;
  /* background-color: #ffff; */
  padding: 7px 10px !important;
  border-radius: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 999;
  font-size: 15px !important;
  line-height: 22px;
}

.fixedctabtn span {
  font-weight: 600;
  color: #262626;
}

.fixedctaimg img {
  width: 38px;
  height: auto;
}

.fillBtn {
  padding: 10px 20px;
  font-size: 16px;
  font-weight: 600;
  background: var(--gradientBg);
  color: var(--light);
  border-radius: 12px;
  display: inline-block;
  transition: all 0.3s ease-in-out;
  position: relative;
  z-index: 999;
  border: 1px solid rgba(3, 31, 66, 0);

  display: flex;
  justify-content: center;
  align-items: center;
  /* width: 200px; */
}

.fillBtn:hover {
  background: var(--light);
  border: 1px solid #6b68eb;
  color: var(--primary);
}

.fillBtn .arw2 {
  display: none;
}

.fillBtn:hover .arw2 {
  display: flex;
}

.fillBtn:hover .arw1 {
  display: none;
}

.outlineBtn {
  padding: 9px 20px;
  font-size: 16px;
  font-weight: 600;
  background: var(--light);
  color: var(--primary);
  display: inline-block;
  transition: all 0.3s ease-in-out;
  position: relative;
  z-index: 999;
  border-radius: 12px;
  border: 1px solid #6b68eb;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 250px;
}

.outlineBtn:hover {
  background: var(--gradientBg);
  color: var(--light);
}

.outlineBtn .arw1 {
  display: none;
}

.outlineBtn:hover .arw1 {
  display: flex;
}

.outlineBtn:hover .arw2 {
  display: none;
}

/* ---------------------------------------------------------- */

/* navbar */

.navbarsection .container {
  border-radius: 3.125rem;
  /* filter: blur(13px); */
  padding: 15px;
}

.thankYouSection .navbarsection {
  box-shadow: 5px 2px 5px rgba(0, 0, 0, 0.3);
}

.navphonetext {
  padding-left: 5px;
  padding-right: 3px;
  font-size: 16px;
}

.logoimg {
  width: 320px;
  height: auto;
}

.navwrapper {
  display: flex;
}

.logo1wrap,
.logo2wrap {
  /* padding: 0 20px 0 0; */
  display: flex;
  justify-content: center;
  align-items: center;
  /* width: 240px; */
}

.cotactwrapper {
  display: flex;
}

.contact1wrap,
.contact2wrap {
  margin: 0 10px;
  display: flex;
  align-items: center;
}

.contact1wrap .navphonetext {
  color: var(--light) !important;
  text-decoration: none !important;
}

.contact2wrap .navphonetext {
  /* color: #fff !important; */
}

.contactbtn1 img {
  width: 20px;
}
.contactbtn2 img {
  width: 25px;
}

.contactbtn1,
.contactbtn2 {
  color: #fff;
  font-weight: 600;
  font-size: 16px;
}

.contact1wrap {
  /* border-radius: 10px;
  background: var(--primary); */
  padding: 7px 15px;
  display: inline-block;
  border-radius: 12px;
  border: 1px solid rgba(3, 31, 66, 0);
  background: radial-gradient(
    69.94% 74.85% at -13.28% -35.34%,
    #031f42 0%,
    #6b68eb 100%
  );
}

.contact2wrap {
  border-radius: 1.5rem;
  /* background: linear-gradient(90deg, #307bc4 0%, #bc3d3d 100%); */
  padding: 7px 18px;
}

.bgSetup {
  background-position: center !important;
  background-repeat: no-repeat !important;
  background-size: cover !important;
}

/* ---------------------------------------------------------- */

/* Banner Section */

.marquee {
  overflow: hidden;
  white-space: nowrap;
  background: transparent;
  background-color: var(--secondary);
  color: var(--light);
  padding: 10px;
  margin: 0 20px;

  border-radius: 0 0 40px 40px;
  box-shadow: -24px 0 20px 0 rgba(3, 31, 66, 0.25) inset,
    24px 0 20px 0 rgba(3, 31, 66, 0.25) inset;
}

.marquee-content {
  display: inline-flex;
  animation: scroll 12s linear infinite;
}

.marquee .item {
  display: flex;
  align-items: center;
  padding-right: 40px;
}

@keyframes scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-40%);
  }
}

.bannesection {
  background: url("../images/banner/heroBg.webp");
}

.pageSubtitleWrap {
  background-color: var(--tertiary);
  font-family: var(--funnel-display);
  color: var(--dark);
  display: inline-block;
  border-radius: 2rem;
  padding: 15px 25px;
  font-size: 17px;
}

.bannerContent p {
  font-size: 14px;
}

.bannerIcon {
  width: 55px;
  height: 55px;
}

.bannerContentIconWrap {
  margin: 10px 0;
}

.chipBtn {
  border-radius: 30px;
  background: #ededff;
  color: var(--primary);
  display: inline-block;
  padding: 5px 20px;
}

.bannerStudentImgWrap {
  position: relative;
}

.bannerStudent {
  position: absolute;
  height: auto;
  width: 550px;
  left: -65px;
}

/* ---------------------------------------------------------- */

/* grade section */

.gradeSection {
  background: #f8f8ff;
}

.gradeContentWrap {
  border-radius: 24px;
  border: 1px solid rgba(107, 104, 235, 0.5);
  background: url("../images/banner/gradeBg.png");
  padding: 40px;
}

.gradeIcon {
  width: 30px;
  height: 32px;
}

.gradeText {
  font-family: var(--funnel-display);
  font-size: 21px;
  text-wrap: balance;
}

.element1 {
  position: absolute;
  top: -29%;
  left: 3%;
}

.element2 {
  position: absolute;
  bottom: 0;
  right: 4%;
}

/* ---------------------------------------------------------- */

/* enroll section */

.enrollSection {
  background: url("../images/banner/enrollBg.jpg");
  height: 675px;
  position: relative;
}

.studentImgWrap {
  position: absolute;
  height: auto;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  z-index: 1;
}

.studentImgWrap img {
  width: 335px;
  height: auto;
}

/* .enrollStudentCardWrap {
  position: relative;
  z-index: 2;
  height: 600px;
} */

.studentCardWrap {
  position: absolute;
  background: url("../images/banner/cardBg.png");
  display: flex;
  justify-content: center;
  align-items: center;
  width: 365px;
  color: var(--light);
  padding: 25px;
  border-radius: 24px;
  border: 1px solid rgba(107, 104, 235, 0.3);
  box-shadow: -5px -4px 30px 0 rgba(208, 207, 255, 0.1);
}

.studentCard1 {
  transform: rotate(-6deg);
  bottom: 90px;
  left: 82px;
}

.studentCard2 {
  transform: rotate(6.422deg);
  bottom: 261px;
  left: 188px;
}

.studentCard3 {
  width: 495px;
  top: 140px;
  left: 0;
  right: 0;
  margin: 0 auto;
}

.studentCard4 {
  transform: rotate(-6.42deg);
  bottom: 261px;
  right: 188px;
}

.studentCard5 {
  transform: rotate(7deg);
  bottom: 67px;
  right: 108px;
}

.studentContent {
  position: relative;
  z-index: 10;
}

.student1Content::before {
  content: url(../images/elements/e3.svg);
  width: 50px;
  height: auto;
  position: absolute;
  left: -54px;
  bottom: -72px;
  z-index: 99;
}

.student2Content::before {
  content: url(../images/elements/e8.svg);
  width: 50px;
  height: auto;
  position: absolute;
  left: -72px;
  top: -85px;
  z-index: 99;
}

.student4Content::before {
  content: url(../images/elements/e9.svg);
  width: 50px;
  height: auto;
  position: absolute;
  right: -56px;
  top: -60px;
  z-index: 99;
}

.student5Content::before {
  content: url(../images/elements/e10.svg);
  width: 50px;
  height: auto;
  position: absolute;
  right: -51px;
  bottom: -76px;
  z-index: 99;
}

/* ----------------------------------------------------------------------- */

/* key benefits section */

.keyBenefitSection {
  position: relative;
}

img.benefitTickIcon {
  width: 25px;
}

.benefiteHead {
  font-weight: 600;
  font-size: 20px;
}

.benefitePara {
  color: var(--gray);
  margin-top: 8px !important;
}

.keyBenefitImgWrap {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 550px;
  height: auto;
}

/* ----------------------------------------------------------------------- */

/* testimonial section */

.testimonialSection {
  background: #f8f8ff;
}

/* ---------------------------------------------------------- */

/* review section */

.reviewCard {
  border-radius: 2rem;
  border: 2px solid #6b68eb;
  background: #fff;
  padding: 20px;
}

.reviewHead {
  font-weight: 600;
  font-size: 18px;
  text-transform: capitalize;
}

.reviewerName {
  color: #9ca3af;
}

.reviewDateTime {
  font-size: 14px;
  color: #9ca3af;
  /* display: none; */
}

.reviewContent {
  font-size: 15px;
}

.reviewCard img {
  width: 50px !important;
  border-radius: 50px;
  border: 2px solid #000;
}

.reviewCard1 {
  border: 2px solid #198754;
}

.reviewCard2 {
  border: 2px solid #ffc107;
}

.reviewCard3 {
  border: 2px solid #1e83ff;
}

.reviewCard4 {
  border: 2px solid #36b7ae;
}

.reviewCard5 {
  border: 2px solid #5956e9;
}

.reviewCard6 {
  border: 2px solid #dc3545;
}

.reviewCard7 {
  border: 2px solid #6b68eb;
}

.reviewCard8 {
  border: 2px solid #000;
}

.reviewHeadCol1 {
  color: #198754;
}

.reviewHeadCol2 {
  color: #ffc107;
}

.reviewHeadCol3 {
  color: #1e83ff;
}

.reviewHeadCol4 {
  color: #36b7ae;
}

.reviewHeadCol5 {
  color: #5956e9;
}

.reviewHeadCol6 {
  color: #dc3545;
}

.reviewHeadCol7 {
  color: #6b68eb;
}

.reviewHeadCol8 {
  color: #000;
}

/* ---------------------------------------------------------- */

/* cta section */

.ctaSection {
  /* background: url("../images/student/s4.png"); */
  /* height: 600px; */
  position: relative;
  overflow: hidden;
}

.ctaSection .marqueeWrap {
  position: absolute;
  top: 168px;
}

.ctaSection .marquee {
  overflow: hidden;
  white-space: nowrap;
  background: transparent;
  background-color: #eef;
  color: var(--light);
  padding: 80px 0;
  margin: unset;
  border-radius: unset;
  box-shadow: unset;
  position: relative;
  z-index: -1;
}

.universityNameText {
  font-size: 65px;
  font-weight: 600;
  color: var(--primary);
}

.ctaSection .item {
  display: flex;
  align-items: center;
  padding-right: 135px;
}

.ctaFormWrap {
  width: 400px;
}

.ctaImgWrap {
  position: absolute;
  bottom: 155px;
  right: 0;
  width: 635px;
  height: auto;
}

/* ---------------------------------------------------------- */

/* lms section */

.lmsFeatureSection {
  background: url("../images/banner/bgLines.png");
}

.lmsHeadWrap {
  display: flex;
  justify-content: center;
  align-items: center;
}

.durationImg {
  background: url("../images/circle-highlight/c7.svg");
  padding: 30px;
}

.LMSCardCarousel .item {
  padding: 10px;
  /* border-radius: 10px; */
  overflow: hidden;
}

.lmsCardWrap {
  padding: 20px;
  /* background: url("../images/banner/lmsCardBg.jpg"); */

  border-radius: 20px;
  /* border: 1px solid rgba(107, 104, 235, 0); */
  background: linear-gradient(
    120deg,
    #eae9ff -12.83%,
    #fff 50.68%,
    #d0cfff 116.68%
  );
  /* box-shadow: 0 50px 100px -20px rgba(50, 50, 93, 0.15),
    0 30px 60px -30px rgba(0, 0, 0, 0.2),
    0 -2px 6px 0 rgba(10, 37, 64, 0.35) inset; */
  box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px,
    rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
}

.lmsCardWrap img {
  border-radius: 15px;
}

.lmsHead {
  font-family: var(--funnel-display);
  color: var(--primary);
  margin: 15px 0 !important;
  font-size: 18px;
}

.lmsContent {
  color: var(--gray);
  font-size: 13px;
}

/* ---------------------------------------------------------- */

/* about section */

.aboutSection .section-subtitle {
  width: 85%;
  margin: 0 auto !important;
  margin-top: 15px !important;
}

/* ---------------------------------------------------------- */

/* syallbus section */

.syllabusContentWrap {
  border-radius: 24px;
  /* border: 1px solid rgba(59, 140, 240, 0); */
  background: #fbfbfb;
  box-shadow: 0 50px 100px -20px rgba(50, 50, 93, 0.15),
    0 30px 60px -30px rgba(0, 0, 0, 0.2),
    0 -2px 6px 0 rgba(10, 37, 64, 0.35) inset;
}

.tab-content {
  background: rgba(59, 140, 240, 0.1);
  border-left: 1px solid #3b8cf0;
  border-right: 1px solid #3b8cf0;
  border-bottom: 1px solid #3b8cf0;
  border-top: none !important;
  border-radius: 0 0 10px 10px;
  margin-top: 1px;
}

.syllabusContentWrap .nav-link.active {
  background: rgba(59, 140, 240, 0.1);
  border-bottom: unset !important;
  background: rgba(59, 140, 240, 0.1);
  border-left: 1px solid #3b8cf0;
  border-right: 1px solid #3b8cf0;
  border-top: 1px solid #3b8cf0;
  border-bottom: unset !important;
  border-radius: 10px 10px 0 0;

  height: 60px;
}

.nav-tabs {
  border-bottom: unset !important;
}

.syllabusContentWrap .nav-link.active .syllabusBtn {
  border: 1px solid transparent;
}

.syllabusContentWrap .nav-tabs {
  display: flex;
  column-gap: 10.9px;
}

.syllabusContentWrap .nav-link {
  color: var(--primary);
  border-radius: 8px;
  border: 1px solid rgba(59, 140, 240, 0.3);
  /* margin-right: 10px; */
  /* margin-bottom: 5px; */
  height: 50px;
  width: 24%;
}

.syllabusContentWrap li {
  list-style: disc;
  margin-left: 20px;
  /* padding: 10px; */
}

.dot {
  background: #000;
  width: 4px;
  height: 4px;
  border-radius: 50px;
  display: inline-block;
}

.syllabusContent {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.syllabusPointer {
  padding: 10px 20px;
  background: var(--light);
  border-radius: 10px;
  border: 1px solid #dddcff;
}

.examOverviewHead {
  font-family: var(--funnel-display);
  font-weight: 700;
}

.examOverviewContentWrap {
  border-radius: 24px;
  /* border: 1px solid rgba(59, 140, 240, 0); */
  background: #fbfbfb;
  box-shadow: 0 50px 100px -20px rgba(50, 50, 93, 0.15),
    0 30px 60px -30px rgba(0, 0, 0, 0.2),
    0 -2px 6px 0 rgba(10, 37, 64, 0.35) inset;
  padding: 25px 20px;
}

.examHeadText {
  color: var(--secondary);
  font-family: var(--funnel-display);
  font-weight: 600;
}

.examContentText {
  color: var(--gray);
  font-size: 15px;
}

/* ---------------------------------------------------------- */

/* Modal */

.modal-content {
  background: transparent !important;
  border: none !important;
}

.modal-header {
  border: none !important;
}

.modal-body {
  position: relative;
}

.popupModalCloseBtn {
  position: absolute;
  top: 3px;
  right: 15px;
}

.btn-close {
  filter: brightness(0) saturate(100%) invert(100%) sepia(6%) saturate(0%)
    hue-rotate(82deg) brightness(106%) contrast(109%) !important;
  opacity: 1 !important;
}

/* ---------------------------------------------------------- */

/* footer */
.footercontentwrap {
  background: var(--primary);
}

.footimg {
  width: 20px !important;
  height: auto;
  margin: 0 5px 0 10px;
}

.foottext {
  font-size: 14px !important;
  line-height: 20px;
  margin-bottom: 0 !important;
  text-wrap: balance;
}

/* faq section */

.faqSection {
  background-color: #f8f8ff;
}

.accordion-button::after {
  background: url("../images/icon/plus.svg") !important;
}

.accordion-button:not(.collapsed)::after {
  background: url("../images/icon/minus.svg") !important;
  transform: var(--bs-accordion-btn-icon-transform);
}

.accordion {
  background: transparent !important;
}

button.accordion-button {
  padding: 25px 30px 20px 30px;
}

.accordion-body {
  background-color: var(--light);
  padding: 0 20px 30px 28px !important;
  font-size: 14px;
  color: var(--gray);
  border-radius: 10px;
}

.faqhead {
  font-size: 17px;
  font-weight: 600;
  color: var(--secondary);
}

.accordion-button:focus {
  z-index: 3;
  outline: 0;
  box-shadow: unset !important;
}

.accordion-button:not(.collapsed) {
  background: transparent !important;
  box-shadow: unset !important;
}

.accordion-item {
  margin: 20px 0;
  border-radius: 10px;
  border-bottom: 1px solid #6b68eb !important;
  border-right: 1px solid #6b68eb !important;
  border-left: 1px solid #6b68eb !important;
  border-top: none !important;
  background-color: transparent !important;
}

.accordion-header,
.accordion-button {
  background-color: var(--light) !important;
  /* border: 1px solid #c3e4e8; */
  border-radius: 10px;
}

.accordion-header {
  border-top: 1px solid #6b68eb;
}

.accordion-button:not(.collapsed) {
  background-color: var(--light) !important;
  border-radius: 10px 10px 0 0;
}

.accordion-button::after {
  width: 28px !important;
  height: 28px !important;
}

.accordion-button:not(.collapsed)::after {
  transform: unset !important;
  transition: all 0.2s ease;
}

.faqCard {
  border-radius: 1.8rem;
  padding: 15px;
  background: url("../images/banner/faqBg.jpg");
  border: 1px solid rgba(107, 104, 235, 0.3);
}

.faqCard img {
  border-radius: 10px;
}

.faqHeadText {
  font-family: var(--funnel-display);
  text-align: center;
  font-size: 25px;
  font-weight: 600 !important;
  margin-top: 15px !important;
}

/*  */

/* footer */

.footersection {
  background-color: #1b2728;
}

.accordion-button::after {
  background: url("../images/icon/plus.svg") !important;
}

.accordion-button:not(.collapsed)::after {
  background: url("../images/icon/minus.svg") !important;
}

.ctabtnwrap a {
  position: fixed;
  bottom: 4%;
  right: 6%;
  border-radius: 0.5rem;
  background: #85cfd5;
  display: inline-block;
  color: #fff;
  font-weight: 700;
  padding: 10px 15px;
  box-shadow: 0px 4px 50px 0px rgba(164, 230, 235, 0.8);
  z-index: 9999;
}

/* togglewrap */

/* mobilefeature */
.featureboxwrap {
  display: none;
  border-radius: 0.75rem;
  /* border: 1px solid #000; */
  background: linear-gradient(90deg, #f58f8f 0%, #cb6059 100%);
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  padding: 20px;
}

.mobnavtext {
  font-size: 18px;
  color: #000;
  font-weight: 800;
}

/* thank you section */

body.thankYouSection {
  background: #f8f8ff;
}

.fascilityCarousel .item {
  display: flex;
  justify-content: center;
}

/* form Data */

.bannerUpperFormWrap {
  padding: 8px;
  border: 2px solid var(--primary);
  background: rgba(107, 104, 235, 0.2);
  border-radius: 18px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  /* height: 87%; */
}

.bannerFormContentWrap {
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  z-index: 999;
}

.modal-body {
  display: flex;
  justify-content: center;
  background-color: transparent !important;
}

.modal-body .bannerFormContentWrap {
  width: 90%;
}

.bannerFormHead {
  /* background: var(
    --Radial,
    radial-gradient(69.94% 74.85% at -13.28% -35.34%, #031f42 0%, #6b68eb 100%)
  ); */
  background: var(--secondary);
  backdrop-filter: blur(10px);
  text-align: center;
  padding: 15px 0px;
}

.bannerFormWrap {
  /* border-radius: 16px; */
  border: 1px solid #e0e0e0;
  border-radius: 16px;
  background: linear-gradient(333deg, #fff 0%, #d9e9ff 100%);
  padding: 20px 15px;
  border-radius: 0 0 20px 20px;
}

.bannerFormHead .formtitle {
  color: #fff;
  font-family: var(--funnel-display);
  font-size: 17px;
  font-weight: 800;
  text-transform: capitalize;
}

.herosection {
  position: relative;
  /* margin-bottom: 80px; */
  padding-bottom: 80px !important;
}

.form-group {
  padding: 15px 0;
  width: 100%;
}

.newFormWrap {
  display: flex;
  justify-content: center;
  flex-direction: row;
}

form label {
  font-size: 13px;
}

.inputfield {
  color: #000;
  background: #fff;
  border: 1px solid #dddcff !important;
}

select.inputfield::placeholder,
.inputfield::placeholder {
  color: #a7a7a7;
}

.selectPlaceholder {
  color: #7c7675 !important;
}

option {
  color: #000;
}

.inputfield {
  width: 100%;
  padding: 8px;
  border: none;
  border-radius: 10px;
  /* background: #fff; */
}

.labelinput {
  color: #274760;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.625rem;
}

.form-control {
  font-size: 14px;
}

.banner-form input {
  border-radius: 1.875rem !important;
  border: 1px solid rgba(48, 123, 196, 0.5);
  width: 100% !important;
}

.formSubmitBtn {
  width: 100%;
}

p.errortext {
  color: red;
  padding-left: 8px !important;
  font-size: 12px;
  margin-top: 8px !important;
  letter-spacing: 0.5px;
  display: none;
}

.mobileFixedCta {
  display: none;
  background: var(--secondary);
  position: fixed;
  bottom: 0;
  right: 0;
  left: 0;
  z-index: 99999;
}

.whatsIcon {
  width: 30px;
  height: auto;
}

.formTerms {
  font-size: 9px;
  color: var(--gray);
}

/* ---------------------------------------------------------- */

/* circle highlighter */

.circleHighlight1 {
  /* background: url(../images/circle-highlight/c8.svg) center center / cover
    no-repeat;
  background-position: center center; */

  background: url(../images/circle-highlight/c8.svg);
  padding: 2px;
}

.circleHighlight2 {
  background: url(../images/circle-highlight/c1.svg);
  padding: 2px;
}

.circleHighlight3 {
  content: url("../images/circle-highlight/c2.svg");
  position: absolute;
  top: -8px;
  left: -16px;
  width: 41%;
  z-index: -1;
}

.circleHighlight4 {
  background: url(../images/circle-highlight/c3.svg);
  padding: 5px;
}

.circleHighlight5 {
  content: url(../images/circle-highlight/c4.svg);
  position: absolute;
  top: -4px;
  left: -22px;
  width: 164px;
  z-index: -1;
}

.circleHighlight6 {
  background: url(../images/circle-highlight/c5.svg);
  padding: 3px;
}

.circleHighlight7 {
  background: url(../images/circle-highlight/c6.svg);
  padding: 3px;
}

.circleHighlight8 {
  content: url(../images/circle-highlight/c1.svg);
  position: absolute;
  top: -5px;
  left: -13px;
  width: 100px;
}

/* ---------------------------------------------------------- */

/* media query */

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

/* ---------------------------------------------------------- */

@media only screen and (max-width: 992px) {
  .sectionpad {
    padding: 40px 0;
  }

  .faqheadwrap h2 {
    text-align: center;
    margin-bottom: 12px !important;
  }

  /* banner section */
  /* 
  .bannerUpperFormWrap {
    height: auto;
  } */

  .bannerFormContentWrap {
    width: 100%;
  }

  .bannerStudent {
    position: absolute;
    height: auto;
    width: 534px;
    top: 50px;
    left: -105px;
  }

  .pageTitle {
  }

  .bannerReviewCard {
    margin-top: 45px;
    width: 93%;
    margin-bottom: 30px;
    position: relative;
  }

  .reviewStudentImgWrap {
    display: block;
    position: absolute;
    bottom: 0;
    right: -65px;
  }

  .reviewStudentImgWrap img {
    width: 175px;
    height: auto;
  }

  .mobileBannerForm {
    /* background: var(--secondary); */
    border-radius: 20px;
    padding: 20px 10px;
  }

  .banneStudentImgWrap {
    display: none;
  }

  .bannerFormContentWrap {
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
  }

  .banReviewText {
    width: 90%;
    font-size: 15px;
  }

  .gradeContentWrap .row {
    gap: 13px;
  }

  .syllabusContentWrap .nav-link {
    width: 23%;
  }

  .syllabusContentWrap .nav-tabs {
    display: flex;
    column-gap: 17.67px;
  }

  .examOverviewContentWrap {
    margin-top: 30px;
  }

  .ctaImgWrap {
    display: none;
  }

  .keyBenefitImgWrap {
    position: relative;
    bottom: 0;
    right: 0;
    width: 390px;
    height: auto;
    display: flex;
    justify-content: center;
    /* margin-top: 40px; */
    margin: 40px auto 0 auto;
  }

  .ctaSection .marqueeWrap {
    position: absolute;
    top: 40px;
  }

  .ctaSection .marquee {
    padding: 35px 0;
  }
}

/* ---------------------------------------------------------- */

@media only screen and (max-width: 768px) {
  .faqhead {
    font-size: 13px;
    font-weight: 400;
  }

  .mobileView {
    display: block;
  }

  .desktopView {
    display: none !important;
  }

  .bannerFormHead .formtitle {
    font-size: 17px;
  }

  button.accordion-button {
    padding: 14px;
  }

  p {
    font-size: 14px;
  }

  .contactbtn1,
  .contactbtn2 {
    color: #fff;
    font-weight: 600;
    /* font-size: 20px; */
    display: flex;
    align-items: center;
  }

  .navphonetext {
    /* display: none; */
    font-size: 13px;
  }

  .contactbtn1 img {
    width: 18px;
    margin-left: 5px;
  }

  .contact1wrap {
    padding: 7px 8px;
  }

  .mobileView {
    display: block;
  }

  .desktopView {
    display: none;
  }

  .sectionpadtop {
    padding-top: 40px;
  }

  .sectionpadbottom {
    padding-bottom: 40px;
  }

  /* hero banner section */

  .pageTitle {
    font-size: 29px;
  }

  .bannerStudent {
    display: none;
  }

  .navbarsection {
    margin-top: 10px;
  }

  .marquee {
    margin: 0 10px;
    border-radius: 0 0 20px 20px;
  }

  p {
    font-size: 16px;
  }

  .pageSubtitleWrap {
    border-radius: 3rem;
  }

  .bannerContent p {
    font-size: 16px;
  }

  .banReviewText {
    width: 65%;
    font-size: 14px;
  }

  .reviewStudentImgWrap {
    display: block;
    position: absolute;
    bottom: 0;
    right: 0;
  }

  .bannerReviewCard {
    padding: 30px 20px;
    width: 100%;
    /* overflow: hidden; */
  }

  .reviewStudentImgWrap img {
    width: 143px;
    height: auto;
  }

  .bannerFormContentWrap {
    width: 100%;
  }

  .fillBtn {
    padding: 10px 15px;
    font-size: 16px;
  }

  img.arw1,
  img.arw2 {
    width: 22px;
  }

  .bannerUpperFormWrap {
    margin-top: 15px;
  }

  .element1 {
    position: absolute;
    top: -17%;
    left: 4%;
    width: 60px;
    height: auto;
  }

  .gradeContentWrap {
    padding: 20px;
    background: url("../images/banner/gradeMobBg.png");
    margin-bottom: 40px;
  }

  .element2 {
    position: absolute;
    bottom: 13px;
    right: 0%;
    width: 67px;
    height: auto;
    transform: rotate(13deg);
  }

  .gradeText {
    font-size: 20px;
    /* margin-bottom: 6px !important; */
  }

  /* enroll section */

  .enrollSection {
    height: 1380px;
  }

  .studentCardWrap {
    width: 88%;
    padding: 26px;
  }

  .studentText {
    font-size: 14px;
  }

  /* cta section */

  .enrollSection {
    background: url("../images/banner/enrollMobBg.jpg");
  }

  .desktopFixedCta {
    display: none;
  }

  .studentCardWrap {
    bottom: unset;
    left: 0;
    right: 0;
    margin: 0 auto;
  }

  .studentCard1 {
    top: 45%;
    transform: rotate(3deg);
  }

  .studentCard2 {
    transform: rotate(3deg);
    top: 23%;
  }

  .studentCard3 {
    transform: rotate(-3deg);
  }

  .studentCard4 {
    transform: rotate(-3deg);
    top: 34%;
  }

  .studentCard5 {
    transform: rotate(-3deg);
    top: 56%;
  }

  .student1Content::before {
    content: url(../images/elements/e8.svg);
    width: 50px;
    height: auto;
    position: absolute;
    left: -69px;
    bottom: 51px;
    z-index: 99;
  }

  .student4Content::before {
    content: url(../images/elements/e3.svg);
    width: 50px;
    height: auto;
    position: absolute;
    right: -53px;
    top: -72px;
    z-index: 99;
    transform: rotate(182deg);
  }

  .student5Content::before {
    content: url(../images/elements/e10.svg);
    width: 50px;
    height: auto;
    position: absolute;
    right: -51px;
    bottom: 47px;
    z-index: 99;
    transform: rotate(-115deg);
  }

  /* ----------------------------------------------------------------------- */

  img.benefitTickIcon {
    width: 20px;
    margin-top: 7px;
  }

  .benefiteHead {
    font-size: 16px;
    text-wrap: balance;
  }

  .keyBenefitImgWrap {
    position: relative;
    width: unset;
    bottom: unset;
    right: unset;
    margin-top: 40px;
    display: flex;
    justify-content: center;
    width: 300px;
  }

  /* ----------------------------------------------------------------------- */

  /* mobile testimonial */

  .reviewDateTime {
    font-size: 14px;
    color: #9ca3af;
    display: flex;
    align-items: center;
  }

  img.reviewIcon {
    width: 19px !important;
  }

  /* cta section */

  .ctaFormWrap {
    width: 100%;
  }

  .ctaSection {
    height: 275px !important;
    /* background: url("../images/student/s5.png"); */
    margin-top: 30px;
  }

  .ctaSection .marqueeWrap {
    position: absolute;
    top: 30px;
  }

  .universityNameText {
    font-size: 40px;
  }

  /* circle highlighter */

  .circleHighlight1 {
    /* background: url(../images/circle-highlight/c8.svg) center center / cover
    no-repeat;
  background-position: center center; */

    background: unset;
    padding: 2px;
  }

  .circleHighlight2 {
    /* background: unset; */
  }

  .circleHighlight3 {
    /* content: unset; */
    top: -10px;
    left: -16px;
    width: 45%;
  }

  .circleHighlight4 {
    background: unset;
  }

  .circleHighlight5 {
    /* content: unset; */
    width: 127px;
  }

  .circleHighlight6 {
    /* background: unset; */
  }

  .circleHighlight7 {
    /* background: unset; */
    padding: unset;
  }

  .circleHighlight8 {
    content: unset;
  }

  /* faq */

  .accordion-body {
    padding: 0 20px 20px 20px !important;
  }

  /*  */

  /* .bannerUpperFormWrap {
    height: auto;
  } */

  /* syalbus section */

  .examOverviewContentWrap {
    margin-top: 30px;
  }

  .syllabusContentWrap .nav-link {
    width: 48%;
  }

  .syllabusContentWrap .nav-link.active {
    height: auto;
    border-bottom: 1px solid #3b8cf0 !important;
    border-radius: 10px;
  }

  .syllabusContentWrap .nav-link {
    margin: 5px 0;
  }

  .tab-content {
    margin-top: 10px;
    border-top: 1px solid #3b8cf0 !important;
    border-radius: 10px;
  }

  .dot {
    width: 5px;
    height: 4px;
    margin-right: 10px !important;
  }

  .syllabusPointer p {
    font-size: 14px;
  }

  .aboutSection .section-subtitle {
    width: 95%;
    font-size: 13px;
    text-wrap: balance;
  }

  .faqCard p {
    font-size: 14px;
  }

  .pageSubtitleWrap {
    padding: 10px 23px;
    font-size: 19px;
    width: 315px;
  }

  .gradeContentWrap .row {
    row-gap: 20px;
  }

  .sectionTitle {
    font-size: 24px;
  }

  .reviewHead {
    font-size: 15px;
  }

  .reviewContent {
    font-size: 13px;
    height: 155px;
  }

  .reviewCard img {
    width: 40px !important;
  }

  .testimonialCarouselContentWrap {
    margin-bottom: 20px;
  }

  .degreeCircleHighlight {
    color: var(--primary) !important;
  }
}

/* ---------------------------------------------------------- */

@media only screen and (max-width: 576px) {
  .logoimg {
    width: 205px;
    height: auto;
  }

  .sectionTitle {
    font-size: 26px;
  }

  .navbarsection .container {
    border-radius: 50px;
    /* background: rgba(255, 255, 255, 0.75); */
    /* filter: blur(13px); */
    padding: 8px;
  }

  .logo1wrap,
  .logo2wrap {
    /* padding: 0 20px 0 0; */
    display: flex;
    justify-content: center;
    align-items: center;
    width: 200px;
  }

  .fixedctaimg img {
    width: 45px;
    height: auto;
  }

  /* cta section */

  /* lms */

  .lmsHeadWrap {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .durationImg {
    margin-top: 10px;
  }

  .mobileFixedCta {
    display: block;
  }

  .footercontentwrap {
    margin-bottom: 43px;
  }

  .ctaImgWrap {
    display: none;
  }

  .ctaSection .marquee {
    padding: 30px 0;
  }

  p {
    font-size: 14px;
  }
}

/* ---------------------------------------------------------- */

@media only screen and (max-width: 576px) {
  /* .ctaSection {
    height: 642px !important;
    background: url("../images/student/s5.png");
    margin-top: 40px;
  } */

  .ctaSection .marqueeWrap {
    position: absolute;
    top: 115px;
  }

  .studentImgWrap img {
    width: 340px;
    height: auto;
  }

  .syllabusContentWrap .nav-link {
    width: 47%;
  }

  .gradeText {
    font-size: 15px;
    /* margin-bottom: 6px !important; */
  }

  .fillBtn {
    padding: 10px 15px;
    font-size: 12px;
  }
}

@media only screen and (max-width: 500px) {
  .ctaSection .marqueeWrap {
    position: absolute;
    top: 84px;
  }
}

@media only screen and (max-width: 450px) {
  .ctaSection .marqueeWrap {
    position: absolute;
    top: 63px;
  }
}

@media only screen and (max-width: 400px) {
  .ctaSection .marqueeWrap {
    position: absolute;
    top: 40px;
  }
}

/* extra CSS */

.sectionTitle {
  position: relative;
}

.benefitCircleHighlight {
  position: relative;
  z-index: 1;
}

.benefitCircleHighlight::after {
  content: "";
  background: url("../images/circle-highlight/c9.svg") no-repeat center
    center/cover;
  position: absolute;
  width: 100%;
  height: 100%;
  inset: 0;
  z-index: -1;
  background-size: 100% 100%;
}

.reviewCircleHighlight {
  position: relative;
  z-index: 1;
}

.reviewCircleHighlight::after {
  content: "";
  background: url(../images/circle-highlight/c10.svg) no-repeat center center /
    cover;
  position: absolute;
  width: 100%;
  height: 100%;
  inset: 0;
  z-index: -1;
  background-size: 100% 100%;
}

.aboutCircleHighlight {
  position: relative;
  z-index: 1;
}

.aboutCircleHighlight::after {
  content: "";
  background: url("../images/circle-highlight/c1.svg") no-repeat center
    center/cover;
  position: absolute;
  width: 100%;
  height: 100%;
  inset: 0;
  z-index: -1;
  background-size: 100% 100%;
}

.degreeCircleHighlight {
  position: relative;
  z-index: 1;
}

.degreeCircleHighlight::after {
  content: "";
  background: url("../images/circle-highlight/c11.svg") no-repeat center
    center/cover;
  position: absolute;
  width: 100%;
  height: 100%;
  inset: 0;
  z-index: -1;
  background-size: 100% 100%;
}

/* new extra css */

.benefitCircleHighlight {
  position: unset;
  z-index: 1;
}

.benefitCircleHighlight::after {
  content: "";
  background: url(../images/circle-highlight/c9.svg) no-repeat center center /
    cover;
  position: absolute;
  width: 126%;
  height: 36%;
  inset: 0;
  z-index: -1;
  background-size: 100% 100%;
}

.bannerFormHead .formtitle {
  font-size: 16px;
}

.navCenterTab {
  border-radius: 50px;
  border: 2px solid #6b68eb;
  background: #031f42;
  box-shadow: -9px 6px 14.6px 0 rgba(107, 104, 235, 0.4) inset;
  padding: 6px 10px !important;
  display: flex;
  align-items: center;
  gap: 10px;
}

.navCenterTabText {
  color: #ffc107;
  font-weight: 700;
  font-family: var(--funnel-display);
}

.pageSubtitleWrap {
  font-weight: 600;
  padding: 15px 20px;
}

.bannerStudent {
  position: absolute;
  height: auto;
  width: 460px;
  left: -34px;
}

/* .mobileBannerForm {
  display: flex;
  justify-content: end;
} */

.bannerUpperFormWrap {
  width: 95%;
  margin-left: 30px;
}

.circleHighlight7 {
  background: url(../images/circle-highlight/c6.svg);
  padding: 10px;
}

.ctaImgWrap {
  position: absolute;
  bottom: 116px;
  right: 0;
  width: 635px;
  height: auto;
}

.emiContent {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(107, 104, 235, 0.1);
  padding: 10px 18px !important;
  display: inline-block;
  border-radius: 5rem;
  font-weight: 500;
}

.emiIcon {
  width: 25px;
  height: 25px;
}

/* media query */

@media only screen and (max-width: 768px) {
  .navCenterTab {
    display: none;
  }

  .bannerUpperFormWrap {
    width: 100%;
    margin-left: unset;
  }

  .bannerFormHead {
    padding: 10px;
  }
}

/* page loader css */

#pageloader {
  background: rgba(34, 34, 34, 0.9);
  display: none;
  height: 100%;
  position: fixed;
  width: 100%;
  z-index: 9999999;
  top: 0;
}

.loading-wrap {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.loading-wrap img {
  width: 125px;
}
