@import url("https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Raleway:wght@300;400;500;600&display=swap");
@font-face {
  font-family: Neue-regular;
  src: url(../fonts/neue/NeueMachina-Regular.otf);
  font-display: swap;
}
@font-face {
  font-family: Neue-light;
  src: url(../fonts/neue/NeueMachina-Light.otf);
  font-display: swap;
}
@font-face {
  font-family: Neue-bold;
  src: url(../fonts/neue/NeueMachina-Ultrabold.otf);
  font-display: swap;
}
* {
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  width: 100%;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

body {
  width: 100%;
  -webkit-font-smoothing: antialiased; /* Nice for text */
  /* font-family: 'DM Sans', sans-serif; */
  font-family: "Raleway", "DM Sans", Neue-bold, Arial, Helvetica, sans-serif;
  /* background: bisque; */
  background: #000;
  background: #141414;
  overflow-x: hidden;
  /* cursor: none; */
}

/* loading screen */
.loading-screen {
  position: fixed;
  z-index: 10;
  width: 100%;
  height: 100vh;
  /* background-color: black; */
  /* background: bisque; */
  background: #d9d9d9;
  /* color: white; */
  color: #000;
  overflow: hidden;
}

.loading-section {
  position: absolute;
  display: flex;
  width: 100%;
  height: 100vh;
  align-items: center;
  justify-content: center;
}

.loading-section .title {
  margin: 0px 20px;
  font-weight: 600;
  letter-spacing: 2px;
  font-size: 7em;
  font-family: "Raleway", sans-serif;
}

.loading-section .bracket {
  font-size: 7em;
  margin: 0px 30px;
  /* font-family: "Kenoky"; */
  font-family: "Raleway", sans-serif;
}

#loader {
  font-size: 7em;
  /* font-family: "Kenoky"; */
  font-family: "Raleway", sans-serif;
}

.loading-images-container {
  position: absolute;
  bottom: 0;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 100%;
  height: -moz-min-content;
  height: min-content;
}

.loading-images-container2 {
  position: absolute;
  bottom: 0;
  left: -300px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 100%;
  height: -moz-min-content;
  height: min-content;
}

.loading-images {
  width: -moz-max-content;
  width: max-content;
  height: -moz-max-content;
  height: max-content;
  margin: 0px 60px;
  animation: sliding 7s infinite linear;
}

.loading-images2 {
  width: -moz-max-content;
  width: max-content;
  height: -moz-max-content;
  height: max-content;
  margin: 0px 60px;
  animation: sliding2 7s infinite linear;
}

/* animation sliding for loading screen  */
@keyframes sliding {
  from {
    transform: translateX(5%);
  }
  to {
    transform: translateX(-30%);
  }
}
@keyframes sliding2 {
  from {
    transform: translateX(-10%);
  }
  to {
    transform: translateX(30%);
  }
}
.loading-images img,
.loading-images2 img {
  height: 100px;
  margin: 10px 25px;
  overflow: hidden;
  -o-object-fit: contain;
  object-fit: contain;
}

.bottom-section {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  margin-top: 30px;
  margin-bottom: 20px;
}

.bottom-section .bottom-line {
  font-weight: lighter;
  font-size: 12px;
}

@media (max-width: 910px) {
  .loading-section .title,
  .loading-section .bracket {
    /* background: pink; */
    margin: 0px 2vw;
    font-size: 75px;
  }
  #loader {
    font-size: 75px;
  }
}
@media (max-width: 550px) {
  .loading-section .title,
  .loading-section .bracket {
    /* background: pink; */
    margin: 0px 2vw;
    font-size: 45px;
  }
  #loader {
    font-size: 45px;
  }
}
@media (max-width: 350px) {
  .loading-section .title,
  .loading-section .bracket {
    font-size: 10vw;
  }
  #loader {
    font-size: 14vw;
  }
}
.pg-content {
  background: #000;
  width: 100%;
  margin-bottom: 80vh;
  position: relative;
  z-index: 1;
}

.pg-content2 {
  background: #000;
}

/* welcome screen - hero  */
.welcome-screen {
  color: #fff;
  position: relative;
  height: 100vh;
  margin: auto;
  background: #000;
}

header {
  padding: 1em 0;
  position: absolute;
  width: 100%;
  background: #000;
  top: 0;
  z-index: 11;
}

