@charset "UTF-8";
* {
  padding: 0;
  margin: 0;
  border: 0;
}

*,
*:before,
*:after {
  box-sizing: border-box;
}

:focus,
:active {
  outline: none;
  -webkit-tap-highlight-color: transparent;
}

a:focus,
a:active {
  outline: none;
  -webkit-tap-highlight-color: transparent;
}

nav,
footer,
header,
aside {
  display: block;
}

html,
body {
  width: 100%;
  font-size: 100%;
  line-height: 100%;
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  height: 100dvh;
  min-width: 320px;
}

input,
button,
textarea {
  font-family: inherit;
  resize: none;
}

input::-ms-clear {
  display: none;
}

button {
  cursor: pointer;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

a, a:visited {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

a {
  font-size: inherit;
  color: inherit;
  display: inherit;
}

ul li {
  list-style: none;
}

img {
  vertical-align: top;
  max-width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

h1, h2, h3, h4, h5, h6, p, address, cite, span, ul, li {
  font-style: normal;
  font-size: inherit;
  font-weight: inherit;
}

/*-----------------------------------обнуляющие стили--------------------------------*/
/*----------------------------------Шрифты--------------------------------*/
@font-face {
  font-family: "Geometria";
  src: url("../fonts/Geometria-Regular.woff2") format(woff2);
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Geometria";
  src: url("../fonts/Geometria-Medium.woff2") format(woff2);
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Geometria";
  src: url("../fonts/Geometria-Bold.woff2") format(woff2);
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}
/*----------------------------------Шрифты--------------------------------*/
/*----------------------------------Переменные--------------------------------*/
:root {
  --color-black: #0A0C0F;
  --color-white: #FFFFFF;
  --color-pur: #5D6EB2;
  --color-gray: #EFEFEF;
  --font-family-base: "Geometria", Arial, sans-serif;
  --container-width: 1532px;
}

/*----------------------------------Переменные--------------------------------*/
/*----------------------------------global--------------------------------*/
body.lock {
  overflow: hidden;
}

body {
  font-family: var(--font-family-base);
  font-size: 16px;
  font-weight: 400;
  color: var(--color-black);
  background-color: var(--color-white);
}
.wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  overflow: hidden;
}

.main {
  flex: 1 1 auto;
}

._container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0px 16px;
}

._ibg {
  position: relative;
}
._ibg img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
}

.subtitle {
  font-size: clamp(50px, 4.1666666667vw, 80px);
  font-weight: 700;
  line-height: 110%;
  text-transform: uppercase;
  color: var(--color-pur);
}

