body {
  background-color: #000000;
  color: #ffffff;
  font-family: "Montserrat", sans-serif;
  overflow-x: hidden;
}

.container {
  position: relative;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 30px;
}

.button {
  position: relative;
  padding: 12px 17px;
  z-index: 1;
  background-color: transparent;
}

.button::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border: 2px solid #AA98FF;
  border-radius: 1000px;
  transition: 0.5s ease-in-out;
}

.button::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-color: #7C96CF;
  filter: blur(50px);
  z-index: -1;
}

.button:hover {
  background: linear-gradient(90deg, #AA98FF, #4C52FF);
  border-radius: 1000px;
}

.button:hover.button::after {
  width: calc(100% + 20px);
  height: calc(100% + 20px);
}

.title-block {
  text-align: center;
  font-size: 50px;
  font-weight: 600;
  padding: 35px 0;
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
}

@media (max-width: 660px) {
  .title-block {
    font-size: 32px;
    padding: 16px 0;
  }
}

.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 32px 0;
}

.header__logo {
  width: 137px;
  height: 64px;
}

.header__content {
  display: flex;
  align-items: center;
  gap: 60px;
}

.header__list {
  display: flex;
  align-items: center;
  gap: 40px;
  font-weight: 500;
}

.header__btn {
  font-size: 17px;
  font-weight: 600;
}

@media (max-width: 860px) {
  .header__btn {
    display: none;
  }
}

@media (max-width: 660px) {
  .header__list {
    display: none;
  }

  .header__logo {
    width: 80px;
    height: 36px;
  }
}

.hero {
  position: relative;
}

.hero__inner {
  position: relative;
  padding-top: 76px;
  padding-bottom: 150px;
  display: flex;
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 660px;
}

.hero__sub-title {
  color: #78B5FF;
  font-weight: 600;
  margin-bottom: 20px;
}

.hero__title {
  font-size: 40px;
  line-height: 40px;
  font-weight: 600;
}

.hero__description {
  width: 70%;
  margin-top: 25px;
  font-weight: 600;
  margin-bottom: 20px;
}

.hero__button {
  font-weight: 600;
  padding: 20px 60px;
}

.hero__title span {
  color: #78B5FF;
}

.hero__choose {
  margin-top: 80px;
  width: 100%;
}

.hero__choose-text {
  font-size: 25px;
  text-align: center;
}

.hero__choose-list {
  margin-top: 55px;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 27px;
}

.hero__choose-list li {
  flex: 1;
  font-size: 23px;
  font-weight: 600;
}

.hero__choose-list li button {
  width: 100%;
}

.hero__phone-img {
  position: absolute;
  right: -300px;
  bottom: 0;
  width: 725px;
  height: 650px;
}

.hero__bg-img {
  position: absolute;
  top: 0;
  left: 0;
}

@media (max-width: 860px) {
  .hero__content {
    max-width: 100%;
    width: 100%;
  }

  .hero__inner {
    position: relative;
    padding-top: 30px;
    padding-bottom: 0px;
    flex-direction: column;
  }

  .hero__phone-img {
    position: relative;
    width: 100%;
    height: auto;
    right: 0px;
    bottom: 0;
  }
}

@media (max-width: 660px) {
  .hero__title {
    text-align: center;
  }

  .hero__sub-title {
    text-align: center;
    width: fit-content;
    margin: 0 auto;
  }

  .hero__description {
    text-align: center;
    width: 100%;
  }

  .hero__button-wrapper {
    width: fit-content;
    margin: 0 auto;
  }

  .hero__choose {
    margin-top: 80px;
    width: 100%;
  }
}

@media (max-width: 530px) {
  .hero__title {
    font-size: 17px;
    line-height: 26px;
  }

  .hero__choose {
    margin-top: 50px;
    width: 100%;
  }

  .hero__choose-text {
    font-size: 12px;
    text-align: center;
  }

  .hero__choose-list {
    margin-top: 35px;
    gap: 10px;
  }

  .hero__choose-list li {
    font-size: 10px;
  }

  .hero__choose-list li button {
    width: 100%;
  }

  .hero__button {
    padding: 15px 40px;
  }
}

