a {
  cursor: pointer;
}

html {
  /* background-color: #000; */
  color: #fff;
}

body {
  margin: 0;
  padding: 0;
  font-weight: bold;
  width: 100%;  
	background: #1f2645; /* Old browsers */
	background: -moz-linear-gradient(0deg,  #1f2645 50%, #283139 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, right bottom, color-stop(50%,#1f2645), color-stop(100%,#283139)); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(0deg,  #1f2645 50%,#283139 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(0deg,  #1f2645 50%,#283139 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(0deg,  #1f2645 50%,#283139 100%); /* IE10+ */
	background: linear-gradient(0deg,  #1f2645 50%,#283139 100%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#1f2645', endColorstr='#283139',GradientType=1 ); /* IE6-9 fallback on horizontal gradient */
	background-attachment: fixed
}

#cover {
  display: flex;  
  padding-top: 50px;
  justify-content: space-between;
}

#enter {
  display: none;
}
#animeText {
  color:#f9ce5e;
}
.typed-cursor {
  color: #f9ce5e;
}
@keyframes changeColor {
  0% {
    color: #ffb124;
  }
  70% {
    color: #f9ce5e;
  }
  100% {
    color: #ffb124;
  }
}
.cover-text-container {
  position: relative;
  margin: 16px 10vw 0 0;
  width: 30%;
  z-index: 30;
}

.cover-text {
  font-size: 48px;
  line-height: 46px;
  margin: 0;
  color: rgb(46, 46, 46);
}

.cover-subtext {
  color: #fff;
  font-size: 20px;
}

.cover-description {
  color: rgb(141, 141, 141);
  font-size: 12px;
  margin-top: 0;
}

.cover-buttons-container {
  display: flex;
}

.button {
  padding: 5px 20px 10px 20px;
  border-radius: 100px;
  border: 3px solid black;
  font-size: 23px;
  text-decoration: none;
  color: black;
  margin: 10px;
  justify-content: center;
  text-align: center;
}

.button:hover {
  background-color: black;
  color: white;
  transition: all 0.3s ease;
}

.connect {
  padding: 5px 20px 10px 20px;
  border-radius: 100px;
  font-size: 23px;
  text-decoration: none;
  margin: 10px 0;
  border: 3px solid #ffb124;
  background-color: #ffb124;
  color: white;
}

.connect:hover {
  background-color: #ffb124;
  color: white;
  transition: all 0.3s ease;
}

.explore {
  padding: 5px 20px 10px 20px;
  border-radius: 100px;
  font-size: 23px;
  text-decoration: none;
  margin-left: 10px;
  margin-right: 0;
  border: 3px solid #0088cc;
  background-color: #0088cc;
  color: white;
}

.explore:hover {
  background-color: transparent;
  color: white;
  transition: all 0.3s ease;
}

.community {
  padding: 5px 20px 10px 20px;
  border-radius: 100px;
  font-size: 23px;
  text-decoration: none;
  margin-left: 10px;
  margin-right: 0;
  border: 3px solid #5865f2;
  background-color: #433ac2;
  color: white;
}

.community:hover {
  background-color: transparent;
  color: white;
  transition: all 0.3s ease;
}


.card-holder {
  margin: 16px 0 0 0;  
  overflow: hidden;
  z-index: 30;
}
.cards-container {
  width: 100%;
  margin-top: 50px;
  overflow: hidden;
  transform: perspective(90px) rotateY(-1deg);
  padding: 10px;
}

.cards-row {
  display: flex;
  overflow: visible;
  animation: slideright 10s infinite;
  margin: 0px;
}

.cards-row:last-of-type {
  animation: slideleft 10s infinite;
}

.cards-row:hover {
  animation-play-state: paused;
}

.card {
  height: 300px;
  width: 900px;
  border-radius: 10px;
  margin: 5px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.card:hover {
  border-color: #f9ce5e;
  transform: translateZ(0px) scale(1.04);
  box-shadow: rgba(191, 238, 24, 0.9) 0px 0px 24px 0px;
}

.card a {
  width: 100%;
  height: 100%;
  padding: 0;
  margin: 0;
  display: block;
}

.hide-left {
  background: linear-gradient(
    90deg,
    rgb(255, 255, 255) 0%,
    rgb(255, 255, 255) 40%,
    rgba(255, 255, 255, 0) 60%,
    rgba(255, 255, 255, 0) 100%
  );
  height: 700px;
  width: 200px;
  top: 115px;
  left: 35%;
  z-index: 10;
  position: absolute;
}

.hide-right {
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0) 30%,
    rgb(255, 255, 255) 50%,
    rgb(255, 255, 255) 100%
  );
  height: 800px;
  width: 200px;
  top: 115px;
  right: 0px;
  z-index: 10;
  position: absolute;
}

.join-text {
  text-align: center;
  width: 100%;
  justify-content: center;
  background: -webkit-linear-gradient(-90deg, #fe512a 61%, #f9ce5e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 56px;
}

#scrollToTop {
  position: fixed;
  right: 30px;
  bottom: 30px;
  cursor: pointer;
  display: none;
  z-index: 999;
}

#scrollToTop img {
  height: 80px;
}

.back-top div {
    background-color: transparent;
    bottom: 0;
    height: 50px;
    margin: 0;
    position: fixed;
    right: 10px;
    width: 85px;
    z-index: 10000
}

.back-top .icon-bg {
    background-color: #903f2d;
    box-shadow: 0 2px 3px 0 rgba(0,0,0,0.08);
    height: 60px;
    left: 0;
    position: absolute;
    top: -10px;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    transform-origin: left bottom 0;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
    width: 60px;
}

.back-top .back-to-top-text {
    bottom: 5px;
    color: rgba(255,255,255,0.7);
    font-size: 14px;
    position: absolute;
    text-align: center;
    text-transform: uppercase;
    -webkit-transition: bottom 0.15s ease-out 0.2s;
    -moz-transition: bottom 0.15s ease-out 0.2s;
    -o-transition: bottom 0.15s ease-out 0.2s;
    -ms-transition: bottom 0.15s ease-out 0.2s;
    transition: bottom 0.15s ease-out 0.2s;
    width: 100%
}

.back-top .fa {
    color: #fff;
    font-size: 28px;
    left: 50%;
    position: absolute;
    top: 100%;
    -webkit-transform: translate(-50%, 0);
    -moz-transform: translate(-50%, 0);
    -o-transform: translate(-50%, 0);
    -ms-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
    -webkit-transition: all 0.2s ease-out 0s;
    -moz-transition: all 0.2s ease-out 0s;
    -o-transition: all 0.2s ease-out 0s;
    -ms-transition: all 0.2s ease-out 0s;
    transition: all 0.2s ease-out 0s
}

.back-top div:hover .back-to-top-text {
    bottom: -30px;
    -webkit-transition: bottom 0.15s ease-out 0s;
    -moz-transition: bottom 0.15s ease-out 0s;
    -o-transition: bottom 0.15s ease-out 0s;
    -ms-transition: bottom 0.15s ease-out 0s;
    transition: bottom 0.15s ease-out 0s
}

.back-top div:hover .fa {
    top: 65%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -webkit-transition: all 0.2s ease-out 0.15s;
    -moz-transition: all 0.2s ease-out 0.15s;
    -o-transition: all 0.2s ease-out 0.15s;
    -ms-transition: all 0.2s ease-out 0.15s;
    transition: all 0.2s ease-out 0.15s
}

.dwlqFI {
  margin: 0px;  
  -webkit-box-align: stretch;
  align-items: stretch;
  border-width: 0px;
  border-style: solid;
  border-color: rgb(0, 0, 0);
  display: flex;
  flex-basis: auto;
  flex-shrink: 0;
  min-height: 0px;
  min-width: 0px;
  max-width: 100%;
  z-index: 0;
  flex-flow: row wrap;
  -webkit-box-pack: justify;
  justify-content: space-between;
}

.dDLhtR {
  color: rgb(163, 163, 163);
  background: rgba(255, 255, 255, 0.2);
  border-radius: 28px;
  font-weight: 500;
  font-size: 15px;
  line-height: 19px;
  outline: none;
  border: 1px solid transparent;
  transition: all 0.15s ease-out 0s;
  padding: 19px 95px 19px 26px;
  margin: 10px 0;
}

