@charset "UTF-8";
:root {
  --font-family: "Unbounded", sans-serif;
  --font-family-2: "Montserrat", sans-serif;
  --font-family-3: "Bebas Neue", sans-serif;
  --font-size: 18px;
  --font-weight: 500;
  --bg-page: #000;
  --text-color: #fff;
  --main-color: #EE568D;
  --main-color-hover: #da4e81;
}

.wrapper {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

._container {
  max-width: 1340px;
  margin: 0 auto;
  padding: 0 10px;
}

.page {
  flex: 1 1 100%;
}

/*---------------------------------------------------------------------*/
.title__h1 {
  font-family: var(--font-family-3);
  font-weight: 900;
  font-size: clamp(72px, 12vw, 221px);
  text-transform: uppercase;
  line-height: 100%;
}

.title__h2 {
  font-family: var(--font-family);
  font-size: clamp(24px, 4vw, 44px);
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
}

.button__style {
  padding: 21px 32px;
  border-radius: 12px;
  background: #E3BE63;
  background: linear-gradient(134deg, rgb(227, 190, 99) 0%, rgb(251, 238, 185) 21%, rgb(213, 177, 93) 50%, rgb(248, 233, 178) 76%, rgb(221, 181, 83) 100%);
  color: #000;
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 18px;
  font-style: normal;
  line-height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease 0s;
  max-width: 540px;
}
.button__style:hover {
  opacity: 0.8;
}

.pink__text {
  color: var(--main-color);
}

.section-padding {
  padding: 6em 0;
}

/*---------------------------------------------------------------------*/
.hero {
  position: relative;
  overflow: hidden;
  padding: 4rem 2rem;
  min-height: 100vh;
  background: url("../img/black-texture-background.png") center no-repeat;
}

.hero__body {
  padding-bottom: 110px;
}

.body__head {
  text-align: center;
}
.body__head h2 {
  font-weight: 500;
  font-size: 32px;
  line-height: 100%;
  text-align: center;
}

.hero__content {
  display: flex;
  justify-content: space-between;
  position: relative;
  z-index: 3;
  margin-top: 120px;
}
.hero__content .tech {
  display: flex;
  flex-direction: column;
}
.hero__content .tech img {
  width: 210px;
}
.hero__content .tech img:first-child {
  margin-bottom: 150px;
}
.hero__content blockquote {
  max-width: 350px;
  font-family: var(--font-family-2);
  font-weight: 370;
  font-style: italic;
  font-size: 14px;
  line-height: 1.2;
}
.hero__content blockquote .format__btn {
  margin-top: 18px;
}

.hero__image {
  position: absolute;
  left: 6rem;
  top: -10rem;
}

.hero__image-mob {
  display: none;
}

/*============== teaching =============================*/
.teaching {
  position: relative;
}
.teaching::after {
  content: "";
  position: absolute;
  top: 0;
  left: -3em;
  width: 100%;
  height: 100%;
  background: url("../img/spot1.svg") no-repeat;
}

.teaching__body {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
}
.teaching__body .teaching__list {
  margin: 40px auto 0;
  max-width: 1058px;
}
.teaching__body .teaching__list li {
  display: flex;
  align-items: center;
  line-height: 120%;
  font-family: var(--font-family-2);
  font-weight: 600;
  font-size: clamp(16px, 2vw, 24px);
  margin-bottom: 30px;
}
.teaching__body .teaching__list li img {
  width: 44px;
  height: 44px;
  margin-right: 12px;
}

/*============== life ==============================*/
.life {
  position: relative;
}
.life::after {
  content: "";
  position: absolute;
  top: 0;
  right: -80%;
  width: 100%;
  height: 100%;
  background: url("../img/spot2.svg") no-repeat;
}

.life__heading {
  max-width: 830px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}
.life__heading .life__subtext {
  font-family: var(--font-family-2);
  font-weight: 600;
  font-size: clamp(16px, 4vw, 24px);
  line-height: 130%;
  margin-top: 40px;
  display: inline-block;
}

.life__body {
  position: relative;
  z-index: 2;
}
.life__body .life__list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 64px;
  margin-top: 60px;
}
.life__body .life__list li {
  display: flex;
  align-items: center;
}
.life__body .life__list li img {
  width: 44px;
  height: 44px;
  margin-right: 12px;
}
.life__body .life__btn {
  display: flex;
  justify-content: center;
  margin-top: 64px;
}

