@charset "UTF-8";
@font-face {
	font-family: "Open Sans";
	src: url("../fonts/OpenSans-SemiBold.woff2") format("woff2");
	font-weight: 600;
	font-style: normal;
	font-display: swap;
 }
 @font-face {
	font-family: "Open Sans";
	src: url("../fonts/OpenSans-Bold.woff2") format("woff2");
	font-weight: 700;
	font-style: normal;
	font-display: swap;
 }
 @font-face {
	font-family: "Open Sans";
	src: url("../fonts/OpenSans-Bold.woff2") format("woff2");
	font-weight: 700;
	font-style: normal;
	font-display: swap;
 }
 @font-face {
	font-family: "Montserrat";
	src: url("../fonts/Montserrat-Medium.woff2") format("woff2");
	font-weight: 500;
	font-style: normal;
	font-display: swap;
 }
 @font-face {
	font-family: "Montserrat";
	src: url("../fonts/Montserrat-SemiBold.woff2") format("woff2");
	font-weight: 600;
	font-style: normal;
	font-display: swap;
 }
 @font-face {
	font-family: "Montserrat";
	src: url("../fonts/Montserrat-Bold.woff2") format("woff2");
	font-weight: 700;
	font-style: normal;
	font-display: swap;
 }
*,
::before,
::after {
  padding: 0;
  margin: 0;
  border: none;
  box-sizing: border-box;
}

::before,
::after {
  display: inline-block;
}

button {
  border: none;
  background-color: transparent;
}

a {
  font-size: inherit;
  color: inherit;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: inherit;
  font-size: inherit;
}

html,
body {
  min-block-size: 100%;
}

:where(address[class]) {
  font-style: normal;
}

/**
Наследуем свойства шрифт для полей ввода
 */
input,
textarea,
select,
button {
  font: inherit;
}

ul li {
  list-style: none;
}

html {
  /**
    Убираем скачок интерфейса по горизонтали
    при появлении / исчезновении скроллбара
   */
  scrollbar-gutter: stable;
}

/**
Плавный скролл
 */
html,
:has(:target) {
  scroll-behavior: smooth;
}

/**
Нормализация высоты элемента ссылки при его инспектировании в DevTools
 */
a:where([class]) {
  display: inline-flex;
}

/**
Курсор-рука при наведении на элемент
 */
button,
label {
  cursor: pointer;
}

/**
Приводим к единому цвету svg-элементы
(за исключением тех, у которых уже указан
атрибут fill со значением 'none' или начинается с 'url')
 */
:where([fill]:not([fill="none"], [fill^="url"])) {
  fill: currentColor;
}

/**
Приводим к единому цвету svg-элементы
(за исключением тех, у которых уже указан
атрибут stroke со значением 'none')
 */
:where([stroke]:not([stroke="none"], [stroke^="url"])) {
  stroke: currentColor;
}

/**
Чиним баг задержки смены цвета при взаимодействии с svg-элементами
 */
svg * {
  transition-property: fill, stroke;
}

/**
Приведение рамок таблиц в классический 'collapse' вид
 */
:where(table) {
  border-collapse: collapse;
  border-color: currentColor;
}

/**
Удаляем все анимации и переходы для людей,
которые предпочитают их не использовать
 */
@media (prefers-reduced-motion: reduce) {
  *,
  ::before,
  ::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
:root {
  --font-family: "Open Sans", sans-serif;
  --second-family: "Montserrat", sans-serif;
  --main-size: 1.125rem;
  --max-width-figma: 90rem;
  --container-width: 75.6875rem;
  --container-padding-x: 1.75rem;
}
@media (width <= 47.99875rem) {
  :root {
    --main-size: 1rem;
  }
}

.wrapper {
  min-block-size: 100%;
  display: flex;
  flex-direction: column;
  overflow: clip;
}

.wrapper > main {
  flex-grow: 1;
}

[class*="__container"] {
  max-inline-size: calc(
    var(--container-width) + var(--container-padding-x) * 2
  );
  margin-inline: auto;
  padding-inline: var(--container-padding-x);
}

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  margin: -1px !important;
  border: 0 !important;
  padding: 0 !important;
  white-space: nowrap !important;
  -webkit-clip-path: inset(100%) !important;
  clip-path: inset(100%) !important;
  clip: rect(0 0 0 0) !important;
  overflow: hidden !important;
}

@media (width <= 30rem) {
  .hidden-mobile--s {
    display: none !important;
  }
}