.haHbTN {
  font-size: 19px;
}

.giXNzI {
  display: flex;
}

.giXNzI li {
  margin-right: 50px;
}

.GLydC {
  width: 20%;  
}

.gDYkWk {
  z-index: 0;
  position: relative;
  width: fit-content;
  top: -60px;
  left: calc(100% - 100px);
}

.bejKGh {
  background: rgb(0, 102, 255);
  padding: 10px 24px;
  border-radius: 32px;
  border: none;
  color: white;
  font-weight: bold;
  width: 100%;
  transition: all 0.15s ease-out 0s;
  user-select: none;
}

.roadmap-image {
  width: 100%; 
  margin-top: 20px;
  margin-bottom: -5px;
  display: block;
}

#roadmap {
  margin-top: 300px;
}

#howto-img-2nd {
  margin-left: 30%;
}
#subtext-teemo {
  display: none;
}

#airdrop-banner {
  padding: 20px;
  width: calc(100% - 40px);
  margin-bottom: 100px;
}

#airdrop-banner>a>img {
  width: 100%;
  max-width: 1200px;
  display: block;
  margin: 0 auto;
  border-radius: 10px;
}

@keyframes slideright {
  0% {
    transform: translateX(10%);
  }
  70% {
    transform: translateX(-10%);
  }
  100% {
    transform: translateX(10%);
  }
}

@keyframes slideleft {
  0% {
    transform: translateX(-10%);
  }
  70% {
    transform: translateX(10%);
  }
  100% {
    transform: translateX(-10%);
  }
}

@keyframes sliderightmobile {
  0% {
    transform: translateX(20%);
  }
  70% {
    transform: translateX(-20%);
  }
  100% {
    transform: translateX(20%);
  }
}

@keyframes slideleftmobile {
  0% {
    transform: translateX(-20%);
  }
  70% {
    transform: translateX(20%);
  }
  100% {
    transform: translateX(-20%);
  }
}

@media only screen and (max-width: 1000px) {
  #cover {
    display: flex;
    flex-direction: column;
    margin-top: 50px;
    gap: 30px;
  }
  #airdrop-banner {
    margin-top: -80px;
    padding: 8px;
    width: calc(100% - 16px);
    margin-bottom: 30px;
  }
  #enter {
    display: inline;
  }
  .cover-text b {
    font-size: 60px;
  }
  .connect {
    text-shadow: none;
    z-index: 100;
  }
  .explore {
    z-index: 100;
  }
  #howto-img-2nd {
    margin-left: 0;
  }
  .card-holder {
    width: 100%;
    height: auto;
    margin-left: -2px;
  }
  .cards-container {
    width: 200%;
    margin: 50px 0 0 0;
    padding: 0;
    margin-left: -50%;
  }
  .cards-row {
    animation: sliderightmobile 15s infinite;
  }

  .cards-row:last-of-type {
    animation: slideleftmobile 15s infinite;
  }
  .card {
    height: 180px;
  }
  .join-text {
    font-size: 28px;
  }
  .cover-text-container {
    width: 100%;
    margin: 0;    
    text-align: center;   
  }
  .cover-buttons-container {    
    justify-content: center;
  }

  .cover-text {
    font-size: 36px;
    line-height: 39px;
  }
  .cover-subtext {
    color: #fff;
    font-size: 17px;
    margin: 3px 0;
  }
  .hide-left {
    width: 30px;
    left: -10px;
    top: 60px;
  }
  .hide-right {
    width: 10px;
    right: 0;
    top: 60px;
    background: linear-gradient(
      90deg,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, 0) 30%,
      rgb(255, 255, 255) 90%,
      rgb(255, 255, 255) 100%
    );
  }
  #scrollToTop {
    display: none;
  }
  #roadmap {
    margin-top: 100px;
  }
  .GLydC {
    width: 90%;
    margin-bottom: 20px;
    text-align: center;
  }  
  .dwlqFI {
    justify-content: center;
  }
  .iVDKTw {
    justify-content: center;
  }
}

@media only screen and (max-width: 480px) {
  .cover-buttons-container {
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
}
#projector {
  position: absolute; 
  top: 0px;
  left: 0px;
  width:100%;
  height:100%;
  z-index: 0;
} 

.center-div {
	width:580px;
    height:374px;
    position:absolute;
    left:50%;
    top:50%;
    margin-left: -290px;
    margin-top:  -187px;
}

#preloaderDiv
{
	position:absolute;
	left:50%;
    top:50%;
    margin-left: -27px;
    margin-top:  -27px;
}

#logo{
	opacity:0;
    filter: alpha(opacity=0);
}

#date2014
{
	position:absolute;
	padding-left: 210px;
	padding-top:15px;
	opacity:0;
	top:303px;
	left:0;
    filter: alpha(opacity=0);
}


@keyframes move-twink-back {
    from {background-position:0 0;}
    to {background-position:-10000px 5000px;}
}
@-webkit-keyframes move-twink-back {
    from {background-position:0 0;}
    to {background-position:-10000px 5000px;}
}
@-moz-keyframes move-twink-back {
    from {background-position:0 0;}
    to {background-position:-10000px 5000px;}
}
@-ms-keyframes move-twink-back {
    from {background-position:0 0;}
    to {background-position:-10000px 5000px;}
}

@keyframes move-clouds-back {
    from {background-position:0 0;}
    to {background-position:10000px 0;}
}
@-webkit-keyframes move-clouds-back {
    from {background-position:0 0;}
    to {background-position:10000px 0;}
}
@-moz-keyframes move-clouds-back {
    from {background-position:0 0;}
    to {background-position:10000px 0;}
}
@-ms-keyframes move-clouds-back {
    from {background-position: 0;}
    to {background-position:10000px 0;}
}

.stars, .twinkling, .clouds {
  position:absolute;
  top:0;
  left:0;
  right:0;  
  width:100%;
  height:100%;
  display:block;
}

.stars {
  background:#000 url('/images/stars.png') repeat top center;
  z-index:-1;
}

.twinkling{
  background:transparent url('/images/twinkling.png') repeat top center;
  z-index:0;

  -moz-animation:move-twink-back 200s linear infinite;
  -ms-animation:move-twink-back 200s linear infinite;
  -o-animation:move-twink-back 200s linear infinite;
  -webkit-animation:move-twink-back 200s linear infinite;
  animation:move-twink-back 200s linear infinite;
}

.clouds{
    background:transparent url('/images/clouds3.png') repeat top center;
    z-index:-1;

  -moz-animation:move-clouds-back 200s linear infinite;
  -ms-animation:move-clouds-back 200s linear infinite;
  -o-animation:move-clouds-back 200s linear infinite;
  -webkit-animation:move-clouds-back 200s linear infinite;
  animation:move-clouds-back 200s linear infinite;
}
nav {
  position: absolute;
  overflow: visible;
  top: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
  padding: 0;
  z-index: 200;
  background-color: #f2bc4f;
  animation-fill-mode: none !important;
}

.top-header-desktop {
  width: 100%;
  padding: 5px 4%;
  display: flex;
}

.top-link {
  width: calc(100%);
  padding-right: 100px;
  height: 40px;
  border-bottom: solid 1px #f9f9f9;
  display: flex;
  justify-content: flex-end;
}

.top-link .top-link-list {
  list-style: none;
  display: flex;
  margin: 5px 0;
}

.top-link .link-list-text a {
  text-decoration: none;
  color: #d0d0d0;
  font-size: 15px;
  margin-left: 20px;
}

.top-link .link-list-item a {
  display: block;
  margin-left: 20px;
  height: 25px;
  width: 25px;
  border-radius: 12.5px;
  border: solid 1px #d0d0d0;
}

.top-link .link-list-item svg {
  height: 15px;
  display: block;
  margin: 5px 0.5px;
}

.top-link .link-list-item svg path {
  fill: #d0d0d0;
}

.nav-logo {
  width: fit-content;
}

#logo-img {
  width: 80px;
}

.main-nav {
  display: flex;
  justify-content: flex-end;
  width: 100%;
  align-items: center;
}

.main-nav li {
  margin-left: 3%;
  list-style: none;
  display: flex;
}

.main-nav li:last-child {
  padding: 5px 18px 5px 18px;
  border-radius: 12px;
  border: 2px solid #2b0302;
  text-decoration: none;
  background-color: #19222b;
  text-align: center;
}

