@import url('https://fonts.googleapis.com/css2?family=Lato:wght@100;300;400;700&family=Fira+Sans+Condensed:wght@100;300;400;700&family=Merriweather:ital,opsz,wght@0,18..144,300..900;1,18..144,300..900&display=swap');
/* Dynamic Font Styles for Headings */

:root {
  --primary-color: #a20319;
  --secondary-color: #ecb250;
  --blue: #003366;
}

h1 {
  font-family: 'Fira Sans Condensed', sans-serif;
  font-size: 2.083vw;
  /* Adjust size as needed */
  font-weight: 700;
  /* Bold for emphasis */
  line-height: 1.2;
  color: #333;
  /* Adjust to match your theme */
}

h2 {

  font-family: 'Lato', sans-serif;
  font-size: 1.667vw;
  font-weight: 600;
  line-height: 1.1;
  color: #444;
}

h3 {
  font-family: 'Merriweather', serif;
  font-size: 1.458vw;
  font-weight: 400;
  line-height: 1.4;
  color: #555;
}

h4 {
  font-family: 'Lato', sans-serif;
  font-size: 1.25vw;
  font-weight: 400;
  line-height: 1.5;
  color: #666;
}

body {
  overflow-x: hidden;
  overflow-y: scroll;
  margin: 0;
  padding: 0;
}

body.home {
  background: #134168;
}

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

.text-black {
  color: #000 !important;
}

.banner {
  height: 100vh;
  border-bottom: 3.5vh solid #003366;
  border-radius: 0 0 2vw 2vw;
  overflow: hidden;
  background: #003366;
  position: relative;
}

.banner::after {
  content: '';
  height: 7vh;
  width: 100%;
  position: absolute;
  bottom: -7vh;
  z-index: 14;
  left: 0;
  /* background-image: url(../images/yellowbarlines.png); */
  background-position: 95%;
  background-size: contain;
  background-repeat: no-repeat;
}

.banner .banner-img {
  height: 100%;
  width: 100%;
  display: block;
  object-fit: cover;
}

.banner .hd-btm {
  position: absolute;
  bottom: 10vw;
  left: 4vw;
  color: white;
  font-size: 1.042vw;
  font-weight: 500;
  z-index: 2;
  text-align: left;
  align-items: center;
  padding-left: 45px;
}

.banner-video {
  position: absolute;
  bottom: 5vw;
  width: 25vw;
  height: 13vw;
  right: 7vw;
  border-radius: 3vh;
  overflow: hidden;
  box-shadow: 0 0 15px #494949;
}

.banner-video video {
  height: 100%;
  width: 100%;
  display: block;
  object-fit: cover;
}

