#partners {
  padding: 160px 120px;
  background-color: #fff;
}
#partners .container {
  width: min(1200px, 100%);
}
#partners h2 {
  font-size: 40px;
  line-height: 140%;
  letter-spacing: -0.045em;
  font-weight: 500;
  margin-bottom: 32px;
}
#partners .partners_wrapp {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid #e8e8e8;
  border-radius: 8px;
  overflow: hidden;
  gap: 1px;
  background-color: #e8e8e8;
}
#partners .partner_block {
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  transition: 0.3s;
  background: #fff;
}
#partners .partner_block .partner_block_img {
  height: 48px;
  max-width: 100%;
  position: relative;
  width: 100%;
}
#partners .partner_block .partner_block_img img {
  object-fit: contain;
}
@media screen and (max-width: 1100px) {
  #partners {
    padding: 160px 80px;
  }
}
@media screen and (max-width: 860px) {
  #partners {
    padding: 64px 16px;
  }
  #partners .container {
    padding: unset;
  }
  #partners .container .partners_wrapp {
    grid-template-columns: repeat(2, 1fr);
  }
  #partners .container .partners_wrapp .partner_block {
    height: 94px;
  }
}
#revenue {
  padding: 0 16px;
  background-color: #fff;
}
#revenue .container {
  background-color: #07130c;
  background-image: url(/images/landing/revenue-bg.svg);
  background-position: 50%;
  background-size: cover;
  position: relative;
  overflow: hidden;
  padding: 120px 80px;
  border-radius: 8px;
}
#revenue .container .content {
  width: min(1200px, 100%);
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  margin: auto;
}
#revenue .container .content .text {
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: min(500px, 100%);
}
#revenue .container .content .text h2 {
  font-size: 40px;
  line-height: 140%;
  letter-spacing: -0.045em;
  font-weight: 500;
  color: #fff;
}
#revenue .container .content .text h2 span {
  color: #49ff86;
}
#revenue .container .content .text p {
  font-size: 16px;
  line-height: 140%;
  letter-spacing: -0.045em;
  font-weight: 400;
  color: #e8e8e8;
}
#revenue .container .content .text p b {
  font-size: 16px;
  line-height: 140%;
  letter-spacing: -0.045em;
  font-weight: 500;
  color: #fff;
}
#revenue .container .content .image {
  position: relative;
}
#revenue .container .content .image .revenue-label {
  right: 0;
  width: 119px;
  height: 116px;
  background-color: #07130c;
  border-radius: 100%;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: center;
  text-align: center;
  position: absolute;
  z-index: 1;
  text-transform: uppercase;
  font-size: 14px;
  line-height: 140%;
  letter-spacing: -0.045em;
  font-weight: 700;
}
#revenue .container .content .image .img-wrap {
  position: relative;
  width: 280px;
  height: 280px;
}
#revenue .container .content .image .background {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  filter: blur(50px);
  width: 500px;
  height: 500px;
  border-radius: 30% 70% 70% 30%/30% 30% 70% 70%;
  background-image: linear-gradient(
    to right top,
    #49ff86,
    #03ffdd,
    #4affc3,
    #62ffd9,
    #80ffea
  );
  animation: blobAnim 10s ease-in-out infinite;
  opacity: 0.5;
}
@keyframes blobAnim {
  0%,
  to {
    border-radius: 46% 54% 29% 71%/66% 39% 61% 34%;
    transform: translate(-50%, -50%) rotate(30deg);
  }
  30% {
    border-radius: 46% 54% 29% 71%/17% 74% 26% 83%;
    transform: translate(-50%, -50%) rotate(15deg);
  }
  50% {
    border-radius: 46% 54% 81% 19%/39% 74% 26% 61%;
    transform: translate(-50%, -50%) rotate(45deg);
  }
  70% {
    border-radius: 65% 35% 56% 44%/39% 17% 83% 61%;
    transform: translate(-50%, -50%) rotate(70deg);
  }
}
@media screen and (max-width: 860px) {
  #revenue .container {
    padding: 48px 24px;
  }
  #revenue .container .content {
    flex-direction: column-reverse;
  }
  #revenue .container .content .text {
    margin-top: 32px;
  }
  #revenue .container .content .text h2 {
    font-size: 32px;
    line-height: 140%;
    letter-spacing: -0.045em;
    font-weight: 500;
    z-index: 1;
  }
  #revenue .container .content .image .img-wrap {
    width: 200px;
    height: 200px;
  }
  #revenue .container .content .image .revenue-label {
    width: 96px;
    height: 96px;
    font-size: 12px;
    line-height: 140%;
    letter-spacing: -0.045em;
    right: -25px;
    font-weight: 700;
  }
  #revenue .container .content .image .background {
    width: 400px;
    height: 400px;
  }
}
@media screen and (max-width: 500px) {
  #revenue .container .content .text h2 {
    font-size: 24px;
    line-height: 140%;
    letter-spacing: -0.045em;
    font-weight: 500;
  }
}
#presale-whitelist {
  padding: 120px 0;
}
#presale-whitelist .container {
  width: min(970px, 100%);
  margin: auto;
}
#presale-whitelist .container .pre-headblock h2 {
  font-size: 40px;
  line-height: 140%;
  letter-spacing: -0.045em;
  font-weight: 500;
  margin-bottom: 16px;
}
#presale-whitelist .container .pre-headblock p {
  margin-bottom: 48px;
  font-size: 18px;
  line-height: 150%;
  letter-spacing: -0.045em;
  font-weight: 400;
}
#presale-whitelist .container .block-wait {
  padding: 32px;
  border-radius: 8px;
  border: 1px solid #49ff86;
  background: #fff;
  margin-top: 16px;
}
#presale-whitelist .container .block-wait h3 {
  font-size: 24px;
  line-height: 140%;
  letter-spacing: -0.045em;
  font-weight: 500;
  margin-bottom: 12px;
}
#presale-whitelist .container .block-wait p {
  font-size: 18px;
  line-height: 150%;
  letter-spacing: -0.045em;
  font-weight: 400;
  margin-bottom: 16px;
}
#presale-whitelist .container .wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 48px;
}
#presale-whitelist .container .wrapper .card {
  border: 1px solid #e8e8e8;
  background-color: #fff;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 30px 32px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
