/* ==========================================================================
   General Styles
   ========================================================================== */

@font-face {
  font-family: "Space Grotesk Bold";
  src: url("/fonts/SpaceGrotesk-Bold.woff2") format("woff2"),
    url("/fonts/SpaceGrotesk-Bold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Space Grotesk Regular";
  src: url("/fonts/SpaceGrotesk-Regular.woff2") format("woff2"),
    url("/fonts/SpaceGrotesk-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

/* Color Palette */

:root {
  --color-primary: #00c972;
  --color-secondary: #e08621;
  --color-blue-light: #5f83f1;
  --color-white: #fff;
  --color-black: #000000;
  --color-gray: #757575;

  --color-messageError: #ffc4c4;
  --color-messageSuccess: #00fff5;
  --color-fieldError: #eb5757;

  --font-title: "termina", sans-serif;
  --font-text: "Space Grotesk Regular", sans-serif;
}

/* Main */

html {
  scroll-behavior: smooth;
}

html,
body {
  height: 100%;
  font-family: var(--font-text);
  background: var(--color-black);
  color: var(--color-white);
  margin: 0;
}

body {
  width: 100%;
}

.main {
  max-width: 1920px;
  margin: auto;
}

/* Titles */
h1,
h2,
h3,
h4 {
  margin-top: 0;
  font-weight: 500;
  font-family: var(--font-title);
  text-transform: uppercase;
}

h1 {
  font-size: 68px;
  line-height: 76px;
  margin-bottom: 20px;
}

h2 {
  font-size: 52px;
  line-height: 58px;
  margin-bottom: 20px;
}

h3 {
  font-size: 32px;
}

h4 {
  font-size: 20px;
  margin-bottom: 20px;
}

p {
  font-size: 16px;
  line-height: 22px;
  letter-spacing: 1px;
  margin-top: 0px;
}

a {
  text-decoration: none;
  color: var(--color-white);
}

.bold {
  font-size: 18px;
  font-weight: 700;
  margin-top: 0px;
}

.big-type {
  font-size: 24px;
  line-height: 28px;
  color: var(--color-secondary);
}

.loading {
  background: var(--color-black);
  position: fixed;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1;
  z-index: 99999;
  flex-direction: column;
}

.loading img {
  width: 100px;
  animation: glow 1s infinite;
  animation-timing-function: ease-in-out;
}

video {
  width: 100%;
}

.color-grey {
  color: var(--color-gray);
}

/***********************
        HEADER
***********************/

header {
  position: fixed;
  top: 0;
  right: 10px;
  width: 100%;
  padding: 30px 0;
  z-index: 9999;
}

header .logo img {
  max-width: 200px;
  transition: 0.4 all;
}

header .nav {
  list-style: none;
  float: right;
  font-weight: 700;
  text-transform: uppercase;
  display: flex;
  align-items: center;
}

header .nav li {
  display: inline-block;
  font-size: 16px;
}

header .nav li a {
  position: relative;
  transition: all 0.3s;
  padding: 16px 16px 12px 16px;
  font-weight: normal;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-family: var(--font-title);
  transition: 0.2s all;
}

header .nav li a:hover {
  color: var(--color-secondary);
}

#nav-icon {
  display: none;
  width: 40px;
  height: 45px;
  position: absolute;
  right: 10px;
  top: 30px;
  margin: 0 auto;
  transform: rotate(0deg);
  transition: 0.5s ease-in-out;
  cursor: pointer;
  z-index: 2;
}

#nav-icon span {
  display: block;
  position: absolute;
  height: 3px;
  width: 100%;
  background: var(--color-white);
  border-radius: 9px;
  opacity: 1;
  left: 0;
  transform: rotate(0deg);
  transition: 0.25s ease-in-out;
}

#nav-icon span:nth-child(1) {
  top: 0;
}

#nav-icon span:nth-child(2) {
  top: 12px;
}

#nav-icon span:nth-child(3) {
  top: 24px;
}

#nav-icon.open span:nth-child(1) {
  top: 18px;
  transform: rotate(135deg);
}

#nav-icon.open span:nth-child(2) {
  opacity: 0;
  left: -60px;
}

#nav-icon.open span:nth-child(3) {
  top: 18px;
  transform: rotate(-135deg);
}

.nav-logo {
  display: none !important;
}

section {
  height: 100vh;
}

.w-50 {
  width: 50% !important;
}

.w-55 {
  width: 55% !important;
}