/*============== profession ==============================*/
.profession {
  position: relative;
}
.profession::after {
  content: "";
  position: absolute;
  top: -50px;
  left: -50px;
  width: 100%;
  height: 100%;
  background: url("../img/spot-money.svg") no-repeat;
}
.profession::before {
  content: "";
  position: absolute;
  top: 23em;
  right: -80%;
  width: 100%;
  height: 100%;
  background: url("../img/spot2.svg") no-repeat;
}

.profession__heading {
  text-align: center;
  position: relative;
  z-index: 2;
}
.profession__heading .profession__subtext {
  font-family: var(--font-family-2);
  font-weight: 600;
  font-size: clamp(14px, 4vw, 24px);
  line-height: 130%;
  margin-top: 20px;
  display: inline-block;
  max-width: 800px;
}

.profession__body {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 2;
}

.profession__list {
  max-width: 600px;
  margin-top: 90px;
}
.profession__list li {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
  font-family: var(--font-family-2);
  font-weight: 600;
  font-size: 24px;
  line-height: 120%;
}
.profession__list li .gold-num {
  font-family: var(--font-family);
  font-weight: 900;
  font-size: 72px;
  line-height: 100%;
  text-align: center;
  text-transform: uppercase;
  background: linear-gradient(110deg, rgb(215, 164, 33) 0%, rgb(247, 228, 153) 21%, rgb(210, 158, 36) 50%, rgb(248, 223, 132) 76%, rgb(211, 160, 31) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  width: 68px;
  margin-right: 10px;
}

.profession__btn {
  margin-top: 64px;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 2;
}
.profession__btn .profession__btn-text {
  font-family: var(--font-family);
  font-weight: 900;
  font-size: clamp(18px, 4vw, 24px);
  line-height: 140%;
  text-align: center;
  text-transform: uppercase;
  max-width: 1090px;
  margin-bottom: 24px;
}

.getting__body {
  margin-top: 100px;
}
.getting__body .getting__title {
  font-family: var(--font-family);
  font-weight: 900;
  font-size: clamp(24px, 4vw, 32px);
  line-height: 100%;
  text-align: center;
  text-transform: uppercase;
}
.getting__body .getting__items {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 32px 0;
}
.getting__body .item__getting {
  border: 4px solid #EE568D;
  border-radius: 6px;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.getting__body .item__getting .getting__img img {
  width: 64px;
  height: 64px;
  margin-right: 15px;
}
.getting__body .item__getting .getting__text {
  font-family: var(--font-family-2);
  font-weight: 700;
  font-size: 24px;
  line-height: 120%;
  max-width: 340px;
}
.getting__body .getting__subtext {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 24px;
  line-height: 120%;
  text-align: center;
  max-width: 850px;
  margin: 0 auto;
}

/*==============  ==============================*/
.whyvolmage {
  position: relative;
}
.whyvolmage::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("../img/spot1.svg") no-repeat;
}
.whyvolmage::before {
  content: "";
  position: absolute;
  top: 23em;
  right: -80%;
  width: 100%;
  height: 100%;
  background: url("../img/spot2.svg") no-repeat;
}

.whyvolmage__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin: 64px 0 150px;
  position: relative;
  z-index: 2;
}
.whyvolmage__list li {
  display: flex;
  align-items: center;
}
.whyvolmage__list li img {
  width: 24px;
  margin-right: 10px;
}
.whyvolmage__list li span {
  font-family: var(--font-family-2);
  font-weight: 400;
  font-size: 24px;
  line-height: 140%;
}

.volmage__cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 60px;
  position: relative;
  z-index: 2;
}
.volmage__cards .card__volmage {
  background: linear-gradient(180deg, #010101 0%, #1F1F1F 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 12px 20px;
  border-radius: 6px;
}
.volmage__cards .card__volmage img {
  width: 190px;
  transform: translateY(-30px);
}
.volmage__cards .card__volmage h3 {
  font-family: var(--font-family-2);
  font-weight: 800;
  font-size: 20px;
  line-height: 130%;
  margin-bottom: 15px;
}
.volmage__cards .card__volmage p {
  font-family: var(--font-family-2);
  font-weight: 500;
  font-size: 18px;
  line-height: 130%;
}

/*============== structure ==============================*/
.training-structure {
  position: relative;
  text-align: center;
}

.training-structure::before,
.training-structure::after {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 77, 184, 0.5), rgba(255, 77, 184, 0.3), transparent 70%);
  z-index: 0;
}

