@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
body {
  font-family: "Poppins", sans-serif;
}

.btn.btn-main {
  padding: 12px 15px;
  background: #015EAA;
  border: 1px solid transparent;
  border-radius: 4px;
  font-size: 18px;
  font-weight: 500;
  color: #fff;
  transition: all 0.3s ease-in-out;
}
.btn.btn-main:hover {
  border: 1px solid #000000;
  box-shadow: 5px 6px 0px #000000;
}
.btn.btn-main:active {
  box-shadow: none;
  transform: translateY(2px);
  color: #fff;
  background: #014a8c;
}

.btn.btn-main-outline {
  padding: 12px 15px;
  background: #fff;
  border: 1px solid #015EAA;
  border-radius: 4px;
  font-size: 18px;
  font-weight: 500;
  color: #015EAA;
  transition: all 0.3s ease-in-out;
}
.btn.btn-main-outline:hover {
  background: #015EAA;
  color: #fff;
  border: 1px solid #000000;
  box-shadow: 5px 6px 0px #000000;
}
.btn.btn-main-outline:active {
  box-shadow: none;
  transform: translateY(2px);
  color: #015EAA;
  background: #014a8c;
  color: #fff;
}

.btn.btn-yellow {
  padding: 12px 15px;
  background: #FFAD62;
  border: 1px solid transparent;
  border-radius: 4px;
  font-size: 18px;
  font-weight: 500;
  color: #fff;
  transition: all 0.3s ease-in-out;
}
.btn.btn-yellow:hover {
  border: 1px solid #000000;
  box-shadow: 5px 6px 0px #000000;
}
.btn.btn-yellow:active {
  box-shadow: none;
  transform: translateY(2px);
  color: #fff;
  background: #e6a04f;
}

.btn.btn-white-outline {
  padding: 12px 15px;
  background: transparent;
  border: 1px solid #fff;
  border-radius: 4px;
  font-size: 18px;
  font-weight: 500;
  color: #fff;
  transition: all 0.3s ease-in-out;
}
.btn.btn-white-outline:hover {
  background: #fff;
  color: #000;
  border: 1px solid #000000;
  box-shadow: 5px 6px 0px #000000;
}
.btn.btn-white-outline:active {
  box-shadow: none;
  transform: translateY(2px);
  color: #fff;
  background: #e6e6e6;
  color: #000;
}

.head {
  font-size: 40px;
  font-weight: 600;
  color: #000;
}
@media (max-width: 575.98px) {
  .head {
    font-size: 24px;
    line-height: 1.5;
  }
}

.text {
  font-size: 16px;
  font-weight: 300;
  color: #000;
  line-height: 28px;
}