.underline span {
  position: relative;
  display: inline-block;
}

.underline span:after {
  content: "";
  width: 100%;
  height: 20px;
  display: block;
  position: absolute;
  bottom: 10px;
  background: var(--color-primary);
  mix-blend-mode: lighten;
}

/***********************
        STRUCTURE
***********************/

.structure {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-top: -50px !important; /*To remove the top black part created with the scrollTrigger start*/
}

.first,
.second,
.third,
.fourth,
.sixth,
.seventh {
  position: absolute;
  width: 100%;
  margin: 0px auto;
  height: 100vh;
  display: flex;
  align-items: center;
}

.fifth {
  position: absolute;
  width: 80%;
  margin: 0px auto;
  height: 100vh;
}

.pin-this {
  position: relative;
}

/***********************
        HERO
***********************/

.first-title {
  position: absolute;
  right: 5%;
  height: 100vh;
  width: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.first-title span {
  color: var(--color-primary);
}

.second-title {
  position: absolute;
  left: 5%;
  top: calc(50% - 180px);
  width: 50%;
  opacity: 0;
}

.feature-container {
  margin-bottom: 10vh;
}

.feature-container h3 {
  display: flex;
  align-items: center;
  margin-bottom: 0px;
}
.feature-container img {
  margin-right: 20px;
}

.feature-container div h3 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.feature-container div {
  display: flex;
}

.title-feature {
  margin-bottom: 20px !important;
}

.title-feature:first-child {
}

.title-feature:nth-child(2) {
  margin-left: 5%;
}

.title-feature:nth-child(3) {
  margin-left: 10%;
}

.title-feature:nth-child(4) {
  margin-left: 15%;
}

.stats .stats h3 {
  margin-bottom: 0px;
  text-align: left;
}

.stats h3 {
  font-size: 24px;
  line-height: 28px;
}

.stats h3:first-child {
  border-right: 1px solid var(--color-gray);
  padding-right: 80px;
}

.stats span {
  color: var(--color-primary);
}

.scroll-animate {
  position: absolute;
  bottom: 5vh;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.mouse {
  width: 3px;
  padding: 10px 12px;
  height: 25px;
  border: 2px solid #fff;
  border-radius: 25px;
  opacity: 0.75;
  box-sizing: content-box;
  margin-bottom: 15px;
}
.mouse-scroll {
  width: 3px;
  height: 10px;
  border-radius: 25%;
  background-color: #fff;
  animation-name: scroll;
  animation-duration: 2.2s;
  animation-timing-function: cubic-bezier(0.15, 0.41, 0.69, 0.94);
  animation-iteration-count: infinite;
}
@keyframes scroll {
  0% {
    opacity: 0;
  }
  10% {
    transform: translateY(0);
    opacity: 1;
  }
  100% {
    transform: translateY(15px);
    opacity: 0;
  }
}

/***********************
        FIRST
***********************/

.first {
  background: url("/images/floor-bg.jpg");
  display: flex;
  justify-content: center;
  align-items: center;
  background-size: cover;
}

.first iframe {
  max-width: 1000px;
  max-height: 570px;
}

iframe body {
  height: inherit;
}

/***********************
        SECOND
***********************/

.second {
  background: url("/images/floor-bg.jpg");
  display: flex;
  justify-content: center;
  align-items: center;
  background-size: cover;
}

.slider-container {
  width: 60%;
  max-width: 1000px;
}

.slider-container .slick-list {
  padding-top: 5% !important;
  padding-bottom: 5% !important;
  padding-left: 15% !important;
  padding-right: 15% !important;
}

.slider-container .slick-track {
  max-width: 100% !important;
  transform: translate3d(0, 0, 0) !important;
  perspective: 100px;
}

.slider-container .slick-slide {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  opacity: 0;
  width: 100% !important;
  transform: translate3d(0, 0, 0);
  transition: transform 1s, opacity 1s;
}

.slider-container .slick-snext,
.slider-container .slick-sprev,
.slider-container .slick-snext2,
.slider-container .slick-sprev2 {
  display: block;
}

.slider-container .slick-current {
  opacity: 1;
  position: relative;
  display: block;
  z-index: 2;
}

.slider-container .slick-snext {
  opacity: 1;
  transform: translate3d(10%, 0, -10px);
  z-index: 1;
  perspective: 1000px;
}
.slider-container .slick-snext2 {
  opacity: 1;
  transform: translate3d(20%, 0, -20px);
  z-index: 0;
  perspective: 1000px;
}

.slider-container .slick-sprev {
  opacity: 1;
  transform: translate3d(-10%, 0, -10px);
}

.slider-container .slick-sprev2 {
  opacity: 1;
  transform: translate3d(-20%, 0, -20px);
}

.slide {
  background: #0c0c0c;
  margin: 10px;
  position: relative;
  display: flex;
  justify-content: center;
  border: 2px solid var(--color-white);
}

.description {
  width: 76%;
}

.slide img {
  margin-bottom: 6%;
  width: 100%;
  height: 100%;
}

.slider-info {
  width: 94%;
  background: linear-gradient(0deg, rgb(12 12 12) 80%, rgb(42 42 42 / 0%) 100%);
  position: absolute;
  bottom: 0;
  padding: 3%;
  display: flex;
  align-items: center;
}

.slider-info h5 {
  font-family: var(--font-title);
  margin: 0;
  font-size: 22px;
}

.slider-info p {
  margin: 0px;
  color: #757575;
  font-size: 14px;
  line-height: 16px;
}

.slide-stats {
  width: 10%;
  margin-left: 2%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.slide-stats img {
  width: 16px;
}

.slide-stats p {
  font-size: 8px;
  line-height: 14px;
  text-align: center;
}

.slick-prev {
  position: absolute;
  top: 50%;
  left: -8%;
  background: none;
}

.slick-next {
  position: absolute;
  top: 50%;
  right: -5%;
  background: none;
}

.slick-dots {
  display: flex;
  position: absolute;
  left: calc(50% - 100px);
}

.slick-dots li {
  list-style: none;
}

.nintendo-stats {
  width: 20%;
}

.nintendo {
  width: 60px !important;
}
/***********************
        THIRD
***********************/

.third {
  background: url("/images/testimonial-bg.jpg");
  display: flex;
  justify-content: center;
  align-items: center;
}

.third .w-40 img {
  margin-top: 5vh;
}

.feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  height: 140px;
  margin-bottom: 20px;
  justify-content: center;
  cursor: pointer;
  border-radius: 20px;
  transition: 0.3s all;
  box-shadow: 0px 0px 0px #00ff151c;
  border-bottom: 1px solid #00ff1500;
}

.feature:hover {
  box-shadow: 0px 8px 10px #19ff3f1c;
  border-bottom: 1px solid var(--color-primary);
}

.feature:hover i {
  animation: wiggle 1s ease-in-out infinite;
}

.feature:hover i::before {
  filter: drop-shadow(0px 0px 6px rgba(255, 255, 255, 0.562));
}

.feature i {
  font-size: 44px;
  padding: 10px;
  border: 1px solid #2e2e2e;
  border-radius: 100%;
  position: absolute;
  left: 0;
  transition: 0.3s all;
}

.feature div {
  border: 0;
  position: relative;
}

.feature div::before,
.feature div::after {
  box-sizing: inherit;
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
}

.spin {
  height: 64px;
  width: 64px;
}

.spin::before,
.spin::after {
  top: 0;
  left: 0;
  z-index: 99;
}

.spin::before {
  border: 2px solid transparent;
}

.feature:hover .spin::before {
  border-top-color: var(--color-primary);
  border-right-color: var(--color-primary);
  border-bottom-color: var(--color-primary);
  transition: border-top-color 0.15s linear, border-right-color 0.1s linear 0.1s,
    border-bottom-color 0.1s linear 0.1s;
}

.spin::after {
  border: 0 solid transparent;
}

.feature:hover .spin::after {
  border-top: 2px solid var(--color-primary);
  border-left-width: 2px;
  border-right-width: 2px;
  left: -1px;
  top: 1px;
  transform: rotate(270deg);
  transition: transform 0.1s linear 0s, border-left-width 0s linear 0.15s,
    -webkit-transform 0.1s linear 0s;
}

.circle {
  border-radius: 100%;
  box-shadow: none;
}

.circle::before,
.circle::after {
  border-radius: 100%;
}

/***********************
        FOURTH
***********************/

.fourth {
  background: url("/images/services-bg.jpg");
  background-repeat: no-repeat;
  background-size: cover;
}

.usps {
  margin-top: 50px;
  width: 80%;
}

.usp {
  display: flex;
  margin-bottom: 30px;
  border: 1px solid #2e2e2e;
  padding: 20px;
  border-radius: 20px;
  align-items: center;
  cursor: pointer;
  transition: 0.4s all;
}

.usp img {
  transition: 0.4s all;
}

.usp h4 {
  margin-bottom: 10px;
  padding: 0px;
  transition: 0.2s all;
}

.usp p {
  margin-bottom: 0px;
  transition: 0.4s all;
}

.usp img {
  width: 60px;
  margin-right: 20px;
}

.usp:hover {
  border-color: var(--color-white);
}

.usp:hover p {
  color: var(--color-white);
}

.usp:hover img {
  transform: scale(0.9);
  filter: drop-shadow(0px 0px 6px rgba(255, 255, 255, 0.562));
}

.usp:hover h4,
.usp:hover p {
  padding-left: 10px;
}

.usp p {
  color: var(--color-gray);
}

.social img {
  max-width: 24px;
}

.third video {
  max-width: 320px;
  margin-right: 50px;
  box-sizing: border-box;
  border-radius: 100%;
  box-shadow: 0px 0px 97px #000000;
}

.button-center {
  width: 100%;
  max-width: 380px;
}

/***********************
        FIFTH
***********************/

.seventh {
  width: 80%;
  margin: 0px auto;
}

.team-description {
  width: 100%;
  margin-bottom: 50px;
  display: flex;
}

.team-description h2 {
  margin-right: 40px;
}

.team {
  width: 100%;
}

.team-member {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  margin-bottom: 20px;
  cursor: pointer;
  height: 220px;
}

.team-member img {
  width: 100px;
  margin-bottom: 20px;
  margin-top: 20px;
  transition: 0.2s all;
  border-radius: 100%;
  padding: 5px;
  filter: grayscale();
}

.team-member::before {
  content: url("/images/team-avatar-frame.svg");
  display: block;
  width: 130px;
  height: 120px;
  top: -4px;
  position: absolute;
  opacity: 0;
  transform: scale(0);
  transition: 0.2s all;
}

.team-member h4 {
  font-size: 14px;
  margin-bottom: 0px;
}

.social {
  width: 100%;
  justify-content: center;
  position: absolute;
  bottom: -20px;
  opacity: 0;
  transition: 0.4s all;
}

.social i {
  font-size: 28px;
  margin: 0px 4px;
}

.social a {
  color: var(--color-white);
  transition: 0.4s all;
}

.social a:hover {
  color: var(--color-primary);
}

.team-member:hover .social {
  bottom: 0px;
  opacity: 1;
}

.team-member:hover img {
  margin-top: 0px;
  transform: scale(0.9);
  filter: brightness(1.3) drop-shadow(0px 0px 5px rgb(8, 235, 8));
}

.team-member:hover::before {
  opacity: 1;
  transform: scale(1);
}

/***********************
        SIXTH
***********************/

.sixth {
  background: url("/images/partners-bg.jpg");
  background-repeat: no-repeat;
  background-size: cover;
}

.partners {
  width: 80%;
}

.partner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 20px;
}

.partner img {
  margin-bottom: 20px;
  cursor: pointer;
  transition: 0.4s all;
}

.partner img:hover {
  transform: scale(1.1);
  filter: brightness(1.3) drop-shadow(0px 0px 10px rgb(43, 255, 0));
}

.partner p {
  font-family: var(--font-title);
  font-size: 16px;
}

.partner:nth-child(1),
.partner:nth-child(2) {
  border-style: solid;
  border-left: 0px;
  border-width: 1px;
  border-image: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgb(53, 53, 53)) 1
    100%;
}