.main-nav li:last-child:hover {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.main-nav li:last-child a {
  color: #f9ce5e;
}

.main-nav li:hover {
  list-style: none;
  display: flex;
  text-shadow: 20px 20px 20px 20px #77d3d8;
  transition: all 0.2s ease;
}

.main-nav a {
  color: rgb(19, 19, 19);
  font-weight: bold;
  text-decoration: none;
  font-size: 19px;
  font-family: 'Rubik', sans-serif;
}

.main-nav a.cgx {
  color: #5b11df;
}

.main-nav a.cgx:hover {
  color: #8154ce;
}

.main-nav a.cgo {
  color: #2196f3;
}

.main-nav a.cgo:hover {
  color: #6bb0e9;
}

.main-nav li:hover a {
  color: #ffffff;
}

.main-nav li:last-child:hover a {
  color: #d85c40;
}

.main-nav li.dropdown {
  position: relative;
  display: inline-block;
  width: 128px;
}

.dropdown-content {
  display: none;
  position: absolute;
  border: 2px solid #2b0302;
  text-decoration: none;
  background-color: #19222b;
  min-width: 100%;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 1;
  right: -2px;
  top: 103%;
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
}

.dropdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  text-align: left;
  display: flex;
}

.dropdown-content a img {
  margin-right: 10px;
  width: 24px;
  height: 24px;
}

.dropdown-content a:hover {
  background-color: #394e63;
}

.dropdown-content a:last-child {
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
}

.dropdown:hover .dropdown-content {
  display: block;
}

.dropdown:hover .dropbtn {
  background-color: #3e8e41;
}

.nav-logo-container {
  z-index: 200;
  display: flex;
  align-items: center;
  text-decoration: none;
}

.cougar-heading-text {
  font-size: 1.8em;
  font-weight: bold;
  color: #b15734;
  margin-left: 18px;
}

@media screen and (max-width: 1000px) {
  nav {
    position: absolute;
    padding: 0px;
    background-color: transparent;
    flex-wrap: nowrap;
  }

  .nav-logo {
    width: 100%;
    padding: 0;
    display: flex;
    padding: 0 20px;
  }

  .top-link {
    display: none;
  }

  .nav-logo-container {
    z-index: 200;
    position: fixed;
  }

  #logo-img {
    margin-top: 5px;
    width: 60px;
  }

  .main-nav {
    display: none;
  }
}

.slide-left {
  -webkit-animation: slide-left 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
  animation: slide-left 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

@-webkit-keyframes slide-left {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    -webkit-transform: translateX(-100px);
    transform: translateX(-100px);
  }
}

@keyframes slide-left {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    -webkit-transform: translateX(-100px);
    transform: translateX(-100px);
  }
}
#connect {
  margin-top: 100px;
}

.howto-videoList {
  display: flex;
  justify-content: start;
  max-width: 1400px;
  overflow-x: scroll;
}

.howto-videoList::-webkit-scrollbar {
  height: 6px;
}

/* Track */
.howto-videoList::-webkit-scrollbar-track {
  background: #f1f1f1; 
}
 
/* Handle */
.howto-videoList::-webkit-scrollbar-thumb {
  background: #888; 
  border-radius: 10px;
}

/* Handle on hover */
.howto-videoList::-webkit-scrollbar-thumb:hover {
  background: #555; 
}

.howto-videoList iframe {
  width: 25vw !important;
  height: calc(25vw / 16 * 9) !important;
  margin: 5px;
  border-radius: 8px;
}

.scroll-button {
  background: none;
  border: none;
  font-size: 40px;
  padding: 0 20px;
  color: #a3b85a;
  cursor: pointer;
}

.scroll-button:focus {
  outline: none;
}

.scroll-button>i{
  font-family: 'Font Awesome 5 Free' !important;
  transition: all 0.3s ease;
}

.scroll-button:hover>i {
  transform: scale(1.4);
}

.howto-details {
  width: 100%;
  display: flex;
  justify-content: center;
  margin: 40px 0;
}

.howto-row {
  display: flex;
}

.howto-content {
  width: 50%;
  display: flex;
  align-items: center;
}

.howto-content img {
  width: 70%;
}

.howto-headtext {
  font-size: 28px;
  margin: 0px 0;
}

.howto-subtext {
  font-size: 19px;
  color: gray;
  margin: 5px 0;
}

@media screen and (max-width: 1000px) {
  .scroll-button {
    display: none;
  }
  .howto-videoList {
    display: flex;
    justify-content: flex-start;
    overflow-x: scroll;
    max-width: 100vw;
  }
  .howto-videoList iframe {
    width: 90vw !important;
    height: calc(90vw / 16 * 9) !important;
    margin: 5px;
    border-radius: 8px;
  }  
  #connect {
    margin-top: 100px;
  }
  .howto-details {
    width: calc(100% - 20px);
    margin: 10px;
  }
  #howto-row-2nd {
    flex-direction: column-reverse;
  }
  .howto-row {
    flex-direction: column;
  }
  .howto-content {
    width: 100%;
  }
  .howto-content img {
    width: 100%;
    margin: 5px 0;
  }
  .howto-headtext {
    font-size: 23px;
  }
  .howto-subtext {
    font-size: 18px;
    font-weight: normal;
  }
}

#roadmap {
    margin-top: 100px;
    display: flex;
    justify-content: center;
    flex-direction: column;
}

#timeline>b, #timeline>div, #timeline>p {
    font-size: 16px;
    margin: 0;
    font-weight: normal;
}

#timeline ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

#timeline div.item ul>li {
    position: relative;
    padding-left: 15px;
}

#timeline div.item ul>li:before {
    content: "";
    position: absolute;
    /* top: 9px; */
    left: 0;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    color: #fff;
    background-color: rgb(32, 32, 32);
}

#timeline {
    position: relative;
    width: 1000px;
    margin: 0 auto;
}

.container {
    left: -200px;
    position: relative;
    padding-bottom: 60px;
}

#roadmap div.section-heading {    
    line-height: 79px;
    max-width: 100%;
    font-size: 72px;
    margin-bottom: 50px;
}

#timeline div.line {
    width: 419px;
    margin-left: 470px;
}

#timeline div.item {
    position: absolute;
    background-color: #1a1c34;
    color: #fff;
    width: 230px;
    padding: 20px;
    border-radius: 6px;
    /* box-shadow: 0 10px 25px rgb(0 0 0 / 15%); */
    box-shadow: 5px 5px 5px #903f2d99;
}

#timeline div.item:hover {
    background-color: #101633;
}

#timeline div.item:hover::before {
    background-color: #f9ce5e;
}

#timeline div.item:before {
    content: "";
    position: absolute;
    top: 50%;
    width: 18px;
    height: 18px;
    left: -45px;
    border-radius: 50%;
    border: 2px solid #f9ce5e;
    background-color: #fff;
    margin-top: -9px;
    transition: background-color .3s;
    -webkit-transition: background-color .3s;
}

#timeline div.item:after {
    content: "";
    position: absolute;
    top: 50%;
    left: -7px;
    width: 0;
    height: 0;
    margin-top: -7px;
    border-top: 7px solid transparent;
    border-bottom: 7px solid transparent;
    border-right: 7px solid #1a1c34;
}

#timeline div.item .title {
    margin-top: -10px;
    margin-bottom: 5px;
    font-size: 24px;
    color: #e34c2f;
}

#timeline div.item.item-1 {
    top: -56px;
    left: 210px;
}

#timeline div.item.item-2 {
    top: 79px;
    right: 115px;
}

#timeline div.item.item-3 {
    left: 280px;
    top: 215px;
}

#timeline div.item.item-4 {
    right: -30px;
    top: 347px;
}

#timeline div.item.item-5 {
    top: 575px;
    left: 470px;
}

#timeline div.item.item-6 {
    right: -38px;
    bottom: 345px;
}

#timeline div.item.item-6-b {
    left: 561px;
    bottom: 59px;
}

#timeline div.item.item-7 {
    right: -176px;
    bottom: -33px;
}

#timeline div.item.item-8 {
    left: 580px;
    bottom: 4px; 
}

#timeline div.item.item-1::before, #timeline div.item.item-3::before, #timeline div.item.item-5::before, #timeline div.item.item-6-b::before,  #timeline div.item.item-8::before {
    left: unset;
    right: -44px;
}

