@import url("https://fonts.googleapis.com/css2?family=Geom:ital,wght@0,300..900;1,300..900&display=swap");

@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap");

/* @font-face {
  font-family: AT-NameSansText-Regular;
  src: url("../assets/fonts/AT_Name_ans_Text_Trial/ATNameSansTextTrial-Regular.otf");
} */

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

:root {
  --light: #fff;
  --dark: #000;
  --red: #fd4500;
  --Geom: "Geom", sans-serif;
  --Outfit: "Outfit", sans-serif;
  --radius-1: 16px;
  --radius-2: 24px;
  --radius-full: 100px;
  --primary: #1972e8;
  --primary-2: #25367c;
  --text-color: #373435;
  --text-color-2: #5e5e5e;
  --text-placeholder: #838383;
  --dark-blue: #182a63;
}

html {
  font-size: 16px !important;
  overflow-x: hidden;
}

body {
  overflow-x: hidden !important;
  -webkit-transition: all 0.45s ease;
  -o-transition: all 0.45s ease;
  transition: all 0.45s ease;
  font-family: var(--Geom);
  padding-right: 0px !important;
}

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

body::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  border-radius: 10px;
  -webkit-transition: all 2s ease;
  transition: all 2s ease;
  background-color: #ffffff00;
}

body::-webkit-scrollbar {
  width: 9px;
  background-color: #ffffff00;
}

body::-webkit-scrollbar-thumb {
  border-radius: 10px;
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.2);
  background-color: #cfcfcf;
}

.toggle-up {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background: var(--dark-blue);
  width: 45px;
  height: 45px;
  border-radius: 100px;
  position: fixed;
  bottom: 0%;
  right: 1.25%;
  color: var(--light);
  z-index: 999;
  cursor: pointer;
  opacity: 0;
  -webkit-transform: translateY(50px);
  -ms-transform: translateY(50px);
  transform: translateY(50px);
  -webkit-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
}

.toggle-up.show {
  opacity: 1;
  -webkit-transform: translateY(-20px);
  -ms-transform: translateY(-20px);
  transform: translateY(-20px);
  -webkit-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
}

.toggle-up i {
  font-size: 1.15rem;
}

/* form loader css */

.form-loader-div {
  display: none;
}

.form-loader {
  width: 25px;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 3px solid #b5acac;
  border-right-color: var(--light);
  -webkit-animation: l2 0.35s infinite linear;
  animation: l2 0.35s infinite linear;
}

@-webkit-keyframes l2 {
  to {
    -webkit-transform: rotate(1turn);
    transform: rotate(1turn);
  }
}

@keyframes l2 {
  to {
    -webkit-transform: rotate(1turn);
    transform: rotate(1turn);
  }
}

/* form loader css */

.compensate-for-scrollbar {
  margin-right: 0px !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-bottom: 0rem;
}

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

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

a {
  text-decoration: none;
}

p {
  margin-bottom: 0rem;
}

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

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

button:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.max-content {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}

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

.invert {
  -webkit-filter: invert(1);
  filter: invert(1);
}

.rotate {
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}

.rotate-180 {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

.mirror {
  -webkit-transform: scaleX(-1);
  -ms-transform: scaleX(-1);
  transform: scaleX(-1);
}

.letter-spacing {
  letter-spacing: 1.05px;
}

.text-shadow {
  text-shadow: 0px 2px 10px rgba(46, 74, 81, 0.3);
}

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

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

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

.border-t {
  border-top: 1px solid #94d2bd80;
}

.border-b {
  border-bottom: 1px solid #94d2bd80;
}

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

.custom-container {
  width: 85vw;
  max-width: 90%;
  margin: auto;
}

.custom-container-2 {
  width: 90vw;
  max-width: 100%;
  margin: auto 0 auto auto;
}

.header-container {
  position: fixed;
  top: 1vw;
  width: 100%;
  left: 0;
  z-index: 11;
  -webkit-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
}

.navbar-container {
  position: fixed;
  top: 0;
  padding: 2rem 8rem;
  left: 0;
  z-index: 2;
  border-radius: 0 0 50px 0;
  background: #fff;
  -webkit-box-shadow: -4px 9px 25px -6px #d2d9ee;
  box-shadow: -4px 9px 25px -6px #d2d9ee;
}

.logo {
  -webkit-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
  width: 13vw;
  max-width: 100%;
  position: relative;
}

.logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.m-n3 {
  margin: 0 0 0 -3rem;
}

.m-n2 {
  margin: -2rem 0 0 0;
}

.section-heading {
  position: relative;
  z-index: 4;
}

.custom-container {
  width: 90%;
  margin: auto;
  max-width: 100%;
}

section.main-banner {
  /* margin: 8vw 0 0 0; */
  position: relative;
  z-index: 1;
}

section.main-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: url("../assets/images/banner/banner.jpg ") no-repeat center
    center/cover;
  z-index: -1;
}

.scrolling-wrapper {
  width: 100%;
  overflow: hidden;
  background: var(--primary-2);
}

.scrolling-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  will-change: transform;
  padding: 0.65rem 0.5rem;
  gap: 5rem;
  -webkit-animation: scrolling 30s linear infinite;
  animation: scrolling 30s linear infinite;
}