@media (width > 30rem) {
  .visible-mobile--s {
    display: none !important;
  }
}

@media (width > 47.99875rem) {
  .visible-mobile {
    display: none !important;
  }
}

html,
body {
  block-size: 100%;
}

body {
  font-size: var(--main-size);
  font-family: var(--font-family);
  background: linear-gradient(
    90deg,
    #fff 9.75%,
    rgba(255, 255, 255, 0) 50%,
    #fff 89.96%
  );
  color: #000;
}

main {
  flex-grow: 1;
}

body.scroll-block {
  overflow: hidden;
}

.dropdown {
  width: 123px;
  position: absolute;
  z-index: 5;
  top: -5px;
  right: 10px;
  flex-basis: 7.625rem;
  flex-shrink: 0;
  flex-grow: 0;
  border: 2px solid #f3f3ff;
  background: transparent;
  outline: none;
  border-radius: 0.9375rem;
  transition: border 0.3s;
}
@media (any-hover: hover) {
  .dropdown:hover {
    border: 2px solid #8380ff;
  }
}
@media (any-hover: none) {
  .dropdown:active {
    border: 2px solid #8380ff;
  }
}
@media (width <= 47.99875rem) {
  .dropdown {
    width: 75px;
    right: 20px;
  }
}
.dropdown__button {
  width: 100%;
  padding: 0.6875rem 1.875rem;
  display: flex;
  gap: 10px;
  justify-content: space-between;
  align-items: center;
  position: relative;
}
@media (width <= 47.99875rem) {
  .dropdown__button {
    padding: 0.3125rem 0.875rem;
  }
}
.dropdown__button span {
  transition: transform 0.2s;
}
.dropdown__list {
  padding-block: 0.625rem;
  row-gap: 1.25rem;
  position: relative;
  display: none;
}
.dropdown__list.action {
  display: grid;
  background: white;
}
.dropdown__list::after {
  content: "";
  transform: translateX(-50%);
  position: absolute;
  top: 0;
  left: 50%;
  height: 0.0625rem;
  width: 5.625rem;
  background: #f3f3ff;
}
.dropdown__item {
  padding-inline: 1.8125rem;
  display: flex;
  align-items: center;
  -moz-column-gap: 1rem;
  column-gap: 1rem;
  cursor: pointer;
  transition: background 0.03s;
}
@media (any-hover: hover) {
  .dropdown__item:hover {
    background: rgba(130, 128, 255, 0.1215686275);
  }
}
@media (any-hover: none) {
  .dropdown__item:active {
    background: rgba(130, 128, 255, 0.1215686275);
  }
}
@media (width <= 47.99875rem) {
  .dropdown__item {
    padding-inline: 0.3125rem;
  }
}
.dropdown__item img {
  border-radius: 0.3125rem;
}
.dropdown__item span {
  font-size: 0.75rem;
}
.dropdown__item.active {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  margin: -1px !important;
  border: 0 !important;
  padding: 0 !important;
  white-space: nowrap !important;
  -webkit-clip-path: inset(100%) !important;
  clip-path: inset(100%) !important;
  clip: rect(0 0 0 0) !important;
  overflow: hidden !important;
}

span.action {
  transform: rotate(180deg) translateY(-6px);
}

.header {
  z-index: 2;
  position: relative;
}
.header__fone-line {
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
}
.header__container {
  margin-block: 43px;
  display: flex;
  align-items: start;
  gap: 40px;
  justify-content: space-between;
  padding-inline: 2.0625rem;
  position: relative;
}
@media (width <= 47.99875rem) {
  .header__container {
    margin-block: 18px;
  }
}
.header__top {
  position: relative;
  margin-bottom: 3.9375rem;
}
@media (width <= 47.99875rem) {
  .header__top {
    margin-bottom: 33px;
  }
}
.header__logo {
  width: 306px;
}
@media (width <= 47.99875rem) {
  .header__logo {
    width: 150px;
  }
}
.header__logo img {
  width: 100%;
}