.banner:before {
  content: '';
  height: 120px;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  background: linear-gradient(180deg, #134168 -20%, transparent);
}

.banner .play-btn {
  top: auto;
  bottom: 10%;
  left: 7%;
  transform: none;
  height: 2.5vw;
  width: 2.5vw;
  font-size: 2vw;
  outline: none;
  color: #000;
  background: #fff;
  opacity: 1;
}

.breadcrumb-item+.breadcrumb-item::before {
  content: var(--bs-breadcrumb-divider, ">");
  color: var(--blue);
}

.breadcrumb {
  font-size: 1vw;
  margin-bottom: 3rem;
}

.breadcrumb-item {
  color: var(--blue);
}

.breadcrumb-item a {
  color: var(--blue);
  text-decoration: none;
}

.breadcrumb-item.active {
  color: var(--blue);
  font-weight: 600;
  text-transform: uppercase;
}

.main {
  background: #fff;
  padding: 2vw;
}

.menu-section {
  padding: 2vw 2vw;
  background: var(--blue);
  border: 7px solid #fff5e6;
  box-shadow: 0 0 5px gray;
  border-radius: 20px;
}

.menu-section h3 {
  /* text-transform: uppercase; */
  padding: 10px 20px;
  background: #fff5e6;
  display: inline-block;
  color: var(--blue);
  border-radius: 1vw 0;
  margin-bottom: 2vh;
  box-shadow: 0 0 5px gray;
  font-family: 'Poppins', sans-serif;
}

.menu-section ul {
  padding-inline-start: 0;
  list-style: none;
}

.menu-section li {
  padding: 15px 0;
  border-bottom: 1px dotted #ffffff;
  font-size: 1.2vw;
  line-height: 1.6vw;
  position: relative;
}

.menu-section li:last-child {
  border-bottom: none;
}

.menu-section li a {
  color: #ffffff;
  text-decoration: none;
}

.menu-section li.active a,
.menu-section li:hover a {
  font-weight: 600;
  color: #ffffff;
  text-decoration: underline;
  transition: all 0.5s linear;
}

li.active:after {
  content: '';
  height: 70%;
  width: 5px;
  background: var(--secondary-color);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0px;
}

/* li.active:after {
  content: '';
  height: 32px;
  width: 5px;
  background: var(--secondary-color);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: -15px;
} */
/* li.active a:after{
  content: '';
    height: 32px;
    width: 5px;
    background: var(--secondary-color);
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: -15px;
    margin-left: 0;
} */

/* .dropdown-toggle.show .dropdown-menu li a {
  text-decoration: none;
} */
.menu-section li.active .dropdown-menu li .dropdown-item {
  text-decoration: none !important;
  font-weight: unset;
}

.menu-section li.active .dropdown-menu li .dropdown-item:hover {
  text-decoration: underline !important;
  font-weight: 600;
}

li.brand.active::after {
  height: 18% !important;
  top: 32px;
}

.dropdown-menu li.active a:after {
  display: none;
}

.menu-section .dropdown-menu.show {
  right: auto !important;
  left: 0 !important;
  position: relative !important;
  width: 100%;
  margin-top: 10px !important;
  background: transparent;
  border-left: none;
  transform: unset !important;
}

.menu-section .dropdown-menu.show li {
  padding: 0px;
  border-bottom: 0;
}

.menu-section .dropdown-menu.show li a {
  padding: 0rem 2rem;
  color: var(--secondary-color);
}

.dropdown-item:focus,
.dropdown-item:hover {
  background-color: transparent;
  font-weight: 600;
  text-decoration: underline;
}

.founder-slider .left-slide {
  width: 50%;
  height: 65vh;
}

.founder-slider .right-slide {
  width: 50%;
  height: 65vh;
  overflow: visible;
}

.founder-slider .left-slide img {
  display: block;
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: top;
}

.left-slide {
  border-radius: 2vw;
  border: .5vw solid var(--blue);
}

.founder-slider .slider-buttons {
  display: flex;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}

.founder-slider .swiper-slide {
  background-color: #fff;
}

.contain-text {
  padding: 2vw;
  padding-right: 0;
  text-align: left;
  font-size: 1vw;
  line-height: 1.4vw;
}

.rounded-box {
  display: inline-flex;
  align-items: center;
  padding: 10px 30px;
  border: 1px solid var(--blue);
  border-radius: 15px;
  color: var(--blue);
  /* font-weight: 600; */
  margin-bottom: 20px;
  font-family: 'Merriweather', serif;
  /* font-style: italic; */
  font-size: 1.5vw;
  line-height: 2vw;
  letter-spacing: 1px;
}

.rounded-box .icon {
  height: 4vw;
  width: 4vw;
  display: block;
  margin-right: 10px;
}


.rounded-box .icon img {
  width: 100%;
  height: auto;
}

.contain-text p {
  padding-left: 4vw;
  line-height: 2.3vw !important;
  text-align: justify;
}

.founder-slider {
  overflow: hidden;
  margin: 5vh 0 3vh;
}

.founder-slider .name {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: -10%;
  padding: 20px;
  width: 8vw;
  height: 8vw;
  background: var(--secondary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2vw;
  line-height: 1.8vw;
  text-align: center;
  color: #fff;
  font-weight: 900;
  border-radius: 15px;
  font-family: 'Lato';
  box-shadow: 0 0 5px gray;
}

.main p {
  /* color: var(--blue); */
  font-size: 1vw;
  line-height: 1.9vw;
  font-family: 'Merriweather', serif;
  letter-spacing: 1px;
}

.foundation-logo {
  width: 55%;
  margin-bottom: 2rem;
}

.highlighted-text {
  padding: 3vw 2vw;
  background: var(--blue);
  color: #fff;
  margin-top: 4vh;
  border-radius: 1rem;
  border-radius: 2vw;
}

.highlighted-text p {
  color: #fff;
}

.side-menu {
  padding: 10vh 0 0;
}

.side-menu h4 {
  padding: 10px 15px;
  background: #fff;
  display: inline-block;
  color: var(--blue);
  border-radius: 1vw 0;
  margin-bottom: 4vh;
  border: 1px solid var(--blue);
  font-family: 'Poppins', sans-serif;
  box-shadow: 2px 2px 5px gray;
}

.side-menu-section {
  height: 20vh;
  border-radius: 3vh;
  overflow: hidden;
  margin-bottom: 3vh;
  padding: 2vh;
  background: #e6e6e6;
  display: flex;
  align-items: self-end;
  position: relative;
  box-shadow: 0 0 5px gray;
  background-size: cover;
  background-position: center;
}

.side-menu-section:after {
  content: '';
  position: absolute;
  height: 1vh;
  width: 100%;
  bottom: 0;
  left: 0;
}

.side-menu-section:first-child::after {
  background: #134168;
}

.side-menu-section:nth-child(2)::after {
  background: #007bc0;
}

.side-menu-section:last-child::after {
  background: #ecb250;
}

.side-menu-section img {
  width: 7vh;
  margin-bottom: 3vh;
  border-radius: 50%;
  box-shadow: 0 0 5px gray;
}

.side-menu-section p {
  color: #fff;
  font-weight: 600;
  margin-bottom: 0;
  font-size: 1.4vw;
  text-shadow: 0 1px BLACK;
}

.wrapper_full_width {
  width: 100%;
  text-align: center;
  position: sticky;
  top: 0;
}

.card-slider {
  display: flex;
  flex-direction: column;
  height: auto;
  position: sticky;
  margin-top: 2rem;
}

.card_wrapper {
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: center;
}

.ScrollSection {
  height: 150vh;
}

.Card {
  width: 90%;
  height: 80vh;
  top: var(--spacing-card);
  border-radius: 20px;
  margin-bottom: 5vw;
  /* padding: 5vw; */
  position: sticky;
}

.is_1 {
  /* background-color: #345262; */
  z-index: 1;
  overflow: hidden;
  /* border: 5px solid var(--blue); */
  /* position: relative; */
}

.is_1:after {
  content: '';
  height: 120px;
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 0;
  background: linear-gradient(0deg, #134168 -20%, transparent);
}

.Card .img-box {
  height: 88%;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
}

.Card.is_1 .img-box img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  border: 8px solid var(--blue);
  border-radius: 20px;
}

.Card.is_1 p {
  position: absolute;
  bottom: 2%;
  right: 2%;
  font-size: 1.5vw;
  color: #ffffff;
  font-weight: 600;
  z-index: 1;
}

.is_2 {

  background-color: #fff5e6;
  z-index: 2;
  padding: 3vw;
}

.is_2 .legacy-video {
  height: 50vh;
  border-radius: 1vw;
  border-bottom: 2vh solid var(--blue);
}

.is_2 .legacy-video .play-btn {
  opacity: 1;
}


.quotes-box {
  width: 80%;
  position: relative;
  /* top: 50%; */
  /* left: 50%; */
  margin: 0 auto;
  /* transform: translate(-50%, -50%); */
  text-align: center;
  background: #fff;
  /* height: 35vh; */
  border-radius: 1vw;
  /* box-shadow: 0 0 10px gray; */
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  /* font-style: italic; */
  font-weight: 600;
}

.quotes-box:after {
  content: '';
  height: 110%;
  width: 103%;
  box-shadow: 0 0 10px #393939;
  position: absolute;
  border-radius: 1vw;
  top: 50%;
  background: #fff5e6;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}

.top-quote {
  position: absolute;
  height: 4vw !important;
  width: auto !important;
  top: -1.3vw;
  left: 14vw;
  mix-blend-mode: darken;
}

.bottom-quote {
  position: absolute;
  height: 4vw !important;
  width: auto !important;
  bottom: 0.5vw;
  right: 13.5vw;
  transform: rotate(180deg);
  mix-blend-mode: darken;

}

.single-card {
  height: 70vh;
}

.single-card .img-box {
  height: 100%;
}

.single-card .quotes-box {
  width: 60%;
  height: auto;
  /* padding: 30px; */
  bottom: 9vh;
  right: 1vw;
  top: auto;
  left: auto;
  transform: none;
  z-index: 1;
}

.quotes-box>div {
  padding: 30px;
  background: #fff;
  border-radius: 1vw;
  height: 100%;
  width: fit-content;
  display: flex;
  justify-content: center;
  align-items: center;
}

.single-card .quotes-box p {
  position: relative;
  margin-bottom: 0;
  line-height: 2.2vw;
}

.gallery {
  height: auto;
  padding-bottom: 12vh;
  padding: 20px 20px 12vh;
}

.gallery h5 {
  text-align: start;
  font-weight: 600;
  margin-bottom: 5px;
}

.gallery h6 {
  text-align: start;
}

.gallery .swiper-button-next {
  bottom: 1vh;
  top: auto;
  height: 8vh;
  width: 8vh;
  border: 2px solid #0da1df;
  background: var(--blue);
  box-shadow: 0px 0px 5px #6f6f6f;
}

.gallery .swiper-button-prev {
  display: flex;
  bottom: 1vh;
  left: auto;
  top: auto;
  right: 5vw;
  transform: none;
  height: 8vh;
  width: 8vh;
  border: 2px solid #0da1df;
  background: var(--blue);
  box-shadow: 0px 0px 5px #6f6f6f;
}

#gallery-section .svg-inside {
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  bottom: auto;
  overflow: hidden;
}

#gallery-section .svg-inside embed {
  position: absolute;
  top: -45%;
  right: -40%;
  width: 120%;
  height: 190%;
  display: block;
}

button.mfp-arrow.mfp-arrow-right.mfp-prevent-close {
  bottom: 2vh;
  top: auto;
  right: 8vh;
  height: 8vh;
  width: 8vh;
  border: 2px solid #0da1df;
  background: var(--blue);
}

button.mfp-arrow.mfp-arrow-left.mfp-prevent-close {
  bottom: 2vh;
  top: auto;
  right: 18vh;
  left: auto;
  height: 8vh;
  width: 8vh;
  border: 2px solid #0da1df;
  background: var(--blue);
}

.mfp-counter {
  display: none;
}

.mfp-arrow:before,
.mfp-arrow:after {
  margin: 0 !important;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.history-cards .Card {
  height: 75vh;
  background-color: #fff;
  box-shadow: 0 0 15px gray;
  border-radius: 2vw;
  padding: 2vw;
}

.mfp-wrap {
  background: #000000b5;
}

.history-cards .icon img {
  width: 55%;
  height: auto;
}

.history-cards .Card.card_1,
.history-cards .Card.card_5,
.history-cards .Card.card_9 {
  border: 1.5vh solid #77b155;
}

.history-cards .Card.card_2,
.history-cards .Card.card_6 {
  border: 1.5vh solid #56aadf;
}

.history-cards .Card.card_3,
.history-cards .Card.card_7 {
  border: 1.5vh solid #3a2b71;
}

.history-cards .Card.card_4,
.history-cards .Card.card_8 {
  border: 1.5vh solid #da6a3b;
}

.card-heading {
  align-items: stretch;
  margin: 0 0 4.5vh 0;
}

.card-heading .left {
  padding-bottom: 1.2vw;
  text-align: center;
  border-radius: 0 0 50px 0;
  border: 2px dotted var(--blue);
  border-top: 0;
  border-left: 0;
  border-right: 0;
}

.card-heading .right {
  padding: 0 2.5vw;
  text-align: center;
  border-radius: 0 0 0px 50px;
  border: 2px dotted var(--blue);
  border-top: 0;
  /* border-left: 0; */
  border-right: 0;
  display: flex;
  align-items: center;
  margin-left: -3px;
}

.card-heading .right h2 {
  font-family: 'Lato';
  /* font-style: italic; */
  font-weight: 400;
  color: var(--blue);
  font-size: 1.867vw;
}

.history-cards p {
  color: #000;
  line-height: 2.2vw;
}

.card_1 {
  z-index: 1;
}

.card_2 {
  z-index: 2;
}

.card_3 {
  z-index: 3;
}

.card_4 {
  z-index: 4;
}

.card_5 {
  z-index: 5;
}

.card_6 {
  z-index: 6;
}

.card_7 {
  z-index: 7;
}

.card_8 {
  z-index: 8;
}

.card_9 {
  z-index: 9;
}

.card_10 {
  z-index: 10;
}

.listing {
  font-size: 1vw;
  line-height: 2.2vw;
  font-family: 'Merriweather', serif;
  letter-spacing: 1px;
}

ul.listing li {
  position: relative;
}

ul.listing>li:before {
  content: '';
  position: absolute;
  height: 6px;
  width: 6px;
  background: #003366;
  top: 2vh;
  /* transform: translateY(-50%); */
  left: -15px;
  border-radius: 50%;
}

ul.inside-list>li:before {
  content: '';
  position: absolute;
  height: 1px;
  width: 7px;
  background: black;
  top: 43%;
  /* transform: translateY(-50%); */
  left: -18px;
}

.patrons-card {
  height: auto;
  padding: 4vh;
  margin-bottom: 6vh;
}

.patrons-card section {
  width: 60%;
  height: 100%;
  margin-left: auto;
  text-align: center;
  opacity: 1;
  display: block;
}

.patrons-card .quotes-box {
  position: relative;
  width: 100%;
  top: auto;
  bottom: auto;
  margin: 10vh 0 8vh;
}

.patrons-card p.name {
  position: relative;
  bottom: auto;
  font-weight: 400;
}

.patrons-card.is_1:after {
  content: '';
  height: 100%;
  width: 61%;
  position: absolute;
  bottom: 0;
  right: 0;
  left: auto;
  z-index: 0;
  background: linear-gradient(90deg, transparent, #134168 10%);
}

.quote-sec {
  margin: 4vw 2vw;
}

.quote-sec .quotes-box {
  position: relative;
  width: 100%
}

.quote-sec .quotes-box p {
  line-height: 2vw;
}

.motto-sec {
  background: var(--secondary-color);
  align-items: center;
  border-radius: 3vh;
  height: 70vh;
  /* overflow: hidden; */

}

.motto-sec .img-sec {
  background: #fff5e6;
  border-radius: 3vh;
  box-shadow: 0 0 10px gray;
  overflow: hidden;
  padding: 1.5vh;
  height: 100%;
}

.img-sec>div {
  height: 100%;
  width: 100%;
}

.motto-sec .img-sec img {
  width: 100%;
  border-radius: 3vh;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.motto-sec p {
  font-size: 1.8vw;
  font-style: italic;
}

.locn a {
  text-decoration: none;
  color: #003366;
}

.text-underline {
  text-decoration: underline !important;
}

.bg-sec {
  background: #fff5e6;
  border-radius: 33px;
  box-shadow: 0 0 10px gray;
  overflow: hidden;
  padding: 1.5vh;
  height: 100%;
  margin-top: 10vh;
  margin-bottom: 6vh;
}

.bg-sec .bg1 {
  background: #fff;
  padding: 3.5vh;
  box-shadow: 0 0 10px gray;
  border-radius: 28px;
}

.growth-plan {
  background: var(--secondary-color);
  padding: 8vh 0;
  margin-bottom: 14vh;
}

.purple-bg {
  background-color: #1a547a !important;
}

.yellow-bg {
  background-color: #407090 !important;
}

.blue-bg {
  background-color: #59839f !important;
}

.green-bg {
  background-color: #80a0b5 !important;
}

.brown-bg {
  background-color: #9ab4c5 !important;
}

.mySwiper-growth {
  height: auto;
}

.mySwiper-growth .swiper-slide {
  height: auto;
}

.mySwiper-growth .swiper-slide>div {
  /* background-color: #7f6384; */
  width: 100%;
  border-radius: 3vh;
  padding: 3vw;
  padding-left: 5vw;
  height: 100%;
}

.mySwiper-growth .swiper-slide>div ul.listing>li:before {
  background: #fff;
}

.mySwiper-growth .swiper-slide>div ul.listing>li.text-gray:before {
  background: #444;
}

.text-gray.info>span.word:before {
  color: #000000 !important;
}

.swiper-pagination-bullet {
  background: #e7e7e7;
  opacity: 1;
}

.swiper-pagination-bullet-active {
  background: #58595b;
}

.growth-plan .swiper-button-next {
  right: var(--swiper-navigation-sides-offset, -50px);
  left: auto;
}

.growth-plan .swiper-button-prev {
  left: var(--swiper-navigation-sides-offset, -54px);
  right: auto;
  display: flex;
}

.growth-plan .swiper-button-prev i,
.growth-plan .swiper-button-next i {
  color: #134168;
  text-shadow: none;
}

.transi-width {
  width: 8vw;
}

.transi-width img {
  width: 100%;
}

.font2 {
  font-size: 2vw !important;
}

.curric-img {
  border-radius: 100%;
  overflow: hidden;
  width: 18vw;
  height: 18vw;
  border: 6px solid #fff;
  margin: auto;
}

.curric-img img {
  width: 100%;
}

.cur-sec {
  position: relative;
}

.cur-sec:after {
  content: '';
  width: 1px;
  height: 100%;
  border-right: 2px dotted #fff;
  position: absolute;
  top: 0;
  right: 10%;
}

.growth-plan hr {
  width: 100%;
  border-bottom: 2px dotted;
  background: transparent;
  color: #FFF;
}

.growth-plan h3 {
  font-size: 2.2vw;
  font-family: 'Lato';
}

.growth-plan h3.hdg {
  font-size: 2.4vw;
}

.growth-plan .history-cards p {
  line-height: 1.6vw;
}

.hus {
  font-size: 1.2vw;
  text-transform: uppercase;
  text-align: center;
  padding: 1vh 3vh;
  border: 1px solid;
  border-radius: 30px;
  width: fit-content;
  margin: auto;
  margin-bottom: 2vh;
  background: #fff;
}

.mySwiper-growth h4 {
  font-size: 2vw;
}


.mascot .text-blue.info>span.word:before {
  color: #00426b !important;
}

.mascot .text-blue {
  color: #00426b !important;
}

.mascot .text-unicorn.info>span.word:before {
  color: #503766 !important;
}

.mascot .text-unicorn {
  color: #503766 !important;
}

.mascot .text-griffin.info>span.word:before {
  color: #7f240d !important;
}

.mascot .text-griffin {
  color: #7f240d !important;
}

.mascot .text-pteroleon.info>span.word:before {
  color: #00451e !important;
}

.mascot .text-pteroleon {
  color: #00451e !important;
}

.mascot .text-phoenix.info>span.word:before {
  color: #855500 !important;
}

.mascot .text-phoenix {
  color: #855500 !important;
}

.mt12vh {
  margin-top: 12vh;
}

.mb12vh {
  margin-bottom: 12vh;
}

.mt8vh {
  margin-top: 8vh;
}

.mb8vh {
  margin-bottom: 8vh;
}

.growth-plan .card-slider {
  margin-top: 8vh;
}

.cnt-dtl h6 {
  font-size: 1.2vw;
  font-family: 'Lato';
  color: #000;
  font-family: 'Merriweather', sans-serif;
}

.cnt-dtl hr {
  background: #a3a5a8;
}

.locn h3 {
  font-family: 'Lato';
  font-size: 2.8vw;
  font-weight: 400;
  line-height: 1.4;
  color: #000000;
}

.growth-plan .swiper-button-prev i,
.growth-plan .swiper-button-next i {
  font-size: 40px;
}

.growth-plan .swiper-pagination-bullet {
  width: var(--swiper-pagination-bullet-width, var(--swiper-pagination-bullet-size, 16px));
  height: var(--swiper-pagination-bullet-height, var(--swiper-pagination-bullet-size, 16px));
}

.growth-plan .swiper-pagination-bullets.swiper-pagination-horizontal {
  bottom: var(--swiper-pagination-bottom, -5px);
}

.mascot hr {
  border-bottom: 2px dotted;
  background: transparent;
  color: var(--blue);
  margin-bottom: 4vh;
  margin-top: 3vh;
}

.mascot-page h3 {
  font-size: 2.2vw;
  font-family: 'Lato';
}

.mascot .Card {
  height: 60vh !important;
  margin-top: 4vh;
  margin-bottom: 3vh;
  width: 100%;
}

.mascot .bg-sec .bg1 {
  height: 100%;
}

.mascot-page .cur-sec:after {
  border-right: 2px dotted var(--blue);
  right: 0;
}

.quote-sec .quotes-box:after {
  width: 105%;
}

.font-italic {
  /* font-style: italic; */
}

.locn iframe {
  height: 535px;
}

.menu-section li.active .dropdown-menu li.active .dropdown-item {
  text-decoration: underline !important;
  font-weight: 600;
}

.menu-section li.active .dropdown-menu li.active:after {
  display: none !important;
}

#gallery-section .img-section {
  box-shadow: unset;
}

/* .mfp-arrow{
  opacity: 1;
} */

/* .font-weight-normal{
  font-weight: 300 !important;
} */


.mfp-arrow:before {
  display: none !important;
}

.mfp-arrow.mfp-arrow-left::after {
  font-family: 'Line Awesome Free';
  font-weight: 900;
  content: "\f104";
  /* la-angle-left */
  font-size: 30px;
  color: #fff;
  position: absolute;
  top: 50%;
  /* left: 10px; */
  transform: translateY(-50%);
  border: none;
  display: flex;
  justify-content: center;
  align-items: center;
  text-shadow: 5px 2px 12px grey;
}

.mfp-arrow.mfp-arrow-right::after {
  font-family: 'Line Awesome Free';
  font-weight: 900;
  content: "\f105";
  /* la-angle-right */
  font-size: 30px;
  color: #fff;
  position: absolute;
  top: 50%;
  /* right: 10px; */
  transform: translateY(-50%);
  border: none;
  display: flex;
  justify-content: center;
  align-items: center;
  text-shadow: 5px 2px 12px grey;
}

/* .mfp-close {
  position: fixed;
  top: 3%;
  right: 3%;
  font-size: 4rem;
  font-weight: 100;
} */

.mfp-close {
  font-size: 0;
  text-indent: -9999px;
  overflow: hidden;
  /* position: relative; */
  position: fixed;
  right: 2vw !important;
  top: 1vw;
  opacity: 1;
}

.mfp-close:before {
  display: none !important;
  /* Hide default close icon */
}

.mfp-close::after {
  font-family: 'Line Awesome Free';
  font-weight: 900;
  content: "\f00d";
  /* Unicode for la-times (Close icon) */
  font-size: 35px;
  color: #307da7;
  position: absolute;
  top: 50%;
  left: auto;
  transform: translate(-50%, -50%);
  line-height: 1;
  pointer-events: none;
}

.my-carousel__swiper {
  padding-bottom: 200px;
}

.my-carousel__swiper .swiper-wrapper {
  align-items: center;

}

#closeVideo.close-btn {
  content: '';
  position: absolute;
  top: 2vw;
  /* top: 6vw; */
  width: 4vw;
  height: 4vw;
  /* right: 2vw; */
  right: 10vw;
  /* height: 100%; */
  background: url(../home-img/svg/plusIcon.svg);
  background-size: contain;
  background-repeat: no-repeat;
  transform: rotate(45deg);
  border: none;
  display: flex;
  justify-content: end;
  align-items: center;
  left: unset;
  filter: unset;
  transition: all .3s linear;
}

#closeVideo.close-btn:hover {
  /* filter: hue-rotate(123deg) invert(1) brightness(10.5); */
  background: url(../home-img/svg/plusIcon-white.svg);
  background-repeat: no-repeat;
  width: 4vw;
  height: 4vw;
  object-fit: cover;
  background-size: cover;
  transform: rotate(136deg);
}

.popup-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999 !important;
  /* top: 0; */
  /* left: 0; */
  /* width: 96%; */
  /* height: 90vh; */
  background: #000000cc;
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.popup-content {
  position: relative;
  width: 100%;
  height: 100%;
  background: transparent;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10vh
}

.popup-content video {
  /* height: 100%; */
  /* object-fit: cover; */
  max-width: 900px;
  border-radius: 20px;
}

.popup-content video.horizontal {
  height: auto;
  object-fit: cover;
  max-width: 900px;
  width: 100%;
}

.curriculum-slider .box-section .img-section img {
  object-fit: cover;
}

.swiper-button-prev .svg-section {
  transform: rotate(180deg);
}

.city-btn-new .svg-section {
  pointer-events: none;
}

#loader {
  position: fixed;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 99999;
  background: var(--secondary-color);
  top: 0;
}

