html {
  overflow-x: hidden;
}

body {
  background-color: #010273;
  font-size: 0.9rem;
  line-height: 1.3rem;
  font-weight: 400;
  color: #000;
  overflow-x: hidden;
  background-image: url("./images/background.jpg?v=1.0.4");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: right center;
  position: relative;
}
@media screen and (max-width: 992px) {
  body {
    background-image: url("./images/background-m.jpg?v=1.0.4");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    background-position: bottom center;
  }
}
body::before {
  content: " ";
  position: absolute;
  background-image: url("./images/top-cover.png?v=1.0.4");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-position: bottom center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  top: 0;
  height: 35vh;
  left: 0;
}
@media screen and (max-width: 992px) {
  body::before {
    background-image: url("./images/top-cover-m.png?v=1.0.4");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    height: 12vh;
  }
}
@media screen and (max-width: 575px) {
  body::before {
    height: 8vh;
  }
}
body::after {
  content: " ";
  position: absolute;
  background-image: url("./images/bottom-cover.png?v=1.0.4");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-position: bottom center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 20%;
  bottom: 0;
  height: 25vh;
  right: 0;
}
@media screen and (max-width: 992px) {
  body::after {
    width: 50%;
    height: 20vh;
  }
}
@media screen and (max-width: 575px) {
  body::after {
    width: 70%;
  }
}
body a, body button {
  text-decoration: none;
  transition: all 0.5s ease-in-out !important;
}
body h1, body h2, body h3, body h4, body h5, body h6, body strong, body b {
  font-weight: 500;
}
body img {
  -o-object-fit: cover;
     object-fit: cover;
}
body section {
  overflow-x: hidden;
}