.header__main {
  z-index: 3;
  position: relative;
}
.header__title h1 {
  position: relative;
  z-index: 3;
  text-align: center;
  font-family: var(--second-family);
  font-weight: 700;
  font-size: 64px;
  margin-bottom: 1.375rem;
}
@media (width <= 61.99875rem) {
  .header__title h1 {
    font-size: 46px;
  }
}
@media (width <= 47.99875rem) {
  .header__title h1 {
    font-size: 24px;
  }
}
.header__title span {
  display: inline-block;
  border-radius: 0.75rem;
  padding: 1rem 1.375rem;
  background: rgba(207, 0, 0, 0.8);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  box-shadow: 0 0 33px 0 rgba(217, 51, 51, 0.52);
  color: white;
  font-weight: 500;
  font-size: 3.375rem;
}
@media (width <= 61.99875rem) {
  .header__title span {
    font-size: 32px;
    padding: 0.75rem 1.125rem;
  }
}
@media (width <= 47.99875rem) {
  .header__title span {
    font-size: 20px;
    padding: 0.4375rem 0.5625rem;
  }
}
.header__title span.top {
  transform: rotate(-5deg);
}
.header__title span.bottom {
  transform: rotate(1.2deg);
}
.header__main-block {
  min-height: 59.9375rem;
  position: relative;
  z-index: 2;
}
@media (width <= 78.18625rem) {
  .header__main-block {
    height: 50rem;
  }
}
@media (width <= 47.99875rem) {
  .header__main-block {
    height: 37.5rem;
  }
}
.header__main-img {
  position: absolute;
  top: -45px;
  left: 51%;
  transform: translateX(-50%);
  z-index: -1;
}
@media (width <= 61.99875rem) {
  .header__main-img {
    top: -45px;
  }
}
@media (width <= 47.99875rem) {
  .header__main-img img.desktop {
    display: none;
  }
}
.header__text {
  border: 1px solid rgba(0, 0, 0, 0.11);
  border-radius: 28px;
  padding: 34px 18px;
  box-shadow: 0 4px 21px 0 rgba(0, 0, 0, 0.1);
  background: rgba(255, 255, 255, 0.1);
  -webkit-backdrop-filter: blur(15px);
  backdrop-filter: blur(15px);
  font-weight: 600;
  font-size: 1.75rem clamp(1rem, 0.735915493rem + 1.1267605634vw, 1.75rem);
  text-align: center;
  color: #252525;
  margin-bottom: clamp(1.3125rem, 0.4762323944rem + 3.5680751174vw, 3.6875rem);
}
@media (width <= 47.99875rem) {
  .header__text {
    font-weight: 400;
  }
}
.info-start {
  position: relative;
  z-index: 5;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.info-start a {
  padding: 1.25rem 1.25rem;
  border-radius: 14px;
  background: #8380ff;
  width: 315px;
  margin-block: auto;
  font-family: var(--second-family);
  font-weight: 500;
  font-size: 18px;
  line-height: 1.56;
  color: #fff;
  margin-bottom: 1.875rem;
}
@media (width <= 47.99875rem) {
  .info-start button {
    line-height: 1.75;
    font-size: 15px;
    width: 100%;
  }
}
.info-start span {
  font-size: clamp(0.875rem, 0.6549295775rem + 0.9389671362vw, 1.5rem);
  opacity: 0.5;
}
.info-start__actions {
  margin-top: clamp(0.625rem, 0.360915493rem + 1.1267605634vw, 1.375rem);
  display: flex;
  gap: 22px;
}
@media (width <= 47.99875rem) {
  .info-start__actions {
    gap: 20px;
  }
}
.info-start__link {
  padding: 0.875rem 1.1875rem;
  background: #f1f1f1;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 14px;
}
@media (width <= 47.99875rem) {
  .info-start__link {
    padding: 0.5rem 1.125rem;
    gap: 12px;
  }
}
.info-start__link span {
  font-size: clamp(0.875rem, 0.4788732394rem + 1.6901408451vw, 2rem);
  text-align: center;
}

.info-start__link {
  display: flex;
  align-items: center;
}

.info-start__link {
  transition: background 0.3s;
}
@media (any-hover: hover) {
  .info-start__link:hover {
    background: rgba(130, 128, 255, 0.4117647059);
  }
}
@media (any-hover: none) {
  .info-start__link:active {
    background: rgba(130, 128, 255, 0.4117647059);
  }
}
.info-start__link img {
  vertical-align: sub;
}

.header__main-img-mob {
  display: none;
}
@media (width <= 47.99875rem) {
  .header__main-img-mob {
    display: block;
  }
}

.footer {
  background: #f1f1f1;
  text-align: center;
}
.footer__container {
  padding-block: 0.9375rem;
}
.footer__container p {
  font-size: 14px;
  color: #7c7c7c;
}
@media (width <= 47.99875rem) {
  .footer__container p {
    font-size: 0.75rem;
  }
}

.advantages {
  margin-top: -380px;
  position: relative;
  min-height: 800px;
  z-index: 2;
  position: relative;
}
@media (width <= 47.99875rem) {
  .advantages {
    margin-top: -435px;
  }
}
.advantages__items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 54px 95px;
}
@media (width <= 47.99875rem) {
  .advantages__items {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}
.advantages__item {
  padding: 1.125rem 1.75rem;
  box-shadow: 0 4px 15px 0 rgba(0, 0, 0, 0.1);
  background: #fff;
  border-radius: 2.625rem;
}
.advantages__img {
  position: absolute;
  left: 50%;
  top: 40%;
  transform: translateX(-50%);
  z-index: -1;
}
@media (width <= 47.99875rem) {
  .advantages__img {
    top: 90%;
    left: -10%;
    transform: translateX(0%);
  }
}

.item-adventeges {
  display: flex;
  align-items: center;
  -moz-column-gap: 1.5625rem;
  column-gap: 1.5625rem;
}
@media (width <= 47.99875rem) {
  .item-adventeges {
    flex-direction: column;
    text-align: center;
    padding-bottom: 32px;
  }
}
.item-adventeges__img {
  background: #8380ff;
  width: 78px;
  aspect-ratio: 1/1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.75rem;
}
@media (width <= 47.99875rem) {
  .item-adventeges__img {
    width: 46px;
    margin-bottom: 1.5rem;
  }
  .item-adventeges__img img {
    width: 18;
    height: 26px;
    -o-object-fit: cover;
    object-fit: cover;
  }
}
.item-adventeges__info {
  max-width: 25rem;
}
.item-adventeges__title {
  font-weight: 700;
  font-size: 1.5625rem;
  line-height: 1.17;
}
.item-adventeges__title:not(:last-child) {
  margin-bottom: 0.625rem;
}
@media (width <= 47.99875rem) {
  .item-adventeges__title {
    font-weight: 700;
    font-size: 1.125rem;
    line-height: 1.56;
  }
}
.item-adventeges__text {
  line-height: 1.56;
}
@media (width <= 47.99875rem) {
  .item-adventeges__text {
    font-size: 0.875rem;
    line-height: 2;
    max-width: 265px;
  }
}

.slider-pagination {
  position: absolute;
  z-index: 5;
  bottom: 0;
  left: 50%;
  display: flex;
  justify-content: center;
}
.slider-pagination .swiper-pagination-bullet {
  background: #8380ff;
  width: 16px;
  height: 9px;
  border-radius: 4px;
}
.slider-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  width: 83px;
}

