@import url("https://fonts.googleapis.com/css2?family=Arvo:ital,wght@0,400;0,700;1,400;1,700&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");
body,
html {
  background: #FFF100;
  overflow-x: hidden;
  font-family: "Arvo", serif !important;
}

header {
  display: flex;
  justify-content: center;
  background: #FFF100;
  border-bottom: 1rem solid #0D07C1;
  position: fixed;
  z-index: 99999;
  width: 100%;
}
header > div {
  display: flex;
  height: 6.5rem;
  width: 144rem;
  position: relative;
}
header > div a.logo {
  position: relative;
  z-index: 1;
  top: 2rem;
  margin-left: 2.5rem;
}
@media screen and (max-width: 767px) {
  header > div a.logo {
    margin-left: 1rem;
    display: none;
  }
  header > div a.logo img {
    width: 7rem;
  }
}
header > div a.logo-mobile {
  display: none;
  margin-top: 3rem;
  margin-left: 1rem;
}
@media screen and (max-width: 767px) {
  header > div a.logo-mobile {
    display: block;
  }
}
header > div .join {
  position: absolute;
  right: 2.5rem;
  top: 2rem;
  transition: ease all 0.3s;
}
header > div .join:hover {
  transform: translate(0.4rem, 0.5rem);
  scale: 0.98;
}
@media screen and (max-width: 767px) {
  header > div .join {
    top: 3.2rem;
    right: 0.5rem;
  }
  header > div .join img {
    width: 10rem;
  }
}

section.first {
  display: flex;
  justify-content: center;
  width: 100%;
  height: 90rem;
  position: relative;
  overflow: hidden;
  margin-top: 7.5rem;
}
section.first video {
  position: absolute;
  width: 100%;
  left: 0rem;
  top: 0rem;
}
section.first div {
  display: flex;
  width: 144rem;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}
section.first div img {
  animation: scale 5s infinite;
}
@media screen and (max-width: 767px) {
  section.first div img {
    width: 17rem;
  }
}
@keyframes scale {
  0% {
    transform: scale(1);
  }
  10% {
    transform: scale(1);
  }
  30% {
    transform: scale(1.2);
  }
  50% {
    transform: scale(1);
  }
  100% {
    transform: scale(1);
  }
}

