@font-face {
  font-family: "Aloevera-ExtraLight";
  src: url("../css/font/Aloevera-ExtraLight.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Aloevera-Light";
  src: url("../css/font/Aloevera-Light.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Aloevera-Regular";
  src: url("../css/font/Aloevera-Regular.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Aloevera-Medium";
  src: url("../css/font/Aloevera-Medium.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Aloevera-SemiBold";
  src: url("../css/font/Aloevera-SemiBold.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Aloevera-Bold";
  src: url("../css/font/Aloevera-Bold.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Thunder-SemiBoldLC";
  src: url("../css/font/Thunder-SemiBoldLC.woff") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Thunder-BoldLC";
  src: url("../css/font/Thunder-BoldLC.woff") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
body {
  background: #F9FDFF;
  overflow-x: hidden;
}
body.loaded #splash-screen {
  opacity: 0;
  pointer-events: none;
}

.splash-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.5s ease-in-out;
}
.splash-screen .circle {
  width: 70px;
  height: 70px;
  position: absolute;
  background-color: #3498db;
  border-radius: 50%;
  animation: mid 1s linear infinite;
}
.splash-screen .loader1,
.splash-screen .loader2,
.splash-screen .loader3,
.splash-screen .loader4 {
  position: absolute;
  border: 5px solid transparent;
  border-top: 5px solid #3498db;
  border-bottom: 5px solid #3498db;
  border-radius: 50%;
  animation: spin 1.5s linear infinite;
}
.splash-screen .loader1 {
  width: 90px;
  height: 90px;
  animation-delay: 0.1s;
}
.splash-screen .loader2 {
  width: 110px;
  height: 110px;
  animation-delay: 0.2s;
}
.splash-screen .loader3 {
  width: 130px;
  height: 130px;
  animation-delay: 0.3s;
}
.splash-screen .loader4 {
  width: 150px;
  height: 150px;
  animation-delay: 0.4s;
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes mid {
  0%, 100% {
    transform: scale(0);
  }
  50% {
    transform: scale(1);
  }
}

.text {
  font-family: "Aloevera-Light", sans-serif;
  font-size: 20px;
  color: #211E1E;
  line-height: 30px;
}
@media (max-width: 575.98px) {
  .text {
    font-family: "Aloevera-Light", sans-serif;
    font-size: 16px;
    color: #211E1E;
    line-height: 23px;
  }
}

.head {
  font-family: "Thunder-SemiBoldLC", sans-serif;
  font-size: 70px;
  color: #211E1E;
  line-height: 80px;
}
@media (max-width: 575.98px) {
  .head {
    font-family: "Thunder-SemiBoldLC", sans-serif;
    font-size: 40px;
    color: #211E1E;
    line-height: 50px;
  }
}

.btn.btn-main {
  padding: 15px 18px;
  background: #3E66DF;
  box-shadow: 0px 4px 0px rgba(0, 0, 0, 0.2);
  border-radius: 10px;
  font-family: "Aloevera-Medium", sans-serif;
  font-size: 16px;
  color: #FDFDFD;
  transition: transform 0.1s ease-in-out, box-shadow 0.1s ease-in-out;
}
.btn.btn-main:active {
  transform: translateY(4px);
  box-shadow: 0px 0px 0px rgba(0, 0, 0, 0.2);
}
.btn.btn-main:hover:not(:active) {
  box-shadow: 0px 5px 0px rgba(0, 0, 0, 0.25);
}

.details {
  background: #0433B9;
}
.details p,
.details a {
  font-family: "Aloevera-ExtraLight", sans-serif;
  font-size: 16px;
  color: #FDFDFD;
  line-height: 30px;
}
@media (max-width: 575.98px) {
  .details p,
  .details a {
    font-family: "Aloevera-ExtraLight", sans-serif;
    font-size: 12px;
    color: #FDFDFD;
    line-height: 23px;
  }
}

@media (max-width: 575.98px) {
  .navbar {
    background-color: #e7f6fd !important;
  }
}
.navbar .logo-main {
  max-width: 150px;
}
.navbar .btn-close {
  --bs-btn-close-bg: url("../img/icons/close.svg");
  width: 3rem;
  height: 3rem;
  opacity: 1;
  padding: 0.5rem;
}
.navbar .btn-close:focus {
  box-shadow: none;
}
.navbar .bg-navbar {
  padding: 0px 30px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.15);
  border-radius: 70px;
  z-index: 10000;
  background-color: #FDFDFD !important;
}
@media (max-width: 575.98px) {
  .navbar .bg-navbar {
    padding: 0px 10px;
    border-radius: 15px 15px 0 0;
  }
}
.navbar .bg-navbar .logo-in {
  max-width: 300px;
}
.navbar .bg-navbar .nav-link {
  font-family: "Aloevera-Light", sans-serif;
  font-size: 18px;
  color: #211E1E;
}
.navbar .bg-navbar .nav-link:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #0433B9;
}
.navbar .bg-navbar .active {
  font-family: "Aloevera-Medium", sans-serif;
  font-size: 18px;
  color: #0433B9;
}
.navbar .nav-drop:hover > .dropdown-menu {
  display: block;
  border: 0;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.15);
  border-radius: 10px;
  transform: translateY(-10px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
}
.navbar .nav-drop:hover > .dropdown-menu .dropdown-item {
  font-family: "Aloevera-Light", sans-serif;
  font-size: 16px;
  color: #211E1E;
  padding: 10px 20px;
  border-radius: 10px;
}
.navbar .nav-drop:hover > .dropdown-menu .dropdown-item:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #0433B9;
}

.admissions-open {
  position: fixed;
  background: #3E66DF;
  right: -52px;
  z-index: 1;
  top: 50%;
  transform: rotate(-90deg) translateY(50%);
  transition: all 0.3s ease;
  z-index: 1000;
}
@media (max-width: 575.98px) {
  .admissions-open {
    transform: none;
    bottom: 0;
    position: fixed;
    top: auto;
    right: 0;
    width: 100%;
    text-align: center;
  }
}
.admissions-open:hover {
  background: #2b55d1;
}
.admissions-open a {
  font-family: "Aloevera-Regular", sans-serif;
  font-size: 18px;
  color: #FDFDFD;
  line-height: 42px;
}
@media (max-width: 575.98px) {
  .admissions-open a {
    font-family: "Aloevera-Regular", sans-serif;
    font-size: 16px;
    color: #FDFDFD;
    line-height: 28px;
  }
}
.admissions-open a:hover {
  color: #FDFDFD;
}

.hero {
  height: 100vh;
}
@media (max-width: 575.98px) {
  .hero {
    height: auto;
  }
}
.hero .text {
  margin-top: -15px;
}
@media (max-width: 575.98px) {
  .hero .text {
    margin-top: 0;
  }
}
.hero .text span {
  font-family: "Aloevera-SemiBold", sans-serif;
}
.hero::before {
  background-image: url("../img/bg-hero.svg");
  opacity: 0.3;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center top;
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  content: "";
}
@media (max-width: 575.98px) {
  .hero::before {
    content: "";
    background-image: url("../img/bg-hero.svg");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center top;
    left: 0;
    top: 0;
    height: 100%;
  }
}
.hero h1 {
  font-family: "Thunder-BoldLC", sans-serif;
  font-size: 90px;
  color: #211E1E;
  line-height: 111.2%;
}
@media (max-width: 575.98px) {
  .hero h1 {
    font-family: "Thunder-BoldLC", sans-serif;
    font-size: 40px;
    color: #211E1E;
    line-height: 50px;
  }
}
.hero h1 {
  letter-spacing: 3.5px;
}
.hero h1 .main {
  font-size: 100px;
}
@media (max-width: 575.98px) {
  .hero h1 .main {
    font-size: 50px;
  }
}
.hero .elements {
  position: relative;
}
.hero .elements .fashion1 {
  position: absolute;
  width: 300px;
  height: 166px;
  left: 10px;
  top: -100px;
  background: #E3EDF2;
  box-shadow: 0px 12px 16px -4px rgba(0, 0, 0, 0.08), 0px 4px 6px -2px rgba(0, 0, 0, 0.03);
  border-radius: 12.8px;
}
@media (max-width: 575.98px) {
  .hero .elements .fashion1 {
    position: relative;
    width: auto;
    height: auto;
    left: auto;
    top: auto;
  }
}
.hero .elements .fashion2 {
  position: absolute;
  height: auto;
  width: 100px;
  left: 300px;
  top: 80px;
  background: transparent;
  box-shadow: 0px 12px 16px -4px rgba(0, 0, 0, 0.08), 0px 4px 6px -2px rgba(0, 0, 0, 0.03);
  border-radius: 3px;
}
@media (max-width: 575.98px) {
  .hero .elements .fashion2 {
    position: relative;
    width: auto;
    height: auto;
    left: auto;
    top: auto;
  }
}
.hero .elements .fashion3 {
  position: absolute;
  width: 170px;
  height: auto;
  left: 100px;
  top: 150px;
}
@media (max-width: 575.98px) {
  .hero .elements .fashion3 {
    position: relative;
    width: auto;
    height: auto;
    left: auto;
    top: auto;
  }
}
.hero .elements .vcd {
  position: absolute;
  height: auto;
  width: 300px;
  left: 480px;
  top: 200px;
  transform: translateX(-50%);
}
@media (max-width: 575.98px) {
  .hero .elements .vcd {
    position: relative;
    width: auto;
    height: auto;
    left: auto;
    top: 0;
  }
}
.hero .elements .interior {
  position: absolute;
  max-width: 200px;
  right: 300px;
  top: 0px;
}
@media (max-width: 575.98px) {
  .hero .elements .interior {
    position: relative;
    width: 100%;
    max-width: none;
    height: auto;
    right: auto;
    top: auto;
  }
}
.hero .elements .textile {
  position: absolute;
  right: 30px;
  top: -150px;
}
@media (max-width: 575.98px) {
  .hero .elements .textile {
    position: relative;
    right: auto;
    top: auto;
  }
}

.about {
  position: relative;
}
.about::before {
  content: url("../img/bg-about.svg");
  position: absolute;
  z-index: -1;
  top: 0;
  width: 100%;
}
@media (max-width: 575.98px) {
  .about::before {
    content: "";
    background-image: url("../img/bg-about.svg");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center top;
    left: 0;
    height: 100%;
  }
}

.courses .col2 {
  position: relative;
}
.courses .col2 .list {
  position: absolute;
  z-index: 100;
  top: 58%;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  text-align: center;
}
.courses .col2 .list .nav-link {
  font-family: "Aloevera-Regular", sans-serif;
  font-size: 48px;
  color: #FDFDFD;
}
.courses .know-more {
  background: #3E66DF;
}
.courses .know-more a {
  font-family: "Aloevera-Medium", sans-serif;
  font-size: 28px;
  color: #FDFDFD;
  line-height: 30px;
}
@media (max-width: 575.98px) {
  .courses .know-more a {
    font-family: "Aloevera-Medium", sans-serif;
    font-size: 20px;
    color: #FDFDFD;
    line-height: 23px;
  }
}

.courses-mobile {
  position: relative;
  z-index: 30;
}
.courses-mobile .courses-list {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translate(-50%, -15%);
  z-index: 100;
}
.courses-mobile .courses-list .nav-link {
  font-family: "Aloevera-Regular", sans-serif;
  font-size: 24px;
  color: #FDFDFD;
}

.partners {
  position: relative;
}
.partners::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  background-image: url("../img/bg-partner.svg");
  background-repeat: no-repeat;
  background-size: cover;
  z-index: -1;
  pointer-events: none;
}
@media (max-width: 575.98px) {
  .partners::before {
    width: 100%;
    height: 100%;
  }
}
.partners .text {
  font-family: "Aloevera-Light", sans-serif;
  font-size: 20px;
  color: #211E1E;
  line-height: 30px;
}
@media (max-width: 575.98px) {
  .partners .text {
    font-family: "Aloevera-Light", sans-serif;
    font-size: 16px;
    color: #211E1E;
    line-height: 23px;
  }
}
.partners .marquee-container {
  position: relative;
  overflow: hidden;
  height: 500px;
}
.partners .marquee-container .marquee-column {
  position: relative;
  height: 100%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.partners .marquee-container .marquee-column .marquee-items {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.partners .marquee-container .marquee-column .marquee-items .clients-img {
  background: #E3EAFF;
  border: 1px solid #E4E4E4;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.15);
  border-radius: 10px;
  width: 100%;
  height: auto;
}
.partners .marquee-column:hover .marquee-items {
  animation-play-state: paused;
}

.achievements {
  position: relative;
  margin-top: 100px;
}
@media (max-width: 575.98px) {
  .achievements {
    margin-top: 0px;
    overflow-x: hidden;
  }
}
.achievements {
  position: relative;
}
.achievements::before {
  content: url("../img/bg.svg");
  position: absolute;
  z-index: -1;
  top: 0;
  width: 100%;
}
@media (max-width: 575.98px) {
  .achievements::before {
    content: "";
    background-image: url("../img/bg.svg");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center top;
    left: 0;
    height: 100%;
  }
}
.achievements .text {
  font-family: "Aloevera-Light", sans-serif;
  font-size: 20px;
  color: #211E1E;
  line-height: 30px;
}
@media (max-width: 575.98px) {
  .achievements .text {
    font-family: "Aloevera-Light", sans-serif;
    font-size: 16px;
    color: #211E1E;
    line-height: 23px;
  }
}
.achievements .achievement-card {
  position: relative;
}
.achievements .achievement-card .text-card {
  bottom: -150px;
  padding: 50px;
  border: none;
  border-radius: 0;
  position: absolute;
  background: #050505;
}
@media (max-width: 575.98px) {
  .achievements .achievement-card .text-card {
    position: relative;
    padding: 20px;
    bottom: auto;
  }
}
.achievements .achievement-card .text-card .title {
  font-family: "Aloevera-Medium", sans-serif;
  font-size: 32px;
  color: #FDFDFD;
  line-height: 150%;
}
@media (max-width: 575.98px) {
  .achievements .achievement-card .text-card .title {
    font-size: 28px;
    line-height: normal;
  }
}
.achievements .achievement-card .text-card .text {
  font-family: "Aloevera-ExtraLight", sans-serif;
  font-size: 20px;
  color: #211E1E;
  line-height: 30px;
}
@media (max-width: 575.98px) {
  .achievements .achievement-card .text-card .text.truncated {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .achievements .achievement-card .text-card .text.expanded {
    display: block;
  }
}
@media (max-width: 575.98px) {
  .achievements .achievement-card .text-card .read-more-btn {
    background: none;
    border: none;
    color: #3E66DF;
    font-family: "Aloevera-Medium", sans-serif;
    font-size: 14px;
    text-decoration: underline;
    padding: 0;
    margin-top: 10px;
    cursor: pointer;
  }
  .achievements .achievement-card .text-card .read-more-btn:hover {
    color: #2b55d1;
  }
}
@media (min-width: 576px) {
  .achievements .achievement-card .text-card .read-more-btn {
    display: none !important;
  }
}
.achievements .owl-carousel .owl-stage-outer {
  overflow: visible !important;
}
.achievements .pagination-counter {
  position: absolute;
  top: 25%;
  right: 15%;
  transform: rotate(90deg);
}
.achievements button.owl-next {
  position: absolute;
  width: 155.97px;
  height: 68.02px;
  left: 29.6%;
  top: 90%;
  background: #3E66DF !important;
  border-radius: 0px !important;
  font-family: "Aloevera-SemiBold", sans-serif;
  font-size: 16px;
  color: #FDFDFD;
}
@media (max-width: 575.98px) {
  .achievements button.owl-next {
    width: 100px;
    height: 50px;
    left: 50%;
    bottom: -20px;
    top: auto;
    transform: translateX(-50%);
  }
}

@media (max-width: 575.98px) {
  .director {
    margin-top: 0px;
  }
}
.director .text {
  font-family: "Aloevera-Regular", sans-serif;
  font-size: 24px;
  color: #808080;
  line-height: 42px;
}
@media (max-width: 575.98px) {
  .director .text {
    font-family: "Aloevera-Regular", sans-serif;
    font-size: 18px;
    color: #808080;
    line-height: 28px;
  }
}
.director .quote2 {
  position: absolute;
  right: 6% !important;
}
.director .nav-pills .nav-link {
  border: 1px solid #E3EAFF;
  border-radius: 15px;
  transition: all 0.2s ease;
  padding: 10px 0px 10px 20px;
}
.director .nav-pills .nav-link.active {
  background: #FDFDFD;
  box-shadow: 0px 0px 25px rgba(0, 0, 0, 0.05);
  border: 1px solid #E3EAFF;
}
.director .nav-pills .nav-link:hover {
  border: 1px solid #b8c9fb;
}
.director .nav-pills .nav-link .name {
  font-family: "Aloevera-SemiBold", sans-serif;
  font-size: 16px;
  color: #211E1E;
  line-height: 30px;
}
.director .nav-pills .nav-link .position {
  font-family: "Aloevera-Regular", sans-serif;
  font-size: 14px;
  color: #808080;
}

.testimonials {
  position: relative;
  background: url("../img/bg-testimonial.svg") no-repeat bottom;
  background-size: cover;
  margin-top: 150px;
}
.testimonials .text {
  font-family: "Aloevera-Light", sans-serif;
  font-size: 20px;
  color: #FDFDFD;
  line-height: 30px;
}
@media (max-width: 575.98px) {
  .testimonials .text {
    font-family: "Aloevera-Light", sans-serif;
    font-size: 16px;
    color: #FDFDFD;
    line-height: 23px;
  }
}
.testimonials .testimonial-card {
  position: relative;
  border-radius: 0;
  padding: 20px 20px 10px 20px;
  z-index: 10;
}
.testimonials .testimonial-card .text {
  font-family: "Aloevera-ExtraLight", sans-serif;
  font-size: 20px;
  color: #211E1E;
  line-height: 30px;
}
.testimonials .testimonial-card .name {
  font-family: "Thunder-SemiBoldLC", sans-serif;
  font-size: 30px;
  color: #FDFDFD;
  line-height: 180%;
}
.testimonials .testimonial-card .name .img-person {
  max-width: 53.12px;
}
.testimonials .card1 {
  background: #008CD4;
  margin-top: -25%;
}
@media (max-width: 575.98px) {
  .testimonials .card1 {
    margin-top: 0;
  }
}
.testimonials .card1::before {
  content: "";
  position: absolute;
  bottom: -50px;
  right: 0;
  width: 0;
  height: 0;
  border-left: 70px solid #008CD4;
  border-right: 0;
  border-top: 60px solid transparent;
  border-bottom: 0px solid transparent;
  transform: rotate(180deg);
}
.testimonials .card1::after {
  content: "";
  position: absolute;
  top: 10px;
  left: 10px;
  width: 100%;
  height: 100%;
  border: 1px dashed #008CD4;
  background: transparent;
  pointer-events: none;
  z-index: -1;
}
.testimonials .card2 {
  background: #FDFDFD;
  margin: 5% auto 30% auto;
  z-index: 10;
}
@media (max-width: 575.98px) {
  .testimonials .card2 {
    margin: 60px auto;
  }
}
.testimonials .card2::before {
  content: "";
  position: absolute;
  bottom: -50px;
  left: 0;
  width: 0;
  height: 0;
  border-left: 0;
  border-right: 70px solid #FDFDFD;
  border-top: 60px solid transparent;
  border-bottom: 0px solid transparent;
  transform: rotate(180deg);
}
.testimonials .card2::after {
  content: "";
  position: absolute;
  top: 10px;
  left: -10px;
  width: 100%;
  height: 100%;
  border: 1px dashed #FDFDFD;
  background: transparent;
  pointer-events: none;
  z-index: -1;
}
.testimonials .card3 {
  background: #7A7A7A;
  margin: 38% auto auto auto;
  z-index: 10;
}
@media (max-width: 575.98px) {
  .testimonials .card3 {
    margin: 0 auto 50px auto;
  }
}
.testimonials .card3::before {
  content: "";
  position: absolute;
  bottom: -50px;
  left: 0;
  width: 0;
  height: 0;
  border-left: 0;
  border-right: 70px solid #7A7A7A;
  border-top: 60px solid transparent;
  border-bottom: 0px solid transparent;
  transform: rotate(180deg);
}
.testimonials .card3::after {
  content: "";
  position: absolute;
  top: 10px;
  left: -10px;
  width: 100%;
  height: 100%;
  border: 1px dashed #7a7a7a;
  background: transparent;
  pointer-events: none;
  z-index: -1;
}

.footer {
  background: #E5EFFF;
}
.footer .info {
  font-family: "Aloevera-Light", sans-serif;
  font-size: 18px;
  color: #211E1E;
  line-height: 30px;
}
@media (max-width: 575.98px) {
  .footer .info {
    font-family: "Aloevera-Light", sans-serif;
    font-size: 16px;
    color: #211E1E;
    line-height: 23px;
  }
}
.footer .info {
  letter-spacing: 1px;
}
.footer h5 {
  font-family: "Thunder-BoldLC", sans-serif;
  font-size: 38px;
  color: #211E1E;
  letter-spacing: 1px;
}
.footer .nav-link {
  font-family: "Aloevera-Light", sans-serif;
  font-size: 18px;
  color: #8a8a8a;
  letter-spacing: 0.5px;
}
.footer .nav-link:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #0433B9;
}
.footer .firm {
  pointer-events: none !important;
}

.lower {
  background: #C7DCFE;
}
.lower .text {
  font-family: "Aloevera-Light", sans-serif;
  font-size: 16px;
  color: #211E1E;
  line-height: 30px;
}
@media (max-width: 575.98px) {
  .lower .text {
    font-family: "Aloevera-Light", sans-serif;
    font-size: 16px;
    color: #211E1E;
    line-height: 23px;
  }
}

.about-hero {
  position: relative;
}
.about-hero::before {
  content: url("../img/bg-abouthero.svg");
  position: absolute;
  z-index: -1;
  top: 0;
  width: 100%;
}
@media (max-width: 575.98px) {
  .about-hero::before {
    content: "";
    background-image: url("../img/bg-abouthero.svg");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center top;
    left: 0;
    height: 100%;
  }
}
.about-hero::before {
  opacity: 0.1;
}
.about-hero {
  background: #3B5BB6;
  margin-top: -94px;
  z-index: 1;
}
@media (max-width: 575.98px) {
  .about-hero {
    margin-top: auto;
  }
}
.about-hero .tag {
  font-family: "Aloevera-Light", sans-serif;
  font-size: 20px;
  color: #b8c9f9;
}
.about-hero .about-text {
  font-family: "Aloevera-Regular", sans-serif;
  font-size: 22px;
  color: #FDFDFD;
  line-height: 30px;
}
@media (max-width: 575.98px) {
  .about-hero .about-text {
    font-family: "Aloevera-Regular", sans-serif;
    font-size: 16px;
    color: #FDFDFD;
    line-height: 23px;
  }
}
.about-hero .about-text {
  letter-spacing: 1px;
}

.leadership .name {
  font-family: "Thunder-SemiBoldLC", sans-serif;
  font-size: 60px;
  color: #211E1E;
  line-height: 30px;
}
@media (max-width: 575.98px) {
  .leadership .name {
    font-family: "Thunder-SemiBoldLC", sans-serif;
    font-size: 40px;
    color: #211E1E;
    line-height: 30px;
  }
}
.leadership .title {
  font-family: "Aloevera-Medium", sans-serif;
  font-size: 20px;
  color: #211E1E;
  line-height: 30px;
}

.mission-vision .card {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  border: 2px solid #207CEB;
  border-radius: 30px;
}
.mission-vision .card .title {
  font-family: "Thunder-BoldLC", sans-serif;
  font-size: 40px;
  color: #211E1E;
  line-height: 50px;
}
.mission-vision .vision {
  background-image: url("../img/bg-vision.svg");
}
.mission-vision .vision .title {
  margin-top: 150px;
}
.mission-vision .mission {
  background-image: url("../img/bg-mission.svg");
}

.faculty-img {
  border: 1px solid #E3EAFF;
  border-radius: 40px;
  box-shadow: 0px 12px 16px -4px rgba(0, 0, 0, 0.08), 0px 4px 6px -2px rgba(0, 0, 0, 0.03);
  transition: all 0.2s ease;
}
.faculty-img:hover {
  box-shadow: 0px 12px 16px -4px rgba(0, 0, 0, 0.15), 0px 4px 6px -2px rgba(0, 0, 0, 0.05);
  transform: scale(1.02);
}

.ad-card,
.vcd-card,
.course-card,
.usp-card {
  border: 1px solid #E3EAFF;
  border-radius: 15px;
  padding: 10px 0px 10px 20px;
  background: #FDFDFD;
  box-shadow: 0px 0px 25px rgba(0, 0, 0, 0.05);
  transition: all 0.2s ease;
}
.ad-card:hover,
.vcd-card:hover,
.course-card:hover,
.usp-card:hover {
  border: 1px solid #b8c9fb;
  box-shadow: 0px 12px 16px -4px rgba(0, 0, 0, 0.15), 0px 4px 6px -2px rgba(0, 0, 0, 0.05);
  transform: scale(1.02);
}
.ad-card .card-title,
.ad-card .title,
.vcd-card .card-title,
.vcd-card .title,
.course-card .card-title,
.course-card .title,
.usp-card .card-title,
.usp-card .title {
  font-family: "Aloevera-Medium", sans-serif;
  font-size: 20px;
  color: #211E1E;
  line-height: 30px;
}
@media (max-width: 575.98px) {
  .ad-card .card-title,
  .ad-card .title,
  .vcd-card .card-title,
  .vcd-card .title,
  .course-card .card-title,
  .course-card .title,
  .usp-card .card-title,
  .usp-card .title {
    font-size: 18px;
  }
}

.ad-card .name {
  font-family: "Aloevera-Medium", sans-serif;
  font-size: 20px;
  color: #211E1E;
}
.ad-card .title {
  font-family: "Aloevera-Light", sans-serif;
  font-size: 16px;
  color: #211E1E;
}

.affiliation .name {
  font-family: "Thunder-SemiBoldLC", sans-serif;
  font-size: 40px;
  color: #211E1E;
  line-height: 60px;
}
@media (max-width: 575.98px) {
  .affiliation .name {
    font-family: "Thunder-SemiBoldLC", sans-serif;
    font-size: 40px;
    color: #211E1E;
    line-height: 60px;
  }
}
.affiliation .text {
  font-size: 18px;
}
@media (max-width: 575.98px) {
  .affiliation img {
    max-width: 200px;
    margin-bottom: 40px;
  }
}

.campus-hero {
  margin-top: -94px;
  background-image: url("../img/bg-campus.webp");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.campus-hero .content {
  padding: 200px 0;
}
.campus-hero .content h1 {
  font-family: "Thunder-BoldLC", sans-serif;
  font-size: 100px;
  color: #FDFDFD;
  line-height: 111.2%;
}
@media (max-width: 575.98px) {
  .campus-hero .content h1 {
    font-family: "Thunder-BoldLC", sans-serif;
    font-size: 30px;
    color: #FDFDFD;
    line-height: 50px;
  }
}
.campus-hero .content h1 {
  letter-spacing: 3.5px;
}
.campus-hero .content .text {
  font-family: "Aloevera-ExtraLight", sans-serif;
  font-size: 20px;
  color: #FDFDFD;
  line-height: 30px;
}
@media (max-width: 575.98px) {
  .campus-hero .content .text {
    font-family: "Aloevera-ExtraLight", sans-serif;
    font-size: 16px;
    color: #FDFDFD;
    line-height: 23px;
  }
}
.campus-hero .content .coming-soon {
  font-family: "Aloevera-SemiBold", sans-serif;
  font-size: 28px;
  color: #FDFDFD;
  line-height: 40px;
}
@media (max-width: 575.98px) {
  .campus-hero .content .coming-soon {
    font-family: "Aloevera-SemiBold", sans-serif;
    font-size: 22px;
    color: #FDFDFD;
    line-height: 30px;
  }
}
@media (max-width: 575.98px) {
  .campus-hero {
    margin-top: auto;
  }
}

.placement-img {
  border: 1px solid #E3EAFF;
  box-shadow: 0px 12px 16px -4px rgba(0, 0, 0, 0.08), 0px 4px 6px -2px rgba(0, 0, 0, 0.03);
  transition: all 0.2s ease;
}
.placement-img:hover {
  box-shadow: 0px 12px 16px -4px rgba(0, 0, 0, 0.15), 0px 4px 6px -2px rgba(0, 0, 0, 0.05);
  transform: scale(1.02);
}

.course-hero {
  position: relative;
}
.course-hero::before {
  content: url("../img/bg-about.svg");
  position: absolute;
  z-index: -1;
  top: 0;
  width: 100%;
}
@media (max-width: 575.98px) {
  .course-hero::before {
    content: "";
    background-image: url("../img/bg-about.svg");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center top;
    left: 0;
    height: 100%;
  }
}
.course-hero::before {
  opacity: 0.25;
}
.course-hero {
  background: linear-gradient(0deg, #FDFDFD 20%, #3B5BB6 50%);
  margin-top: -94px;
  z-index: 1;
}
@media (max-width: 575.98px) {
  .course-hero {
    margin-top: auto;
  }
}
.course-hero .content {
  position: relative;
  z-index: 2;
}
.course-hero .course-img {
  box-shadow: 0px 12px 16px -4px rgba(0, 0, 0, 0.08), 0px 4px 6px -2px rgba(0, 0, 0, 0.03);
  border-radius: 10px;
}
.course-hero .btn.btn-main {
  padding: 15px 18px;
  background: #FDFDFD;
  box-shadow: 0px 4px 0px rgba(0, 0, 0, 0.2);
  border-radius: 10px;
  font-family: "Aloevera-Medium", sans-serif;
  font-size: 16px;
  color: #3E66DF;
  transition: transform 0.1s ease-in-out, box-shadow 0.1s ease-in-out;
}
.course-hero .btn.btn-main:active {
  transform: translateY(4px);
  box-shadow: 0px 0px 0px rgba(0, 0, 0, 0.2);
}
.course-hero .btn.btn-main:hover:not(:active) {
  box-shadow: 0px 5px 0px rgba(0, 0, 0, 0.25);
}
.course-hero .btn.btn-main path {
  fill: #3E66DF;
}

.course-name {
  font-family: "Aloevera-SemiBold", sans-serif;
  font-size: 24px;
  color: #211E1E;
  line-height: 20px;
}
@media (max-width: 575.98px) {
  .course-name {
    font-family: "Aloevera-SemiBold", sans-serif;
    font-size: 24px;
    color: #211E1E;
    line-height: 30px;
  }
}

.course-time {
  font-family: "Aloevera-Light", sans-serif;
  font-size: 20px;
  color: #211E1E;
}

.icon {
  max-width: 70px;
}
@media (max-width: 575.98px) {
  .icon {
    max-width: 100px;
  }
}

.form {
  border: 1px solid #E3EAFF;
  border-radius: 20px;
  padding: 30px;
  background: #FDFDFD;
  box-shadow: 0px 0px 25px rgba(0, 0, 0, 0.05);
  transition: all 0.2s ease;
}
.form:hover {
  border: 1px solid #b8c9fb;
  box-shadow: 0px 12px 16px -4px rgba(0, 0, 0, 0.15), 0px 4px 6px -2px rgba(0, 0, 0, 0.05);
  transform: scale(1.02);
}
.form:hover {
  transform: none;
}
.form {
  max-width: 800px;
  margin: 0 auto;
}
.form .form-label {
  font-family: "Aloevera-Medium", sans-serif;
  font-size: 16px;
  color: #211E1E;
  margin-bottom: 8px;
}
.form option {
  font-family: "Aloevera-Regular", sans-serif;
  font-size: 16px;
  color: #211E1E;
}
.form .form-control,
.form .form-select {
  border: 1px solid #E3EAFF;
  border-radius: 10px;
  padding: 12px 15px;
  font-family: "Aloevera-Regular", sans-serif;
  font-size: 16px;
  color: #211E1E;
  box-shadow: none;
  transition: all 0.2s ease;
}
.form .form-control:focus,
.form .form-select:focus {
  border-color: #3E66DF;
  box-shadow: 0px 0px 5px rgba(62, 102, 223, 0.2);
}
.form textarea.form-control {
  min-height: 120px;
}
@media (max-width: 575.98px) {
  .form {
    padding: 20px !important;
  }
  .form .btn-main {
    max-width: 100%;
  }
}/*# sourceMappingURL=style.css.map */