#timeline div.item.item-1::after, #timeline div.item.item-3::after, #timeline div.item.item-5::after, #timeline div.item.item-6-b::after, #timeline div.item.item-8::after  {
    left: unset;
    right: -7px;
    border-right: 0;
    border-left: 7px solid #1a1c34;
}

#timeline div.item ul li:before {    
    content: "\2022";  /* Add content: \2022 is the CSS Code/unicode for a bullet */
    color: #fff;
    font-weight: bold; /* If you want it to be bold */
    display: inline-block; /* Needed to add space between the bullet and the text */
    width: 1em; /* Also needed for space (tweak if needed) */    
}

@media only screen and (max-width: 1200px) {
    .container {
        left: 0;
        max-width: 100%;
        width: 100%;
        overflow-x: hidden;
        overflow-y: visible;
        position: relative;
    }
    #timeline {
        position: sticky;        
        margin-left: 12px;             
        height: fit-content;
        width: 100%;
    }
    #roadmap div.section-heading {
        text-align: center;
        top: -30px;
        right: auto;
        left: auto;
        display: block;
        margin: 0 auto;
        line-height: 54px;
        font-size: 45px;
        width: 100%;
    }
    #roadmap div.item{
        width: calc(100% - 85px);
        padding: 20px 10px 20px 20px;
    }
    #timeline::before {
        content: "";
        width: 2px;
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        background-color: #f9ce5e;
    }
    #timeline div.line {
        display: none;
    }

    #timeline div.item, 
    #timeline div.item.item-1,
    #timeline div.item.item-3,
    #timeline div.item.item-5,
    #timeline div.item.item-6-b,
    #timeline div.item.item-7,
    #timeline div.item.item-8 {
        position: sticky;
        margin-left: 36px;
        margin-bottom: 20px;
        top: auto;
        bottom: auto;
        left: auto;
        right: auto;
    }
    #timeline div.item.item-1::before, 
    #timeline div.item.item-3::before, 
    #timeline div.item.item-5::before, 
    #timeline div.item.item-6-b::before,
    #timeline div.item.item-8::before {        
        left: -46px;        
    }
    
    #timeline div.item.item-1::after, 
    #timeline div.item.item-3::after, 
    #timeline div.item.item-5::after, 
    #timeline div.item.item-6-b::after,
    #timeline div.item.item-8::after {
        content: "";
        position: absolute;
        top: 50%;
        left: -7px;
        width: 0;
        height: 0;
        margin-top: -7px;
        border-top: 7px solid transparent;
        border-bottom: 7px solid transparent;
        border-right: 7px solid #1a1c34;
        border-left: none;
    }
}
#token {
    display: flex;
    justify-content: center;
    padding: 50px 0 70px 0;
    background-color: #f1f1f1;
    -moz-box-shadow:    inset 0 0 10px #c7c7c7;
    -webkit-box-shadow: inset 0 0 10px #c7c7c7;
    box-shadow:         inset 0 0 10px #c7c7c7;
}

#launchzone {
    display: none;
}


#token-key {
    text-decoration: none;
    line-break: anywhere;
    color: #a3b85a;
}


.small-text {
    color: #ffc84a;
    font-size: 15px;
}

#note {
    font-weight: normal;
    font-style: italic;
    font-size: 17px;
    text-align: center;
    color: gray;
}

.airdrop-banner {
    min-width: 300px;
    max-width: 900px;
    margin: 0 auto 10px auto;
}

.airdrop-banner>img {
    width: 100%;
    max-width: 1200px;
    display: block;
    margin: 0 auto;
    border-radius: 10px;
}

@media only screen and (max-width: 1000px) {
    .token-container {
        width: 85vw;
        min-width: unset;
        padding: 22px;
        border-radius: 10px;
    }
    #launchzone {
        display: unset;
    }    
}
#footer {  
  padding: 25px 4%;
  color: white;
  overflow: hidden;  
}

#footer ul {
  list-style: none;
  text-align: left;
  margin: 0;
  padding: 0;
}

#footer ul li {
  margin-top: 10px;
}

#footer a {
  text-decoration: none;
  color: gray;
  font-size: 16px;
  font-weight: normal;
}

#footer a:hover {
  color: white;
}

.cBTBtA,
.jKMzYI {
  margin-bottom: 20px;
}

.iVDKTw {
  display: flex;
  list-style: none;
}

.dfDVRO {
  margin-right: 17px;
}

.sc-crrsfI {
  display: flex;
  align-items: center;
}

@media only screen and (max-width: 1000px) {
  #footer {
    width: 90%;
    padding: 40px 5%;
    z-index: 50;
  }
}
.features-container {
  
}

.features-row {
  margin-bottom: 40px;
  padding: 0px;
  -webkit-box-align: stretch;
  border-width: 0px;
  border-style: solid;
  border-color: rgb(0, 0, 0);
  display: flex;
  flex-basis: auto;
  flex-shrink: 0;
  min-height: 0px;
  min-width: 0px;
  max-width: 100%;
  z-index: 0;
  flex-flow: row wrap;
  align-items: flex-start;
  justify-content: center;
}

.sc-gsTCUz {
  border-width: 0px;
  border-style: solid;
  border-color: rgb(0, 0, 0);
  border-radius: 10px;
  display: flex;
  flex-basis: auto;
  flex-direction: column;
  flex-shrink: 0;
  min-height: 0px;
  min-width: 0px;
  z-index: 0;
  width: 100%;
  -webkit-box-align: center;
  align-items: center;
  /* width: 13%; */
  max-width: 150px;
  text-align: center;
  font-size: 14px;
  margin: 20px;
}

.features-row>.sc-gsTCUz:hover {
  background-color: #121531;
}

.features-row>.sc-gsTCUz:hover::after {
  background-color: #101633;
}

.contract-feature > .sc-gsTCUz {
  background-color: #1a1c34;
  color: #fff;
  text-transform: uppercase;
  /* border: 1px solid #ffc107; */
}

.app-feature > .sc-gsTCUz {
  background-color: #1a1c34;
  color: #fff;
  text-transform: uppercase;  
  /* border: 1px solid #ff9800; */
}

span.feature-icon {
  display: flex;
  justify-content: center;
  border-radius: 12px;
  font-size: 1.5em;  
  max-width: 100%;
}

.contract-feature .feature-icon {
  background-color: #1f2645;
  color: #baea6b;
}

.app-feature .feature-icon {
  background-color: #1f2645;
  color: #baea6b;
}


.sc-gsTCUz img {
  width: 80px;
  height: 80px;
}

.sc-gsTCUz span {
  width: 80px;
  height: 80px;
  margin-top: 20px;
}

div.llJXPF {
  padding-top: 10px;
  height: 50px;
  display: flex;
  justify-content: center;  
  width: 100%;
}

div.llJXPF span {
  width: 100%;
  height: auto;
  margin-top: 0;
}

#join20 {
  margin: 100px 0 60px 0;
}

.gmOtEU {    
    box-shadow: 5px 5px 5px #383c38;
  }

@media only screen and (max-width: 1000px) {
  #join20 {
    font-size: 30px;
    margin: 30px;
  }

  #features {
    margin-top: 70px;
    z-index: 30;
  }
  .features-container {
    padding: 0;
    display: flex;
  }
  .features-row {
    margin: 10px 0;
    width: 50%;
  }
  .sc-gsTCUz {
    max-width: 70%;
    font-size: 23px;
    margin: 10px;
  }
  .gmOtEU {
    margin-bottom: 20px;
  }
  div.llJXPF {
    padding: 0;
    height: 60px;
  }
  .sc-gsTCUz span{
    width: 60px;
    height: 60px;
    font-size: 0.8em;
    margin-top: 10px;
  }
}
.cougar-video {
    width: 90%;
    height: calc( 90% / 16 * 10 );
    margin-top: 50px;
    border-radius: 15px;
}

@media only screen and (max-width: 1000px) {
    .cougar-video {
        display: block;
        margin: 0px auto;
        margin-top: 90px;
    }
}
.blog {
    padding-top: 130px;
}

.blog-list * {
    font-family: 'Montserrat', sans-serif;
}

