@import url("https://fonts.googleapis.com/css2?family=Gilda+Display&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
body {
  overflow-x: hidden !important;
}

.text {
  font-family: "Montserrat";
  font-weight: 400;
  font-size: 18px;
  color: #333;
}
@media (max-width: 575.98px) {
  .text {
    font-size: 16px;
  }
}

.head {
  font-family: "Gilda Display";
  font-weight: 700;
  font-size: 48px;
  color: #000;
}
@media (max-width: 575.98px) {
  .head {
    font-size: 32px;
  }
}

.subhead {
  font-family: "Montserrat";
  font-weight: 500;
  font-size: 16px;
  color: #0043B3;
}
@media (max-width: 575.98px) {
  .subhead {
    font-size: 14px;
  }
}

.loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #f6f9ff 0%, #e8f2ff 100%);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10000;
  transition: opacity 0.8s ease-out, visibility 0.8s ease-out;
}
.loader.fade-out {
  opacity: 0;
  visibility: hidden;
}
.loader .loader-content {
  text-align: center;
  animation: fadeInUp 1s ease-out;
}
.loader .loader-logo {
  width: 200px;
  height: auto;
  margin-bottom: 20px;
  animation: pulse 2s infinite;
}
.loader .loader-spinner {
  width: 50px;
  height: 50px;
  border: 4px solid #e3f2fd;
  border-top: 4px solid #0043B3;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 0 auto 20px;
}
.loader .loader-text {
  font-family: "Montserrat";
  font-weight: 500;
  font-size: 18px;
  color: #0043B3;
  margin: 0;
  animation: fadeInOut 2s infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInOut {
  0%, 100% {
    opacity: 0.7;
  }
  50% {
    opacity: 1;
  }
}
@media (max-width: 575.98px) {
  .navbar {
    padding: 0;
  }
}
.navbar .logo {
  max-width: 70px;
}
.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: #f6f9ff !important;
}
@media (max-width: 575.98px) {
  .navbar .bg-navbar {
    padding: 0 10px;
    border-radius: 0;
  }
}
.navbar .bg-navbar .nav-link {
  font-family: "Montserrat";
  font-weight: 500;
  font-size: 16px;
  color: #333;
  text-transform: uppercase;
}
.navbar .bg-navbar .nav-link:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #0043B3;
}
.navbar .bg-navbar .active {
  font-family: "Montserrat";
  font-weight: 600;
  font-size: 16px;
  color: #191919;
}

.btn.btn-outline {
  cursor: pointer;
  position: relative;
  padding: 10px 20px;
  font-family: "Montserrat";
  font-weight: 500;
  font-size: 16px;
  color: #a545a5;
  border: 2px solid #a545a5;
  border-radius: 34px;
  background-color: transparent;
  transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
  overflow: hidden;
}
.btn.btn-outline::before {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  width: 80px;
  height: 50px;
  border-radius: inherit;
  scale: 0;
  z-index: -1;
  background-color: #c04cc0;
  transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}
.btn.btn-outline:hover {
  color: #fff;
  scale: 1.1;
  box-shadow: 0 0px 20px rgba(255, 121, 254, 0.4);
}
.btn.btn-outline:hover::before {
  scale: 3;
}
.btn.btn-outline:active {
  scale: 1;
}

.btn.btn-primary {
  cursor: pointer;
  position: relative;
  padding: 10px 20px;
  font-family: "Montserrat";
  font-weight: 500;
  font-size: 16px;
  color: #fff;
  border: 2px solid #0043B3;
  border-radius: 34px;
  background-color: #0043B3;
  transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
  overflow: hidden;
}
.btn.btn-primary::before {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  width: 80px;
  height: 50px;
  border-radius: inherit;
  scale: 0;
  z-index: -1;
  background-color: #105bdc;
  transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}
.btn.btn-primary:hover {
  color: #fff;
  scale: 1.1;
  box-shadow: 0 0px 20px rgba(0, 67, 179, 0.4);
}
.btn.btn-primary:hover::before {
  scale: 3;
}
.btn.btn-primary:active {
  scale: 1;
}

.hero .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.7);
  z-index: 1;
}
@media (max-width: 575.98px) {
  .hero .overlay {
    background-color: rgba(255, 255, 255, 0.3);
  }
}
.hero .hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: -1;
}
.hero .content-row {
  padding: 110px 0 !important;
  position: relative;
  z-index: 2;
}
@media (max-width: 575.98px) {
  .hero .content-row {
    padding: 70px 0 40px 0 !important;
  }
}
.hero .content-row h1 {
  font-family: "Gilda Display";
  font-weight: 700;
  font-size: 54px;
  color: #000;
}
@media (max-width: 575.98px) {
  .hero .content-row h1 {
    font-size: 28px;
  }
}
.hero .content-row p {
  font-family: "Montserrat";
  font-weight: 400;
  font-size: 20px;
  color: #333;
}
@media (max-width: 575.98px) {
  .hero .content-row p {
    font-size: 18px;
  }
}

