* {
  box-sizing: border-box;
}

body, html {
  margin: 0;
  padding: 0;
}

body {
  background: #FFFFFF;
  font-family: "Open Sans", serif;
  font-size: 24px;
  font-weight: 300;
  color: #2F2F88;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Merriweather", serif;
  line-height: 1.25;
  font-weight: 300;
}

h1 {
  font-size: clamp(48px, 3.33vw, 64px);
}

h2 {
  font-size: clamp(36px, 2.3vw, 44px);
}

h3 {
  font-size: clamp(26px, 2.5vw, 32px);
}

h4 {
  font-size: clamp(20px, 1.75vw, 28px);
}

h5 {
  font-size: clamp(16px, 1.25vw, 24px);
}

h6 {
  font-size: clamp(12px, 1.125vw, 20px);
}

.wrapper {
  max-width: 1374px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 5vw;
  padding-right: 5vw;
}

@media (max-width: 992px) {
  .hide-desktop {
    display: none;
  }
}

@media (min-width: 768px) and (min-width: 991.9px) {
  .hide-tablet {
    display: none;
  }
}

@media (max-width: 768px) {
  .hide-mobile {
    display: none;
  }
}

.show-mobile {
  display: none;
}
@media (max-width: 768px) {
  .show-mobile {
    display: block;
  }
}

.btn {
  background: #2F2F88;
  border: 1px solid #2F2F88;
  color: white;
  border-radius: 20px;
  width: 380px;
  display: block;
  margin: 0 auto;
  font-weight: 600;
  cursor: pointer;
  font-size: clamp(24px, 1.7vw, 32px);
  height: 76px;
  max-height: 76px;
  line-height: 76px;
  text-decoration: none !important;
}
@media (max-width: 768px) {
  .btn {
    width: 300px;
  }
}
.btn:hover {
  background: white;
  color: #2F2F88;
}

.swiper {
  width: 100%;
  height: 100%;
}

@media (min-width: 992px) {
  .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    max-height: 100vh;
  }
}

main.body-wrapper {
  position: relative;
}
main.body-wrapper .component {
  background: #FFFFFF;
}

.shimmer {
  margin-bottom: 0;
  text-align: center;
  background-clip: text;
  background-image: linear-gradient(to right, #B79525 0%, #B79525 40%, rgba(184, 149, 50, 0.6) 50%, #B79525 60%, #B79525 100%);
  background-repeat: no-repeat;
  background-position: 0% top;
  background-size: 600px 100%;
  animation: shimmer 2.4s linear infinite 1s;
}
@media (min-width: 768px) {
  .shimmer {
    background-size: 80vw 100%;
  }
}
.shimmer span {
  color: transparent;
}

@keyframes shimmer {
  0% {
    background-position: 100% top;
  }
  100% {
    background-position: 0% top;
  }
}
section.hero-wrapper {
  width: 100%;
  height: 100vh;
  min-height: 100dvh;
  position: relative;
  display: flex;
  align-items: center;
}
@media (min-width: 992px) {
  section.hero-wrapper {
    max-height: 100vh;
  }
}
section.hero-wrapper .hero-bg {
  position: absolute;
  width: 100%;
  height: 100%;
}
section.hero-wrapper .hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 768px) {
  section.hero-wrapper .hero-bg img.desktop {
    display: none;
  }
}
section.hero-wrapper .hero-bg img.mobile {
  display: none;
}
@media (max-width: 768px) {
  section.hero-wrapper .hero-bg img.mobile {
    display: block;
  }
}
section.hero-wrapper .hero-content {
  position: relative;
  width: 100%;
  height: 100%;
}
section.hero-wrapper .hero-content .content-wrapper {
  max-width: clamp(400px, 49.3vw, 755px);
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 50px;
  padding: clamp(70px, 8vw, 135px) 0 clamp(115px, 10.2vw, 190px);
  text-align: left;
}
@media (max-width: 768px) {
  section.hero-wrapper .hero-content .content-wrapper {
    justify-content: flex-end;
    text-align: center;
    max-width: 300px;
    align-items: center;
    margin: 0 auto;
    padding: clamp(70px, 8vw, 135px) 0 40%;
  }
}
section.hero-wrapper .hero-content .content-wrapper img {
  max-width: 372px;
}
@media (max-width: 768px) {
  section.hero-wrapper .hero-content .content-wrapper img {
    max-width: 263px;
  }
}
section.hero-wrapper .hero-content .content-wrapper .form-wrapper h1 {
  color: white;
  font-size: 50px;
}

.form {
  text-align: center;
  backdrop-filter: blur(5px);
  background: linear-gradient(97.08deg, rgba(239, 239, 239, 0.4) 0.86%, rgba(239, 239, 239, 0.08) 99.72%);
  border-radius: 20px;
  padding: clamp(30px, 2.604vw, 50px) clamp(38px, 6.77vw, 120px);
}
.form .gform-body input[type=email] {
  border-radius: 8px;
  border: none;
  padding: 10px !important;
  width: 100% !important;
  text-align: center;
  font-family: "Open Sans", serif;
}
.form .gform_footer {
  text-align: center;
}
.form .gform_footer input[type=submit] {
  background: #2F2F88;
  border: 1px solid #2F2F88;
  color: white;
  border-radius: 10px;
  width: 380px;
  display: block;
  margin: 0 auto;
  font-weight: 500;
  cursor: pointer;
  font-size: clamp(20px, 1.7vw, 32px);
  line-height: 1 !important;
  height: 76px;
  max-height: 76px;
}
@media (max-width: 768px) {
  .form .gform_footer input[type=submit] {
    width: 300px;
  }
}
.form .gform_footer input[type=submit]:hover {
  background: white;
  color: #2F2F88;
}