.button {
  display: block;
  padding: 21px 30px;
  border-radius: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  font-size: 14px;
  background-color: var(--color-pur);
  color: var(--color-white);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
@media (hover: hover) {
  .button:hover {
    background-color: #94A6ED;
  }
}
@media (max-width: 768px) {
  .button {
    min-width: 230px;
    padding: 20px;
  }
}

/*----------------------------------global--------------------------------*/
/*----------------------------------main-section--------------------------------*/
.hero {
  position: relative;
  background-color: var(--color-gray);
  overflow: hidden;
  padding: 200px 0px 160px;
}
@media (max-width: 1550px) {
  .hero {
    padding: 100px 0px 80px;
  }
}
@media (max-width: 1024px) {
  .hero {
    padding: 30px 0px 0px;
  }
}
.hero__content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 768px) {
  .hero__content {
    flex-wrap: wrap;
  }
}
.hero__icon {
  position: absolute;
  bottom: 152px;
  left: 0;
  z-index: 2;
}
@media (max-width: 1550px) {
  .hero__icon {
    bottom: 75px;
    left: -300px;
  }
}
@media (max-width: 1024px) {
  .hero__icon {
    display: none;
  }
}
.hero__logo {
  margin-bottom: 168px;
  position: relative;
  z-index: 3;
}
@media (max-width: 1550px) {
  .hero__logo {
    margin-bottom: 100px;
  }
}
@media (max-width: 1024px) {
  .hero__logo {
    margin-bottom: 67px;
    width: 172px;
  }
}
.hero__title {
  font-weight: 700;
  font-size: 115px;
  line-height: 110%;
  text-transform: uppercase;
  color: var(--color-pur);
  margin-bottom: 62px;
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-left: -30px;
}
@media (max-width: 1550px) {
  .hero__title {
    margin-left: -10px;
  }
}
@media (max-width: 1024px) {
  .hero__title {
    font-size: 51px;
    margin-left: -20px;
  }
}
.hero__title_item {
  font-style: italic;
  font-weight: 400;
  margin-right: 35px;
  font-size: 215px;
  margin-top: 20px;
  display: block;
}
@media (max-width: 1024px) {
  .hero__title_item {
    font-size: 98px;
    margin-left: 0px;
  }
}
.hero__title_icon {
  position: absolute;
  bottom: 30px;
  right: 230px;
}
@media (max-width: 1024px) {
  .hero__title_icon {
    bottom: 15px;
    right: 125px;
    width: 32px;
  }
}
.hero__year {
  font-size: 137px;
  line-height: 110%;
  text-transform: uppercase;
  display: flex;
  color: var(--color-pur);
  position: relative;
  z-index: 2;
}
@media (max-width: 1024px) {
  .hero__year {
    display: none;
  }
}
.hero__year_num {
  color: transparent;
  -webkit-text-stroke: 2px var(--color-pur);
  text-stroke: 2px var(--color-pur);
}
.hero__year_icon {
  position: absolute;
  bottom: 0;
  left: -190px;
  width: 100%;
}
.hero__image {
  position: absolute;
  right: -50px;
  max-width: 1120px;
  z-index: 3;
}
@media (max-width: 1550px) {
  .hero__image {
    bottom: 0;
    right: -200px;
    max-width: 900px;
  }
}
@media (max-width: 1024px) {
  .hero__image {
    position: static;
    margin: 0px -50px;
  }
}
.hero__sphere_1 {
  left: -250px;
  top: -210px;
  max-width: 500px;
  position: absolute;
  z-index: 2;
  filter: blur(13px);
  -webkit-filter: blur(13px);
  -moz-filter: blur(13px);
}
@media (max-width: 1024px) {
  .hero__sphere_1 {
    display: none;
  }
}
.hero__sphere_2 {
  max-width: 150px;
  position: absolute;
  top: 0;
  left: 150px;
  filter: blur(3px);
  -webkit-filter: blur(3px);
  -moz-filter: blur(3px);
}
@media (max-width: 1024px) {
  .hero__sphere_2 {
    width: 144px;
    top: 286px;
    left: 70%;
    filter: blur(5px);
    -webkit-filter: blur(5px);
    -moz-filter: blur(5px);
  }
}
.hero__sphere_3 {
  max-width: 80px;
  position: absolute;
  top: 150px;
  left: 760px;
  filter: blur(1px);
  -webkit-filter: blur(1px);
  -moz-filter: blur(1px);
}
@media (max-width: 1024px) {
  .hero__sphere_3 {
    top: 280px;
    left: 0px;
    width: 35px;
  }
}
.hero__sphere_4 {
  max-width: 400px;
  position: absolute;
  top: 50px;
  right: -30px;
  filter: blur(8px);
  -webkit-filter: blur(8px);
  -moz-filter: blur(8px);
}
@media (max-width: 1024px) {
  .hero__sphere_4 {
    top: -100px;
    right: -90px;
    width: 220px;
  }
}
.hero__sphere_5 {
  max-width: 268px;
  position: absolute;
  bottom: 76px;
  left: 76px;
  filter: blur(20px);
  -webkit-filter: blur(20px);
  -moz-filter: blur(20px);
}
@media (max-width: 1024px) {
  .hero__sphere_5 {
    bottom: 120px;
    left: -10px;
    width: 80px;
    filter: blur(2px);
    -webkit-filter: blur(2px);
    -moz-filter: blur(2px);
  }
}