.blog-list {
    display: flex;
    width: 70%;
    margin: 0 auto;
    flex-wrap: wrap;
    padding: 30px 0;
    justify-content: center;
    list-style: none;
}

.newsindex {
    margin-top: 40px;
}

.blog-item {
    width: calc(20vw - 20px);
    margin: 10px;
    border-radius: 10px;
    box-shadow: 0 0.1rem 0.3rem rgba(52, 58, 64, 0.15) !important;
}

.blog-item-author {
    margin: 0;
    font-weight: 500;
    color: #a3b85a;
}

.blog-item-description {
    padding: 20px;
}

.blog-item-background {
    display: block;
    align-content: center;
    background-position: center;
    background-size: cover;
    width: calc(20vw - 20px);
    border-radius: 8px 8px 0 0;
    height: calc((20vw - 20px) / 16 * 9);
}

.blog-item-title {
    width: 100%;
    margin: 7px 0;
    display: flex;
}

.blog-item-title a {
    color: rgb(46, 46, 46) !important;
    text-decoration: none;
}

.blog-publishedAt {
    position: absolute;
    top: 10px;
    right: -20px;
    width: fit-content;
    background: #e98025;
    font-size: 23px;
    padding: 7px 16px;
    color: white;
    display: block;
    height: fit-content;
}

.blog-item-description-text {
    line-height: 25px;
    margin-bottom: 20px;
    line-break: auto;
    font-weight: 500;
    max-height: 170px;
    overflow: hidden;
    text-overflow: ellipsis;
}

@media screen and (max-width: 1200px) {
    .blog {
        padding-top: 90px;
    }

    .blog-list {
        padding: 10px;
        width: unset;
        flex-wrap: unset;
        overflow-x: scroll;
        justify-content: start;
    }

    .newsindex {
        margin-top: 0px;
    }

    .blog-item {
        width: calc(90vw - 20px);
        margin: 10px 10px;
        border-radius: 10px;
    }
    .blog-item:last-child {
        margin-right: 50px;
    }

    .blog-item-background {
        width: calc(90vw - 20px);
        height: calc((90vw - 20px)/ 16 * 9);
    }

    .blog-item-title a,
    .blog-item-title a:hover {
        font-size: 18px;
    }

    .blog-publishedAt {
        top: -20px;
        right: 10px;
        font-size: 18px;
        padding: 7px 16px;
    }
}
#multichain {
    overflow-y: hidden;
    max-height: 1200px;
}

.chainContainer {
    display: flex;
    justify-content: center;
    z-index: 2;
    margin-top: 60px;
}

.connect-from-tee {
    position: relative;
    display: block;
    height: 90px;
    width: 10px;
    top: -50px;
    z-index: 0;
    border-radius: 5px;
    margin: auto;
    background: linear-gradient(180deg, rgba(153,255,93,1) 0%, rgba(221,255,76,1) 35%, rgba(255,209,0,1) 72%);
}

.connect-child {
    position: relative;
    display: block;
    height: 430px;
    width: 10px;
    top: -340px;
    z-index: 0;
    border-radius: 5px;
    margin: 0 145px;
    background: linear-gradient(
180deg
, rgba(153,255,93,1) 0%, rgba(221,255,76,1) 35%, rgba(255,209,0,1) 72%);
}

.connect-gradient {
    position: relative;
    display: block;
    height: 10px;
    width: calc(150px * 4 + 3px * 3);
    top: -60px;
    z-index: 0;
    border-radius: 5px;
    margin: auto;
    background: linear-gradient(90deg, rgba(153,255,93,1) 0%, rgba(221,255,76,1) 20%, rgba(255,209,0,1) 72%, rgba(157,157,157,0.7) 89%);
}

.connect-down {
    top: -348px;
    background: linear-gradient(90deg, rgba(153,255,93,1) 0%, rgba(221,255,76,1) 25%, rgba(255,209,0,1) 40%, rgba(186,186,186,1) 50%);
}

.connect-to-all {
    position: relative;
    display: block;
    height: 90px;
    width: 10px;
    top: -355px;
    z-index: 0;
    border-radius: 5px;
    margin: auto;
    background: linear-gradient(180deg, rgba(153,255,93,1) 0%, rgba(221,255,76,1) 35%, rgba(255,209,0,1) 72%);
}

.connect-inactive {
    background: rgba(186,186,186,1)
}

.chain {
    width: 200px;
    height: 80px;
    font-size: 28px; 
    line-height: 60px;
    padding-top: 10px;
    text-align: center;
    background-color: #ffffff;
    margin: 30px 50px;
    border-radius: 4px;
    z-index: 2;
    -webkit-box-shadow: 0px 0px 35px 3px rgba(171,250,0,1);
    -moz-box-shadow: 0px 0px 35px 3px rgba(171,250,0,1);
    box-shadow: 0px 0px 35px 3px rgba(171,250,0,1);
}


.teemoChain {
    width: 80px;
    padding: 15px 10px 5px 10px;
    border-radius: 50%;
}

.chain img {
    height: 64px;
    width: auto;
}

.inactive {
    -webkit-box-shadow: 0px 0px 35px 3px rgba(212,212,212,1);
    -moz-box-shadow: 0px 0px 35px 3px rgba(212,212,212,1);
    box-shadow: 0px 0px 35px 3px rgba(212,212,212,1);
}

.inactive img {
    filter: saturate(0%);
}

.crosschain {
    top: -400px; 
    position: relative;
}

@media screen and (max-width: 1000px) {
    #multichain {
        max-height: 900px;
    }
    
    .chain {
        width: 100px;
        height: 50px;
        font-size: 20px;
        line-height: 45px;
        padding-top: 0px;
        margin: 10px 10px 50px 10px;
    }
    .teemoChain {
        width: 80px;
        height: 80px;
        padding: 15px 10px 5px 10px;
        margin: 30px 10px;
    }
    .crosschain {
        top: -360px; 
        padding: 0 20px;
        margin: 30px 10px;
        width: fit-content;
        position: relative;
        text-align: center;
    }
    .connect-gradient {
        width: calc(60px * 4 + 3px * 3);
    }
    .connect-child {
        margin: 0 55px;
    }
    .connect-child {
        height: 300px;
        top: -300px;
    }
    .connect-down {
        top: -310px;
    }
    .connect-to-all {
        top: -320px;
    }
}
#finduson {
    margin-bottom: 50px;
}

#finduson .join-text {
    margin-bottom: 60px;
    margin-top: 120px;
}

.partner-list {    
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;       
    padding: 10px 0px;
}

.partner-list::-webkit-scrollbar {
    height: 6px;
}

.partner-list::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 10px;
}

.partner-list::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.partner-logo {
    display: block;
    height: 100px;
    margin: 10px 0;
    width: 25%;
}

.no-link-styled {
    text-decoration: none;
}

.no-link-styled:hover {
    text-decoration: none;
}

.partner-logo.center {
    position: relative; 
    display: flex;
    align-items: center;
}

.partner-logo.pancake {
    position: relative; 
    display: flex;
    align-items: center;
}

.partner-logo.jagosafer {
    position: relative; 
    display: flex;
    align-items: center;
}

.partner-logo.coinmarketcap img {
    height: 50px;
}

.partner-logo.coingecko img {
    height: 60px;
    margin-right: 10%;
}


.partner-logo.jagosafer img {
    height: 77px;
}


.partner-logo.pancake img {
    height: 40px;
}

.partner-logo.quickswap {
    position: relative; 
    display: flex;
    align-items: center;
}

.partner-logo.quickswap img {
    height: 60px;
}

.partner-logo.fantom img {
    height: 60px;
}

.partner-logo.spookyswap img {
    width: 100%;
}

.partner-logo.harmony img {
    height: 60px;
}

.partner-logo.viperexchange {
    display: flex;
    justify-content: center;
}

.partner-logo.viperexchange img {
    height: 60px;
    margin-left: 0;
    margin-right: 15px;
}

.partner-logo.viperexchange span {
    color: #fff;
    font-size: 30px;
    font-weight: bold;
    text-decoration: none;
}

.partner-logo img {
    height: 100px;
    border-radius: 7px;
    margin: 0 auto;
    display: block;
}

.partner-logo.avax img {
    height: 60px;
}

.partner-logo.traderjoe {
    display: flex;
    justify-content: center;
}