.headerContent {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 91%;
  margin: auto;
}

.logo-box {
  display: flex;
  align-items: center;
  opacity: 0;
  transform: translateX(-400px);
}
.logo-box p {
  font-size: 25px;
  font-weight: 600;
}

nav {
  position: relative;
  display: flex;
  flex-direction: column;
  z-index: 3;
}
nav .navH {
  display: flex;
  justify-content: space-between;
  flex-direction: row;
  opacity: 0;
  transform: translateX(400px);
}
nav .navH a {
  font-size: 20px;
  font-weight: 500;
  margin-left: 2em;
}
nav .navH span {
  display: inline-block;
  transition: transform 0.1s linear;
  transition: 0.3s ease-in;
  overflow: hidden;
}
nav .navH span:hover {
  color: #141414;
  -webkit-text-stroke: 1.5px rgba(255, 255, 255, 0.6);
}
nav .navCircle,
nav .navCircleM {
  position: fixed;
  z-index: 4;
  align-self: flex-end;
  border-radius: 50%;
  background: #d9d9d9;
  width: 60px;
  height: 60px;
  display: none;
  transition: 0.5s ease-in;
  opacity: 0;
}
nav .navCircleM {
  display: none;
}
nav .show {
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.5s ease-in;
  opacity: 1;
}
nav .nav-zoom-out {
  animation: navZoomOut 0.5s ease-in forwards;
}
@keyframes navZoomOut {
  from {
    opacity: 1;
    transform: scale(1);
  }
  to {
    opacity: 0;
    transform: scale(0);
  }
}

.titleBx {
  bottom: 0.5em;
  position: absolute;
  width: 100%;
  margin-top: 5em;
}
.titleBx .tBcontent {
  width: 90%;
  margin: auto;
  text-align: center;
}
.titleBx .tBcontent span {
  margin-bottom: 1em;
  display: block;
  overflow: hidden;
}
.titleBx .tBcontent h1 {
  font-size: 10em;
  font-family: Neue-bold;
  transform: translateY(400px);
  opacity: 0;
}

@media (max-height: 601px) {
  .titleBx {
    top: 15em;
    bottom: 0;
  }
  .titleBx .tBcontent {
    text-align: left;
  }
  .titleBx .tBcontent h1 {
    font-size: 8.6em;
    overflow-wrap: break-word;
  }
}
.skaters,
.skaters2 {
  position: absolute;
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
}

.skaters {
  bottom: 9.5em;
}

.skaters2 {
  bottom: 3em;
}

.skater1,
.skater2,
.runner {
  width: 100%;
  padding: 0.7em;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  overflow: hidden;
  white-space: nowrap;
}

.runner {
  position: absolute;
  top: -5em;
  z-index: 10;
}

.skater1Content {
  padding-left: 100%;
  animation: animate 11s infinite linear;
  animation-delay: 11s;
  display: inline-block;
}

.runnerContent {
  padding-left: 100%;
  animation: animate 8s 1 linear reverse;
  animation-delay: 4.2s;
  display: inline-block;
  height: 600px;
}

.runnerContent2 {
  padding-left: 100%;
  animation: animate 8s 1 linear reverse;
  animation-delay: 32.9s;
  display: inline-block;
  height: 600px;
}

.runnerContent3 {
  padding-left: 100%;
  animation: animate 8s 1 linear reverse;
  animation-delay: 52.9s;
  display: inline-block;
  height: 600px;
}

.skater2Content {
  width: 100%;
  padding-left: 100%;
  animation: animate 12s infinite linear reverse;
  animation-delay: 8.4s;
  display: inline-block;
}

@keyframes animate {
  100% {
    transform: translate(-100%, 0);
  }
}
@keyframes animate2 {
  100% {
    transform: translate(-10%, 0);
  }
}
.heroTxt {
  position: relative;
  display: flex;
  width: 91%;
  padding-top: 9em;
  margin: 0 auto 2em auto;
  align-items: flex-end;
  justify-content: flex-end;
}
.heroTxt .heroTxtContent {
  align-self: flex-end;
  width: 25%;
  text-align: right;
  opacity: 0;
}
.heroTxt .heroTxtContent p {
  line-height: 33px;
  font-size: 1.15em;
  font-weight: 400;
}