.partner:nth-child(5),
.partner:nth-child(6),
.partner:nth-child(7) {
  border-style: solid;
  border-left: 0px;
  border-width: 1px;
  border-image: linear-gradient(to bottom, rgb(53, 53, 53), rgba(0, 0, 0, 0)) 1
    100%;
}

/***********************
        SEVENTH
***********************/

.seventh {
  background: url("/images/testimonial-bg.jpg");
  background-repeat: no-repeat;
  background-size: cover;
}

.testimonial {
  position: relative;
  width: 80%;
  max-width: 1000px;
}

.testimonial-slider {
  width: 100%;
}

.testimonial-container {
  display: flex !important;
  align-items: center;
  padding-bottom: 20px;
  margin-top: 5vh;
  border-bottom: 5px solid #242424;
}

.testimonial-container img {
  margin-right: 20px;
}

.quote {
  position: relative;
  padding-left: 50px;
}

.quote::before {
  content: "“";
  font-size: 72px;
  font-family: var(--font-title);
  display: block;
  color: var(--color-primary);
  position: absolute;
  left: 0;
  top: 20px;
}

.author {
  display: flex;
  flex-direction: column;
}

.author p {
  margin: 0px;
  font-size: 14px;
  color: var(--color-gray);
}

.author .name {
  font-family: var(--font-title);
  font-size: 16px;
  color: var(--color-white);
}