.scrolling {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0.8rem;
  white-space: nowrap;
  color: var(--light);
  font-size: 1rem;
}

@-webkit-keyframes scrolling {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}

@keyframes scrolling {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}

.banner-container {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: auto 1.5rem 25vw;
  grid-template-columns: auto 25vw;
  gap: 1.5rem;
  margin: 1.5rem auto auto auto;
  place-items: center;
}

.banner-container .banner-content-1 {
  position: relative;
  padding: 0 1rem 0rem 1rem;
}

.content-img-txt {
  display: grid;
  gap: 0.5rem;
  grid-template-columns: auto;
  transition: all 0.5s ease;
}

.content-img {
  width: 100%;
  height: 100%;
}

.content-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  position: relative;
  z-index: 1;
  overflow: visible;
}

.content-txt {
  margin: 0 0 0 0;
  position: relative;
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 1.75rem;
}

.content-txt .banner-title {
  font-weight: 700;
  text-transform: capitalize;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  color: #f7f9f8;
  font-size: 2.5vw;
}

.content-txt .banner-title.font-400 {
  font-weight: 400;
}

.content-txt .banner-title.dark {
  color: var(--text-color);
}

.banner-plan {
  padding: 0.55rem 0.85rem;
  color: #fff9f2;
  font-weight: 700;
  font-size: 1.15vw;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  border-radius: 14px;
  border: 1px solid var(--light);
  background-color: transparent;
}