.heroTxtM {
  display: none;
}

@media (max-height: 601px) {
  .welcome-screen {
    overflow-x: hidden;
  }
  .runner {
    display: none;
  }
}
@media (max-width: 1080px) {
  .heroTxt .heroTxtContent {
    width: 35%;
  }
}
@media (max-width: 820px) {
  .heroTxt {
    display: none;
  }
  .heroTxtM {
    display: block;
  }
  .runner {
    display: none;
  }
  .titleBx .tBcontent {
    width: 100%;
    text-align: left;
  }
  .titleBx .tBcontent h1 {
    font-size: 11.5em;
    overflow-wrap: break-word;
    hyphens: auto;
  }
}
@media (max-width: 500px) {
  .skater1Content {
    animation: animate 4s infinite linear;
    transform: scale(0.8);
  }
  header {
    position: relative;
  }
  .headerContent {
    width: 94%;
  }
  .logo-box p {
    font-size: 18px;
  }
  nav .navH {
    display: none;
  }
  nav .navCircle {
    display: none;
  }
  nav .navCircleM {
    top: 0.5em;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 1;
    width: 45px;
    height: 45px;
  }
  .titleBx {
    bottom: 0;
    top: 7em;
  }
  .titleBx .tBcontent {
    padding-left: 0.8em;
  }
  .titleBx .tBcontent h1 {
    font-size: 5.6em;
    hyphens: auto;
  }
}
@media (max-width: 280px) {
  .titleBx .tBcontent h1 {
    font-size: 4.5em;
  }
}
.sec-two {
  margin: 9em auto;
  background: #000;
}

.availableSlides {
  position: relative;
}

.slide1Box {
  position: absolute;
  transform: rotate(5.67deg);
  color: #fff;
  background: #141414;
}

.slide1Box,
.slide2Box {
  width: 100vw;
  letter-spacing: -1px;
  padding: 0.7em;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  overflow: hidden;
  white-space: nowrap;
}

.slide1Content {
  padding-left: 40%;
  animation: animate 7.5s infinite linear reverse;
  display: inline-block;
}
.slide1Content span {
  font-weight: 500;
  font-size: 1.2em;
}

.slide2Box:hover .slide2Content span {
  letter-spacing: 0px;
}
.slide2Box {
  background: #d9d9d9;
  margin-top: -2em;
  transform: rotate(-5.42deg);
}

.slide2Content {
  padding-left: 40%;
  animation: animate 7.5s infinite linear;
  display: inline-block;
}
.slide2Content span {
  font-weight: 500;
  font-size: 1.2em;
  transition: 0.2s ease-in-out;
}

.desc-text {
  position: relative;
  width: 100%;
  color: #fff;
  margin-top: 10em;
}
.desc-text p {
  width: 34%;
  margin-left: 5%;
  line-height: 33px;
  font-size: 21px;
  font-weight: 400;
  margin-bottom: 1em;
  overflow: hidden;
}
.desc-text p span {
  display: inline-block;
}

.desc-text-main {
  display: flex;
  justify-content: space-between;
}

.heroTxtSecond {
  margin-top: 4.35em;
  margin-right: 5%;
}

@media (max-width: 1080px) {
  .desc-text {
    width: 100%;
  }
  .desc-text p {
    width: 75%;
  }
}
@media (max-width: 550px) {
  .sec-two {
    margin: -2em auto 5em auto;
  }
  .slide1Box {
    top: 3em;
  }
  .desc-text p {
    width: 85%;
  }
  .desc-text-main {
    display: flex;
    flex-direction: column;
  }
  .heroTxtSecond {
    margin-top: 0;
    margin-right: 5%;
  }
  .skaters2 {
    bottom: -3em !important;
  }
  .skater2Content {
    animation: animate 5s infinite linear reverse;
  }
}
.containerW {
  height: 600px;
}

.sc-three {
  position: relative;
  margin: 4em 0;
  padding-bottom: 4em;
}

.invisible {
  position: absolute;
  bottom: 0;
}