.training-structure::before {
  bottom: 22em;
  left: -15em;
}

.training-structure::after {
  top: -6em;
  right: -15em;
}

.training-structure__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  justify-content: space-between;
  gap: 20px;
  margin-top: 44px;
}

.step:nth-child(2n) {
  margin-top: 250px;
}

.step__number {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: clamp(64px, 4vw, 96px);
  line-height: 100%;
  color: #ff4db8;
  margin-bottom: 32px;
}

.step__title {
  font-family: var(--font-family);
  font-weight: 800;
  font-size: 24px;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
  margin-bottom: 12px;
}

.step__desc {
  font-family: var(--font-family-2);
  font-weight: 500;
  font-size: clamp(14px, 4vw, 20px);
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
}

.step--arrow {
  position: relative;
}

.step--arrow::after {
  content: "";
  position: absolute;
  right: -40px;
  top: 60%;
  transform: translateY(-50%);
  width: 129px;
  height: 129px;
  background-image: url("../img/arrow-down.svg");
  background-size: cover;
  background-repeat: no-repeat;
  z-index: 2;
}

.step--arrow-up {
  position: relative;
}

.step--arrow-up::before {
  content: "";
  position: absolute;
  right: -30px;
  top: 20%;
  transform: translateY(-69%);
  width: 129px;
  height: 129px;
  background-image: url("../img/arrow-up.svg");
  background-size: cover;
  background-repeat: no-repeat;
  z-index: 2;
}

.training-structure__bonus {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 40px;
}
.training-structure__bonus .bonus__text p {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 24px;
  line-height: 120%;
  text-transform: uppercase;
  margin-bottom: 24px;
  text-align: left;
}

/*==============  ==============================*/
.formats {
  text-align: center;
  padding: 60px 20px;
  background: black;
  color: white;
  font-family: Arial, sans-serif;
}

.formats__title {
  color: #FF4392;
  font-size: 32px;
  font-weight: 900;
  margin-bottom: 40px;
}