/*----------------------------------main-section--------------------------------*/
/*----------------------------------about--------------------------------*/
.about {
  padding: 170px 0px 100px;
  position: relative;
  overflow: hidden;
}
@media (max-width: 1024px) {
  .about {
    padding: 100px 0px 0px 0px;
  }
}
.about__title {
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  z-index: 2;
}
.about__icon {
  margin-top: -175px;
}
.about__text {
  max-width: 750px;
  margin: auto;
  margin-bottom: 40px;
  position: relative;
  z-index: 2;
}
.about__text p:not(:last-child) {
  margin-bottom: 20px;
}
.about__buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px 40px;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}
.about__sphere_1 {
  max-width: 209px;
  filter: blur(5px);
  -webkit-filter: blur(5px);
  -moz-filter: blur(5px);
  transform: rotate(25deg);
  position: absolute;
  top: 120px;
  left: 120px;
}
.about__sphere_2 {
  max-width: 117px;
  transform: rotate(-47deg);
  position: absolute;
  bottom: 0;
  left: 300px;
}
.about__sphere_3 {
  max-width: 500px;
  filter: blur(10px);
  -webkit-filter: blur(10px);
  -moz-filter: blur(10px);
  position: absolute;
  top: 50px;
  right: -50px;
}
@media (max-width: 1024px) {
  .about__sphere {
    display: none;
  }
}

/*----------------------------------about--------------------------------*/
/*----------------------------------problem-solution--------------------------------*/
.problem-solution {
  overflow: hidden;
  margin: 50px 0px 100px;
}
@media (max-width: 768px) {
  .problem-solution {
    margin: 100px 0px;
  }
}
.problem-solution__title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  margin-bottom: 80px;
}
.problem-solution__title img {
  margin-right: -200px;
}
@media (max-width: 1024px) {
  .problem-solution__title img {
    order: -1;
  }
}
@media (max-width: 1024px) {
  .problem-solution__title {
    margin-bottom: 40px;
    flex-wrap: wrap;
  }
}
.problem-solution__item {
  padding: 26px 40px;
  border: 2px solid rgba(119, 245, 74, 0);
  border-radius: 24px;
  max-width: 360px;
  position: relative;
  transition: all 0.3s;
  cursor: pointer;
}
.problem-solution__item.click_ {
  transition: all 0.3s;
  background-color: var(--color-pur);
}
.problem-solution__item.click_ .problem-solution__bottom_title {
  opacity: 0;
  transition: all 0.3s;
}
.problem-solution__item.click_ .problem-solution__text,
.problem-solution__item.click_ .problem-solution__arrow {
  opacity: 1;
  transition: all 0.3s;
}
.problem-solution__item.click_ .problem-solution__icon {
  opacity: 0;
  transition: all 0.3s;
}
@media (max-width: 768px) {
  .problem-solution__item {
    border: 2px solid rgba(119, 245, 74, 0.1);
    padding: 20px;
  }
}
.problem-solution__icon {
  text-align: center;
  margin-bottom: 65px;
}
.problem-solution__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}
.problem-solution__bottom_title {
  font-weight: 500;
  font-size: 24px;
  line-height: 110%;
  text-transform: uppercase;
}
@media (max-width: 768px) {
  .problem-solution__bottom_title {
    font-size: 21px;
  }
}
.problem-solution__text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  padding: 0px 40px;
  color: var(--color-white);
  opacity: 0;
  line-height: 110%;
}
.problem-solution__arrow {
  position: absolute;
  bottom: 40px;
  right: 40px;
  opacity: 0;
}