.about {
  position: relative;
}
.about::after {
  content: url("../img/mandala2.svg");
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
  opacity: 0.1;
}
.about .text {
  font-family: "Montserrat";
  font-weight: 500;
  font-size: 28px;
  color: #333;
}
@media (max-width: 575.98px) {
  .about .text {
    font-size: 16px;
    font-weight: 400;
  }
}

.pillars {
  position: relative;
}
.pillars::after {
  content: url("../img/mandala2.svg");
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
  opacity: 0.1;
}
.pillars .icon-pillars {
  width: 100px;
}
.pillars h4 {
  font-family: "Gilda Display";
  font-weight: 700;
  font-size: 28px;
  color: #000;
}
.pillars .sub {
  font-family: "Montserrat";
  font-weight: 500;
  font-size: 20px;
  color: #767676;
}

.challenge {
  background-image: url("../img/bg-challenge.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.challenge h4 {
  font-family: "Gilda Display";
  font-weight: 700;
  font-size: 28px;
  color: #000;
  position: relative;
}
@media (max-width: 575.98px) {
  .challenge h4 {
    border: 1px solid #000;
    padding: 10px;
  }
}
.challenge h4::after {
  content: url("../img/icons/after.svg");
  position: absolute;
  top: -5px;
  margin-left: 10px;
}
@media (max-width: 575.98px) {
  .challenge h4::after {
    display: none;
  }
}

.team .name {
  font-family: "Montserrat";
  font-weight: 500;
  font-size: 18px;
  color: #333;
}
@media (max-width: 575.98px) {
  .team .name {
    font-size: 16px;
  }
}
.team .position {
  font-family: "Montserrat";
  font-weight: 500;
  font-size: 14px;
  color: #767676;
}
@media (max-width: 575.98px) {
  .team .position {
    font-size: 12px;
  }
}
.team img {
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
}

.form::after {
  content: url("../img/mandala.svg");
  position: absolute;
  top: -60px;
  left: -50px;
  z-index: -1;
  opacity: 0.4;
}
@media (max-width: 575.98px) {
  .form::after {
    left: 50%;
    transform: translateX(-50%);
  }
}
.form::before {
  content: url("../img/mandala2.svg");
  position: absolute;
  bottom: -80px;
  right: -80px;
  z-index: -1;
  opacity: 0.4;
}
@media (max-width: 575.98px) {
  .form::before {
    right: 50%;
    transform: translateX(50%);
  }
}
.form .form-container {
  background: #FFFFFF;
  border: 1px solid #E6E6E6;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.15);
  border-radius: 10px;
}
.form .form-container .contact-info {
  background: #105bdc;
  border-radius: 10px;
  position: relative;
}
.form .form-container .contact-info::after {
  position: absolute;
  content: url("../img/icons/after-form.svg");
  bottom: -10px;
  right: 0;
}
.form .form-container .contact-info .head {
  font-size: 34px;
}
.form .form-container .contact-info .nav-link {
  font-family: "Montserrat";
  font-weight: 500;
  font-size: 16px;
  color: #fff;
  padding: 10px 20px;
  border-radius: 8px;
}
.form .form-container .contact-info .nav-link:hover {
  color: #e59216;
}
.form .form-container .contact-info .nav-link.active {
  font-family: "Montserrat";
  font-weight: 600;
  font-size: 16px;
  color: #191919;
}
.form .form-container .contact-info .newsletter-signup h4 {
  font-family: "Gilda Display";
  font-weight: 700;
  font-size: 28px;
  color: #fff;
}
.form .form-container .contact-info .newsletter-signup p {
  font-family: "Montserrat";
  font-weight: 400;
  font-size: 14px;
  color: #fff;
}
.form .form-container .main-form label {
  font-family: "Montserrat";
  font-weight: 500;
  font-size: 13px;
  color: #8D8D8D;
}
.form .form-container .main-form .form-control,
.form .form-container .main-form .form-select {
  border: 0;
  border-bottom: 1px solid #8D8D8D;
  border-radius: 0;
}
.form .form-container .main-form .form-control:focus,
.form .form-container .main-form .form-select:focus {
  box-shadow: none;
  border-color: #0433B9;
}
.form .form-container .main-form select {
  font-family: "Montserrat";
  font-weight: 500;
  font-size: 16px;
  color: #8d8d8d;
}

footer .nav-link {
  font-family: "Montserrat";
  font-weight: 500;
  font-size: 16px;
  color: #333;
}
footer .nav-link:hover {
  color: #0433B9;
}
footer .lower {
  font-family: "Montserrat";
  font-weight: 400;
  font-size: 14px;
  color: #767676;
}/*# sourceMappingURL=style.css.map */