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

/* Import fonts */

@font-face {
  font-family: "Kanit";
  src: url("/fonts/Kanit-Medium.woff2") format("woff2"),
    url("/fonts/Kanit-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

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

/* Color Palette */

:root {
  --color-primary: #ffca43;
  --color-secondary: #1f1039;
  --color-primary-gradient: linear-gradient(90deg, #ffca43 5.21%, #ffd569 50%);
  --color-white: #fff;
  --color-black: #0f0d0d;
  --color-gray: #c0ccd1;

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

  --font-title: "Kanit";
  --font-text: "Kanit";
}

/* Main */

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

body {
  width: 100%;
}

/* Titles */
h1,
h2,
h3,
h4 {
  margin-top: 0;
  font-weight: 500;
}

h1 {
  font-size: 86px;
  line-height: 90px;
  text-transform: uppercase;
  margin-bottom: 40px;
}

h2 {
  font-size: 56px;
  line-height: 60px;
}

h3 {
  font-size: 32px;
}

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

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

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

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

h1 span {
  background: linear-gradient(90deg, #ffca43 5.21%, #ffd569 50%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.big-type {
  font-size: 22px;
  line-height: 28px;
}

.underline::after {
  content: "";
  position: relative;
  display: block;
  width: 100px;
  height: 5px;
  background: var(--color-primary);
  bottom: 0;
  left: calc(50% - 50px);
  margin-top: 25px;
}

.underline-short::after {
  content: "";
  position: relative;
  display: block;
  width: 50px;
  height: 5px;
  background: var(--color-primary);
  bottom: 0;
  left: 0;
  margin-top: 25px;
}

.loading {
  background: #000;
  position: fixed;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1;
  z-index: 99999;
}

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

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

header .logo {
  float: left;
}

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;
}

.header-social {
  display: flex;
}

.header-social a {
  display: flex;
  font-size: 22px;
  margin-right: 10px;
  color: var(--color-white);
}

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

/*header .nav li a:hover{*/
/*    background: var(--color-main);*/
/*}*/

header .nav li a::before,
header .nav li a::after {
  position: absolute;
  width: 100%;
  height: 3%;
  background: linear-gradient(
    160deg,
    rgb(241 214 97) 0%,
    rgb(250, 169, 77) 100%
  );
  bottom: 0;
  left: 0;
  pointer-events: none;
  z-index: -1;
}

header .nav li.active a::before,
header .nav li a::before {
  content: "";
  transform-origin: 100% 50%;
  transform: scale3d(0, 1, 1);
  transition: transform 0.3s;
}
header .nav li.active a::before,
header .nav li a:hover::before {
  transform-origin: 0 50%;
  transform: scale3d(1, 1, 1);
}

#nav-icon {
  display: none;
  width: 40px;
  height: 45px;
  position: absolute;
  right: 10px;
  top: 25px;
  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 1
***********************/

.hero {
  display: flex;
  height: 100vh;
  justify-content: center;
  align-items: center;
  background: linear-gradient(180deg, #451c8b 28.74%, #0f0d0d 84.07%);
}

.hero p {
  margin-bottom: 50px;
}

.hero-text {
  position: absolute;
  width: 600px;
  height: 600px;
  z-index: 9;
}

.hero-wow {
  rotate: 330deg;
  position: absolute;
  top: 10%;
  left: 10%;
  animation: pulse-glow 2s infinite;
}

.hero-woof {
  position: absolute;
  right: 10%;
  animation: wobble 4s ease infinite;
}

.hero-video {
  animation: pulse-small 3s infinite;
}

.hero-many {
  position: absolute;
  top: 42%;
  right: -10%;
  animation: scale-fade-in 3s infinite;
}

.hero-such {
  rotate: 20deg;
  position: absolute;
  top: inherit;
  bottom: 10%;
  left: 10%;
  animation: scale-fade-in 2s infinite;
}

.hero-stake {
  rotate: 310deg;
  position: absolute;
  top: inherit;
  bottom: 15%;
  right: 4%;
  animation: pulse-glow 3s infinite;
}

.hero-title {
  position: relative;
  animation: move-left 3s infinite;
}

/***********************
        SECTION 2
***********************/

.feature {
  display: flex;
  height: 100vh;
  -webkit-justify-content: space-around;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  align-items: center;
  background-color: var(--color-black);
  background: url("/images/feature-bg.svg");
  background-size: cover;
}

.scroll-container {
  display: flex;
  width: 80%;
}

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

.text-wrap {
  position: relative;
  overflow: hidden;
  width: 450px;
  height: 100vh;
}

.panel-text {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  width: 90%;
  height: 90vh;
  padding: 5vh 5%;
  text-align: center;
  transform: translateY(100%);
  opacity: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.p-wrap {
  position: relative;
  overflow: hidden;
  height: 100vh;
  background: radial-gradient(
    50% 40% at 50% 50%,
    #540af47c 0%,
    #2b0c6a59 41.67%,
    #0f0d0d00 84.9%
  );
}

.panel._2 {
  z-index: 1;
}

.panel.blue {
  z-index: auto;
}

.panel img {
  position: relative;
  width: 100%;
  max-width: 550px;
  animation: shine 2s infinite;
}

.panel {
  width: 100%;
  height: 100vh;
  position: relative;
  z-index: auto;
  /*top: -100vh;*/
  position: absolute;
  transform: translate(0px, -100vh);
}
.panel.blue {
  transform: none;
}

.much-stake li {
  list-style: none;
  display: flex;
  width: 45%;
  margin: 0px 2.5%;
  text-align: left;
}

.much-stake li::before {
  content: url("/images/check.svg");
  display: block;
  position: relative;
  margin-right: 10px;
}

.stack-1 {
  background-color: #00026d00;
}

.stack-2 {
  background-color: rgba(255, 0, 0, 0);
}

.stack-3 {
  background-color: #cf5d0000;
}

.stack-4 {
  background-color: rgba(136, 0, 136, 0);
}

.stack-1 img,
.stack-2 img,
.stack-3 img,
.stack-4 img {
  left: calc(50% - 275px);
}

.stack-1 img {
  top: 52vh;
}

.stack-2 img {
  top: 45vh;
}

.stack-3 img {
  top: 38vh;
}

.stack-4 img {
  top: 20vh;
}

/* First Stack */

.much-wow {
  position: relative;
}

.much-wow::before {
  content: url("/images/much-wow.svg");
  display: block;
  position: absolute;
  top: -180px;
  right: 35px;
  transform: rotate(356deg);
}

/* Second Stack */

.feature-item {
  flex-direction: row;
  margin: 10px;
  padding: 20px;
  background: linear-gradient(180deg, #1f1039 0%, rgba(31, 16, 57, 0) 100%);
  border-radius: 20px;
  position: relative;
}

.feature-item img {
  margin-right: 10px;
}

.feature-woof::before,
.feature-many::before {
  display: block;
  position: absolute;
  top: -18px;
  left: 20px;
  transform: rotate(356deg);
}

.feature-many::before {
  display: block;
  position: absolute;
  top: -18px;
  left: 20px;
  transform: rotate(356deg);
}

.feature-woof::before {
  content: url("/images/Woof-Woof!.svg");
}

.feature-many::before {
  content: url("/images/many-stake.svg");
}

/* Third Stack */

.much-stake {
  position: relative;
  display: flex;
  flex-wrap: wrap;
}

.much-stake::before {
  content: url("/images/such-features.svg");
  display: block;
  position: absolute;
  top: 100px;
  left: 40px;
  transform: rotate(356deg);
}

.sparkle {
  position: absolute;
  right: 10%;
}

.stack-imgs {
  width: 50%;
}

.hero-video video {
  max-width: 600px;
}

.hero-vid {
  z-index: 1;
}

.stars {
  position: absolute;
  z-index: 0;
  mix-blend-mode: lighten;
  top: 10vh;
}

.paw::before {
  content: url("/images/paw.svg");
  display: block;
  width: 180px;
  height: 200px;
  position: absolute;
  bottom: 0;
  left: 50%;
  animation: wobble-small 4s infinite;
}

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

.footer {
  height: 100vh;
  background: url("/images/footer-bg.svg");
  background-position: bottom center;
  background-repeat: no-repeat;
  position: relative;
  background-size: cover;
  overflow: hidden;
}

.footer .d-grid {
  height: 70vh;
  margin-top: 20vh;
}

.footer ul {
  padding: 0;
}

.footer ul li {
  list-style: none;
  margin-bottom: 10px;
}

.footer ul li a {
  font-size: 18px;
}

.footer ul li a span {
  color: var(--color-primary);
}

.footer ul li a:hover {
  color: var(--color-primary);
}

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

.socials-footer a span::before {
  font-size: 42px;
}

.socials-footer a {
  margin-top: 20px;
  margin-right: 20px;
}

.socials-footer a span {
  transition: 0.2s all;
}

.socials-footer a span:hover {
  color: var(--color-primary);
  filter: drop-shadow(0px 0px 10px rgba(255, 224, 50, 0.699));
}

.doge-footer {
  position: absolute;
  left: 0;
  bottom: -30px;
  animation: wobble-small 4s infinite;
}

form input,
form textarea {
  color: var(--color-white);
  border-bottom: 1px solid var(--color-white);
}

::placeholder {
  color: var(--color-white) !important;
}

.terms {
  padding-top: 10vh;
}

.terms h1 {
  font-size: 42px;
}