.slider {
  position: relative;
  z-index: 3;
  margin-top: -300px;
  margin-bottom: 120px;
}
@media (width <= 47.99875rem) {
  .slider {
    margin-top: 65px;
  }
}
.slider__container {
  position: relative;
  padding-left: 130px;
}
@media (max-width: 1255px) {
  .slider__container {
    padding-left: 88px;
  }
}
@media (max-width: 1190px) {
  .slider__container {
    padding-left: 68px;
  }
}
@media (max-width: 1160px) {
  .slider__container {
    padding-left: 38px;
  }
}
@media (max-width: 1130px) {
  .slider__container {
    padding-left: 18px;
  }
}
@media (max-width: 670px) {
  .slider__container {
    padding-inline: 0;
  }
}
@media (max-width: 860px) {
  .slider__container {
    margin-left: -30px;
  }
}
@media (max-width: 580px) {
  .slider__container {
    margin-left: -50px;
  }
}
@media (max-width: 500px) {
  .slider__container {
    margin-left: -70px;
  }
}
@media (max-width: 450px) {
  .slider__container {
    margin-left: -100px;
  }
}
@media (max-width: 420px) {
  .slider__container {
    margin-left: -120px;
  }
}
@media (max-width: 400px) {
  .slider__container {
    margin-left: -130px;
    margin-right: -35px;
  }
}

.slider-swiper__wrapper {
  padding-bottom: 55px;
}
.slider-swiper__block {
  padding-left: 15px;
}
.slider-swiper__block h4 {
  width: 100%;
  padding: 16px 16px;
  border-radius: 12px;
  margin-bottom: 1.5625rem;
  text-align: center;
  font-family: var(--second-family);
  font-weight: 500;
  font-size: clamp(1rem, 0.823943662rem + 0.7511737089vw, 1.5rem);
  color: #fff;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  box-shadow: 0 0 33px 0 rgba(217, 51, 51, 0.52);
  background: rgba(0, 0, 0, 0.8);
}
@media (width <= 61.99875rem) {
  .slider-swiper__block h4 {
    margin-left: -2%;
  }
}
.slider-swiper__img img {
  width: 100%;
}

