/* import statement */

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

@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;
  --Outfit: "Outfit", sans-serif;
  --funnel-display: "Funnel Display", sans-serif;
  --primary: #3db166;
  --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: 45px;
  font-weight: 300;
}

.sectionTitle {
  font-family: var(--funnel-display);
  color: var(--secondary);
  font-weight: 700;
  font-size: 2.25rem;
  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;
  color: var(--light);

  border-radius: 12px;
  border-right: 1px solid var(--primary);
  border-bottom: 4px solid var(--primary);
  border-left: 1px solid var(--primary);
  background: radial-gradient(
    79.59% 255.19% at 49.71% -167.24%,
    #3db166 0%,
    #031f42 100%
  );

  position: relative;
  z-index: 999;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease-in-out;
}

.fillBtn:hover {
  color: var(--light);
  background: var(--primary);

  border-right: 1px solid #f5f5f5;
  border-bottom: 4px solid #f5f5f5;
  border-left: 1px solid #f5f5f5;
}

.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 var(--primary);
  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);
  background: var(--secondary);
}

.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);
}

.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(--primary);
  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.png");
}

.pageSubtitleWrap {
  border-radius: 100px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(
    186deg,
    rgba(255, 255, 255, 0.1) -9.86%,
    rgba(255, 255, 255, 0) 49.16%,
    rgba(255, 255, 255, 0.1) 109.33%
  );
  backdrop-filter: blur(2px);
  padding: 15px 25px;

  font-size: 15px;
  color: var(--light);
  display: inline-block;
}

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

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

.bannerContentIconWrap {
  margin: 10px 0;
}

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

.bannerStudentImgWrap {
  position: relative;
}

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

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

.mainFormWrap {
  /* width: 80%; */
  display: flex;
  justify-content: end;
  align-items: center;
}

.bannerUpperFormWrap {
  width: 85%;
  height: auto;
}

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

/* hero section */

.herosection {
  margin: 25px 20px 0 20px;
  background: url("../images/banner/heroBg.jpg");
  border-radius: 24px;
  padding: 30px;
}

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

/* feature section */

.featureText {
  font-family: var(--funnel-display);
  text-align: center;
  color: var(--secondary);
  font-size: 25px;
}

.featureContentWrap {
  display: flex;
}

.featureShadow {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1;
}

.featureTextWrap {
  position: relative;
  z-index: 5;
}