/*----------------------------------problem-solution--------------------------------*/
/*----------------------------------choosing-path--------------------------------*/
.choosing-path {
  margin-bottom: 100px;
  position: relative;
}
@media (max-width: 1024px) {
  .choosing-path {
    margin-bottom: 80px;
  }
}
.choosing-path__content {
  max-width: 1152px;
  margin: auto;
  padding: 0px 16px;
}
.choosing-path__title {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 10px;
  margin-bottom: 10px;
  position: relative;
  z-index: 2;
}
.choosing-path__title_icon {
  transform: rotate(180deg);
  margin-left: -400px;
  width: 900px;
  position: relative;
  z-index: 2;
}
@media (max-width: 1024px) {
  .choosing-path__title_icon {
    margin-left: 0px;
  }
}
@media (max-width: 1024px) {
  .choosing-path__title {
    flex-wrap: wrap;
  }
  .choosing-path__title .subtitle {
    margin-bottom: 10px;
  }
}
.choosing-path__inner {
  flex-basis: 570px;
}
.choosing-path__text {
  font-weight: 500;
  font-size: 35px;
  line-height: 110%;
}
@media (max-width: 768px) {
  .choosing-path__text {
    font-size: 30px;
  }
}
.choosing-path__wrap {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  width: 100%;
}
.choosing-path__video {
  background-color: var(--color-gray);
  border-radius: 24px;
  padding: 20px;
  position: relative;
  overflow: hidden;
  min-height: 500px;
}
.choosing-path__video_question {
  font-weight: 500;
  font-size: 35px;
  line-height: 110%;
  color: var(--color-pur);
  margin-bottom: 20px;
}
.fancybox__html5video, .fancybox__iframe, .fancybox__content {
  border-radius: 24px;
}
.fancybox__backdrop {
  background: rgba(50, 67, 136, 0.3);
}
@media (max-width: 768px) {
  .choosing-path__video_question {
    font-size: 25px;
  }
  .choosing-path__video {
    background-color: var(--color-gray);
    border-radius: 24px;
    padding: 20px;
    position: relative;
    overflow: hidden;
    min-height: 300px;
  }
  .choosing-path .reviews__arrows {
    display: flex;
  }
}
.choosing-path .video-slider {
  overflow: hidden;
}
.choosing-path__sphere {
  width: 100px;
}
.choosing-path__sphere_1 {
  max-width: 150px;
  filter: blur(2px);
  -webkit-filter: blur(2px);
  -moz-filter: blur(2px);
  transform: rotate(-47deg);
  position: absolute;
  top: -50px;
  left: -50px;
}
@media (max-width: 1024px) {
  .choosing-path__sphere_1 {
    max-width: 100px;
  }
}
.choosing-path__sphere_2 {
  max-width: 70px;
  filter: blur(2px);
  -webkit-filter: blur(2px);
  -moz-filter: blur(2px);
  transform: rotate(-47deg);
  position: absolute;
  top: 10px;
  left: 170px;
}
@media (max-width: 1024px) {
  .choosing-path__sphere_2 {
    display: none;
  }
}
.choosing-path__sphere_3 {
  max-width: 200px;
  filter: blur(5px);
  -webkit-filter: blur(5px);
  -moz-filter: blur(5px);
  position: absolute;
  top: 0;
  right: -100px;
}
@media (max-width: 1024px) {
  .choosing-path__sphere_3 {
    max-width: 100px;
    right: -50px;
  }
}
.choosing-path__sphere_4 {
  max-width: 70px;
  filter: blur(5px);
  -webkit-filter: blur(5px);
  -moz-filter: blur(5px);
  transform: rotate(-47deg);
  position: absolute;
  bottom: 0;
  left: 60%;
}
@media (max-width: 1024px) {
  .choosing-path__sphere_4 {
    bottom: -50px;
  }
}
.choosing-path__sphere_5 {
  max-width: 300px;
  filter: blur(5px);
  -webkit-filter: blur(5px);
  -moz-filter: blur(5px);
  transform: rotate(30deg);
  position: absolute;
  top: -100px;
  left: -150px;
}
@media (max-width: 1024px) {
  .choosing-path__sphere_5 {
    display: none;
  }
}
.choosing-path__sphere_6 {
  max-width: 140px;
  transform: rotate(47deg);
  position: absolute;
  top: -100px;
  right: 80px;
}
@media (max-width: 1024px) {
  .choosing-path__sphere_6 {
    display: none;
  }
}
.choosing-path__sphere_7 {
  max-width: 160px;
  transform: rotate(47deg);
  position: absolute;
  top: 60%;
  left: -20px;
}
@media (max-width: 1024px) {
  .choosing-path__sphere_7 {
    display: none;
  }
}
.choosing-path__sphere_8 {
  max-width: 115px;
  transform: rotate(47deg);
  position: absolute;
  top: 70%;
  right: 100px;
}
@media (max-width: 1024px) {
  .choosing-path__sphere_8 {
    display: none;
  }
}
.choosing-path__sphere_9 {
  max-width: 400px;
  transform: rotate(47deg);
  position: absolute;
  top: 40%;
  left: 50%;
  filter: blur(15px);
  -webkit-filter: blur(15px);
  -moz-filter: blur(15px);
}
@media (max-width: 1024px) {
  .choosing-path__sphere_9 {
    display: none;
  }
}