#presale-whitelist .container .wrapper .card .sub {
  display: flex;
  flex-direction: column-reverse;
  justify-content: space-between;
  gap: 12px;
}
#presale-whitelist .container .wrapper .card .sub label {
  font-size: 16px;
  line-height: 140%;
  letter-spacing: -0.045em;
  font-weight: 400;
  width: 60px;
  color: #4d544f;
}
#presale-whitelist .container .wrapper .card .sub b {
  font-size: 24px;
  line-height: 140%;
  letter-spacing: -0.045em;
  font-weight: 500;
}
#presale-whitelist .container .wrapper .chart {
  grid-column: 1/3;
  background-color: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 8px;
  position: relative;
  height: 480px;
}
#presale-whitelist .container .wrapper .chart .chart-label {
  padding: 6px;
  background-color: #e8e8e8;
  border-radius: 8px;
  width: fit-content;
  color: #000;
  text-align: right;
  font-size: 12px;
  line-height: 140%;
  letter-spacing: -0.045em;
  font-weight: 500;
}
#presale-whitelist .container .wrapper .chart .chart-label.index-1 {
  background-color: #000;
  color: #fff;
}
#presale-whitelist .container .wrapper .chart .chart-label.index-3 {
  background-color: #49ff86;
}
#presale-whitelist .container .wrapper .chart .focus {
  box-sizing: border-box;
  background-color: #49ff86;
  width: calc((100% - 95px) / 4 + 0%);
  bottom: 54px;
  top: 40px;
  position: absolute;
  left: calc((100% - 95px) / 4 + 64px);
}
#presale-whitelist .container .wrapper .chart .line {
  box-sizing: border-box;
  border-right: 1px solid #e8e8e8;
  border-left: 1px solid #e8e8e8;
  width: calc((100% - 95px) / 4 + 0%);
  bottom: 54px;
  top: 40px;
  position: absolute;
  left: calc((100% - 95px) / 4 * 2 + 64px);
}
#presale-whitelist .container .wrapper .chart .line._2 {
  left: calc((100% - 95px) / 4 * 3 + 64px);
}
#presale-whitelist .container .wrapper .progress {
  width: fit-content;
  box-sizing: border-box;
  margin: 0 auto;
  width: 100%;
  color: #07130c;
  grid-column: 1/4;
}
#presale-whitelist .container .wrapper .progress > label {
  font-size: 24px;
  line-height: 140%;
  letter-spacing: -0.045em;
  font-weight: 400;
  width: 100%;
  text-align: center;
  display: block;
}
#presale-whitelist .container .wrapper .progress .bar-wrap {
  width: 100%;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