.loader-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  background: linear-gradient(135deg, #015EAA 0%, #73C0FF 100%);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: opacity 0.5s ease-in-out, visibility 0.5s ease-in-out;
}
.loader-wrapper.fade-out {
  opacity: 0;
  visibility: hidden;
}
.loader-wrapper .loader {
  text-align: center;
}
.loader-wrapper .loader .loader-inner {
  position: relative;
  width: 100px;
  height: 100px;
  margin: 0 auto 30px;
}
.loader-wrapper .loader .loader-inner .loader-line-wrap {
  animation: spin 2000ms cubic-bezier(0.175, 0.885, 0.32, 1.275) infinite;
  box-sizing: border-box;
  height: 50px;
  left: 0;
  overflow: hidden;
  position: absolute;
  top: 0;
  transform-origin: 50px 100px;
  width: 100px;
}
.loader-wrapper .loader .loader-inner .loader-line-wrap:nth-child(1) {
  animation-delay: -50ms;
}
.loader-wrapper .loader .loader-inner .loader-line-wrap:nth-child(2) {
  animation-delay: -100ms;
}
.loader-wrapper .loader .loader-inner .loader-line-wrap:nth-child(3) {
  animation-delay: -150ms;
}
.loader-wrapper .loader .loader-inner .loader-line-wrap:nth-child(4) {
  animation-delay: -200ms;
}
.loader-wrapper .loader .loader-inner .loader-line-wrap:nth-child(5) {
  animation-delay: -250ms;
}
.loader-wrapper .loader .loader-inner .loader-line-wrap .loader-line {
  border: 4px solid transparent;
  border-radius: 100%;
  box-sizing: border-box;
  height: 100px;
  left: 0;
  margin: 0 auto;
  position: absolute;
  right: 0;
  top: 0;
  width: 100px;
}
.loader-wrapper .loader .loader-inner .loader-line-wrap:nth-child(1) .loader-line {
  border-color: #FFAD62;
  height: 90px;
  width: 90px;
  top: 7px;
}
.loader-wrapper .loader .loader-inner .loader-line-wrap:nth-child(2) .loader-line {
  border-color: #fff;
  height: 76px;
  width: 76px;
  top: 14px;
}
.loader-wrapper .loader .loader-inner .loader-line-wrap:nth-child(3) .loader-line {
  border-color: #73C0FF;
  height: 62px;
  width: 62px;
  top: 21px;
}
.loader-wrapper .loader .loader-inner .loader-line-wrap:nth-child(4) .loader-line {
  border-color: #FFAD62;
  height: 48px;
  width: 48px;
  top: 28px;
}
.loader-wrapper .loader .loader-inner .loader-line-wrap:nth-child(5) .loader-line {
  border-color: #fff;
  height: 34px;
  width: 34px;
  top: 35px;
}
.loader-wrapper .loader .loader-text {
  color: #fff;
}
.loader-wrapper .loader .loader-text img {
  max-width: 80px;
  opacity: 0.9;
}
.loader-wrapper .loader .loader-text p {
  font-size: 18px;
  font-weight: 500;
  color: #fff;
  margin: 0;
  opacity: 0.8;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes spin {
  0%, 15% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes pulse {
  0%, 100% {
    opacity: 0.8;
  }
  50% {
    opacity: 1;
  }
}
.navbar .nav-link {
  font-size: 16px;
  font-weight: 400;
  color: #000;
}
.navbar .btn.btn-admission {
  font-size: 16px;
  font-weight: 500;
  color: #000;
  border: 0;
  border-left: 1px solid #dee2e6;
  border-right: 1px solid #dee2e6;
  padding: 20px;
}
@media (max-width: 575.98px) {
  .navbar .btn.btn-admission {
    padding: 20px 0;
    border: 0;
  }
}

.hero {
  position: relative;
}
@media (max-width: 575.98px) {
  .hero {
    margin-top: 50px;
  }
}
.hero::after {
  position: absolute;
  content: url("../img/bg-after-hero.svg");
  top: 0;
  left: 0;
  z-index: -1;
}
@media (max-width: 575.98px) {
  .hero::after {
    content: url("../img/bg-after-hero-mobile.svg");
    top: -50px;
    left: auto;
    right: 0;
  }
}
.hero h1 {
  font-size: 52px;
  font-weight: 600;
  color: #000;
  line-height: 1.5;
}
@media (max-width: 575.98px) {
  .hero h1 {
    font-size: 32px;
  }
}
.hero h3 {
  font-size: 28px;
  font-weight: 500;
  color: #FFAD62;
}
@media (max-width: 575.98px) {
  .hero h3 {
    font-size: 20px;
  }
}
.hero p {
  font-size: 18px;
  font-weight: 400;
  color: #000;
}

.why-us {
  background: #F2F9FF;
  padding: 80px 0;
}
@media (max-width: 575.98px) {
  .why-us {
    padding: 40px 0;
  }
}
.why-us .text {
  font-size: 18px;
}
.why-us .whyus-card .rect {
  background: #73C0FF;
  border-radius: 2px 20px;
  font-size: 30px;
  font-weight: 600;
  color: #313131;
  padding: 10px 5px;
}
.why-us .whyus-card .title {
  font-size: 20px;
  font-weight: 500;
  color: #000;
}
.why-us .btn-whyus {
  background: #015EAA;
  box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.15), inset 0px -6px 10px rgba(0, 0, 0, 0.1), inset 0px 6px 10px rgba(0, 0, 0, 0.15);
  border-radius: 5px;
  font-size: 16px;
  font-weight: 500;
  color: #FFF;
}
.why-us .btn-whyus span {
  font-size: 20px;
}
.why-us .btn-whyus:hover {
  background: #014a8c;
  box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.2), inset 0px -6px 10px rgba(0, 0, 0, 0.15), inset 0px 6px 10px rgba(0, 0, 0, 0.2);
}
.why-us .btn-whyus:active {
  box-shadow: none;
  transform: translateY(2px);
  background: #014a8c;
  color: #fff;
}

.highlights {
  background-image: url("../img/bg-highlights.svg");
}
.highlights .high-card {
  background: #F2F9FF;
  border: 1px solid #73C0FF;
  border-radius: 10px;
  position: relative;
  z-index: 1;
}
.highlights .high-card .title {
  font-size: 20px;
  font-weight: 500;
  color: #000;
}
.highlights .high-card .text {
  font-size: 14px;
  padding-right: 20px;
}
.highlights .high-card .num {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 35px;
  z-index: -1;
}