/*----------------------------------choosing-path--------------------------------*/
/*----------------------------------quiz--------------------------------*/
.quiz {
  margin-bottom: 150px;
  overflow: hidden;
  position: relative;
}
.quiz__title {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 10px;
  margin-bottom: 80px;
}
.quiz__title img {
  margin-right: -220px;
}
@media (max-width: 1024px) {
  .quiz__title img {
    order: -1;
  }
}
@media (max-width: 1024px) {
  .quiz__title {
    flex-wrap: wrap;
    margin-bottom: 40px;
  }
}
@media (max-width: 1024px) {
  .quiz {
    margin-bottom: 100px;
  }
}
.quiz__sphere {
  filter: blur(5px);
  -webkit-filter: blur(5px);
  -moz-filter: blur(5px);
  position: absolute;
  top: 40%;
  right: -170px;
  max-width: 350px;
}
@media (max-width: 1024px) {
  .quiz__sphere {
    display: none;
  }
}

.quiz-container {
  width: 100%;
  position: relative;
  z-index: 2;
}

.progress-container {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 30px;
}
.progress-bar {
  height: 13px;
  max-width: 250px;
  background-color: #e0e0e0;
  border-radius: 8px;
  flex-grow: 1;
  margin: 0 15px;
  overflow: hidden;
}
.progress {
  height: 100%;
  background-color: var(--color-pur);
  width: 0%;
  transition: width 0.3s ease;
  border-radius: 8px;
}
.question-number {
  font-weight: 600;
  color: #555;
  white-space: nowrap;
}
.question-container {
  margin-bottom: 30px;
}
.question {
  font-size: 1.4rem;
  margin-bottom: 20px;
  color: #222;
  line-height: 1.4;
}
.options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
  gap: 20px;
}
@media (max-width: 768px) {
  .options {
    display: flex;
    flex-wrap: wrap;
  }
}
.option {
  padding: 20px;
  border: 2px solid #e0e0e0;
  border-radius: 16px;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  gap: 5px;
  width: 100%;
}
.option__letter {
  font-weight: 500;
  font-size: 22px;
  line-height: 100%;
}
@media (max-width: 768px) {
  .option__letter {
    font-size: 18px;
  }
}
.option__text {
  line-height: 110%;
  padding-top: 3px;
}
@media (max-width: 768px) {
  .option__text {
    font-size: 13px;
  }
}
.option:hover {
  background-color: #f8f9ff;
  border-color: #c5ceff;
}
.option.selected {
  background: rgba(93, 110, 178, 0.1);
  border-color: var(--color-pur);
}
.option input {
  margin-right: 12px;
  width: 20px;
  height: 20px;
  border: 1px solid var(--color-pur);
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 50%;
  position: relative;
  cursor: pointer;
  transition: all 0.2s ease;
  flex: none;
}
.option input:checked {
  background-color: var(--color-pur);
}
.option input:checked::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 14px;
  height: 14px;
  background-color: var(--color-white);
  border-radius: 50%;
}
.option input:checked::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 9px;
  height: 9px;
  background-color: var(--color-pur);
  border-radius: 50%;
}
.btn-next {
  background-color: var(--color-pur);
  color: var(--color-white);
  border: none;
  border-radius: 8px;
  padding: 14px 28px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.2s ease;
  width: 100%;
  margin-top: 10px;
}
.result-container {
  padding: 20px 0;
  display: none;
  gap: 20px 10px;
}
.result-container__wrap {
  flex-basis: 750px;
}
.result-container__cards {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
}
@media (max-width: 1024px) {
  .result-container__cards {
    overflow-y: scroll;
  }
}
@media (max-width: 1024px) {
  .result-container {
    flex-wrap: wrap;
    padding-bottom: 100px;
  }
}
.result-description h3 {
  font-size: 1.8rem;
  margin-bottom: 15px;
  font-weight: 500;
  font-size: 35px;
  line-height: 110%;
  max-width: 415px;
}
.result-description p {
  line-height: 110%;
  color: rgba(10, 12, 15, 0.7);
  margin-bottom: 20px;
}
.result-image {
  width: 150px;
  height: 150px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background-color: #eef2ff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
}
.restart-btn {
  background-color: var(--color-pur);
  color: var(--color-white);
  border: none;
  border-radius: 8px;
  padding: 12px 24px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.2s ease;
  display: inline-block;
}
.restart-btn svg {
  transform: rotate(180deg);
}
@media (max-width: 1024px) {
  .restart-btn {
    position: absolute;
    bottom: 0;
  }
}

