.overflow-x {
  overflow: hidden;
  padding: 20px 0;
  margin-top: -20px;
}

.hero {
  padding: 0 15px;
  padding-top: 21px;
  position: relative;
}
@media (max-width: 1024px) {
  .hero {
    padding: 0 24px;
    padding: 25px;
    overflow: hidden;
  }
}
.hero-image {
  position: absolute;
  right: -33px;
  width: 100%;
  max-width: 924px;
  bottom: -35px;
}
@media (max-width: 1280px) {
  .hero-image {
    max-width: 724px;
    bottom: -28px;
  }
}
@media (max-width: 1024px) {
  .hero-image {
    max-width: 624px;
    bottom: -24px;
  }
}
@media (max-width: 767px) {
  .hero-image {
    display: none;
  }
}
.hero__wrap {
  position: relative;
  border-radius: 16px;
  background-repeat: no-repeat;
  min-height: 320px;
  padding: 64px 0;
  background-size: cover;
  max-width: 1440px;
}
@media (max-width: 1024px) {
  .hero__wrap {
    padding: 22px 24px;
  }
}
@media (max-width: 767px) {
  .hero__wrap {
    padding-bottom: 0;
  }
}
.hero__left {
  max-width: 450px;
  position: relative;
  z-index: 5;
  margin-left: 49px;
}
@media (max-width: 1024px) {
  .hero__left {
    margin-left: 0;
  }
}
@media (max-width: 767px) {
  .hero__left {
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}
@media (max-width: 576px) {
  .hero__left {
    align-items: flex-start;
  }
}
.hero__title {
  font-family: "Play";
  font-weight: 700;
  font-size: 32px;
  line-height: 37px;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  color: #EBEBEB;
}
@media (max-width: 1024px) {
  .hero__title {
    font-size: 24px;
    line-height: 28px;
  }
}
.hero__description {
  font-family: "SF Pro Display";
  font-weight: 400;
  font-size: 16px;
  line-height: 19px;
  color: #EBEBEB;
  margin-top: 18px;
}
.hero__flex {
  display: flex;
  margin-top: 33px;
  gap: 24px;
}
@media (max-width: 576px) {
  .hero__flex {
    flex-direction: column;
    width: 100%;
    margin-top: 24px;
    gap: 17px;
  }
}
.hero-image-mobile {
  display: none;
}
@media (max-width: 767px) {
  .hero-image-mobile {
    display: block;
    max-width: 400px;
    margin: 0 auto;
  }
}
@media (max-width: 476px) {
  .hero-image-mobile {
    margin-left: -14px;
  }
}

.cent {
  position: absolute;
  top: 16px;
  right: 48px;
  display: none;
  z-index: 1;
}
@media (max-width: 767px) {
  .cent {
    display: block;
  }
}

.green-button, .purple-button {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 14px 27px;
  gap: 8px;
  background: linear-gradient(92.94deg, rgba(114, 240, 55, 0.84) -0.05%, rgba(114, 240, 55, 0.84) 51.09%, rgba(216, 255, 143, 0.84) 96.43%);
  box-shadow: 0px 2px 0px #45B517, inset 0px 2px 0px #9AFF6D;
  border-radius: 12px;
  font-family: "Play";
  font-weight: 700;
  font-size: 16px;
  line-height: 19px;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: #090A0C;
  width: fit-content;
  cursor: pointer;
  text-decoration: none;
  transition: background-image 0.3s ease;
  position: relative;
}
@media (max-width: 576px) {
  .green-button, .purple-button {
    width: 100%;
  }
}

.green-button:hover {
  background-image: linear-gradient(92.94deg, #72F037 -0.05%, #72F037 51.09%, #D8FF8F 96.43%);
}

.purple-button {
  background-image: linear-gradient(93.47deg, rgba(131, 88, 255, 0.84) -0.05%, rgba(103, 70, 201, 0.84) 72.07%, rgba(59, 161, 255, 0.84) 137.33%);
  box-shadow: 0px 2px 0px #4F34A0, inset 0px 2px 0px #9779F0;
  border-radius: 12px;
  padding: 11px 24px;
  color: #EBEBEB;
}
.purple-button:hover {
  background-image: linear-gradient(93.47deg, #8358FF -0.05%, #6746C9 72.07%, #3BA1FF 137.33%);
}