/* import statement */

@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: #a46080;
  --secondary: #010101;
  --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;
  position: relative;
  z-index: 10;
}

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

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

.text-justify {
  text-align: justify;
}

.sectionpad {
  padding: 70px 0;
}

.sectionpadtop {
  padding-top: 70px;
}

.sectionpadbottom {
  padding-bottom: 70px;
}

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

.sectionTitle {
  font-family: var(--Queen);
  color: var(--primary);
  text-align: left;
  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: var(--primary);
  color: var(--light);
  padding: 10px 20px;
  text-align: center;
  border-radius: 10px 10px 0 0;
  z-index: 100;
  border: 2px solid #fff;
}

.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;
  border: 2px solid #fff;
}

.fillBtn {
  padding: 10px 20px;
  font-size: 16px;
  font-weight: 600;
  background: var(--primary);
  color: var(--light);
  border-radius: 30rem;
  display: inline-block;
  transition: all 0.3s ease-in-out;
  position: relative;
  z-index: 666;
  border: 1px solid var(--primary);
  display: flex;
  justify-content: center;
  align-items: center;
  /* width: 200px; */
}

.fillBtn:hover {
  background: var(--light);
  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: transparent;
  color: var(--primary);
  display: inline-block;
  transition: all 0.3s ease-in-out;
  position: relative;
  z-index: 666;
  border-radius: 30rem;
  border: 1px solid var(--primary);
  display: flex;
  justify-content: center;
  align-items: center;
  /* width: 250px; */
}

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

.outlineBtn .arw1 {
  display: none;
}

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

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

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

/* navbar */

.navbarsection .container {
  background-color: rgb(255, 240, 247);
  padding: 15px;
  border-radius: 0 0 25px 25px;
}

.scrollNavbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: transparent;
  z-index: 999;

  /* hidden state */
  transform: translateY(-100%);
  opacity: 0;
  visibility: hidden;

  /* smooth transition */
  transition: transform 0.4s ease, opacity 0.4s ease;
}

.scrollNavbar.show {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

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

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

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

.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 {
  font-family: var(--Queen);
  color: var(--secondary);
  font-size: 20px;
}

.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: 490px;
  left: -70px;
}

.lineHighlightText {
  position: relative;
}

/* .lineHighlightText::after {
  content: "";
  background: url(../images/elements/ele1.svg) no-repeat center center / cover;
  position: absolute;
  width: 100%;
  height: auto;
  bottom: 0;
  left: 0;
  z-index: -1;
  background-size: 100% 100%;
} */

.lineHighlightText::after {
  /* content: url("../images/elements/ele1.svg"); */
  content: "";
  background: url(../images/elements/ele1.svg) no-repeat center center / cover;
  position: absolute;
  width: 46%;
  height: 65%;
  bottom: -12px;
  left: 0;
  z-index: -1;
  background-size: 100% 100%;
}