section.second {
  display: flex;
  justify-content: center;
  width: 100%;
  min-height: 70rem;
  background: #3992CF;
  padding-top: 7.5rem;
  position: relative;
}
section.second > div.content {
  display: flex;
  width: 144rem;
  align-items: center;
  justify-content: top;
  flex-direction: column;
  position: relative;
}
@media screen and (max-width: 767px) {
  section.second > div.content {
    width: 100%;
  }
}
section.second > div.content .welcome-message {
  position: relative;
  width: 86.5rem;
  background: #FFF100;
  border: 0.5rem solid #0D07C1;
  padding-top: 6.5rem;
  box-shadow: 1px 1px #0D07C1, 2px 2px #0D07C1, 3px 3px #0D07C1, 4px 4px #0D07C1, 5px 5px #0D07C1, 6px 6px #0D07C1, 7px 7px #0D07C1, 8px 8px #0D07C1, 9px 9px #0D07C1, 10px 10px #0D07C1, 11px 11px #0D07C1, 12px 12px #0D07C1, 13px 13px #0D07C1, 14px 14px #0D07C1, 15px 15px #0D07C1, 16px 16px #0D07C1, 17px 17px #0D07C1, 18px 18px #0D07C1, 19px 19px #0D07C1, 20px 20px #0D07C1, 21px 21px #0D07C1, 22px 22px #0D07C1, 23px 23px #0D07C1, 24px 24px #0D07C1, 25px 25px #0D07C1, 26px 26px #0D07C1, 27px 27px #0D07C1, 28px 28px #0D07C1, 29px 29px #0D07C1, 30px 30px #0D07C1, 31px 31px #0D07C1, 32px 32px #0D07C1, 33px 33px #0D07C1, 34px 34px #0D07C1, 35px 35px #0D07C1, 36px 36px #0D07C1, 37px 37px #0D07C1, 38px 38px #0D07C1, 39px 39px #0D07C1, 40px 40px #0D07C1;
}
@media screen and (max-width: 767px) {
  section.second > div.content .welcome-message {
    width: calc(100% - 6rem);
    left: -2rem;
    padding-top: 3rem;
  }
}
section.second > div.content .welcome-message div.splash {
  position: absolute;
  left: 5rem;
  top: -8rem;
}
@media screen and (max-width: 767px) {
  section.second > div.content .welcome-message div.splash {
    left: 4rem;
    top: -7rem;
  }
}
section.second > div.content .welcome-message div.splash img {
  position: absolute;
}
@media screen and (max-width: 767px) {
  section.second > div.content .welcome-message div.splash img {
    width: 8.5rem;
  }
}
section.second > div.content .welcome-message div.splash .blue-splash {
  animation: fadeInOut 0.4s ease-in-out infinite alternate;
}
section.second > div.content .welcome-message b {
  font-size: 5.6rem;
  color: #0D07C1;
  text-align: center;
  display: block;
  line-height: 5rem;
}
section.second > div.content .welcome-message b .mobile {
  display: none;
}
@media screen and (max-width: 767px) {
  section.second > div.content .welcome-message b {
    font-size: 3.6rem;
    padding: 0rem 4rem;
    line-height: 4rem;
  }
  section.second > div.content .welcome-message b .desk {
    display: none;
  }
  section.second > div.content .welcome-message b .mobile {
    display: block;
  }
}
section.second > div.content .welcome-message p {
  display: block;
  font-size: 2.1rem;
  text-align: center;
  color: #0D07C1;
  line-height: 3.2rem;
  margin-top: 4rem;
}
@media screen and (max-width: 767px) {
  section.second > div.content .welcome-message p {
    margin-top: 2rem;
    padding: 0rem 2rem;
    font-size: 1.8rem;
    line-height: 2.6rem;
  }
  section.second > div.content .welcome-message p .mob {
    display: none;
  }
}
section.second > div.content .welcome-message div {
  display: block;
  text-align: center;
  margin-top: 3rem;
  margin-bottom: 3rem;
}
section.second > div.content .welcome-message div img {
  transition: ease all 0.3s;
  animation: pulseMove 5s infinite;
}
@media screen and (max-width: 767px) {
  section.second > div.content .welcome-message div img {
    width: 90%;
  }
}
@keyframes pulseMove {
  0% {
    transform: scale(1);
  }
  10% {
    transform: scale(1);
  }
  30% {
    transform: scale(1.1);
  }
  50% {
    transform: scale(1);
  }
  100% {
    transform: scale(1);
  }
}
section.second > div.content .marquee {
  width: 100%;
  margin-top: 10rem;
  margin-bottom: 5rem;
}
section.second > div.content .marquee .marquee-inner {
  display: flex;
  width: -moz-max-content;
  width: max-content;
  animation: marquee-animation 48s linear infinite;
}
section.second > div.content .marquee .marquee-inner img {
  flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  section.second > div.content .marquee .marquee-inner img {
    width: 400rem;
  }
}
@keyframes marquee-animation {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
section.second > div.content .thegoods {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: top;
  background: url(/assets/img/bg-star.png) no-repeat center top;
  padding-top: 12rem;
}
@media screen and (max-width: 767px) {
  section.second > div.content .thegoods {
    background-size: 190%;
  }
}
section.second > div.content .thegoods > div {
  display: flex;
  align-items: center;
  flex-direction: column;
  padding-bottom: 28rem;
}
@media screen and (max-width: 767px) {
  section.second > div.content .thegoods > div {
    padding-bottom: 15rem;
  }
}
@media screen and (max-width: 767px) {
  section.second > div.content .thegoods > div .title {
    width: 19.5rem;
  }
}
section.second > div.content .thegoods > div .card-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 8rem;
  width: 87rem;
}
@media screen and (max-width: 767px) {
  section.second > div.content .thegoods > div .card-container {
    width: 100%;
    flex-direction: column;
  }
}
section.second > div.content .thegoods > div .card-container .card {
  width: 38rem;
  height: auto;
  border: 0.3rem solid #0D07C1;
  box-shadow: 1px 1px #0D07C1, 2px 2px #0D07C1, 3px 3px #0D07C1, 4px 4px #0D07C1, 5px 5px #0D07C1, 6px 6px #0D07C1, 7px 7px #0D07C1, 8px 8px #0D07C1, 9px 9px #0D07C1, 10px 10px #0D07C1, 11px 11px #0D07C1, 12px 12px #0D07C1, 13px 13px #0D07C1, 14px 14px #0D07C1, 15px 15px #0D07C1, 16px 16px #0D07C1, 17px 17px #0D07C1, 18px 18px #0D07C1, 19px 19px #0D07C1, 20px 20px #0D07C1, 21px 21px #0D07C1, 22px 22px #0D07C1, 23px 23px #0D07C1, 24px 24px #0D07C1, 25px 25px #0D07C1, 26px 26px #0D07C1, 27px 27px #0D07C1, 28px 28px #0D07C1, 29px 29px #0D07C1, 30px 30px #0D07C1, 31px 31px #0D07C1, 32px 32px #0D07C1, 33px 33px #0D07C1, 34px 34px #0D07C1, 35px 35px #0D07C1, 36px 36px #0D07C1, 37px 37px #0D07C1, 38px 38px #0D07C1, 39px 39px #0D07C1, 40px 40px #0D07C1;
  position: relative;
  z-index: 1;
  box-sizing: border-box;
  padding: 3rem;
  padding-top: 7.5rem;
  text-align: center;
  margin-bottom: 6rem;
  transition: ease all 0.3s;
  cursor: default;
}
@media screen and (max-width: 767px) {
  section.second > div.content .thegoods > div .card-container .card {
    width: 30rem;
    padding-top: 6rem;
    left: -2rem;
  }
}
section.second > div.content .thegoods > div .card-container .card b {
  font-family: "Arvo", serif;
  color: #0D07C1;
  font-size: 3rem;
  text-transform: uppercase;
}
@media screen and (max-width: 767px) {
  section.second > div.content .thegoods > div .card-container .card b {
    font-size: 2rem;
  }
  section.second > div.content .thegoods > div .card-container .card b .mob {
    display: none;
  }
}
section.second > div.content .thegoods > div .card-container .card p {
  font-family: "Arvo", serif;
  font-size: 1.8rem;
  color: #0D07C1;
  line-height: 2.4rem;
}
@media screen and (max-width: 767px) {
  section.second > div.content .thegoods > div .card-container .card p {
    font-size: 1.6rem;
  }
}
section.second > div.content .thegoods > div .card-container .card:hover {
  transform: none !important;
}
section.second > div.content .thegoods > div .card-container .card:hover img {
  animation: rotateInfinitely 3s linear infinite;
}
section.second > div.content .thegoods > div .card-container .card img {
  position: absolute;
  top: -3.5rem;
  left: 50%;
  width: 7rem;
  margin-left: -3.5rem;
}
@keyframes rotateInfinitely {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
section.second > div.content .thegoods > div .card-container .card:nth-child(1) {
  background-color: #F89C1C;
  transform: rotate(-5deg);
}
section.second > div.content .thegoods > div .card-container .card:nth-child(2) {
  background-color: #6FB1DC;
  transform: rotate(5deg);
}
section.second > div.content .thegoods > div .card-container .card:nth-child(3) {
  background-color: #2FB457;
  transform: rotate(5deg);
}
section.second > div.content .thegoods > div .card-container .card:nth-child(4) {
  background-color: #FFF200;
  transform: rotate(-5deg);
}

section.third {
  background: #2FB357;
  position: relative;
  min-height: 45rem;
}
@media screen and (max-width: 767px) {
  section.third {
    min-height: 42rem;
  }
}
section.third div.title {
  position: relative;
  width: 100%;
  text-align: center;
  top: -5.2rem;
}
@media screen and (max-width: 767px) {
  section.third div.title {
    top: -2.2rem;
  }
  section.third div.title img {
    width: 19.4rem;
  }
}
section.third .line {
  width: 120rem;
  position: absolute;
  text-align: center;
  overflow: hidden;
  left: 50%;
  margin-left: -60rem;
  top: 15rem;
}
@media screen and (max-width: 767px) {
  section.third .line {
    top: 12rem;
  }
}
section.third .swiper-button-next,
section.third .swiper-button-prev {
  top: 19rem;
}
@media screen and (max-width: 767px) {
  section.third .swiper-button-next,
  section.third .swiper-button-prev {
    top: 15rem;
  }
}
section.third .swiper-button-next::after,
section.third .swiper-button-prev::after {
  display: none;
}
section.third .swiper-button-next {
  right: calc((100% - 120rem) / 2 - 5rem);
}
@media screen and (max-width: 1300px) {
  section.third .swiper-button-next {
    right: 2rem;
  }
  section.third .swiper-button-next img {
    width: 5rem;
  }
}
section.third .swiper-button-prev {
  left: calc((100% - 120rem) / 2 - 5rem);
}
@media screen and (max-width: 1300px) {
  section.third .swiper-button-prev {
    left: 2rem;
  }
  section.third .swiper-button-prev img {
    width: 5rem;
  }
}
section.third .slider {
  margin: 0 auto;
  width: 120rem;
  position: relative;
}
@media screen and (max-width: 1200px) {
  section.third .slider {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  section.third .slider {
    margin-top: 2rem;
  }
}
section.third .slider .swiper-slide {
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}
section.third .slider .swiper-slide div {
  height: 12rem;
  width: 10rem;
}
section.third .slider .swiper-slide b {
  font-family: "Arvo", serif;
  font-weight: bold;
  font-size: 1.5rem;
  color: #0D07C1;
  text-transform: uppercase;
}
section.third .slider .swiper-slide p {
  font-family: "Arvo", serif;
  font-weight: bold;
  font-size: 2rem;
  color: #0D07C1;
  margin-top: 0.3rem;
  padding: 0rem;
  margin-bottom: 1rem;
  max-width: 25rem;
}
section.third .slider .swiper-slide span {
  font-family: "Arvo", serif;
  font-weight: normal;
  font-size: 1.7rem;
  color: #0D07C1;
  padding: 0rem 2rem;
  opacity: 0;
  transition: all 0.5s ease;
  line-height: 2.2rem;
}
@media screen and (max-width: 1200px) {
  section.third .slider .swiper-slide span {
    opacity: 1;
  }
}
section.third .slider .swiper-slide.swiper-slide-next span {
  opacity: 1;
}
section.third .pause-btn {
  position: absolute;
  bottom: 4.5rem;
  right: calc((100% - 120rem) / 2 - 0.5rem);
  z-index: 9;
}
@media screen and (max-width: 1200px) {
  section.third .pause-btn {
    right: 2rem;
  }
}
section.third .pause-btn img {
  height: 2.8rem;
}
section.third #playBtn {
  display: none;
}

section.fourth {
  background: url(/assets/img/bg-star-units.png) no-repeat center top #3992CF;
  background-size: 100rem;
  height: 83rem;
  padding-top: 14rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  section.fourth {
    background: url(/assets/img/bg-star.png) no-repeat center top #3992CF;
    background-size: 70rem;
    background-position-y: 5rem;
    padding-top: 8rem;
    height: auto;
    padding-bottom: 7rem;
  }
}
section.fourth > div.content .vibes {
  display: flex;
  flex-direction: column;
  text-align: center;
  flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  section.fourth > div.content .vibes {
    margin-bottom: 2rem;
  }
}
section.fourth > div.content .vibes img {
  align-self: center;
  margin-bottom: 0.5rem;
}
@media screen and (max-width: 767px) {
  section.fourth > div.content .vibes img {
    width: 6.2rem;
  }
}
section.fourth > div.content .vibes p {
  font-family: "railroad-gothic-atf", sans-serif;
  font-size: 9rem;
  font-weight: normal;
  color: #FFF200;
  margin: 0px;
  padding: 0px;
}
@media screen and (max-width: 767px) {
  section.fourth > div.content .vibes p {
    font-size: 0rem;
  }
  section.fourth > div.content .vibes p img {
    width: 28rem;
  }
}
section.fourth > div.content .units-list {
  display: flex;
  align-items: center;
  flex-direction: column;
  margin-top: -2rem;
}
section.fourth > div.content .units-list div {
  display: flex;
  align-items: center;
  margin-top: -1rem;
}
@media screen and (max-width: 767px) {
  section.fourth > div.content .units-list div {
    flex-direction: column;
    margin-left: unset !important;
    margin-top: 0rem;
  }
  section.fourth > div.content .units-list div img {
    display: none;
  }
  section.fourth > div.content .units-list div img:last-child {
    display: block;
    width: 4.4rem;
  }
}
section.fourth > div.content .units-list div:last-child {
  flex-direction: column;
}
section.fourth > div.content .units-list div:last-child img {
  margin-top: -1rem;
}
section.fourth > div.content .units-list div:first-child {
  margin-top: 0rem;
}
section.fourth > div.content .units-list div:first-child img {
  width: auto;
  height: 6.5rem;
}
section.fourth > div.content .units-list div p {
  float: left;
  font-family: "railroad-gothic-atf", sans-serif;
  font-size: 7rem;
  font-weight: normal;
  color: #3992CF;
  text-shadow: 1px 1px #0D07C1, 2px 2px #0D07C1, 3px 3px #0D07C1, 4px 4px #0D07C1, 5px 5px #0D07C1, 6px 6px #0D07C1, 7px 7px #0D07C1, 8px 8px #0D07C1, 9px 9px #0D07C1;
  letter-spacing: -0.2rem;
  -webkit-text-stroke: 0.2rem #0D07C1;
  margin: 0px;
  padding: 0px;
  cursor: pointer;
  transition: all ease 0.2s;
}
section.fourth > div.content .units-list div p:hover {
  color: #FFF200;
}
@media screen and (max-width: 767px) {
  section.fourth > div.content .units-list div p {
    font-size: 4rem;
    white-space: nowrap;
    margin-bottom: 0.5rem;
  }
}
section.fourth > div.content .units-list div img {
  float: left;
  margin-left: 1.5rem;
  margin-right: 0.5rem;
  margin-top: 1rem;
  width: 9rem;
}
section.fourth > div.content .units-list div .big-heart {
  height: 7.5rem;
  width: auto;
}
section.fourth > div.content .units-list div .actionhero {
  height: 7rem;
  width: auto;
}
section.fourth > div.content .unit-modal {
  display: none;
  position: fixed;
  left: 0;
  top: 7rem;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 9999;
}
section.fourth > div.content .modal-content {
  background-color: #F89C1C;
  margin: 10% auto;
  padding: 4rem;
  width: 62rem;
  text-align: center;
  position: relative;
  color: #0D07C1;
  border: 4px solid #0D07C1;
  -webkit-clip-path: polygon(0 0, calc(100% - 40px) 0, 100% 40px, 100% 100%, 40px 100%, 0 calc(100% - 40px));
          clip-path: polygon(0 0, calc(100% - 40px) 0, 100% 40px, 100% 100%, 40px 100%, 0 calc(100% - 40px));
}
@media screen and (max-width: 767px) {
  section.fourth > div.content .modal-content {
    width: 37rem;
    margin: 8% auto;
    padding: 2.5rem;
    padding: 2rem 0rem;
  }
}
section.fourth > div.content .modal-content > div {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  section.fourth > div.content .modal-content > div {
    flex-direction: column;
    text-align: center;
  }
}
section.fourth > div.content .modal-content > div > div {
  display: flex;
  flex-direction: column;
  text-align: left;
  align-items: flex-start;
}
@media screen and (max-width: 767px) {
  section.fourth > div.content .modal-content > div > div {
    text-align: center;
    width: 100%;
  }
}
section.fourth > div.content .modal-content > div > div h2 {
  font-family: "Arvo", serif;
  font-size: 3.5rem;
  color: #0D07C1;
  padding: 0rem;
  margin: 0rem;
}
@media screen and (max-width: 767px) {
  section.fourth > div.content .modal-content > div > div h2 {
    width: calc(100% - 2rem);
    font-size: 2.5rem;
    margin-top: 3.5rem;
    text-align: center;
    padding: 0rem 1rem;
  }
}
section.fourth > div.content .modal-content > div > div p {
  font-family: "Arvo", serif;
  font-size: 1.45rem;
  color: #0D07C1;
  line-height: 1.8rem;
}
@media screen and (max-width: 767px) {
  section.fourth > div.content .modal-content > div > div p {
    padding: 0rem 1rem;
  }
}
section.fourth > div.content .modal-content::before {
  content: "";
  position: absolute;
  top: 17px;
  right: -14px;
  width: 60px;
  height: 4px;
  background-color: #0D07C1;
  transform: rotate(45deg);
}
section.fourth > div.content .modal-content::after {
  content: "";
  position: absolute;
  bottom: 17px;
  left: -14px;
  width: 60px;
  height: 4px;
  background-color: #0D07C1;
  transform: rotate(45deg);
}
section.fourth > div.content .close-modal {
  position: absolute;
  top: 10px;
  right: 3.5rem;
  font-family: "Arvo", serif;
  font-size: 24px;
  font-weight: bold;
  cursor: pointer;
  color: #0D07C1;
  font-weight: bold;
}
section.fourth > div.content .modal-content img {
  width: 24rem;
  margin-right: 4rem;
  display: block;
  align-self: flex-start;
  border: 4px solid #0D07C1;
  box-shadow: 1px 1px #0D07C1, 2px 2px #0D07C1, 3px 3px #0D07C1, 4px 4px #0D07C1, 5px 5px #0D07C1, 6px 6px #0D07C1, 7px 7px #0D07C1, 8px 8px #0D07C1, 9px 9px #0D07C1, 10px 10px #0D07C1, 11px 11px #0D07C1, 12px 12px #0D07C1, 13px 13px #0D07C1, 14px 14px #0D07C1, 15px 15px #0D07C1, 16px 16px #0D07C1, 17px 17px #0D07C1, 18px 18px #0D07C1, 19px 19px #0D07C1, 20px 20px #0D07C1;
}
@media screen and (max-width: 767px) {
  section.fourth > div.content .modal-content img {
    align-self: center;
    margin-right: 2rem;
    margin-top: 1rem;
  }
}

.future {
  display: flex;
  width: 100%;
  background-color: #F89C1C;
  justify-content: center;
  padding: 5rem 0rem;
  padding-bottom: 0rem;
}
@media screen and (max-width: 767px) {
  .future {
    padding: 4rem 0rem;
  }
}
.future > div {
  width: 68rem;
  text-align: center;
  position: relative;
}
@media screen and (max-width: 767px) {
  .future > div .text-content {
    height: 10rem;
  }
}
@media screen and (max-width: 767px) {
  .future > div .text-content .future-text {
    width: 29.7rem;
  }
}
.future > div .text-content .splash {
  position: absolute;
}
.future > div .text-content .splash img {
  position: absolute;
  top: -8.5rem;
  left: -0.5rem;
}
@media screen and (max-width: 767px) {
  .future > div .text-content .splash img {
    width: 7.1rem;
    top: -5.5rem;
    left: 1rem;
  }
}
.future > div .text-content .splash .blue-splash {
  animation: fadeInOut 0.4s ease-in-out infinite alternate;
}
.future > div .join {
  z-index: 1;
  display: inline-block;
  position: relative;
  bottom: -4rem;
}
@media screen and (max-width: 767px) {
  .future > div .join {
    bottom: -8rem;
  }
}
.future > div .join img {
  transition: ease all 0.3s;
}
.future > div .join img:hover {
  transform: translate(0.4rem, 0.5rem);
  scale: 0.98;
}

section.five {
  background: url(/assets/img/bg-star.png) no-repeat center top #3992CF;
  background-position: center 10rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-bottom: 13rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  section.five {
    background: url(/assets/img/bg-star-units.png) no-repeat center top #3992CF;
    background-size: 80rem;
    background-position-y: 9rem;
  }
}
section.five div.content {
  padding-top: 20rem;
}
@media screen and (max-width: 767px) {
  section.five div.content {
    padding-top: 5rem;
  }
}
section.five div.content .chief {
  float: left;
  width: 93rem;
  margin-bottom: 5rem;
}
@media screen and (max-width: 767px) {
  section.five div.content .chief {
    width: 100%;
    margin-bottom: 0rem;
  }
}
section.five div.content .chief div.img-container {
  position: relative;
}
section.five div.content .chief div.img-container img {
  border: 0.4rem solid #0D07C1;
  box-shadow: 1px 1px #0D07C1, 2px 2px #0D07C1, 3px 3px #0D07C1, 4px 4px #0D07C1, 5px 5px #0D07C1, 6px 6px #0D07C1, 7px 7px #0D07C1, 8px 8px #0D07C1, 9px 9px #0D07C1, 10px 10px #0D07C1, 11px 11px #0D07C1, 12px 12px #0D07C1, 13px 13px #0D07C1, 14px 14px #0D07C1, 15px 15px #0D07C1, 16px 16px #0D07C1, 17px 17px #0D07C1, 18px 18px #0D07C1, 19px 19px #0D07C1, 20px 20px #0D07C1, 21px 21px #0D07C1, 22px 22px #0D07C1, 23px 23px #0D07C1, 24px 24px #0D07C1, 25px 25px #0D07C1, 26px 26px #0D07C1, 27px 27px #0D07C1, 28px 28px #0D07C1, 29px 29px #0D07C1, 30px 30px #0D07C1, 31px 31px #0D07C1, 32px 32px #0D07C1, 33px 33px #0D07C1, 34px 34px #0D07C1, 35px 35px #0D07C1, 36px 36px #0D07C1, 37px 37px #0D07C1, 38px 38px #0D07C1, 39px 39px #0D07C1, 40px 40px #0D07C1;
  float: left;
  margin-top: 14rem;
  width: 51.5rem;
}
@media screen and (max-width: 767px) {
  section.five div.content .chief div.img-container img {
    position: relative;
    width: 79%;
    left: 8%;
  }
}
section.five div.content .chief div.img-container .hover-image {
  position: absolute;
  top: 0;
  left: 0rem;
  opacity: 0;
  transition: opacity 0.4s ease;
}
@media screen and (max-width: 767px) {
  section.five div.content .chief div.img-container .hover-image {
    width: 79%;
    left: 8%;
  }
}
section.five div.content .chief .chief-message {
  float: left;
  margin-left: -5rem;
}
@media screen and (max-width: 767px) {
  section.five div.content .chief .chief-message {
    width: 85%;
    margin-left: 2%;
    margin-top: -1rem;
  }
}
section.five div.content .chief .chief-message .text {
  font-family: "Arvo", serif;
  color: #0D07C1;
  font-size: 3rem;
  font-weight: normal;
  border: 0.4rem solid #0D07C1;
  box-shadow: 1px 1px #0D07C1, 2px 2px #0D07C1, 3px 3px #0D07C1, 4px 4px #0D07C1, 5px 5px #0D07C1, 6px 6px #0D07C1, 7px 7px #0D07C1, 8px 8px #0D07C1, 9px 9px #0D07C1, 10px 10px #0D07C1, 11px 11px #0D07C1, 12px 12px #0D07C1, 13px 13px #0D07C1, 14px 14px #0D07C1, 15px 15px #0D07C1, 16px 16px #0D07C1, 17px 17px #0D07C1, 18px 18px #0D07C1, 19px 19px #0D07C1, 20px 20px #0D07C1, 21px 21px #0D07C1, 22px 22px #0D07C1, 23px 23px #0D07C1, 24px 24px #0D07C1, 25px 25px #0D07C1, 26px 26px #0D07C1, 27px 27px #0D07C1, 28px 28px #0D07C1, 29px 29px #0D07C1, 30px 30px #0D07C1, 31px 31px #0D07C1, 32px 32px #0D07C1, 33px 33px #0D07C1, 34px 34px #0D07C1, 35px 35px #0D07C1, 36px 36px #0D07C1, 37px 37px #0D07C1, 38px 38px #0D07C1, 39px 39px #0D07C1, 40px 40px #0D07C1;
  background-color: #FFF100;
  position: relative;
  z-index: 1;
  padding: 3rem;
}
@media screen and (max-width: 767px) {
  section.five div.content .chief .chief-message .text {
    font-size: 2rem;
  }
}
section.five div.content .chief .chief-message .text::after {
  content: "";
  position: absolute;
  z-index: 1;
  background: url(/assets/img/bolt.png) no-repeat;
  width: 10rem;
  height: 16.7rem;
  left: 12rem;
  bottom: -16.7rem;
  background-size: contain;
}
section.five div.content .chief .chief-message .chief-name {
  font-family: "Arvo", serif;
  font-size: 2.2rem;
  color: #0D07C1;
  font-weight: bold;
  margin-left: 12rem;
  margin-top: 15rem;
}
@media screen and (max-width: 767px) {
  section.five div.content .chief .chief-message .chief-name {
    margin-left: 7rem;
  }
}
section.five .marquee {
  width: 100%;
  margin-top: 5rem;
  margin-bottom: 5rem;
}
section.five .marquee .marquee-inner {
  display: flex;
  width: -moz-max-content;
  width: max-content;
  animation: marquee-animation 48s linear infinite;
}
section.five .marquee .marquee-inner img {
  flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  section.five .marquee .marquee-inner img {
    width: 400rem;
  }
}
@keyframes marquee-animation {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
section.five .video-container {
  display: flex;
  align-items: center;
  margin-top: 2.5rem;
}
@media screen and (max-width: 767px) {
  section.five .video-container {
    width: 100%;
  }
}
section.five .video-container .video-content {
  width: 56rem;
  height: auto;
  border: 0.3rem solid #0D07C1;
  background: #0D07C1;
  box-shadow: 1px 1px #0D07C1, 2px 2px #0D07C1, 3px 3px #0D07C1, 4px 4px #0D07C1, 5px 5px #0D07C1, 6px 6px #0D07C1, 7px 7px #0D07C1, 8px 8px #0D07C1, 9px 9px #0D07C1, 10px 10px #0D07C1, 11px 11px #0D07C1, 12px 12px #0D07C1, 13px 13px #0D07C1, 14px 14px #0D07C1, 15px 15px #0D07C1, 16px 16px #0D07C1, 17px 17px #0D07C1, 18px 18px #0D07C1, 19px 19px #0D07C1, 20px 20px #0D07C1, 21px 21px #0D07C1, 22px 22px #0D07C1, 23px 23px #0D07C1, 24px 24px #0D07C1, 25px 25px #0D07C1, 26px 26px #0D07C1, 27px 27px #0D07C1, 28px 28px #0D07C1, 29px 29px #0D07C1, 30px 30px #0D07C1, 31px 31px #0D07C1, 32px 32px #0D07C1, 33px 33px #0D07C1, 34px 34px #0D07C1, 35px 35px #0D07C1, 36px 36px #0D07C1, 37px 37px #0D07C1, 38px 38px #0D07C1, 39px 39px #0D07C1, 40px 40px #0D07C1;
  position: relative;
  z-index: 1;
  text-align: center;
}
@media screen and (max-width: 767px) {
  section.five .video-container .video-content {
    width: 89%;
    left: 2%;
    box-shadow: 1px 1px #0D07C1, 2px 2px #0D07C1, 3px 3px #0D07C1, 4px 4px #0D07C1, 5px 5px #0D07C1, 6px 6px #0D07C1, 7px 7px #0D07C1, 8px 8px #0D07C1, 9px 9px #0D07C1, 10px 10px #0D07C1, 11px 11px #0D07C1, 12px 12px #0D07C1, 13px 13px #0D07C1, 14px 14px #0D07C1, 15px 15px #0D07C1, 16px 16px #0D07C1, 17px 17px #0D07C1, 18px 18px #0D07C1, 19px 19px #0D07C1, 20px 20px #0D07C1, 21px 21px #0D07C1, 22px 22px #0D07C1, 23px 23px #0D07C1, 24px 24px #0D07C1;
  }
  section.five .video-container .video-content iframe {
    width: 100%;
    height: 250px;
  }
}
section.five .video-container .video-content video {
  width: 100%;
}
section.five .video-container .video-content button {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-family: "Arvo", serif;
  background: none;
  border: none;
  outline: none;
  color: #FFF100;
  font-size: 2rem;
  display: flex;
  align-items: center;
  z-index: 9999;
  cursor: pointer;
}
section.five .video-container .video-content button img {
  margin-right: 1rem;
}

.sixth {
  display: flex;
  justify-content: center;
  background-color: #2FB457;
}
.sixth > div {
  display: flex;
  flex-direction: row;
  width: 120rem;
  padding-top: 4rem;
  padding-bottom: 5rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .sixth > div {
    width: 100%;
    flex-direction: column;
    padding-left: 1rem;
  }
}
.sixth > div .text {
  font-family: "Arvo", serif;
  font-weight: 700;
  color: #0D07C1;
  font-size: 4rem;
  margin-right: 3rem;
}
@media screen and (max-width: 767px) {
  .sixth > div .text {
    margin-right: 0rem;
  }
}
.sixth > div .contact {
  font-family: "Arvo", serif;
  font-weight: 500;
  color: #0D07C1;
  font-size: 1.6rem;
  line-height: 2.5rem;
  padding-top: 1rem;
}
.sixth > div .contact a {
  color: #0D07C1;
}
.sixth > div .contact .social {
  display: flex;
  margin-top: 4rem;
}
.sixth > div .contact .social a {
  margin-right: 0.5rem;
}
.sixth > div .joinus {
  margin-left: auto;
  position: relative;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .sixth > div .joinus {
    margin-top: 9rem;
  }
}
.sixth > div .joinus .splash {
  position: absolute;
  left: -10rem;
  top: -9rem;
}
@media screen and (max-width: 767px) {
  .sixth > div .joinus .splash {
    left: -9rem;
    top: -8rem;
  }
}
.sixth > div .joinus .splash img {
  position: absolute;
}
@media screen and (max-width: 767px) {
  .sixth > div .joinus .splash img {
    width: 9.9rem;
  }
}
.sixth > div .joinus .splash .blue-splash {
  animation: fadeInOut 0.4s ease-in-out infinite alternate;
}
.sixth > div .joinus .btn {
  transition: ease all 0.3s;
}
@media screen and (max-width: 767px) {
  .sixth > div .joinus .btn {
    width: 25rem;
  }
}
.sixth > div .joinus .btn:hover {
  transform: translate(0.4rem, 0.5rem);
  scale: 0.98;
}

.footer {
  display: flex;
  justify-content: center;
  background-color: #0D07C1;
  padding: 5rem 0rem;
}
.footer > div {
  width: 120rem;
  display: flex;
  flex-direction: row;
}
@media screen and (max-width: 767px) {
  .footer > div {
    width: 100%;
    flex-direction: column;
    padding-left: 1rem;
  }
}
.footer > div .logo {
  margin-right: 10rem;
}
@media screen and (max-width: 767px) {
  .footer > div .logo {
    margin-right: 0rem;
  }
}
.footer > div .footer-content {
  display: flex;
  flex-direction: column;
}
.footer > div .footer-content .phones {
  font-family: "Arvo", serif;
  font-size: 2rem;
  font-weight: bold;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  color: #FFF100;
}
@media screen and (max-width: 767px) {
  .footer > div .footer-content .phones {
    flex-direction: column;
  }
}
.footer > div .footer-content .phones p {
  margin-right: 3rem;
  letter-spacing: 0.1rem;
}
.footer > div .footer-content .phones p b {
  font-family: "Arvo", serif;
  font-weight: bold;
  font-size: 2rem;
  padding: 0.5rem;
  background-color: #F89C1C;
  color: #0D07C1;
}
.footer > div .footer-content .phones p a[href^=tel] {
  color: #FFF100;
  color: inherit;
  /* Inherit text color of parent element. */
  text-decoration: none;
  /* Remove underline. */
  /* Additional css `propery: value;` pairs here */
}
.footer > div .footer-content .links {
  font-family: "Arvo", serif;
  font-size: 1.4rem;
  margin-top: 3rem;
}
@media screen and (max-width: 767px) {
  .footer > div .footer-content .links {
    display: flex;
    flex-direction: column;
  }
}
.footer > div .footer-content .links a {
  color: #FFF100;
  margin-right: 1rem;
}
@media screen and (max-width: 767px) {
  .footer > div .footer-content .links a {
    margin-right: 0rem;
    margin-bottom: 0.5rem;
  }
}
.footer > div .footer-content .copyright {
  font-family: "Arvo", serif;
  font-size: 1.4rem;
  color: #FFF100;
  margin-top: 4rem;
}

@keyframes fadeInOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
.pagination {
  position: fixed;
  right: 2rem;
  top: 50%;
  transform: translateY(-50%);
  z-index: 999;
  display: flex;
  flex-direction: column;
  top: 40%;
}
@media screen and (max-width: 1200px) {
  .pagination {
    display: none;
  }
}
.pagination a {
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  border: 0.2rem solid #FFF100;
  margin-bottom: 0.5rem;
  cursor: pointer;
}
.pagination a.active {
  background-color: #FFF100;
}

.animated-star {
  position: absolute;
  z-index: 9999;
  display: none;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .animated-star img {
    width: 6rem;
  }
}

.star1 {
  top: 3rem;
  right: 10rem;
  display: block !important;
}
@media screen and (max-width: 767px) {
  .star1 {
    top: 1rem;
    right: 2rem;
  }
}

.star2 {
  top: 85rem;
  left: 5rem;
  display: block !important;
}
@media screen and (max-width: 767px) {
  .star2 {
    top: 86rem;
    left: unset;
    right: 2rem;
  }
}

.star3 {
  top: 80rem;
  right: 10rem;
  display: block !important;
}
@media screen and (max-width: 767px) {
  .star3 {
    top: 5rem;
    right: unset;
    left: 1rem;
  }
}

.star4 {
  top: 10rem;
  left: 10rem;
  display: block !important;
}
@media screen and (max-width: 767px) {
  .star4 {
    left: 2rem;
  }
}

.star5 {
  bottom: -2rem;
  left: 10rem;
  display: block !important;
}
@media screen and (max-width: 767px) {
  .star5 {
    left: 1rem;
    bottom: -3rem;
  }
}

.star6 {
  bottom: 10rem;
  right: 10rem;
  display: block !important;
}
@media screen and (max-width: 767px) {
  .star6 {
    right: 1rem;
    bottom: 4rem;
  }
}

.popup {
  position: absolute;
  color: #000;
  padding: 2rem 1.5rem;
  width: 25rem;
  font-family: "Arvo", serif;
  background-color: #2FB457;
  z-index: 9999;
  flex-direction: column;
  border: 2px solid #0D07C1;
  box-sizing: border-box;
  box-shadow: 1px 1px #0D07C1, 2px 2px #0D07C1, 3px 3px #0D07C1, 4px 4px #0D07C1, 5px 5px #0D07C1, 6px 6px #0D07C1, 7px 7px #0D07C1, 8px 8px #0D07C1, 9px 9px #0D07C1, 10px 10px #0D07C1, 11px 11px #0D07C1, 12px 12px #0D07C1, 13px 13px #0D07C1, 14px 14px #0D07C1, 15px 15px #0D07C1, 16px 16px #0D07C1, 17px 17px #0D07C1, 18px 18px #0D07C1, 19px 19px #0D07C1, 20px 20px #0D07C1;
  padding-left: 6rem;
  display: none;
}
.popup.active {
  display: flex;
}
.popup h3 {
  margin: 0 0 1rem;
  font-size: 2.8rem;
  color: #0D07C1;
}
.popup p {
  font-size: 1.7rem;
  margin: 0 0 1rem;
  color: #0D07C1;
  line-height: 2.2rem;
}
.popup strong {
  font-weight: bold;
}
.popup .popup-icon {
  position: absolute;
  top: 1.5rem;
  left: -4rem;
}
.popup .popup-icon img {
  width: 8.5rem;
}
.popup .popup-close {
  font-family: "Arvo", serif;
  font-size: 24px;
  font-weight: bold;
  color: #000;
  text-decoration: none;
  color: #0D07C1;
  position: absolute;
  top: 1rem;
  right: 1rem;
}

.popup.active {
  display: flex;
}

.popup.first {
  right: 25rem;
  top: 2rem;
}
@media screen and (max-width: 767px) {
  .popup.first {
    right: 8rem;
    top: 0rem;
  }
}

.popup.second {
  top: 83rem;
  left: 20rem;
  background-color: #FFF200;
}
@media screen and (max-width: 767px) {
  .popup.second {
    left: 4rem;
    top: 83rem;
  }
}

.popup.third {
  bottom: -24rem;
  right: 25rem;
}
@media screen and (max-width: 767px) {
  .popup.third {
    bottom: unset;
    top: 2rem;
    right: 3rem;
  }
}

.popup.fourth {
  top: 8rem;
  left: 25rem;
  background-color: #FFF200;
}
@media screen and (max-width: 767px) {
  .popup.fourth {
    left: unset;
    right: 2rem;
    top: 7rem;
  }
}

.popup.five {
  bottom: -17rem;
  right: 25rem;
}
@media screen and (max-width: 767px) {
  .popup.five {
    right: 8rem;
    z-index: 999;
    bottom: -25rem;
  }
}

.popup.six {
  bottom: -24.5rem;
  left: 25rem;
  background-color: #FFF200;
}
@media screen and (max-width: 767px) {
  .popup.six {
    left: 10rem;
  }
}

.animated-star img {
  animation: rotate 3s linear infinite;
}
@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}/*# sourceMappingURL=main.css.map */