.banner-info {
  color: #fff9f2;
  font-size: 1vw;
  font-weight: 400;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.banner-container .banner-content-2 {
  width: 100%;
}

.banner-form-content {
  border: 1px solid rgba(118, 16, 191, 0.25);
  background: var(--light);
  overflow: hidden;
  width: 100%;
  backdrop-filter: blur(5px);
  border-radius: 16px;
  background: rgba(0, 0, 0, 0);
}

.banner-form {
  background: var(--light);
  margin: 0.5rem;
  border-radius: 24px;
  /* border: 1px solid #dde5ff; */
  /* padding: 1rem; */
}

.banner-form .form-head .form-title {
  color: #373435;
  text-align: center;
  font-size: 1.35vw;
  background-color: #ffb320;
  padding: 1rem;
  border-radius: 24px 24px 0 0;
  font-weight: 600;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.banner-form .form-head .form-subtitle {
  color: #373435;
  text-align: center;
  font-size: 0.8vw;
  font-weight: 700;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  border-radius: 100px;
  padding: 0.65rem 0.5rem;
  background: rgba(10, 147, 150, 0.2);
}

.banner-form .form-body {
  padding: 1rem;
}

/* floating label css */

.did-floating-label-content {
  position: relative;
  background-color: #0a939612;
  border-radius: 8px;
}

.did-floating-label {
  color: var(--text-placeholder);
  font-size: 1rem;
  font-weight: normal;
  position: absolute;
  pointer-events: none;
  left: 15px;
  z-index: 9;
  top: 50%;
  padding: 0 5px;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  -o-transition: 0.35s ease all;
  transition: 0.35s ease all;
  -moz-transition: 0.35s ease all;
  -webkit-transition: 0.35s ease all;
}

.did-floating-label.mobile {
  left: 15%;
}

.did-floating-input,
.did-floating-select {
  font-size: 1rem;
  display: block;
  width: 100%;
  padding: 0.75rem 0.55rem;
  color: #323840;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  background-color: transparent;
  border-radius: 8px !important;
  overflow: hidden;
}

.did-floating-input.mobile {
  border-radius: 0 8px 8px 0 !important;
}

.did-floating-input:focus,
.did-floating-select:focus {
  outline: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  background-color: var(--light);
}

.did-floating-input:not(:-moz-placeholder-shown),
.did-floating-select:not(:-moz-placeholder-shown) {
  background-color: var(--light);
}

.did-floating-input:not(:-ms-input-placeholder),
.did-floating-select:not(:-ms-input-placeholder) {
  background-color: var(--light);
}

.did-floating-input:not(:-moz-placeholder-shown),
.did-floating-select:not(:-moz-placeholder-shown) {
  background-color: var(--light);
}

.did-floating-input:not(:-ms-input-placeholder),
.did-floating-select:not(:-ms-input-placeholder) {
  background-color: var(--light);
}

.did-floating-input:not(:-moz-placeholder-shown),
.did-floating-select:not(:-moz-placeholder-shown) {
  background-color: var(--light);
}

.did-floating-input:not(:-ms-input-placeholder),
.did-floating-select:not(:-ms-input-placeholder) {
  background-color: var(--light);
}

.did-floating-input:not(:placeholder-shown),
.did-floating-select:not(:placeholder-shown) {
  background-color: var(--light);
}

.did-floating-input:focus ~ .did-floating-label,
.did-floating-select:focus ~ .did-floating-label {
  top: 0;
  font-size: 0.9rem;
  background-color: var(--light);
  z-index: 999;
}

select.did-floating-select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

select.did-floating-select::-ms-expand {
  display: none;
}

.did-floating-input:not(:-moz-placeholder-shown) ~ .did-floating-label {
  top: 0;
  font-size: 0.9rem;
  background-color: var(--light);
}

.did-floating-input:not(:-ms-input-placeholder) ~ .did-floating-label {
  top: 0;
  font-size: 0.9rem;
  background-color: var(--light);
}

.did-floating-input:not(:placeholder-shown) ~ .did-floating-label {
  top: 0;
  font-size: 0.9rem;
  background-color: var(--light);
}

.did-floating-select:not([value=""]):valid ~ .did-floating-label {
  top: 0;
  background-color: var(--light);
  font-size: 0.9rem;
}

.did-floating-select[value=""]:focus ~ .did-floating-label {
  background-color: var(--light);
  top: 0;
  font-size: 0.9rem;
}

.input-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.input-group .did-floating-input {
  border-radius: 8px 0 0 8px;
  border-left: 0;
  padding-left: 0;
}

.input-group-append {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.input-group-prepend {
  background-color: transparent;
}

.input-group-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-weight: 400;
  height: 100%;
  color: var(--text-placeholder);
  padding: 0 5px 0 20px;
  font-size: 0.95rem;
  text-align: center;
  white-space: nowrap;
  border-radius: 8px 0 0 8px;
  background-color: transparent;
  border-right: none;
}

.did-floating-label-content:focus-within .input-group-text {
  background-color: var(--light);
}

/* floating label css */

.form-check-label {
  color: #666;
  font-weight: 400;
  font-size: 0.9vw;
  margin: -0.15rem 0 0 0.5rem !important;
}

.custom-container-3 {
  width: 95%;
  margin: auto 0 auto auto;
}

.form-check-input:checked {
  background-color: var(--primary);
  border-color: var(--primary);
}

.form-check.agree input {
  cursor: pointer !important;
}

.form-body .form-check-input {
  width: 1.35rem;
  height: 1.35rem;
}

.btnPrimary {
  border-radius: 12px;
  border: 1px solid rgba(100, 24, 60, 0);
  background: var(--primary);
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  color: var(--light) !important;
  padding: 0.55rem 1.25rem;
  font-weight: 500;
  font-size: 1.25rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0.75rem;
}

.btnPrimary.btnTransparent {
  border: 1px solid #f7f9f8;
  background: transparent;
  color: var(--light) !important;
}

.btnPrimary.btn-banner {
  font-size: 1vw;
}

.btnPrimary.dark {
  border: 1px solid var(--primary-2);
  background: #1972e8;
}

.section-heading .section-title {
  color: var(--primary-2);
  font-size: 2.15vw;
  font-weight: 700;
  /* white-space: nowrap; */
  -webkit-transition: all 0.45s ease;
  -o-transition: all 0.45s ease;
  transition: all 0.45s ease;
}

.section-heading .section-title.light {
  color: var(--light);
}

.section-heading .section-title.dark {
  color: var(--dark);
}

.section-heading .section-desc {
  font-size: 1vw;
  -webkit-transition: all 0.45s ease;
  -o-transition: all 0.45s ease;
  transition: all 0.45s ease;
  color: var(--primary-2);
  font-weight: 400;
}

.flex-width {
  width: 50%;
}

section.section-overview {
  padding: 5rem 0;
}

.overview-content-container {
  margin: 2.5rem auto;
}

.overview-carousel .owl-stage {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.overview-carousel .owl-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.overview-carousel .owl-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 1rem;
  margin: 1.25rem auto auto auto;
}

.overview-carousel .owl-nav button {
  width: 45px;
  height: 45px;
  border-radius: 100px;
  border: 1px solid var(--text-placeholder) !important;
}

.overview-carousel .owl-nav button img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.overview-carousel .owl-dots {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0.35rem;
  margin: 1.25rem auto auto auto;
}

.overview-carousel .owl-dots button {
  width: 10px;
  border-radius: 100px;
  height: 3px;
  opacity: 0.65;
  background-color: var(--text-placeholder) !important;
  -webkit-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
}

.overview-carousel .owl-dots button.active {
  width: 20px;
  opacity: 1;
  -webkit-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
}

.overview {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
}

.overview-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  height: 100%;
  gap: 3rem;
  border-radius: 12px;
  border: 1px solid #89ccb5;
  margin: 0 5px;
  background: var(--light);
}

.overview-content .overview-icon {
  width: 90%;
  border-radius: 12px 0;
  background: rgba(148, 210, 189, 0.3);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  padding: 1.5rem 0 1.5rem 1rem;
}

.overview-content .overview-icon img {
  width: 4rem !important;
  height: 4rem !important;
  -o-object-fit: contain;
  object-fit: contain;
}

.overview-content .overview-txt {
  padding: 0 1rem 0.5rem 1rem;
  color: var(--primary-2);
  text-transform: capitalize;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  font-size: 1.15vw;
  font-weight: 500;
}

.overview-desc {
  color: var(--primary-2);
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  font-size: 1.15rem;
  font-weight: 400;
}

section.section-about {
  padding: 1rem 0;
}

.about-container {
  padding: 2.5rem;
  border-radius: 16px;
  border: 1px solid #fc4500;
  background: linear-gradient(
    180deg,
    rgba(252, 69, 0, 0) 0%,
    rgba(252, 69, 0, 0.06) 100%
  );
  box-shadow: -8px -5px 50px 0 rgba(245, 168, 30, 0.1) inset;
}

section.section-highlight {
  padding: 2rem 0;
}

.highlight-container {
  display: -ms-grid;
  display: grid;
  /* -ms-grid-columns: 28vw 2rem auto 2rem 28vw; */
  grid-template-columns: auto 60vw;
  place-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;

  /* display: flex;
  justify-content: center; */
  gap: 2rem;
}

.highlight-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(2, 1fr);
}