.partner-logo.traderjoe img {
    height: 60px;
    margin-left: 0;
    margin-right: 15px;
}

.partner-logo.traderjoe span {
    color: #fff;
    font-size: 30px;
    font-weight: bold;
    text-decoration: none;
}

/* .partner-logo.stellaswap {
    margin-left: 25%;
} */

.partner-logo.stellaswap img {
    height: 60px;
}

.partner-logo.beamswap img {
    height: 52px;
}

.partner-logo.nabox img {
    height: 60px;
}
.partner-logo.inh img {
    height: 260px;
}
.partner-logo.commonheight60 img {
    height: 60px;
}
.partner-logo.commonheight150 img {
    height: 150px;
}

.find-us-on {
    line-height: 56px;
    background: -webkit-linear-gradient(-90deg, #fe512a 61%, #f9ce5e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 56px;
}

@media screen and (max-width: 1000px) {
    #finduson {
        margin-bottom: 10px;
    }
    .partner-list {
        width: calc(100% - 20px);
        margin: 10px;
    }
    .partner-logo {
        height: 50px;
        width: 50%;
    }

    .partner-logo.rugdog {
        margin-left: 0;
    }
    
    .partner-logo.coinmarketcap {
        margin-left: 0;
    }
    
    .partner-logo.coingecko {
        margin-right: 0;
    }

    .partner-logo.coingecko img {
        margin-right: auto;
    }

    .partner-logo img {
        height: auto;
        max-height: 60px;
        min-height: 30px;
        max-width: 150px;
        border-radius: 7px;
    }

    .partner-logo.viperexchange img, .partner-logo.traderjoe img {
        height: 50px;
        margin-right: 5px;
    }

    .partner-logo.viperexchange span, .partner-logo.traderjoe span {
        font-size: 14px;
    }

    #binancechain img {
        height: 60px;
    }
    
    #polygon img {
        height: 60px;
    }
    #finduson .join-text {
        margin-bottom: 20px;
    }

    .partner-logo.spookyswap img {
        width: 100%;
        max-width: 250px;
        padding-left: 15px;
    }  
    
    .partner-logo.stellaswap {
        margin-left: auto;
    }
}
#animeNumber {
    margin-top: 100px auto;
    padding: 20px;    
}

#animeNumber .join-text {
    margin-bottom: 60px;
    margin-top: 120px;
}

.greenWave, .greenInvertedWave {
    width: 100%;
}

.greenWave path {
    fill: #d8eb7a;
}

.greenWave {
    margin-top: 50px;
}

.greenInvertedWave {
    transform: rotate(180deg);
    margin-top: -5px;
}

.greenInvertedWave path {
    fill: #a6c44e;
}

.up_to {
    text-align: center;
    position: relative;
    font-weight: bold;
    color: #fff;    
    font-size: 5em;
    height: 100px;
}

.line-cell-shrink {
    width: 0px;
    height: 150px;
    border: 1px solid #5d77336e;
}

.number-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
}

.number-content .item {
    width: 20%;
    padding: 30px 25px;
    text-align: center;
}

.number-content .item .number {
    font-size: 38px;
    color: #fff;
}

.number-content .item .unit {
    font-size: 24px;
    color: #db5622;
}

.number-content .item .title {
    font-size: 18px;
    color: #baea6b;
}


@media only screen and (max-width: 1000px) { 
    .up_to {
        text-align: center;
        position: relative;
        font-weight: normal;
        color: #fff;
        margin-left: unset;
        font-size: 19px;
        margin-bottom: -20px;
    }
    .number-content .item {
        width: 80%;
        padding: 20px;
        text-align: center;
    }
    .line-cell-shrink {
        display: none;
    }
}
.main-container {
  padding: 0 4% 20px;
  margin-top: 90px;
  position: relative;
}

@keyframes rotate {
  100% {
    transform: rotate(1turn);
  }
}
.rainbow {
  position: relative;
  z-index: 0;
  border-radius: 5px;
  overflow: hidden;
}
.rainbow::before {
  content: "";
  position: absolute;
  z-index: -2;
  left: -50%;
  top: -50%;
  width: 200%;
  height: 200%;
  background-color: #399953;
  background-repeat: no-repeat;
  background-size: 50% 50%, 50% 50%;
  background-position: 0 0, 100% 0, 100% 100%, 0 100%;
  background-image: linear-gradient(#39995390, #39995390), linear-gradient(#fbb30090, #fbb30090), linear-gradient(#d53e3390, #d53e3390), linear-gradient(#377af590, #377af590);
  animation: rotate 10s linear infinite;
}
.rainbow::after {
  content: "";
  position: absolute;
  z-index: -1;
  left: 1px;
  top: 1px;
  width: calc(100% - 2px);
  height: calc(100% - 2px);
  background: #1a1c34;
  border-radius: 5px;
}

.burger-nav-btn {
  z-index: 10;
  position: absolute;
  display: none;
}

.burger-line {
  width: 30px;
  height: 5px;
  background-color: #f9ce5e;
  border-radius: 3px;
  margin: 5px 0;
}

.burger-nav-btn {
  position: fixed;
  z-index: 200;
  top: 10px;
  padding: 7px 10px;
  height: 35px;
  background-color: #fff;
  border-radius: 5px;
  right: 4%;
  box-shadow: 0px 5px 10px #e2e2e2;
}

.nav-list-container-mobile {
  display: none;
  top: 0;
  margin: 0;
  padding: 0;
  height: 80px;
  width: 100%;
  position: fixed;
  z-index: 20;
  background-color: #1a1c34eb;
  overflow: hidden;
}

.main-nav-mobile {
  display: block;
  box-sizing: border-box;
  position: fixed;
  right: 0;
  top: 80px;
  background-color: white;
  width: 100%;
  height: calc(100vh - 80px);
  height: calc(var(--doc-height) - 128px);
  overflow-y: scroll;
}
.main-nav-mobile ul {
  transition: all 0.3s ease;
  margin: 0;
  padding: 10px;
}
.main-nav-mobile li {
  margin-left: 50px;
}
.main-nav-mobile li + li {
  margin-top: 8px;
}
.main-nav-mobile a {
  display: flex;
  font-size: 20px;
  gap: 10px;
  color: #131313;
  text-decoration: none;
}
.main-nav-mobile a:visited {
  text-decoration: none;
}
.main-nav-mobile a img {
  width: 24px;
  height: 24px;
}

.main-nav-footer-mobile {
  display: block;
  background-color: #f3bf96;
  padding: 5px;
  margin-top: 50px;
}
.main-nav-footer-mobile ul {
  list-style: none;
  margin: 20px 0;
  display: flex;
  padding: 0;
  justify-content: center;
  overflow: hidden;
  width: 100%;
}
.main-nav-footer-mobile ul > li {
  margin: 0 8px;
}

@media screen and (max-width: 1000px) {
  .burger-nav-btn {
    display: block;
  }

  .nav-list-container-mobile {
    display: block;
  }
}
@keyframes progressChange {
  100% {
    transform: rotate(1turn);
  }
}
.promotion {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 50px;
  padding-top: 20px;
}
.promotion img {
  border-radius: 5px;
  height: auto;
  max-width: 100%;
}
.promotion a:link {
  text-decoration: none;
}
.promotion a:visited {
  text-decoration: none;
}
.promotion a:hover {
  text-decoration: none;
}
.promotion a:active {
  text-decoration: none;
}
.promotion .wrapper {
  background-color: rgba(39, 38, 44, 0.68);
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  box-sizing: border-box;
  padding: 30px 20px;
  width: 100%;
  color: #cbffcd;
  z-index: 0;
  border-radius: 5px;
  overflow: hidden;
}
.promotion .wrapper h2 {
  font-size: 2em;
  margin-top: 0;
  text-align: center;
  margin-bottom: 10px;
}
.promotion .wrapper div.description-text {
  font-size: 1em;
  margin-bottom: 12px;
}
.promotion .wrapper .presale-link {
  color: #caf0e0;
}
.promotion .wrapper .presale-link button {
  align-items: center;
  background-color: #31d0aa;
  border: 0px;
  border-radius: 16px;
  box-shadow: none;
  color: white;
  cursor: pointer;
  display: inline-flex;
  font-family: inherit;
  font-size: 16px;
  font-weight: 600;
  width: max-content;
  height: 48px;
  line-height: 1;
  letter-spacing: 0.03em;
  justify-content: center;
  outline: 0px;
  padding: 0px 24px;
  transition: background-color 0.2s ease 0s;
  opacity: 1;
}
.promotion .wrapper::before {
  content: "";
  position: absolute;
  z-index: -2;
  left: -50%;
  top: -450%;
  width: 200%;
  height: 1000%;
  background-color: #399953;
  background-repeat: no-repeat;
  background-size: 50% 50%, 50% 50%;
  background-position: 0px 0px, 100% 0px, 100% 100%, 0px 100%;
  background-image: linear-gradient(rgba(57, 153, 83, 0.565), rgba(57, 153, 83, 0.565)), linear-gradient(rgba(251, 179, 0, 0.565), rgba(251, 179, 0, 0.565)), linear-gradient(rgba(213, 62, 51, 0.565), rgba(213, 62, 51, 0.565)), linear-gradient(rgba(55, 122, 245, 0.565), rgba(55, 122, 245, 0.565));
  animation: 10s linear 0s infinite normal none running progressChange;
}
.promotion .wrapper::after {
  content: "";
  position: absolute;
  z-index: -1;
  left: 2px;
  top: 2px;
  width: calc(100% - 4px);
  height: calc(100% - 4px);
  background: #1a1c34;
  border-radius: 5px;
}

@media only screen and (max-width: 1000px) {
  .promotion {
    padding-top: 0;
  }
}
#token-distribution {
  padding: 20px;
}