/*--------------------------------quiz--------------------------------*/
/*----------------------------------reviews--------------------------------*/
.reviews {
  overflow: hidden;
  margin-bottom: 150px;
}
@media (max-width: 1024px) {
  .reviews {
    margin-bottom: 100px;
  }
}
.reviews__title {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px 80px;
  margin-bottom: 40px;
}
.reviews__title img {
  transform: rotate(180deg);
  margin-left: -620px;
  width: 850px;
}
@media (max-width: 768px) {
  .reviews__title img {
    margin-left: 0px;
  }
}
@media (max-width: 768px) {
  .reviews__title {
    flex-wrap: wrap;
  }
}
.reviews__buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px 40px;
}
.reviews__buttons .button {
  min-width: 355px;
}
@media (max-width: 768px) {
  .reviews__buttons .button {
    min-width: 280px;
  }
}
@media (max-width: 768px) {
  .reviews__buttons {
    flex-wrap: wrap;
  }
}
.reviews__arrows {
  position: relative;
  margin-bottom: 100px;
  max-width: 150px;
  margin: auto;
  padding-bottom: 120px;
}
@media (max-width: 768px) {
  .reviews__arrows {
    display: none;
  }
}

.reviews-slider {
  overflow: hidden;
  margin-bottom: 40px;
}
.reviews-slider .swiper-wrapper {
  display: flex;
  align-items: stretch;
}
.reviews-slider .swiper-slide {
  height: auto;
  transition: all 0.5s ease;
}

.feedback {
  max-width: 360px;
  display: grid;
  grid-template-rows: auto auto 1fr auto;
}
.feedback__stars {
  margin-bottom: 15px;
}
.feedback__images {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 10px;
}
.feedback__image {
  width: 60px;
  height: 60px;
  border-radius: 5px;
}
.feedback__text {
  background-color: var(--color-gray);
  padding: 10px;
  border-radius: 10px;
  font-size: 14px;
  line-height: 120%;
}

/*----------------------------------reviews--------------------------------*/
/*----------------------------------card--------------------------------*/
.card {
  position: relative;
  display: grid;
  grid-template-rows: auto 1fr;
}
.card__icon {
  position: absolute;
  top: 0;
  left: 0;
}
.card__image {
  margin-bottom: 15px;
  max-width: 180px;
  margin-left: 60px;
  max-height: 330px;
  height: 100%;
}
.card__link {
  margin-bottom: 5px;
  text-decoration: underline;
  max-width: 250px;
  min-height: 50px;
}

/*----------------------------------card--------------------------------*/
/*---------------------------------------sliders----------------------------*/
.slider {
  overflow: hidden;
  position: relative;
}

.swiper-button-next,
.swiper-button-prev {
  background-color: var(--color-pur);
  width: 50px !important;
  height: 50px !important;
  border-radius: 50%;
  padding: 10px;
}

.swiper-button-next::after,
.swiper-button-prev::after {
  display: none;
}

/*---------------------------------------sliders----------------------------*/
/*----------------------------------popup--------------------------------*/

.popup {
  position: fixed;
  width: 100%;
  height: 100%;
  background-color: rgba(50, 67, 136, 0.3);
  top: 0;
  left: 0;
  opacity: 0;
  visibility: hidden;
  overflow-y: auto;
  overflow-x: hidden;
  transition: all 0.8s ease 0s;
  z-index: 999;
}
.popup__body {
  min-height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 16px;
}
.popup__content {
  max-width: 800px;
  position: relative;
  opacity: 0;
  transform: perspective(600px) translate(0px, -100%) rotateX(45deg);
  transition: all 0.8s ease 0s;
  border-radius: 24px;
}
.popup__content video {
  height: 100%;
  width: 100%;
  border-radius: 24px;
}
.popup.open .popup__content {
  transform: perspective(600px) translate(0px, 0%) rotateX(0deg);
  opacity: 1;
  visibility: visible;
}
.popup.open {
  opacity: 1;
  visibility: visible;
}
.popup__close {
  position: absolute;
  top: -50px;
  right: -50px;
}
@media (max-width: 1024px) {
  .popup__close {
    right: 0px;
    width: 40px;
  }
}
/*----------------------------------popup--------------------------------*/
/*----------------------------------spoiler--------------------------------*/
.spoiler {
  background-color: var(--color-gray);
  padding: 10px;
  border-radius: 10px;
  font-size: 14px;
  line-height: 120%;
}
.spoiler__body {
  margin-bottom: 10px;
}
.spoiler__checkbox {
  display: none;
}
.spoiler__checkbox:checked ~ .spoiler__body .spoiler__content {
  display: block;
}
.spoiler__checkbox:checked ~ .spoiler__body .spoiler__preview {
  display: none;
}
.spoiler__checkbox:checked ~ .spoiler__label::after {
  content: "Скрыть";
  color: #9E9E9E;
}
.spoiler__content {
  display: none;
  transition: all 0.3s;
}
.spoiler__label {
  cursor: pointer;
}
.spoiler__label::after {
  content: "Читать полностью";
  color: #9E9E9E;
}

