@font-face {
  font-family: "primary-bold";
  src: url("./fonts/Primary.woff2");
}
@font-face {
  font-family: "primary";
  src: url("./fonts/PrimaryNormal.woff2");
}
@font-face {
  font-family: "title";
  src: url("./fonts/Title.woff2");
}

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

body {
  background-color: #4b9540;
  font-family: "primary";
  color: white;
  width: 100vw;
  overflow-x: hidden;
}

ul {
  list-style: none;
}

a {
  color: inherit;
  text-decoration: none;
}

/* Presets */

.title {
  font-family: "title";
  text-shadow: rgba(0, 0, 0, 0.498039) -1px -1px 0px,
    rgba(0, 0, 0, 0.498039) -1px 1px 0px, rgba(0, 0, 0, 0.498039) 1px 1px 0px,
    rgba(0, 0, 0, 0.498039) 1px -1px 0px;
  font-size: 64px;
}

.title-2 {
  font-family: "primary-bold";
  text-shadow: rgba(0, 0, 0, 0.498039) -1px -1px 0px,
    rgba(0, 0, 0, 0.498039) -1px 1px 0px, rgba(0, 0, 0, 0.498039) 1px 1px 0px,
    rgba(0, 0, 0, 0.498039) 1px -1px 0px;
  font-size: 54px;
}

.description {
  font-size: 24px;
  line-height: 140%;
  font-weight: 300;
}

.desc-2 {
  font-size: 22px;
  margin-bottom: 10px;
  margin-top: 50px;
  margin-bottom: 20px;
  text-align: center;
  line-height: 40px;
  width: 60%;
  text-shadow: rgba(0, 0, 0, 0.498039) -1px -1px 0px,
    rgba(0, 0, 0, 0.498039) -1px 1px 0px, rgba(0, 0, 0, 0.498039) 1px 1px 0px,
    rgba(0, 0, 0, 0.498039) 1px -1px 0px;
}

.description p {
  margin-bottom: 20px;
}

.card {
  background-color: #264a20;
  box-shadow: 0px 0px 50px 20px rgba(255, 254, 248, 0.18),
    0 1px 4px rgba(0, 0, 0, 0.6);
  padding: 20px;
  border: 1px solid white;
  border-top-right-radius: 30px;
  border-bottom-left-radius: 30px;
  width: max-content;
}

.card ul {
  list-style: disc;
  color: rgb(0, 0, 0);
}

.card ul li {
  color: white;
  margin-bottom: 12px;
  font-size: 18px;
  line-height: 30px;
}
.card ul li::marker {
  color: black !important;
}
.card p {
  font-size: 18px;
  line-height: 30px;
  margin-bottom: 20px;
  text-shadow: rgba(0, 0, 0, 0.498039) -1px -1px 0px,
    rgba(0, 0, 0, 0.498039) -1px 1px 0px, rgba(0, 0, 0, 0.498039) 1px 1px 0px,
    rgba(0, 0, 0, 0.498039) 1px -1px 0px;
}

.divider {
  height: 20px;
  width: 100%;
  background-image: url("./assets/divider.svg");
  background-repeat: repeat;
  transform: rotate(-180deg);
}

/* Styles */

.navbar {
  width: 100%;
  border-bottom: 1px solid black;
}