.coins {
  border-top: 1px solid #4A4A4A;
  border-bottom: 1px solid #4A4A4A;
  background-color: #1F1F1F;
  padding: 10px;
  overflow: hidden;
  /* прячем лишнее */
}

.coins__list {
  display: flex;
  align-items: center;
  gap: 16px;
  width: max-content;
  /* растягиваем под контент */
  animation: scroll 30s linear infinite;
  /* бесконечная прокрутка */
}

@keyframes scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
    /* уезжаем на половину ширины */
  }
}

.coins__item {
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}

.coins__header {
  display: flex;
  align-items: center;
  gap: 10px;
}

.coins__list li img {
  border-radius: 50%;
}

.coins__item-title {
  font-weight: bold;
}

.coins__item-change {
  color: #F23645;
}

.coins__item.green .coins__item-change {
  color: #089981;
}

.coins__divider {
  height: 20px;
  width: 2px;
  background-color: #4A4A4A;
}

@media (max-width: 530px) {
  .coins__item {
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 0px;
    white-space: nowrap;
    font-size: 14px;
  }

  .coins__divider {
    height: 60px;
  }
}

.academy {}

.academy__inner {
  padding: 110px 0 100px;
}

.academy__title {
  font-size: 40px;
  font-weight: bold;
  text-align: center;
}

.academy__content {
  margin-top: 100px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.academy__item {
  display: flex;
  align-items: center;
  gap: 150px;
}

.academy__item.reverse {
  flex-direction: row-reverse;
}

.academy__item-img {
  position: relative;
  width: 100%;
  height: 100%;
}

.academy__item-img img {
  width: 327px;
  height: auto;
}

.academy__item-img::before {
  content: "";
  position: absolute;
  width: 80%;
  height: 80%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #7C96CF;
  opacity: 0.5;
  filter: blur(100px);
  z-index: -1;
}

.academy__item p {
  font-size: 20px;
  line-height: 31px;
}

.academy__button {
  display: block;
  margin: 50px auto 0;
  width: fit-content;
  padding: 20px 40px;
}

@media (max-width: 860px) {
  .academy__item p {
    font-size: 16px;
    line-height: 20px;
  }
}

@media (max-width: 660px) {
  .academy__content {
    margin-top: 100px;
    display: flex;
    flex-direction: column;
    gap: 30px;
  }

  .academy__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
    margin-bottom: 50px;
  }

  .academy__item.reverse {
    flex-direction: column;
  }

  .academy__item-img {
    position: relative;
    width: auto;
    max-width: 400px;
    height: 100%;
  }

  .academy__item-img img {
    width: 100%;
    height: auto;
  }

  .academy__item p {
    text-align: center;
  }
}

.results {}



.slider {
  position: relative;
  margin: 100px auto;
  max-width: 600px;
  height: 350px;
  overflow: hidden;
  border-radius: 10px;
}