.author img {
  max-width: 100px;
}

.testimonial-content .logo {
  max-width: 100px;
}

.slick-dots button {
  background: none;
  color: inherit;
  border: none;
  padding: 0;
  font: inherit;
  cursor: pointer;
  outline: inherit;
}

.testimonial-slider .slick-next,
.testimonial-slider .slick-prev,
.slider-container .slick-next,
.slider-container .slick-prev {
  font-size: 0;
  transition: 0.4s all;
  border: none;
}

.testimonial-slider .slick-next:hover,
.testimonial-slider .slick-prev:hover,
.slider-container .slick-next:hover,
.slider-container .slick-prev:hover {
  transform: scale(0.9);
}

.testimonial-slider .slick-next:hover::before,
.testimonial-slider .slick-prev:hover::before,
.slider-container .slick-next:hover::before,
.slider-container .slick-prev:hover::before {
  color: var(--color-primary);
}

.slick-prev::before,
.slick-next::before {
  font-family: "incredibull" !important;
  font-size: 42px;
  display: block;
  color: var(--color-white);
}

.testimonial-slider .slick-prev::before,
.slider-container .slick-prev::before {
  content: "\e902";
}

.testimonial-slider .slick-next::before,
.slider-container .slick-next::before {
  content: "\e909";
}

