@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans:ital,wght@0,100..900;1,100..900&display=swap");
* {
  box-sizing: border-box; }

body {
  font-family: 'Noto Sans';
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0em;
  text-align: left;
  color: #141414; }

.container {
  max-width: 1152px;
  margin-left: auto;
  margin-right: auto;
  width: 100%; }
  @media (min-width: 768px) and (max-width: 1439px) {
    .container {
      max-width: 672px; } }
  @media (max-width: 767px) {
    .container {
      max-width: 328px; } }

html,
body,
p,
h1,
h2,
h3,
h4 {
  margin: 0;
  padding: 0;
  border: 0; }

ol,
ul {
  list-style: none;
  padding: 0;
  margin: 0; }

a {
  text-decoration: none; }

html,
body {
  max-width: 100%;
  overflow-x: hidden; }

html {
  scroll-behavior: smooth; }

body {
  overflow: auto; }

.header {
  position: relative;
  padding: 16px 144px;
  display: flex;
  flex-direction: row;
  justify-content: space-between; }
  .header__left {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 40px; }
    .header__left__logo {
      width: 100%;
      height: 100%;
      max-width: 130px;
      max-height: 34px; }
      .header__left__logo img {
        width: 100%;
        height: 100%; }
    .header__left__menu {
      cursor: pointer;
      display: flex;
      flex-direction: row;
      gap: 8px;
      padding: 8px 0; }
      .header__left__menu__logo {
        content: '';
        background-image: url("../assets/menu.svg");
        background-position: center;
        background-repeat: no-repeat;
        background-size: contain;
        width: 24px;
        height: 24px;
        max-width: 24px;
        max-height: 24px; }
      .header__left__menu__text {
        font-weight: 700;
        text-align: center;
        text-transform: uppercase; }
  .header__right {
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 700;
    text-align: center;
    text-transform: uppercase;
    border-bottom: 1px solid #141414; }
    @media (hover: hover) {
      .header__right:hover {
        color: #9588e8;
        border-color: #9588e8; } }
    .header__right:active {
      color: #786bcb;
      border-color: #786bcb; }

@media (min-width: 768px) and (max-width: 1439px) {
  .header {
    padding: 16px 48px; } }

@media (max-width: 767px) {
  .header {
    padding: 16px 16px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    min-width: 100%; }
    .header__left {
      flex: 1;
      display: flex;
      flex-direction: row;
      align-items: center;
      justify-content: space-between;
      gap: 0; }
      .header__left__logo {
        width: 100%;
        height: 100%;
        max-width: 130px;
        max-height: 34px; }
        .header__left__logo img {
          width: 100%;
          height: 100%; }
      .header__left__menu {
        width: 24px;
        height: 24px;
        cursor: pointer;
        display: flex;
        flex-direction: row;
        gap: 8px;
        padding: 8px 0; }
        .header__left__menu__logo {
          content: '';
          background-image: url("../assets/menu.svg");
          background-position: center;
          background-repeat: no-repeat;
          background-size: contain;
          width: 24px;
          height: 24px;
          max-width: 24px;
          max-height: 24px; }
        .header__left__menu__text {
          display: none; }
    .header__right {
      display: none; } }

.navigation {
  position: absolute;
  top: 80%;
  left: 18%;
  padding: 24px;
  border-radius: 16px;
  box-shadow: 3px 1px 8px 0px #bdacec1a, 13px 6px 14px 0px #bdacec17, 28px 13px 19px 0px #bdacec0d, 51px 23px 22px 0px #bdacec03, 79px 36px 24px 0px #bdacec00;
  display: none;
  flex-direction: column;
  gap: 8px;
  min-width: 334px;
  z-index: 2;
  background-color: #FFFFFF; }
  .navigation__rowElement {
    cursor: pointer;
    display: flex;
    flex-direction: row;
    gap: 8px;
    justify-content: flex-start;
    align-items: center; }
    .navigation__rowElement__circle {
      display: flex;
      justify-content: center;
      align-items: center;
      width: 16px;
      height: 16px;
      border-radius: 50px;
      background-color: #e0dcfa;
      opacity: 0.7; }
      .navigation__rowElement__circle__inner {
        width: 10px;
        height: 10px;
        border-radius: 50px;
        background-color: #c2baf7; }
    .navigation__rowElement__title {
      text-transform: capitalize;
      font-weight: 500; }

@media (max-width: 767px) {
  .navigation {
    position: absolute;
    top: 82%;
    left: 0;
    gap: 24px;
    width: 100vw;
    height: 100vh; } }

.footer {
  background-color: #212121;
  width: 100%;
  padding: 40px 0; }
  .footer .container {
    display: flex;
    justify-content: space-between; }
  .footer__left {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
    gap: 16px; }
    .footer__left--text {
      color: #FFFFFF; }
  .footer__right {
    display: flex;
    justify-content: flex-start;
    align-items: flex-end;
    font-size: 12px;
    font-weight: 500;
    line-height: 18px;
    color: #FFFFFF; }

@media (min-width: 768px) and (max-width: 1439px) {
  .footer {
    padding: 40px 0px; }
    .footer .container {
      display: flex;
      justify-content: space-between; } }

@media (max-width: 767px) {
  .footer {
    padding: 40px 16px;
    flex-direction: column;
    gap: 16px; }
    .footer .container {
      flex-direction: column;
      gap: 16px;
      margin-right: 0;
      margin-left: 0;
      max-width: 100vw; }
    .footer__right {
      justify-content: flex-end; } }

.coockie {
  position: fixed;
  left: 40px;
  bottom: 24px;
  display: none;
  flex-direction: column;
  gap: 16px;
  padding: 40px;
  border-radius: 32px;
  border: 1px solid #f5f5f5;
  width: 50%;
  background-color: #FFFFFF;
  box-shadow: 3px 1px 8px 0px #bdacec1a, 13px 6px 14px 0px #bdacec17, 28px 13px 19px 0px #bdacec0d, 51px 23px 22px 0px #bdacec03, 79px 36px 24px 0px #bdacec00;
  overflow: auto;
  z-index: 5; }
  .coockie__text {
    display: flex;
    flex-direction: column;
    gap: 8px; }
    .coockie__text--title {
      font-weight: 700; }
    .coockie__text--text--link {
      cursor: pointer;
      text-decoration: underline; }
  .coockie__btn {
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 8px;
    margin-left: auto;
    width: 180px;
    background-color: #141414;
    border-radius: 100px;
    color: #f0f0ff; }
    @media (hover: hover) {
      .coockie__btn:hover {
        background-color: #9588e8; } }
    .coockie__btn:active {
      background-color: #786bcb; }

@media (min-width: 768px) and (max-width: 1439px) {
  .coockie {
    left: 50%;
    transform: translateX(-50%);
    padding: 24px;
    width: 90%; } }

@media (max-width: 767px) {
  .coockie {
    left: 50%;
    transform: translateX(-50%);
    padding: 16px;
    width: 95%; }
    .coockie__text {
      display: flex;
      flex-direction: column;
      gap: 8px; }
      .coockie__text--text {
        font-size: 14px;
        line-height: 21px; }
    .coockie__btn {
      cursor: pointer;
      display: flex;
      justify-content: center;
      align-items: center;
      padding: 8px;
      margin-left: auto;
      width: 164px;
      background-color: #141414;
      border-radius: 100px;
      color: #f0f0ff; } }

.privacyPolicy {
  position: fixed;
  display: none;
  top: 0;
  right: 0;
  width: 100vw;
  height: 100vh;
  background-color: #a19eb633;
  backdrop-filter: blur(10px);
  padding: 20px;
  overflow: hidden;
  z-index: 6; }
  .privacyPolicy__content {
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 50vw;
    height: 100vh;
    padding: 32px 56px;
    border-radius: 32px;
    background-color: #FFFFFF;
    overflow: auto; }
    .privacyPolicy__content__closeBtn {
      position: absolute;
      top: 28px;
      right: 28px;
      content: '';
      width: 24px;
      height: 24px;
      background-image: url("../assets/cross.svg");
      background-repeat: no-repeat;
      background-position: center;
      background-size: cover; }
    .privacyPolicy__content__title {
      display: flex;
      flex-direction: column;
      gap: 16px; }
      .privacyPolicy__content__title--title {
        font-size: 24px;
        font-weight: 600;
        line-height: 32px;
        letter-spacing: 0.01em; }
    .privacyPolicy__content__rules {
      display: flex;
      flex-direction: column;
      gap: 16px; }
      .privacyPolicy__content__rules--wrapper {
        padding-left: 28px; }
      .privacyPolicy__content__rules--title {
        font-weight: 700; }
      .privacyPolicy__content__rules--list {
        list-style-type: decimal; }
        .privacyPolicy__content__rules--list--item--link {
          cursor: pointer;
          text-decoration: underline; }

@media (min-width: 768px) and (max-width: 1439px) {
  .privacyPolicy {
    padding: 32px 28px; }
    .privacyPolicy__content {
      width: 90vw;
      padding: 56px; } }

@media (max-width: 767px) {
  .privacyPolicy {
    padding: 0;
    padding-top: 32px; }
    .privacyPolicy__content {
      width: 100vw;
      padding: 16px; } }

*:has(.privacyActive) {
  overflow: hidden; }

.contactForm {
  margin-top: 174px;
  padding: 80px 98px;
  border-radius: 32px;
  background: linear-gradient(rgba(255, 255, 255, 0.75), rgba(255, 255, 255, 0.75)), url("../assets/contactFormBg.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  justify-content: flex-end; }
  .contactForm__wrapper {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    gap: 16px;
    max-width: 360px; }
  .contactForm__form {
    position: relative;
    width: 100%; }
    .contactForm__form input {
      padding: 8px 16px;
      height: 56px;
      border-radius: 100px;
      border: 1px solid #9588e8;
      width: 100%; }
      .contactForm__form input::placeholder {
        color: #d8d8d8; }
      .contactForm__form input:hover {
        border: 2px solid #9588e8; }
        .contactForm__form input:hover::placeholder {
          color: #928b95; }
      .contactForm__form input:focus-visible {
        outline: none;
        border: 1px solid #9588e8; }
    .contactForm__form__btn {
      cursor: pointer;
      position: absolute;
      content: '';
      width: 40px;
      height: 40px;
      border-radius: 50%;
      border: none;
      background: linear-gradient(184.75deg, rgba(216, 210, 249, 0.5445) 6.77%, rgba(152, 140, 233, 0.55) 39.83%, rgba(157, 145, 234, 0.55) 66.19%, rgba(210, 204, 252, 0.55) 96.76%), url("../assets/arrow-up-right-light.svg");
      top: 8px;
      right: 8px; }
      @media (hover: hover) {
        .contactForm__form__btn:hover {
          background: linear-gradient(184.75deg, rgba(216, 210, 249, 0.5445) 6.77%, rgba(152, 140, 233, 0.55) 39.83%, rgba(157, 145, 234, 0.55) 66.19%, rgba(210, 204, 252, 0.55) 96.76%), url("../assets/arrow-up-right-hover.svg"); } }
      .contactForm__form__btn:active {
        background: linear-gradient(184.75deg, rgba(216, 210, 249, 0.5445) 6.77%, rgba(152, 140, 233, 0.55) 39.83%, rgba(157, 145, 234, 0.55) 66.19%, rgba(210, 204, 252, 0.55) 96.76%), url("../assets/arrow-up-right-active.svg"); }

@media (min-width: 768px) and (max-width: 1439px) {
  .contactForm {
    margin-top: 130px;
    padding: 80px 16px;
    align-items: center; }
    .contactForm__wrapper {
      max-width: 100%; }
    .contactForm__title {
      text-align: center; }
    .contactForm__form {
      max-width: 360px;
      margin: auto; } }

@media (max-width: 767px) {
  .contactForm {
    margin-top: 112px;
    padding: 64px 16px;
    border-radius: 0px;
    display: flex;
    justify-content: center; }
    .contactForm.container {
      margin-right: 0;
      margin-left: 0;
      max-width: 100vw;
      width: 100%; }
    .contactForm__wrapper {
      max-width: 100%; }
    .contactForm__form {
      max-width: 360px;
      margin: auto; } }

.just-validate-error-field {
  border: 2px solid #e88894 !important; }

.just-validate-error-label {
  display: none; }

.blanckForm {
  margin-top: 160px;
  padding: 80px 0;
  background-color: #f0f0ff; }
  .blanckForm__content {
    display: flex;
    flex-direction: column;
    gap: 24px; }
    .blanckForm__content__title {
      font-size: 32px;
      font-weight: 700;
      line-height: 43px; }
    .blanckForm__content__main {
      display: flex;
      flex-direction: row;
      justify-content: space-between; }
      .blanckForm__content__main__forms {
        flex: 0.6;
        display: flex;
        flex-direction: column;
        gap: 16px;
        max-width: 564px; }
        .blanckForm__content__main__forms__title {
          color: #9588e8; }
        .blanckForm__content__main__forms__form {
          display: flex;
          flex-direction: column;
          gap: 16px; }
          .blanckForm__content__main__forms__form input,
          .blanckForm__content__main__forms__form textarea {
            padding: 8px 16px;
            height: 56px;
            border-radius: 100px;
            border: 1px solid #9588e8;
            width: 100%; }
            .blanckForm__content__main__forms__form input::placeholder,
            .blanckForm__content__main__forms__form textarea::placeholder {
              color: #d8d8d8; }
            .blanckForm__content__main__forms__form input:hover,
            .blanckForm__content__main__forms__form textarea:hover {
              border: 2px solid #9588e8; }
              .blanckForm__content__main__forms__form input:hover::placeholder,
              .blanckForm__content__main__forms__form textarea:hover::placeholder {
                color: #928b95; }
            .blanckForm__content__main__forms__form input:focus-visible,
            .blanckForm__content__main__forms__form textarea:focus-visible {
              outline: none;
              border: 1px solid #9588e8; }
          .blanckForm__content__main__forms__form textarea {
            resize: none;
            height: 108px;
            border-radius: 25px; }
      .blanckForm__content__main__info {
        flex: 0.4;
        display: flex;
        flex-direction: column;
        gap: 16px; }
        .blanckForm__content__main__info__title {
          color: #9588e8; }
        .blanckForm__content__main__info__main {
          padding: 20px 18px;
          border: 1px solid #9588e8;
          border-radius: 25px;
          display: flex;
          flex-direction: column;
          gap: 16px; }
          .blanckForm__content__main__info__main__priceForm {
            display: flex;
            flex-direction: row;
            justify-content: space-between;
            align-items: center; }
            .blanckForm__content__main__info__main__priceForm__main {
              display: flex;
              padding: 8px 24px;
              flex-direction: row;
              gap: 24px;
              background-color: #FFFFFF;
              border: 1px solid #9588e8;
              border-radius: 8px; }
              .blanckForm__content__main__info__main__priceForm__main--minus, .blanckForm__content__main__info__main__priceForm__main--plus {
                cursor: pointer;
                width: 24px;
                height: 24px;
                font-weight: 700;
                color: #d8d8d8;
                text-align: center; }
                .blanckForm__content__main__info__main__priceForm__main--minus:active, .blanckForm__content__main__info__main__priceForm__main--minus:hover, .blanckForm__content__main__info__main__priceForm__main--plus:active, .blanckForm__content__main__info__main__priceForm__main--plus:hover {
                  color: #141414; }
              .blanckForm__content__main__info__main__priceForm__main--count {
                font-weight: 700; }
            .blanckForm__content__main__info__main__priceForm__total {
              font-size: 18px;
              font-weight: 600;
              line-height: 27px;
              letter-spacing: 0.01em; }
          .blanckForm__content__main__info__main__checkBox {
            display: flex;
            flex-direction: row;
            gap: 8px; }
            .blanckForm__content__main__info__main__checkBox input[type='checkbox'] {
              display: none; }
            .blanckForm__content__main__info__main__checkBox input[type='checkbox'] + label span {
              border: 1px solid #9588e8;
              border-radius: 4px;
              font-size: 24px;
              display: inline-block;
              width: 24px;
              height: 24px;
              line-height: 0.25em;
              margin: 0px 8px 0px 0px;
              padding: 2px;
              text-align: center;
              vertical-align: middle; }
            .blanckForm__content__main__info__main__checkBox input[type='checkbox']:hover + label span {
              border: 2px solid #9588e8; }
            .blanckForm__content__main__info__main__checkBox input[type='checkbox']:checked + label span::after {
              content: '\2713';
              margin-left: 5px;
              color: #9588e8; }
            .blanckForm__content__main__info__main__checkBox label {
              font-size: 14px;
              font-weight: 400;
              line-height: 21px; }
        .blanckForm__content__main__info__btn {
          cursor: pointer;
          padding: 8px;
          display: flex;
          flex-direction: row;
          justify-content: space-between;
          align-items: center;
          background-color: #141414;
          border-radius: 100px;
          max-width: 180px;
          border: none; }
          .blanckForm__content__main__info__btn--text {
            display: flex;
            justify-content: center;
            align-items: center;
            font-weight: 700;
            text-align: center;
            color: #FFFFFF;
            padding: 0 16px; }
          .blanckForm__content__main__info__btn--arrow {
            content: '';
            width: 32px;
            height: 32px;
            background-color: #f0f0ff;
            border-radius: 100px; }
          .blanckForm__content__main__info__btn:disabled {
            background-color: #d8d8d8; }
          .blanckForm__content__main__info__btn:active {
            background-color: #9588e8; }
          @media (hover: hover) {
            .blanckForm__content__main__info__btn:hover:not(:disabled) {
              flex-direction: row-reverse;
              background-color: #786bcb; } }
          .blanckForm__content__main__info__btn:active {
            flex-direction: row;
            background-color: #9588e8; }

@media (min-width: 768px) and (max-width: 1439px) {
  .blanckForm {
    margin-top: 130px;
    padding: 80px 48px; }
    .blanckForm__content__title {
      font-size: 24px;
      font-weight: 600;
      line-height: 32px;
      letter-spacing: 0.01em; }
    .blanckForm__content__main {
      display: flex;
      flex-direction: column;
      justify-content: center;
      gap: 24px; }
      .blanckForm__content__main__forms {
        max-width: 100%; }
      .blanckForm__content__main__info__main {
        padding: 24px;
        flex-direction: row; }
        .blanckForm__content__main__info__main__priceForm {
          display: flex;
          flex-direction: row;
          justify-content: center;
          gap: 16px;
          align-items: center; }
          .blanckForm__content__main__info__main__priceForm__main {
            display: flex;
            padding: 8px 24px;
            flex-direction: row;
            gap: 24px;
            background-color: #FFFFFF;
            border: 1px solid #9588e8;
            border-radius: 8px; }
            .blanckForm__content__main__info__main__priceForm__main--minus, .blanckForm__content__main__info__main__priceForm__main--plus {
              cursor: pointer;
              width: 24px;
              height: 24px;
              font-weight: 700;
              color: #d8d8d8;
              text-align: center; }
              .blanckForm__content__main__info__main__priceForm__main--minus:active, .blanckForm__content__main__info__main__priceForm__main--minus:hover, .blanckForm__content__main__info__main__priceForm__main--plus:active, .blanckForm__content__main__info__main__priceForm__main--plus:hover {
                color: #141414; }
            .blanckForm__content__main__info__main__priceForm__main--count {
              font-weight: 700;
              color: #141414; }
          .blanckForm__content__main__info__main__priceForm__total {
            font-size: 18px;
            font-weight: 600;
            line-height: 27px;
            letter-spacing: 0.01em;
            min-width: max-content; }
        .blanckForm__content__main__info__main__checkBox {
          display: flex;
          flex-direction: row;
          gap: 8px; }
          .blanckForm__content__main__info__main__checkBox input[type='checkbox'] {
            display: none; }
          .blanckForm__content__main__info__main__checkBox input[type='checkbox'] + label span {
            border: 1px solid #9588e8;
            border-radius: 4px;
            font-size: 24px;
            display: inline-block;
            width: 24px;
            height: 24px;
            line-height: 0.25em;
            margin: 0px 8px 0px 0px;
            padding: 2px;
            text-align: center;
            vertical-align: middle; }
          .blanckForm__content__main__info__main__checkBox input[type='checkbox']:hover + label span {
            border: 2px solid #9588e8; }
          .blanckForm__content__main__info__main__checkBox input[type='checkbox']:checked + label span::after {
            content: '\2713';
            margin-left: 5px;
            color: #9588e8; }
          .blanckForm__content__main__info__main__checkBox label {
            font-size: 14px;
            font-weight: 400;
            line-height: 21px; }
      .blanckForm__content__main__info__btn {
        padding: 8px;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        background-color: #141414;
        border-radius: 100px;
        max-width: 180px;
        border: none; }
        .blanckForm__content__main__info__btn--text {
          display: flex;
          justify-content: center;
          align-items: center;
          font-weight: 700;
          text-align: center;
          color: #FFFFFF;
          padding: 0 16px; }
        .blanckForm__content__main__info__btn--arrow {
          content: '';
          width: 32px;
          height: 32px;
          background-color: #f0f0ff;
          border-radius: 100px; }
        .blanckForm__content__main__info__btn:disabled {
          background-color: #d8d8d8; }
        .blanckForm__content__main__info__btn:active {
          background-color: #9588e8; } }

@media (max-width: 767px) {
  .blanckForm {
    margin-top: 120px;
    padding: 64px 16px;
    background-color: #f0f0ff; }
    .blanckForm .container {
      margin: 0;
      max-width: 100vw; }
    .blanckForm__content {
      display: flex;
      flex-direction: column;
      gap: 24px; }
      .blanckForm__content__title {
        font-size: 24px;
        font-weight: 600;
        line-height: 32px;
        letter-spacing: 0.01em;
        text-align: center; }
      .blanckForm__content__main {
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 24px; }
        .blanckForm__content__main__forms {
          max-width: 100%;
          flex-direction: column; }
        .blanckForm__content__main__info__btn {
          padding: 8px;
          display: flex;
          flex-direction: row;
          justify-content: center;
          align-items: center;
          gap: 16px;
          background-color: #141414;
          border-radius: 100px;
          max-width: 100%;
          border: none; }
          .blanckForm__content__main__info__btn--text {
            display: flex;
            justify-content: center;
            align-items: center;
            font-weight: 700;
            text-align: center;
            color: #FFFFFF;
            padding: 0 16px; }
          .blanckForm__content__main__info__btn--arrow {
            content: '';
            width: 32px;
            height: 32px;
            background-color: #f0f0ff;
            border-radius: 100px; }
          .blanckForm__content__main__info__btn:disabled {
            background-color: #d8d8d8; }
          .blanckForm__content__main__info__btn:active {
            background-color: #9588e8; } }

#errorPhone {
  display: none; }

#errorOrder {
  display: none; }

.errorModal {
  position: fixed;
  top: 0;
  right: 0;
  width: 100vw;
  height: 100vh;
  background-color: #a19eb633;
  backdrop-filter: blur(10px);
  overflow: hidden;
  z-index: 5; }
  .errorModal__content {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 16px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    padding: 88px 88px 88px 56px;
    margin: auto;
    border-radius: 32px;
    border: 3px solid #e88894;
    background-color: #FFFFFF;
    overflow: auto; }
    .errorModal__content__closeBtn {
      cursor: pointer;
      position: absolute;
      top: 24px;
      right: 24px;
      content: '';
      width: 24px;
      height: 24px;
      background-image: url("../assets/cross.svg");
      background-repeat: no-repeat;
      background-position: center;
      background-size: cover; }
    .errorModal__content__swipeBtn {
      display: none; }
    .errorModal__content__label {
      width: 32px;
      height: 32px; }
      .errorModal__content__label img {
        max-width: 32px;
        max-height: 32px; }
    .errorModal__content__text {
      display: flex;
      flex-direction: column;
      gap: 16px; }
      .errorModal__content__text--title {
        font-size: 24px;
        font-weight: 600;
        line-height: 32px;
        letter-spacing: 0.01em; }

@media (min-width: 768px) and (max-width: 1439px) {
  .errorModal__content {
    margin-right: 78px;
    width: calc(100vw - 156px); } }

@media (max-width: 767px) {
  .errorModal {
    backdrop-filter: blur(0px); }
    .errorModal__content {
      display: flex;
      flex-direction: row;
      justify-content: center;
      align-items: center;
      gap: 16px;
      position: absolute;
      left: 0;
      top: auto;
      bottom: 0%;
      transform: translate(0%, 0%);
      padding: 20px 16px;
      margin: 0;
      border-radius: 32px 32px 0 0;
      border: none;
      background-color: #FFFFFF;
      box-shadow: 3px 1px 8px 0px #bdacec1a, 13px 6px 14px 0px #bdacec17, 28px 13px 19px 0px #bdacec0d, 51px 23px 22px 0px #bdacec03, 79px 36px 24px 0px #bdacec00; }
      .errorModal__content__closeBtn {
        top: 16px;
        right: 16px;
        width: 16px;
        height: 16px; }
      .errorModal__content__swipeBtn {
        display: block;
        position: absolute;
        top: 4px;
        right: 50%;
        transform: translateX(50%);
        content: '';
        width: 36px;
        height: 4px;
        background-color: #d8d8d8;
        border-radius: 3px; }
      .errorModal__content__label {
        width: 32px;
        height: 32px; }
        .errorModal__content__label img {
          max-width: 32px;
          max-height: 32px; }
      .errorModal__content__text {
        display: flex;
        flex-direction: column;
        gap: 8px; }
        .errorModal__content__text--title {
          font-weight: 700; } }

*:has(.errorModalActive) {
  overflow: hidden; }

#successPhone {
  display: none; }

#successOrder {
  display: none; }

.successModal {
  position: fixed;
  top: 0;
  right: 0;
  width: 100vw;
  height: 100vh;
  background-color: #a19eb633;
  backdrop-filter: blur(10px);
  overflow: hidden;
  z-index: 5; }
  .successModal__content {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    gap: 16px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    padding: 88px 88px 88px 56px;
    margin: auto;
    border-radius: 32px;
    background-color: #FFFFFF;
    overflow: auto; }
    .successModal__content__closeBtn {
      cursor: pointer;
      position: absolute;
      top: 24px;
      right: 24px;
      content: '';
      width: 24px;
      height: 24px;
      background-image: url("../assets/cross.svg");
      background-repeat: no-repeat;
      background-position: center;
      background-size: cover; }
    .successModal__content__swipeBtn {
      display: none; }
    .successModal__content__label {
      margin-top: 4px;
      display: flex;
      justify-content: center;
      align-items: center;
      content: '';
      min-width: 32px;
      height: 32px;
      border-radius: 50%;
      background-color: #c2baf7; }
      .successModal__content__label--inner {
        width: 60%;
        height: 60%;
        border-radius: 50%;
        background-color: #9588e8; }
    .successModal__content__text {
      display: flex;
      flex-direction: column;
      gap: 16px; }
      .successModal__content__text--title {
        font-size: 24px;
        font-weight: 600;
        line-height: 32px;
        letter-spacing: 0.01em; }
      .successModal__content__text--orderNumber {
        color: #928b95; }

@media (min-width: 768px) and (max-width: 1439px) {
  .successModal__content {
    margin-right: 78px;
    width: calc(100vw - 156px); } }

@media (max-width: 767px) {
  .successModal {
    backdrop-filter: blur(0px); }
    .successModal__content {
      display: flex;
      flex-direction: row;
      justify-content: center;
      align-items: center;
      gap: 16px;
      position: absolute;
      left: 0;
      top: auto;
      bottom: 0%;
      transform: translate(0%, 0%);
      padding: 20px 16px;
      margin: 0;
      border-radius: 32px 32px 0 0;
      border: none;
      background-color: #FFFFFF;
      box-shadow: 3px 1px 8px 0px #bdacec1a, 13px 6px 14px 0px #bdacec17, 28px 13px 19px 0px #bdacec0d, 51px 23px 22px 0px #bdacec03, 79px 36px 24px 0px #bdacec00; }
      .successModal__content__closeBtn {
        top: 16px;
        right: 16px;
        width: 16px;
        height: 16px; }
      .successModal__content__swipeBtn {
        display: block;
        position: absolute;
        top: 4px;
        right: 50%;
        transform: translateX(50%);
        content: '';
        width: 36px;
        height: 4px;
        background-color: #d8d8d8;
        border-radius: 3px; }
      .successModal__content__text {
        display: flex;
        flex-direction: column;
        gap: 8px; }
        .successModal__content__text--title {
          font-weight: 700; } }

*:has(.successModalActive) {
  overflow: hidden; }

.section1--tabTitle {
  display: none; }

.section1--wrapper {
  display: flex;
  flex-direction: row;
  gap: 24px; }

.section1__left {
  display: flex;
  flex: 1;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  padding-top: 56px; }
  .section1__left__main {
    display: flex;
    flex-direction: column;
    gap: 24px;
    justify-content: flex-start;
    align-items: flex-start; }
    .section1__left__main__title {
      display: flex;
      flex-direction: column;
      gap: 16px; }
      .section1__left__main__title--subTitle {
        font-size: 14px;
        line-height: 21px;
        color: #928b95; }
      .section1__left__main__title--title {
        font-size: 36px;
        font-weight: 700;
        line-height: 49px;
        letter-spacing: -0.01em; }
    .section1__left__main__price {
      font-size: 32px;
      font-weight: 600;
      line-height: 48px;
      letter-spacing: 0.01em; }
    .section1__left__main__btn {
      cursor: pointer;
      padding: 8px;
      display: flex;
      flex-direction: row;
      background-color: #141414;
      border-radius: 100px; }
      .section1__left__main__btn--text {
        display: flex;
        justify-content: center;
        align-items: center;
        font-weight: 700;
        color: #FFFFFF;
        padding: 0 16px; }
      .section1__left__main__btn--arrow {
        content: '';
        width: 32px;
        height: 32px;
        background-color: #f0f0ff;
        border-radius: 100px; }
      @media (hover: hover) {
        .section1__left__main__btn:hover {
          flex-direction: row-reverse;
          background-color: #786bcb; } }
      .section1__left__main__btn:active {
        flex-direction: row;
        background-color: #9588e8; }
  .section1__left__number {
    color: #c2baf7; }

.section1__right {
  position: relative;
  flex: 3;
  content: '';
  max-width: 760px;
  max-height: 712px; }
  .section1__right img {
    width: 100%;
    height: 100%;
    border-radius: 32px;
    object-fit: cover; }
  .section1__right--btn {
    cursor: pointer;
    content: '';
    position: absolute;
    right: 32px;
    bottom: 32px;
    width: 54px;
    height: 54px;
    border: 0.5px solid #FFFFFF;
    border-radius: 100px;
    background-color: #E0DCFA80;
    padding: 15px; }

@media (min-width: 768px) and (max-width: 1439px) {
  .section1 {
    margin-top: 40px; }
    .section1 .container {
      display: flex;
      flex-direction: column;
      gap: 24px; }
    .section1--tabTitle {
      display: flex;
      justify-content: center;
      align-items: center;
      flex-direction: column;
      gap: 16px; }
      .section1--tabTitle--subTitle {
        font-size: 14px;
        line-height: 21px;
        letter-spacing: 0em;
        text-align: center;
        color: #928b95; }
      .section1--tabTitle--title {
        font-size: 32px;
        font-weight: 700;
        line-height: 43px;
        text-align: center; }
    .section1__left {
      display: flex;
      flex: 1;
      flex-direction: column;
      justify-content: space-between;
      align-items: flex-start; }
      .section1__left__main {
        display: flex;
        flex-direction: column;
        gap: 24px;
        justify-content: flex-start;
        align-items: flex-start; }
        .section1__left__main__title {
          display: none; }
        .section1__left__main__price {
          font-size: 24px;
          font-weight: 600;
          line-height: 32px;
          letter-spacing: 0.01em; }
        .section1__left__main__btn {
          padding: 8px;
          display: flex;
          flex-direction: row;
          background-color: #141414;
          border-radius: 100px; }
          .section1__left__main__btn--text {
            display: flex;
            justify-content: center;
            align-items: center;
            font-weight: 700;
            text-align: center;
            color: #FFFFFF;
            padding: 0 16px; }
          .section1__left__main__btn--arrow {
            content: '';
            width: 32px;
            height: 32px;
            background-color: #f0f0ff;
            border-radius: 100px; }
    .section1__right {
      position: relative;
      flex: 3;
      content: '';
      max-width: 440px;
      max-height: 412px; }
      .section1__right img {
        width: 100%;
        height: 100%;
        border-radius: 32px; }
      .section1__right--btn {
        content: '';
        position: absolute;
        right: 32px;
        bottom: 32px;
        width: 54px;
        height: 54px;
        border: 0.5px solid #FFFFFF;
        border-radius: 100px;
        background-color: #E0DCFA80; } }

@media (max-width: 767px) {
  .section1 .container {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 30px; }
  .section1--tabTitle {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 16px;
    padding: 0 16px; }
    .section1--tabTitle--subTitle {
      font-size: 14px;
      line-height: 21px;
      text-align: center;
      color: #928b95; }
    .section1--tabTitle--title {
      font-size: 24px;
      font-weight: 600;
      line-height: 32px;
      letter-spacing: 0.01em;
      text-align: center; }
  .section1--wrapper {
    display: flex;
    flex-direction: column-reverse;
    gap: 32px; }
  .section1__left {
    padding: 0 16px; }
    .section1__left__main {
      display: flex;
      flex-direction: column;
      gap: 24px;
      justify-content: flex-start;
      align-items: flex-start; }
      .section1__left__main__title {
        display: none; }
      .section1__left__main__btn {
        justify-content: center;
        width: 100%; }
    .section1__left__number {
      display: none; }
  .section1__right img {
    border-radius: 0px;
    max-height: 330px; }
  .section1__right--btn {
    display: none; } }

.section2 {
  margin-top: 174px; }
  .section2 .container {
    display: flex;
    flex-direction: column;
    gap: 56px; }
  .section2__title {
    margin-left: auto;
    font-size: 32px;
    font-weight: 700;
    line-height: 43px; }
  .section2__main {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 24px; }
    .section2__main__card {
      position: relative;
      padding: 24px 24px 0 24px;
      display: flex;
      flex-direction: column;
      gap: 16px;
      background-color: #f0f0ff;
      border-radius: 32px;
      min-height: 368px;
      min-width: 368px;
      overflow: hidden; }
      .section2__main__card__btn {
        width: 54px;
        height: 54px;
        border-radius: 100px;
        border: 0.5px solid #FFFFFF;
        background-color: #FFFFFF;
        margin-left: auto;
        background-image: url("../assets/arrow-down-left.svg");
        background-position: center;
        background-repeat: no-repeat;
        background-size: 24px; }
      .section2__main__card__title {
        font-size: 24px;
        font-weight: 600;
        line-height: 32px;
        letter-spacing: 0.01em;
        text-align: center; }
      .section2__main__card__number {
        position: absolute;
        left: 50%;
        transform: translate(-50%, 100%);
        width: 190px;
        height: 200px;
        background-position: center;
        background-repeat: no-repeat;
        background-size: contain;
        overflow: hidden; }
        .section2__main__card__number.number1 {
          background-image: url("../assets/01.svg"); }
        .section2__main__card__number.number2 {
          background-image: url("../assets/02.png"); }
        .section2__main__card__number.number3 {
          background-image: url("../assets/03.svg"); }
  .section2__footer {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center; }
    .section2__footer__number {
      color: #c2baf7; }
    .section2__footer__title {
      font-weight: 500;
      max-width: 40%; }

@media (min-width: 768px) and (max-width: 1439px) {
  .section2 {
    margin-top: 130px;
    gap: 40px; }
    .section2__title {
      margin-left: auto;
      font-size: 24px;
      font-weight: 600;
      line-height: 32px;
      letter-spacing: 0.01em; }
    .section2__main {
      justify-content: center;
      gap: 8px; }
      .section2__main__card {
        padding: 8px 8px 0 8px;
        gap: 8px;
        min-height: 208px;
        min-width: 208px; }
        .section2__main__card__btn {
          width: 40px;
          height: 40px;
          background-size: 16px; }
        .section2__main__card__title {
          font-weight: 700; }
        .section2__main__card__number {
          width: 110px;
          height: 115px; }
    .section2__footer__title {
      max-width: 50%; } }

@media (max-width: 767px) {
  .section2 {
    margin-top: 120px; }
    .section2 .container {
      gap: 32px; }
    .section2__title {
      margin: auto;
      font-size: 24px;
      font-weight: 600;
      line-height: 32px;
      letter-spacing: 0.01em;
      text-align: center; }
    .section2__main {
      flex-direction: column;
      gap: 16px; }
      .section2__main__card {
        position: relative;
        padding: 16px 16px 0 16px;
        display: flex;
        flex-direction: row-reverse;
        gap: 24px;
        background-color: #f0f0ff;
        border-radius: 32px;
        min-height: 172px;
        min-width: 328px;
        overflow: hidden; }
        .section2__main__card__btn {
          width: 54px;
          height: 54px;
          border-radius: 100px;
          border: 0.5px solid #FFFFFF;
          background-color: #FFFFFF;
          margin-left: auto;
          background-image: url("../assets/arrow-left.svg");
          background-position: center;
          background-repeat: no-repeat;
          background-size: 24px; }
        .section2__main__card__title {
          font-weight: 700; }
        .section2__main__card__number {
          transform: translate(-50%, 58%);
          width: 110px;
          height: 115px; }
    .section2__footer {
      display: flex;
      flex-direction: row;
      justify-content: center;
      align-items: center; }
      .section2__footer__number {
        display: none; }
      .section2__footer__title {
        flex: 1;
        font-weight: 500;
        max-width: 100%; } }

.section3.tablet {
  display: none; }

.section3.section3-smartphone {
  display: none; }

.section3 {
  margin-top: 174px; }
  .section3 .container {
    display: flex;
    flex-direction: column;
    gap: 56px; }
  .section3__title {
    font-size: 32px;
    font-weight: 700;
    line-height: 43px;
    letter-spacing: 0em; }
  .section3__main {
    display: flex;
    flex-direction: row;
    gap: 56px; }
    .section3__main__img {
      flex: 1;
      width: 100%;
      height: 100%;
      min-height: 408px; }
      .section3__main__img img {
        width: 100%;
        height: 100%;
        min-height: 408px;
        border-radius: 32px;
        object-fit: cover; }
    .section3__main__content {
      flex: 1;
      display: flex;
      flex-direction: column;
      justify-content: flex-start;
      align-items: flex-start;
      gap: 24px; }
      .section3__main__content__description {
        display: flex;
        flex-direction: column;
        gap: 16px; }
        .section3__main__content__description__title {
          font-weight: 700; }
        .section3__main__content__description__manufactory {
          display: flex;
          flex-direction: row;
          gap: 28px; }
          .section3__main__content__description__manufactory--desc {
            font-weight: 500; }
      .section3__main__content__price {
        font-size: 32px;
        font-weight: 600;
        line-height: 48px;
        letter-spacing: 0.01em; }
      .section3__main__content__btn {
        cursor: pointer;
        padding: 8px;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        background-color: #141414;
        border-radius: 100px; }
        .section3__main__content__btn--text {
          display: flex;
          justify-content: center;
          align-items: center;
          font-weight: 700;
          text-align: center;
          color: #FFFFFF;
          padding: 0 16px; }
        .section3__main__content__btn--arrow {
          content: '';
          width: 32px;
          height: 32px;
          background-color: #f0f0ff;
          border-radius: 100px; }
        @media (hover: hover) {
          .section3__main__content__btn:hover {
            flex-direction: row-reverse;
            background-color: #786bcb; } }
        .section3__main__content__btn:active {
          flex-direction: row;
          background-color: #9588e8; }
  .section3__footer {
    display: flex;
    flex-direction: row;
    justify-content: space-between; }
    .section3__footer__number {
      margin-top: auto;
      color: #c2baf7; }
    .section3__footer__swiper {
      margin: 0 !important;
      width: 75%;
      display: flex !important;
      flex-direction: column;
      gap: 24px; }
      .section3__footer__swiper__slide img {
        height: 100%;
        width: 100%;
        max-width: 270px;
        max-height: 204px;
        border-radius: 28px;
        object-fit: cover; }

.swiper-scrollbar {
  position: sticky !important;
  height: 2px !important;
  background-color: #e0dcfa !important;
  /* Цвет скроллбара */
  border-radius: 0px !important;
  top: 10px; }

/* Стили для ползунка скроллбара */
.swiper-scrollbar-drag {
  background-color: #9588e8 !important;
  /* Цвет ползунка скроллбара */ }

@media (min-width: 768px) and (max-width: 1439px) {
  .section3.desctop {
    display: none; }
  .section3.section3-smartphone {
    display: none; }
  .section3.tablet {
    display: flex; }
  .section3 {
    margin-top: 130px; }
    .section3 .container {
      flex-direction: column;
      gap: 40px; }
    .section3__title {
      font-size: 24px;
      font-weight: 600;
      line-height: 32px;
      letter-spacing: 0.01em; }
    .section3__main {
      display: flex;
      flex-direction: row;
      gap: 24px; }
      .section3__main__img {
        flex: 0.7;
        width: 100%;
        height: 100%;
        min-height: 408px; }
        .section3__main__img img {
          width: 100%;
          height: 100%;
          min-height: 408px;
          border-radius: 32px; }
      .section3__main__content {
        flex: 0.3;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        gap: 24px; }
        .section3__main__content__description {
          display: flex;
          flex-direction: column;
          gap: 16px; }
          .section3__main__content__description__title {
            font-weight: 700; }
          .section3__main__content__description__manufactory {
            display: flex;
            flex-direction: row;
            gap: 28px; }
            .section3__main__content__description__manufactory--desc {
              font-weight: 500; }
        .section3__main__content__price {
          font-size: 32px;
          font-weight: 600;
          line-height: 48px;
          letter-spacing: 0.01em; }
        .section3__main__content__btn {
          padding: 8px;
          display: flex;
          flex-direction: row;
          background-color: #141414;
          border-radius: 100px;
          max-width: 180px; }
          .section3__main__content__btn--text {
            display: flex;
            justify-content: center;
            align-items: center;
            font-weight: 700;
            color: #FFFFFF;
            padding: 0 16px; }
          .section3__main__content__btn--arrow {
            content: '';
            width: 32px;
            height: 32px;
            background-color: #f0f0ff;
            border-radius: 100px; }
    .section3__footer {
      display: flex;
      flex-direction: row;
      justify-content: space-between; }
      .section3__footer__number {
        margin-top: auto;
        color: #c2baf7; } }

.section3__tablet__swiper {
  margin: 0 !important;
  width: 100%;
  display: flex !important;
  flex-direction: column;
  gap: 24px; }
  .section3__tablet__swiper__slide img {
    width: 208px;
    height: 156px;
    border-radius: 28px;
    object-fit: cover; }

.section3__tablet__content {
  display: flex;
  flex-direction: column;
  gap: 24px;
  justify-content: flex-start;
  align-items: flex-start; }

@media (max-width: 767px) {
  .section3.tablet {
    display: none; }
  .section3.desctop {
    display: none; }
  .section3.section3-smartphone {
    display: flex; }
  .section3-smartphone {
    margin-top: 120px;
    padding: 0 16px;
    display: flex;
    flex-direction: column;
    gap: 32px; }
    .section3-smartphone__title {
      font-size: 24px;
      font-weight: 600;
      line-height: 32px;
      letter-spacing: 0.01em;
      text-align: center; }
    .section3-smartphone__swiper {
      width: 100%; }
      .section3-smartphone__swiper__slide {
        width: 100%;
        height: 236px; }
        .section3-smartphone__swiper__slide img {
          width: 100%;
          height: 236px;
          border-radius: 28px;
          object-fit: cover; }
    .section3-smartphone__content {
      display: flex;
      flex-direction: column;
      gap: 24px; }
      .section3-smartphone__content__description {
        display: flex;
        flex-direction: column;
        gap: 16px; }
        .section3-smartphone__content__description--title {
          font-weight: 700; }
      .section3-smartphone__content__price {
        font-size: 24px;
        font-weight: 600;
        line-height: 32px;
        letter-spacing: 0.01em; }
    .section3-smartphone__btn {
      padding: 8px;
      display: flex;
      flex-direction: row;
      justify-content: center;
      background-color: #141414;
      border-radius: 100px; }
      .section3-smartphone__btn--text {
        display: flex;
        justify-content: center;
        align-items: center;
        font-weight: 700;
        text-align: center;
        color: #FFFFFF;
        padding: 0 16px; }
      .section3-smartphone__btn--arrow {
        content: '';
        width: 32px;
        height: 32px;
        background-color: #f0f0ff;
        border-radius: 100px; } }

.section4 {
  margin-top: 174px; }
  .section4 .container {
    display: flex;
    flex-direction: column;
    gap: 56px; }
  .section4__title {
    font-size: 32px;
    font-weight: 700;
    line-height: 43px;
    letter-spacing: 0em;
    text-align: right; }
  .section4__number {
    color: #c2baf7; }
  .section4__main {
    display: flex;
    flex-direction: column;
    padding: 24px;
    border-radius: 32px;
    background-color: #f0f0ff; }
    .section4__main__left {
      display: flex;
      flex-direction: column; }
      .section4__main__left--title {
        display: flex;
        flex-direction: row;
        gap: 24px;
        padding: 8px 8px 16px 8px; }
        .section4__main__left--title--desc {
          flex: 1;
          display: flex;
          justify-content: flex-start;
          align-items: center;
          flex-direction: row;
          gap: 8px; }
          .section4__main__left--title--desc--btn {
            content: '';
            display: flex;
            justify-content: center;
            width: 54px;
            height: 54px;
            border-radius: 100px;
            background-color: #FFFFFF; }
          .section4__main__left--title--desc--name {
            font-weight: 700; }
        .section4__main__left--title--name {
          flex: 2;
          display: flex;
          justify-content: flex-start;
          align-items: center;
          font-weight: 700; }
      .section4__main__left--content {
        display: flex;
        flex-direction: row;
        gap: 24px;
        padding: 8px;
        border-top: 1px solid #928b95; }
        .section4__main__left--content--desc {
          padding: 8px 0;
          flex: 1;
          display: flex;
          justify-content: flex-start;
          align-items: center;
          flex-direction: row;
          gap: 8px; }
          .section4__main__left--content--desc--btn {
            content: '';
            display: flex;
            justify-content: center;
            align-items: center;
            width: 54px;
            height: 54px;
            border-radius: 100px;
            background-color: #FFFFFF; }
            .section4__main__left--content--desc--btn img {
              width: 24px;
              height: 24px; }
        .section4__main__left--content--name {
          padding: 8px 0;
          flex: 2;
          display: flex;
          justify-content: flex-start;
          align-items: center; }

@media (min-width: 768px) and (max-width: 1439px) {
  .section4 {
    margin-top: 130px; }
    .section4 .container {
      gap: 40px; }
    .section4__title {
      font-size: 24px;
      font-weight: 600;
      line-height: 32px;
      letter-spacing: 0.01em;
      text-align: left; }
    .section4__main {
      padding: 16px; }
      .section4__main__left--title--desc--btn {
        content: '';
        width: 40px;
        height: 40px; }
      .section4__main__left--title--desc--name {
        font-weight: 500; }
      .section4__main__left--title--name {
        font-weight: 500; }
      .section4__main__left--content--desc--btn {
        width: 40px;
        height: 40px; }
        .section4__main__left--content--desc--btn img {
          width: 18px;
          height: 18px; }
      .section4__main__left--content--desc--name {
        font-size: 14px;
        line-height: 21px; }
      .section4__main__left--content--name {
        font-size: 14px;
        line-height: 21px; } }

@media (max-width: 767px) {
  .section4 {
    margin-top: 120px; }
    .section4 .container {
      display: flex;
      flex-direction: column;
      gap: 32px;
      margin-right: 0;
      margin-left: 0;
      max-width: 100%; }
    .section4__title {
      font-size: 24px;
      font-weight: 600;
      line-height: 32px;
      letter-spacing: 0.01em;
      text-align: center; }
    .section4__number {
      display: none; }
    .section4__main {
      padding: 16px;
      border-radius: 0px; }
      .section4__main__left {
        display: flex;
        flex-direction: column; }
        .section4__main__left--title {
          display: flex;
          flex-direction: row;
          gap: 8px;
          padding: 8px 0; }
          .section4__main__left--title--desc--btn {
            display: none; }
          .section4__main__left--title--desc--name {
            font-weight: 500; }
          .section4__main__left--title--name {
            font-weight: 500; }
        .section4__main__left--content {
          gap: 8px;
          padding: 8px 0px; }
          .section4__main__left--content--desc {
            padding: 0; }
            .section4__main__left--content--desc--btn {
              display: none; }
            .section4__main__left--content--desc--name {
              font-size: 14px;
              line-height: 21px; }
          .section4__main__left--content--name {
            padding: 0;
            font-size: 14px;
            line-height: 21px; } }

.section5 {
  margin-top: 160px; }
  .section5 .container {
    display: flex;
    flex-direction: column;
    gap: 56px; }
  .section5__title {
    font-size: 32px;
    font-weight: 700;
    line-height: 43px;
    text-align: left; }
  .section5__subtitle {
    width: 50%;
    margin-left: 50%;
    font-weight: 700;
    color: #928b95; }
  .section5__number {
    color: #c2baf7; }
  .section5__main {
    display: flex;
    flex-direction: row;
    gap: 24px;
    min-height: 244px; }
    .section5__main__container {
      display: flex;
      flex: 1;
      flex-direction: column;
      justify-content: space-between;
      align-items: flex-start; }
      .section5__main__container__text {
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        gap: 12px; }
        .section5__main__container__text--title {
          font-weight: 700; }
      .section5__main__container__footer {
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        gap: 8px;
        width: 100%; }
        .section5__main__container__footer--img {
          flex: 1;
          display: flex;
          justify-content: center;
          align-items: center;
          max-width: 32px;
          height: 32px;
          background-color: #c2baf7;
          border-radius: 100px; }
          .section5__main__container__footer--img--inner {
            width: 60%;
            height: 60%;
            border-radius: 100px;
            background-color: #9588e8; }
        .section5__main__container__footer--line {
          flex: 4;
          content: '';
          height: 1px;
          border: 1px solid #c2baf7; }

@media (min-width: 768px) and (max-width: 1439px) {
  .section5 {
    margin-top: 130px; }
    .section5 .container {
      gap: 40px; }
    .section5__title {
      font-size: 24px;
      font-weight: 600;
      line-height: 32px;
      letter-spacing: 0.01em; }
    .section5__subtitle {
      font-weight: 700; }
    .section5__main {
      display: flex;
      flex-direction: column;
      gap: 8px;
      min-height: 122px;
      align-items: flex-start; }
      .section5__main__container {
        display: flex;
        flex: 1;
        flex-direction: row-reverse;
        justify-content: space-between;
        align-items: flex-start; }
        .section5__main__container__text {
          display: flex;
          flex-direction: column;
          justify-content: flex-start;
          align-items: flex-start;
          gap: 12px; }
          .section5__main__container__text--title {
            font-weight: 700; }
          .section5__main__container__text--subTitle {
            font-size: 14px;
            line-height: 21px; }
        .section5__main__container__footer {
          display: flex;
          flex-direction: column;
          justify-content: center;
          align-items: center;
          gap: 8px;
          width: min-content;
          height: 122px;
          padding: 0 4px; }
          .section5__main__container__footer--img {
            flex: 1;
            width: 24px;
            height: 24px;
            background-color: #c2baf7;
            border-radius: 100px; }
          .section5__main__container__footer--line {
            flex: 3.7;
            content: '';
            height: 1px;
            width: 1px;
            border: 1px solid #c2baf7; } }

@media (max-width: 767px) {
  .section5 {
    margin-top: 117px; }
    .section5 .container {
      gap: 32px; }
    .section5__title {
      font-size: 24px;
      font-weight: 600;
      line-height: 32px;
      letter-spacing: 0.01em;
      text-align: center; }
    .section5__subtitle {
      font-weight: 700;
      margin: 0;
      width: 100%; }
    .section5__number {
      display: none; }
    .section5__main {
      display: flex;
      flex-direction: column;
      gap: 8px;
      min-height: 122px; }
      .section5__main__container {
        display: flex;
        flex: 1;
        flex-direction: row-reverse;
        justify-content: space-between;
        align-items: flex-start;
        min-height: 164px; }
        .section5__main__container__text {
          display: flex;
          flex-direction: column;
          justify-content: flex-start;
          align-items: flex-start;
          gap: 12px; }
          .section5__main__container__text--title {
            font-weight: 700; }
          .section5__main__container__text--subTitle {
            font-size: 14px;
            line-height: 21px; }
        .section5__main__container__footer {
          display: flex;
          flex-direction: column;
          justify-content: center;
          align-items: center;
          gap: 8px;
          width: min-content;
          min-height: 164px;
          padding: 0 4px; }
          .section5__main__container__footer--img {
            flex: 0.5;
            width: 24px;
            height: 24px;
            background-color: #c2baf7;
            border-radius: 100px; }
            .section5__main__container__footer--img--inner {
              height: 14px;
              width: 14px;
              border-radius: 100px;
              background-color: #9588e8; }
          .section5__main__container__footer--line {
            flex: 5.5;
            content: '';
            height: 1px;
            width: 1px;
            border: 1px solid #c2baf7; } }

.notFound {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 114px;
  gap: 92px; }
  .notFound__img {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%; }
    .notFound__img img {
      width: 100%;
      height: 100%;
      max-width: 643px;
      max-height: 216px;
      object-fit: contain; }
  .notFound__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 40px; }
    .notFound__content__text {
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      gap: 16px; }
      .notFound__content__text--title {
        font-size: 36px;
        font-weight: 700;
        line-height: 49px;
        letter-spacing: -0.01em; }
      .notFound__content__text--subtitle {
        max-width: 600px;
        text-align: center; }
    .notFound__content__btn {
      cursor: pointer;
      text-transform: uppercase;
      padding: 8px;
      display: flex;
      flex-direction: row;
      background-color: #141414;
      border-radius: 100px; }
      @media (hover: hover) {
        .notFound__content__btn:hover {
          flex-direction: row-reverse;
          background-color: #786bcb; } }
      .notFound__content__btn:active {
        flex-direction: row;
        background-color: #9588e8; }
      .notFound__content__btn--text {
        display: flex;
        justify-content: center;
        align-items: center;
        font-weight: 700;
        text-align: center;
        color: #FFFFFF;
        padding: 0 16px; }
      .notFound__content__btn--arrow {
        content: '';
        width: 32px;
        height: 32px;
        background-color: #f0f0ff;
        border-radius: 100px; }

@media (min-width: 768px) and (max-width: 1439px) {
  .notFound {
    margin-top: 168px;
    gap: 82px; }
    .notFound__img img {
      max-height: 160px; }
    .notFound__content {
      gap: 48px; }
      .notFound__content__text--title {
        font-size: 32px;
        font-weight: 700;
        line-height: 43px; } }

@media (max-width: 767px) {
  .notFound {
    margin-top: 72px;
    gap: 80px;
    padding: 0 16px; }
    .notFound__img img {
      max-width: 643px;
      max-height: 110px; }
    .notFound__content {
      gap: 72px; }
      .notFound__content__text--title {
        font-size: 24px;
        font-weight: 600;
        line-height: 32px;
        letter-spacing: 0.01em; }
      .notFound__content__btn {
        cursor: pointer;
        padding: 8px;
        display: flex;
        flex-direction: row;
        justify-content: center;
        background-color: #141414;
        border-radius: 100px;
        width: 100%; } }
      @media (max-width: 767px) and (hover: hover) {
        .notFound__content__btn:hover {
          background-color: #786bcb; } }

@media (max-width: 767px) {
        .notFound__content__btn--text {
          display: flex;
          justify-content: center;
          align-items: center;
          font-weight: 700;
          text-align: center;
          color: #FFFFFF;
          padding: 0 16px; }
        .notFound__content__btn--arrow {
          content: '';
          width: 32px;
          height: 32px;
          background-color: #f0f0ff;
          border-radius: 100px; } }

/**
 * Swiper 10.0.3
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2023 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: July 3, 2023
 */
/* FONT_START */
@font-face {
  font-family: 'swiper-icons';
  src: url("data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA");
  font-weight: 400;
  font-style: normal; }

/* FONT_END */
:root {
  --swiper-theme-color: #007aff;
  /*
  --swiper-preloader-color: var(--swiper-theme-color);
  --swiper-wrapper-transition-timing-function: initial;
  */ }

:host {
  position: relative;
  display: block;
  margin-left: auto;
  margin-right: auto;
  z-index: 1; }

.swiper {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  overflow: clip;
  list-style: none;
  padding: 0;
  /* Fix of Webkit flickering */
  z-index: 1;
  display: block; }

.swiper-vertical > .swiper-wrapper {
  flex-direction: column; }

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  transition-timing-function: var(--swiper-wrapper-transition-timing-function, initial);
  box-sizing: content-box; }

.swiper-android .swiper-slide,
.swiper-ios .swiper-slide,
.swiper-wrapper {
  transform: translate3d(0px, 0, 0); }

.swiper-horizontal {
  touch-action: pan-y; }

.swiper-vertical {
  touch-action: pan-x; }

.swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform;
  display: block; }

.swiper-slide-invisible-blank {
  visibility: hidden; }

/* Auto Height */
.swiper-autoheight,
.swiper-autoheight .swiper-slide {
  height: auto; }

.swiper-autoheight .swiper-wrapper {
  align-items: flex-start;
  transition-property: transform, height; }

.swiper-backface-hidden .swiper-slide {
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden; }

/* 3D Effects */
.swiper-3d.swiper-css-mode .swiper-wrapper {
  perspective: 1200px; }

.swiper-3d .swiper-wrapper {
  transform-style: preserve-3d; }

.swiper-3d {
  perspective: 1200px; }

.swiper-3d .swiper-slide,
.swiper-3d .swiper-cube-shadow {
  transform-style: preserve-3d; }

/* CSS Mode */
.swiper-css-mode > .swiper-wrapper {
  overflow: auto;
  scrollbar-width: none;
  /* For Firefox */
  -ms-overflow-style: none;
  /* For Internet Explorer and Edge */ }

.swiper-css-mode > .swiper-wrapper::-webkit-scrollbar {
  display: none; }

.swiper-css-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: start start; }

.swiper-css-mode.swiper-horizontal > .swiper-wrapper {
  scroll-snap-type: x mandatory; }

.swiper-css-mode.swiper-vertical > .swiper-wrapper {
  scroll-snap-type: y mandatory; }

.swiper-css-mode.swiper-free-mode > .swiper-wrapper {
  scroll-snap-type: none; }

.swiper-css-mode.swiper-free-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: none; }

.swiper-css-mode.swiper-centered > .swiper-wrapper::before {
  content: '';
  flex-shrink: 0;
  order: 9999; }

.swiper-css-mode.swiper-centered > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: center center;
  scroll-snap-stop: always; }

.swiper-css-mode.swiper-centered.swiper-horizontal > .swiper-wrapper > .swiper-slide:first-child {
  margin-inline-start: var(--swiper-centered-offset-before); }

.swiper-css-mode.swiper-centered.swiper-horizontal > .swiper-wrapper::before {
  height: 100%;
  min-height: 1px;
  width: var(--swiper-centered-offset-after); }

.swiper-css-mode.swiper-centered.swiper-vertical > .swiper-wrapper > .swiper-slide:first-child {
  margin-block-start: var(--swiper-centered-offset-before); }

.swiper-css-mode.swiper-centered.swiper-vertical > .swiper-wrapper::before {
  width: 100%;
  min-width: 1px;
  height: var(--swiper-centered-offset-after); }

/* Slide styles start */
/* 3D Shadows */
.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-slide-shadow-bottom,
.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-slide-shadow-bottom {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10; }

.swiper-3d .swiper-slide-shadow {
  background: rgba(0, 0, 0, 0.15); }

.swiper-3d .swiper-slide-shadow-left {
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0)); }

.swiper-3d .swiper-slide-shadow-right {
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0)); }

.swiper-3d .swiper-slide-shadow-top {
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0)); }

.swiper-3d .swiper-slide-shadow-bottom {
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0)); }

.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  transform-origin: 50%;
  box-sizing: border-box;
  border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
  border-radius: 50%;
  border-top-color: transparent; }

.swiper:not(.swiper-watch-progress) .swiper-lazy-preloader,
.swiper-watch-progress .swiper-slide-visible .swiper-lazy-preloader {
  animation: swiper-preloader-spin 1s infinite linear; }

.swiper-lazy-preloader-white {
  --swiper-preloader-color: #fff; }

.swiper-lazy-preloader-black {
  --swiper-preloader-color: #000; }

@keyframes swiper-preloader-spin {
  0% {
    transform: rotate(0deg); }
  100% {
    transform: rotate(360deg); } }

/* Slide styles end */
.swiper-virtual .swiper-slide {
  -webkit-backface-visibility: hidden;
  transform: translateZ(0); }

.swiper-virtual.swiper-css-mode .swiper-wrapper::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none; }

.swiper-virtual.swiper-css-mode.swiper-horizontal .swiper-wrapper::after {
  height: 1px;
  width: var(--swiper-virtual-size); }

.swiper-virtual.swiper-css-mode.swiper-vertical .swiper-wrapper::after {
  width: 1px;
  height: var(--swiper-virtual-size); }

:root {
  --swiper-navigation-size: 44px;
  /*
  --swiper-navigation-top-offset: 50%;
  --swiper-navigation-sides-offset: 10px;
  --swiper-navigation-color: var(--swiper-theme-color);
  */ }

.swiper-button-prev,
.swiper-button-next {
  position: absolute;
  top: var(--swiper-navigation-top-offset, 50%);
  width: calc(var(--swiper-navigation-size) / 44 * 27);
  height: var(--swiper-navigation-size);
  margin-top: calc(0px - (var(--swiper-navigation-size) / 2));
  z-index: 10;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--swiper-navigation-color, var(--swiper-theme-color)); }

.swiper-button-prev.swiper-button-disabled,
.swiper-button-next.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none; }

.swiper-button-prev.swiper-button-hidden,
.swiper-button-next.swiper-button-hidden {
  opacity: 0;
  cursor: auto;
  pointer-events: none; }

.swiper-navigation-disabled .swiper-button-prev,
.swiper-navigation-disabled .swiper-button-next {
  display: none !important; }

.swiper-button-prev svg,
.swiper-button-next svg {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform-origin: center; }

.swiper-rtl .swiper-button-prev svg,
.swiper-rtl .swiper-button-next svg {
  transform: rotate(180deg); }

.swiper-button-prev,
.swiper-rtl .swiper-button-next {
  left: var(--swiper-navigation-sides-offset, 10px);
  right: auto; }

.swiper-button-next,
.swiper-rtl .swiper-button-prev {
  right: var(--swiper-navigation-sides-offset, 10px);
  left: auto; }

.swiper-button-lock {
  display: none; }

/* Navigation font start */
.swiper-button-prev:after,
.swiper-button-next:after {
  font-family: swiper-icons;
  font-size: var(--swiper-navigation-size);
  text-transform: none !important;
  letter-spacing: 0;
  font-variant: initial;
  line-height: 1; }

.swiper-button-prev:after,
.swiper-rtl .swiper-button-next:after {
  content: 'prev'; }

.swiper-button-next,
.swiper-rtl .swiper-button-prev {
  right: var(--swiper-navigation-sides-offset, 10px);
  left: auto; }

.swiper-button-next:after,
.swiper-rtl .swiper-button-prev:after {
  content: 'next'; }

/* Navigation font end */
:root {
  /*
  --swiper-pagination-color: var(--swiper-theme-color);
  --swiper-pagination-left: auto;
  --swiper-pagination-right: 8px;
  --swiper-pagination-bottom: 8px;
  --swiper-pagination-top: auto;
  --swiper-pagination-fraction-color: inherit;
  --swiper-pagination-progressbar-bg-color: rgba(0,0,0,0.25);
  --swiper-pagination-progressbar-size: 4px;
  --swiper-pagination-bullet-size: 8px;
  --swiper-pagination-bullet-width: 8px;
  --swiper-pagination-bullet-height: 8px;
  --swiper-pagination-bullet-border-radius: 50%;
  --swiper-pagination-bullet-inactive-color: #000;
  --swiper-pagination-bullet-inactive-opacity: 0.2;
  --swiper-pagination-bullet-opacity: 1;
  --swiper-pagination-bullet-horizontal-gap: 4px;
  --swiper-pagination-bullet-vertical-gap: 6px;
  */ }

.swiper-pagination {
  position: absolute;
  text-align: center;
  transition: 300ms opacity;
  transform: translate3d(0, 0, 0);
  z-index: 10; }

.swiper-pagination.swiper-pagination-hidden {
  opacity: 0; }

.swiper-pagination-disabled > .swiper-pagination,
.swiper-pagination.swiper-pagination-disabled {
  display: none !important; }

/* Common Styles */
.swiper-pagination-fraction,
.swiper-pagination-custom,
.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal {
  bottom: var(--swiper-pagination-bottom, 8px);
  top: var(--swiper-pagination-top, auto);
  left: 0;
  width: 100%; }

/* Bullets */
.swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0; }

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transform: scale(0.33);
  position: relative; }

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
  transform: scale(1); }

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
  transform: scale(1); }

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
  transform: scale(0.66); }

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
  transform: scale(0.33); }

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
  transform: scale(0.66); }

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
  transform: scale(0.33); }

.swiper-pagination-bullet {
  width: var(--swiper-pagination-bullet-width, var(--swiper-pagination-bullet-size, 8px));
  height: var(--swiper-pagination-bullet-height, var(--swiper-pagination-bullet-size, 8px));
  display: inline-block;
  border-radius: var(--swiper-pagination-bullet-border-radius, 50%);
  background: var(--swiper-pagination-bullet-inactive-color, #000);
  opacity: var(--swiper-pagination-bullet-inactive-opacity, 0.2); }

button.swiper-pagination-bullet {
  border: none;
  margin: 0;
  padding: 0;
  box-shadow: none;
  -webkit-appearance: none;
  appearance: none; }

.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer; }

.swiper-pagination-bullet:only-child {
  display: none !important; }

.swiper-pagination-bullet-active {
  opacity: var(--swiper-pagination-bullet-opacity, 1);
  background: var(--swiper-pagination-color, var(--swiper-theme-color)); }

.swiper-vertical > .swiper-pagination-bullets,
.swiper-pagination-vertical.swiper-pagination-bullets {
  right: var(--swiper-pagination-right, 8px);
  left: var(--swiper-pagination-left, auto);
  top: 50%;
  transform: translate3d(0px, -50%, 0); }

.swiper-vertical > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-vertical.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: var(--swiper-pagination-bullet-vertical-gap, 6px) 0;
  display: block; }

.swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  top: 50%;
  transform: translateY(-50%);
  width: 8px; }

.swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,
.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  display: inline-block;
  transition: 200ms transform, 200ms top; }

.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 4px); }

.swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap; }

.swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: 200ms transform, 200ms left; }

.swiper-horizontal.swiper-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: 200ms transform, 200ms right; }

/* Fraction */
.swiper-pagination-fraction {
  color: var(--swiper-pagination-fraction-color, inherit); }

/* Progress */
.swiper-pagination-progressbar {
  background: var(--swiper-pagination-progressbar-bg-color, rgba(0, 0, 0, 0.25));
  position: absolute; }

.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transform: scale(0);
  transform-origin: left top; }

.swiper-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  transform-origin: right top; }

.swiper-horizontal > .swiper-pagination-progressbar,
.swiper-pagination-progressbar.swiper-pagination-horizontal,
.swiper-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,
.swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite {
  width: 100%;
  height: var(--swiper-pagination-progressbar-size, 4px);
  left: 0;
  top: 0; }

.swiper-vertical > .swiper-pagination-progressbar,
.swiper-pagination-progressbar.swiper-pagination-vertical,
.swiper-horizontal > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,
.swiper-pagination-progressbar.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite {
  width: var(--swiper-pagination-progressbar-size, 4px);
  height: 100%;
  left: 0;
  top: 0; }

.swiper-pagination-lock {
  display: none; }

:root {
  /*
  --swiper-scrollbar-border-radius: 10px;
  --swiper-scrollbar-top: auto;
  --swiper-scrollbar-bottom: 4px;
  --swiper-scrollbar-left: auto;
  --swiper-scrollbar-right: 4px;
  --swiper-scrollbar-sides-offset: 1%;
  --swiper-scrollbar-bg-color: rgba(0, 0, 0, 0.1);
  --swiper-scrollbar-drag-bg-color: rgba(0, 0, 0, 0.5);
  --swiper-scrollbar-size: 4px;
  */ }

.swiper-scrollbar {
  border-radius: var(--swiper-scrollbar-border-radius, 10px);
  position: relative;
  -ms-touch-action: none;
  background: var(--swiper-scrollbar-bg-color, rgba(0, 0, 0, 0.1)); }

.swiper-scrollbar-disabled > .swiper-scrollbar,
.swiper-scrollbar.swiper-scrollbar-disabled {
  display: none !important; }

.swiper-horizontal > .swiper-scrollbar,
.swiper-scrollbar.swiper-scrollbar-horizontal {
  position: absolute;
  left: var(--swiper-scrollbar-sides-offset, 1%);
  bottom: var(--swiper-scrollbar-bottom, 4px);
  top: var(--swiper-scrollbar-top, auto);
  z-index: 50;
  height: var(--swiper-scrollbar-size, 4px);
  width: calc(100% - 2 * var(--swiper-scrollbar-sides-offset, 1%)); }

.swiper-vertical > .swiper-scrollbar,
.swiper-scrollbar.swiper-scrollbar-vertical {
  position: absolute;
  left: var(--swiper-scrollbar-left, auto);
  right: var(--swiper-scrollbar-right, 4px);
  top: var(--swiper-scrollbar-sides-offset, 1%);
  z-index: 50;
  width: var(--swiper-scrollbar-size, 4px);
  height: calc(100% - 2 * var(--swiper-scrollbar-sides-offset, 1%)); }

.swiper-scrollbar-drag {
  height: 100%;
  width: 100%;
  position: relative;
  background: var(--swiper-scrollbar-drag-bg-color, rgba(0, 0, 0, 0.5));
  border-radius: var(--swiper-scrollbar-border-radius, 10px);
  left: 0;
  top: 0; }

.swiper-scrollbar-cursor-drag {
  cursor: move; }

.swiper-scrollbar-lock {
  display: none; }

.swiper-zoom-container {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center; }

.swiper-zoom-container > img,
.swiper-zoom-container > svg,
.swiper-zoom-container > canvas {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain; }

.swiper-slide-zoomed {
  cursor: move;
  touch-action: none; }

/* a11y */
.swiper .swiper-notification {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  opacity: 0;
  z-index: -1000; }

.swiper-free-mode > .swiper-wrapper {
  transition-timing-function: ease-out;
  margin: 0 auto; }

.swiper-grid > .swiper-wrapper {
  flex-wrap: wrap; }

.swiper-grid-column > .swiper-wrapper {
  flex-wrap: wrap;
  flex-direction: column; }

.swiper-fade.swiper-free-mode .swiper-slide {
  transition-timing-function: ease-out; }

.swiper-fade .swiper-slide {
  pointer-events: none;
  transition-property: opacity; }

.swiper-fade .swiper-slide .swiper-slide {
  pointer-events: none; }

.swiper-fade .swiper-slide-active,
.swiper-fade .swiper-slide-active .swiper-slide-active {
  pointer-events: auto; }

.swiper-cube {
  overflow: visible; }

.swiper-cube .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
  visibility: hidden;
  transform-origin: 0 0;
  width: 100%;
  height: 100%; }

.swiper-cube .swiper-slide .swiper-slide {
  pointer-events: none; }

.swiper-cube.swiper-rtl .swiper-slide {
  transform-origin: 100% 0; }

.swiper-cube .swiper-slide-active,
.swiper-cube .swiper-slide-active .swiper-slide-active {
  pointer-events: auto; }

.swiper-cube .swiper-slide-active,
.swiper-cube .swiper-slide-next,
.swiper-cube .swiper-slide-prev {
  pointer-events: auto;
  visibility: visible; }

.swiper-cube .swiper-cube-shadow {
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 100%;
  height: 100%;
  opacity: 0.6;
  z-index: 0; }

.swiper-cube .swiper-cube-shadow:before {
  content: '';
  background: #000;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  filter: blur(50px); }

.swiper-cube .swiper-slide-next + .swiper-slide {
  pointer-events: auto;
  visibility: visible; }

/* Cube slide shadows start */
.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-top,
.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-bottom,
.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-left,
.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-right {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden; }

/* Cube slide shadows end */
.swiper-flip {
  overflow: visible; }

.swiper-flip .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1; }

.swiper-flip .swiper-slide .swiper-slide {
  pointer-events: none; }

.swiper-flip .swiper-slide-active,
.swiper-flip .swiper-slide-active .swiper-slide-active {
  pointer-events: auto; }

/* Flip slide shadows start */
.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-top,
.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-bottom,
.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-left,
.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-right {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden; }

/* Flip slide shadows end */
.swiper-creative .swiper-slide {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  overflow: hidden;
  transition-property: transform, opacity, height; }

.swiper-cards {
  overflow: visible; }

.swiper-cards .swiper-slide {
  transform-origin: center bottom;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  overflow: hidden; }