.slides {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.slide {
  min-width: 100%;
  height: 100%;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 2rem;
  background: rgba(255, 255, 255, 0.6);
  border: none;
  cursor: pointer;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.prev {
  left: 10px;
}

.next {
  right: 10px;
}

.dots {
  position: absolute;
  bottom: 15px;
  width: 100%;
  text-align: center;
}

.dot {
  height: 8px;
  width: 8px;
  margin: 0 5px;
  display: inline-block;
  background-color: #fff;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.3s;
}

.dot.active {
  background-color: rgba(255, 255, 255, 0.3);
}

@media (max-width: 500px) {
  .slider {
    height: 300px;
  }
}

/* TALKS */
.talks {}

.talks__inner {
  padding: 50px 0;
}

.talks__block {
  display: flex;
  align-items: center;
  margin-bottom: 50px;
}

.talks__block.reverse {
  flex-direction: row-reverse;
}

.talks__block .talks__block-text {
  flex: 2;
  background: linear-gradient(90deg, #000000, #7967c3);
  padding: 45px 27px;
  text-align: center;
  border-radius: 40px;
  font-size: 15px;
}

.talks__block.reverse .talks__block-text {
  flex: 2;
  background: linear-gradient(90deg, #7967c3, #000000);
  padding: 45px 27px;
  text-align: center;
  border-radius: 40px;
  font-size: 15px;
}

.talks__block-wrapper {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.talks__block-wrapper-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.talks__block-img {
  position: relative;
  width: 120px;
  height: 120px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 50% 50%;
  border-radius: 50%;
}

.talks__block-img::before {
  content: "";
  position: absolute;
  width: 60%;
  height: 60%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background-color: #7C96CF;
  filter: blur(50px);
  z-index: -1;
}

.talks__block-img[data-img="1"] {
  background-image: url("/images/talks/1.jpg");
}

.talks__block-img[data-img="2"] {
  background-image: url("/images/talks/2.jpg");
}

.talks__block-img[data-img="3"] {
  background-image: url("/images/talks/3.jpg");
}

@media (max-width: 660px) {
  .talks__block {
    flex-direction: column-reverse;
    align-items: start;
    gap: 20px;
  }

  .talks__block.reverse {
    flex-direction: column-reverse;
    align-items: start;
    gap: 20px;
  }

  .talks__block-wrapper-block {
    display: flex;
    flex-direction: row;
    align-items: end;
    gap: 10px;
  }
}

/* TEAM */
.team {}

.team__inner {
  padding: 50px 0;
}

.team__block {
  display: flex;
  align-items: center;
  margin-bottom: 50px;
}

.team__block.reverse {
  flex-direction: row-reverse;
}

.team__block-text {
  flex: 1;
  padding: 45px 27px;
  border-radius: 40px;
  font-size: 15px;
}

.team__block-text h6 {
  font-size: 25px;
  font-weight: 600;
  margin-bottom: 15px;
}

.team__block-text ul li {
  list-style: disc;
  margin-left: 20px;
  margin-bottom: 5px;
}

.team__block-wrapper {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.team__block-wrapper-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.team__block-img {
  position: relative;
  width: 200px;
  height: 200px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 50% 50%;
  border-radius: 50%;
}

.team__block-img::before {
  content: "";
  position: absolute;
  width: 60%;
  height: 60%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background-color: #7C96CF;
  filter: blur(30px);
  z-index: -1;
}

.team__block-img[data-img="1"] {
  background-image: url("/images/team/1.png");
}

.team__block-img[data-img="2"] {
  background-image: url("/images/team/2.png");
}

.team__block-img[data-img="3"] {
  background-image: url("/images/team/3.png");
}

.team__block-img[data-img="4"] {
  background-image: url("/images/team/4.png");
}

@media (max-width: 660px) {
  .team__block {
    flex-direction: column-reverse;
    align-items: start;
  }

  .team__block.reverse {
    flex-direction: column-reverse;
    align-items: start;
  }

  .team__block-text h6 {
    display: none;
  }

  .team__block-wrapper-block {
    flex-direction: row;
    gap: 15px;
  }

  .team__block-wrapper-block p {
    font-size: 18px;
    font-weight: 600;
  }

  .team__block-wrapper-block .h6 {
    font-size: 13px;
    font-weight: 400;
    opacity: 0.6;
  }

  .team__block-img {
    width: 100px;
    height: 100px;
  }

  .team__block-text ul li {
    margin-left: 0px;
  }
}

/* QUESTIONS */
.questions {}

.questions__list {
  padding: 60px 0 100px;
}

.question__item {
  border-bottom: 1px solid #333;
  padding: 30px 0;
}

.question__item:first-child {
  border-top: 1px solid #333;
}

.question__item-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-size: 20px;
  font-weight: 700;
}

.question__item-header p {
  width: 80%;
}

.question__item-header span {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  background-color: #4aa3ff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  text-align: center;
  transition: transform 0.3s;
}

.question__item-header.active span {
  transform: rotate(45deg);
}

.question__item-content {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.5s ease, opacity 0.3s ease;
  font-size: 15px;
  line-height: 1.5;
  margin-top: 5px;
  font-size: 17px;
  width: 60%;
}

.question__item-content.show {
  opacity: 1;
  max-height: 200px;
}

@media (max-width: 660px) {
  .question__item-content {
    width: 100%;
  }

  .question__item-header {
    font-size: 17px;
  }

  .question__item-content {
    font-size: 15px;
  }

  .question__item {
    padding: 20px 0;
  }
}