/*----------------------------------spoiler--------------------------------*/
/*----------------------------------footer--------------------------------*/
.footer {
  padding: 40px 0px;
  background-color: var(--color-gray);
  position: relative;
  overflow: hidden;
}
.footer__body {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px 10px;
  margin-bottom: 60px;
  position: relative;
  z-index: 2;
}
@media (max-width: 1024px) {
  .footer__body {
    flex-wrap: wrap;
  }
}
.footer__wrap {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  flex-basis: 750px;
  position: relative;
  z-index: 2;
}
@media (max-width: 768px) {
  .footer__wrap {
    flex-wrap: wrap;
  }
}
.footer__contacts {
  max-width: 120px;
}
.footer__contacts_link {
  font-size: 14px;
  line-height: 140%;
  transition: all 0.3s;
}
@media (hover: hover) {
  .footer__contacts_link:hover {
    color: var(--color-pur);
    transition: all 0.3s;
  }
}
.footer__title {
  font-weight: 500;
  font-size: 16px;
  margin-bottom: 20px;
}
.footer__social {
  max-width: 120px;
}
.footer__social_links {
  display: flex;
  gap: 5px;
}
.footer__social_link {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid var(--color-pur);
  border-radius: 50%;
  transition: all 0.3s;
}
@media (hover: hover) {
  .footer__social_link:hover {
    background-color: var(--color-pur);
    transition: all 0.3s;
  }
  .footer__social_link:hover svg path {
    fill: var(--color-white);
  }
}
.footer__address {
  max-width: 220px;
  font-size: 14px;
}
.footer__bottom {
  display: flex;
  justify-content: end;
  align-items: center;
  gap: 10px;
  position: relative;
  z-index: 2;
}
@media (max-width: 1024px) {
  .footer__bottom {
    justify-content: start;
    font-size: 14px;
  }
}
.footer__sphere_1 {
  max-width: 133px;
  position: absolute;
  bottom: -30px;
  left: 76px;
  transform: rotate(-47deg);
  pointer-events: none;
}
@media (max-width: 1024px) {
  .footer__sphere_1 {
    max-width: 73px;
    bottom: -30px;
    left: -20px;
  }
}
.footer__sphere_2 {
  max-width: 72px;
  transform: rotate(-47deg);
  position: absolute;
  top: -10px;
  left: 30%;
  pointer-events: none;
}
@media (max-width: 1024px) {
  .footer__sphere_2 {
    display: none;
  }
}
.footer__sphere_3 {
  max-width: 292px;
  filter: blur(2px);
  -webkit-filter: blur(2px);
  -moz-filter: blur(2px);
  transform: rotate(-47deg);
  position: absolute;
  bottom: -200px;
  left: 30%;
  pointer-events: none;
}
@media (max-width: 1024px) {
  .footer__sphere_3 {
    display: none;
  }
}
.footer__sphere_4 {
  max-width: 88px;
  transform: rotate(-47deg);
  position: absolute;
  bottom: -10px;
  left: 60%;
  pointer-events: none;
}
@media (max-width: 1024px) {
  .footer__sphere_4 {
    display: none;
  }
}
.footer__sphere_5 {
  max-width: 216px;
  filter: blur(2px);
  -webkit-filter: blur(2px);
  -moz-filter: blur(2px);
  transform: rotate(-47deg);
  position: absolute;
  top: -10px;
  right: -40px;
  pointer-events: none;
}
@media (max-width: 1024px) {
  .footer__sphere_5 {
    max-width: 73px;
    top: 60%;
    right: -20px;
    filter: blur(0px);
    -webkit-filter: blur(0px);
    -moz-filter: blur(0px);
  }
}

/*----------------------------------footer--------------------------------*//*# sourceMappingURL=styles.css.map */