.paginator {
  position: relative;
  float: right;
  margin-bottom: 20px;
}
.paginator li {
  margin-top: 20px;
  position: relative;
  float: left;
  margin-right: 20px;
}

.testimonial-slider .slick-dots li,
.slider-container .slick-dots li {
  list-style: none;
  color: var(--color-gray);
  display: block;
  width: 20px;
}

.testimonial-slider .slick-dots .slick-active,
.slider-container .slick-dots .slick-active {
  color: var(--color-white);
}

.testimonial .loading-bar {
  content: "";
  width: 0;
  height: 5px;
  bottom: 0;
  position: absolute;
  background: var(--color-primary);
  display: block;
}

.testimonial-slider button {
  background: none;
  border: none;
}

/***********************
        FOOTER
***********************/

.footer {
  width: 100%;
  height: 100vh;
  position: absolute;
  background: url("/images/footer-bg.jpg");
  background-size: cover;
  background-position: bottom;
}

footer {
  position: absolute;
  bottom: 3vh;
  width: 90%;
  margin: 0px auto;
}

.footer-social a img {
  transition: 0.4s all;
}

.footer-social a:hover img {
  transform: scale(0.9);
  filter: brightness(1.3) drop-shadow(0px 0px 10px rgb(43, 255, 0));
}

.hero-title {
  position: relative;
  display: flex;
  align-items: center;
}

.feature h5 {
  transition: 0.4s all;
}

.feature:hover h5 {
  margin-top: 15px;
}

.social img:first-child {
  margin-right: 10px;
}

.contact-form-row {
  display: flex;
  justify-content: space-between;
}

.form-input {
  position: relative;
  width: 48%;
}
.form-textarea {
  position: relative;
  width: 100%;
}

.form-input input,
.form-textarea textarea {
  padding-left: 40px;
}

.form-input span,
.form-textarea span {
  position: absolute;
  left: 10px;
  top: 18px;
}

.form-input span::before,
.form-textarea span::before {
  font-size: 26px;
}

.contact-form-row .icon {
  display: none;
}

.hide-desktop {
  display: none;
}

/****** GSAP Markers *****/

.gsap-marker-scroller-end,
.gsap-marker-start,
.gsap-marker-end,
.gsap-marker-scroller-start {
  opacity: 0;
}

#scrollToTopBtn {
  border: none;
  color: white;
  cursor: pointer;
  transform: rotate(90deg);
  background: var(--color-primary);
  transition: 0.4s all;
}

#scrollToTopBtn span:before {
  padding: 20px 3px;
  font-size: 24px;
}

#scrollToTopBtn:hover {
  background: var(--color-white);
  color: var(--color-primary);
}

.slick-arrow {
  cursor: pointer;
}
