@import url(variables.css);
@import url(header.css);
@import url(sections/welcome.css);
@import url(sections/sft.css);
@import url(sections/utilities.css);
@import url(sections/vole.css);
@import url(sections/economics.css);
@import url(sections/roadmap.css);
@import url(sections/partners.css);
@import url(sections/team.css);
@import url(sections/faquestions.css);
@import url(sections/contact.css);
@import url(sections/howItWorks.css);
@import url(sections/live-games-highlights.css);

body {
  background-color: var(--ink-darkest);
  font-family: 'Mulish', sans-serif;
  font-style: normal;
  font-size: 16px;
  line-height: 16px;
}

h1 {
  font-size: 48px;
  font-weight: 800;
  line-height: 56px;
  margin-bottom: 8px;
}

h2 {
  font-size: 32px;
  font-weight: 600;
  line-height: 36px;
  margin-bottom: 8px;
}

h3 {
  font-size: 24px;
  font-weight: 600;
  line-height: 32px;
  margin-bottom: 8px;
}

p {
  font-size: 16px;
  line-height: 16px;
  font-weight: 300;
}

section {
  position: relative;
  padding: 0px !important;
  z-index: 3;
}

a {
  cursor: pointer;
}

.content__section__footer {
  font-weight: 400 !important;
  font-size: 16px !important;
  line-height: 24px !important;
  text-align: center;
  color: var(--sky-dark);
  margin: 32px 0 42px 0;
}

/* Custom Components */

.custom-btn {
  height: 32px;
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  outline: none;
  background-color: transparent;
  color: var(--sky-white);
  border: none;
  font-weight: 400;
  -webkit-transition: background-color var(--btn-transition) ease-in-out;
  -ms-transition: background-color var(--btn-transition) ease-in-out;
  transition: background-color var(--btn-transition) ease-in-out;
}

.custom-variant-red-base {
  background-color: var(--red-base);
  color: var(--sky-white);
}

.custom-variant-outline-white {
  border: 1px solid var(--sky-white);
}

.custom__header__underline--red {
  width: 88px;
  height: 8px;
  background: var(--red-base);
}

.custom__header__underline--white {
  width: 88px;
  height: 8px;
  background: var(--sky-white);
}

.custom-line-indicator {
  width: 32px;
  height: 30px;
  position: relative;
  margin-right: 16px;
}

.custom-line-indicator::after {
  content: ' ';
  display: block;
  position: absolute;
  height: 1px;
  background: var(--ink-base);
  width: 100%;
  left: 0;
  top: calc(50% - 0.5px);
}

.custom-underline-fade-right {
  width: 88px;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--red-base) -1.14%,
    rgba(232, 40, 43, 0) 100%
  );
  margin-bottom: 8px;
}
.custom-header-underline-fade-right {
  width: 88px;
  height: 8px;
  background: var(--red-base);
}

.custom-underline-fade-left {
  width: 88px;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--red-base) -1.14%,
    rgba(232, 40, 43, 0) 100%
  );
  transform: matrix(-1, 0, 0, 1, 0, 0);
  margin-left: auto;
}
.dropdown-menu {
  border-radius: 0;
}

.dropdown-menu.show {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, 1);
}

.stop-scrolling {
  height: 100%;
  overflow-x: hidden;
  overflow-y: hidden;
  touch-action: none;
}
/* Main Container*/

.sft__body {
  overflow-x: hidden;
  width: 100%;
}

.sft__main__container {
  width: 100%;
  max-width: 1312px;
}

@media only screen and (max-width: 768px) {
  .custom-underline-fade-right,
  .custom-underline-fade-left {
    width: 198px;
    height: 4px;
    background: radial-gradient(
      50.57% 6118.75% at 49.43% 50%,
      var(--red-base) 0%,
      rgba(232, 40, 43, 0) 100%
    );
    margin: 0 auto 8px auto;
  }
  section.col-12 {
    width: calc(100% - 32px);
  }
  .navbar__container.col-12 {
    width: calc(100% - 32px);
    margin: 0 auto;
  }
  .navbar__content__nav__links {
    gap: 8px;
  }
}
@media only screen and (max-width: 480px) {
  .custom__header__underline--red {
    height: 4px;
  }
  .custom__header__underline--white {
    height: 4px;
  }
}
@media (hover: hover) {
  .custom-variant-red-base:hover {
    color: var(--red-base);
    background-color: var(--sky-white) !important;
    border: 1px solid var(--red-base);
  }

  .custom-variant-outline-white:hover {
    border: 1px solid var(--sky-base);
    color: var(--sky-base);
  }
}
.reveal-animation {
  position: relative;
  transform: translateY(50px);
  opacity: 0;
  transition: 0.5s all ease;
}

.reveal-animation.active {
  transform: translateY(0) !important;
  opacity: 1 !important;
}

@-webkit-keyframes scale-up {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
  }
}
@keyframes scale-up {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
  }
}
@-webkit-keyframes scale-up-reverse {
  0% {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes scale-up-reverse {
  0% {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@media (hover: hover) {
  .scale-animation {
    -webkit-animation: scale-up 0.2s cubic-bezier(0.39, 0.575, 0.565, 1) both;
    animation: scale-up 0.2s cubic-bezier(0.39, 0.575, 0.565, 1) both;
  }
  .scale-animation-reverse {
    -webkit-animation: scale-up-reverse 0.2s cubic-bezier(0.39, 0.575, 0.565, 1)
      both;
    animation: scale-up-reverse 0.2s cubic-bezier(0.39, 0.575, 0.565, 1) both;
  }
}