.register-mobile {
  text-align: center;
  min-height: 100vh;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
@media (max-width: 768px) {
  .register-mobile {
    display: flex;
  }
}
.register-mobile .gform-body {
  text-align: center;
}
.register-mobile .gform-body input[type=email] {
  padding: 10px !important;
  width: 100% !important;
}
.register-mobile .gform_footer {
  text-align: center;
}
.register-mobile .gform_footer input[type=submit] {
  line-height: 1 !important;
}

.welcome {
  text-align: center;
  padding-top: 50px;
}

@media (min-width: 768px) {
  .reasons {
    padding: 100px 0 0;
    display: flex;
    justify-content: center;
    flex-direction: column;
  }
}
@media (max-width: 768px) {
  .reasons .reasons-grid {
    margin: 100px clamp(30px, 5vw, 80px) 240px;
  }
}
@media (min-width: 768px) {
  .reasons .reasons-grid {
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    grid-column-gap: clamp(75px, 5.8vw, 150px);
    grid-row-gap: clamp(50px, 3.208vw, 100px);
  }
}
.reasons .reasons-grid .slick-arrow {
  bottom: -100px;
  top: unset;
}
.reasons .reasons-grid .slick-arrow.slick-next {
  right: calc(50% - 50px);
}
.reasons .reasons-grid .slick-arrow.slick-next:before {
  position: relative;
  font-size: 40px;
  content: "\f054";
  font-family: "Fontawesome";
  color: #2F2F88;
  opacity: 1;
}
.reasons .reasons-grid .slick-arrow.slick-prev {
  left: calc(50% - 50px);
}
.reasons .reasons-grid .slick-arrow.slick-prev:before {
  position: relative;
  font-size: 40px;
  content: "\f053";
  font-family: "Fontawesome";
  color: #2F2F88;
  opacity: 1;
}
@media (max-width: 768px) {
  .reasons .reasons-grid .reason h3 {
    font-size: 34px;
    line-height: 1.3;
  }
  .reasons .reasons-grid .reason p {
    max-width: 260px;
  }
}

@media (min-width: 768px) {
  .partner {
    display: flex;
    padding: 100px 0;
    justify-content: center;
    flex-direction: column;
  }
}
@media (min-width: 768px) {
  .partner .external-wrapper {
    max-width: 1374px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-left: 5vw;
    padding-right: 5vw;
    display: flex;
  }
  .partner .external-wrapper .why, .partner .external-wrapper .cta {
    width: 50%;
  }
}
@media (max-width: 768px) {
  .partner .why {
    padding: 50px 5vw 70px;
    background: #2F2F88;
    color: white;
    min-height: 100vh;
    justify-content: center;
    align-items: center;
    display: flex;
    flex-direction: column;
  }
}
@media (min-width: 768px) {
  .partner .why {
    border-radius: 20px;
    padding: 60px 50px;
    backdrop-filter: blur(10px);
    background: linear-gradient(97.08deg, rgba(239, 239, 239, 0.6) 0.86%, rgba(239, 239, 239, 0.08) 99.72%);
  }
}
.partner .why ul {
  list-style: none;
}
@media (max-width: 768px) {
  .partner .why ul {
    padding-left: 20px;
  }
}
.partner .why ul li {
  margin-bottom: 15px;
  position: relative;
}
.partner .why ul li:before {
  position: absolute;
  content: "";
  display: inline-block;
  left: -35px;
  top: 5px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url("../images/star-blue.png");
  width: 25px;
  height: 25px;
}
@media (max-width: 768px) {
  .partner .why ul li:before {
    width: 12px;
    height: 14px;
    background-image: url("../images/star-white.png");
    top: 10px;
    left: -20px;
  }
}
@media (min-width: 768px) {
  .partner .cta {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
  }
  .partner .cta h2 {
    max-width: 85%;
  }
}
@media (max-width: 768px) {
  .partner .cta {
    padding: 50px 5vw 70px;
    text-align: center;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }
  .partner .cta h2 {
    font-size: 32px;
    line-height: 1.45;
  }
  .partner .cta .btn {
    margin-top: 50px;
  }
}

section.entry-anim {
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  position: relative;
  gap: 50px;
}
section.entry-anim img {
  max-width: clamp(300px, 31.2vw, 597px);
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
}
section.entry-anim img.fade-in {
  opacity: 1;
  transition: opacity 1.2s ease-in-out;
}
section.entry-anim h1 {
  transition: opacity 0.5s ease-in-out;
  max-width: 80vw;
  opacity: 0;
  font-size: clamp(40px, 3.34vw, 60px);
}
@media (max-width: 768px) {
  section.entry-anim h1 {
    text-align: left;
    margin-top: 0;
  }
}
section.entry-anim h1.fade-in {
  opacity: 1;
  transition: opacity 1.2s ease-in-out;
}

.scroll {
  position: absolute;
  bottom: 20px;
  right: calc(50% - 26px);
}
.scroll .icon {
  border-radius: 50%;
  width: 50px;
  height: 50px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
.scroll .icon i {
  font-size: 52px;
  color: #B79525;
}
@media (max-width: 768px) {
  .scroll .icon i {
    font-size: 32px;
  }
}
.scroll.white {
  background: white;
  border-radius: 50%;
}
.scroll.white .icon i {
  color: #B79525;
  font-size: 32px;
}

.bounce {
  -moz-animation: bounce 2s infinite;
  -webkit-animation: bounce 2s infinite;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-30px);
  }
  60% {
    transform: translateY(-15px);
  }
}

/*# sourceMappingURL=style.css.map */