/* .highlight-3 {
  width: 70%;
} */

.high-heading-title {
  color: var(--primary-2);
  font-size: 1.85vw;
  font-weight: 700;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.high-content {
  border-radius: 16px;
  border: 1px solid rgba(255, 179, 31, 0.3);
  background: linear-gradient(
    175deg,
    rgba(244, 168, 30, 0.2) 17.67%,
    rgba(244, 168, 30, 0) 65.39%
  );

  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 1rem;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: flex-start;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 1rem;
  /* height: 100%; */
  margin: 2rem 0 0 0;
}

.high-content small {
  color: #393637;
  font-weight: 700;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  font-size: 1.25vw;
}

.high-content strong {
  color: var(--primary-2);
  font-weight: 700;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  font-size: 3.75vw;
}

.high-content-img {
  width: 15dvw;
  height: 15dvh;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.high-content-img img {
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.high-img {
  width: 100%;
  height: 100%;
}

.high-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.high-line {
  width: 100%;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  height: 3px;
  background-color: var(--primary-2);
  position: relative;
}

.high-line::before {
  content: "";
  position: absolute;
  width: 15px;
  top: 50%;
  left: 0;
  border-radius: 100px;
  height: 15px;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  background-color: var(--primary-2);
}

.high-line::after {
  content: "";
  position: absolute;
  width: 15px;
  top: 50%;
  right: 0;
  border-radius: 100px;
  height: 15px;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  background-color: var(--primary);
}

.why_box {
  position: relative;
  width: 100%;
  height: 200px;
  padding: 25px 20px;
  border-radius: 16px;
  border: 1px solid rgba(255, 179, 31, 0);
  background: linear-gradient(
    180deg,
    rgba(244, 168, 30, 0.03) 0%,
    rgba(244, 168, 30, 0.18) 100%
  );
  box-shadow: -8px -8px 27.9px 0 rgba(244, 168, 30, 0.1) inset;
  margin-top: 30px;
}

.why_div {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.why_div img {
  width: 60px !important;
  height: 60px;
}

.why_div p {
  font-family: var(--geom);
  font-size: 18px;
  color: var(--primary-2y);
  text-transform: capitalize;
  margin: 0;
}

.section-partners {
  padding: 4rem 0 5rem 0;
  position: relative;
  overflow: hidden;
}

.partners-slider {
  position: relative;
  margin-top: 2.5rem;
  overflow: hidden;
}

.logo-column {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  height: 100%;
}

.logo-cell {
  height: 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 1rem;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border-right: 1px solid rgba(148, 210, 189, 0.5);
  border-bottom: 1px solid rgba(148, 210, 189, 0.5);
}

.logo-column .logo-cell:last-child {
  border-bottom: none;
}

.logo-cell img {
  width: 138px;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.partners-slider::before,
.partners-slider::after {
  content: "";
  position: absolute;
  top: 0;
  width: 24px;
  height: 100%;
  background: var(--light);
  z-index: 3;
  pointer-events: none;
}

.partners-slider::before {
  left: 0;
}

.partners-slider::after {
  right: 0;
}

.swiper-pagination-partners {
  margin-top: 28px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.swiper-pagination-partners .swiper-pagination-bullet {
  width: 10px;
  border-radius: 100px;
  -webkit-transition: all 1.1s ease;
  -o-transition: all 1.1s ease;
  transition: all 1.1s ease;
  background: #d0d4e8;
  opacity: 1;
}

.swiper-pagination-partners .swiper-pagination-bullet-active {
  -webkit-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
  width: 25px;
  background-color: var(--dark-blue) !important;
}

section.section-scholarships {
  padding: 4rem 0;
  position: relative;
  /* background: rgba(253, 69, 0, 0.05); */
  overflow: hidden;
}

.scholar-title {
  position: relative;
  border-radius: 12px;
  width: -webkit-max-content;
  width: -moz-max-content;
  margin: 1.5rem auto auto auto;
  width: max-content;
  border: 1px solid rgba(3, 31, 66, 0);
  background-color: var(--primary);
  font-size: 1.25vw;
  color: var(--light);
  padding: 1rem 2.5rem;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

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

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

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

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

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

.scholarship-bg-text {
  position: absolute;
  bottom: -16%;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  font-size: 16vw;
  font-weight: 800;
  color: #ff4301;
  opacity: 0.09;
  white-space: nowrap;
  z-index: 0;
}

.scholarship-card {
  background-color: var(--light);
  border-radius: 24px;
  padding: 1rem;
  height: 100%;
  border: 1px solid var(--light);
  position: relative;
}

.scholarship-card img {
  width: 100%;
  border-radius: 12px;
  margin-bottom: 16px;
}

.scholarships-title {
  font-size: 1.15vw;
  color: var(--primary-2);
  font-weight: 700;
}

.scholarships-box {
  border-radius: 12px;
  background: rgba(255, 179, 31, 0.1);
  padding: 8px 17px;
  margin-top: 1rem;
}

.scholarships-box .scholarships-desc {
  font-size: 1vw;
  color: #031f42;
  font-weight: 500;
}

section.section-program {
  padding: 4rem 0;
}

.program-content {
  padding: 0rem 3rem;
  border-radius: var(--radius-1);
  border: 1px solid #94d2bd;
  background: rgba(148, 210, 189, 0.1);
  position: relative;
  width: 100%;
  margin: 4rem auto auto auto;
}

/* .program-title {
  position: absolute;
  top: 0;
  border-radius: 12px;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  border: 1px solid rgba(3, 31, 66, 0);
  background:
    -o-linear-gradient(bottom, #0a9396 0%, #0a9396 100%),
    -o-radial-gradient(-13.28% -35.34%, 69.94% 74.85%, #005f73 0%, #0a9396 100%);
  background:
    -webkit-gradient(linear, left bottom, left top, from(#0a9396), to(#0a9396)),
    radial-gradient(69.94% 74.85% at -13.28% -35.34%, #005f73 0%, #0a9396 100%);
  background:
    linear-gradient(0deg, #0a9396 0%, #0a9396 100%),
    radial-gradient(69.94% 74.85% at -13.28% -35.34%, #005f73 0%, #0a9396 100%);
  left: 50%;
  font-size: 1.25vw;
  color: var(--light);
  padding: 1rem 2.5rem;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.program-title::before {
  content: "";
  position: absolute;
  left: -9px;
  top: 50%;
  border: 1px solid #94d2bd;
  background-color: var(--light);
  border-radius: var(--radius-full);
  -webkit-transform: translate(0%, -50%);
  -ms-transform: translate(0%, -50%);
  transform: translate(0%, -50%);
  width: 17px;
  height: 17px;
}

.program-title::after {
  content: "";
  position: absolute;
  right: -9px;
  top: 50%;
  border: 1px solid #94d2bd;
  background-color: var(--light);
  border-radius: var(--radius-full);
  -webkit-transform: translate(0%, -50%);
  -ms-transform: translate(0%, -50%);
  transform: translate(0%, -50%);
  width: 17px;
  height: 17px;
} */

.program-points {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 1.75rem;
  margin: 4rem auto;
}

.program-points .point-title {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  border-radius: 100px;
  border: 1px solid #94d2bd;
  background: var(--light);
  font-weight: 700;
  color: var(--primary);
  padding: 0.75rem 2rem;
  font-size: 1.5vw;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.program-points .point-subtitle {
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  color: var(--primary-2);
  font-weight: 700;
  font-size: 1.5vw;
}

.program-line {
  border: 1px dashed rgba(24, 42, 99, 0.5);
  width: 1px;
  height: 100%;
}

.exp-content {
  border-radius: var(--radius-1);
  border: 1px solid #94d2bd;
  background: rgba(148, 210, 189, 0.1);
  margin: 1.5rem auto;
  padding: 2rem;
}

.exp-content h2 {
  color: var(--primary-2);
  font-weight: 700;
  font-size: 1.25rem;
}

.exp-content p {
  color: var(--primary-2);
  font-weight: 400;
  font-size: 1rem;
}

section.section-career {
  padding: 2rem 0;
}

.career-list {
  margin: 2rem 0 0 0;
}

.career-list strong {
  font-size: 1.25rem;
  font-weight: 600;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  color: var(--primary-2);
}

.career-list .dot {
  width: 6px;
  border-radius: var(--radius-full);
  height: 6px;
  background-color: var(--primary-2);
}

.career-list .txt {
  font-size: 1.1rem;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  font-weight: 600;
  color: var(--primary-2);
}

/* section.section-contact {
  padding: 3rem 0;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

section.section-contact::after {
  content: "";
  inset: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  position: absolute;
  background: url("../assets/images/sectionImg/ctaBg.jpg") no-repeat center
    center/cover;
} */

.contact-section-form .banner-form-content {
  max-width: 90%;
  width: 28rem;
}

.contact-container {
  width: 85%;
  margin: auto;
}

.contact-overlay {
  position: absolute;
  top: 49%;
  left: 0%;
  -webkit-transform: translate(-50%, -50%) rotate(5deg);
  -ms-transform: translate(-50%, -50%) rotate(5deg);
  transform: translate(-50%, -50%) rotate(5deg);
  z-index: -1;
}

.contact-overlay .scrolling-wrapper {
  background: var(--primary);
  padding: 1.5rem;
}

.contact-overlay .scrolling {
  font-size: 8vw;
}

footer {
  padding: 1.175rem 0.5rem;
  color: var(--light);
  text-align: center;
  background-color: var(--primary-2);
  font-family: var(--Plus-Jakarta-Sans);
  font-size: 1rem;
  font-weight: 700;
}

.modal-form .banner-form-content {
  border: unset;
  background: transparent;
  border-radius: unset;
}

.modal-logo {
  width: 15rem;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  max-width: 90%;
}

.modal-logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.modal-form .banner-form {
  margin: 0rem;
  border-radius: unset;
  border: unset;
  padding: 0rem;
}

.modal-close {
  width: 55px;
  height: 55px;
  cursor: pointer;
}

.modal-close img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

/* thank you css */
section.section-thankyou {
  height: 100dvh;
  max-height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.thankyou-title {
  text-align: center;
  margin: 0.35rem 0 0 0;
  font-weight: 500;
}

.thankyou-subtitle {
  text-align: center;
  font-weight: 400;
  text-wrap: balance;
  opacity: 0.85;
  margin: 0.5rem 0 0 0;
}

.go_txt {
  font-size: 15px;
  color: #000;
  color: var(--light);
  background-color: var(--secondary) !important;
  border-radius: 3.125rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 15px 30px;
  margin: 15px auto 0;
}

.about-pointers {
  margin: 20px 0px;
  font-size: 1vw;
}

.about-pointers li {
  font-size: 1vw;
}

.about-subtitle {
  color: var(--primary);

  font-size: 1.4rem;
  font-style: normal;
  font-weight: 600;
  margin-bottom: 10px;
}

section.section-elibility {
  background: #f7f9f8;
}

section.section-admission {
  padding: 3rem 0;
}

/* *******section girl starts****** */
.section-counselling-bg {
  position: relative;
  padding: 3rem 0;
  background: url("../assets/images/sectionImg/ctaBg.png") no-repeat center
    center/cover;
}

/* .section-counselling-bg::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 36%;
  height: 100%;
  background: rgb(5 111 102 / 74%);
} */

.foot-form {
  width: 25%;
  position: relative;
  z-index: 1;
  margin: 2rem 6em auto auto;
}

.btn-dng {
  background: var(--primary) !important;
  transition: all 0.3s ease;
}

.btn-dng:hover {
  box-shadow: 0 0 8px rgba(255, 59, 106, 0.6), 0 0 16px rgba(255, 59, 106, 0.4),
    0 0 24px rgba(255, 59, 106, 0.25);
  transform: translateY(-2px);
}

.btn-dng:active {
  transform: translateY(0);
}

/* wrapper inside each carousel item */
.partnerCarousel .item > div {
  display: grid;
  grid-template-rows: repeat(5, 1fr);
  border-left: 1px solid #e5e5e5;
  border-top: 1px solid #e5e5e5;
}

/* each logo cell */
.partnerCarousel .item > div > div {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  border-right: 1px solid #e5e5e5;
  border-bottom: 1px solid #e5e5e5;
}

/* logo image */
.partnerCarousel .picImg {
  max-width: 100%;
  max-height: 100px;
  object-fit: contain;
}

/* *******section girl ends****** */

/*********** media query *********/

@media only screen and (max-width: 1400px) {
  .custom-container {
    width: 95%;
  }

  .banner-container {
    -ms-grid-columns: auto 1rem 28vw;
    grid-template-columns: auto 28vw;
    gap: 1rem;
    margin: 1.25rem auto auto auto;
  }

  .content-txt {
    gap: 1.5rem;
    margin: 0 0 0 0;
  }

  .content-txt .banner-title {
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
    font-size: 3vw;
  }

  .banner-plan {
    font-size: 1.35vw;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }

  .banner-info {
    font-size: 1.25vw;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }

  .contact-overlay {
    top: 48%;
  }
}

@media only screen and (max-width: 1200px) {
  .did-floating-label,
  .input-group-text {
    font-size: 0.925rem;
  }

  .did-floating-input,
  .did-floating-select {
    font-size: 0.925rem;
    padding: 0.625rem 0.45rem;
  }

  .did-floating-label.mobile {
    left: 22%;
  }

  .btnPrimary {
    padding: 0.45rem 1.15rem;
    font-size: 1.21rem;
  }

  .scholarship-bg-text {
    bottom: -13%;
  }

  .scholarships-title {
    font-size: 1.4vw;
  }

  .scholarships-box .scholarships-desc {
    font-size: 1.25vw;
  }

  .contact-overlay {
    top: 57dvh;
  }

  .contact-section-form .banner-form .form-head .form-subtitle {
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
    width: 100%;
  }

  .contact-overlay {
    top: 47%;
  }

  .section-counselling-bg::after {
    width: 100%;
    height: 100%;
  }

  .foot-form {
    width: 25rem;
    max-width: 95%;
    position: relative;
    z-index: 1;
    margin: auto auto auto auto;
  }
}

@media only screen and (max-width: 1080px) {
  .banner-container {
    place-items: center;
    gap: 1.5rem;
    -ms-grid-columns: 1fr;
    grid-template-columns: repeat(1, 1fr);
  }

  .banner-form .form-head .form-title {
    font-size: 3vw;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }

  .banner-form .form-head .form-subtitle {
    font-size: 1.85vw;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    margin: auto;
  }

  .did-floating-label.mobile {
    left: 7%;
  }

  .did-floating-input,
  .did-floating-select {
    font-size: 1rem;
    padding: 0.725rem 0.45rem;
  }

  .did-floating-label,
  .input-group-text {
    font-size: 1rem;
  }

  .form-check-label {
    font-size: 1.85vw;
  }

  .contact-overlay {
    top: 57dvh;
  }

  .contact-overlay {
    top: 47.5%;
  }
}

@media only screen and (max-width: 991px) {
  .navbar-container {
    padding: 1.75rem 6rem;
  }

  .logo {
    -webkit-transition: all 1s ease;
    -o-transition: all 1s ease;
    transition: all 1s ease;
    width: 25vw;
  }

  .banner-form .form-head .form-title {
    font-size: 4vw;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }

  .banner-form .form-head .form-subtitle {
    font-size: 2.5vw;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
    padding: 0.65rem 1rem;
  }

  .content-txt {
    gap: 0.75rem;
  }

  .did-floating-label.mobile {
    left: 65px;
  }

  .form-check-label {
    font-size: 2vw;
  }

  .content-txt .banner-title {
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
    font-size: 4vw;
  }

  .banner-info {
    font-size: 2vw;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }

  .banner-plan {
    font-size: 2.25vw;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }

  .section-heading .section-title {
    font-size: 3vw;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }

  .section-heading .section-desc {
    font-size: 1.65vw;
    -webkit-transition: all 0.45s ease;
    -o-transition: all 0.45s ease;
    transition: all 0.45s ease;
  }

  .about-pointers li {
    font-size: 1.65vw;
  }

  .overview-content .overview-txt {
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
    padding: 0 1rem 1rem 1rem;
    font-size: 1.75vw;
  }

  .overview-desc {
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
    font-size: 1rem;
  }

  .highlight-container {
    -ms-grid-columns: 1fr;
    grid-template-columns: repeat(1, 1fr);
    gap: 4rem;
    place-items: center;
  }

  .highlight-container .highlight-1 {
    order: 2;
  }

  /* .highlight-container .highlight-3 {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  } */

  .highlight-container .highlight-2 {
    order: 1;
  }

  .high-heading-title {
    font-size: 3.5vw;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }

  .high-content small {
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
    font-size: 2.25vw;
  }

  .high-content strong {
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
    font-size: 6vw;
  }

  .high-content-img {
    width: 25dvw;
    height: 25dvh;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }

  .logo-cell img {
    width: 150px;
  }

  .scholarships-title {
    font-size: 1.65vw;
  }

  .scholarships-box .scholarships-desc {
    font-size: 1.55vw;
  }

  .program-title {
    font-size: 2.25vw;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }

  .program-points .point-title {
    font-size: 2.5vw;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }

  .program-points .point-subtitle {
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
    font-size: 2vw;
  }

  .contact-overlay {
    display: none;
  }

  .contact-container {
    width: 90%;
    margin: auto;
  }

  .contact-section-form .banner-form-content {
    max-width: 100%;
    width: 100%;
  }

  .scholar-title {
    font-size: 2.25vw;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }

  .custom-container-3 {
    width: 100%;
    margin: auto auto auto auto;
  }
}

@media only screen and (max-width: 767px) {
  section.section-overview {
    padding: 3rem 0;
  }

  .about-subtitle {
    font-size: 1rem;
  }

  .section-heading .section-title {
    font-size: 3.5vw;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }

  .section-heading .section-desc {
    font-size: 2.25vw;
    -webkit-transition: all 0.45s ease;
    -o-transition: all 0.45s ease;
    transition: all 0.45s ease;
  }

  .about-pointers li {
    font-size: 2.25vw;
  }

  .overview-content .overview-txt {
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
    font-size: 2.5vw;
  }

  .scholarship-bg-text {
    bottom: -4%;
  }

  .scholarships-title {
    font-size: 2.5vw;
  }

  .scholarships-box .scholarships-desc {
    font-size: 2.15vw;
  }

  .program-content {
    padding: 0rem 1.5rem;
    border: 1px solid #94d2bd;
    background: rgba(148, 210, 189, 0.1);
    position: relative;
    width: 100%;
    margin: 4rem auto auto auto;
  }

  .program-title {
    font-size: 3.25vw;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }

  .program-points .point-title {
    font-size: 3.25vw;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }

  .program-points .point-subtitle {
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
    font-size: 3.5vw;
  }

  .program-line {
    width: 100%;
    height: 1px;
  }

  .exp-content {
    padding: 1.5rem 1rem;
  }

  .about-pointers li {
    font-size: 3vw;
  }

  .highlight-grid {
    grid-template-columns: repeat(1, 1fr);
  }
  .flex-width {
    width: 100%;
  }
}

@media only screen and (max-width: 576px) {
  .navbar-container {
    padding: 1.25rem 2rem;
  }

  .logo {
    -webkit-transition: all 1s ease;
    -o-transition: all 1s ease;
    transition: all 1s ease;
    width: 38vw;
  }

  .content-txt .banner-title {
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
    font-size: 5.25vw;
  }

  .content-txt {
    margin: 0 0 1rem 0;
  }

  .banner-info {
    font-size: 3vw;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }

  .banner-plan {
    font-size: 3vw;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }

  .banner-form .form-head .form-title {
    font-size: 5vw;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
    text-wrap: balance;
  }

  .banner-form .form-head .form-subtitle {
    font-size: 3vw;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }

  .form-check-label {
    font-size: 15px;
  }

  .btnPrimary {
    font-size: 3.15vw;
  }

  .btnPrimary.dark {
    font-size: 1.175rem;
  }

  .section-heading .section-title {
    font-size: 5.75vw;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }

  .section-heading .section-desc {
    font-size: 3vw;
    -webkit-transition: all 0.45s ease;
    -o-transition: all 0.45s ease;
    transition: all 0.45s ease;
  }

  .about-pointers li {
    font-size: 3vw;
  }

  .overview-content .overview-txt {
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
    font-size: 3.5vw;
    padding: 0;
  }

  .about-container {
    padding: 1.25rem;
  }

  .high-heading-title {
    font-size: 5vw;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }

  .high-content {
    margin: 1.25rem 0 0 0;
  }

  .high-content small {
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
    font-size: 3.85vw;
  }

  .high-content strong {
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
    font-size: 8vw;
  }

  .high-content-img {
    width: 60%;
    height: 128px;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }

  .logo-cell img {
    width: 150px;
  }

  .scholarships-title {
    font-size: 3.25vw;
  }

  .scholarships-box .scholarships-desc {
    font-size: 3vw;
  }

  .scholarship-bg-text {
    bottom: -3%;
  }

  .program-title {
    font-size: 4vw;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }

  .program-points .point-title {
    font-size: 4.75vw;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }

  .program-points .point-subtitle {
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
    font-size: 3.85vw;
  }

  .career-list strong {
    font-size: 1.2rem;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }

  .career-list .dot {
    width: 8px;
    height: 8px;
    padding: 4px;
    margin: 5px;
  }

  .career-list .txt {
    font-size: 0.95rem;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }

  .modal-logo {
    width: 10rem;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }

  .scholar-title {
    font-size: 5vw;
    padding: 0.85rem 1.5rem;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }

  .overview-content {
    display: flex;
    flex-direction: row;
    gap: 1rem;
    align-items: center;
    padding: 1rem;
  }

  .overview-content .overview-icon {
    width: 65px;
    height: 65px;
    border-radius: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem;
  }

  .overview-content .overview-icon img {
    width: 2.25rem !important;
    height: 2.25rem !important;
    object-fit: contain;
  }

  .section-partners {
    padding: 3rem 0;
  }

  .partnerCarousel .picImg {
    max-height: 60px;
  }
}

@media only screen and (max-width: 450px) {
  .logo-cell img {
    width: 120px;
  }

  .scholarships-box .scholarships-desc {
    font-size: 3.55vw;
  }

  .scholarships-title {
    font-size: 3.85vw;
  }
}

/* new navbar css */

/* 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: 250px;
  height: auto;
}

.scrollNavbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: transparent;
  z-index: 999;
  background: #fff;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;

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

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

.contact1wrap {
  display: inline-block;
}

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

.fillBtn {
  border-radius: 12px;
  border: 2px solid #1972e8;
  background: #1972e8;
  padding: 10px 19px;
  display: flex;
  align-items: center;
  color: #fff;
  transition: all 0.3s ease-in-out;
  font-weight: 600;
}

.fillBtn.fillBtn2 {
  border-radius: 12px;
  background: #ffb320;
  border: 2px solid #ffb320;
  color: #373435;
  transition: all 0.3s ease-in-out;
  font-weight: 600;
}

.fillBtn:hover {
  background: #fff;
  color: #1972e8;
}

.fillBtn2:hover {
  background: #fff;
  color: #373435;
}

.desktopView {
  display: block;
}

.mobileView {
  display: none;
}

.arw2 {
  display: none;
}

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

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

/* cta button */

.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: 1px solid #fff;
  background: var(--primary);
  border-radius: 50%;
  padding: 5px;
}

.mobileFixedCta {
  display: none;
  background: var(--primary-2);
  position: fixed;
  bottom: 0;
  right: 0;
  border-top: 2px solid var(--light);
  left: 0;
  z-index: 99999;
}

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

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

@media only screen and (max-width: 768px) {
  .logoimg {
    width: 170px;
  }

  .section-counselling-bg {
    background: unset !important;
  }

  .section-counselling-bg #ctaForm {
    border: 2px solid #ffb320 !important;
  }

  .desktopView {
    display: none;
  }

  .mobileView {
    display: block;
    font-size: 3vw;
  }

  .fillBtn {
    padding: 5px 10px !important;
  }

  .highlight-3 {
    width: 100%;
  }

  .headEnquirepopup {
    display: none;
  }

  .mobileFixedCta {
    display: block;
  }

  footer {
    margin-bottom: 41px;
  }

  .desktopFixedCta {
    display: none;
  }
}

/* new */
.section-heading .scholar-title {
  font-size: 30px; /* pura text ka size */
  text-align: center;
  font-weight: 500;
  margin-top: 10px;
}

.section-heading .scholar-title strong {
  font-size: 42px; /* sirf 4 Lakhs ka size */
  font-weight: 700;
  /* color: #000; */
}

/* Mobile */
@media (max-width: 768px) {
  .section-heading .scholar-title {
    font-size: 20px;
  }

  .section-heading .scholar-title strong {
    font-size: 30px;
  }
}

.eligibility-card {
  border-radius: 20px;
  border: 1px solid rgba(27, 33, 48, 0.23);
  background: #fff;
  margin: 20px 0px;
  padding: 20px;
}