.formats__wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.format-card {
  border-radius: 12px;
  padding: 32px 24px;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.format-card .format__text h3 {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 32px;
  line-height: 100%;
  letter-spacing: 0%;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.format-card .format__text p {
  margin-bottom: 10px;
  font-family: var(--font-family-2);
  font-weight: 500;
  font-size: 20px;
  line-height: 120%;
}
.format-card .format__text span {
  margin-bottom: 30px;
  display: block;
  font-family: var(--font-family-2);
  font-weight: 500;
  font-size: 20px;
  line-height: 120%;
}
.format-card .format__btn {
  display: inline-block;
  margin-top: 40px;
  padding: 22px;
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 16px;
  line-height: 100%;
  text-transform: uppercase;
  text-align: center;
  border-radius: 6px;
  background: var(--text-color);
  color: #000;
  transition: 0.3s ease;
}
.format-card .format__btn:hover {
  background: #f0f0f0;
}

/* Цветовые стили */
.standard {
  background: #F84791;
}

.premium {
  background: url("../img/silver_bg.png") no-repeat;
  object-fit: cover;
  width: 100%;
  color: black;
}

.vip {
  background: url("../img/gold_bg.png") no-repeat;
  color: black;
}

.formats__note {
  color: white;
  font-family: var(--font-family);
  font-weight: 500;
  font-size: clamp(18px, 4vw, 24px);
  line-height: 140%;
  text-align: center;
}

.modal {
  display: none; /* Не показується, поки не активована */
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.8); /* затемнення */
  transition: opacity 0.3s ease;
  opacity: 0;
  pointer-events: none; /* Щоб не натискалося, коли приховано */
}

.modal.show {
  display: block;
  opacity: 1;
  pointer-events: auto;
}

.modal-content {
  background-color: #000000;
  margin: 7% auto 0;
  padding: 32px 64px;
  border-radius: 5px;
  width: 94%;
  max-width: 840px;
  transform: translateY(-30px);
  transition: transform 0.3s ease;
  opacity: 0;
}
.modal-content h2 {
  margin-bottom: 10px;
  font-family: var(--font-family);
  color: var(--main-color);
  font-weight: 900;
  font-size: clamp(24px, 4vw, 32px);
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
  text-transform: uppercase;
}

.modal.show .modal-content {
  transform: translateY(0);
  opacity: 1;
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  cursor: pointer;
  font-size: 1.5rem;
}

form p {
  font-family: var(--font-family-2);
  font-weight: 500;
  font-size: 18px;
  line-height: 140%;
  text-align: center;
  margin-bottom: 32px;
}

.form-group {
  margin: 1rem 0;
}

.form-group input {
  width: 100%;
  font-family: var(--font-family-2);
  font-weight: 800;
  padding: 0.8rem;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.form-group input::placeholder {
  font-weight: 400;
}

.form-group-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 40px;
}
.form-group-btn .form-group__text {
  font-family: var(--font-family-2);
  font-weight: 400;
  font-size: 14px;
  line-height: 140%;
  text-align: center;
  margin-bottom: 12px;
}
.form-group-btn .btn-modal {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 18px;
  line-height: 100%;
  text-transform: uppercase;
  border-radius: 6px;
}

/*============== story ==============================*/
.story__body {
  position: relative;
}
.story__body::before {
  content: "";
  position: absolute;
  top: -20px;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("../img/iPhone-15.png") no-repeat;
}
.story__body::after {
  content: "";
  position: absolute;
  top: 80px;
  left: 70%;
  width: 100%;
  height: 100%;
  background: url("../img/rupor.png") no-repeat;
}

.swiper {
  width: 100%;
  height: 700px;
  position: relative;
}

.swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
}
.swiper-slide .review__wrapper {
  min-width: 70%;
}
.swiper-slide .review__wrapper iframe {
  min-width: 100%;
  border-radius: 8px;
  height: 550px;
  border: 4px solid #3F3F3F;
}

.swiper-button-next,
.swiper-button-prev {
  position: absolute;
  top: 94% !important;
  width: 44px;
  height: 44px;
  z-index: 20;
}

.swiper-button-next:after {
  background: url("../img/next-slider.svg") no-repeat !important;
  font-size: 0;
  width: 100%;
  height: 100%;
}

.swiper-button-prev:after {
  background: url("../img/prev-slider.svg") no-repeat !important;
  font-size: 0;
  width: 100%;
  height: 100%;
}

.swiper-button-next {
  right: 40%;
}

.swiper-button-prev {
  left: 40%;
}

.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom,
.swiper-pagination-fraction {
  bottom: 24px;
}

.swiper-pagination-bullet {
  background: var(--main-color) !important;
  opacity: 1 !important;
  width: 16px;
  border-radius: 4px;
  background: #3F3F3F !important;
}

.swiper-pagination-bullet-active {
  background: var(--main-color) !important;
  width: 64px;
  height: 8px;
  border-radius: 8px;
}

/*================ footer ============================*/
.footer {
  padding: 0 1rem 1rem;
}