.featureCard {
  display: flex;
  justify-content: center;
  /* align-items: center; */
  position: relative;

  border-radius: 24px;
  border: 1px solid var(--Radial, #262626);
  background: #f8f8ff;
  overflow: hidden;
  height: 275px;
  padding: 0 20px;
  width: 300px;
}

.featureContentWrap {
  display: flex;
  justify-content: space-evenly;
}

.cardPersonImgWrap {
  /* position: absolute;
  bottom: 0;
  left: 0;
  right: 0; */
}

.featureTextWrap {
  margin-top: 80px;
}

.featureCard2 {
  margin-top: 275px;
}

.featureTextWrap {
}

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

/* key benefit section */

.highlightImg1 {
  position: relative;
}

.highImg1 {
  position: absolute;
  top: -1px;
  left: -26px;
  z-index: -1;
  width: 250px;
  height: auto;
}

.benefitContentWrap {
  background: url("../images/banner/benefitBg.jpg");
  padding: 10px 30px;
  border-radius: 30px;
}

.benefitHead {
  font-size: 1.25rem;
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 10px !important ;
}

.benefitPointer li {
  list-style: disc;
  margin-left: 15px;
  margin-bottom: 8px;
  color: #d4d4d4;
  font-size: 15px;
}

.benefitBox {
  padding: 25px 0;
  border-bottom: 1px solid #183963;
}

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

.reviewCard {
  border-radius: 30px;
  background: url("../images/banner/reviewBg.png");
  padding: 30px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  border: 19px solid rgba(3, 31, 66, 0.1);

  position: relative;
  z-index: 5;

  backdrop-filter: blur(75.69499969482422px);
}

.quoteImg {
  width: 90px !important;
  height: auto !important;
}

.reviewContentText {
  color: #303337;
  height: 115px;
}

.testimonialCarousel .item {
  padding: 40px 0;
  position: relative;
  width: 90%;
  margin: 0 auto;
}

.testimonialCarousel .owl-item {
  transform: scale(0.8);
  opacity: 0.3;
}

.testimonialCarousel .owl-item.active.center {
  transform: scale(1);
  opacity: 1;
}

.reviewHighLight1 {
  position: absolute;
  top: -50px;
  left: -55px;
  width: 160px !important;
  height: auto;
  z-index: -1;
}

.reviewHighLight2 {
  position: absolute;
  bottom: -45px;
  right: -50px;
  width: 138px !important;
  height: auto;
}

.reviewerName {
  font-family: var(--funnel-display);
  font-size: 20px;
  margin-top: 30px !important;
}

img.navTriggerImg.customPrevBtn {
  position: absolute;
  bottom: 23%;
  left: 39%;
}

img.navTriggerImg.customNextBtn {
  position: absolute;
  bottom: 23%;
  right: 39%;
}

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

/* syllabus section */

.syllabusSection .container {
  background: url("../images/banner/contentBg.jpg");
  padding: 30px;
  border-radius: 30px;
}

.syllabusHeadWrap {
  border-radius: 24px;
  background: radial-gradient(
    31.97% 60.17% at 48.08% -17.94%,
    #031f42 0%,
    #3db166 100%
  );

  padding: 20px 0 20px 20px;
}

.syllabusSection .nav-link {
  border-radius: 10px;
  background: #eaf8ef;
  color: var(--secondary);
  font-weight: 600;
  font-family: var(--funnel-display);
  margin: 10px 0;
  text-align: start;
  padding: 14px 20px;
  width: 94%;
  transition: all 0.2s ease-in-out;

  display: flex;
  justify-content: space-between;
}

.syllabusSection .nav-link.active {
  border-radius: 10px 0 0 10px;
  width: 100%;
}

.nav-pills .nav-link.active {
  color: var(--secondary);
  background: #eaf8ef !important;
}

.highlightSyllabusImg {
  position: relative;
  z-index: 5;
}

.highlightSyllabusImg1 {
  position: absolute;
  top: 3px;
  left: -26px;
  z-index: -1;
  width: 180px;
  height: auto;
}

.syllabusArrowImg {
  width: 30px;
  height: auto;
  display: none;
  transition: all 0.2s ease-in-out;
}

.syllabusSection .nav-link.active .syllabusArrowImg {
  display: block;
}

.boxTickIcon {
  width: 20px;
  height: auto;
}

.dottedBorder {
  border-bottom: 1px dashed #262626;
}

.syllabusSection .tab-pane {
  padding: 0 30px;
}

.tabSectionTitle {
  font-family: var(--funnel-display);
  font-weight: 600;
  font-size: 22px;
}

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

/* cta section */

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

.ctaSection .marqueeWrap {
  position: absolute;
  top: 168px;
  z-index: 5;
}

.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(--secondary);
}

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

.ctaFormWrap {
  width: 440px;
}

.ctaImgWrap {
  position: relative;
  z-index: 5;
}

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

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

/* about us section */

.highAboutImg {
  position: absolute;
  top: -4px;
  left: -10px;
  width: 128px;
  height: auto;
  z-index: -1;
}

.aboutSection .sectionTitle span {
  position: relative;
  z-index: 5;
}

.aboutSection {
  background: url("../images/banner/aboutBg.png");
  position: relative;
  z-index: -1;
}

.aboutContent {
  width: 80%;
  margin: 0 auto;
  color: #303337;
  text-align: center;
}

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

/* why section */

.whySection .container {
  background: url("../images/banner/whyBg.jpg");
  border-radius: 10px;
  position: relative;
  z-index: -1;
}

.titleText {
  color: var(--secondary);
  position: relative;
}

.highWhyImg {
  position: absolute;
  top: 1px;
  left: 2px;
  z-index: -1;
  width: 276px;
  height: auto;
}

.whyBgContentWrap {
  width: 90%;
  margin: 0 auto;
  text-align: center;
}

.aboutHead {
  font-weight: 600;
  font-family: var(--funnel-display);
  font-size: 22px;
  line-height: normal;
  color: var(--light);
  text-align: start;
}

.aboutContentText {
  color: var(--light);
  text-align: start;
  font-size: 14px;
}

.aboutImgIcon {
  width: 55px;
  height: auto;
}

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

.aboutHeadWrap {
  margin-left: 30px;
  width: 350px;
  text-wrap: balance;
  display: flex;
  align-items: center;
}

.aboutContentWrap {
  display: flex;
  align-items: center;
}

.aboutContentTextWrap {
  width: 530px;
  /* text-wrap: balance; */
  text-align: start;
}

.aboutImgWrap {
  margin-left: 30px;
}

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

.bannerSubText {
  position: relative;
}

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