.navbar .navbar__wrapper {
  max-width: 90%;
  margin: 20px auto;
  width: 1200px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.navbar__logo img {
  height: 68px;
}

.navbar__links {
  display: flex;
  gap: 50px;
  font-size: 12px;
  font-family: "primary-bold";
}

.btn {
  background-color: transparent;
  border: 1px solid white;
  padding: 12px 20px;
  color: inherit;
  font-family: "primary-bold";
  border-radius: 50px;
  font-size: 12px;
  background-color: rgba(255, 255, 255, 0);
  transition: all 0.2s;
  cursor: pointer;
}
.btn:hover {
  background-color: rgba(255, 255, 255, 0.3);
}

/* Hero */

.hero {
  position: relative;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  top: 50px;
  left: 0;
  height: 120%;
  z-index: -1;
  opacity: 0.2;
}

.hero__wrapper {
  max-width: 90%;
  margin: 0px auto;
  width: 1200px;
  display: flex;
  align-items: center;
  padding: 100px 0;
}

.hero__left__description {
  margin-bottom: 30px;
  width: 80%;
}

.hero__right img {
  height: 460px;
}

.hero__card {
  padding: 20px 80px;
}

.hero__card h2 {
  font-size: 34px;
  margin-bottom: 34px;
}

.center {
  display: flex;
  justify-content: center;
  width: 100%;
}

/* ABOUT */

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

.about__wrapper {
  max-width: 90%;
  margin: 20px auto;
  width: 1200px;
  display: flex;
  padding: 50px 0;
}

.about__left {
  flex: 6;
}

.about__right {
  flex: 4;
}

.about__right .title-2 {
  text-align: center;
  margin-bottom: 30px;
}

.about__left img {
  height: 600px;
}

@media screen and (max-width: 1100px) {
  .navbar__wrapper {
    margin: 5px auto;
  }

  .map__top img {
    height: 50px;
  }

  .navbar__links {
    display: none;
  }

  .navbar__logo img {
    height: 40px;
  }

  .btn {
    padding: 8px 15px;
    font-size: 8px;
  }
}

.how__wrapper {
  max-width: 90%;
  margin: 0px auto;
  width: 1200px;
  padding: 50px 0;
}

.how .heading {
  text-align: center;
  margin-bottom: 40px;
}

.how__cards {
  width: 100%;
}

.how__card {
  display: flex;
  padding: 20px 80px;
  gap: 50px;
  width: 100%;
  margin-bottom: 50px;
  align-items: center;
}

.how__card .title-2 {
  font-size: 24px;
  margin-bottom: 15px;
}

.how__card .content p {
  font-size: 18px;
  line-height: 30px;
}

.how__card img {
  width: 150px;
}

.token .divider {
  margin-bottom: 50px;
}

.token .title-2 {
  text-align: center;
  margin-bottom: 50px;
}

.token__wrapper {
  max-width: 90%;
  margin: 0px auto;
  width: 1200px;
  display: flex;
  align-items: center;
  gap: 50px;
  padding-bottom: 50px;
}

.token__left {
  flex: 6;
}

.token__right {
  flex: 4;
}

.token__right img {
  width: 100%;
}

.token__card {
  width: 100%;
}

.token__card p {
  font-size: 20px;
  line-height: 35px;
}

.token__left .title-2 {
  font-size: 22px;
}

.map__wrapper {
  max-width: 90%;
  margin: 0px auto;
  width: 1200px;
  padding: 50px 0;
}

.map {
  width: 100%;
}

.map__top {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.map__top img {
  height: 300px;
}

.map__top .middle {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.map__top .middle .title-2 {
  margin-bottom: 22px;
}

.map__top .card {
  padding: 20px 40px;
}

.map__top .card p {
  font-size: 22px;
  margin-bottom: 10px;
}

.map__desc {
  font-size: 22px;
  margin-bottom: 10px;
  margin-top: 50px;
  margin-bottom: 50px;
  text-align: center;
  width: 80%;
  line-height: 40px;
  text-shadow: rgba(0, 0, 0, 0.498039) -1px -1px 0px,
    rgba(0, 0, 0, 0.498039) -1px 1px 0px, rgba(0, 0, 0, 0.498039) 1px 1px 0px,
    rgba(0, 0, 0, 0.498039) 1px -1px 0px;
}

.map__cards {
  display: flex;
  gap: 50px;
}

.map__cards .card .title-2 {
  font-size: 22px;
  margin-bottom: 30px;
}

.map__cards .card {
  display: flex;
  align-items: center;
  flex-direction: column;
  padding: 20px 40px;
  padding-left: 60px;
  width: 100%;
  flex: 1;
}

.contact__wrapper {
  max-width: 90%;
  margin: 0px auto;
  width: 1200px;
  padding: 50px 0;
  display: flex;
  align-items: center;
  flex-direction: column;
}

.contact .title-2 {
  margin-bottom: 40px;
}

.contact .logo {
  height: 70px;
  margin-bottom: 100px;
}

.contact__links {
  display: flex;
  gap: 40px;
  margin-bottom: 50px;
}

.contact__links img {
  height: 80px;
}

footer {
  padding: 30px 0;
  display: flex;
  justify-content: center;
  background-color: #39963c;
  box-shadow: -2px -12px 11px -3px rgba(0, 0, 0, 0.1);
  color: black;
  font-size: 14px;
  margin-top: 100px;
}

.page2 {
  position: relative;
}

.page2__wrapper {
  max-width: 90%;
  margin: 0px auto;
  width: 1200px;
  padding: 50px 0;
  display: flex;
  justify-content: space-between;
  gap: 50px;
}
.page2__wrapper .card {
  width: 100%;
}
.page2__wrapper .card-1 {
  padding: 20px 50px;
  margin-bottom: 50px;
}

.page2__wrapper .card-1 ul {
  display: flex;
  align-items: center;
  gap: 50px;
}

.page2__wrapper .cards {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page2__wrapper img {
  height: 500px;
}

.page2__wrapper .title-2 {
  font-size: 24px;
  margin-bottom: 15px;
}

.page2__wrapper .connect {
  margin-top: 20px;
}

.page2__wrapper .connect div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.page2__wrapper .connect div span {
  font-size: 18px;
}

.btn-w {
  display: flex;
  flex-direction: column;
}

.btn-w .btn {
  margin-bottom: 30px;
}

@media screen and (max-width: 920px) {
  .title-2 {
    font-size: 42px;
    text-align: center;
  }

  .description {
    font-size: 20px;
    text-align: center;
  }

  .hero__wrapper {
    padding: 40px 0;
    flex-direction: column-reverse;
  }

  .hero__right img {
    height: 260px;
  }

  .hero__left {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .hero__left__description {
    width: 100%;
  }

  .hero__card {
    width: 100%;
    padding: 20px 0;
  }

  .hero__bg {
    top: 40%;
    height: 60%;
    overflow: hidden;
    max-width: 100%;
  }

  .about__wrapper {
    padding: 40px 0;
    flex-direction: column;
    /* align-items: center; */
  }

  .about__left img {
    width: 100%;
    height: unset;
    margin-bottom: 50px;
    max-width: 500px;
  }

  .how__card {
    flex-direction: column;
    padding: 20px;
    align-items: center;
    text-align: center;
  }

  .token .heading {
    font-size: 24px;
  }

  .token__wrapper {
    flex-direction: column-reverse;
  }

  .token__left .title-2 {
    font-size: 15px;
  }

  .map__top {
    justify-content: center;
  }

  .map__top img {
    display: none;
  }

  .map__top .card {
    padding: 20px;
  }

  .map__desc {
    width: 100%;
    font-size: 16px;
    line-height: 25px;
  }

  .map__cards {
    flex-direction: column;
  }

  .desc-2 {
    width: 100%;
  }

  .contact__links img {
    height: 40px;
  }

  .page2__wrapper {
    flex-direction: column-reverse;
  }

  .page2__wrapper img {
    height: unset;
    max-width: 400px;
  }
  .apy_percent { 
    font-size: 20px !important;
  }
}



.apy_percent { 
  font-family: "title";
  /* text-shadow: rgba(0, 0, 0, 0.498039) -1px -1px 0px,
    rgba(0, 0, 0, 0.498039) -1px 1px 0px, rgba(0, 0, 0, 0.498039) 1px 1px 0px,
    rgba(0, 0, 0, 0.498039) 1px -1px 0px; */
  font-size: 24px;
  padding-bottom: -0px !important;
}

.stake-info {
  display: flex;
  flex-wrap: wrap;
  
} 
.stake-info li {
  width: 40%;
  margin: 0;
  padding: 0;
  flex-grow: 1;
  flex-shrink: 0;
}