#token-distribution .join-text {
  margin-bottom: 60px;
  margin-top: 120px;
}

#token-distribution .main-distribution-body {
  display: flex;
  justify-content: center;
}
#token-distribution .chart-explaination {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
#token-distribution .chart-explaination .distribution-item {
  background-color: #191f39;
  border-radius: 10px;
  padding: 25px 30px;
  margin-bottom: 20px;
  margin-right: 8px;
}
#token-distribution .chart-explaination .distribution-item.liquidity {
  box-shadow: 5px 5px 5px #903f2d99;
}
#token-distribution .chart-explaination .distribution-item.marketing {
  box-shadow: 5px 5px 5px #f9ce5e99;
}
#token-distribution .chart-explaination .distribution-item.heading {
  box-shadow: 5px 5px 5px #348a3899;
}
#token-distribution .chart-explaination .distribution-item:hover {
  background-color: #101633;
}
#token-distribution .chart-explaination .distribution-item .heading {
  display: flex;
}
#token-distribution .chart-explaination .distribution-item .heading img {
  width: 32px;
  height: 32px;
}
#token-distribution .chart-explaination .distribution-item .heading h3 {
  margin: 0;
  font-size: 1.2em;
}
#token-distribution .chart-explaination .distribution-item p {
  text-align: left;
  margin-bottom: 0;
  font-size: 0.8em;
}

#container {
  height: 500px;
}

.highcharts-figure, .highcharts-data-table table {
  min-width: 320px;
  max-width: 700px;
  width: 100%;
}

.highcharts-data-table table {
  font-family: Verdana, sans-serif;
  border-collapse: collapse;
  border: 1px solid #EBEBEB;
  margin: 10px auto;
  text-align: center;
  width: 100%;
  max-width: 500px;
}

.highcharts-data-table caption {
  padding: 1em 0;
  font-size: 1.2em;
  color: #555;
}

.highcharts-data-table th {
  font-weight: 600;
  padding: 0.5em;
}

.highcharts-data-table td, .highcharts-data-table th, .highcharts-data-table caption {
  padding: 0.5em;
}

.highcharts-data-table thead tr, .highcharts-data-table tr:nth-child(even) {
  background: #f8f8f8;
}

.highcharts-data-table tr:hover {
  background: #f1f7ff;
}

@media only screen and (max-width: 1000px) {
  #token-distribution .main-distribution-body {
    flex-direction: column;
  }
  #token-distribution .main-distribution-body .chart-explaination {
    margin-top: 20px;
  }
}
#buy-token {
  margin-top: 100px;
}

.card-holder {
  margin: 16px 0 0 0;
  overflow: hidden;
  z-index: 30;
}
.card-holder .text-header-highlight {
  line-height: 56px;
  background: -webkit-linear-gradient(-90deg, #fe512a 61%, #f9ce5e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 56px;
}
.card-holder .get-cougar-container {
  display: flex;
  flex-wrap: wrap;
  max-width: 1000px;
  margin: 0 auto;
  justify-content: center;
  margin-top: 30px;
}
.card-holder .span-orange {
  color: #ffffff;
  font-size: 22px;
  text-shadow: 0px 3px #bed25a;
}
.card-holder .span-green {
  color: #baff70;
  font-size: 22px;
}
.card-holder .token-text {
  margin: 30px 0 0 0;
  font-size: 20px;
  text-align: center;
  font-weight: normal;
}
.card-holder .button-swap {
  text-decoration: none;
  display: block;
  margin: 8px;
  min-width: 400px;
  padding: 9px 0 10px 0;
  font-size: 17px;
  color: white;
  width: 200px;
  background-color: #f2bc4f;
  box-shadow: 0 5px 1px #ec7c24;
  border-radius: 8px;
  text-align: center;
  transition: all 0.1s ease-in-out;
}
.card-holder .button-swap:hover {
  transform: scale(1.05);
}
.card-holder .token-list {
  margin: 40px auto;
}
.card-holder .token-list .token-list-container {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-column-gap: 5px;
  grid-row-gap: 10px;
  justify-content: center;
}
.card-holder .token-list .chain-card {
  border: 3px solid #e2c16ae0;
  border-radius: 10px;
  padding: 2px;
  width: 250px;
  margin: 0 auto;
}
.card-holder .token-list .chain-card .chain-wrapper {
  border-radius: 5px;
  padding: 10px;
  box-sizing: border-box;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: #443b2866;
}
.card-holder .token-list .chain-card .chain-wrapper img {
  width: 32px;
  height: 32px;
}
.card-holder .token-list .chain-card .chain-wrapper a.get-token-link {
  text-decoration: none;
  position: relative;
  display: block;
  padding: 5px 10px;
  font-size: 17px;
  color: #fff;
  width: fit-content;
  background-color: #f2bc4f;
  box-shadow: 0 2px 1px #ec7c24;
  border-radius: 8px;
  text-align: center;
  transition: all 0.1s ease-in-out;
  margin: 10px auto;
}
.card-holder .token-list .chain-card .chain-wrapper a.view-token-link {
  text-decoration: none;
  display: flex;
  padding: 5px 10px;
  font-size: 12px;
  color: #fff;
  border-radius: 8px;
  text-align: center;
  transition: all 0.1s ease-in-out;
}
.card-holder .token-list .chain-card .chain-wrapper a.view-token-link > svg {
  fill: #b6e8ff;
  flex-shrink: 0;
  margin-left: 4px;
}
.card-holder .token-list .chain-card.bsc-card:hover a.get-token-link {
  background-color: #b64b44;
  top: 2px;
  box-shadow: 0 0px 1px #ec7c24;
}
.card-holder .token-list .chain-card.matic-card {
  border: 3px solid #ab87b1;
}
.card-holder .token-list .chain-card.matic-card a.get-token-link {
  background-color: #7d5abb;
}
.card-holder .token-list .chain-card.matic-card:hover a.get-token-link {
  background-color: #5f26c2;
  top: 2px;
  box-shadow: 0 0px 1px #ec7c24;
}
.card-holder .token-list .chain-card.fantom-card {
  border: 3px solid #83afe9;
}
.card-holder .token-list .chain-card.fantom-card a.get-token-link {
  background-color: #34b6e2;
}
.card-holder .token-list .chain-card.fantom-card:hover a.get-token-link {
  background-color: #2d80af;
  top: 2px;
  box-shadow: 0 0px 1px #ec7c24;
}
.card-holder .token-list .chain-card.harmony-card {
  border: 3px solid #6be6db;
}
.card-holder .token-list .chain-card.harmony-card a.get-token-link {
  background-color: #3db0a6;
}
.card-holder .token-list .chain-card.harmony-card:hover a.get-token-link {
  background-color: #28726c;
  top: 2px;
  box-shadow: 0 0px 1px #ec7c24;
}
.card-holder .token-list .chain-card.avax-card {
  border: 3px solid #e27373;
}
.card-holder .token-list .chain-card.avax-card a.get-token-link {
  background-color: #e84142;
}
.card-holder .token-list .chain-card.avax-card:hover a.get-token-link {
  background-color: #a31f1f;
  top: 2px;
  box-shadow: 0 0px 1px #ec7c24;
}
.card-holder .token-list .chain-card.cronos-card {
  border: 3px solid #3fff00;
}
.card-holder .token-list .chain-card.cronos-card a.get-token-link {
  background-color: #1c6d00;
}
.card-holder .token-list .chain-card.cronos-card:hover a.get-token-link {
  background-color: #052604;
  top: 2px;
  box-shadow: 0 0px 1px #ec7c24;
}
.card-holder .token-list .chain-card.moonbeam-card {
  border: 3px solid #ca5b98;
}
.card-holder .token-list .chain-card.moonbeam-card a.get-token-link {
  background-color: #90215e;
}
.card-holder .token-list .chain-card.moonbeam-card:hover a.get-token-link {
  background-color: #661642;
  top: 2px;
  box-shadow: 0 0px 1px #ec7c24;
}
.card-holder .token-list .chain-card.arbitrum-card {
  border: 3px solid #1565c0;
}
.card-holder .token-list .chain-card.arbitrum-card a.get-token-link {
  background-color: #1565c0;
}
.card-holder .token-list .chain-card.arbitrum-card:hover a.get-token-link {
  background-color: #1565c0;
  top: 2px;
  box-shadow: 0 0px 1px #1565c0;
}

.product-list-container {
  margin-bottom: 80px;
}

.products-list {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  padding: 20px;
  position: relative;
}

.product-wrapper {
  width: 120px;
  height: 120px;
  background-color: #59477a;
  border-radius: 999px;
}
.product-wrapper:hover {
  box-shadow: 1px 1px 12px 8px #3f4b91;
}

.product {
  display: block;
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  border: 2px solid rgba(253, 241, 214, 0.5);
  box-sizing: border-box;
  box-shadow: 1px 1px 4px 2px #3f4b91;
  border-radius: 100%;
  padding: 12px;
  cursor: pointer;
  transition: all 0.1s ease 0.1s;
}
.product:hover {
  transform: scale(1.2);
  border: 2px solid #ffb300;
}
.product img {
  width: 100%;
}
.product::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 999px;
}
.product::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: all 0.3s ease 0s;
  background-position: center;
  background-size: 80px 80px;
  background-repeat: no-repeat;
}
.product.cougar::before {
  background-color: #ff9800c7;
}
.product.cougar::after {
  background-image: url("/images/logo.png");
}
.product.cgx::before {
  background-color: #1e213ec2;
}
.product.cgx::after {
  background-image: url("/images/logo_cgx_200.png");
}
.product.cgo::before {
  background-color: #b0a4c569;
}
.product.cgo::after {
  background-image: url("/images/logo_cgo_256.png");
}

