@import url("https://fonts.googleapis.com/css2?family=DM+Sans:ital,wght@0,400;0,500;0,700;1,400;1,500;1,700&display=swap");

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

html,
body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
  font-size: 16px;
  font-family: "DM Sans", sans-serif;
}

body {
  font-weight: 400;
  font-style: normal;
  color: #191919;
  line-height: 1.1;
}

.header {
  border-bottom: 1px solid #a234fd;
  border-top: 1px solid #a234fd;
  transition: all 0.4s ease;
}

.header.scrolled {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1000;
  background-color: #07000e;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  border: none;
}

.container {
  margin: 0 auto;
  max-width: 1440px;
}

#page-loader {
  position: fixed;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: -webkit-box;
  display: flex;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  -webkit-align-items: center;
  -ms-flex-align: center;
  -webkit-box-align: center;
  align-items: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  -webkit-box-pack: center;
  justify-content: center;
  padding: 20px 20px 10%;
  z-index: 9999999;
  background: #fff;
  -webkit-transition: 0.3s all ease;
  transition: 0.3s all ease;
}

#page-loader.loaded {
  opacity: 0;
  visibility: hidden;
  z-index: -1;
}

#page-loader.ending {
  display: none;
}

#page-loader>* {
  width: 100%;
  text-align: center;
}

#page-loader .page-loader-body {
  margin-top: 40px;
  text-align: center;
}

[data-x-mode="design-mode"] #page-loader {
  display: none;
}

#loadingProgressG {
  width: 400px;
  max-width: 90%;
  height: 5px;
  overflow: hidden;
  background: #2a2a2a;
  -webkit-border-radius: 0;
  border-radius: 0;
  margin: auto;
}

.loadingProgressG {
  background: #a234fd;
  margin-top: 0;
  margin-left: -400px;
  -webkit-animation-name: bounce_loadingProgressG;
  animation-name: bounce_loadingProgressG;
  -webkit-animation-duration: 1.5s;
  animation-duration: 1.5s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  width: 400px;
  height: 5px;
}

@-webkit-keyframes bounce_loadingProgressG {
  0% {
    margin-left: -400px;
  }

  100% {
    margin-left: 400px;
  }
}

@keyframes bounce_loadingProgressG {
  0% {
    margin-left: -400px;
  }

  100% {
    margin-left: 400px;
  }
}

.hero {
  background-image: url(../img/hero-bg.jpg);
  background-size: cover;
}

