@font-face {
  font-family: "Source Han Sans CN Light";
  src: url("../../fonts/han-sans-cn-light.otf") format("opentype");
}
@font-face {
  font-family: "Source Han Sans CN ExtraLight";
  src: url("../../fonts/han-sans-cn-extra-light.otf") format("opentype");
}
@font-face {
  font-family: "Source Han Sans CN Normal";
  src: url("../../fonts/han-sans-cn-normal.otf") format("opentype");
}
@font-face {
  font-family: "Helvetica Neue Thin";
  src: url("../../fonts/helvetica-neue-thin.ttf") format("truetype");
}
@font-face {
  font-family: "Source Han Sans TW Light";
  src: url("../../fonts/SourceHanSansTW-Light.otf") format("opentype");
}
@font-face {
  font-family: "Source Han Sans TW Regular";
  src: url("../../fonts/SourceHanSansTW-Regular.otf") format("opentype");
}
@font-face {
  font-family: "Source Han Sans TW Normal";
  src: url("../../fonts/SourceHanSansTW-Normal.otf") format("opentype");
}
@font-face {
  font-family: "Source Han Sans TW Medium";
  src: url("../../fonts/SourceHanSansTW-Medium.otf") format("opentype");
}
@font-face {
  font-family: "Source Han Sans TW Heavy";
  src: url("../../fonts/SourceHanSansTW-Heavy.otf") format("opentype");
}
/* Works on Firefox */
* {
  scrollbar-width: thin;
  scrollbar-color: #ffffff rgba(255, 255, 255, 0);
}

/* Works on Chrome, Edge, and Safari */
*::-webkit-scrollbar {
  width: 7px;
}

*::-webkit-scrollbar-track {
  background: #f2f2f2;
  border-radius: 20px;
}

*::-webkit-scrollbar-thumb {
  background: #dddbdb;
  border-radius: 20px;
}

* {
  font-family: "Source Han Sans CN Light", sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Source Han Sans CN Light", sans-serif;
  font-weight: 500;
  background-color: #206779;
  margin: 0;
  padding: 0;
  overscroll-behavior: none;
  overflow-x: hidden;
}

section#layout-content {
  overflow-x: hidden;
}

.top-section {
  height: 35.25vw;
  min-height: 590px;
}

h1 {
  font-size: 92px;
  margin: 0;
  margin-bottom: 1rem;
  font-weight: 100;
  color: white;
  font-family: "Helvetica Neue Thin";
  letter-spacing: 6px;
  line-height: 1;
}
@media (max-width: 767px) {
  h1 {
    font-size: 58px;
  }
}

h2 {
  margin: 0;
  color: white;
  line-height: 1.2;
  margin-bottom: 1.4rem;
  font-size: 40px;
  font-weight: 400;
}
@media (max-width: 767px) {
  h2 {
    font-size: 26px;
  }
}

h3 {
  font-size: 28px;
  font-family: "Source Han Sans CN ExtraLight";
  margin-bottom: 0.7rem;
  color: white;
  font-weight: 400;
  line-height: 1.3;
}
@media (max-width: 767px) {
  h3 {
    font-size: 22px;
  }
}

h4 {
  font-size: 22px;
  font-family: "Source Han Sans CN Normal" !important;
  margin-bottom: 0.7rem;
  color: white !important;
  font-weight: 400;
  line-height: 1.3;
}
@media (max-width: 767px) {
  h4 {
    font-size: 20px;
  }
}

h6 {
  font-size: 13px;
  font-family: "Source Han Sans CN Normal";
  margin-bottom: 0.3rem;
  color: white;
  font-weight: 400;
  line-height: 1.3;
}

p,
ol li {
  font-size: 16px;
  color: white;
  font-weight: 400;
  font-family: "Source Han Sans CN ExtraLight";
  margin-bottom: 1rem;
  line-height: 1.5;
  letter-spacing: 1.2px;
}
@media (max-width: 767px) {
  p,
  ol li {
    font-size: 15px;
    letter-spacing: 0.5px;
    line-height: 1.35;
  }
}

:not(nav) > ol li, :not(nav) > ul li {
  margin-left: 1.4rem;
  margin-bottom: 0.45rem;
}

.privacy-notice.hidden {
  transition: all 0.5s ease-in-out 0s;
  transform: translateY(100%);
}

.home-button-holder {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.2rem;
}

.home-btn {
  letter-spacing: 3px;
}
@media (max-width: 480px) {
  .home-btn:not(:last-child) {
    margin-right: 0;
  }
}
@media (max-width: 480px) {
  .home-btn {
    padding: 10px 20px !important;
    display: block !important;
  }
  .home-btn:hover {
    padding: 10px 35px 10px 10px !important;
  }
}

.fill-btn.coming-soon:after {
  content: "COMING SOON";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  opacity: 0;
  z-index: 1;
  display: block;
  color: black;
  margin: auto;
  height: -moz-fit-content;
  height: fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.fill-btn.coming-soon:hover span {
  opacity: 0;
}
.fill-btn.coming-soon:hover:after {
  opacity: 1;
}

.fill-btn {
  font-family: "Source Han Sans CN Light";
  text-decoration: none;
  text-align: center;
  font-size: 16px;
  display: inline-block;
  background-color: transparent;
  border: 1px solid #232323;
  color: #fff;
  padding: 10px 50px;
  transition: all 0.3s;
  border: 1px solid #fff;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
@media (max-width: 767px) {
  .fill-btn {
    width: -moz-fit-content;
    width: fit-content;
  }
}
@media (max-width: 565px) {
  .fill-btn {
    width: 100%;
    text-align: center !important;
  }
}
.fill-btn:hover {
  padding: 10px 70px 10px 30px;
}
.fill-btn:hover span {
  color: #000;
}
.fill-btn:hover span:after {
  opacity: 1;
  right: -2.8rem;
}
@media (max-width: 480px) {
  .fill-btn:hover span:after {
    right: -1.8rem;
  }
}
.fill-btn:hover:before {
  height: 100%;
}
.fill-btn span {
  display: inline-block;
  position: relative;
  transition: all 0.3s;
  text-transform: uppercase;
}
.fill-btn span:after {
  content: "\f054";
  font-family: "Font Awesome 6 Free", Arial, sans-serif;
  position: absolute;
  opacity: 0;
  right: 0;
  transition: 0.3s;
  font-weight: 900;
  top: 0;
  bottom: 0;
  margin: auto;
  height: -moz-fit-content;
  height: fit-content;
}
.fill-btn:before {
  content: "";
  width: 100%;
  height: 0;
  background-color: #fff;
  position: absolute;
  left: 0;
  bottom: 0;
  transition: 0.3s;
}

.center-btn {
  display: flex;
  justify-content: center;
}

.fade-up, .news-fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: 0.6s;
  transition-delay: 0.15s;
}

.fade-left {
  opacity: 0;
  transform: translateX(300px);
  transition: 0.6s;
  transition-delay: 0.15s;
}

.fade-right {
  opacity: 0;
  transform: translateX(-300px);
  transition: 0.6s;
  transition-delay: 0.15s;
}

.fade-up.animated, .news-fade-up.animated {
  transform: translateY(0px);
  opacity: 1;
}

.fade-left.animated {
  transform: translateX(0px);
  opacity: 1;
}

.fade-right.animated {
  transform: translateX(0px);
  opacity: 1;
}


a {
  text-decoration: none !important;
}