.footer__body {
  display: grid;
  grid-template-columns: 1fr;
  background: linear-gradient(107.05deg, #EE568D 0%, #883151 95.05%);
  padding: 64px 48px;
  border-radius: 12px;
  position: relative;
}
.footer__body .footer__text {
  position: relative;
  z-index: 2;
}
.footer__body .footer__text .footer__title {
  font-family: var(--font-family);
  font-weight: 900;
  font-size: clamp(26px, 4vw, 44px);
  line-height: 140%;
  text-transform: uppercase;
  margin-bottom: 50px;
  max-width: 690px;
}
.footer__body .footer__text .footer__title span {
  color: #000;
}
.footer__body .footer__text .footer__subtext {
  font-family: var(--font-family);
  font-weight: 600;
  font-style: italic;
  font-size: clamp(16px, 4vw, 24px);
  line-height: 120%;
  margin-bottom: 44px;
  max-width: 650px;
}
.footer__body .footer__img {
  position: absolute;
  width: 100%;
  height: 100%;
  background: url("../img/bottom_girl.png") no-repeat;
  bottom: 0;
  left: 55%;
}

/*===================================================*/
/*============== @media =============================*/
/*===================================================*/
@media (min-width: 1510px) {
  ._container {
    max-width: 1490px;
  }
  .header::after {
    right: -26%;
  }
  .footer {
    padding: 0 5rem 100px;
  }
  .hero__image {
    position: absolute;
    left: 20rem;
    top: -5rem;
  }
}
@media (max-width: 1200px) {
  .hero__image {
    position: absolute;
    left: -3rem;
    top: -8rem;
  }
}
@media (max-width: 959.98px) {
  .hero__content {
    display: flex;
    flex-direction: column;
  }
  .hero__content .tech img:last-child {
    margin: 0 auto;
  }
  .hero__content blockquote {
    text-align: center;
    margin: 0 auto;
  }
  .swiper-button-next {
    right: 35%;
  }
  .swiper-button-prev {
    left: 35%;
  }
  .whyvolmage__list {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .whyvolmage__list li span {
    font-size: 16px;
  }
  .volmage__cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 60px 20px;
  }
  .formats__wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
  .swiper {
    width: 100%;
    height: 600px;
    position: relative;
  }
  .swiper-slide .review__wrapper {
    min-width: 100%;
  }
  .swiper-slide .review__wrapper iframe {
    min-width: 100%;
    height: 450px;
  }
  .footer__img {
    display: none;
  }
}
@media (max-width: 767.98px) {
  .button__style {
    width: 100%;
    padding: 21px;
    font-size: 14px;
    text-align: center;
    font-size: 12px;
    line-height: 120%;
  }
  .hero__image {
    position: absolute;
    left: -3rem;
    top: -5rem;
  }
  .life__body .life__list {
    gap: 44px;
    flex-direction: column;
  }
  .life::after {
    right: -59%;
  }
  .getting__body .getting__items {
    grid-template-columns: 1fr;
  }
  .getting__body .getting__items .item__getting .getting__text {
    font-size: 16px;
  }
  .getting__body .getting__subtext {
    font-size: 14px;
  }
  .profession::after {
    content: "";
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("../img/spot-money-mob.svg") no-repeat;
  }
  .profession::before {
    top: 23em;
    right: -27%;
  }
  .training-structure__steps {
    grid-template-columns: repeat(1, 1fr);
  }
  .step:nth-child(2n) {
    margin-top: 40px;
  }
  .step {
    margin-top: 44px;
  }
  .step--arrow::after {
    content: "";
    position: absolute;
    right: -40px;
    top: -1em;
    background-image: url("../img/arrow-down-mob.svg");
  }
  .step--arrow-up::before {
    content: "";
    position: absolute;
    left: -37px;
    top: 12%;
    background-image: url("../img/arrow-down-bom2.svg");
  }
  .training-structure__bonus {
    flex-direction: column;
    margin-top: 70px;
  }
  .training-structure__bonus .bonus__text p {
    font-size: 18px;
    text-align: center;
  }
  .formats__wrapper {
    grid-template-columns: repeat(1, 1fr);
  }
  .swiper {
    height: 550px;
  }
  .swiper-button-next,
  .swiper-button-prev {
    top: 96% !important;
  }
  .swiper-horizontal > .swiper-pagination-bullets,
  .swiper-pagination-bullets.swiper-pagination-horizontal,
  .swiper-pagination-custom,
  .swiper-pagination-fraction {
    bottom: 11px;
  }
  .swiper-button-next {
    right: 30%;
  }
  .swiper-button-prev {
    left: 30%;
  }
}
@media (max-width: 639.98px) {
  .hero {
    padding: 4rem 1rem 0;
  }
  .hero__image {
    position: absolute;
    left: -3rem;
    top: 0;
  }
  .hero__content .tech img:first-child {
    width: 165px;
    margin-bottom: 140px;
  }
  .swiper {
    width: 100%;
    height: 510px;
    position: relative;
  }
  .swiper-slide .review__wrapper {
    min-width: 100%;
  }
  .swiper-slide .review__wrapper iframe {
    min-width: 100%;
    height: 380px;
  }
  .swiper-button-next {
    right: 20%;
  }
  .swiper-button-prev {
    left: 20%;
  }
}
@media (max-width: 479.98px) {
  .button__style {
    font-size: 14px;
    padding: 12px 28px;
  }
  .btn-modal {
    padding: 16px;
  }
  .section-padding {
    padding: 3em 0;
  }
  .hero {
    background: url("../img/black-texture-background-copy-mob.png") center no-repeat;
  }
  .hero__body {
    padding-bottom: 60px;
  }
  .hero__content {
    margin-top: 90px;
  }
  .hero__content .tech img:first-child {
    width: 107px;
    margin-bottom: 180px;
  }
  .body__head h2 {
    font-size: 20px;
    line-height: 130%;
    margin-bottom: 12px;
  }
  .profession__list li {
    flex-direction: column;
    text-align: center;
  }
  .profession__list li .gold-num {
    margin-right: 0;
    margin-bottom: 24px;
  }
  .whyvolmage__list {
    margin: 28px 0 100px;
  }
  .volmage__cards .card__volmage img {
    width: 130px;
  }
  .mentor {
    font-size: 12px;
  }
  .teaching__body .teaching__list li img {
    width: 32px;
    height: 32px;
    margin-right: 12px;
  }
  .life::after {
    right: -5em;
    top: -11em;
  }
  .life__body .life__list {
    align-items: center;
  }
  .life__body .life__list li:last-child {
    max-width: 210px;
    text-align: center;
    margin-bottom: 15px;
  }
  .life__body .life__btn {
    margin-top: 32px;
  }
  .life__heading .life__subtext {
    margin-top: 15px;
  }
  .profession__list li {
    font-size: 18px;
  }
  .volmage__cards {
    grid-template-columns: repeat(1, 1fr);
    gap: 80px 20px;
  }
  .bonus__img img {
    width: 210px;
  }
  .story__body::before {
    top: -2em;
    left: -8em;
  }
  .story__body::after {
    top: 26em;
    left: 11em;
    width: 100%;
    height: 100%;
    background: url("../img/rupor-mob.png") no-repeat;
  }
  .swiper {
    width: 100%;
    height: 480px;
    position: relative;
  }
  .swiper-slide .review__wrapper {
    min-width: 100%;
  }
  .swiper-slide .review__wrapper iframe {
    min-width: 100%;
    height: 320px;
  }
  .swiper-button-next {
    right: 10%;
    top: 93% !important;
  }
  .swiper-button-prev {
    left: 10%;
    top: 93% !important;
  }
  .swiper-horizontal > .swiper-pagination-bullets,
  .swiper-pagination-bullets.swiper-pagination-horizontal,
  .swiper-pagination-custom,
  .swiper-pagination-fraction {
    bottom: 25px;
  }
  .story__body::before {
    top: -4em;
    left: -10em;
  }
  .story__body::after {
    top: 12em;
  }
  .footer {
    padding: 0 0.5rem 0.5rem;
  }
  .footer .footer__body {
    padding: 44px 28px;
  }
  .modal-content {
    padding: 24px 32px;
  }
}
@media (max-width: 439.98px) {
  .hero__content .tech img:first-child {
    margin-bottom: 100px;
  }
  .hero__image {
    display: none;
  }
  .hero__image-mob {
    display: block;
    position: absolute;
    left: -7px;
    top: 9rem;
    width: 95%;
  }
}
@media (max-width: 414.98px) {
  .hero__content {
    margin-top: 74px;
  }
  .hero__content .tech img:first-child {
    width: 107px;
    margin-bottom: 120px;
  }
  .hero__content .tech img {
    width: 220px;
  }
  .hero__content blockquote {
    font-size: 14px;
  }
  .hero__content blockquote .format__btn {
    margin-top: 20px;
  }
  .hero__image {
    position: absolute;
    left: -1rem;
    top: 6rem;
  }
  .swiper {
    width: 100%;
    height: 460px;
    position: relative;
  }
  .swiper-slide .review__wrapper {
    min-width: 100%;
  }
  .swiper-slide .review__wrapper iframe {
    min-width: 100%;
    height: 320px;
  }
}

/*# sourceMappingURL=style.css.map */