.header .container {
  padding: 12px 0 12px 41px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header .container .logo {
  margin-right: 70px;
  width: 100%;
  height: auto;
  max-width: 169px;
}

.nav {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  background-color: #241b38;
  border: 1px solid #a234fd;
  border-top-left-radius: 100px;
  border-bottom-left-radius: 100px;
  border-right: transparent;
}

.nav a {
  font-family: "DM Sans", sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 50px;
  text-decoration: none;
  white-space: nowrap;
  color: #fff;
}

.nav a:hover,
.nav a:focus {
  color: #ff6f3c;
}

.nav a:first-of-type {
  margin-left: 25px;
}

.subscription-wrapper {
  display: flex;
  flex-grow: 1;
  justify-content: center;
  align-items: center;
  min-width: 0;
  justify-items: center;
  width: 100%;
  max-width: 648px;
  height: 76px;
  padding: 0 10px;
  background-color: #020522;
  border-bottom: 1px solid #a234fd;
  border-radius: 50px 0 0 50px;
}

.nav .subscription-button {
  position: relative;
  min-height: 56px;
  padding: 0px 56px;
  font-weight: 700;
  font-size: 16px;
  line-height: 56px;
  text-align: center;
  text-decoration: none;
  color: #07000e;
  background-color: #fff;
  border-radius: 50px;
}

.nav .subscription-button .button-arrow {
  position: absolute;
  top: 0px;
  right: -35px;
  border: 6px solid #020522;
  border-radius: 50%;
  background-color: #020522;
}

.nav .subscription-button:hover {
  color: #fff;
  background-color: #a234fd;
  transition: 0.5s all ease;
}

.nav .subscription-button .button-arrow:hover {
  transform: rotate(45deg);
  transition: 0.5s all ease;
}

.intro {
  padding-left: 94px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  opacity: 0;
  filter: blur(12px);
  transition: opacity 1.1s cubic-bezier(.77, 0, .18, 1), filter 1.1s cubic-bezier(.77, 0, .18, 1);
  background: inherit;
  z-index: 1;
}

.intro__reveal {
  content: "";
  position: absolute;
  inset: 0;
  background: #fff;
  z-index: 10;
  opacity: 1;
  pointer-events: none;
  transition: opacity 1.2s cubic-bezier(.77, 0, .18, 1);
}

.intro.intro--visible .intro__reveal {
  opacity: 0;
  transition: opacity 1.2s cubic-bezier(.77, 0, .18, 1);
}

.intro.intro--visible {
  opacity: 1;
  filter: blur(0);
}


.intro__content h1 {
  width: 84%;
  margin-bottom: 15px;
  font-weight: 800;
  font-size: 64px;
  line-height: 68px;
  letter-spacing: -2px;
  color: #fff;
}

.intro__content p {
  margin-bottom: 31px;
  width: 62%;
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  letter-spacing: -0.72px;
  color: #fff;
}

.intro__content .button {
  position: relative;
  padding: 16px 34px;
  font-weight: 600;
  font-size: 18px;
  line-height: 56px;
  letter-spacing: 0%;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  border-radius: 56px;
  box-shadow: 0px 0px 4px 0px #00000085 inset;
  color: #fff;
  background-color: #a234fd;
}

.intro__content .button:hover {
  background-color: #624ddb;
  transition: 0.3s all ease;
}

.intro__content .button-arrow {
  position: absolute;
  right: -25px;
  top: 2px;
}

.intro__content .button-arrow:hover {
  transform: rotate(45deg);
  transition: 0.3s all ease;
}

.sub-hero {
  margin-top: 20px;
  background-image: url("../img/sub-hero-bg.jpg");
  background-position: right;
  background-size: cover;
  border-radius: 20px;
}

.sub-hero__container {
  padding: 59px 0 0 0;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
}

.sub-hero__image {
  padding: 16px;
  padding-bottom: 0;
  border-radius: 20px;
  background-color: #fff;
}

.sub-hero__image img {
  max-width: 590px;
  border-radius: 20px;
}

.sub-hero__content {
  display: flex;
  align-items: center;
  justify-content: center;
}

.sub-hero__content p {
  padding-bottom: 31px;
  width: 82%;
  font-weight: 500;
  font-size: 20px;
  line-height: 31.11px;
  letter-spacing: 0%;
  color: #07000e;
}

.vision {
  padding: 114px 0 0 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 30px;
  background-image: url("../img/vision-gradient.png");
  background-position: top right;
  background-repeat: no-repeat;
}

.vision-content {
  width: 100%;
  display: flex;
  flex-direction: row;
}

.vision-content__text h2 {
  width: 87%;
  margin-bottom: 19px;
  font-weight: 800;
  font-size: 60px;
  line-height: 63.6px;
  letter-spacing: -2.4px;
  color: #07000e;
}

.vision-content__text p {
  width: 74%;
  margin-bottom: 30px;
  font-weight: 400;
  font-size: 18px;
  line-height: 27px;
  letter-spacing: -0.72px;
  color: #5f5d61;
}

.vision-content__divider {
  height: 1px;
  max-width: 805px;
  background: radial-gradient(50% 50% at 50% 50%,
      #fe7524 0%,
      rgba(152, 70, 22, 0) 100%);
}

.vision-content__list-wrapper {
  padding: 30px 0 28px 0;
  display: flex;
  flex-direction: row;
  gap: 55px;
}

.vision-content__list ul {
  display: flex;
  flex-direction: column;
  gap: 20px;
  list-style: none;
  padding: 0;
}

.vision-content__list ul li {
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  letter-spacing: -0.72px;
  color: #07000e;
  padding-left: 28px;
  position: relative;
}

.vision-content__list ul li:before {
  margin-right: 7px;
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  background-image: url("../img/list-item.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.vision .button {
  position: relative;
  padding: 16px 55px;
  font-weight: 600;
  font-size: 18px;
  line-height: 56px;
  letter-spacing: 0%;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  border-radius: 56px;
  box-shadow: 0px 0px 4px 0px #00000085 inset;
  color: #fff;
  background-color: #a234fd;
}

.vision .button:hover {
  background-color: #624ddb;
  transition: 0.3s all ease;
}

.vision .button:hover .button-arrow {
  transform: rotate(45deg);
  transition: 0.3s all ease;
}

.vision .button-arrow {
  position: absolute;
  right: -25px;
  top: 2px;
}

.vision-content__divider:last-of-type {
  margin-bottom: 30px;
}

.vision__slider {
  position: relative;
  min-height: 570px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-end;
  gap: 28px;
}

.slider-arrows {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 0;
  background: transparent;
  position: absolute;
  right: 369px;
  bottom: 0px;
  z-index: 2;
}

.slider-arrows .prev {
  grid-column: 1;
  grid-row: 2;
  align-self: start;
  justify-self: start;
  margin: 0;
}

.slider-arrows .next {
  grid-column: 2;
  grid-row: 1;
  align-self: end;
  justify-self: end;
  margin: 0;
}

.slider-arrows .prev,
.slider-arrows .next {
  padding: 30px;
  max-width: 92px;
  height: auto;
  background: #eeedee;
  border: none;
  box-shadow: none;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.18s;
}

.slider-arrows .prev svg,
.slider-arrows .next svg {
  display: block;
  width: 32px;
  height: 32px;
}

.slider-arrows .prev:hover,
.slider-arrows .next:hover {
  background: #b3b3b3;
}

.slider-arrows .prev:hover,
.slider-arrows .next:hover {
  background: #07000e;
}

.slider-arrows .prev:hover svg path,
.slider-arrows .next:hover svg path {
  stroke: #ff6f05;
  transition: stroke 0.18s;
}

.slider {
  position: absolute;
  bottom: -75px;
  width: 100%;
  max-width: 384px;
  overflow: hidden;
  border-radius: 16px;
  background: #fff;
}

.slider-track {
  display: flex;
  transition: transform 0.5s ease;
}

.slide {
  min-width: 100%;
  min-height: 570px;
  background-size: auto;
  background-position: center center;
}

.slider button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  padding: 10px;
  cursor: pointer;
  font-size: 24px;
  z-index: 10;
  border-radius: 16px;
}

.slider button:hover {
  background: rgba(0, 0, 0, 0.7);
}

.prev {
  left: 10px;
}

.next {
  right: 10px;
}

.achievements {
  padding: 112px 0 0 0;
  background-image: url("../img/achievements-bg.png");
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
}

.achievements__container {
  max-width: 1302px;
  margin: 0 auto;
}

.achievements__content {
  display: flex;
  flex-direction: column;
  gap: 45px;
}

.achievements__content h2 {
  width: 69%;
  margin: 0 0 45px 0;
  font-weight: 800;
  font-size: 60px;
  line-height: 63.6px;
  letter-spacing: -2.4px;
  text-align: left;
  text-transform: capitalize;
  color: #fff;
}

.achievements__counter-label {
  font-weight: 500;
  font-size: 20px;
  line-height: 28px;
  letter-spacing: -0.8px;
  color: #fff;
}

.achievements__counter-value {
  font-weight: 800;
  font-size: 80px;
  line-height: 124.45px;
  letter-spacing: -3.2px;
  color: #fff;
}

.achievements__solutions {
  margin-bottom: 87px;
}

.achievements__counters {
  margin-bottom: 109px;
}

.achievements__counters__top,
.achievements__counters__bottom {
  display: flex;
  width: 100%;
}

.achievements__counters__top .achievements__counter-item,
.achievements__counters__bottom .achievements__counter-item {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  min-height: 170px;
  padding: 49px 0 26px 41px;
}

.achievements__counters__top .achievements__counter-item:first-child,
.achievements__counters__bottom .achievements__counter-item:first-child {
  flex: 1 1 25%;
  min-width: 0;
  background: transparent;
  border: none;
  pointer-events: none;
}

.achievements__counters__top .achievements__counter-item:not(:first-child),
.achievements__counters__bottom .achievements__counter-item:not(:first-child) {
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.achievements__counters__top {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.achievements__counter-label {
  margin-bottom: 38px;
  font-weight: 500;
  font-size: 20px;
  line-height: 28px;
  letter-spacing: -0.8px;
  color: #fff;
}

.achievements__counter-item:nth-child(2) .achievements__counter-label {
  width: 75%;
}

.achievements__counter-item:nth-child(3) .achievements__counter-label {
  width: 35%;
}

.achievements__counter-value {
  font-weight: 800;
  font-size: 80px;
  line-height: 124.45px;
  letter-spacing: -3.2px;
  color: #fff;
}

.achievements__counters__top .achievements__counter-item:nth-child(2) {
  flex: 1 1 25%;
}

.achievements__counters__top .achievements__counter-item:nth-child(3) {
  flex: 1 1 50%;
}

.achievements__counters__bottom .achievements__counter-item {
  flex: 1 1 25%;
}

.achievements__counters__bottom .achievements__counter-item:nth-child(2) .achievements__counter-label,
.achievements__counters__bottom .achievements__counter-item:nth-child(4) .achievements__counter-label {
  width: 35%;
}

.achievements__solutions__inner {
  max-width: 1294px;
  margin: 0 auto;
}

.achievements__solutions__item {
  width: 33%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 20px;
  padding: 19px 28px 28px 0;
  max-width: 406px;
  border-radius: 12px;
  background: linear-gradient(270deg, #a234fd 0%, rgba(162, 52, 253, 0) 100%);
}

.achievements__solutions__item p {
  font-weight: 800;
  font-size: 28px;
  line-height: 31.92px;
  letter-spacing: -2.4px;
  color: #fff;
}

.achievements__solutions__items {
  display: flex;
  flex-direction: column;
  gap: 38px;
}

.achievements__solutions__items__top {
  display: flex;
  flex-direction: row;
  gap: 38px;
}

.achievements__solutions__items__bottom {
  display: flex;
  flex-direction: row;
  gap: 38px;
}

.achievements__solutions__title-bottom {
  position: relative;
  max-width: 930px;
  margin: 0 auto;
}

.achievements__solutions__title-bottom__inner {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
}

.achievements__solutions__title-bottom__inner>div p {
  margin-bottom: 6px;
  width: 63%;
  font-weight: 800;
  font-size: 44px;
  line-height: 47.96px;
  letter-spacing: -1.76px;
  color: #fff;
}

.achievements__solutions__title-bottom__inner>div img {
  margin-left: 100px;
  margin-bottom: 58px;
}

.achievements__solutions__title-bottom__inner .rotate-flower {
  position: absolute;
  right: -175px;
  top: -90px;
  width: 620px;
  height: auto;
}

.process {
  padding: 33px 0 28px 0;
  background-image: url("../img/process-bg.png");
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
}

.process__container {
  margin: 0 auto;
  max-width: 1124px;
}

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

.pre-title {
  margin: 0 auto;
  max-width: 940px;
}

.pre-title p {
  margin-bottom: 32px;
  width: 41%;
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  letter-spacing: -0.72px;
  color: #5f5d61;
}

.pre-title a {
  position: relative;
  padding: 14px 51px 13px 26px;
  font-weight: 600;
  font-size: 16px;
  line-height: 48px;
  letter-spacing: 0%;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  border-radius: 56px;
  box-shadow: 0px 0px 4px 0px #00000085 inset;
  color: #fff;
  background-color: #a234fd;
}

.pre-title a:hover {
  background-color: #624ddb;
  transition: 0.3s all ease;
}

.pre-title a .button-arrow:hover {
  transform: rotate(45deg);
  transition: 0.3s all ease;
}

.pre-title .button-arrow {
  width: 44px;
  height: 44px;
  position: absolute;
  right: -12px;
  top: 2px;
}

.process__content h2 {
  margin-bottom: 74px;
  width: 92%;
  font-weight: 800;
  font-size: 60px;
  line-height: 63.6px;
  letter-spacing: -2.4px;
  text-align: center;
  text-transform: capitalize;
  color: #07000e;
}

.process__content__rows {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 35px;
}

process__content__row {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.process__content__row:first-of-type {
  padding-top: 47px;
}

.process__content__row .process__content__card.first {
  margin-bottom: 87px;
}

.process__content__row .process__content__card.first p {
  width: 88%;
}

.process__content__row__numbers {
  position: absolute;
  top: -65px;
  left: 31px;
  font-weight: 800;
  font-size: 72px;
  line-height: 112px;
  letter-spacing: -2.88px;
  opacity: 0.5;
  background: linear-gradient(90deg, #7512a2 0%, #ff31ab 48.53%, #ff6f05 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.process__content__card {
  position: relative;
  padding: 35px 38px 23px 32px;
  background-color: #fff;
  box-shadow: 0px 0px 32px 0px #0000000a;
  border-radius: 16px;
}

.process__content__card h6 {
  margin-bottom: 13px;
  font-weight: 700;
  font-size: 32px;
  line-height: 32px;
  letter-spacing: -1.28px;
  color: #000;
}

.process__content__card p {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: -0.72px;
  color: #5f5d61;
}

.process__content__card__divider {
  position: absolute;
  top: 0;
  right: 0;
}

.process__content__card.first .process__content__card__divider {
  position: absolute;
  top: 86px;
  right: -86px;
}

.process__content__card.second .process__content__card__divider {
  position: absolute;
  top: 164px;
  right: -86px;
}

.process__content__card.third .process__content__card__divider {
  position: absolute;
  top: 70px;
  left: -85px;
}

.ebooks {
  padding: 67px 0 91px 0;
  background: url("/assets/sites_assets/aiwisementor.com/img/ebooks-bg.jpg") no-repeat center center;
  background-size: cover;
  width: 100%;
  min-height: 1053px;
  position: relative;
}

#ebooks .text-wrapper {
  max-width: 1280px;
  margin: 0 auto;
}

#ebooks .text-wrapper h2 {
  width: 60%;
  margin-bottom: 34px;
  font-weight: 800;
  font-size: 60px;
  line-height: 63.6px;
  letter-spacing: -2.4px;
  text-align: left;
  text-transform: capitalize;
  color: #fff;
}

#ebooks .text-wrapper p {
  display: none;
}

.ebooks__items.row {
  margin-bottom: 96px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 33px;
}

.ebooks__items.row .item {
  max-width: 400px;
  max-height: 566px;
}

.ebooks__items.row .item img {
  width: 100%;
  max-width: 100%;
}

.ebooks__button {
  display: flex;
  align-items: center;
  justify-content: center;
}


.ebooks__button a {
  position: relative;
  z-index: 1;
}

.ebooks-slider-wrapper {
  width: 1270px;
  margin: 0 auto 40px auto;
  position: relative;
  overflow: visible;
}

.ebooks__slider {
  overflow: hidden;
  width: 100%;
  position: relative;
}

.ebooks__items {
  display: flex;
  transition: transform 0.5s cubic-bezier(.77, 0, .18, 1);
  will-change: transform;
  gap: 30px;
}

.ebooks__item {
  min-width: 400px;
  max-width: 400px;
  flex: 0 0 400px;
  background: #241b38;
  box-shadow: 0 4px 32px rgba(0, 0, 0, 0.10);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

.ebooks__slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 60px;
  height: 60px;
  background: transparent;
  border-radius: 16px !important;
  border: 2px solid;
  border-image: linear-gradient(180deg, #e5b0e6 0%, #a234fd 100%);
  border-image-slice: 1;
  color: #fff;
  font-size: 32px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    background 0.25s cubic-bezier(.77, 0, .18, 1),
    border-color 0.25s cubic-bezier(.77, 0, .18, 1),
    box-shadow 0.2s;
  box-shadow: none;
  font-family: inherit;
  font-weight: bold;
}

.ebooks__slider-btn:disabled {
  opacity: 0.3;
  cursor: default;
}

.ebooks__slider-btn.left {
  left: -80px;
}

.ebooks__slider-btn.right {
  right: -80px;
}

.ebooks__slider-btn:hover,
.ebooks__slider-btn:focus {
  background: linear-gradient(180deg, #e5b0e6 0%, #a234fd 100%);
  border: 2px solid transparent;
  box-shadow: 0 4px 24px 0 rgba(162, 52, 253, 0.18);
  outline: none;
}

.ebooks__slider-btn:active {
  background: linear-gradient(180deg, #a234fd 0%, #e5b0e6 100%);
}

@media (max-width: 1300px) {
  .ebooks__slider-btn {
    width: 44px;
    height: 44px;
    font-size: 24px;
    border-radius: 10px !important;
  }

  .ebooks__slider-btn.left {
    left: -48px;
  }

  .ebooks__slider-btn.right {
    right: -48px;
  }
}

@media (max-width: 900px) {
  .ebooks__slider-btn {
    width: 36px;
    height: 36px;
    font-size: 18px;
    border-radius: 8px !important;
  }

  .ebooks__slider-btn.left {
    left: -32px;
  }

  .ebooks__slider-btn.right {
    right: -32px;
  }
}


@media (max-width: 1300px) {
  .ebooks-slider-wrapper {
    width: 100%;
  }

  .ebooks__item,
  .ebooks__items {
    min-width: 300px;
    max-width: 300px;
  }
}

@media (max-width: 900px) {

  .ebooks__item,
  .ebooks__items {
    min-width: 230px;
    max-width: 230px;
  }
}

.circles {
  width: 140px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
}

.circles img {
  position: absolute;
  width: 56px;
  height: 56px;
  z-index: 0;
}

.circles .circle1 {
  left: -5%;
}

.circles .circle2 {
  left: 10%;
  z-index: 2;
}

.circles .circle3 {
  left: 33%;
  z-index: 3;
}

.circles .circle4 {
  left: 50%;
  z-index: 4;
}

.ebooks__button a {
  display: flex;
  align-items: center;
  font-family: "DM Sans", sans-serif;
  font-weight: 600;
  font-size: 18px;
  line-height: 56px;
  letter-spacing: 0%;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  color: #fff;
}

.circles {
  position: relative;
}

.circles img {
  position: absolute;
  transition: left 0.6s cubic-bezier(0.7, 0, 0.3, 1), z-index 0.6s;
}

.ebooks__button a:hover .circles .circle1,
.ebooks__button a:focus .circles .circle1,
.ebooks__button a:active .circles .circle1 {
  left: 50%;
  z-index: 4;
}

.ebooks__button a:hover .circles .circle2,
.ebooks__button a:focus .circles .circle2,
.ebooks__button a:active .circles .circle2 {
  left: 50%;
  z-index: 4;
}

.ebooks__button a:hover .circles .circle3,
.ebooks__button a:focus .circles .circle3,
.ebooks__button a:active .circles .circle3 {
  left: 50%;
  z-index: 4;
}

.ebooks__button a:hover .circles .circle4,
.ebooks__button a:focus .circles .circle4,
.ebooks__button a:active .circles .circle4 {
  left: 50%;
  z-index: 4;
}

.testimonials {
  padding: 124px 0 145px 0;
  background-image: url("../img/testimonials-bg.png");
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
}

.testimonials-title {
  width: 48%;
  margin: 0 auto;
  margin-bottom: 46px;
  font-weight: 800;
  font-size: 60px;
  line-height: 64px;
  letter-spacing: -2.4px;
  text-align: left;
  color: #07000e;
}

.testimonials__item {
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
}

.testimonials__item__content {
  width: 50%;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 70px;
}

.testimonials__item__content>div {
  padding-top: 60px;
  align-self: flex-start;
}

.testimonials__item__content p {
  font-weight: 600;
  font-size: 20px;
  line-height: 31.11px;
  letter-spacing: 0%;
  color: #1e1e1e;
}

.testimonials__item__content span {
  font-weight: 400;
  font-size: 16px;
  line-height: 24.89px;
  letter-spacing: 0%;
  color: #404046;
}

.testimonials__item__description {
  width: 50%;
  font-weight: 400;
  font-size: 18px;
  line-height: 28.01px;
  letter-spacing: -0.72px;
  color: #5f5d61;
}

.testimonials__item__description p {
  margin-bottom: 42px;
  width: 80%;
}

.testimonials__item__description a {
  position: relative;
  padding: 16px 59px 16px 26px;
  font-weight: 600;
  font-size: 18px;
  line-height: 56px;
  letter-spacing: 0%;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
  border-radius: 56px;
  color: #fff;
  background-color: #a234fd;
  box-shadow: 0px 0px 4px 0px #00000085 inset;
}

.testimonials__item__description a:hover {
  background-color: #624ddb;
  transition: 0.3s all ease;
}

.testimonials__item__description a .button-arrow:hover {
  transform: rotate(45deg);
  transition: 0.3s all ease;
}

.testimonials__item__description a img {
  position: absolute;
  right: -17px;
  top: 2px;
}

.testimonial-slider {
  width: 100%;
  margin: 0 auto;
  display: flex;
  gap: 30px;
}

.testimonial-slider__wrapper {
  max-width: 1655px;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 30px;
  overflow-x: scroll;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.testimonial-slider__wrapper::-webkit-scrollbar {
  display: none;
}

.testimonial-slider__card {
  min-width: 531px;
  padding: 49px 41px 51px 41px;
  background-color: #fff;
}

.testimonial-slider__wrapper .first {
  min-width: 317px;
  width: 100%;
}

.testimonial-slider__progressbar {
  max-width: 300px;
  height: 2px;
  margin: 63px auto 0 auto;
  background: #d0d0d0;
  border-radius: 3px;
  position: relative;
  cursor: pointer;
  overflow: hidden;
}

.testimonial-slider__progress {
  width: 33.33%;
  height: 2px;
  background: linear-gradient(90deg, #a234fd 0%, #ff6f05 100%);
  border-radius: 3px;
  transition: width 0.3s;
}

.testimonial-slider__card__stars {
  margin-bottom: 33px;
  display: flex;
  align-items: center;
  gap: 7px;
}

.testimonial-slider__card h6 {
  margin-bottom: 24px;
  font-weight: 600;
  font-size: 24px;
  line-height: 31.99px;
  letter-spacing: -0.48px;
  color: #07000e;
}

.testimonial-slider__card p {
  font-weight: 400;
  font-size: 18px;
  line-height: 28.01px;
  letter-spacing: -0.72px;
  color: #5f5d61;
}

.explore__inner,
.coaching__inner,
.solutions__inner {
  margin: 0 auto;
  max-width: 1278px;
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  gap: 67px;
}

.our-ebooks__inner {
  margin: 0 auto;
  max-width: 1306px;
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.our-ebooks__content {
  flex: 1 1 0;
  min-width: 220px;
}

.our-ebooks__image {
  flex: 1 1 0;
  max-width: 551px;
  min-width: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.our-ebooks__image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  border-radius: 12px;
}

.guidance__inner,
.platform__inner {
  margin: 0 auto;
  max-width: 1304px;
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  gap: 94px;
}

.solutions__image {
  max-width: 50%;
}

.explore {
  padding: 109px 0 79px 0;
}

.explore__content {
  padding-top: 34px;
  max-width: 52%;
}

.explore__image {
  flex: 1;
  max-width: 551px;
}

.explore__image img {
  width: 100%;
  max-width: 100%;
  height: auto;
}

.explore__content h3 {
  margin-bottom: 18px;
  font-weight: 700;
  font-size: 56px;
  line-height: 59.92px;
  letter-spacing: -2.54px;
  text-transform: capitalize;
  color: #07000e;
}

.explore__content p {
  margin-bottom: 20px;
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  letter-spacing: 0%;
  color: #5f5d61;
}

.our-ebooks {
  padding-bottom: 143px;
}

.our-ebooks .our-ebooks__image {
  flex: 1;
  max-width: 551px;
}

.our-ebooks .our-ebooks__image img {
  width: 100%;
  max-width: 100%;
  height: auto;
}

.our-ebooks__content {
  padding-top: 47px;
}

.our-ebooks__content h3 {
  margin-bottom: 18px;
  font-weight: 700;
  font-size: 56px;
  line-height: 59.92px;
  letter-spacing: -2.54px;
  text-transform: capitalize;
  color: #07000e;
}

.our-ebooks__content p,
.our-ebooks__content ul li {
  margin-bottom: 20px;
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  letter-spacing: 0%;
  color: #5f5d61;
}

.our-ebooks__content ul li {
  margin-left: 20px;
  margin-bottom: 5px;
}

.our-ebooks__content ul li:last-child {
  margin-bottom: 20px;
}

.our-ebooks__content p:last-child {
  margin-bottom: 0;
}

.transformative {
  display: flex;
  flex-direction: column;
  gap: 157px;
  padding: 138px 0 189px 0;
  background-image: url("../img/transformative-bg.jpg");
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
}

.coaching__content {
  max-width: 52%;
  padding-top: 4px;
}

.coaching__content h3 {
  margin-bottom: 20px;
  font-weight: 700;
  font-size: 56px;
  line-height: 59.92px;
  letter-spacing: -2.54px;
  text-transform: capitalize;
  color: #fff;
}

.coaching__content p {
  margin-bottom: 20px;
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  letter-spacing: 0%;
  color: #dcdcdc;
}

.coaching__inner .coaching__content p:last-of-type {
  margin-bottom: 50px;
}

.coaching__content a {
  position: relative;
  padding: 16px 59px 16px 26px;
  font-weight: 600;
  font-size: 18px;
  line-height: 56px;
  letter-spacing: 0%;
  text-align: center;
  text-decoration: none;
  border-radius: 56px;
  vertical-align: middle;
  box-shadow: 0px 0px 4px 0px #00000085 inset;
  color: #fff;
  background-color: #a234fd;
}

.coaching__content a img {
  position: absolute;
  right: -17px;
  top: 2px;
  width: 52px;
  height: 52px;
}

.coaching__content a:hover {
  background-color: #624ddb;
  transition: 0.3s all ease;
}

.coaching__content a:hover img {
  transform: rotate(45deg);
  transition: 0.3s all ease;
}

.coaching__image {
  flex: 1;
  max-width: 551px;
}

.coaching__image img {
  width: 100%;
  max-width: 100%;
  height: auto;
}

.guidance__content {
  max-width: 50%;
  padding-top: 47px;
}

.guidance__content h3 {
  margin-bottom: 18px;
  font-weight: 700;
  font-size: 56px;
  line-height: 59.92px;
  letter-spacing: -2.54px;
  color: #fff;
}

.guidance__content p {
  margin-bottom: 20px;
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  letter-spacing: 0%;
  color: #dcdcdc;
}

.guidance__content p:last-of-type {
  margin-bottom: 50px;
}

.guidance__content a {
  position: relative;
  padding: 16px 59px 16px 26px;
  font-weight: 600;
  font-size: 18px;
  line-height: 56px;
  letter-spacing: 0%;
  text-align: center;
  text-decoration: none;
  border-radius: 56px;
  vertical-align: middle;
  box-shadow: 0px 0px 4px 0px #00000085 inset;
  color: #fff;
  background-color: #a234fd;
}

.guidance__content a img {
  position: absolute;
  right: -17px;
  top: 2px;
  width: 52px;
  height: 52px;
}

.guidance__content a:hover {
  background-color: #624ddb;
  transition: 0.3s all ease;
}

.guidance__content a:hover img {
  transform: rotate(45deg);
  transition: 0.3s all ease;
}

.guidance__image {
  flex: 1;
  max-width: 551px;
}

.guidance__image img {
  width: 100%;
  max-width: 100%;
  height: auto;
}

.price {
  padding: 142px 0 178px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: #fff;
}

.price__title {
  margin-bottom: 19px;
  width: 66%;
  font-weight: 700;
  font-size: 56px;
  line-height: 59.92px;
  letter-spacing: -2.54px;
  text-align: center;
  color: #07000e;
}

.price__subtitle {
  margin-bottom: 73px;
  width: 46%;
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  letter-spacing: 0%;
  text-align: center;
  color: #5f5d61;
}

.price-item:nth-child(2) {
  border: 3px solid #a234fd;
}

.price-item__box {
  padding: 39px 50px 47px 66px;
}

.price__items {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  gap: 30px;
}

.price-item__name {
  text-align: center;
}

.price-item__name span {
  margin-bottom: 13px;
  font-family: "DM Sans", sans-serif;
  font-weight: 400;
  font-size: 19px;
  line-height: 29.87px;
  letter-spacing: 0%;
  text-align: center;
  color: #fff;
}

.disc.price-item__description {
  font-family: "DM Sans", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0%;
  vertical-align: middle;
  color: #fff;
}

.price-item__price .price-item__currency {
  font-family: "DM Sans", sans-serif;
  font-weight: 400;
  font-size: 21px;
  line-height: 31.5px;
  letter-spacing: 0%;
  text-align: center;
  vertical-align: middle;
  color: #fff;
}

.price-item__trial {
  margin-bottom: 40px;
}

.price-item:nth-child(2) .price-item__trial::after {
  content: "";
  display: block;
  width: 290px;
  height: 124px;
  margin: 24px auto 0 auto;
  background-image: url("/assets/sites_assets/aiwisementor.com/img/price-img.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.price-item__trial span {
  font-family: "DM Sans", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0%;
  color: #fff;
}

.price-item__trial {
  margin-bottom: 40px;
}

.price-item {
  background-color: #07000e;
  border-radius: 16px;
  width: 100%;
  height: 100%;
  max-width: 100%;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  overflow: visible;
}

.price-item-image {
  display: block;
  width: 120px;
  height: auto;
  transition: transform 0.3s ease;
  position: relative;
  z-index: 1;
}

.price-item:hover .price-item-image {
  transform: scale(1.05);
  opacity: 0.95;
}

.price-item__button-wrapper {
  position: relative;
  z-index: 2;
}

.price-item__button-wrapper .button {
  padding: 17px 103px;
  font-weight: 700;
  font-size: 16px;
  line-height: 56px;
  letter-spacing: 0%;
  text-align: center;
  text-decoration: none;
  border-radius: 12px;
  white-space: nowrap;
  color: #fff;
  background: radial-gradient(ellipse at center, #9a30ff 0%, #e4b8ff 100%);
  backdrop-filter: blur(30px);
}

.solutions {
  margin-bottom: 79px;
}

.solutions__content {
  max-width: 50%;
  padding-top: 34px;
}

.solutions__content h3 {
  margin-bottom: 18px;
  font-weight: 700;
  font-size: 56px;
  line-height: 59.92px;
  letter-spacing: -2.54px;
  color: #07000e;
}

.solutions__content ul li {
  margin-left: 20px;
  font-weight: 600;
  font-size: 18px;
  line-height: 28px;
  letter-spacing: 0%;
  color: #5f5d61;
}

.solutions__content p {
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  letter-spacing: 0%;
  color: #5f5d61;
}

.solutions__image {
  flex: 1;
  max-width: 551px;
}

.solutions__image img {
  width: 100%;
  max-width: 100%;
  height: auto;
}

.platform {
  padding-bottom: 116px;
}

.platform__content {
  max-width: 48.5%;
  padding-top: 35px;
}

.platform__content h3 {
  margin-bottom: 23px;
  font-weight: 700;
  font-size: 56px;
  line-height: 59.92px;
  letter-spacing: -4px;
  color: #07000e;
}

.platform__content ul li {
  margin-left: 20px;
  font-weight: 600;
  font-size: 18px;
  line-height: 28px;
  letter-spacing: 0%;
  color: #5f5d61;
}

.platform__content p {
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  letter-spacing: 0%;
  color: #5f5d61;
}

.platform__image {
  flex: 1;
  max-width: 551px;
}

.platform__image img {
  width: 100%;
  max-width: 100%;
  height: auto;
}

.divider-line {
  margin: 0 auto;
}

.questions__inner {
  padding: 15px 0 91px 0;
  max-width: 1170px;
  margin: 0 auto;
}

.questions__title {
  padding-bottom: 44px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #10203526;
}

.questions__title h2 {
  font-weight: 700;
  font-size: 65px;
  line-height: 65px;
  letter-spacing: -0.25px;
  vertical-align: middle;
  color: #07000e;
}

.questions__title p {
  width: 53%;
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  letter-spacing: 0%;
  color: #716f73;
}

.questions__item {
  max-width: 730px;
  padding: 23px 38px 20px 48px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  background-color: #f8f8f8;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.submenu {
  display: none;
}

.submenu.active {
  display: block;
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  letter-spacing: 0%;
  color: #fff;
}

.questions__items {
  margin-top: 64px;
  width: 100%;
  max-width: 100%;
  display: flex;
  align-items: flex-end;
  flex-direction: column;
  gap: 15px;
}

.questions__item p {
  font-weight: 500;
  font-size: 20px;
  line-height: 29.09px;
  letter-spacing: -0.25px;
  color: #07000e;
}

.questions__item:has(.submenu.active) {
  background: linear-gradient(90deg, #f9b7bc 0%, #771a8b 50%, #a234fd 100%);
  color: #fff;
  border: none;
  box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.15);
}

.questions__item:has(.submenu.active)>p {
  margin-bottom: 24px;
  color: #fff;
}

.questions__item .submenu.active p {
  color: #fff;
}

.questions__item:has(.submenu.active) .submenu.active {
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 0 auto;
  color: #fff;
}

.questions__item:has(.submenu.active) .questions__icon {
  align-self: flex-start;
}

.questions__item:hover {
  box-shadow: 0px 6px 20px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.questions__icon {
  position: relative;
  width: 24px;
  height: 24px;
}

.questions__icon img {
  position: absolute;
  top: 0;
  left: 0;
  transition: opacity 0.5s ease;
}

.questions__icon img:last-child {
  opacity: 0;
}

.questions__item:has(.submenu.active) .questions__icon img:first-child {
  opacity: 0;
}

.questions__item:has(.submenu.active) .questions__icon img:last-child {
  opacity: 1;
}

.questions__img {
  display: none;
}

.questions__item:has(.submenu.active) .questions__img {
  display: block;
  border-radius: 16px;
}

.questions__item__wrapper {
  width: 62%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

#contacts {
  max-width: 1170px;
  margin: 0 auto;
  padding: 100px 0 130px 0;
}

.new-validate {
  padding: 28px 41px 40px 39px;
  border-radius: 15px;
  border: 1px solid #dfe1e5;
}

.form__elem {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 101px;
}

.form__elem__content {
  max-width: 50%;
}

.form__elem__content h3 {
  margin-bottom: 16px;
  font-weight: 700;
  font-size: 65px;
  line-height: 65px;
  letter-spacing: -0.25px;
  color: #07000e;
}

.form__elem__content p {
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  letter-spacing: 0%;
  color: #716f73;
}

.new-validate__line.new-validate__name,
.new-validate__line.new-validate__email,
.new-validate__line.new-validate__subject,
.new-validate__line.new-validate__message {
  margin-bottom: 27px;
  display: flex;
  flex-direction: column;
}

.new-validate #name,
.new-validate #email,
.new-validate #subject,
.new-validate #message {
  font-weight: 400;
  font-size: 18px;
  line-height: 100%;
  letter-spacing: 1px;
  vertical-align: middle;
  opacity: 0.56;
  color: #07000e;
}

.new-validate label {
  font-weight: 500;
  font-size: 12px;
  line-height: 18.67px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #07000e;
}

.new-validate input,
.new-validate textarea {
  padding: 10px 0;
  min-width: 526px;
  height: 45px;
  border: transparent;
  border-bottom: 1px solid #dfe1e5;
}

.new-validate .btn-site {
  padding: 0 9px;
  font-weight: 700;
  font-size: 16px;
  line-height: 57px;
  letter-spacing: 0%;
  text-align: center;
  border-radius: 8px;
  border: 3px solid #fff;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  cursor: pointer;
  color: #fff;
  background-color: #a234fd;
}

.new-validate .btn-site:hover {
  background-color: rgb(68, 0, 124);
  transition: all 0.5s ease;
}

.btn-site__icon-block {
  width: 40px;
  height: 40px;
  background: #fff;
  border-radius: 4px;
  box-shadow: 4px 4px 2px 0px #00000033;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-site__icon {
  display: block;
  width: 24px;
  height: 24px;
}

@media (min-width: 1440px) {
  .header .container {
    max-width: 100%;
  }
}

.word {
  display: inline-block;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  margin-right: 0.01em;
}

.intro__content h1 .word {
  margin-right: 0;
}

.intro__content h1 .word+.word {
  margin-left: 0.18em;
}

.word.visible {
  opacity: 1;
  transform: translateY(0);
}

.sub-hero__image {
  position: relative;
  display: inline-block;
  cursor: pointer;
}

.sub-hero__image::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.2);
  border-radius: inherit;
  transition: background-color 0.3s ease;
}

.sub-hero__image:hover::before {
  background-color: rgba(0, 0, 0, 0.4);
}

.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background-color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  text-decoration: none;
}

.play-btn::before {
  content: '';
  width: 0;
  height: 0;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  border-left: 20px solid #ff4500;
  margin-left: 5px;
}

.play-btn::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 80px;
  height: 80px;
  background-color: #fff;
  border-radius: 16px;
  transform: translate(-50%, -50%);
  animation: pulse 2s infinite ease-out;
  z-index: -1;
}

@keyframes pulse {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.7;
  }

  100% {
    transform: translate(-50%, -50%) scale(1.5);
    opacity: 0;
  }
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  width: 38px;
  height: 38px;
  justify-content: center;
  align-items: center;
  z-index: 120;
}

.hamburger span {
  display: block;
  height: 3px;
  margin: 5px 0;
  width: 100%;
  background: #fff;
  border-radius: 2px;
  transition: 0.3s;
}

.hamburger span:first-of-type {
  width: 16px;
}

.hamburger span:nth-of-type(2) {
  width: 30px;
}

.hamburger span:nth-of-type(3) {
  width: 22px;
}

.overlay {
  display: none;
  position: fixed;
  z-index: 100;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background: rgba(36, 27, 56, 0.7);
  transition: opacity 0.3s;
}

.mobile-close-btn {
  position: absolute;
  top: 18px;
  right: 28px;
  font-size: 38px;
  color: #000;
  cursor: pointer;
  z-index: 130;
  display: none;
  background: none;
  border: none;
}

@media (max-width: 1320px) {
  .intro {
    position: relative;
    padding-block: 70px;
  }

  .intro__content {
    width: 59%;
  }

  .intro__img {
    width: 41%;
  }

  .intro__img img {
    max-width: 28%;
    position: absolute;
    bottom: 0;
    right: 0;
  }

  .intro__content p {
    width: 90%;
  }
}

@media (max-width: 1200px) {
  .nav {
    position: fixed;
    top: 0;
    left: -100vw;
    width: 80vw;
    max-width: 400px;
    height: 100vh;
    background: #241b38;
    border-radius: 0;
    flex-direction: column;
    align-items: flex-start;
    padding: 70px 32px 32px 32px;
    box-shadow: 4px 0 32px rgba(0, 0, 0, 0.18);
    z-index: 150;
    transition: left 0.3s;
    gap: 18px;
  }

  .nav.active {
    left: 0;
    transition: left 0.3s;
    background: #fff;
    justify-content: flex-start;
  }

  .nav.active a {
    color: #000;
  }

  .nav.active a:hover {
    color: #ff6f3c;
    transition: all 0.3s ease;
  }

  .nav.active .subscription-button:hover {
    padding: 0 20px;
    color: #fff;
    background-color: #1613e2;
    transition: all 0.3s ease;
  }

  .nav.active .subscription-wrapper {
    position: relative;
    top: 0;
    left: 0;
    width: auto;
    max-width: 400px;
    height: auto;
    background: transparent;
    border-radius: 0;
    flex-direction: column;
    align-items: flex-start;
    padding: 0;
    box-shadow: none;
    z-index: 150;
    transition: left 0.3s;
    gap: 0;
  }

  .nav.active .subscription-button {
    padding: 0;
    margin: 0;
  }

  .nav.active .subscription-wrapper .subscription-button img {
    display: none;
  }

  .hamburger {
    display: flex;
    align-items: flex-end;
  }

  .mobile-close-btn {
    display: block;
  }

  .subscription-wrapper {
    width: 100%;
    justify-content: flex-start;
    margin-top: 18px;
  }

  .overlay.active {
    display: block;
    opacity: 1;
  }

  .questions__inner {
    padding: 15px 20px 10px 20px;
  }

  .questions__item__wrapper {
    width: 80%;
  }

  .questions__item {
    padding: 23px 25px 20px 25px;
  }

  .header .container {
    padding: 13px 13px 12px 41px;
  }

  .nav a:first-of-type {
    margin-left: 0;
  }
}

input:focus,
textarea:focus {
  outline: none;
  border-color: #a234fd !important;
  box-shadow: 0 0 0 2px rgba(162, 52, 253, 0.15);
}

input:focus::placeholder,
textarea:focus::placeholder {
  color: #a234fd;
  opacity: 1;
}

input:focus::-webkit-input-placeholder,
textarea:focus::-webkit-input-placeholder {
  color: #a234fd;
}

input:focus::-moz-placeholder,
textarea:focus::-moz-placeholder {
  color: #a234fd;
}

input:focus:-ms-input-placeholder,
textarea:focus:-ms-input-placeholder {
  color: #a234fd;
}

input:focus::-ms-input-placeholder,
textarea:focus::-ms-input-placeholder {
  color: #a234fd;
}

@media (min-width: 1201px) {
  .nav a {
    position: relative;
    color: #fff;
    transition: color 0.3s;
    z-index: 1;
  }

  .nav a:not(:last-child)::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%) scaleY(0);
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #ff6f3c 0%, #ffb36b 36%, transparent 44%, transparent 56%, #ffb36b 64%, #ff6f3c 100%);
    border-radius: 2px;
    opacity: 0;
    transition: transform 0.3s, opacity 0.3s;
    z-index: -1;
  }

  .nav a:hover,
  .nav a:focus {
    color: #ff6f3c;
  }

  .nav a:not(:last-child):hover::before,
  .nav a:not(:last-child):focus::before {
    transform: translateX(-50%) scaleY(1);
    opacity: 1;
  }

  .nav a:last-child:hover,
  .nav a:last-child:focus {
    color: #fff;
  }

  .nav {
    position: static !important;
    flex-direction: row;
    align-items: center;
    height: auto;
    background: #241b38;
    box-shadow: none;
    padding: 0;
    width: 100%;
    right: 0 !important;
  }

  .hamburger,
  .mobile-close-btn,
  .overlay {
    display: none !important;
  }
}

@media (min-width: 1655px) {

  .testimonial-slider__wrapper .first,
  .testimonial-slider__progressbar {
    display: none;
  }

  .testimonial-slider {
    padding: 30px 20px 0;
  }

  .testimonial-slider .testimonial-slider__wrapper {
    max-width: 100%;
  }
}

.footer__inner {
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  background-color: #44007c;
}

.pre__footer__wrapper {
  padding: 128px 0 106px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.pre__footer {
  max-width: 1044px;
  margin: 0 auto;

  display: flex;
  gap: 73px;
  align-items: flex-start;
  justify-content: space-evenly;
}

.pre__footer__numbers {
  position: relative;
}

.pre__footer__links p,
.pre__footer__contacts p,
.pre__footer__numbers p {
  margin-bottom: 13px;
  font-weight: 600;
  font-size: 20px;
  line-height: 25.6px;
  letter-spacing: -0.4px;
  vertical-align: middle;
  color: #fff;
}

.pre__footer__links .dividers,
.pre__footer__contacts .dividers,
.pre__footer__numbers .dividers {
  margin-bottom: 34px;
  display: flex;
  flex-direction: column;
}

.pre__footer__links .divider:first-child,
.pre__footer__contacts .divider:first-child,
.pre__footer__numbers .divider:first-child {
  width: 38px;
  height: 2px;
  background: linear-gradient(90deg, #a234fd 0%, #ff31ab 48.53%, #ff6f05 100%);
}

.pre__footer__links .divider:last-child,
.pre__footer__contacts .divider:last-child,
.pre__footer__numbers .divider:last-child {
  width: 180px;
  height: 1.5px;
  background-color: rgba(255, 255, 255, 0.2);
}

.pre__footer__links ul li,
.pre__footer__contacts ul li {
  list-style: none;
}

.pre__footer__links ul li a,
.pre__footer__contacts ul li a {
  margin-bottom: 14px;
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  letter-spacing: 0%;
  vertical-align: middle;
  text-decoration: none;
  color: #fff;
}

.pre__footer__links ul li a:hover,
.pre__footer__contacts ul li a:hover {
  color: #c4c4c4;
  transition: all 0.3s ease;
}

.pre__footer__links ul li:last-child,
.pre__footer__contacts ul li:last-child {
  margin-bottom: 0;
}

.pre__footer__numbers ul li {
  margin-bottom: 14px;
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  letter-spacing: 0%;
  vertical-align: middle;
  list-style: none;
  color: #fff;
}

.pre__footer__numbers p,
.pre__footer__numbers .dividers,
.pre__footer__numbers .divider:first-child,
.pre__footer__numbers .divider:last-child {
  visibility: hidden;
}

.footer__icon {
  position: absolute;
  bottom: 15px;
  right: -130px;
}

.footer__running-line {
  width: 100vw;
  overflow: hidden;
  background: #44007c;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  padding: 0;
  position: relative;
}

.footer__marquee {
  display: flex;
  align-items: center;
  white-space: nowrap;
  animation: marquee 18s linear infinite;
}

.footer__marquee span {
  display: flex;
  align-items: center;
  font-weight: 700;
  font-style: bold;
  font-size: 120px;
  line-height: 186.67px;
  color: #fefefe;
  margin-right: 60px;
}

.footer__marquee img {
  width: 56px;
  height: 56px;
  margin: 0 24px;
  vertical-align: middle;
}

.copyright__inner {
  padding: 15px 0;
  display: flex;
  align-items: center;
  justify-content: space-around;
}

.copyright__inner>p {
  font-weight: 400;
  font-size: 16px;
  line-height: 24.89px;
  letter-spacing: 0%;
  color: rgba(255, 255, 255, 0.72);
}

.copyright__inner .links a {
  font-weight: 400;
  font-size: 16px;
  line-height: 24.89px;
  letter-spacing: 0%;
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
  cursor: pointer;
}

.copyright__inner .links a:hover {
  color: #fff;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

@media (max-width: 1024px) {

  .vision-content__text h2,
  .achievements__content h2,
  .achievements__content h2,
  .process__content h2,
  #ebooks .text-wrapper h2,
  .testimonials-title,
  .explore__content h3,
  .our-ebooks__content h3,
  .transformative__content h3,
  .solutions__content h3,
  .platform__content h3,
  .coaching__content h3,
  .guidance__content h3,
  .form__elem__content h3,
  .price__title {
    font-size: 50px;
    line-height: 60px;
  }

  .achievements__counter-value {
    font-size: 75px;
  }

  .achievements__counters__top .achievements__counter-item,
  .achievements__counters__bottom .achievements__counter-item {
    padding: 49px 0 26px 25px;
  }

  .achievements__solutions__items__top,
  .achievements__solutions__items__bottom {
    flex-wrap: wrap;
  }

  .achievements__solutions__item {
    width: 100%;
  }

  .achievements__solutions__items__top,
  .achievements__solutions__items__bottom {
    justify-content: space-around;
  }

  .achievements__solutions__item p {
    font-size: 24px;
    line-height: 28px;
  }

  .achievements__solutions__title-bottom__inner .rotate-flower {
    right: -15px;
    top: 18px;
    max-width: 400px;
  }

  .process__container {
    padding: 0 20px;
  }

  .process__content__row__divider {
    display: none;
  }

  .process__content__card__divider {
    display: none;
  }

  .price__title {
    width: 80%;
  }

  .price__subtitle {
    width: 65%;
  }

  .price__items {
    flex-direction: column;
  }

  .price .price__items .price-item__box {
    padding: 39px 80px 47px 80px;
  }

  .questions__items {
    margin-top: 40px;
    flex-direction: column;
    gap: 15px;
  }

  .pre__footer__links ul li a,
  .pre__footer__contacts ul li a {
    font-size: 15px;
  }
}

@media (max-width: 968px) {
  .intro__content h1 {
    width: 100%;
    font-size: 57px;
    line-height: 68px;
  }

  .achievements__counter-value {
    font-size: 65px;
  }

  .achievements__solutions__title-bottom {
    padding: 0 20px;
  }

  .questions__item__wrapper {
    width: 100%;
  }

  .form__elem {
    flex-direction: column;
  }

  .form__elem__content {
    max-width: 90%;
  }

  #contacts .new-validate input,
  #contacts .new-validate textarea {
    min-width: auto;
  }

  #contacts {
    padding: 30px 20px 30px;
  }

  .ebooks {
    padding: 60px 61px 6px 61px;
  }
}

@media (max-width: 768px) {
  .intro {
    padding-left: 30px;
  }

  .intro__content h1 {
    font-size: 45px;
    line-height: 50px;
  }

  .intro__content p {
    width: 100%;
  }

  .intro__content {
    width: 70%;
  }

  .intro__img {
    width: 30%;
  }

  .vision-content__text h2,
  .achievements__content h2,
  .achievements__content h2,
  .process__content h2,
  #ebooks .text-wrapper h2,
  .testimonials-title,
  .explore__content h3,
  .our-ebooks__content h3,
  .transformative__content h3,
  .solutions__content h3,
  .platform__content h3,
  .coaching__content h3,
  .guidance__content h3,
  .price__title,
  #contacts .form__elem__content h3 {
    font-size: 35px;
    line-height: 40px;
  }

  .achievements {
    padding: 70px 0 0 0;
  }

  .vision-content__text p {
    width: 95%;
  }

  .vision__slider {
    min-height: 510px;
  }

  .slider {
    position: relative;
    bottom: 0;
  }

  .achievements__counter-value {
    font-size: 60px;
  }

  .achievements__counters__top,
  .achievements__counters__bottom {
    padding: 0 20px;
    flex-direction: column;
  }

  .achievements__counters__top {
    border-top: none;
    border-bottom: none;
  }

  .achievements__counters__top .achievements__counter-item:not(:first-child),
  .achievements__counters__bottom .achievements__counter-item:not(:first-child) {
    border: 1px solid rgba(255, 255, 255, 0.2);
  }

  .achievements__counters__top .achievements__counter-item:first-child,
  .achievements__counters__bottom .achievements__counter-item:first-child {
    display: none;
  }

  .achievements__content {
    gap: 0;
  }

  .achievements__content h2 {
    margin-bottom: 15px;
  }

  .achievements__counters__top .achievements__counter-item,
  .achievements__counters__bottom .achievements__counter-item {
    padding: 26px 0 25px 25px;
  }

  .achievements__solutions__items__top,
  .achievements__solutions__items__bottom {
    justify-content: space-around;
  }

  .achievements__solutions__title-bottom__inner .rotate-flower {
    display: none;
  }

  .achievements__solutions__title-bottom__inner>div p {
    width: 90%;
    font-size: 35px;
    line-height: 42.96px;
  }

  .achievements__solutions__title-bottom__inner {
    align-items: center;
    justify-content: flex-end;
  }

  .process__content__rows {
    flex-direction: column;
  }

  .testimonials-title {
    width: 80%;
    text-align: center;
  }

  .testimonials__item__description p {
    width: 100%;
  }

  .testimonials__item {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
  }

  .testimonials {
    padding: 75px 0;
  }

  .testimonials__item {
    margin-bottom: 20px;
  }

  .explore__inner,
  .coaching__inner,
  .solutions__inner,
  .our-ebooks__inner,
  .guidance__inner,
  .platform__inner {
    margin: 0 auto;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    text-align: center;
  }

  .our-ebooks__inner,
  .guidance__inner,
  .platform__inner {
    flex-direction: column-reverse;
  }

  .explore__content,
  .coaching__content,
  .guidance__content {
    padding-top: 20px;
    max-width: 90%;
  }

  .transformative {
    gap: 40px;
  }

  .price__subtitle {
    width: 90%;
  }

  .solutions__content,
  .platform__content {
    max-width: 100%;
    padding-top: 0;
  }

  .questions__title {
    flex-direction: column;
    gap: 20px;
  }

  .questions__title h2 {
    text-align: center;
  }

  .questions__title p {
    width: 90%;
    text-align: center;
  }

  .questions__item:has(.submenu.active) .submenu.active {
    flex-direction: column;
    align-items: center;
  }

  #contacts {
    padding: 30px 20px 30px !important;
  }

  .price {
    padding: 30px 0;
  }

  .solutions {
    margin-bottom: 0;
  }

  .pre__footer {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
    padding: 30px 15px;
  }

  .pre__footer__title {
    font-size: 35px;
    line-height: 40px;
  }

  .pre__footer__wrapper {
    padding: 30px 0;
  }

  .footer__marquee span {
    font-size: 72px;
    line-height: 124.67px;
  }

  .pre-title p {
    width: 95%;
  }

  .achievements__content h2 {
    text-align: left;
    margin: 0 auto 15px;
  }
}

@media (max-width: 1350px) {

  .achievements__solutions,
  #ebooks .text-wrapper h2 {
    padding: 0 20px;
  }

  .explore,
  .our-ebooks,
  .transformative,
  .solutions,
  .platform {
    padding: 30px;
  }

  .achievements__content h2 {
    text-align: center;
  }

  .ebooks {
    padding: 67px 20px 91px 20px;
  }
}

@media (max-width: 1300px) {
  .price__items {
    padding: 0 20px;
  }

  .price-item__box {
    padding: 39px 25px 47px 25px;
  }

  .price-item__button-wrapper .button {
    padding: 17px 79px;
  }

  .price-item:nth-child(2) .price-item__button-wrapper .button {
    padding: 17px 103px;
  }
}

@media (max-width: 1250px) {
  .vision-content__image {
    width: 41%;
  }

  .vision-content__image img {
    max-width: 95%;
  }

  .vision-content__text {
    width: 59%;
  }

  #contacts {
    padding: 100px 20px 130px;
  }
}

@media (max-width: 1200px) {
  .sub-hero__container {
    padding: 40px 15px 0 15px;
  }

  .sub-hero__image {
    width: 45%;
  }

  .sub-hero__image img {
    width: 100%;
    max-width: 100%;
  }

  .sub-hero__content {
    width: 55%;
  }

  .testimonials__item__content {
    flex-direction: column;
    gap: 0;
  }

  .testimonials__item__content>div {
    padding-top: 20px;
    align-self: auto;
  }

  .form__elem {
    gap: 50px;
  }

  .form__elem__content h3 {
    font-size: 55px;
    line-height: 60px;
  }

  .new-validate input,
  .new-validate textarea {
    min-width: 420px;
  }

  .pre__footer {
    gap: 30px;
  }
}

@media (max-width: 992px) {
  .sub-hero__container {
    flex-direction: column;
    gap: 30px;
    padding: 40px 15px 0 15px;
  }

  .sub-hero__content p {
    width: 100%;
    text-align: center;
  }

  .sub-hero__image,
  .sub-hero__content {
    width: 100%;
  }

  .sub-hero__image img {
    max-width: 100%;
  }
}

@media (max-width: 889px) {
  .achievements__solutions__item {
    min-width: 95%;
    margin: 0 auto;
  }

  .testimonial-slider__wrapper .first {
    display: none;
  }
}

@media (max-width: 880px) {
  .vision {
    padding: 30px 0 0 0;
    background: none;
  }

  .vision-content {
    flex-direction: column;
    gap: 30px;
  }

  .vision-content__image,
  .vision-content__text {
    width: 100%;
  }

  .vision-content__image img {
    width: 100%;
  }

  .vision-content__text {
    padding: 0 30px;
  }
}

@media (max-width: 630px) {
  .questions__item {
    padding: 23px 10px 20px 10px;
  }

  .questions__item p {
    font-weight: 500;
    font-size: 13px;
    line-height: 20px;
  }
}

@media (max-width: 576px) {
  .sub-hero__container {
    padding: 25px 15px 0 15px;
  }

  .sub-hero__content p {
    font-size: 18px;
    line-height: 28px;
  }

  .testimonial-slider__card {
    min-width: 90%;
  }
}

@media (max-width: 560px) {

  .slider-arrows .next svg,
  .slider-arrows .prev svg {
    display: block;
    width: 24px;
    height: 24px;
  }

  .slider-arrows .prev,
  .slider-arrows .next {
    padding: 20px;
  }
}

@media (max-width: 500px) {
  .slider-arrows {
    right: 60%;
  }

  .price .price__items .price-item__box {
    padding: 39px 50px 47px 50px;
  }
}

@media (max-width: 425px) {
  .intro {
    padding-right: 30px;
  }

  .intro__content {
    width: auto;
  }

  .intro__img {
    width: auto;
  }

  .intro__content h1,
  .questions__title h2 {
    font-size: 35px;
    line-height: 40px;
  }

  .vision-content__list-wrapper {
    flex-direction: column;
    gap: 20px;
  }

  .testimonial-slider__progress {
    width: 33.3%;
  }

  .subscription-wrapper {
    display: none;
  }

  .price .price__items .price-item__box {
    padding: 39px 5px 47px 5px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .price-item:nth-child(2) .price-item__button-wrapper .button {
    padding: 17px 79px;
  }

  .questions__item p {
    font-size: 14px;
    line-height: 20px;
  }

  .questions__item {
    padding: 23px 5px 20px 5px;
  }

  .questions__item {
    flex-direction: row;
    align-items: center;
    gap: 20px;
  }

  .questions__item:has(.submenu.active) .questions__icon {
    align-self: center;
  }

  .footer__marquee span {
    font-size: 47px;
    line-height: 96.67px;
  }

  .questions__item:has(.submenu.active) .questions__icon {
    position: relative;
    right: 12px;
    top: -19px;
  }

  .questions__inner {
    padding: 15px 10px 10px 12px;
  }

  .nav .subscription-button .button-arrow {
    position: absolute;
    top: 0px;
    right: 0;
  }

}

@media (max-width: 375px) {
  .testimonial-slider__wrapper {
    padding: 0 20px;
  }

  .testimonials__item__description a {
    position: relative;
    padding: 16px 39px 16px 26px;
  }

  .questions__item p {
    font-size: 12px;
    line-height: 20px;
  }

  .play-btn {
    position: absolute;
    top: 55%;
  }
}

@media (max-width: 320px) {
  .questions__item p {
    font-size: 11px;
    line-height: 15px;
  }
}