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

body {
  background-color: #110F0D;
  color: #fff;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
  text-align: left;
  letter-spacing: -0.5px;
}

a, a:hover {
  color: #fff;
  text-decoration: none;
}

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

h1, h2, h3, h4, h5 {
  margin: 0;
  padding: 0;
}

.opHover {
  opacity: 1;
  transition: all 0.25s;
}
.opHover:hover {
  opacity: 0.7;
  transition: all 0.25s;
}

.cont {
  width: 100%;
  margin: 0 auto;
}
@media (min-width: 375px) {
  .cont {
    max-width: 375px;
  }
}
@media (min-width: 768px) {
  .cont {
    max-width: 768px;
  }
}
@media (min-width: 1200px) {
  .cont {
    max-width: 1200px;
  }
}
@media (min-width: 1400px) {
  .cont {
    max-width: 1400px;
  }
}

.burgerToggle {
  height: 30px;
  width: 30px;
  cursor: pointer;
}
.burgerToggle div {
  width: 22px;
  height: 2px;
  background-color: #fff;
  cursor: pointer;
}
.burgerToggle div:nth-child(1) {
  position: relative;
  top: 40%;
}
.burgerToggle div:nth-child(2) {
  position: relative;
  top: 52%;
}
.burgerToggle.--active {
  position: relative;
  transition: all 0.3s;
}
.burgerToggle.--active div:nth-child(1) {
  position: absolute;
  top: 50%;
  left: -1px;
  transform: rotate(45deg) translateY(-50%);
}
.burgerToggle.--active div:nth-child(2) {
  position: absolute;
  transform: rotate(-45deg) translateY(-50%);
  top: 50%;
}

.top-menu {
  z-index: 1;
  position: relative;
  margin-top: 50px;
  padding-left: 50px;
  padding-right: 50px;
}
@media (max-width: 1199.98px) {
  .top-menu {
    margin-top: 20px;
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media (max-width: 376.98px) {
  .top-menu {
    margin-top: 12px;
  }
}
.top-menu__holder {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.top-menu__logo {
  font-size: 36px;
  font-family: "Schibsted Grotesk", sans-serif;
  font-weight: 800;
  display: flex;
  align-items: center;
}
@media (max-width: 1199.98px) {
  .top-menu__logo {
    font-size: 27px;
  }
}
.top-menu__logo span {
  color: #F70;
}
.top-menu__logo span.by {
  font-size: 12px;
  font-weight: 400;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.5);
  margin-left: 12px;
}
@media (max-width: 991.98px) {
  .top-menu__logo span.by {
    font-size: 9px;
  }
}

.ibg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.ibg.contain {
  -o-object-fit: contain;
     object-fit: contain;
}

.br-btn {
  display: flex;
  align-items: center;
  text-transform: uppercase;
  font-size: 16px;
  color: #fff;
  padding: 9px 36px;
  border: none;
  border-left: 4px solid #fff;
  display: inline-block;
}
@media (max-width: 1199.98px) {
  .br-btn {
    font-size: 12px;
    padding: 7px 27px 7px 9px;
  }
}
.br-btn-border {
  border-radius: 2px;
  border: 1px solid #F70;
  border-left: 4px solid #F70;
}

.navi {
  font-size: 16px;
  display: block;
  position: relative;
}
@media (max-width: 766.98px) {
  .navi {
    position: absolute;
    top: -2000px;
  }
}
@media (max-width: 766.98px) {
  .navi.--active {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    background-color: #110F0D;
    height: calc(100vh - 70px);
  }
  .navi.--active ul {
    flex-direction: column;
    text-align: center;
  }
  .navi.--active li + li {
    margin-left: 0;
  }
  .navi.--active li {
    margin-bottom: 20px;
  }
  .navi.--active a {
    font-size: 20px;
  }
}
.navi ul {
  display: flex;
  align-items: center;
}
@media (max-width: 766.98px) {
  .navi ul {
    flex-direction: column;
  }
}
.navi li {
  display: block;
}
.navi li + li {
  margin-left: 35px;
}
.navi a {
  text-transform: uppercase;
  color: #fff;
  display: block;
}
@media (max-width: 1199.98px) {
  .navi a {
    font-size: 12px;
  }
}
.navi .action {
  padding: 15px 40px;
  background-color: #F70;
  border-radius: 47px;
  color: #110F0D;
  font-weight: 500;
}
@media (max-width: 991.98px) {
  .navi .action {
    padding: 10px 25px;
  }
}

.hero {
  position: relative;
  margin-top: -115px;
  overflow: hidden;
}
.hero__inner {
  border: 1px solid rgba(255, 255, 255, 0.25);
  display: flex;
  margin-top: 215px;
  margin-bottom: 200px;
}
.hero-img {
  z-index: -1;
  position: absolute;
  left: 0;
  top: 0;
  height: -webkit-fill-available;
}
.hero__header {
  flex: 0 1 50%;
  font-weight: 600;
  text-transform: uppercase;
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: -1.8px;
  line-height: 100%;
  font-size: 130px;
  padding-top: 34px;
  padding-left: 50px;
}
.hero__header span {
  font-size: 200px;
  padding: 50px 33px 21px;
  display: inline-block;
  border-radius: 12px;
  background: #F70;
  color: #110F0D;
  letter-spacing: -4.5px;
}
.hero__header .abca {
  width: 80%;
}
.hero__info {
  flex: 0 1 50%;
  border-left: 1px solid rgba(255, 255, 255, 0.25);
}
.hero__info-block {
  padding-left: 70px;
  padding-right: 50px;
}
.hero__info-block .btns {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}
.hero__info-block .btns span {
  margin-left: 5px;
}
.hero__info-top .hero__info-block {
  padding-top: 90px;
  padding-bottom: 90px;
}
.hero__info-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.25);
  font-size: 20px;
  text-transform: uppercase;
}
.hero__info-bottom .hero__info-block {
  padding-top: 40px;
  padding-bottom: 40px;
}
.hero__info-bottom p {
  margin-bottom: 60px;
}
.hero__info .socs {
  display: flex;
  margin-left: -6px;
  margin-right: -6px;
}
.hero__info .socs a {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.05);
  margin-left: 6px;
  margin-right: 6px;
  padding: 8px 10px;
}