#loader .loader-img {
  width: 120px;
  height: 120px;
  /* animation: beat 1s ease-in infinite; */
  margin-bottom: 160px;
  position: absolute;
}

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

.loader,
.loader:before,
.loader:after {
  border-radius: 50%;
  width: 2.5em;
  height: 2.5em;
  animation-fill-mode: both;
  animation: bblFadInOut 1.8s infinite ease-in-out;
}

.loader {
  color: #FFF;
  font-size: 7px;
  position: relative;
  text-indent: -9999em;
  transform: translateZ(0);
  animation-delay: -0.16s;
}

.loader:before,
.loader:after {
  content: '';
  position: absolute;
  top: 0;
}

.loader:before {
  left: -3.5em;
  animation-delay: -0.32s;
}

.loader:after {
  left: 3.5em;
}

@keyframes bblFadInOut {

  0%,
  80%,
  100% {
    box-shadow: 0 2.5em 0 -1.3em
  }

  40% {
    box-shadow: 0 2.5em 0 0
  }
}

/* .testimonial-slider .swiper-slide{
  padding: 0 13px;
} */

@media (max-width:767px) {
  .btn-group {
    left: 37%!important;
}
  .growth-plan .swiper-button-prev {
  left: var(--swiper-navigation-sides-offset, -45px);
}
  .popup-content {
    padding: 2vh;
  }

  #closeVideo.close-btn {
    top: 3vw;
    width: 10vw;
    height: 10vw;
    right: 3vw;
  }

  .popup-content video {
    height: auto;
    width: 100%;
  }


}

@media (max-width:768px) {

  .header-container img {
    margin-top: -8px !important;
  }

  .is_slide_6 .svg-inside {
    bottom: 0% !important;
  }

  .university-swiper {
    height: 183px !important;
  }

  #map {
    height: 57vh !important;
  }

  .unsrct .swiper-button-next {
    top: 77px !important;
  }

  .unsrct .swiper-button-prev {
    top: 77px !important;
  }
}

/* 1 aug */

.century-21 {
  padding: 0 17%;
}

.px-10percent {
  padding-left: 10%;
  padding-right: 10%;
}

.fs-2_7vw {
  font-size: 2.7vw !important;
}