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

@font-face {
  font-family: 'Ethnocentric Rg';
  src: url('../fonts/EthnocentricRg-Italic.woff2') format('woff2'),
    url('../fonts/EthnocentricRg-Italic.woff') format('woff');
  font-weight: normal;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Inter';
  src: url('../fonts/Inter-Black.woff2') format('woff2'),
    url('../fonts/Inter-Black.woff') format('woff');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Inter';
  src: url('../fonts/Inter-Bold.woff2') format('woff2'),
    url('../fonts/Inter-Bold.woff') format('woff');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Inter';
  src: url('../fonts/Inter-ExtraBold.woff2') format('woff2'),
    url('../fonts/Inter-ExtraBold.woff') format('woff');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Inter';
  src: url('../fonts/Inter-Light.woff2') format('woff2'),
    url('../fonts/Inter-Light.woff') format('woff');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

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

@font-face {
  font-family: 'Inter';
  src: url('../fonts/Inter-ExtraLight.woff2') format('woff2'),
    url('../fonts/Inter-ExtraLight.woff') format('woff');
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Inter';
  src: url('../fonts/Inter-Thin.woff2') format('woff2'),
    url('../fonts/Inter-Thin.woff') format('woff');
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}

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

@font-face {
  font-family: 'Inter';
  src: url('../fonts/Inter-SemiBold.woff2') format('woff2'),
    url('../fonts/Inter-SemiBold.woff') format('woff');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

:root {
  --leftCol: 620px;
}

/*----------  Genral CSS  ----------*/
* {
  padding: 0;
  margin: 0;
  border: none;
  vertical-align: baseline;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  scroll-behavior: auto !important;
}

body {
  display: block;
  width: 100%;
  padding: 0;
  margin: 0;
  font-family: "Inter";
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
  color: #ffffff;
  background-color: #39B54A;
  position: relative;
  /* background-image: url(../img/bg-graphic.svg);
  background-position: center top 20px;
  background-repeat: no-repeat;
  background-size: 100%; */
}

.body-fixed {
  overflow: hidden;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

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

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

em,
i {
  font-style: italic;
}

u {
  text-decoration: underline;
}

p {
  margin-bottom: 20px;
}

p:last-child {
  margin-bottom: 0;
}

b,
strong {
  font-weight: 700 !important;
}

a {
  text-decoration: none;
  color: #ffffff;
  transition: color 0.4s ease-in-out;
  -webkit-transition: color 0.4s ease-in-out;
  -moz-transition: color 0.4s ease-in-out;
  -ms-transition: color 0.4s ease-in-out;
  -o-transition: color 0.4s ease-in-out;
}

a:focus {
  text-decoration: none;
  outline: none !important;
}

*:focus {
  outline: none;
}

img {
  display: block;
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
}

/*----------  Common CSS  ----------*/
.cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 2.5rem;
  height: 2.5rem;
  z-index: 99;
  pointer-events: none;

  div {
    position: absolute;
    display: grid;
    place-items: center;

    div {
      border: 1px solid #fff;
      border-radius: 50%;
      animation: pulse 2.5s linear infinite;
      /* box-shadow: 0 0 50px 5px #fff; */
    }
  }

  div:nth-child(1),
  div:nth-child(2) {
    width: 100%;
    height: 100%;
  }

  div:nth-child(1) {
    transition: transform 0.2s ease-out;
  }

  div:nth-child(2) {
    div {
      background: #fff;
      border-radius: 50%;
      width: 4px;
      height: 4px;
    }

    transition: transform 0.1s ease-out;
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.25);
    opacity: 0.5;
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.wrapper {
  display: block;
  overflow: hidden;
  overflow-y: auto;
  min-height: 100vh;
  position: relative;
  /* max-width: 1920px; */
  /* margin: auto; */
}

.container {
  max-width: 1782px;
  padding: 0 15px;
}

.common-sec {
  position: relative;
  padding-block: clamp(40px, 8.80px + 6.24vw, 120px);
}

.sec-head {
  width: 100%;
  display: block;
  margin-bottom: 20px;
}

:is(h1, h2, h3, h4, h5, h6),
.sec-title,
.sec-sub-title {
  font-family: "Ethnocentric Rg";
}

.sec-title {
  margin: 0;
  font-size: 30.16px;
  line-height: 1.2;
  font-weight: 400;
  display: block;
}

.sec-sub-title {
  display: block;
  font-size: 26px;
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
}

.sec-sub-title+.sec-title {
  margin-top: 10px;
}

.cms-con {
  font-size: 16.8px;
  font-weight: 700;
  line-height: 1.2;
}

/*----------  Button  ----------*/
.btn {
  filter: drop-shadow(1px 2px #0C3C1B) drop-shadow(2px 4px #0C3C1B) drop-shadow(4px 6px #2E8E46);
  will-change: filter;
  border: 0;
  padding: 0;
  transition: .4s all ease-in-out;
}

.btn-2 {
  filter:
    drop-shadow(4px 6px 0px #2E8E46) drop-shadow(4px 4px 0px #39B54A);
  will-change: filter;
}

.btn-wrap {
  display: inline-block;
  border: none;
  background-color: #fff;
  color: #39B54A;
  font-size: 16px;
  line-height: 1.2;
  font-weight: 900;
  text-transform: uppercase;
  padding: 17.4px 22px;
  position: relative;
  transition: .4s all ease-in-out;
  clip-path: polygon(100% 9px, 100% 77.8%, calc(100% - 4.5px) 77.8%, calc(100% - 4.5px) 88.9%, calc(100% - 9px) 88.9%, calc(100% - 9px) 100%, 9px 100%, 9px 88.9%, 4.5px 88.9%, 4.5px 77.8%, 0 77.8%, 0 9px, 4.5px 9px, 4.5px 4.5px, 9px 4.5px, 9px 0, calc(100% - 9px) 0, calc(100% - 9px) 4.5px, calc(100% - 4.5px) 4.5px, calc(100% - 4.5px) 9px);
}



/*----------  Back To Top  ----------*/
.hidden {
  width: 0;
  height: 0;
  display: none;
}

.back-to-top-wrap {
  position: fixed;
  bottom: -50px;
  right: 20px;
  width: 50px;
  height: 50px;
  opacity: 0;
  filter: drop-shadow(2px 2px 0 #39B54A);
  will-change: filter;
}

.back-to-top {
  width: 100%;
  height: 100%;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -ms-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  background: #fff;
  text-align: center;
  color: #39B54A;
  clip-path: polygon(100% 9px, 100% 77.8%, calc(100% - 4.5px) 77.8%, calc(100% - 4.5px) 88.9%, calc(100% - 9px) 88.9%, calc(100% - 9px) 100%, 9px 100%, 9px 88.9%, 4.5px 88.9%, 4.5px 77.8%, 0 77.8%, 0 9px, 4.5px 9px, 4.5px 4.5px, 9px 4.5px, 9px 0, calc(100% - 9px) 0, calc(100% - 9px) 4.5px, calc(100% - 4.5px) 4.5px, calc(100% - 4.5px) 9px);
}

.back-to-top-wrap.active {
  bottom: 85px;
  opacity: 1;
  z-index: 9;
}

.back-to-top>div {
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -ms-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.back-to-top>.arrow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 1;
  height: inherit;
  display: flex;
  align-items: center;
  justify-content: center;
}

.back-to-top>.arrow svg {
  fill: #39B54A;
  height: 20px;
  width: 100%;
}

.back-to-top>.text {
  font-size: 8px;
  line-height: 10px;
  text-transform: uppercase;
  font-weight: 800;
  font-family: "Montserrat", sans-serif;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateY(50%) translateX(-50%);
  opacity: 0;
  margin-top: 1px;
}

.icon {
  display: block;
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
}

/*----------  Header  ----------*/
.header {
  padding-top: 15px;
  background-color: #39B54A;
  position: relative;
  width: 100%;
  z-index: 10;
  transition: all .4s ease-in-out;
}

.header-logo {
  display: block;
  width: 96px;
  height: 96px;
  margin: auto;
}

.social-nav ul {
  display: flex;
  gap: 8px;
}

.social-icon {
  transition: .4s all ease-in-out;
}

.social-icon .icon-wrap {
  display: block;
  width: 42px;
  height: 42px;
  background-color: #fff;
  clip-path: polygon(100% 22.2%, 100% 77.8%, 88.9% 77.8%, 88.9% 88.9%, 77.8% 88.9%, 77.8% 100%, 22.2% 100%, 22.2% 88.9%, 11.1% 88.9%, 11.1% 77.8%, 0 77.8%, 0 22.2%, 11.1% 22.2%, 11.1% 11.1%, 22.2% 11.1%, 22.2% 0, 77.8% 0, 77.8% 11.1%, 88.9% 11.1%, 88.9% 22.2%);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: .4s all ease-in-out;
}

.social-icon .icon {
  width: 18px;
  height: 18px;
  background-color: #0C3C1B;
  transition: .4s all ease-in-out;
}

.icon-x {
  mask-image: url(../img/svg/x.svg);
}

.icon-telegram {
  mask-image: url(../img/svg/telegram.svg);
}

.icon-c {
  mask-image: url(../img/svg/c.svg);
}

.header .btn-wrap {
  font-size: 14px;
  padding: 13px 22px;
}

.nav-wrap {
  border-top: 1px solid #FFFFFF;
  border-bottom: 1px solid #FFFFFF;
  margin-top: 16px;

  .header-logo-hide,
  .menu-button-hide {
    display: none;
  }
}

.nav-wrap .header-nav ul {
  display: flex;
  justify-content: center;
}

.nav-wrap .header-nav a {
  display: block;
  font-size: 16px;
  font-weight: 900;
  line-height: 1.2;
  text-align: center;
  padding: 20px 15px;
  text-transform: uppercase;
  transition: .4s all ease-in-out;
}

.nav-wrap .header-nav a.active {
  color: #0C3C1B;
}

@keyframes HeaderRise {
  0% {
    transform: translateY(-100px);
  }

  100% {
    transform: translateY(0);
  }
}

.is-header-sticky {

  .header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: #2E8E46;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    animation: HeaderRise 0.5s linear;
    padding-top: 0;

    .header-top {
      display: none;
    }

    .nav-wrap {
      border: 0;
      margin-top: 0;
      padding-block: 10px;

      .header-logo-hide {
        height: 70px;
        width: 70px;
        margin-bottom: -30px;
      }

      .header-logo-hide,
      .menu-button-hide {
        display: block;
      }

      .header-nav {
        a {
          color: #fff;
          padding: 15px;

          &:hover,
          &.active {
            color: #0C3C1B;
          }
        }
      }
    }

    /* .menu-button-hide .btn-wrap,
    .btn .btn-wrap {
      background-color: #39B54A;
      color: #fff;
    } */
  }
}

/*----------  Home  ----------*/
.hero-row {
  display: flex;
  gap: 48px;
}

.hero-content-col {
  flex: 0 0 54%;
  max-width: 54%;
}

.hero-presale-col {
  flex: 1;
  max-width: 556px;
}

.hero-content-box {
  padding-top: 110px;
  position: relative;
  z-index: 3;
}

.hero-sub-title {
  font-family: 'Ethnocentric Rg';
  font-size: 43.43px;
  line-height: 1.2;
  font-weight: 400;
}

.hero-title {
  font-family: 'Ethnocentric Rg';
  font-size: 106.46px;
  font-weight: 400;
  line-height: 0.8;
  letter-spacing: -0.06em;
  text-shadow: 1px 2px 0px #0C3C1B,
    2px 4px 0px #0C3C1B,
    4px 6px 0px #0C3C1B,
    6px 8px 0px #2E8E46,
    8px 10px 0px #2E8E46;
  margin-bottom: 35px;
}

.hero-content-wrap {
  display: flex;
  gap: 55px;
  align-items: center;
  margin-bottom: 35px;
}

.hero-text {
  font-size: 20.16px;
  font-weight: 700;
  line-height: 1.2;
  flex: 1;
}

.hero-main-title {
  font-family: 'Ethnocentric Rg';
  font-size: 36.19px;
  font-weight: 400;
  line-height: 1.65;
}

.hero-wrap {
  position: relative;
  overflow-x: hidden;
}

.hero-slider {

  .hero-slide-item {
    position: relative;
    padding-left: 35px;

    &::before {
      content: '';
      display: block;
      width: 2px;
      height: 2px;
      background-color: #fff;
      border-radius: 50%;
      position: absolute;
      top: 50%;
      left: 17.5px;
      transform: translateY(-50%);
    }
  }
}

.hero-presale-box {
  position: relative;
  padding-bottom: 104px;
}

.presale-shape {
  position: relative;
  height: 76px;
}

.presale-shape img {
  margin: auto;
}

.presale-shape .btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  filter: none;
  width: 100%;
  padding: 0;
  margin: 0;
  border: 0;
  cursor: auto;
}

.presale-shape .btn-wrap {
  background: #0C3C1B;
  color: #fff;
}

.presale-card {
  padding: 42px;
  border-radius: 42px;
  box-shadow: 7px 7px 0px #2E8E46;
  background: #0C3C1B;
  text-align: center;
}

.presale-title {
  font-size: 25.13px;
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 15px;
}

.presale-timer {
  border-radius: 30px;
  padding: 8px 8px 16px;
  background: #000000;
  box-shadow: 1px 2px 0px 0px #39B54A,
    2px 4px 0px 0px #39B54A,
    4px 6px 0px 0px #2E8E46;
  margin-bottom: 36px;
}

.timer-wrap {
  display: flex;
  align-items: center;
  width: 100%;
  gap: 8px;
}

.timer-item {
  flex: 0 0 calc(25% - 6px);
  background: var(--Primary-W-20, #FFFFFF33);
  border-radius: 20px;
  padding: 17.5px 20px;
}

.time-text {
  display: block;
  font-size: 25.2px;
  font-weight: 700;
  line-height: 1;
}

.time-info {
  display: block;
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
  text-transform: uppercase;
  margin-top: 6px;
}

.timer-text {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
  margin-top: 16px;
}

.presale-sub-title {
  font-size: 20.16px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 10px;
}

.presale-text {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
}

.presale-buttons-wrap {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-block: 36px;
}

.presale-buttons-wrap .btn {
  flex: 0 0 45%;
}

.presale-buttons-wrap .btn-wrap {
  width: 100%;
}

.presale-card .dont-have-text {
  display: inline-block;
  color: #39B54A;
  font-size: 16.8px;
  font-weight: 700;
  line-height: 1.4;
  border-bottom: 1px solid #39B54A;
  margin-bottom: 10px;
}

.presale-card .powered-text {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.2;
  color: rgba(255, 255, 255, 0.6);
}

.ecosystem-sec {
  padding-top: 120px;
}

.col-left {
  flex: 0 0 calc(var(--leftCol) + 10px);
  max-width: calc(var(--leftCol) + 10px);
}

.ecosystem-box .row {
  --bs-gutter-x: 48px
}

.accordion-item {
  border: 1px solid #FFFFFF !important;
  border-radius: 12px !important;
  overflow: hidden;
  background-color: transparent;

  :not(.collapsed) {
    background-color: #fff;
  }

  .accordion-button {
    font-family: "Ethnocentric Rg";
    font-size: 17.45px;
    font-weight: 400;
    line-height: 1;
    padding: 19px 24px;
    background-color: transparent;
    box-shadow: none;
    color: #fff;

    &:is(.collapsed)::after {
      filter: brightness(0) invert(1);
      will-change: filter;
    }

    &:not(.collapsed) {
      background-color: #fff;
      color: #000000;
    }
  }

  .accordion-body {
    padding: 0px 24px 10px;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.2;
    color: #000000;

    p {
      margin-bottom: 8px;
    }
  }

  .accordion-collapse {
    background-color: #fff;
    color: #000000;
    margin-top: -1px;
  }
}

.accordion-item+.accordion-item {
  margin-top: 8px;
}

.ecosystem-box .cms-con {
  margin-bottom: 48px;
}

/* GIF Start */
/* .hero-gif-sec,
.ecosystem-gif-sec,
.roadmap-gif-sec,
.tokenomics-gif-sec,
.how-to-buy-gif-sec,
.faq-gif-sec {
  position: absolute;
  left: 0;
  top: 290px;
  max-width: 660px;
  width: 100%;
  z-index: 2;
  background-color: #39B54A;

  img {
    width: 100%;
  }
}

.ecosystem-gif-sec {
  top: 113px;
}

.roadmap-gif-sec {
  top: -212px;
  left: -1px;
}

.tokenomics-gif-sec {
  top: -194px;
  left: -2px;
}

.how-to-buy-gif-sec {
  top: -294px;
  left: 0;
}

.faq-gif-sec {
  top: 100px;
  left: 0;
} */
.gif-sec {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 2;
  max-width: var(--leftCol);
}

.roadmap-gif-sec {
  margin-left: -1px;
  margin-top: -10px;
}

.tokenomics-gif-sec {
  margin-left: -2px;
  margin-bottom: -2px;
  margin-top: -19px;
}

.btn-placeholder {
  height: 113px;
}