.swiper-slide {
  width: auto;
  align-self: flex-end;
}
.swiper-slide.swiper-slide-prev,
.swiper-slide.swiper-slide-next {
  max-width: 284px;
}
@media (max-width: 1100px) {
  .swiper-slide.swiper-slide-prev,
  .swiper-slide.swiper-slide-next {
    max-width: 270px;
  }
}
@media (max-width: 970px) {
  .swiper-slide.swiper-slide-prev,
  .swiper-slide.swiper-slide-next {
    max-width: 230px;
  }
}
@media (max-width) {
  .swiper-slide.swiper-slide-prev,
  .swiper-slide.swiper-slide-next {
    max-width: 176px;
  }
}
.swiper-slide.swiper-slide-prev .slider-swiper__img,
.swiper-slide.swiper-slide-next .slider-swiper__img {
  opacity: 0.35;
  max-width: 284px;
  border-radius: 60px;
}
@media (max-width: 540px) {
  .swiper-slide.swiper-slide-prev .slider-swiper__img,
  .swiper-slide.swiper-slide-next .slider-swiper__img {
    height: 360px;
    width: 177px;
  }
}
.swiper-slide.swiper-slide-prev .slider-swiper__img img,
.swiper-slide.swiper-slide-next .slider-swiper__img img {
  width: 100%;
}
@media (max-width: 540px) {
  .swiper-slide.swiper-slide-prev .slider-swiper__img img,
  .swiper-slide.swiper-slide-next .slider-swiper__img img {
    width: 177px;
    height: 360px;
  }
}
.swiper-slide.swiper-slide-active {
  min-width: 404px;
}
@media (max-width: 1100px) {
  .swiper-slide.swiper-slide-active {
    min-width: 350px;
  }
}
@media (width <= 61.99875rem) {
  .swiper-slide.swiper-slide-active {
    min-width: 310px;
  }
}
@media (max-width: 880px) {
  .swiper-slide.swiper-slide-active {
    min-width: 290px;
  }
}
@media (max-width: 810px) {
  .swiper-slide.swiper-slide-active {
    min-width: 265px;
  }
}
@media (max-width: 750px) {
  .swiper-slide.swiper-slide-active {
    min-width: 236px;
  }
}
@media (max-width: 410px) {
  .swiper-slide.swiper-slide-active {
    min-width: 226px;
  }
}
.swiper-slide.swiper-slide-active .slider-swiper__img {
  background: gray;
  border-radius: 6.25rem;
  width: 404px;
  height: 817px;
}
@media (max-width: 1100px) {
  .swiper-slide.swiper-slide-active .slider-swiper__img {
    width: 340px;
    height: 700px;
  }
}
@media (width <= 61.99875rem) {
  .swiper-slide.swiper-slide-active .slider-swiper__img {
    width: 310px;
    height: 625px;
  }
}
@media (max-width: 880px) {
  .swiper-slide.swiper-slide-active .slider-swiper__img {
    width: 290px;
    height: 590px;
  }
}
@media (max-width: 810px) {
  .swiper-slide.swiper-slide-active .slider-swiper__img {
    width: 265px;
    height: 537px;
  }
}
@media (max-width: 760px) {
  .swiper-slide.swiper-slide-active .slider-swiper__img {
    width: 236px;
    height: 475px;
  }
}
@media (max-width: 410px) {
  .swiper-slide.swiper-slide-active .slider-swiper__img {
    width: 226px;
    height: 455px;
  }
}
.subscription {
  margin-top: -350px;
  padding-top: 350px;
  padding-bottom: 55px;
  position: relative;
}
.subscription__img {
  position: absolute;
  bottom: 0;
  left: 40%;
  transform: translateX(-40%);
}
.subscription__container {
  height: 100%;
  padding-top: auto;
}
.subscription__title {
  font-family: var(--second-family);
  font-weight: 600;
  font-size: clamp(1.4375rem, 0.8873239437rem + 2.3474178404vw, 3rem);
  letter-spacing: -0.01em;
  text-align: center;
}
.subscription__title span {
  border-radius: 5px;
  display: inline-block;
  margin-top: clamp(0rem, -0.7262323944rem + 3.0985915493vw, 2.0625rem);
  padding: 1.0625rem 1.375rem;
  font-weight: 500;
  text-align: center;
  color: #fff;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  box-shadow: 0 0 33px 0 rgba(255, 255, 255, 0.25);
  background: rgba(32, 17, 37, 0.8);
  transform: rotate(3deg);
}
@media (width <= 47.99875rem) {
  .subscription__title span {
    font-size: 1.3125rem;
    padding: 0.5rem 0.6875rem;
  }
}
.subscription__form {
  text-align: center;
  margin-top: 1.9375rem;
  background: #fff;
  display: inline-flex;
  justify-content: center;
  gap: 1.125rem;
  position: relative;
}
@media (width <= 47.99875rem) {
  .subscription__form {
    margin-top: 2.875rem;
    flex-direction: column;
  }
}
.subscription__form.err span {
  color: #ff3636;
}
.subscription__form span {
  padding: 0.25rem;
  position: absolute;
  top: -14px;
  left: 8px;
  background: #fff;
  font-weight: 500;
  font-size: 14px;
  line-height: 150%;
  color: #367aff;
}
.subscription__form input {
  width: 400px;
  padding: 16px;
  border: 1.5px solid #367aff;
  color: #367aff;
  border-radius: 10px;
}
.subscription__form input.err {
  border: 1.5px solid #ff4336;
  color: red;
}
@media (width <= 47.99875rem) {
  .subscription__form input {
    width: 320px;
  }
}
.subscription__form input::-moz-placeholder {
  font-weight: 400;
  font-size: 18px;
  line-height: 150%;
  color: #3937378f;
}
.subscription__form input::placeholder {
  font-weight: 400;
  font-size: 18px;
  line-height: 150%;
  color: #3937378f;
}
.subscription__form button {
  border: 1.5px solid #367aff;
  padding: 1.1875rem 1.25rem;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (width <= 47.99875rem) {
  .subscription__form button {
    align-self: center;
    width: 60px;
  }
}
.subscription__subtitle {
  text-align: center;
  padding: 2.125rem;
  border: 1px solid rgba(0, 0, 0, 0.11);
  border-radius: 28px;
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 24px;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 21px 0 rgba(0, 0, 0, 0.1);
  background: rgba(255, 255, 255, 0.1);
}
@media (width <= 47.99875rem) {
  .subscription__subtitle {
    padding-inline: 1.125rem;
  }
}
.subscription__subtitle span {
  border: 3px solid #fff;
  border-radius: 7px;
  display: inline-block;
  padding: 0.625rem 0.75rem;
  font-family: var(--second-family);
  font-weight: 500;
  font-size: 24px;
  text-align: center;
  color: #fff;
  box-shadow: 0 0 19px 0 rgba(255, 255, 255, 0.25);
  background: #8380ff;
  transform: rotate(-2deg);
}
@media (width <= 47.99875rem) {
  .subscription__subtitle span {
    font-size: 18px;
  }
}
.subscription__actions {
  margin-top: 1.875rem;
  gap: 1.375rem;
}
.subscription__actions:not(:last-child) {
  margin-bottom: 3.4375rem;
}
@media (width <= 47.99875rem) {
  .subscription__actions {
    margin-top: 36px;
    gap: 1.25rem;
  }
}

.store {
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 5;
  gap: 1.375rem;
}
@media (width <= 47.99875rem) {
  .store {
    gap: 0.875rem;
  }
}
.store__link {
  border-radius: 12px;
  padding: 9px 18px;
  background: #f1f1f1;
  display: flex;
  align-items: center;
  gap: 0.9375rem;
  transition: background 0.3s;
}
@media (any-hover: hover) {
  .store__link:hover {
    background: rgba(130, 128, 255, 0.4117647059);
  }
}
@media (any-hover: none) {
  .store__link:active {
    background: rgba(130, 128, 255, 0.4117647059);
  }
}
@media (width <= 30rem) {
  .store__link {
    padding: 6px 10px;
  }
}
.store__link span {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 18px;
  text-align: center;
  color: #000;
}
@media (width <= 47.99875rem) {
  .store__link span {
    font-size: 14px;
  }
}
.form {
  display: flex;
  justify-content: center;
  margin-bottom: 1.875rem;
}

.subscription__form button {
  transition: all 0.5s;
}

.subscription__form button:active {
  background: #8380ff;
  transition: scale(1.2);
} /*# sourceMappingURL=main.css.map */

@media (max-width: 500px) {
  .slider-pagination.swiper-pagination-clickable.swiper-pagination-bullets.swiper-pagination-horizontal {
    width: 115%;
  }
}
