@import url('https://fonts.googleapis.com/css2?family=Sigmar&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');



/*==Font-setup==*/

*,
::after,
::before {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: "Sigmar", sans-serif;
    font-size: 16px;
    color: #000;
    background: #8CF3FF;
}

a,
a:hover {
  text-decoration: none;
}

ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
label {
  margin: 0;
}

/*==Basic-setup==*/
.scrolltotop {
  width: 40px;
  height: 40px;
  line-height: 40px;
  border-radius: 20px 20px 0 0;
  background: #F66913;
  text-align: center;
  font-size: 22px;
  color: #ffffff;
  position: fixed;
  right: 25px;
  bottom: 15px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
  transition: 0.2s all ease;
  z-index: 1000;
}

.scrolltotop:hover {
  background: #AAD961;
}

.scrolltotop i {
  color: #ffff;
  font-size: 20px;
}

.container {
  max-width: 1330px;
  margin: 0 auto;
  padding: 0 15px;
}

/*==container-setup==*/
.header-area {
 padding-top: 10px;
 width: 100%;
 z-index: 1000;
}

.header-main {
  display: grid;
  grid-template-columns: 20% auto;
  align-items: center;
  background: #37EAFF;
  border: 1px solid #000;
  padding: 9px 15px;
  border-radius: 15px 15px 0 0;
}

.sticky {
  position: fixed;
  top: 0;
  left: 0;
  animation: goDown 0.6s ease-in-out forwards;
  background: rgba(55, 234, 255,.8);
  padding: 10px 0;
}

.scrolled-active {
    border-radius: 15px;
}

@keyframes goDown {
  0%{
    top: -60px;
  }
  100% {
    transform: translateY(0);
  }
}

.header-middlle {
  display: grid;
  grid-template-columns: 70% auto;
  column-gap: 29px;
  align-items: center;
}

.header-social ul {
  display: flex;
  align-items: center;
  column-gap: 11px;
  justify-content: flex-end;
}

.header-social ul li:nth-of-type(1) img,
.header-social ul li:nth-of-type(2) img {
  width: 50px;
  height: 50px;
  display: block;
}

.header-social ul li:nth-of-type(3) a {
  font-weight: 400;
  font-size: 18px;
  color: #37EAFF;
  -webkit-text-stroke: 1px #000;
  background: url('images/btn-bg.png') no-repeat;
  background-position: 100% 100;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 165px;
  height: 62px;
}

.header-social ul li a:hover {
  opacity: 0.9;
}

.header-right {
  display: none;
}

.logo-item img {
  max-width: 120px;
}

.main-nav ul {
  display: flex;
  align-items: center;
  column-gap: 18px;
  justify-content: flex-end;
}

.main-nav ul li {
  position: relative;
}

.main-nav ul li a {
  font-weight: 400;
  font-size: 22px;
  color: #8CF3FF;
 -webkit-text-stroke: 1px #000;
  transition: 0.2s all ease;
}

.main-nav ul li a:hover {
  color: #FE1115;
}

.menu-btn {
  width: 30px;
  cursor: pointer;
  margin-left: auto;
  display: none;
}

.menu-btn span {
  height: 3px;
  background: #000000;
  margin-top: 4px;
  display: block;
}

.mobil-brand img {
  max-width: 100px;
}

.sidebar-menu {
  position: fixed;
  top: 79px;
  left: -235px;
  max-width: 235px;
  width: 100%;
  background: #C3EFFF;
  overflow-y: auto;
  transition: left 0.4s ease;
  z-index: 10000;
  display: none;
  border: 1px solid #000000;
  border-radius: 5px;
  padding-bottom: 10px;
}

.sidebar-menu.active {
  left: 10px;
}

.menu-header {
  padding: 5px;
}

.close-btn {
  text-align: right;
}

.close-icon {
  position: relative;
  cursor: pointer;
}

.menu-item a {
  font-weight: 400;
  font-size: 18px;
  color: #8CF3FF;
  display: block;
  cursor: pointer;
  padding: 5px 10px;
  -webkit-text-stroke: 1px #000;
  border-top: 1px solid #000;
}

.menu-item:last-child a {
  border-bottom: 1px solid #000000;
}

.menu-item a:hover {
  color: #FE1115;
}

.mobil-social {
  margin-top: 20px;
}

.mobil-social-item1 ul {
 display: flex;
 align-items: center;
 justify-content: center;
 column-gap: 10px;
}