#presale-whitelist .container .wrapper .progress .bar-wrap .top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 18px;
  line-height: 140%;
  letter-spacing: -0.045em;
  font-weight: 500;
  margin-bottom: 12px;
}
#presale-whitelist .container .wrapper .progress .bar-wrap .top .stage {
  color: #4d544f;
  font-size: 16px;
  line-height: 140%;
  letter-spacing: -0.045em;
  font-weight: 400;
}
#presale-whitelist .container .wrapper .progress .bar-wrap .top .price {
  font-size: 16px;
  line-height: 140%;
  letter-spacing: -0.045em;
  font-weight: 500;
}
#presale-whitelist .container .wrapper .progress .bar-wrap .bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  line-height: 140%;
  letter-spacing: -0.045em;
  font-weight: 400;
  color: #4d544f;
  text-transform: uppercase;
  margin-top: 4px;
}
#presale-whitelist .container .wrapper .progress .bar-wrap .bottom b {
  font-weight: 500;
  color: #07130c;
}
#presale-whitelist .container .wrapper .progress .bar-wrap progress[value] {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  border-radius: 8px;
  border: 1px solid #07130c;
  height: 18px;
  box-sizing: border-box;
  overflow: hidden;
}
#presale-whitelist
  .container
  .wrapper
  .progress
  .bar-wrap
  progress[value]::-webkit-progress-bar {
  background-color: #fff;
  border-radius: 8px;
  height: 17px;
  box-sizing: border-box;
  box-shadow: inset 0 0.5px 1px var(--background-zero);
}
#presale-whitelist
  .container
  .wrapper
  .progress
  .bar-wrap
  progress[value]::-webkit-progress-value {
  background: #49ff86;
  box-shadow: none;
  border-color: rgba(0, 0, 0, 0);
  border-right: 1px solid #07130c;
  border-radius: 8px 0 0 8px;
  box-sizing: border-box;
  height: 17px;
  transition: width 1.5s;
}
#presale-whitelist
  .container
  .wrapper
  .progress
  .bar-wrap
  progress[value]::-moz-progress-bar {
  background: #49ff86;
  box-shadow: none;
  border-color: rgba(0, 0, 0, 0);
  border-right: 1px solid #07130c;
  border-radius: 8px 0 0 8px;
  box-sizing: border-box;
  height: 17px;
  transition: width 1.5s;
}
#presale-whitelist
  .container
  .wrapper
  .progress
  .bar-wrap
  progress[value]::-ms-fill {
  background: #49ff86;
  box-shadow: none;
  border-color: rgba(0, 0, 0, 0);
  border-right: 1px solid #07130c;
  border-radius: 8px 0 0 8px;
  box-sizing: border-box;
  height: 17px;
  transition: width 1.5s;
}
#presale-whitelist .container .wrapper .buttons {
  margin-top: 24px;
  display: flex;
  gap: 16px;
}
#presale-whitelist .container .wrapper .buttons .btn {
  min-width: none;
}
@media screen and (max-width: 430px) {
  #presale-whitelist .container .wrapper .progress .bar-wrap progress[value] {
    height: 19px;
  }
}
@media screen and (max-width: 860px) {
  #presale-whitelist {
    padding: 60px 16px;
  }
  #presale-whitelist .container {
    padding: unset;
  }
  #presale-whitelist .container .block-wait {
    padding: 16px;
    margin-top: 8px;
  }
  #presale-whitelist .container .block-wait p {
    font-size: 16px;
    line-height: 140%;
    letter-spacing: -0.045em;
    font-weight: 400;
    margin-bottom: 16px;
  }
  #presale-whitelist .container h2 {
    font-size: 32px;
    line-height: 140%;
    letter-spacing: -0.045em;
    font-weight: 500;
    margin-bottom: 16px;
  }
  #presale-whitelist .container h2 br {
    display: none;
  }
  #presale-whitelist .container .wrapper {
    display: flex;
    flex-direction: column;
    margin-top: 24px;
  }
  #presale-whitelist .container .wrapper .card {
    padding: 16px;
  }
  #presale-whitelist .container .wrapper .card .sub b {
    font-size: 18px;
    line-height: 140%;
    letter-spacing: -0.045em;
    font-weight: 500;
  }
  #presale-whitelist .container .wrapper .card .sub label {
    font-size: 14px;
    line-height: 140%;
    letter-spacing: -0.045em;
    font-weight: 500;
    width: auto;
  }
  #presale-whitelist .container .wrapper .progress .bar-wrap .top {
    margin-bottom: 4px;
  }
}
#recent {
  background-color: #fff;
  padding: 30px 0;
}
#recent .container {
  width: min(1230px, 100%);
  margin: auto;
  padding: 0 15px;
}
#recent .container h2 {
  font-size: 40px;
  line-height: 140%;
  letter-spacing: -0.045em;
  font-weight: 500;
  margin-bottom: 32px;
}
#recent .container div.more-posts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 92px;
}
@media screen and (max-width: 860px) {
  #recent {
    padding: 30px 16px;
  }
  #recent .container {
    padding: 0;
  }
  #recent .container h2 {
    font-size: 32px;
    line-height: 140%;
    letter-spacing: -0.045em;
    font-weight: 500;
  }
  #recent .container div.more-posts {
    display: flex;
    flex-direction: column;
  }
}