/* 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(--secondary);
}

.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(255, 255, 255, 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: 10px;
  color: var(--gray);
}

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

/* media query */

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

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

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

  .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;
  }

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

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

  .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;
  }

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

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

  .bannerUpperFormWrap {
    margin-top: 35px;
  }

  .herosection {
    margin: 15px;
    /* background: url(../images/banner/heroBg.jpg); */
    border-radius: 24px;
    padding: 20px 10px;
  }

  .bannerSubText {
    text-align: center;
  }

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

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

  .featureContentWrap {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  .featureCard {
    width: 100%;
    margin-bottom: 20px;
  }

  /* benefit section */

  .highImg1 {
    width: 185px;
    height: auto;
  }

  .benefitContentWrap {
    padding: 15px;
    margin-top: 30px;
  }

  .highlightSyllabusImg1 {
    position: absolute;
    top: 3px;
    left: -12px;
    z-index: -1;
    width: 124px;
    height: auto;
  }

  /* cta section */
  .desktopFixedCta {
    display: none;
  }

  /* review section */

  .testimonialCarousel .item {
    width: 100%;
  }

  .reviewCard {
    border-radius: 15px;
  }

  .reviewContentText {
    height: auto;
  }

  img.navTriggerImg.customPrevBtn {
    position: absolute;
    bottom: 0%;
    left: 33%;
  }

  img.navTriggerImg.customNextBtn {
    position: absolute;
    bottom: 0;
    right: 33%;
  }

  /* about section */

  .highAboutImg {
    width: 93px;
  }

  .aboutContent {
    width: 100%;
  }

  .highWhyImg {
    display: none;
  }

  /* syllabus section */

  .syllabusSection .container {
    padding: 15px;
  }

  .syllabusHeadWrap {
    padding: 15px;
  }

  .syllabusSection .nav-link {
    width: 100%;
    border-radius: 10px;
  }

  .syllabusSection .nav-link.active {
    border-radius: 10px;
    width: 100%;
  }

  img.syllabusArrowImg {
    transform: rotate(90deg);
  }

  .syllabusContentWrap {
    margin: 20px 0;
  }

  .syllabusSection .tab-pane {
    padding: 0 7px;
  }

  /* why section */

  .titleText {
    color: var(--primary);
    padding: 0 !important;
  }

  /* about section */

  .aboutDivWrap {
    display: flex;
    flex-direction: column;
  }

  .aboutImgWrap {
    margin-left: 0px;
  }

  .aboutContentWrap {
    display: flex;
    flex-direction: column;
  }

  .aboutHeadWrap {
    margin-left: 0px;
    width: 100%;
  }

  .aboutContentTextWrap {
    width: 100%;
    margin-top: 15px;
  }

  section.whySection.bgSetup {
    margin: 0 10px;
  }

  /* mboile fixed cta */

  .footercontentwrap {
    margin-bottom: 40px;
  }

  .mobileFixedCta {
    display: block;
  }

  .ctaImgWrap {
    display: none;
  }

  /* marquee */

  .ctaSection .marqueeWrap {
    position: relative;
    top: 0;
  }

  .universityNameText {
    font-size: 35px;
  }

  /* feature section */

  .featureText {
    text-wrap: balance;
    font-size: 19px;
  }

  .featureTextWrap {
    margin-top: 95px;
  }

  .featureCard {
    height: 200px;
  }
}

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

@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;
  }

  .pageTitle {
    font-size: 26px;
  }

  .arw1,
  .arw2 {
    display: none;
  }

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

  .herosection {
    margin: 15px 5px;
    border-radius: 24px;
    padding: 20px 10px;
  }

  .fillBtn {
    padding: 9px 10px;
    font-size: 14px;
  }

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

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

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

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

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

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

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

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

/* extra css */

.accordion-item {
  margin: 20px 0;
  border-radius: 10px;
  border-bottom: 1px solid var(--primary) !important;
  border-right: 1px solid var(--primary) !important;
  border-left: 1px solid var(--primary) !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 var(--primary) !important;
}

.navCenterTab {
  border-radius: 50px;
  border: 1px solid var(--light);
  color: var(--light);
  background: var(--primary);

  padding: 10px 15px !important;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
}

.emiContent {
  color: var(--light);
  background: var(--primary);
  display: inline-block;
  padding: 13px 20px !important;
  border-radius: 30px;
  font-weight: 600;
  text-transform: uppercase;
}

.accordion-body li {
  list-style: disc;
  margin-left: 20px;
}

@media only screen and (max-width: 768px) {
  .emiContent {
    font-size: 12px;
  }
}
#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;
}