.product-chains {
  position: absolute;
  bottom: -60px;
  left: 0;
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  justify-content: center;
}
.product-chains a {
  width: 40px;
  height: 40px;
  border: 2px solid #703f3f;
  box-shadow: 1px 1px 4px 2px #3f4b91;
  border-radius: 40px;
  padding: 5px;
  transition: all 0.1s ease 0.1s;
}
.product-chains a + a {
  margin-left: 5px;
}
.product-chains a:hover {
  transform: scale(1.1);
}
.product-chains img {
  width: 100%;
}

@media only screen and (max-width: 1500px) {
  .card-holder .token-list .token-list-container {
    grid-template-columns: 1fr 1fr 1fr;
  }
  .card-holder .token-list .chain-card.moonbeam-card {
    grid-column: auto;
  }
}
@media only screen and (max-width: 1000px) {
  .get-cougar-container {
    flex-direction: column;
  }

  .button-swap {
    margin: 8px auto;
    min-width: 300px;
    padding: 9px 0px 10px 0px;
  }

  .span-orange {
    font-size: 20px;
  }

  .span-green {
    font-size: 20px;
  }

  .token-text {
    font-size: 17.5px;
  }

  .card-holder .token-list .token-list-container {
    grid-template-columns: 1fr 1fr;
  }
  .card-holder .token-list .chain-card.moonbeam-card {
    grid-column: auto;
  }
}
@media only screen and (max-width: 768px) {
  .card-holder .token-list .token-list-container {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .card-holder .token-list .chain-card {
    width: 90%;
  }
  .card-holder .token-list .chain-card .chain-wrapper {
    flex-direction: row;
  }
  .card-holder .token-list .chain-card .chain-wrapper a.get-token-link {
    width: 200px;
    margin: 10px auto 10px 10px;
  }

  .product-wrapper {
    width: 80px;
    height: 80px;
  }

  .product-list-container {
    margin-bottom: 120px;
  }

  .product-chains {
    bottom: -120px;
    gap: 10px;
  }
}
#our-team {
  margin-top: 100px;
}
#our-team a, #our-team a:hover, #our-team a:active {
  color: #fff;
}
#our-team .join-text {
  margin-bottom: 60px;
  margin-top: 120px;
}
#our-team .our-team-body {
  margin: 0 auto;
  display: flex;
  width: 90%;
  justify-content: center;
}
#our-team .our-team-body .member {
  width: 200px;
  padding: 20px;
  text-align: center;
}
#our-team .our-team-body .member + .member {
  margin-left: 20px;
}
#our-team .our-team-body .member .member-photo {
  width: 100%;
}
#our-team .our-team-body .member .member-photo img {
  border: 3px solid #fff;
  width: 100%;
  border-radius: 50%;
}
#our-team .our-team-body .member h5 {
  font-size: 1.2em;
  height: 50px;
  margin-bottom: 0;
}
#our-team .our-team-body .member .member-position {
  font-size: 1em;
  font-weight: 700;
  color: #fe512a;
  display: block;
  height: 40px;
}
#our-team .our-team-body .member .member-social {
  list-style: none;
  padding: 0;
}
#our-team .our-team-body .member .member-social a {
  background-color: #0e5790;
  border: 1px solid white;
  width: 25px;
  height: 25px;
  padding: 5px;
  display: inline-block;
}

@media only screen and (max-width: 1000px) {
  #our-team .our-team-body {
    flex-direction: column;
  }
  #our-team .our-team-body .member {
    display: flex;
    flex-direction: column;
    width: 80%;
    margin-bottom: 20px;
    align-self: center;
  }
  #our-team .our-team-body .member .member-photo {
    flex-basis: 60%;
  }
  #our-team .our-team-body .member .member-photo img {
    width: 150px;
  }
  #our-team .our-team-body .member .member-info {
    flex-basis: 40%;
  }
  #our-team .our-team-body .member .member-info .member-name {
    margin-top: 10px;
    height: auto;
  }
  #our-team .our-team-body .member .member-info .member-position {
    height: auto;
  }
  #our-team .our-team-body .member + .member {
    margin-left: 0;
  }
}
.statistic-container {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-column-gap: 5px;
  grid-row-gap: 30px;
  justify-content: center;
}

.stat-card-wrapper {
  padding: 2px 2px 6px;
  background-color: #30356878;
  border-radius: 10px;
  width: 80%;
  min-width: 150px;
  height: 150px;
  margin: 0 auto;
}
.stat-card-wrapper:hover {
  background-color: #42499178;
}

.stat-card {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  background-color: #1a1c3469;
  position: relative;
}
.stat-card .header {
  font-weight: 600;
  font-size: 1.5em;
  position: absolute;
  color: #ff9800;
  top: 20px;
  left: 20px;
}
.stat-card .number {
  font-weight: bold;
  font-size: 2.8em;
}
.stat-card .icon-description {
  position: absolute;
  color: #ff9800;
  bottom: 20px;
  right: 20px;
}
.stat-card .icon-description > .fas {
  font-size: 1.8em;
}

@media only screen and (max-width: 720px) {
  .statistic-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-column-gap: 5px;
    grid-row-gap: 15px;
    justify-content: center;
  }

  .stat-card-wrapper {
    min-width: 100px;
  }

  .stat-card .header {
    font-size: 1.2em;
  }
  .stat-card .number {
    font-size: 1.8em;
  }
}
