@charset "UTF-8";
:root {
  --xscale: 1;
  --real-vh: 100vh;
  --vh: calc(1vh / var(--xscale));
  --svh: calc(1svh / var(--xscale));
  --dvh: calc(1dvh / var(--xscale));
}

.h1 {
  font-size: 3.875rem;
  font-style: normal;
  font-weight: 500;
  line-height: 120%;
  letter-spacing: -0.155rem;
}
@media (max-width: 1919px) {
  .h1 {
    font-size: 3.25rem;
    font-style: normal;
    font-weight: 500;
    line-height: 90%;
    letter-spacing: -0.13rem;
  }
}
@media (max-width: 1199px) {
  .h1 {
    font-size: 3.25rem;
    font-style: normal;
    font-weight: 500;
    line-height: 90%;
    letter-spacing: -0.13rem;
  }
}
@media (max-width: 767px) {
  .h1 {
    font-size: 1.75rem;
    font-style: normal;
    font-weight: 500;
    line-height: 100%;
    letter-spacing: -0.07rem;
  }
}

.t1 {
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
@media (max-width: 1919px) {
  .t1 {
    font-size: 1.25rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
  }
}
@media (max-width: 1199px) {
  .t1 {
    font-size: 1.25rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
  }
}
@media (max-width: 767px) {
  .t1 {
    font-size: 0.875rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
  }
}

.btn {
  font-size: 2rem;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
@media (max-width: 1919px) {
  .btn {
    font-size: 1.75rem;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
  }
}
@media (max-width: 1199px) {
  .btn {
    font-size: 1.75rem;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
  }
}
@media (max-width: 767px) {
  .btn {
    font-size: 1rem;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInOpacity {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes loadMaskAnim {
  0% {
    translate: 0 0;
  }
  100% {
    translate: -66.6666666667% 0;
  }
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

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

*:focus {
  outline: none;
}

::-webkit-scrollbar {
  width: 0px;
  background: transparent;
}

input[type=number] {
  -moz-appearance: textfield;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

button {
  all: unset;
  /* Сброс всех наследуемых и ненаследуемых свойств */
  display: inline-block;
  /* Восстановление блочно-строчного поведения, т.к. all: unset сбрасывает display до initial */
  cursor: pointer;
  /* Восстановление указателя курсора для интерактивности */
  outline: none;
  /* Удаление контура при фокусе */
  border: none;
  /* Удаление границы */
  background: none;
  /* Удаление фонового цвета */
  padding: 0;
  /* Удаление внутренних отступов */
  margin: 0;
  /* Удаление внешних отступов */
  text-align: left;
  /* Сброс выравнивания текста */
  font: inherit;
  /* Наследование шрифта от родителя */
  color: inherit;
  /* Наследование цвета текста от родителя */
}

textarea,
input {
  font-family: "Manrope", "system-ui", sans-serif;
}

::-webkit-scrollbar {
  width: 0px;
  background: transparent;
}

html {
  -ms-overflow-style: none;
  scrollbar-width: none;
  overflow: -moz-scrollbars-none;
}

div {
  box-sizing: border-box;
}

section {
  position: relative;
}

body {
  font-size: 16px;
  font-family: "Manrope", "system-ui", sans-serif;
  line-height: 110%;
  min-width: 360px;
  color: #1D1D1D;
  touch-action: pan-x pan-y;
  scroll-behavior: smooth;
  background: #FFF;
  background-repeat: no-repeat;
  overflow-x: hidden;
}
@media (max-width: 494px) {
  body {
    max-width: 100vw;
    width: 100vw;
    overflow-x: hidden;
  }
}

#__site_wrapper {
  overflow: hidden;
  min-height: 100dvh;
  display: flex;
  position: relative;
}

main {
  flex: 1 0 auto;
  display: flex;
  flex-direction: column;
  transition: 0.2s;
  width: 100%;
}

a {
  text-decoration: none;
  transition: 0.3s;
}
a:hover {
  transition: 0.1s;
}
a:active {
  transition: 0.05s;
}
@font-face {
  font-family: "Manrope";
  src: url("../fonts/Manrope-Bold.ttf") format("truetype");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Manrope";
  src: url("../fonts/Manrope-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Manrope";
  src: url("../fonts/Manrope-ExtraBold.ttf") format("truetype");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Manrope";
  src: url("../fonts/Manrope-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Manrope";
  src: url("../fonts/Manrope-ExtraLight.ttf") format("truetype");
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Manrope";
  src: url("../fonts/Manrope-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Manrope";
  src: url("../fonts/Manrope-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
html {
  font-size: 16px;
}

#root::-webkit-scrollbar {
  display: none;
}

.loader {
  height: calc(100 * var(--vh));
  display: flex;
  align-items: center;
  justify-content: center;
}
.loader img {
  max-width: 100px;
}

main {
  min-height: 100svh;
  position: relative;
  overflow: hidden;
}

.container {
  max-width: 1920px;
  width: 100%;
  padding-left: 5.375rem;
  padding-right: 5.375rem;
  margin: auto;
}
@media (max-width: 1199px) {
  .container {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
@media (max-width: 767px) {
  .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

section {
  display: flex;
  flex-direction: column;
}

.arrow__prev,
.arrow__next {
  border-radius: 12.5rem;
  background: #1D1D1D;
  padding: 0.625;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  opacity: 1;
}
.arrow__prev:hover,
.arrow__next:hover {
  opacity: 0.8;
}
@media (max-width: 767px) {
  .arrow__prev,
  .arrow__next {
    width: 38px;
    height: 38px;
  }
}

.swiper-pagination-bullets {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.swiper-pagination-bullet {
  width: 14px;
  height: 14px;
  background: #F2F2F2;
  border-radius: 100px;
  transition: all 0.3s ease;
  cursor: pointer;
}
@media (max-width: 767px) {
  .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
  }
}

.swiper-pagination-bullet-active {
  background: #1D1D1D;
}

a {
  color: #1D1D1D;
}
a:hover {
  opacity: 0.8;
}

img {
  max-width: 100%;
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

body {
  background: radial-gradient(74.97% 108.01% at 50% 59.58%, #EEE2FA 54.04%, #AC8DD1 100%);
}

.header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
}
.header__container {
  padding-top: 3rem;
  display: flex;
  justify-content: center;
  width: 100%;
}
@media (max-width: 1919px) {
  .header__container {
    padding-top: 2rem;
  }
}
@media (max-width: 767px) {
  .header__container {
    padding-top: 1.25rem;
  }
}
.header__logo {
  max-width: 220px;
  display: flex;
}
@media (max-width: 1919px) {
  .header__logo {
    max-width: 182px;
  }
}
@media (max-width: 767px) {
  .header__logo {
    max-width: 98px;
  }
}

.teaser {
  min-height: 100svh;
  position: relative;
  padding-top: 9.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (max-width: 1919px) {
  .teaser {
    padding-top: 7.5rem;
  }
}
@media (max-width: 767px) {
  .teaser {
    padding-top: 4.44rem;
    justify-content: space-between;
  }
}
.teaser__title {
  color: #C4AFE4;
  position: relative;
  z-index: 2;
}
@media (max-width: 1199px) {
  .teaser__title {
    max-width: 500px;
    text-align: center;
  }
}
@media (max-width: 767px) {
  .teaser__title {
    max-width: 300px;
  }
}
.teaser__desc {
  flex-grow: 1;
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
}
@media (max-width: 767px) {
  .teaser__desc {
    flex-grow: 0;
  }
}
@media (max-width: 494px) {
  .teaser__desc {
    padding-bottom: 15rem;
  }
}
.teaser__img {
  width: 100%;
  display: flex;
  flex-grow: 1;
  min-height: 44vw;
}
@media (max-width: 1919px) {
  .teaser__img {
    min-height: 40vw;
  }
}
@media (max-width: 1199px) {
  .teaser__img {
    min-height: 80vw;
  }
}
@media (max-width: 767px) {
  .teaser__img {
    max-width: 1420%;
    aspect-ratio: 360/301;
    min-height: auto;
    width: 120%;
    flex-grow: 0;
  }
}
@media (max-width: 494px) {
  .teaser__img {
    max-width: 100%;
    aspect-ratio: 360/301;
    min-height: auto;
    width: 100%;
    flex-grow: 0;
    position: relative;
  }
}
@media (max-width: 767px) {
  .teaser__img picture {
    display: flex;
    width: 100%;
  }
}
.teaser__img img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: bottom;
     object-position: bottom;
}
@media (max-width: 1919px) {
  .teaser__img img {
    -o-object-position: top;
       object-position: top;
    margin-top: -10rem;
  }
}
@media (max-width: 1199px) {
  .teaser__img img {
    margin-top: -5rem;
  }
}
@media (max-width: 767px) {
  .teaser__img img {
    width: 100%;
    max-width: 100%;
    left: 50%;
    right: auto;
    transform: translateX(-50%);
  }
}
@media (max-width: 494px) {
  .teaser__img img {
    height: auto;
    width: 100%;
    margin-top: 0;
    bottom: 0;
    margin-top: -1rem;
    transform: translateX(-50%) scale(1.2);
  }
}
.teaser__footer {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  min-height: 271px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  background-color: #fff;
}
@media (max-width: 1919px) {
  .teaser__footer {
    min-height: auto;
  }
}
.teaser__footer::before {
  content: "";
  position: absolute;
  bottom: 99%;
  left: 0;
  right: 0;
  margin: auto;
  width: 100%;
  min-height: 262px;
  background-image: url("/assets/ref_cover.png");
  background-size: 100% 100%;
  background-position: bottom center;
  background-repeat: no-repeat;
}
@media (max-width: 1919px) {
  .teaser__footer::before {
    min-height: 196px;
  }
}
@media (max-width: 1199px) {
  .teaser__footer::before {
    min-height: 166px;
    width: 150%;
    left: 50%;
    right: auto;
    transform: translateX(-50%);
  }
}
@media (max-width: 767px) {
  .teaser__footer::before {
    min-height: 78px;
  }
}
.teaser__footer-items {
  display: flex;
  align-items: center;
  padding-top: 3.25rem;
  padding-bottom: 5.25rem;
  justify-content: space-between;
  margin: 0;
}
@media (max-width: 1919px) {
  .teaser__footer-items {
    padding-top: 2.25rem;
    padding-bottom: 2.25rem;
  }
}
@media (max-width: 1199px) {
  .teaser__footer-items {
    flex-direction: column;
    gap: 2rem;
    align-items: center;
  }
}
@media (max-width: 767px) {
  .teaser__footer-items {
    padding-top: 1rem;
    gap: 1rem;
    justify-content: flex-start;
    padding-bottom: 5rem;
  }
}
@media (max-width: 494px) {
  .teaser__footer-items {
    padding-bottom: 4rem;
  }
}
.teaser__text {
  max-width: 1008px;
}
@media (max-width: 1919px) {
  .teaser__text {
    max-width: 840px;
  }
}
@media (max-width: 1199px) {
  .teaser__text {
    text-align: center;
    max-width: 100%;
  }
}
.teaser__actions {
  min-width: 455px;
}
@media (max-width: 1919px) {
  .teaser__actions {
    min-width: 392px;
  }
}
@media (max-width: 1199px) {
  .teaser__actions {
    min-height: 78px;
    display: flex;
  }
}
@media (max-width: 767px) {
  .teaser__actions {
    min-width: auto;
    min-height: 46px;
    width: 100%;
  }
}
.teaser__actions .btn {
  border-radius: 78.28475rem;
  background: #73519C;
  padding: 1.5rem 2.5rem;
  color: #FFF;
  display: flex;
  justify-content: center;
}
@media (max-width: 1919px) {
  .teaser__actions .btn {
    padding: 1.25rem 2rem;
  }
}
@media (max-width: 767px) {
  .teaser__actions .btn {
    padding: 0.75rem 1.25rem;
    width: 100%;
  }
}/*# sourceMappingURL=style.css.map */