.herosection {
  background: url("../images/banner/gridBg.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

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

/* why section */

.whySection .container {
  border-radius: 24px;
  border: 2px solid #a46080;
  background: #fff5fa;
  padding: 30px;
  position: relative;
}

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

.line2HighlightText::after {
  /* content: url("../images/elements/ele1.svg"); */
  content: "";
  background: url(../images/elements/ele1.svg) no-repeat center center / cover;
  position: absolute;
  width: 105%;
  height: 65%;
  bottom: -7px;
  left: -4px;
  z-index: -1;
  background-size: 100% 100%;
}

.whyStudentWrap {
  position: absolute;
  bottom: 0;
  left: 80px;
  width: 40%;
  height: auto;
}

.whyContentWrap {
  color: var(--gray);
}

.starTickIcon {
  width: 20px;
  height: 25px;
}

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

/* about section */

.line3HighlightText,
.line4HighlightText,
.line5HighlightText,
.line6HighlightText,
.line7HighlightText {
  position: relative;
  z-index: 5;
}

.aboutContentWrap {
  width: 70%;
  margin-left: 60px;
}

.aboutContentWrap2 {
  width: 100%;
  margin-left: 60px;
}

.line3HighlightText::after {
  /* content: url("../images/elements/ele1.svg"); */
  content: "";
  background: url(../images/elements/ele1.svg) no-repeat center center / cover;
  position: absolute;
  width: 186%;
  height: 72%;
  bottom: -10px;
  left: -89px;
  z-index: -1;
  background-size: 100% 100%;
}

.line4HighlightText::after {
  /* content: url("../images/elements/ele1.svg"); */
  content: "";
  background: url(../images/elements/ele1.svg) no-repeat center center / cover;
  position: absolute;
  width: 180%;
  height: 52%;
  bottom: -7px;
  left: -88px;
  z-index: -1;
  background-size: 100% 100%;
}

.line5HighlightText::after {
  /* content: url("../images/elements/ele1.svg"); */
  content: "";
  background: url(../images/elements/ele1.svg) no-repeat center center / cover;
  position: absolute;
  width: 200%;
  height: 34%;
  bottom: 0;
  left: -73px;
  z-index: -1;
  background-size: 100% 100%;
}

.line6HighlightText::after {
  content: "";
  background: url(../images/elements/ele1.svg) no-repeat center center / cover;
  position: absolute;
  width: 106%;
  height: 54%;
  bottom: -17px;
  left: -75px;
  z-index: -1;
  background-size: 100% 100%;
}

.line7HighlightText::after {
  content: "";
  background: url(../images/elements/ele1.svg) no-repeat center center / cover;
  position: absolute;
  width: 106%;
  height: 51%;
  bottom: -12px;
  left: -9px;
  z-index: -1;
  background-size: 100% 100%;
}

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

/* objective section */

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

.circleBg::before {
  content: "";
  border-radius: 100%;
  opacity: 1;
  background: #fcf4fa;
  width: 45rem;
  height: 40rem;
  position: absolute;
  top: -55px;
  left: -30%;
  transform: translate(50%, 0);
  z-index: -1;
}

.objectiveContentWrap2 {
  margin-left: 60px;
}

.objectiveIcon {
  width: 60px;
  height: auto;
}

.objectiveCardWrap {
  background: var(--light);
  padding: 20px 30px;
  border-radius: 15px;
  box-shadow: 0 0 10px 5px rgba(0, 0, 0, 0.1);
  font-size: 18px;
  text-wrap: balance;

  transition: all 0.2s ease-in-out;
}

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

.objectiveCardWrap:hover .objectiveIcon {
  filter: brightness(0) saturate(100%) invert(100%) sepia(100%) saturate(2%)
    hue-rotate(119deg) brightness(102%) contrast(101%);
}

.slightUpper {
  margin-top: -40px;
}

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

/* benefit section */

.benefitSection {
  position: relative;
  z-index: 55;
}

.benefitIcon {
  width: 50px;
  height: auto;
}

.benefitText {
  font-size: 18px;
}

.benefitStudentImgWrap {
  width: 80%;
}

.triangleWrap {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 44%;
  z-index: -1;
}

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

/* cta section */

.ctaStudentImgWrap {
  width: 70%;
}

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

/* program section */

.programSection {
  background: #fef7fb;
}

.programImgWrap {
  width: 60%;
}

.programCard {
  padding: 20px;
  background: url("../images/banner/programBg.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom;
  font-size: 18px;
  font-weight: 600;
  width: 70%;
  border-radius: 15px;
  color: var(--primary);
  border: 1px solid var(--primary);
  transition: all 0.2s ease-in-out;
  text-transform: capitalize;
}

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

.programImgWrap img {
  /* margin-bottom: -50px; */
}

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

/* program requirement section */

.reqWrapper {
  background: var(--primary) url("../images/banner/reqBg.png") center / cover
    no-repeat;
  padding: 40px 30px;
  border-radius: 25px;
  height: 470px;
}

.reqCardWrap {
  display: flex;
  padding: 20px;
  border-radius: 18px;
  border: 1px solid transparent;
  transition: all 0.2s ease-in-out;
}

.reqCardWrap:hover {
  border: 1px solid var(--light);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.requirementImgWrap {
  width: 78%;
}

.reqList li {
  list-style: none;
  position: relative;
  padding-left: 30px; /* space for image */
  color: var(--light);
}

.reqList li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px; /* adjust vertical alignment */
  width: 16px;
  height: 16px;
  background-image: url("../images/icon/pointerArrow.svg");
  background-size: contain;
  background-repeat: no-repeat;
}

.reqCounter {
  font-size: 35px;
  font-family: var(--Outfit);
  color: var(--light);
}

.reqHeadText {
  color: var(--light);
  font-weight: 600;
  font-size: 20px;
}

.reqCardText {
  margin-top: 9px;
}

.scroll-box {
  height: 385px;
  overflow-y: scroll;
}

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

/* scholarship section */

.scholarshipSection {
  background: #fef7fb;
  margin-top: 60px;
  position: relative;
  height: 650px;
}

.feesBtn {
  color: var(--light);
  background: var(--primary);
  border: 1px solid var(--primary);
  padding: 10px 18px !important;
  border-radius: 30rem;
  display: inline-block;
  text-align: center;
  transition: all 0.2s ease-in-out;
}

.feesBtn:hover {
  background: var(--light);
  color: var(--dark);
}

.scholarshipCard {
  position: relative;
}

.scholarshipContentCard {
  position: relative;
  height: 300px;
}

.stext {
  position: absolute;
}

.stext1 {
  top: 155px;
}

.stext2 {
  bottom: -50px;
}

.stext3 {
  top: 50px;
}

.stext4 {
  top: 155px;
}

.stext5 {
  bottom: -50px;
}

.scholarshipInfoText {
  display: flex;
  align-items: center;
  background: transparent;
  font-size: 16px;
  border: 1px solid var(--primary);
  border-radius: 30rem;
  padding: 10px 30px !important;
  line-height: 20px !important;
  transition: all 0.2s ease-in-out;
}

.scholarshipInfoText:hover {
  background: var(--light);
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.scholarshipIcon {
  width: 35px;
  height: auto;
}

.scholarshipStudentImgWrap {
  display: flex;
  justify-content: center;
  width: 35%;
  margin: 0 auto;

  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
}

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

/* cta section */

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

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

.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: 90px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--primary);
  font-family: var(--Queen);
}

.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 */

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

/* about section */

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

/* syallbus section */

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

/* 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: transparent;
  border-radius: 18px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  /* height: 87%; */
  width: 88%;
}

.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(--primary);
  backdrop-filter: blur(10px);
  text-align: center;
  padding: 15px 0px;
}