@media screen and (max-width: 992px) {
  .page-landing {
    padding-top: 14vh !important;
  }
}
@media screen and (max-width: 575px) {
  .page-landing {
    padding-top: 10vh !important;
  }
}
@media screen and (max-width: 575px) {
  .page-landing .logo {
    margin-right: auto !important;
    margin-left: auto !important;
  }
}
.page-landing a.cta {
  background-color: #ff7000;
  border-radius: 5px;
  cursor: pointer;
  z-index: 9;
  width: 300px;
  height: 70px;
  outline: none;
  cursor: pointer;
  position: relative;
  padding: 0px;
  overflow: hidden;
}
@media screen and (max-width: 575px) {
  .page-landing a.cta {
    width: 250px;
    height: 60px;
  }
}
.page-landing a.cta span {
  position: absolute;
  display: block;
}
.page-landing a.cta span:nth-of-type(1) {
  height: 3px;
  width: 300px;
  top: 0px;
  left: -300px;
  background: linear-gradient(to right, rgba(0, 0, 0, 0), #fff);
  border-top-right-radius: 1px;
  border-bottom-right-radius: 1px;
  animation: span1 2s linear infinite;
  animation-delay: 1s;
}
@keyframes span1 {
  0% {
    left: -300px;
  }
  100% {
    left: 300px;
  }
}
.page-landing a.cta span:nth-of-type(2) {
  height: 70px;
  width: 3px;
  top: -70px;
  right: 0px;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0), #fff);
  border-bottom-left-radius: 1px;
  border-bottom-right-radius: 1px;
  animation: span2 2s linear infinite;
  animation-delay: 2s;
}
@keyframes span2 {
  0% {
    top: -70px;
  }
  100% {
    top: 70px;
  }
}
.page-landing a.cta span:nth-of-type(3) {
  height: 3px;
  width: 300px;
  right: -300px;
  bottom: 0px;
  background: linear-gradient(to left, rgba(0, 0, 0, 0), #fff);
  border-top-left-radius: 1px;
  border-bottom-left-radius: 1px;
  animation: span3 2s linear infinite;
  animation-delay: 3s;
}
@keyframes span3 {
  0% {
    right: -300px;
  }
  100% {
    right: 300px;
  }
}
.page-landing a.cta span:nth-of-type(4) {
  height: 70px;
  width: 3px;
  bottom: -70px;
  left: 0px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0), #fff);
  border-top-right-radius: 1px;
  border-top-left-radius: 1px;
  animation: span4 2s linear infinite;
  animation-delay: 4s;
}
@keyframes span4 {
  0% {
    bottom: -70px;
  }
  100% {
    bottom: 70px;
  }
}
.page-landing a.cta label {
  color: #ffffff;
  font-size: 1.6rem;
}
@media screen and (max-width: 575px) {
  .page-landing a.cta label {
    font-size: 1.1rem;
  }
}
.page-landing a.cta:hover {
  box-shadow: 0px 0px 55px 0px #ff7000;
  transform: rotate(-3deg) scale(1.1);
}
.page-landing a.cta:hover span {
  animation-play-state: paused;
}
@keyframes zoomInOut {
  0% {
    transform: scale(0.9);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(0.9);
  }
}
.page-landing img.mascot {
  bottom: 0;
  right: 0;
  width: 18%;
  z-index: 2;
  animation: jump 1s ease-out infinite;
}
@media screen and (max-width: 992px) {
  .page-landing img.mascot {
    width: 38%;
  }
}
@media screen and (max-width: 575px) {
  .page-landing img.mascot {
    width: 50%;
  }
}
.page-landing lottie-player {
  position: absolute;
  right: 0;
  bottom: 10%;
}
@media screen and (max-width: 575px) {
  .page-landing lottie-player {
    z-index: 2;
    width: 200px !important;
    height: 200px !important;
  }
}
@keyframes float {
  50% {
    transform: translate(0, 20px);
  }
}
@keyframes jump {
  0%, 100% {
    bottom: 0;
  }
  50% {
    bottom: 10px;
  }
}
.page-landing .ambassador .box-1 {
  width: 18%;
  right: 30%;
  bottom: 60%;
  animation: box1 5s ease-in-out infinite;
}
@media screen and (max-width: 992px) {
  .page-landing .ambassador .box-1 {
    top: unset;
    left: 3%;
    right: unset;
    width: 40%;
    bottom: 35%;
  }
}
@media screen and (max-width: 575px) {
  .page-landing .ambassador .box-1 {
    bottom: 40%;
  }
}
@keyframes box1 {
  0% {
    transform: translate(0, 0px);
  }
  50% {
    transform: translate(-15px, 15px);
  }
  100% {
    transform: translate(0, 0px);
  }
}
.page-landing .ambassador .box-2 {
  width: 20%;
  right: 8%;
  bottom: 55%;
  animation: box2 5s ease-in-out infinite;
}
@media screen and (max-width: 992px) {
  .page-landing .ambassador .box-2 {
    top: unset;
    right: 10%;
    width: 40%;
    bottom: 33%;
  }
}
@media screen and (max-width: 575px) {
  .page-landing .ambassador .box-2 {
    bottom: 40%;
  }
}
@keyframes box2 {
  0% {
    transform: translate(0, 0px);
  }
  50% {
    transform: translate(15px, -15px);
  }
  100% {
    transform: translate(0, 0px);
  }
}
.page-landing .ambassador .model {
  bottom: 0;
  width: 45%;
  right: 5%;
  animation: animateShadow 5s ease-in-out infinite;
}
@media screen and (max-width: 992px) {
  .page-landing .ambassador .model {
    position: relative !important;
    width: 90%;
    right: 0;
  }
}
@media screen and (max-width: 575px) {
  .page-landing .ambassador .model {
    width: 100%;
    transform: scale(1.15);
  }
}
@keyframes animateShadow {
  0% {
    filter: drop-shadow(1px 1px 15px rgb(0, 17, 147));
    will-change: filter;
  }
  50% {
    filter: drop-shadow(1px 1px 15px transparent);
    will-change: filter;
  }
  100% {
    filter: drop-shadow(1px 1px 15px rgb(0, 17, 147));
    will-change: filter;
  }
}
.page-landing .ambassador .footer-m {
  z-index: 2;
  top: -25px;
}

@media screen and (max-width: 767px) {
  [data-aos] {
    pointer-events: auto !important;
    opacity: 1 !important;
    transform: none !important;
  }
}/*# sourceMappingURL=style.css.map */