.s3box {
  width: 80%;
  margin: auto;
  text-align: center;
  margin-bottom: 2em;
}
.s3box h3 {
  color: rgba(255, 255, 255, 0.57);
  margin: 2em 0;
  overflow: hidden;
}
.s3box h3 span {
  display: inline-block;
}
.s3box p {
  color: #fff;
  font-weight: 400;
  font-size: 21px;
  line-height: 30px;
  width: 55%;
  margin: 0.7em auto;
  overflow: hidden;
}
.s3box p span {
  display: inline-block;
}

@media (max-width: 770px) {
  .s3box {
    width: 100%;
  }
  .s3box p {
    width: 90%;
  }
}
.fixed_footer {
  position: fixed;
  background: #000;
  background: #141414;
  color: #fff;
  width: 100%;
  bottom: 5%;
  z-index: -10;
}

.footer-content {
  margin-top: 7em;
  position: relative;
}

.footerTitle {
  text-align: center;
}
.footerTitle h1 {
  font-family: Neue-light;
  font-size: 8em;
  width: 69%;
  margin: auto;
}

.footerBtn {
  margin: 3em 0 4em 0;
  display: flex;
  justify-content: center;
  overflow: hidden;
}
.footerBtn button {
  -webkit-mask: url("https://raw.githubusercontent.com/robin-dela/css-mask-animation/master/img/urban-sprite.png");
  mask: url("https://raw.githubusercontent.com/robin-dela/css-mask-animation/master/img/urban-sprite.png");
  -webkit-mask-size: 3000% 100%;
  mask-size: 3000% 100%;
  animation: ani2 0.3s steps(29) forwards;
  outline: none;
  border: 2px solid #ffffff;
  border-radius: 30px;
  background: #000;
  background: #141414;
  padding: 0.5em 0.8em;
  font-size: 1.5em;
  color: #fff;
  transition: 0.6s ease-in;
  cursor: pointer;
}
.footerBtn button:hover {
  animation: ani 0.3s steps(35) forwards;
  background: #fff;
  color: #000;
  color: #141414;
}

.button-container-2 {
  position: relative;
  width: 100px;
  height: 50px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 7vh;
  overflow: hidden;
  border: 1px solid #000;
  font-family: "Lato", sans-serif;
  font-weight: 300;
  transition: 0.5s;
  letter-spacing: 1px;
  border-radius: 8px;
}

.button-container-2 button {
  width: 101%;
  height: 100%;
  font-family: "Lato", sans-serif;
  font-weight: 300;
  font-size: 11px;
  letter-spacing: 1px;
  font-weight: bold;
  background: #000;
  background: #141414;
  -webkit-mask: url("https://raw.githubusercontent.com/robin-dela/css-mask-animation/master/img/urban-sprite.png");
  mask: url("https://raw.githubusercontent.com/robin-dela/css-mask-animation/master/img/urban-sprite.png");
  -webkit-mask-size: 3000% 100%;
  mask-size: 3000% 100%;
  border: none;
  color: #fff;
  cursor: pointer;
  animation: ani2 0.7s steps(29) forwards;
}

.button-container-2 button:hover {
  animation: ani 0.7s steps(29) forwards;
}

.mas {
  position: absolute;
  color: #000;
  color: #141414;
  text-align: center;
  width: 101%;
  font-family: "Lato", sans-serif;
  font-weight: 300;
  position: absolute;
  font-size: 11px;
  margin-top: 17px;
  overflow: hidden;
  font-weight: bold;
}
@keyframes ani2 {
  from {
    -webkit-mask-position: 100% 0;
    mask-position: 100% 0;
  }
  to {
    -webkit-mask-position: 0 0;
    mask-position: 0 0;
  }
}
.footerBtm {
  margin: 10em auto 0 auto;
  display: flex;
  justify-content: space-between;
  width: 90%;
}
.footerBtm .f1,
.footerBtm .f3 {
  width: 25%;
  color: rgba(255, 255, 255, 0.581) !important;
  font-size: 0.8em;
}
.footerBtm .f2 {
  width: 30%;
  display: flex;
  justify-content: space-between;
  color: #fff;
}
.footerBtm .f2 a {
  transition: 0.3s ease-in;
}
.footerBtm .f2 a:hover {
  color: #141414;
  -webkit-text-stroke: 0.8px rgba(255, 255, 255, 0.6);
  transform: scale(1.1);
}
.footerBtm .f3 {
  display: flex;
  justify-content: flex-end;
}