@media (max-width: 1199.98px) {
  .hero__header {
    flex: 0 1 50%;
    font-size: 65px;
    padding-top: 34px;
    padding-left: 30px;
  }
  .hero__header span {
    font-size: 100px;
    padding: 15px 13px 4px;
  }
  .hero__header .abca {
    width: 80%;
  }
  .hero__info {
    flex: 0 1 50%;
  }
  .hero__info-block {
    padding-left: 47px;
    padding-right: 50px;
  }
  .hero__info-block .btns {
    gap: 30px;
  }
  .hero__info-block .btns span {
    margin-left: 5px;
  }
  .hero__info-top .hero__info-block {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .hero__info-bottom {
    font-size: 15px;
  }
  .hero__info-bottom .hero__info-block {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .hero__info-bottom p {
    margin-bottom: 60px;
  }
  .hero__info .socs {
    margin-left: -6px;
    margin-right: -6px;
  }
  .hero__info .socs svg {
    width: 23px;
    height: 23px;
  }
  .hero__info .socs a {
    margin-left: 6px;
    margin-right: 6px;
    padding: 5px 7px;
  }
}
@media (max-width: 766.98px) {
  .hero__inner {
    flex-direction: column;
  }
  .hero__header {
    flex: 0 1 50%;
    font-size: 65px;
    padding-left: 20px;
  }
  .hero__header span {
    font-size: 100px;
    padding: 15px 13px 4px;
  }
  .hero__header .abca {
    width: 80%;
  }
  .hero__info {
    border-left: none;
    flex: 0 1 50%;
  }
  .hero__info-block {
    padding-left: 20px;
    padding-right: 20px;
  }
  .hero__info-block .btns {
    gap: 30px;
  }
  .hero__info-block .btns span {
    margin-left: 5px;
  }
  .hero__info-top .hero__info-block {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .hero__info-bottom {
    font-size: 15px;
  }
  .hero__info-bottom .hero__info-block {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .hero__info-bottom p {
    margin-bottom: 30px;
  }
  .hero__info .socs {
    margin-left: -20px;
    margin-right: -20px;
    justify-content: space-between;
    padding-left: 15px;
    padding-right: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.25);
    padding-top: 40px;
  }
  .hero__info .socs svg {
    width: 23px;
    height: 23px;
  }
  .hero__info .socs a {
    margin-left: 4px;
    margin-right: 4px;
    padding: 5px 7px;
  }
}
@media (max-width: 1991.98px) {
  .hero__inner {
    border-left: none;
    border-right: none;
  }
}
.borders {
  border-top: 1px solid rgba(255, 255, 255, 0.25);
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}

.token-section {
  margin-top: 100px;
  display: flex;
  align-items: center;
}
.token-section__block {
  padding-top: 20px;
  padding-bottom: 36px;
}
.token-section__block h3 {
  color: #fff;
  font-family: "Bebas Neue", sans-serif;
  font-size: 70px;
  font-style: normal;
  font-weight: 600;
  line-height: 100%; /* 70px */
  letter-spacing: -2.1px;
  text-transform: uppercase;
  text-align: center;
  width: 320px;
}
.token-section__block.cells {
  border-left: 1px solid rgba(255, 255, 255, 0.25);
  display: flex;
  padding-left: 60px;
}
.token-section__block.cells .token-section__cell + .token-section__cell {
  margin-left: 50px;
}
.token-section__block.title {
  padding-top: 37px;
  padding-bottom: 37px;
}
.token-section__cell {
  color: rgba(255, 255, 255, 0.5);
  display: flex;
  align-items: center;
  flex-direction: column;
  align-items: flex-start;
}
.token-section__cell span {
  font-family: "Bebas Neue", sans-serif;
  color: #F70;
  font-size: 135px;
  font-style: normal;
  font-weight: 600;
  line-height: 100%; /* 150px */
  letter-spacing: -4.5px;
  text-transform: uppercase;
}

@media (max-width: 1399.98px) {
  .token-section__cell span {
    font-size: 100px;
  }
}
@media (max-width: 1199.98px) {
  .token-section {
    margin-top: 100px;
  }
  .token-section__block {
    padding-top: 20px;
    padding-bottom: 36px;
  }
  .token-section__block h3 {
    font-size: 50px;
    width: 240px;
  }
  .token-section__block.cells {
    padding-left: 30px;
  }
  .token-section__block.cells .token-section__cell + .token-section__cell {
    margin-left: 30px;
  }
  .token-section__cell span {
    font-size: 60px;
  }
}
@media (max-width: 767.98px) {
  .token-section {
    margin-top: 87px;
    flex-direction: column;
  }
  .token-section__block {
    padding-top: 20px;
    padding-bottom: 36px;
  }
  .token-section__block h3 {
    font-size: 50px;
    width: 100%;
    text-align: center;
  }
  .token-section__block.cells {
    flex-wrap: wrap;
    padding-left: 20px 20px 36px;
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.25);
  }
  .token-section__block.cells .token-section__cell + .token-section__cell {
    margin-left: 0;
  }
  .token-section__cell {
    flex: 1 0 48%;
  }
  .token-section__cell span {
    font-size: 60px;
  }
}
.left-circle-devider {
  position: relative;
  height: 1px;
  width: 100%;
}
.left-circle-devider::after {
  content: "";
  width: 450px;
  height: 450px;
  left: 0;
  top: 50%;
  transform: translateX(-50%);
  border-radius: 473px;
  background: #F70;
  filter: blur(250px);
  position: absolute;
}

.about-section {
  margin-top: 150px;
  display: flex;
}
.about-section__block {
  padding-top: 60px;
  padding-bottom: 60px;
}
.about-section__block.left {
  text-transform: uppercase;
  flex: 0 0 50%;
  padding-left: 50px;
  padding-right: 20px;
  font-size: 20px;
}
.about-section__block.left h2 {
  color: #F70;
  font-family: "Bebas Neue", sans-serif;
  font-size: 70px;
  font-style: normal;
  font-weight: 600;
  line-height: 100%; /* 70px */
  letter-spacing: -2.1px;
  text-transform: uppercase;
  margin-bottom: 25px;
}
.about-section__block.left span {
  color: #F70;
}
.about-section__block.right {
  border-left: 1px solid rgba(255, 255, 255, 0.25);
  padding-left: 80px;
  padding-right: 20px;
}
.about-section__block.right p {
  font-size: 16px;
  line-height: 1.75;
}
.about-section__block.right p + p {
  margin-top: 20px;
}

@media (max-width: 991.98px) {
  .about-section {
    margin-top: 150px;
  }
  .about-section__block {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .about-section__block.left {
    flex: 0 0 50%;
    padding-left: 30px;
    padding-right: 20px;
    font-size: 15px;
  }
  .about-section__block.left h2 {
    font-size: 50px;
    margin-bottom: 18px;
    font-weight: 400;
  }
  .about-section__block.right {
    padding-left: 30px;
    padding-right: 20px;
  }
  .about-section__block.right p {
    font-size: 12px;
  }
  .about-section__block.right p + p {
    margin-top: 20px;
  }
}
@media (max-width: 767.98px) {
  .about-section {
    margin-top: 80px;
    flex-direction: column;
    padding-bottom: 40px;
  }
  .about-section__block {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .about-section__block.left {
    padding-left: 20px;
    font-size: 15px;
    padding-bottom: 0;
  }
  .about-section__block.right {
    border: none;
    padding-top: 20px;
    padding-left: 20px;
    padding-bottom: 0;
  }
}
.animation-section {
  margin-top: 170px;
  margin-bottom: 170px;
  display: flex;
  align-items: center;
  justify-content: space-around;
}

.benefits-section .benefits-top {
  border-radius: 12px;
  background-color: #F70;
  padding: 20px;
  margin-bottom: 40px;
}
.benefits-section .benefits-top h3 {
  font-family: "Bebas Neue", sans-serif;
  font-size: 150px;
  font-style: normal;
  font-weight: 600;
  line-height: 100%; /* 150px */
  letter-spacing: -4.5px;
  text-transform: uppercase;
  color: #110F0D;
}
.benefits-section .benefits-top .row-bottom {
  display: flex;
}
.benefits-section .benefits-top .row-bottom .benefits-top__cell {
  flex: 0 0 50%;
}
.benefits-section .benefits-top .row-bottom p {
  color: #110F0D;
  font-size: 20px;
  font-weight: 500;
  line-height: 170%; /* 34px */
  letter-spacing: -0.6px;
  text-transform: uppercase;
}
.benefits-section .benefits-items {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.benefits-section .benefits-item {
  border-radius: 12px;
  border: 1px solid #F70;
  padding: 20px;
  margin-bottom: 25px;
  flex: 0 0 49%;
  padding-right: 10%;
}
.benefits-section .benefits-item h4 {
  color: #F70;
  font-family: "Bebas Neue", sans-serif;
  font-size: 64px;
  font-style: normal;
  font-weight: 600;
  line-height: 100%; /* 64px */
  letter-spacing: -1.92px;
  text-transform: uppercase;
}
.benefits-section .benefits-item p {
  font-family: "Schibsted Grotesk", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 200%; /* 36px */
  letter-spacing: -0.54px;
}
.benefits-section .benefits-item:last-child {
  flex: 0 0 100%;
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: center;
  text-align: center;
  flex-direction: column;
  padding-right: 0;
  padding-top: 60px;
  padding-bottom: 60px;
}
.benefits-section .benefits-item:last-child a {
  width: -moz-fit-content;
  width: fit-content;
  display: block;
  margin: 0 auto;
}
.benefits-section .benefits-item:last-child img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

@media (max-width: 1199.98px) {
  .benefits-section .benefits-top {
    padding: 20px;
    margin-bottom: 40px;
  }
  .benefits-section .benefits-top h3 {
    font-size: 110px;
  }
  .benefits-section .benefits-top .row-bottom .benefits-top__cell {
    flex: 0 0 50%;
  }
  .benefits-section .benefits-top .row-bottom p {
    color: #110F0D;
    font-size: 15px;
  }
  .benefits-section .benefits-items {
    flex-wrap: wrap;
    gap: 20px;
    justify-content: space-between;
  }
  .benefits-section .benefits-item {
    border-radius: 12px;
    border: 1px solid #F70;
    padding: 20px;
    margin-bottom: 5px;
    flex: 0 0 48%;
    padding-right: 10%;
  }
  .benefits-section .benefits-item h4 {
    font-size: 35px;
  }
  .benefits-section .benefits-item p {
    font-size: 13px;
  }
  .benefits-section .benefits-item:last-child {
    padding-bottom: 40px;
    padding-top: 40px;
  }
}
@media (max-width: 766.98px) {
  .benefits-section .benefits-top {
    padding: 20px;
    margin-bottom: 40px;
  }
  .benefits-section .benefits-top h3 {
    font-size: 110px;
    margin-bottom: 10px;
  }
  .benefits-section .benefits-top .row-bottom {
    flex-direction: column;
  }
  .benefits-section .benefits-top .row-bottom .benefits-top__cell {
    flex: 0 0 50%;
  }
  .benefits-section .benefits-top .row-bottom p {
    color: #110F0D;
    font-size: 15px;
  }
  .benefits-section .benefits-items {
    flex-wrap: wrap;
    gap: 20px;
    justify-content: space-between;
  }
  .benefits-section .benefits-item {
    flex: 0 0 100%;
    padding-right: 0;
    padding-bottom: 5px;
  }
  .benefits-section .benefits-item h4 {
    font-size: 35px;
  }
  .benefits-section .benefits-item p {
    margin-top: 4px;
    margin-bottom: 4px;
  }
  .benefits-section .benefits-item:last-child {
    padding-bottom: 100px;
    padding-top: 100px;
    border: none;
    border-radius: 0;
  }
}
.video-section {
  border-radius: 12px;
  border: 1px solid var(--Accented, #F70);
}
.video-section img, .video-section video, .video-section iframe {
  width: 100%;
}

.stroke {
  overflow: hidden;
  padding: 40px 0;
  background-color: #F70;
  margin-top: 200px;
  font-family: "Bebas Neue", sans-serif;
  font-size: 52.5px;
  color: #110F0D;
  font-weight: 700;
}
@media (max-width: 1199.98px) {
  .stroke {
    margin-top: 100px;
    padding: 30px 0;
  }
}
.stroke p {
  text-align: center;
  text-transform: uppercase;
  animation: earth-text 10s infinite linear;
  padding-left: 100%;
  white-space: nowrap;
  margin-bottom: 0;
}
@keyframes earth-text {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(-300%, 0);
  }
}

.video-section {
  margin-top: 100px;
}

.coin-raise-section {
  margin-top: 200px;
  padding-top: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
  padding-left: 30px;
  padding-right: 30px;
}
.coin-raise-section__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
}
.coin-raise-section__top h3 {
  color: #F70;
  font-family: "Bebas Neue", sans-serif;
  font-size: 120px;
  font-style: normal;
  font-weight: 600;
  line-height: 100%; /* 120px */
  letter-spacing: -3.6px;
  text-transform: uppercase;
}
.coin-raise-section__top .btns {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}
.coin-raise-section__top .btns span {
  margin-left: 5px;
}
.coin-raise-section__center {
  display: flex;
  justify-content: space-between;
}
.coin-raise-section__center-left {
  flex: 0 0 49%;
}
.coin-raise-section__center-left h4 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 26px;
  color: #110F0D;
  background-color: #F70;
  padding: 5px 20px;
  font-weight: 600;
  border-radius: 7px;
  margin-bottom: 20px;
}
.coin-raise-section__center-left .chart-block {
  display: flex;
}
.coin-raise-section__center-left .chart-holder {
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 14px;
  padding: 30px 22px 9px;
  flex: 1 1 auto;
}
.coin-raise-section__center-left .chart-holder .chart img {
  width: 100%;
}
.coin-raise-section__center-left .chart-holder h5 {
  position: absolute;
  font-size: 12px;
}
.coin-raise-section__center-left .chart-holder h5 span {
  display: block;
  font-size: 35px;
  border-bottom: 2px solid #fff;
  margin-bottom: 10px;
}
.coin-raise-section__center-left .chart-holder h5 p {
  font-size: 7px;
  color: rgba(255, 255, 255, 0.5);
}
.coin-raise-section__center-left .chart-info {
  border-radius: 14px;
  background-color: #F70;
  padding: 18px 5px 13px;
  margin-left: 20px;
  color: #110F0D;
  font-size: 11px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.coin-raise-section__center-left .chart-info span {
  display: block;
  font-size: 16px;
  font-weight: 600;
}
.coin-raise-section__center-left .chart-info .chart-info-x span {
  display: block;
  font-size: 45px;
  font-weight: 800;
}
.coin-raise-section__center-right {
  flex: 0 0 49%;
  padding-left: 60px;
}
.coin-raise-section__center-right .top-row {
  display: flex;
  font-size: 25px;
  margin-bottom: 10px;
  flex-wrap: wrap;
  align-items: baseline;
}
.coin-raise-section__center-right .top-row span {
  font-size: 18px;
  flex: 1 1 50%;
  text-align: right;
}
.coin-raise-section__center-right .top-row p span {
  font-size: 28px;
  color: #110F0D;
  background-color: #F70;
  border-radius: 7px;
  font-weight: 600;
  flex: 1 1 100%;
  display: inline-block;
  width: -moz-fit-content;
  width: fit-content;
  padding: 4px 15px;
}
.coin-raise-section__center-right .chart img {
  width: 100%;
}
.coin-raise-section__infos {
  margin-top: 30px;
  display: flex;
  justify-content: space-between;
}
.coin-raise-section__infos h5 {
  margin-bottom: 20px;
}
.coin-raise-section__info {
  flex: 0 0 48%;
  padding: 32px;
  background-color: #F70;
  color: #110F0D;
  border-radius: 8px;
}
.coin-raise-section__info-blocks {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.coin-raise-section__info-block {
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  display: flex;
  flex-direction: column;
  white-space: nowrap;
}
.coin-raise-section__info-block span {
  font-size: 90px;
  font-style: normal;
  font-weight: 700;
  line-height: 1;
}
.coin-raise-section__info-block a {
  display: inline-block;
  border-left: 4px solid #110F0D;
  padding-left: 9px;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  letter-spacing: -0.48px;
  text-transform: uppercase;
  color: #110F0D;
}
.coin-raise-section .info-blocks-2 .coin-raise-section__info-block {
  display: flex;
  flex-direction: column-reverse;
}
.coin-raise-section .info-block-2 {
  display: none !important;
}

@media (max-width: 1199.98px) {
  .coin-raise-section {
    margin-top: 200px;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.25);
    padding-left: 30px;
    padding-right: 30px;
  }
  .coin-raise-section__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
  }
  .coin-raise-section__top h3 {
    font-size: 90px;
  }
  .coin-raise-section__top .btns a {
    font-size: 12px;
  }
  .coin-raise-section__center {
    display: flex;
    flex-direction: column;
  }
  .coin-raise-section__center-left {
    flex: 0 0 49%;
  }
  .coin-raise-section__center-left h4 {
    font-size: 26px;
    padding: 5px 20px;
    margin-bottom: 20px;
  }
  .coin-raise-section__center-left .chart-holder {
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 14px;
    padding: 30px 22px 9px;
    flex: 1 1 auto;
  }
  .coin-raise-section__center-left .chart-holder .chart img {
    width: 100%;
  }
  .coin-raise-section__center-left .chart-holder h5 {
    position: absolute;
    font-size: 12px;
  }
  .coin-raise-section__center-left .chart-holder h5 span {
    display: block;
    font-size: 35px;
    border-bottom: 2px solid #fff;
    margin-bottom: 10px;
  }
  .coin-raise-section__center-left .chart-holder h5 p {
    font-size: 7px;
    color: rgba(255, 255, 255, 0.5);
  }
  .coin-raise-section__center-left .chart-info {
    border-radius: 14px;
    background-color: #F70;
    padding: 18px 5px 13px;
    margin-left: 20px;
    color: #110F0D;
    font-size: 11px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  .coin-raise-section__center-left .chart-info span {
    display: block;
    font-size: 16px;
    font-weight: 600;
  }
  .coin-raise-section__center-left .chart-info .chart-info-x span {
    display: block;
    font-size: 45px;
    font-weight: 800;
  }
  .coin-raise-section__center-right {
    padding-left: 0px;
    margin-top: 30px;
  }
  .coin-raise-section__center-right .top-row {
    display: flex;
    font-size: 25px;
    margin-bottom: 10px;
    flex-wrap: wrap;
    align-items: baseline;
  }
  .coin-raise-section__center-right .top-row span {
    font-size: 18px;
    flex: 1 1 50%;
    text-align: right;
  }
  .coin-raise-section__center-right .top-row p span {
    font-size: 28px;
    color: #110F0D;
    background-color: #F70;
    border-radius: 7px;
    font-weight: 600;
    flex: 1 1 100%;
    display: inline-block;
    width: -moz-fit-content;
    width: fit-content;
    padding: 4px 15px;
  }
  .coin-raise-section__center-right .chart img {
    width: 100%;
  }
  .coin-raise-section__infos {
    margin-top: 30px;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
  }
  .coin-raise-section__infos h5 {
    margin-bottom: 20px;
  }
  .coin-raise-section__info {
    margin-bottom: 20px;
    flex: 0 0 48%;
    padding: 32px;
    background-color: #F70;
    color: #110F0D;
    border-radius: 8px;
  }
  .coin-raise-section__info-blocks {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .coin-raise-section__info-block {
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    display: flex;
    flex-direction: column;
    white-space: nowrap;
  }
  .coin-raise-section__info-block span {
    font-size: 90px;
    font-style: normal;
    font-weight: 700;
    line-height: 1;
  }
  .coin-raise-section__info-block a {
    display: inline-block;
    border-left: 4px solid #110F0D;
    padding-left: 9px;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: -0.48px;
    text-transform: uppercase;
    color: #110F0D;
  }
  .coin-raise-section .info-blocks-2 .coin-raise-section__info-block {
    display: flex;
    flex-direction: column-reverse;
  }
  .coin-raise-section .info-block-2 {
    display: block !important;
  }
}
@media (max-width: 766.98px) {
  .coin-raise-section {
    margin-top: 100px;
    padding-top: 25px;
    padding-left: 20px;
    padding-right: 20px;
  }
  .coin-raise-section__top {
    display: flex;
    align-items: center;
    align-items: flex-start;
    flex-direction: column;
  }
  .coin-raise-section__center {
    display: flex;
    flex-direction: column;
  }
  .coin-raise-section__center-left {
    flex: 0 0 49%;
  }
  .coin-raise-section__center-left h4 {
    font-size: 26px;
    padding: 5px 20px;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
  .coin-raise-section__center-left h4 span {
    margin-top: 20px;
  }
  .coin-raise-section__center-left .chart-holder {
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 14px;
    padding: 30px 22px 9px;
    flex: 1 1 auto;
  }
  .coin-raise-section__center-left .chart-holder .chart img {
    width: 100%;
  }
  .coin-raise-section__center-left .chart-holder h5 {
    position: absolute;
    font-size: 12px;
  }
  .coin-raise-section__center-left .chart-holder h5 span {
    display: block;
    font-size: 35px;
    border-bottom: 2px solid #fff;
    margin-bottom: 10px;
  }
  .coin-raise-section__center-left .chart-holder h5 p {
    font-size: 7px;
    color: rgba(255, 255, 255, 0.5);
  }
  .coin-raise-section__center-left .chart-block {
    flex-direction: column;
  }
  .coin-raise-section__center-left .chart-info {
    margin-left: 0;
    padding-left: 0;
    margin-top: 20px;
    flex-direction: row;
    align-items: center;
    padding: 20px;
  }
  .coin-raise-section__center-right .top-row span {
    text-align: left;
    margin-bottom: 10px;
  }
  .coin-raise-section__infos {
    margin-top: 30px;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
  }
  .coin-raise-section__infos h5 {
    margin-bottom: 20px;
  }
  .coin-raise-section__info {
    margin-bottom: 20px;
    flex: 0 0 48%;
    padding: 32px;
    background-color: #F70;
    color: #110F0D;
    border-radius: 8px;
  }
  .coin-raise-section__info-blocks {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-direction: column;
  }
  .coin-raise-section__info-block {
    margin-bottom: 20px;
  }
  .coin-raise-section__info-block span {
    font-size: 75px;
  }
  .coin-raise-section .info-blocks-2 .coin-raise-section__info-block {
    display: flex;
    flex-direction: column-reverse;
  }
  .coin-raise-section .info-block-2 {
    display: block !important;
    margin-bottom: 0;
  }
}
.make-money-section {
  margin-top: 200px;
  padding-top: 25px;
  padding-bottom: 60px;
}
.make-money-section h2 {
  font-size: 120px;
  font-style: normal;
  font-weight: 600;
  line-height: 100%; /* 120px */
  letter-spacing: -3.6px;
  text-transform: uppercase;
  color: #F70;
  margin-bottom: 14px;
  font-family: "Bebas Neue", sans-serif;
}
.make-money-section-block {
  display: flex;
  margin-bottom: 20px;
  width: 100%;
}
.make-money-section-block-left {
  display: flex;
  justify-content: space-between;
  padding: 23px;
  background-color: #F70;
  color: #110F0D;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  flex: 1 1 50%;
}
.make-money-section-block-left div {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  font-size: 64px;
  font-weight: 600;
  font-family: "Bebas Neue", sans-serif;
}
.make-money-section-block-left div:nth-child(1) span {
  font-family: "Schibsted Grotesk", sans-serif;
}
.make-money-section-block-left div:last-child {
  text-align: right;
}
.make-money-section-block-left div h6 {
  display: flex;
  flex-direction: column;
  font-size: 64px;
}
.make-money-section-block-left div span {
  padding: 10px;
  border-radius: 4px;
  width: -moz-fit-content;
  width: fit-content;
  background-color: #110F0D;
  color: #F70;
  font-size: 12px;
}
.make-money-section-block-left div p {
  font-size: 18px;
  font-weight: 400;
  font-family: "Schibsted Grotesk", sans-serif;
  margin-bottom: 0;
}
.make-money-section-block-left div h5 {
  font-size: 100px;
  font-family: "Schibsted Grotesk", sans-serif;
  font-weight: 600;
  margin-top: auto;
  line-height: 1;
}
.make-money-section-block-right {
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 12px;
  display: flex;
  padding: 23px;
  color: #110F0D;
  flex: 1 1 50%;
  align-items: center;
  justify-content: space-between;
}
.make-money-section-block-right div {
  font-family: "Schibsted Grotesk", sans-serif;
}
.make-money-section-block-right div h6 {
  font-size: 24px;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 500;
}
.make-money-section-block-right div span {
  color: #FF8820;
  font-size: 96px;
  font-style: normal;
  font-weight: 600;
  line-height: 1;
}
.make-money-section-block-right a {
  color: black;
  width: 48px;
  height: 48px;
  background-color: #F70;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.make-money-section-block-right a span {
  font-size: 14px;
  display: none;
}
.make-money-section-block.orange .make-money-section-block-left div span {
  color: #FF3D00;
}
.make-money-section-block.orange .make-money-section-block-left {
  background-color: #FF3D00;
}
.make-money-section-block.orange .make-money-section-block-right div span {
  color: #FF3D00;
}
.make-money-section-block.orange .make-money-section-block-right a {
  background-color: #FF3D00;
}

@media (max-width: 1199.98px) {
  .make-money-section {
    margin-top: 100px;
    padding-top: 25px;
    padding-bottom: 60px;
  }
  .make-money-section h2 {
    font-size: 90px;
  }
  .make-money-section-block {
    display: flex;
    margin-bottom: 20px;
    width: 100%;
  }
  .make-money-section-block-left {
    display: flex;
    justify-content: space-between;
    padding: 23px;
    background-color: #F70;
    color: #110F0D;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    flex: 1 1 70%;
  }
  .make-money-section-block-left div {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    font-size: 64px;
    font-weight: 600;
    font-family: "Bebas Neue", sans-serif;
  }
  .make-money-section-block-left div:nth-child(1) span {
    font-family: "Schibsted Grotesk", sans-serif;
  }
  .make-money-section-block-left div:last-child {
    text-align: right;
  }
  .make-money-section-block-left div h6 {
    display: flex;
    flex-direction: column;
    font-size: 45px;
  }
  .make-money-section-block-left div span {
    padding: 10px;
    border-radius: 4px;
    width: -moz-fit-content;
    width: fit-content;
    background-color: #110F0D;
    color: #F70;
    font-size: 12px;
  }
  .make-money-section-block-left div p {
    font-size: 18px;
    font-weight: 400;
    font-family: "Schibsted Grotesk", sans-serif;
    margin-bottom: 0;
  }
  .make-money-section-block-left div h5 {
    font-size: 70px;
    font-family: "Schibsted Grotesk", sans-serif;
    font-weight: 600;
    margin-top: auto;
    line-height: 1;
  }
  .make-money-section-block-right {
    flex-wrap: wrap;
    justify-content: flex-start;
    flex: 1 1 30%;
  }
  .make-money-section-block-right div {
    font-family: "Schibsted Grotesk", sans-serif;
    flex: 0 0 40%;
  }
  .make-money-section-block-right div h6 {
    font-size: 13px;
    white-space: nowrap;
  }
  .make-money-section-block-right div span {
    font-size: 36px;
  }
  .make-money-section-block-right a {
    flex: 0 0 60%;
    border-radius: 6px;
  }
  .make-money-section-block-right a span {
    font-size: 14px;
    display: block;
  }
}
@media (max-width: 991.98px) {
  .make-money-section-block {
    flex-direction: column;
  }
  .make-money-section-block-left {
    display: flex;
    justify-content: space-between;
    padding: 23px;
    background-color: #F70;
    color: #110F0D;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    flex: 1 1 70%;
  }
  .make-money-section-block-left div {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    font-size: 64px;
    font-weight: 600;
    font-family: "Bebas Neue", sans-serif;
  }
  .make-money-section-block-left div:nth-child(1) span {
    font-family: "Schibsted Grotesk", sans-serif;
  }
  .make-money-section-block-left div:last-child {
    text-align: right;
  }
  .make-money-section-block-left div h6 {
    display: flex;
    flex-direction: column;
    font-size: 45px;
  }
  .make-money-section-block-left div span {
    padding: 10px;
    border-radius: 4px;
    width: -moz-fit-content;
    width: fit-content;
    background-color: #110F0D;
    color: #F70;
    font-size: 12px;
  }
  .make-money-section-block-left div p {
    font-size: 18px;
    font-weight: 400;
    font-family: "Schibsted Grotesk", sans-serif;
    margin-bottom: 0;
  }
  .make-money-section-block-left div h5 {
    font-size: 70px;
    font-family: "Schibsted Grotesk", sans-serif;
    font-weight: 600;
    margin-top: auto;
    line-height: 1;
  }
  .make-money-section-block-right {
    flex-wrap: wrap;
    justify-content: space-between;
    flex: 1 1 30%;
  }
  .make-money-section-block-right div {
    font-family: "Schibsted Grotesk", sans-serif;
    flex: 0 0 30%;
  }
  .make-money-section-block-right div h6 {
    font-size: 13px;
    white-space: nowrap;
  }
  .make-money-section-block-right div span {
    font-size: 36px;
  }
  .make-money-section-block-right a {
    flex: 0 0 30%;
    border-radius: 6px;
    height: 35px;
  }
  .make-money-section-block-right a span {
    font-size: 14px;
    display: block;
  }
}
.part-section {
  position: relative;
  margin-top: 110px;
}
.part-section h2 {
  font-size: 110px;
  font-style: normal;
  font-weight: 600;
  line-height: 100%; /* 150px */
  letter-spacing: -2.5px;
  text-transform: uppercase;
  font-family: "Bebas Neue", sans-serif;
  margin-top: 25px;
  margin-bottom: 35px;
  position: relative;
  color: #F70;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
}
.part-section h2 span {
  max-width: 80%;
}
.part-section h2 .blur {
  display: block;
  width: 163px;
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
  background-color: #F70;
}
.part-section h2 .blur::after {
  position: absolute;
  content: "";
  top: 0;
  right: 0;
  width: 300px;
  height: 300px;
  border-radius: 355px;
  background: #FF8820;
  filter: blur(187.4999847412px);
}
.part-section-blocks {
  display: flex;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
}
.part-section-block {
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 175%; /* 35px */
  letter-spacing: -0.6px;
  padding: 20px 20px;
  flex: 0 0 50%;
}
.part-section-block:last-child {
  border-left: 1px solid rgba(255, 255, 255, 0.25);
}

@media (max-width: 1199.98px) {
  .part-section {
    position: relative;
    margin-top: 110px;
  }
  .part-section h2 {
    font-size: 90px;
    margin-bottom: 15px;
    padding: 0 20px;
  }
  .part-section h2 .blur {
    display: block;
    width: 113px;
    height: 100%;
    position: absolute;
    right: 0;
    top: 0;
    background-color: #F70;
  }
  .part-section h2 .blur::after {
    position: absolute;
    content: "";
    top: 0;
    right: 0;
  }
  .part-section-blocks {
    display: flex;
  }
  .part-section-block {
    font-size: 15px;
    padding: 20px 20px;
    flex: 0 0 50%;
  }
  .part-section-block:last-child {
    border-left: 1px solid rgba(255, 255, 255, 0.25);
  }
}
@media (max-width: 766.98px) {
  .part-section {
    position: relative;
    margin-top: 110px;
  }
  .part-section h2 {
    font-size: 60px;
    margin-bottom: 15px;
    padding: 0 20px;
  }
  .part-section-blocks {
    display: flex;
    flex-direction: column;
  }
  .part-section-block {
    font-size: 15px;
    padding: 20px 20px;
    flex: 0 0 50%;
  }
  .part-section-block:last-child {
    border-left: none;
    border-top: 1px solid rgba(255, 255, 255, 0.25);
  }
}
p {
  margin-bottom: 0;
}

.road-map {
  margin-top: 130px;
  padding-left: 20px;
  padding-right: 20px;
}
.road-map__title {
  display: flex;
  align-items: center;
  margin-bottom: 50px;
}
.road-map__title h2 {
  margin-right: 30px;
  font-size: 70px;
  font-style: normal;
  font-weight: 600;
  line-height: 100%; /* 52.5px */
  letter-spacing: -1.575px;
  text-transform: uppercase;
  color: #F70;
}
.road-map__title p {
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%; /* 18px */
  letter-spacing: -0.45px;
  max-width: 550px;
}
.road-map__line {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.road-map__line-item {
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  width: 350px;
  padding-bottom: 35px;
  position: relative;
  overflow: hidden;
  padding-top: 24px;
  position: absolute;
}
.road-map__line-item h5 {
  font-size: 36px;
  font-family: "Bebas Neue", sans-serif;
  font-style: normal;
  font-weight: 600;
  line-height: 100%; /* 36px */
  letter-spacing: -1.08px;
  text-transform: uppercase;
  margin-bottom: 10px;
  color: #F70;
  padding: 0 20px;
}
.road-map__line-item p {
  font-size: 18px;
  font-style: normal;
  line-height: 120%; /* 21.6px */
  letter-spacing: -0.54px;
  text-transform: uppercase;
  margin-bottom: 40px;
  padding: 0 20px;
}
.road-map__line-item span {
  position: absolute;
  background-color: #F70;
  color: #fff;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 35px;
  padding: 6px 20px;
  line-height: 1;
  font-weight: 600;
  display: flex;
  align-items: center;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
}
.road-map__line-item:nth-child(1) {
  left: 0;
  top: 0;
}
.road-map__line-item:nth-child(2) {
  right: 0;
  top: 40px;
}
.road-map__line-item:nth-child(3) {
  bottom: 0;
  left: 40%;
}
.road-map__line-inner {
  position: relative;
  height: 100%;
}
.road-map__line-inner .left-blur {
  width: 400px;
  height: 400px;
  border-radius: 473px;
  background: #FF8820;
  filter: blur(250px);
  position: absolute;
  left: 0;
  bottom: 0;
}
.road-map__line-holder {
  padding-top: 60%;
  position: relative;
}
.road-map__line-holder .line {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

@media (max-width: 1199.98px) {
  .road-map {
    margin-top: 100px;
  }
  .road-map__title {
    display: flex;
    align-items: center;
    margin-bottom: 40px;
  }
  .road-map__title h2 {
    margin-right: 30px;
    font-size: 52.5px;
  }
  .road-map__title p {
    font-size: 15px;
    max-width: 400px;
  }
}
@media (max-width: 766.98px) {
  .road-map {
    margin-top: 100px;
  }
  .road-map__title {
    flex-direction: column;
    align-items: flex-start;
  }
  .road-map__title h2 {
    margin-bottom: 10px;
  }
  .road-map .road-map__line-holder {
    padding-top: 0;
  }
  .road-map .road-map__line {
    position: relative;
  }
  .road-map .road-map__line-item {
    position: relative;
    left: 0;
    right: 0;
    bottom: auto;
    top: 0;
    width: 100%;
    margin-bottom: 20px;
  }
}
.experts-section {
  margin-top: 150px;
}
.experts-section__title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-left: 20px;
  padding-right: 20px;
  margin-bottom: 30px;
}
@media (max-width: 766.98px) {
  .experts-section__title {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 20px;
  }
}
.experts-section__title .br-btn {
  color: #fff !important;
}
.experts-section__title span.title {
  font-family: "Bebas Neue", sans-serif;
  font-size: 70px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%; /* 70px */
  text-transform: uppercase;
  color: #F70;
  white-space: nowrap;
  margin-right: 20px;
}
@media (max-width: 1199.98px) {
  .experts-section__title span.title {
    font-size: 50px;
  }
}
@media (max-width: 766.98px) {
  .experts-section__title span.title {
    margin-bottom: 20px;
  }
}
.experts-section__title p {
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 175%; /* 35px */
  letter-spacing: -0.6px;
  text-transform: uppercase;
  max-width: 540px;
}
.experts-section__title p span {
  color: #F70;
}
@media (max-width: 1199.98px) {
  .experts-section__title p {
    font-size: 15px;
    max-width: 300px;
  }
}
@media (max-width: 766.98px) {
  .experts-section__title p {
    margin-bottom: 20px;
  }
}
.experts-section__title a {
  white-space: nowrap;
}
@media (max-width: 1199.98px) {
  .experts-section__title a {
    font-size: 12px;
  }
}
.experts-section__items {
  padding: 0 20px;
}
.experts-section__item {
  border-top: 1px solid rgba(255, 255, 255, 0.25);
  padding-top: 20px;
  padding-bottom: 40px;
  max-width: 1440px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}
.experts-section__item .experts-section__name {
  font-size: 30px;
  font-style: normal;
  font-weight: 600;
  line-height: 120%; /* 36px */
  letter-spacing: -0.9px;
  text-transform: uppercase;
}
.experts-section__item .experts-section__name a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-transform: uppercase;
  width: 100%;
}
.experts-section__item .experts-section__name a span {
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%; /* 24px */
  letter-spacing: -0.6px;
  text-transform: uppercase;
  max-width: 320px;
  width: 100%;
}
@media (max-width: 1199.98px) {
  .experts-section__item .experts-section__name a span {
    max-width: 250px;
  }
}
.experts-section__item .experts-section__name a div {
  max-width: 350px;
}
.experts-section .experts-section__item {
  background-color: #F70;
}
.experts-section .experts-section__item:has(.collapsed) {
  background-color: #110F0D;
}
.experts-section a:not(.collapsed) {
  color: #110F0D;
}
.experts-section .experts-section__item-body {
  position: relative;
  margin-top: 30px;
  color: #110F0D;
}
.experts-section .experts-section__item-body span {
  font-size: 20px;
}
.experts-section .experts-section__item-body .socs {
  margin-top: 50px;
  margin-bottom: 150px;
}
@media (max-width: 1199.98px) {
  .experts-section .experts-section__item-body .socs {
    margin-bottom: 230px;
  }
}
.experts-section .experts-section__item-body .socs a + a {
  margin-left: 20px;
}
.experts-section .experts-section__item-body .img-holder {
  position: absolute;
  left: 50%;
  top: -80px;
  transform: translateX(-50%);
  width: 300px;
  height: 360px;
}
@media (max-width: 1199.98px) {
  .experts-section .experts-section__item-body .img-holder {
    top: 0px;
  }
}
.experts-section .experts-section__item-body .img-holder-inner {
  position: relative;
  width: 100%;
  height: 100%;
}
.experts-section .experts-section__item-body .img-holder-inner img {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 12px;
}

@media (max-width: 766.98px) {
  .experts-section .experts-section__item {
    position: relative;
    background: #fff;
    max-width: 375px;
  }
  .coll {
    z-index: 1;
    position: relative;
    flex-direction: column;
    align-items: flex-start;
  }
  .coll span {
    text-align: center;
  }
  .coll.collapsed {
    flex-direction: row;
    align-items: center;
    gap: 10px;
  }
  .coll.collapsed span {
    text-align: right;
  }
  .experts-section__item-body {
    position: inherit;
  }
  .experts-section__item-body span {
    position: inherit;
    z-index: 1;
  }
  .experts-section__item-body .socs {
    z-index: 1;
    position: relative;
    margin-bottom: 48px;
  }
  .experts-section__item-body .img-holder {
    width: 100%;
    left: 0;
    top: 0;
    transform: translateX(0);
    height: 100%;
    mix-blend-mode: luminosity;
    background-blend-mode: hard-light, normal;
    opacity: 0.5;
  }
  .experts-section__item-body .img-holder-inner {
    position: absolute;
    left: 0;
    top: 0;
  }
}
.faq-section {
  margin-top: 100px;
  padding-top: 40px;
  padding-bottom: 50px;
}
.faq-section__title {
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
}
@media (max-width: 766.98px) {
  .faq-section__title {
    flex-direction: column;
    align-items: flex-start;
  }
}
.faq-section__title h3 {
  font-size: 70px;
  font-style: normal;
  font-weight: 600;
  line-height: 100%; /* 70px */
  letter-spacing: -0.1px;
  text-transform: uppercase;
  font-family: "Bebas Neue", sans-serif;
  color: #F70;
}
@media (max-width: 766.98px) {
  .faq-section__title h3 {
    margin-bottom: 20px;
  }
}
.faq-section .nav {
  margin-bottom: 30px;
  padding: 0 20px;
}
.faq-section .nav a {
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 120%; /* 24px */
  letter-spacing: -0.6px;
  text-transform: uppercase;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  padding: 10px 25px;
  color: rgba(255, 255, 255, 0.5);
}
.faq-section .nav li {
  margin-right: 15px;
  margin-bottom: 20px;
  display: block;
}
.faq-section .nav a.active {
  border-radius: 8px;
  border: 1px solid #F70;
  background: #F70;
  color: #110F0D;
}
.faq-section .tab-content {
  padding: 20px;
}
.faq-section .accordion_a {
  font-size: 96px;
  font-style: normal;
  font-weight: 600;
  line-height: 100%; /* 96px */
  letter-spacing: -0.88px;
  text-transform: uppercase;
  font-family: "Bebas Neue", sans-serif;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
  padding-top: 20px;
  padding-bottom: 20px;
  display: block;
}
@media (max-width: 1199.98px) {
  .faq-section .accordion_a {
    font-size: 70px;
  }
}
@media (max-width: 766.98px) {
  .faq-section .accordion_a {
    font-size: 45px;
  }
}
.faq-section .accordion .accordion_block a {
  color: rgba(255, 255, 255, 0.5);
}
.faq-section .accordion .accordion_block:nth-child(1) a {
  color: #F70;
}
.faq-section .accordion .accordion_block:nth-child(2) a {
  color: #fff;
}
.faq-section .accordion_body {
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 120%; /* 24px */
  letter-spacing: -0.6px;
  padding-bottom: 25px;
  color: rgba(255, 255, 255, 0.5);
}

.content {
  overflow-x: hidden;
}

.how {
  margin-top: 150px;
  padding: 0 20px;
  padding-top: 40px;
  padding-bottom: 150px;
  position: relative;
}
.how .bg-shadow {
  width: 100%;
  height: 40%;
  border-radius: 1647px;
  background: #FF8820;
  filter: blur(325px);
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.how .bg {
  margin: 0 auto -60px;
  display: block;
  width: 75%;
  z-index: -1;
  position: relative;
}
@media (max-width: 1199.98px) {
  .how .bg {
    font-size: 11px;
    margin-bottom: 20px;
  }
}
.how__cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.how__card {
  width: 547px;
  height: 352px;
  border-radius: 12px;
  background-color: #fff;
  color: #110F0D;
  padding: 20px;
  position: relative;
  margin-bottom: 15px;
  margin-right: 15px;
}
@media (max-width: 1199.98px) {
  .how__card {
    width: 320px;
    height: 200px;
  }
}
@media (max-width: 766.98px) {
  .how__card {
    margin-bottom: 40px;
    margin-right: 0;
  }
}
.how__card h3 {
  font-size: 86px;
  font-style: normal;
  font-weight: 600;
  line-height: 100%; /* 96px */
  letter-spacing: -0.88px;
  text-transform: uppercase;
  font-family: "Bebas Neue", sans-serif;
}
@media (max-width: 1199.98px) {
  .how__card h3 {
    font-size: 55px;
  }
}
.how__card p {
  font-size: 14px;
  max-width: 200px;
  font-weight: 500;
}
@media (max-width: 1199.98px) {
  .how__card p {
    font-size: 11px;
  }
}
.how__card span {
  position: absolute;
  right: 20px;
  bottom: 20px;
  font-size: 45px;
  font-family: "Bebas Neue", sans-serif;
  color: rgba(0, 0, 0, 0.5);
  line-height: 1;
}
.how__card img {
  position: absolute;
}
@media (max-width: 1199.98px) {
  .how__card img {
    width: 200px;
  }
}
.how__card:nth-child(1) img {
  left: -50px;
  bottom: -130px;
}
.how__card:nth-child(2) img {
  right: -50px;
  top: -40px;
}
.how__card:nth-child(3) {
  margin-left: 230px;
}
@media (max-width: 1429.98px) {
  .how__card:nth-child(3) {
    margin-left: 0px;
  }
}
.how__card:nth-child(3) img {
  left: -50px;
  bottom: -130px;
}
.how__card:nth-child(4) img {
  left: 110px;
  bottom: -70px;
}

.allocation {
  margin-top: 100px;
}
.allocation__title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-left: 20px;
  padding-right: 20px;
  padding-top: 20px;
  padding-bottom: 20px;
  margin-bottom: 30px;
}
@media (max-width: 766.98px) {
  .allocation__title {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 20px;
  }
}
.allocation__title .br-btn {
  color: #fff !important;
}
.allocation__title span.title {
  font-family: "Bebas Neue", sans-serif;
  font-size: 70px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%; /* 70px */
  text-transform: uppercase;
  color: #F70;
  white-space: nowrap;
  margin-right: 20px;
}
@media (max-width: 1199.98px) {
  .allocation__title span.title {
    font-size: 50px;
  }
}
@media (max-width: 766.98px) {
  .allocation__title span.title {
    margin-bottom: 20px;
  }
}
.allocation__title p {
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 175%; /* 35px */
  letter-spacing: -0.6px;
  max-width: 320px;
}
.allocation__title p span {
  color: #F70;
}
@media (max-width: 1199.98px) {
  .allocation__title p {
    font-size: 15px;
    max-width: 300px;
  }
}
@media (max-width: 766.98px) {
  .allocation__title p {
    margin-bottom: 20px;
  }
}
.allocation__title a {
  white-space: nowrap;
}
@media (max-width: 1199.98px) {
  .allocation__title a {
    font-size: 12px;
  }
}
.allocation .start {
  padding-left: 20px;
  padding-right: 20px;
  font-family: "Schibsted Grotesk", sans-serif;
  display: flex;
}
@media (max-width: 766.98px) {
  .allocation .start {
    padding-left: 10px;
    padding-right: 10px;
  }
}
@media (max-width: 1199.98px) {
  .allocation .start {
    flex-direction: column;
  }
}
.allocation .start__left {
  flex: 0 0 50%;
  color: #110F0D;
  padding: 40px 30px 12px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: var(--Accented, #F70);
  box-shadow: 0px 1px 0px 0px rgba(255, 255, 255, 0.35) inset;
}
.allocation .start__left h6 {
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 89.937%; /* 21.585px */
  letter-spacing: -1.44px;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.allocation .start__left .date {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.allocation .start__left .date__num {
  font-size: 96px;
  font-style: normal;
  font-weight: 600;
  line-height: 89.937%; /* 86.34px */
  letter-spacing: -5.76px;
  text-transform: uppercase;
  text-align: center;
}
@media (max-width: 766.98px) {
  .allocation .start__left .date__num {
    font-size: 48px;
  }
}
.allocation .start__left .date__num span {
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 89.937%; /* 14.39px */
  letter-spacing: -0.96px;
  display: block;
  text-align: center;
  margin-top: 10px;
  color: rgba(0, 0, 0, 0.5);
}
.allocation .start__left .devider-row {
  margin-top: 40px;
  margin-bottom: 60px;
  width: 100%;
  height: 1px;
  background-color: #110F0D;
}
.allocation .start__left .progr {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 766.98px) {
  .allocation .start__left .progr {
    flex-direction: column;
  }
}
.allocation .start__left .progr__row {
  flex: 0 0 55%;
  border-radius: 6px;
  background: rgba(111, 52, 0, 0.25);
  position: relative;
}
@media (max-width: 766.98px) {
  .allocation .start__left .progr__row {
    flex: auto;
    height: 100px;
    width: 100%;
    margin-bottom: 10px;
  }
}
.allocation .start__left .progr__row-inner {
  position: absolute;
  top: 0;
  left: 0;
  background-color: #110F0D;
  height: 100%;
  border-radius: 8px;
  min-height: 100px;
}
.allocation .start__left .progr__num {
  flex: 0 0 40%;
  font-size: 128px;
  font-style: normal;
  font-weight: 600;
  line-height: 89.937%; /* 115.12px */
  letter-spacing: -7.68px;
  text-transform: uppercase;
}
@media (max-width: 766.98px) {
  .allocation .start__left .progr__num {
    flex: 1 1 100%;
  }
}
.allocation .start__right {
  flex: 0 0 50%;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 12px;
  padding: 20px 20px 10px 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.allocation .start__right p {
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 175%; /* 35px */
  letter-spacing: -0.6px;
  text-transform: uppercase;
}
@media (max-width: 1199.98px) {
  .allocation .start__right p {
    margin-bottom: 50px;
  }
}
.allocation .start__right-info {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 766.98px) {
  .allocation .start__right-info {
    flex-direction: column;
  }
}
.allocation .start__right-info__item {
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 175%; /* 35px */
  letter-spacing: -0.6px;
  color: rgba(255, 255, 255, 0.5);
}
.allocation .start__right-info__item span {
  font-size: 48px;
  font-style: normal;
  font-weight: 600;
  line-height: 89.937%; /* 43.17px */
  letter-spacing: -2.88px;
  font-family: "Schibsted Grotesk", sans-serif;
  display: block;
  color: rgb(255, 255, 255);
}
.allocation .start__right-info__total {
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 175%; /* 35px */
  letter-spacing: -0.6px;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (max-width: 766.98px) {
  .allocation .start__right-info__total {
    margin-top: 30px;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.25);
  }
}
.allocation .start__right-info__total span {
  color: rgba(255, 255, 255, 0.5);
}
.allocation .start__right-info__total p {
  font-size: 128px;
  color: #F70;
  line-height: 1;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
  font-weight: 700;
  margin-top: 40px;
}
@media (max-width: 1399.98px) {
  .allocation .start__right-info__total p {
    font-size: 90px;
    margin-bottom: 0;
  }
}
@media (max-width: 766.98px) {
  .allocation .start__right-info__total p {
    border: none;
    margin-top: 0;
  }
}
.allocation .start__right-info .dev-line {
  height: 1px;
  margin-top: 20px;
  margin-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}

.supporters {
  margin-top: 100px;
  padding-left: 20px;
  padding-right: 20px;
}
.supporters__title {
  font-size: 70px;
  font-style: normal;
  font-weight: 600;
  line-height: 100%; /* 70px */
  letter-spacing: -0.1px;
  text-transform: uppercase;
  color: #F70;
  font-family: "Bebas Neue", sans-serif;
  margin-bottom: 50px;
  max-width: 400px;
}
@media (max-width: 766.98px) {
  .supporters__title {
    font-size: 50px;
  }
}
.supporters__list {
  display: flex;
  justify-content: center;
  gap: 20px;
}
.supporters__list-item {
  width: 270px;
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 22.094px;
  border: 0.85px solid #C9C9C9;
  background: rgba(255, 255, 255, 0);
}
.supporters__list-item img {
  max-width: 80%;
  max-height: 80%;
  mix-blend-mode: luminosity;
}

input {
  box-shadow: none;
  border: none;
  outline: none;
}

.footer {
  margin-top: 100px;
  display: flex;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
}
@media (max-width: 766.98px) {
  .footer {
    flex-wrap: wrap;
  }
}
.footer__left {
  flex: 0 0 33.33%;
  height: 100%;
  padding: 75px 30px 50px;
  background-color: #F70;
  height: auto;
}
@media (max-width: 1199.98px) {
  .footer__left {
    flex: 0 0 50%;
  }
}
@media (max-width: 766.98px) {
  .footer__left {
    flex: 0 0 100%;
  }
}
.footer__left h2 {
  font-size: 70px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%; /* 70px */
  text-transform: uppercase;
  font-family: "Bebas Neue", sans-serif;
  margin-bottom: 14px;
  color: #110F0D;
}
.footer__left p {
  color: var(--Gray, #363636);
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 120%; /* 24px */
  letter-spacing: -0.6px;
  margin-bottom: 50px;
}
.footer__left span {
  color: var(--Gray, #363636);
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 120%; /* 24px */
  letter-spacing: -0.6px;
  display: block;
  margin-bottom: 20px;
}
.footer__left input {
  background-color: transparent;
  border-bottom: 1px solid rgba(217, 217, 217, 0.4);
  margin-bottom: 40px;
  width: 100%;
}
.footer__left input::-moz-placeholder {
  color: #110F0D;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%; /* 16.8px */
  letter-spacing: -0.42px;
}
.footer__left input::placeholder {
  color: #110F0D;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%; /* 16.8px */
  letter-spacing: -0.42px;
}
.footer__left .bl-btn {
  border-radius: 50px;
  background: var(--black, #110F0D);
  padding: 13px 75px;
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  letter-spacing: -0.48px;
  text-transform: uppercase;
  display: inline-block;
}
.footer__black {
  flex: 0 0 66.66%;
  display: flex;
}
@media (max-width: 1199.98px) {
  .footer__black {
    flex: 0 0 50%;
    flex-wrap: wrap;
    border-right: 1px solid rgba(255, 255, 255, 0.25);
  }
}
@media (max-width: 766.98px) {
  .footer__black {
    flex: 0 0 100%;
    border-left: 1px solid rgba(255, 255, 255, 0.25);
  }
}
.footer__center {
  flex: 0 0 50%;
  padding: 75px 30px 50px 60px;
  border-right: 1px solid rgba(255, 255, 255, 0.25);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (max-width: 1299.98px) {
  .footer__center {
    padding: 75px 10px 50px 30px;
  }
}
@media (max-width: 1199.98px) {
  .footer__center {
    flex: 0 0 100%;
    padding-bottom: 20px;
    border: none;
  }
}
.footer__center ul {
  display: flex;
  margin-bottom: 30px;
  flex-wrap: wrap;
}
.footer__center ul li + li {
  margin-left: 20px;
}
.footer__center ul li a {
  text-transform: uppercase;
  white-space: nowrap;
  font-size: 16px;
}
.footer__center .socials {
  display: flex;
  max-width: 250px;
  flex-wrap: wrap;
  gap: 12px;
}
@media (max-width: 1199.98px) {
  .footer__center .socials {
    max-width: 200px;
  }
}
.footer__center .socials a {
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.05);
}
.footer__center .c {
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: 120%; /* 14.4px */
  letter-spacing: -0.36px;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 20px;
}
@media (max-width: 1199.98px) {
  .footer__center .c {
    margin-top: 45px;
  }
}
.footer__right {
  flex: 0 0 50%;
  padding: 75px 30px 50px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-right: 1px solid rgba(255, 255, 255, 0.25);
}
@media (max-width: 1199.98px) {
  .footer__right {
    flex: 0 0 100%;
    padding-top: 20px;
    border: none;
  }
}
.footer__right p {
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 175%; /* 35px */
  letter-spacing: -0.6px;
  text-transform: uppercase;
  margin-bottom: 30px;
}
@media (max-width: 1299.98px) {
  .footer__right p {
    font-size: 15px;
  }
}
.footer__right .docs {
  display: flex;
  flex-wrap: wrap;
}
.footer__right .docs a {
  display: block;
  flex: 0 0 49%;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: -0.48px;
  text-transform: uppercase;
  margin-top: 17px;
}
.footer__right span.docs-span {
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: 120%; /* 14.4px */
  letter-spacing: -0.36px;
  margin-bottom: 25px;
  display: block;
  color: rgba(255, 255, 255, 0.5);
}

.sign {
  font-family: "Schibsted Grotesk", sans-serif;
}
.sign .input-holder {
  display: flex;
  flex-direction: column;
  margin-top: 30px;
}
@media (max-width: 766.98px) {
  .sign .input-holder {
    margin-bottom: 17px;
    margin-top: 0;
  }
}
.sign .input-holder label {
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  margin-bottom: 15px;
}
@media (max-width: 766.98px) {
  .sign .input-holder label {
    font-size: 16px;
    margin-bottom: 7px;
  }
}
.sign .input-holder input {
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  width: 100%;
  border-radius: 5px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.05);
  padding: 14px 5px;
}
@media (max-width: 766.98px) {
  .sign .input-holder input {
    padding: 7px 5px;
    font-size: 16px;
  }
}
.sign .bottom_p {
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: -1.08px;
  margin-top: 30px;
}
@media (max-width: 766.98px) {
  .sign .bottom_p {
    font-size: 16px;
  }
}
.sign .bottom_p a {
  color: #F70;
}
.sign .orange-btn {
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: -1.08px;
  display: inline-block;
  padding: 14px 16px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: var(--Accented, #F70);
  margin: 30px auto 30px;
}
.sign .orange-btn span {
  margin-left: 30px;
}
.sign .grey-btn {
  color: #fff;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: -1.08px;
  display: inline-block;
  padding: 14px 16px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.05);
  margin: 30px auto 30px;
}
.sign .grey-btn span {
  margin-left: 30px;
}
.sign .buttons {
  display: flex;
  margin: 0 auto;
  white-space: nowrap;
  flex-wrap: wrap;
}
@media (max-width: 399.98px) {
  .sign .buttons {
    justify-content: center;
  }
}
.sign .buttons button + button {
  margin-left: 20px;
}
@media (max-width: 399.98px) {
  .sign .buttons button + button {
    margin-left: 0;
  }
}
@media (max-width: 399.98px) {
  .sign .buttons button {
    width: 100%;
    margin: 0;
    max-width: 250px;
    margin-top: 20px;
  }
}

.modal .modal-dialog {
  max-width: 80%;
}
@media (max-width: 766.98px) {
  .modal .modal-dialog {
    max-width: 100%;
  }
}
.modal .modal-content {
  background-color: #110F0D;
  color: #fff;
  border-radius: 24px;
}
.modal .modal-header {
  border: none;
  padding-left: 48px;
  padding-right: 48px;
}
.modal .modal-title {
  font-size: 36px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: -2.16px;
  font-family: "Schibsted Grotesk", sans-serif;
}
.modal .modal-body {
  padding-left: 48px;
  padding-right: 48px;
}
@media (max-width: 766.98px) {
  .modal .modal-body {
    padding-left: 18px;
    padding-right: 18px;
  }
}/*# sourceMappingURL=style.css.map */