.mobil-social-item1 img {
  width: 45px;
  height: 45px;
  display: block;
}

.mobil-social-btn {
  text-align: center;
}

.mobil-social-btn a {
  font-weight: 400;
  font-size: 16px;
  color: #37EAFF;
  -webkit-text-stroke: 0.8px #000;
  background: url('images/btn-bg.png') no-repeat;
  background-position: 100% 100;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 165px;
  height: 62px;
  margin: auto;
  margin-top: 10px;
}

.mobil-social a:hover {
  opacity: 0.9;
}

/*==hero-section==*/
.hero-main {
  position: relative;
}

.hero-main-img img {
  width: 100%;
  border-radius: 0 0 15px 15px;
}

.hero-cnt-wrap {
  width: 352px;
  height: 302px;
  background: url('images/banner.png') no-repeat;
  background-position: 100% 100%;
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 55px;
  left: 197px;
}

.hero-cnt-inner {
  transform: rotate(-12deg);
}

.hero-title {
  position: relative;
  top: 31px;
}

.hero-title h3 {
  font-weight: 400;
  font-size: 34px;
  color: #37EAFF;
  -webkit-text-stroke: 1px #000;
  text-shadow: 4px 3px 0 #000000;
  line-height: 46px;
}

.all-btn a {
  font-weight: 400;
  font-size: 18px;
  color: #37EAFF;
  -webkit-text-stroke: 0.8px #000;
  background: url('images/btn-bg.png') no-repeat;
  background-position: 100% 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 165px;
  height: 62px;
  margin: auto;
  margin-top: 10px;
  transform: rotate(-3deg);
  position: relative;
  bottom: -25px;
  right: -7px;
}

.all-btn a:hover {
  opacity: 0.9;
}

/*==who-section==*/
.who-area {
  padding-top: 20px;
}

.who-main {
  padding-top: 27px;
  background: linear-gradient(#8CF3FF, #CCEEFF);
  border: 1px solid #000000;
  border-radius: 15px;
  padding-bottom: 148px;
  overflow: hidden;
}

.who-title {
  text-align: center;
}

.who-title h2 {
  font-weight: 400;
  font-size: 45px;
  color: #000000;
  text-shadow: 3px 3px 0 #000000;
  -webkit-text-stroke: 1px #000000;
  color: #37EAFF;
}

.who-title p {
  font-weight: 400;
  font-size: 18px;
  color: #00FF48;
   -webkit-text-stroke: 1px #000000;
}

.who-img img {
  width: 100%;
  margin-top: 8px;
}

.easy-title {
  max-width: 1187px;
  margin: auto;
}

.easy-title h3 {
  font-weight: 400;
  font-size: 45px;
  color: #37EAFF;
  text-shadow: 3px 3px 0 #000000;
  -webkit-text-stroke: 1px #000000;
}

.easy-item-wrap {
  display: grid;
  grid-template-columns: repeat(5,1fr);
  margin-top: 10px;
  position: relative;
  z-index: 2;
}

.easy-item img {
  width: 100%;
}

.coin-title {
  text-align: center;
  max-width: 950px;
  margin: auto;
  background: url('images/coin-bg.png') no-repeat;
  background-position: 100% 100%;
 padding: 103px 0 64px 0;
 position: relative;
 margin-top: -84px;
 z-index: 1;
}

.coin-title h2 {
  font-weight: 400;
  font-size: 45px;
  color: #31E5FC;
   text-shadow: 3px 3px 0 #000000;
  -webkit-text-stroke: 1px #000000;
  line-height: 51px;
}

.coin-item-wrap {
  max-width: 954px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3,1fr);
  align-items: center;
  margin-top: 10px;
}

.coin-item1img {
  max-width: 318px;
}

.coin-item2 img {
  max-width: 271px;
}

.making-title {
  text-align: center;
  position: relative;
  top: 10px;
}

.money-bag {
  position: absolute;
  left: 61%;
  top: 85%;
}

.money-bag img {
  max-width: 200px;
}

.making-title h2 {
  font-weight: 400;
  font-size: 45px;
  color: #31E5FC;
   text-shadow: 3px 3px 0 #000000;
  -webkit-text-stroke: 1px #000000;
  line-height: 51px;
}

.making-title p {
  font-weight: 400;
  font-size: 18px;
  color: #00FF48;
  -webkit-text-stroke: 1px #000000;
  margin-top: 15px;
}