@media (max-width: 770px) {
  .pg-content {
    margin-bottom: 0;
  }
  .pg-content {
    margin-bottom: 105vh;
  }
  .footerTitle h1 {
    font-size: 8em;
    width: 90%;
  }
}
@media (max-width: 550px) {
  .footerTitle h1 {
    font-size: 6em;
    width: 96%;
  }
  .footerBtm {
    width: 100%;
    flex-direction: column;
    align-items: center;
    margin: 4em auto 0 auto;
  }
  .footerBtm .f1 {
    display: none;
  }
  .footerBtm .f1,
  .footerBtm .f3 {
    width: 95%;
    color: rgba(255, 255, 255, 0.581) !important;
    font-size: 0.8em;
  }
  .footerBtm .f2 {
    width: 95%;
    margin: 2em 0;
    flex-direction: column;
    align-items: center;
  }
  .footerBtm .f2 a {
    margin-bottom: 1.3em;
  }
  .footerBtm .f3 {
    display: flex;
    justify-content: center;
  }
}
@media (max-width: 375px) {
  .footerTitle h1 {
    font-size: 4.5em;
    width: 98%;
  }
  .footerBtm {
    margin: 1em auto 0 auto;
  }
}
.footer-m {
  display: none;
  margin-top: 2em;
  position: relative;
  background: #000;
  color: #fff;
  width: 100%;
  padding-bottom: 4em;
}

.footer-mcontent {
  margin-top: 7em;
  position: relative;
}

.footer-mTitle {
  text-align: center;
}
.footer-mTitle h1 {
  font-family: Neue-light;
  font-size: 8em;
  width: 69%;
  margin: auto;
}

.footer-mBtn {
  margin: 3em 0 4em 0;
  display: flex;
  justify-content: center;
}
.footer-mBtn button {
  outline: none;
  border: 2px solid #ffffff;
  border-radius: 30px;
  background: transparent;
  padding: 0.5em 0.8em;
  font-size: 1.5em;
  color: #fff;
  transition: 0.6s ease-in;
}
.footer-mBtn button:hover {
  background: #fff;
  color: #000;
}

.footer-mBtm {
  margin: 10em auto 0 auto;
  display: flex;
  justify-content: space-between;
  width: 90%;
}
.footer-mBtm .f1,
.footer-mBtm .f3 {
  width: 25%;
  color: rgba(255, 255, 255, 0.581) !important;
  font-size: 0.8em;
}
.footer-mBtm .f2 {
  width: 30%;
  display: flex;
  justify-content: space-between;
  color: #fff;
}
.footer-mBtm .f2 a {
  transition: 0.3s ease-in;
}
.footer-mBtm .f2 a:hover {
  color: #141414;
  -webkit-text-stroke: 0.8px rgba(255, 255, 255, 0.6);
  transform: scale(1.1);
}
.footer-mBtm .f3 {
  display: flex;
  justify-content: flex-end;
}

@media (max-width: 770px) {
  .footer-mTitle h1 {
    font-size: 8em;
    width: 90%;
  }
  .footer-mBtm .f1,
  .footer-mBtm .f3 {
    font-size: 0.7em;
  }
}
@media (max-width: 550px) {
  .footer-mTitle h1 {
    font-size: 5.8em;
    width: 96%;
  }
  .footer-mBtm {
    width: 100%;
    flex-direction: column;
    align-items: center;
    margin: 4em auto 0 auto;
  }
  .footer-mBtm .f1 {
    display: none;
  }
  .footer-mBtm .f1,
  .footer-mBtm .f3 {
    width: 95%;
    color: rgba(255, 255, 255, 0.581) !important;
    font-size: 0.8em;
  }
  .footer-mBtm .f2 {
    width: 95%;
    margin: 2em 0;
    flex-direction: column;
    align-items: center;
  }
  .footer-mBtm .f2 a {
    margin-bottom: 1.3em;
  }
  .footer-mBtm .f3 {
    display: flex;
    justify-content: center;
  }
}
@media (max-width: 375px) {
  .footer-mTitle h1 {
    font-size: 4.5em;
    width: 98%;
  }
  .footer-mBtm {
    margin: 1em auto 0 auto;
  }
} /*# sourceMappingURL=style.css.map */