.gallery {
  padding: 80px 0;
  background: #F2F9FF;
}
@media (max-width: 575.98px) {
  .gallery {
    padding: 40px 0;
  }
}

.testimonial {
  position: relative;
}
@media (max-width: 575.98px) {
  .testimonial {
    margin-bottom: 100px;
  }
}
.testimonial::after {
  position: absolute;
  content: "Testimonials";
  top: 200px;
  left: 80px;
  transform: rotate(-90deg);
  transform-origin: left top;
  font-size: 20px;
  font-weight: 600;
  color: #000;
}
@media (max-width: 575.98px) {
  .testimonial::after {
    display: none;
  }
}
.testimonial .name {
  font-size: 24px;
  font-weight: 600;
  color: #000;
}
@media (max-width: 575.98px) {
  .testimonial .name {
    font-size: 16px;
    color: #fff;
  }
}
.testimonial .test-card {
  background: #050505;
  border-radius: 0px;
}
.testimonial .test-card .card-body {
  padding: 40px;
}
@media (max-width: 575.98px) {
  .testimonial .test-card .card-body {
    padding: 24px;
  }
}
.testimonial .test-card .card-body .text {
  font-size: 20px;
  font-weight: 300;
  color: #fff;
  line-height: 34px;
}
@media (max-width: 575.98px) {
  .testimonial .test-card .card-body .text {
    font-size: 14px;
  }
}
.testimonial .owl-carousel .owl-item img {
  width: auto !important;
}
.testimonial .owl-nav {
  position: absolute;
  bottom: 105px;
  width: 100%;
}
@media (max-width: 575.98px) {
  .testimonial .owl-nav {
    position: relative;
    bottom: 0px;
  }
}
.testimonial .owl-nav .owl-next {
  position: absolute;
  right: 3px;
  width: 100px;
  height: 100px;
}
@media (max-width: 575.98px) {
  .testimonial .owl-nav .owl-next {
    right: 40%;
    transform: translateX(50%);
    width: 50px;
    height: 50px;
  }
}
.testimonial .owl-nav .owl-prev {
  position: absolute;
  left: 111px;
  width: 100px;
  height: 100px;
}
@media (max-width: 575.98px) {
  .testimonial .owl-nav .owl-prev {
    left: 30%;
    transform: translateX(50%);
    width: 50px;
    height: 50px;
  }
}
.testimonial .pagination-counter {
  position: absolute;
  left: 60px;
  bottom: -20px;
}
.testimonial .pagination-counter #current-slide {
  font-size: 56px;
  font-weight: 700;
  color: #000;
}
.testimonial .pagination-counter #total-slides {
  font-size: 16px;
  font-weight: 700;
  color: #000;
}

.cta {
  padding: 80px 0;
  background-image: url("../img/bg-cta.svg");
  background-size: cover;
  background-position: center;
}
@media (max-width: 575.98px) {
  .cta {
    padding: 40px 0;
  }
  .cta img {
    margin-top: -180px;
  }
}
.cta .cta-card {
  background: #015EAA;
  border-radius: 0px;
  margin-right: -40px;
}
@media (max-width: 575.98px) {
  .cta .cta-card {
    margin-right: 0;
  }
}
.cta .cta-card .card-body {
  padding: 50px;
  margin: 10px;
  border: 1px solid #fff;
}
@media (max-width: 575.98px) {
  .cta .cta-card .card-body {
    padding: 40px 10px 200px 10px;
    text-align: center;
  }
}
.cta .cta-card .card-body h4 {
  font-size: 28px;
  font-weight: 500;
  color: #fff;
}
@media (max-width: 575.98px) {
  .cta .cta-card .card-body h4 {
    font-size: 20px;
  }
}

.footer {
  background: #015EAA;
}
.footer .img {
  background-image: url("../img/footer.webp");
  background-size: cover;
  background-position: center;
}
.footer .img h4 {
  font-size: 28px;
  font-weight: 500;
  color: #fff;
}
.footer .img .title {
  font-size: 22px;
  font-weight: 600;
  color: #ffad62;
}
.footer .img .text {
  font-size: 18px;
  font-weight: 400;
  color: #fff;
}
@media (max-width: 575.98px) {
  .footer .map {
    height: 300px !important;
  }
}/*# sourceMappingURL=style.css.map */