.all-btn2 a {
  font-weight: 400;
  font-size: 18px;
  color: #37EAFF;
  -webkit-text-stroke: 0.8px #000;
  background: url('images/btn-bg.png') no-repeat;
  background-position: 100% 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 165px;
  height: 62px;
  margin: auto;
  margin-top: 10px;
}

.all-btn2 a:hover {
  opacity: 0.9;
}

.making-main {
  position: relative;
  padding-top: 138px;
}

.money-man {
  position: absolute;
  right: 0;
  top: 18px;
}

.money-man img {
  max-width: 100%;
  vertical-align: middle;
}

.gun-man {
  position: absolute;
  left: 0;
  top: 73%;
}

.gun-man img {
  max-width: 538px;
}

.nomics-main {
  background: linear-gradient(#CCEFFF,#8DF2FF);
  border: 1px solid #000000;
  border-radius: 15px;
  margin-top: 28px;
  padding: 24px 50px 8px 50px;
}

.nomics-main h3 {
  font-weight: 400;
  font-size: 45px;
  color: #31E5FC;
   text-shadow: 3px 3px 0 #000000;
  -webkit-text-stroke: 1px #000000;
  line-height: 51px;
  text-align: center;
}

.nomics-img {
  position: relative;
}

.nomics-text1 {
  position: absolute;
  width: 160px;
  top: 17%;
  left: 19%;
}

.nomics-text2 {
  position: absolute;
  right: 8%;
  top: 26%;
}

.nomics-text3 {
  max-width: 460px;
  width: 100%;
  position: absolute;
  left: 35%;
  top: 40%;
  text-align: center;
}

.nomics-text1 h4,
.nomics-text2 h4 {
  font-weight: 400;
  font-size: 18px;
  -webkit-text-stroke: 1px #000000;
  color: #00FE68;
}

.nomics-text3 h4 {
  font-weight: 400;
  font-size: 18px;
  color: #FEFC00;
   -webkit-text-stroke: 1px #000000;
}

.nomics-img img {
  width: 100%;
  margin-top: 19px;
}

.airdorp-box {
  max-width: 400px;
  width: 100%;
  height: 300px;
  background: url('images/airdrop.png') no-repeat;
  background-position: 100% 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  right: 28%;
  top: 63%;
}

.airdorp-box h4 {
  font-weight: 400;
  font-size: 18px;
  -webkit-text-stroke: 1px #000000;
  color: #00FE68;
   line-height: 27px;
}

.parashot-box {
  position: absolute;
  right: 5%;
  top: 56%;
}

.parashot-box img {
  max-width: 320px;
  margin-top: 0;
}










.bye-main {
  border: 1px solid #000000;
  border-radius: 15px;
  background: linear-gradient(#92F2FF,#CBEFFF);
  padding: 16px;
  margin-top: 32px;
  position: relative;
}

.money-box {
  position: absolute;
  z-index: 1;
}

.money-box1 {
  top: 0;
  left: 89px;
}

.money-box2 {
  top: 0;
  right: 40px;
}

.money-box3 {
  left: 37%;
  bottom: -6px;
}

.money-box img {
  max-width: 200px;
}

.bye-title h2 {
  font-weight: 400;
  font-size: 45px;
  text-align: center;
  color: #37EAFF;
  text-shadow: 3px 3px 0 #000000;
  -webkit-text-stroke: 1px #000000;
}

.bye-title-btm h4 {
  font-weight: 400;
  font-size: 35px;
  text-align: right;
  color: #37EAFF;
  text-shadow: 3px 3px 0 #000000;
  -webkit-text-stroke: 1px #000000;
  margin-top: 32px;
}

.bye-item-wrap {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  column-gap: 23px;
  margin-top: 35px;
  position: relative;
  z-index: 2;
}

.bye-item {
  border: 1px solid #000000;
  border-radius: 15px;
  box-shadow: 4px 4px 0 #000000;
  padding: 11px 8px 34px 8px;
  background: #84F2FF;
}

.bye-item ul {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.bye-item ul li {
  font-weight: 400;
  font-size: 25px;
  color: #37EAFF;
   text-shadow: 3px 3px 0 #000000;
  -webkit-text-stroke: 1px #000000;
}

.bye-item ul li:nth-of-type(2) {
  color: #FEFC00;
}

.bye-item p {
  font-weight: 400;
  font-size: 15px;
  color: #00FE67;
  -webkit-text-stroke: 1px #000000;
  margin-top: 28px;
}

.faq-area {
  padding: 51px 0 53px 0;
}

.faq-main {
  display: grid;
  grid-template-columns: 494px auto;
  column-gap: 10px;
}

.faq-left img {
  width: 100%;
}

.faq-title h2 {
  font-weight: 400;
  font-size: 40px;
  color: #37EAFF;
  text-shadow: 3px 3px 0 #000000;
  -webkit-text-stroke: 1px #000000;
}

.ac {
  margin-top: 14px;
  border-radius: 8px;
  border: 1px solid #000000;
  background: #62EFFF;
  box-shadow: 3px 3px 0 #000000;
}

.ac-trigger {
  font-weight: 400;
  font-size: 18px;
  color: #37EAFF;
  padding: 17px 11px 17px 11px;
  cursor: pointer;
  position: relative;
  -webkit-text-stroke: 1px #000000;
}

.ac-trigger::after {
  content: "";
  display: block;
  width: 50px;
  height: 39px;
  background: url('images/angle.png') no-repeat;
  position: absolute;
  right: 13px;
  top: 50%;
  transform: translateY(-50%);
}

.ac.is-active .ac-trigger::after {
  content: "";
  background: url('images/angle3.png') no-repeat;

}

.ac-panel {
  overflow: hidden;
  transition: height 0.3s ease;
}

.ac-panel .ac-panel-cnt {
  font-weight: 400;
  font-size: 16px;
  padding: 22px 11px 32px 11px;
  color: #00FE67;
  -webkit-text-stroke: 1px #000000;
}

.footer-area {
  padding-bottom: 21px;
}

.footer-main {
  background: linear-gradient(#C3EFFF,#91F2FF);
  border: 1px solid #000000;
  border-radius: 15px;
  padding-top: 28px;
  position: relative;
}

.footer-cnt {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  padding-top: 28px;
}

.footer-main-img img {
  width: 100%;
  border-radius: 0 0 15px 15px;
  vertical-align: bottom;
}

.footer-cnt {
  text-align: center;
}

.footer-cnt h2 {
  font-weight: 400;
  font-size: 45px;
  color: #37EAFF;
  text-shadow: 3px 3px 0 #000000;
  -webkit-text-stroke: 1px #000000;
}

.footer-cnt p {
  font-weight: 400;
  font-size: 18px;
  color: #00FE68;
   text-shadow: 2px 2px 0 #000000;
  -webkit-text-stroke: 1px #000000;
}

.footer-cnt ul {
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 11px;
  margin-top: 11px;
}

.footer-cnt ul li img {
  width: 50px;
  display: block;
}

.footer-cnt ul li a:hover {
  opacity: 0.9;
}

.m-btn {
  display: none;
}

.hero-cnt-mobil-wrap {
  display: none;
}  

.shap-item-wrap1 {
  max-width: 329px;
  margin: auto;
}

.shap-img1 {
  position: relative;
}

.shap-img1 img {
  width: 100%;
}

.shap-text1 {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.shap-text1 h4 {
  font-weight: 400;
  font-size: 18px;
  color: #00FE68;
  -webkit-text-stroke: 1px #000000;
}

.shap-item-wrap2 {
  max-width: 343px;
}

.shap-item-wrap3 {
  max-width: 455px;
  margin: auto;
}

.shap-img3 {
  position: relative;
}

.shap-img3 img {
  width: 100%;
}

.shap-text3 {
  position: absolute;
  left: -3%;
  top: 62%;
  width: 100%;
}

.shap-text3 h4 {
  font-weight: 400;
  font-size: 12px;
  color: #FEFC00;
  line-height: 18px;
   -webkit-text-stroke: 1px #000000;
   text-align: center;
}

.rocat-img img {
  max-width: 268px;
  margin: auto;
  display: block;
  position: relative;
  top: -19px;
}

.shap-item-wrap4 {
  max-width: 237px;
  position: relative;
  margin-left: 37px;
}

.shap-text4 {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 100%;
  transform: translate(-50%, -50%);
} 

.shap-text4 h4 {
  font-weight: 400;
  font-size: 15px;
  color: #00FE68;
  -webkit-text-stroke: 1px #000000;
  text-align: center;
}

.shap-img4 img {
  width: 100%;
}

.nomics-mobil-verson {
  position: relative;
  max-width: 455px;
  margin: auto;
  display: none;
}

.parashot-img {
  position: absolute;
  right: 12px;
  bottom: 14px;
  width: 196px;
}

.parashot-img img {
  width: 100%;
}