.bannerFormWrap {
  /* border-radius: 16px; */
  border: 1px solid #e0e0e0;
  border-radius: 16px;
  background: #faecf5;
  padding: 20px 15px;
  border-radius: 0 0 20px 20px;
}

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

.bannerFormHead .formtitle {
  color: #fff;
  font-family: var(--Outfit);
  font-size: 17px;
  font-weight: 500;
  text-transform: uppercase;
}

.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(--primary);
  position: fixed;
  bottom: 0;
  right: 0;
  left: 0;
  z-index: 99999;
}

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

.formTerms {
  font-size: 11px;
  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;
  }

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

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

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

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

  .desktopView {
    display: none !important;
  }

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

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

  p {
    font-size: 14px;
  }

  .sectionpad {
    padding: 40px 0;
  }

  .sectionpadtop {
    padding-top: 40px;
  }

  .sectionpadbottom {
    padding-bottom: 40px;
  }

  /* hero banner section */

  .pageTitle {
    font-size: 29px;
  }

  .bannerStudent {
    display: none;
  }

  p {
    font-size: 16px;
  }

  .sectionTitle {
    font-size: 24px;
    text-align: center;
  }

  .desktopFixedCta {
    display: none;
  }

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

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

  .outlineBtn {
    font-size: 14px;
    padding: 10px 15px;
  }

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

  .lineHighlightText::after {
    width: 85%;
  }

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

  .whySection .container {
    height: 680px;
  }

  .whyStudentWrap {
    position: absolute;
    bottom: 0;
    left: 35px;
    width: 90%;
    height: auto;
  }

  /* --------------------------- */
  .aboutContentWrap {
    width: 90%;
    margin-left: 15px;
    margin-top: 25px;
  }

  .aboutSection2 .row {
    flex-direction: column-reverse;
    gap: 10px 0;
  }

  .aboutContentWrap2 {
    width: 90%;
    margin-left: 15px;
  }

  .slightUpper {
    margin-top: 18px;
  }

  .objectiveContentWrap2 {
    margin-left: 15px;
    margin-top: 30px;
  }

  .benefitIcon {
    width: 40px;
    height: auto;
  }

  .benefitText {
    font-size: 16px;
  }

  .programCard {
    width: 100%;
  }

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

  .reqWrapper {
    background: var(--primary) url(../images/banner/reqBg.png) center / cover
      no-repeat;
    padding: 40px 15px;
    border-radius: 0px;
    height: auto;
  }

  /* highlighter css */

  .line6HighlightText::after {
    width: 106%;
    height: 54%;
    bottom: -6px;
    left: -51px;
    z-index: -1;
    background-size: 100% 100%;
  }

  .navTriggerImg {
    filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(0%)
      hue-rotate(286deg) brightness(103%) contrast(103%);
  }

  .reqCardWrap {
    border: 1px solid var(--light);
  }

  .scholarshipSection {
    background: #fef7fb;
    margin-top: 0px;
    position: relative;
    height: 810px;
  }

  .pageSubtitleWrap p {
    font-size: 18px !important;
  }

  .scholarshipContentCard {
    position: relative;
    height: unset;
  }

  .stext {
    position: relative;
    margin-top: 20px !important;
  }

  .stext1,
  .stext2,
  .stext3,
  .stext4,
  .stext5 {
    top: unset;
    bottom: unset;
  }

  .scholarshipStudentImgWrap {
    width: 100%;
  }

  .ctaFormWrap {
    width: auto;
  }

  .programImgWrap {
    width: 60%;
    margin-bottom: -24px;
  }

  .benefitStudentImgWrap {
    width: 65%;
  }

  .ctaStudentImgWrap img {
    display: none;
  }

  .universityNameText {
    font-size: 55px;
  }

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

  .bannerUpperFormWrap {
    width: 100%;
  }

  .reqHeadText {
    font-size: 16px;
  }

  .reqList li {
    font-size: 14px;
  }

  .reqHeadText {
    font-size: 16px;
  }
}

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

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

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

  .fillBtn {
    padding: 5px 8px;
    font-size: 14px;
  }

  .outlineBtn {
    font-size: 13px;
  }

  .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 */

  .durationImg {
    margin-top: 10px;
  }

  .mobileFixedCta {
    display: block;
    border-top: 1px solid #fff;
  }

  .footercontentwrap {
    margin-bottom: 43px;
  }

  .ctaImgWrap {
    display: none;
  }

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

  p {
    font-size: 14px;
  }

  img.arw1,
  img.arw2 {
    width: 23px;
    height: auto;
  }

  .whyStudentWrap {
    width: 80%;
    height: auto;
  }

  .pageSubtitleWrap p {
    font-size: 18px !important;
  }

  .reqCounter {
    font-size: 26px;
  }

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

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

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

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

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

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