@charset "UTF-8";

/* stylelint-disable */

/* stylelint-disable */

/* stylelint-disable scss/operator-no-unspaced */

/* stylelint-disable scss/dollar-variable-colon-newline-after */

@font-face {
  font-family: "Gilroy";
  src: url("../fonts/Gilroy-Black.woff2") format("woff2");
  font-weight: 900;
  font-display: swap;
  font-style: normal;
}

@font-face {
  font-family: "Gilroy";
  src: url("../fonts/Gilroy-ExtraBold.woff2") format("woff2");
  font-weight: 700;
  font-display: swap;
  font-style: normal;
}

@font-face {
  font-family: "Gilroy";
  src: url("../fonts/Gilroy-Heavy.woff2") format("woff2");
  font-weight: 700;
  font-display: swap;
  font-style: normal;
}

@font-face {
  font-family: "Gilroy";
  src: url("../fonts/Gilroy-Light.woff2") format("woff2");
  font-weight: 300;
  font-display: swap;
  font-style: normal;
}

@font-face {
  font-family: "Gilroy";
  src: url("../fonts/Gilroy-Medium.woff2") format("woff2");
  font-weight: 500;
  font-display: swap;
  font-style: normal;
}

@font-face {
  font-family: "Gilroy";
  src: url("../fonts/Gilroy-SemiBold.woff2") format("woff2");
  font-weight: 600;
  font-display: swap;
  font-style: normal;
}

@font-face {
  font-family: "Gilroy";
  src: url("../fonts/Gilroy-Regular.woff2") format("woff2");
  font-weight: 400;
  font-display: swap;
  font-style: normal;
}

@font-face {
  font-family: "Gilroy";
  src: url("../fonts/Gilroy-Bold.woff2") format("woff2");
  font-weight: 700;
  font-display: swap;
  font-style: normal;
}

@font-face {
  font-family: "Gilroy";
  src: url("../fonts/Gilroy-UltraLight.woff2") format("woff2");
  font-weight: 300;
  font-display: swap;
  font-style: normal;
}

@font-face {
  font-family: "NotoSans";
  src: url("../fonts/NotoSans-Regular.woff2") format("woff2");
  font-weight: 400;
  font-display: swap;
  font-style: normal;
}

@font-face {
  font-family: "Recoleta";
  src: url("../fonts/Recoleta-SemiBold.woff2") format("woff2");
  font-weight: 600;
  font-display: swap;
  font-style: normal;
}

@font-face {
  font-family: "NotoSans";
  src: url("../fonts/NotoSans-Bold.woff2") format("woff2");
  font-weight: 700;
  font-display: swap;
  font-style: normal;
}

html {
  font-family: var(--font-family);
  font-weight: var(--font-weight);
  font-size: 62.5%;
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

html,
body {
  height: 100%;
}

body {
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

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

pre {
  font-family: monospace;
  font-size: 1em;
}

a {
  text-decoration: none;
}

img {
  height: auto;
  max-width: 100%;
  object-fit: cover;
}

button {
  border: none;
  text-align: left;
  background-color: transparent;
  cursor: pointer;
}

ul,
ol {
  list-style: none;
}

input {
  appearance: none;
  border: none;
  border-radius: 0;
  background-color: #fff;
}

input::-webkit-search-decoration,
input::-webkit-search-cancel-button,
input::-webkit-search-results-button,
input::-webkit-search-results-decoration {
  display: none;
}

.js-focus-visible :focus:not(.focus-visible) {
  outline: none;
}

.focus-visible {
  outline: auto 1px;
}

.ios .lock {
  position: relative;
}

/* Forms
   ========================================================================== */

/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */

button,
input,
optgroup,
select,
textarea {
  margin: 0;
  font-family: inherit;
  font-size: 100%;
  line-height: 1.15;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */

button,
select {
  text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */

button,
[type=button],
[type=reset],
[type=submit] {
  appearance: button;
  /* Стандартный способ для большинства браузеров */
}

/**
 * Remove the inner border and padding in Firefox.
 */

button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */

button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

:root {
  --font-family: "Gilroy", sans-serif;
  --font-weight: 500;
  --content-width: 144rem;
  --container-offset: 1.5rem;
  --container-width: calc(var(--content-width) + (var(--container-offset) * 2));
  --transition: 0.3s;
  --clr-default-100: #ffffff;
  --clr-default-400: #f38601;
  --clr-default-900: #000;
}

body {
  font-size: 2.4rem;
  color: var(--clr-default-900);
}

body.lock {
  position: fixed;
  left: 0;
  top: 0;
  overflow: hidden;
  width: 100%;
  height: 100vh;
  overscroll-behavior: none;
}

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

.wrapper::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 5;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition), visibility var(--transition);
}

.wrapper[data-overlay=true]::before {
  opacity: 1;
  visibility: visible;
  transition: opacity var(--transition), visibility var(--transition);
}

main {
  flex-grow: 1;
}

.container {
  margin-inline: auto;
  padding-inline: var(--container-offset);
  width: 100%;
  max-width: var(--container-width);
}

.visually-hidden {
  position: absolute;
  overflow: hidden;
  margin: -1px;
  border: 0;
  padding: 0;
  width: 1px;
  height: 1px;
  clip: rect(0 0 0 0);
}

/* scroll bar */

*::-webkit-scrollbar {
  width: 0.5rem;
}

*::-webkit-scrollbar-thumb {
  background-color: #c4c4c4;
}

*::-webkit-scrollbar-track {
  background-color: #fff;
}

picture {
  display: flex;
}

.orange {
  text-align: right;
  color: #f38601;
}

.index-wrapper {
  display: flex;
}

.btn {
  position: relative;
  justify-content: center;
  margin-top: clamp(2rem, 1.4285714286rem + 1.7857142857vw, 4rem);
  border-radius: 4rem;
  width: 100%;
  height: clamp(5.4rem, 4.8857142857rem + 1.6071428571vw, 7.2rem);
  font-weight: 600;
  font-size: clamp(1.7rem, 1.5rem + 0.625vw, 2.4rem);
  text-align: center;
  color: #fff;
  background: #f38601;
}

.btn svg {
  position: absolute;
  right: 0.6rem;
  top: 50%;
  display: flex;
  width: clamp(4rem, 3.5428571429rem + 1.4285714286vw, 5.6rem);
  height: clamp(4rem, 3.5428571429rem + 1.4285714286vw, 5.6rem);
  transform: translateY(-50%);
}

.no-scroll {
  overflow: hidden;
}

* .d-none {
  display: none !important;
}

.error {
  display: none;
  font-size: 1.4rem;
  color: #eb2517;
}

.order-slider {
  padding-right: 2rem;
  padding-block: 2rem 4rem;
}

.order-slider__slide {
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.order-slider__slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.order-slider .swiper-pagination-bullet-active {
  background-color: var(--clr-default-400);
}

.order-slider .swiper-pagination-bullet {
  width: 1.2rem;
  height: 1.2rem;
}

.menu {
  position: fixed;
  right: -100%;
  top: 0;
  z-index: 10;
  display: flex;
  overflow: auto;
  width: 100%;
  width: 100%;
  height: 100%;
  max-width: 100%;
  background-color: var(--clr-default-100);
  transition: right var(--transition);
}

.menu__list {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  margin: auto;
  padding-block: 4rem;
}

.menu__item:not(:last-child) {
  margin-right: 0;
  margin-bottom: 3rem;
}

.menu__item a {
  position: relative;
  font-size: 1.6rem;
  color: #000;
}

.menu__item a::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 110%;
  display: inline-block;
  width: 0;
  height: 0.1rem;
  background-color: #000;
  transform: translateX(-50%);
  transition: width var(--transition);
}

.menu__item a:hover::after {
  width: 100%;
}

.menu--active {
  right: 0;
  transition: right var(--transition);
}

.logo a {
  font-weight: 900;
  font-size: 3rem;
  color: #000;
}

.burger {
  position: relative;
  z-index: 15;
  display: none;
  display: block;
  margin-left: auto;
  width: 2.5rem;
  height: 2rem;
  background-color: transparent;
}

.burger::after,
.burger::before,
.burger span {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 0.4rem;
  background-color: hsl(0, 0%, 0%);
}

.burger::before {
  top: 0;
  transition: transform var(--transition), top var(--transition);
}

.burger::after {
  bottom: 0;
  transition: transform var(--transition), bottom var(--transition);
}

.burger span {
  top: 0.8rem;
  transition: transform var(--transition);
}

.burger--active::before {
  top: 0.8rem;
  transform: rotate(45deg);
  transition: transform var(--transition), top var(--transition);
}

.burger--active::after {
  bottom: 0.8rem;
  transform: rotate(-45deg);
  transition: transform var(--transition), bottom var(--transition);
}

.burger--active span {
  transform: scale(0);
  transition: transform var(--transition);
}

.header {
  padding-block: 2rem;
}

.header__wrapper {
  display: flex;
  align-items: center;
}

.footer__wrapper {
  display: flex;
}

.modal {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 20;
  overflow-x: hidden;
  overflow-y: auto;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition), visibility var(--transition);
}

.modal__wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2.5rem;
  min-height: 100%;
}

.modal__content {
  position: relative;
  border-radius: 3.2rem;
  padding: clamp(2rem, 1.0857142857rem + 2.8571428571vw, 5.2rem);
  width: 100%;
  max-width: 63.6rem;
  background-color: var(--clr-default-100);
  opacity: 0;
  transform: translateY(-100%);
  transition: transform var(--transition), opacity var(--transition);
}

.modal__close {
  position: absolute;
  right: 2rem;
  top: 2rem;
  display: flex;
  border-radius: 100%;
  padding: 0.5rem;
  width: 3.2rem;
  height: 3.2rem;
  background-color: rgba(0, 0, 0, 0.04);
}

.modal__close::after,
.modal__close::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 50%;
  height: 0.2rem;
  background-color: rgba(0, 0, 0, 0.4);
}

.modal__close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.modal__close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.modal.show {
  opacity: 1;
  visibility: visible;
  transition: opacity var(--transition), visibility var(--transition);
}

.modal.show .modal__content {
  opacity: 1;
  transform: translateY(0);
  transition: transform var(--transition), opacity var(--transition);
}

.order a {
  color: var(--clr-default-100);
}

.order__warning {
  border-radius: 1.6rem;
  padding: clamp(1rem, 0.8571428571rem + 0.4464285714vw, 1.5rem) clamp(1.5rem, 1.0714285714rem + 1.3392857143vw, 3rem);
  font-size: clamp(1.8rem, 1.6857142857rem + 0.3571428571vw, 2.2rem);
  color: #fff;
  background-color: var(--clr-default-400);
}

.order__warning span {
  font-weight: 700;
  color: #eaff35;
}

.order__warning--mob {
  display: none;
  margin-top: 2rem;
}

.order__title {
  font-weight: 700;
  font-size: clamp(1.8rem, 1.4rem + 1.25vw, 3.2rem);
}

.order__subtitle {
  position: relative;
  z-index: 2;
  margin-left: 3rem;
  border-radius: 1.6rem;
  padding: clamp(1rem, 0.8571428571rem + 0.4464285714vw, 1.5rem) clamp(1.5rem, 1.3571428571rem + 0.4464285714vw, 2rem);
  font-weight: 600;
  font-size: 2.4rem;
  color: #fff;
  background-color: var(--clr-default-400);
  animation: pulse_text 2.5s infinite ease-in-out;
}

.order__subtitle span {
  font-weight: 700;
  color: #eaff35;
}

.order__item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 17.8rem;
  text-align: center;
}

.order__item picture {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 2rem;
  max-width: 14.4rem;
  max-height: 14.4rem;
}

.order__item-button {
  position: absolute;
  right: 50%;
  top: 0;
  border: 4px solid #f8f6f1;
  border-radius: 100%;
  padding: 0.9rem;
  background: #000;
  transform: translate(9rem, -30%);
  animation: pulse 2.5s infinite ease-in-out;
  cursor: pointer;
}

.order__item-title {
  display: block;
  margin-top: 2.6rem;
  font-weight: 700;
  font-size: 2rem;
  letter-spacing: -0.02em;
  text-align: center;
}

.order__item-subtitle {
  font-weight: 700;
  font-size: 1.7rem;
  color: var(--clr-default-400);
}

.order__item-line {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.order__item-text {
  position: relative;
  font-weight: 600;
  font-size: 1.5rem;
  line-height: 147%;
  color: rgba(0, 0, 0, 0.5);
}

.order__item-text::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 2px;
  background-color: rgba(0, 0, 0, 0.3);
  transform: translateY(-50%);
}

.order__button {
  border-radius: 2rem;
  padding: 0.5rem 1.2rem;
  font-size: 1.7rem;
  text-align: center;
  color: var(--clr-default-100);
  background: #f38601;
}

.order__title {
  margin: clamp(2rem, 1.0285714286rem + 3.0357142857vw, 5.4rem) 0;
}

.order__wrapper {
  display: flex;
  justify-content: space-between;
  margin: clamp(3rem, 2.2857142857rem + 2.2321428571vw, 5.5rem) 0 clamp(1.8rem, 1.3428571429rem + 1.4285714286vw, 3.4rem);
}

.order .container {
  display: flex;
  gap: 4rem;
}

.order__buy {
  flex-grow: 1;
}

.order__set {
  display: flex;
  justify-content: space-between;
  margin-top: clamp(2rem, 1.7142857143rem + 0.8928571429vw, 3rem);
}

.order-buy {
  display: flex;
  flex-direction: column;
}

.order-buy__title {
  margin-top: 4.8rem;
  font-weight: 700;
  font-size: 3.2rem;
}

.order-buy__wrap {
  display: flex;
  align-items: center;
  border-radius: 3.2rem;
  padding: 1.6rem;
  background: #f8f6f1;
  gap: 1.6rem;
}

.order-buy__wrap-text {
  flex-direction: column;
}

.order-buy__wrap-img {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 1rem;
  min-width: 6rem;
  min-height: 6rem;
  max-width: 6rem;
  max-height: 6rem;
}

.order-buy__wrap-kit {
  font-weight: 500;
  font-size: 1.8rem;
}

.order-buy__wrap-desc {
  display: block;
  font-weight: 700;
  font-size: clamp(1.8rem, 1.5142857143rem + 0.8928571429vw, 2.8rem);
}

.order-buy__wrap-important {
  font-weight: 600;
  color: #f38601;
}

.order-buy__wrap-delete {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  border-radius: 0.5rem;
  padding-top: 0.2rem;
  min-width: 4rem;
  min-height: 4rem;
  max-width: 4rem;
  max-height: 4rem;
  background-color: #fff;
  cursor: pointer;
}

.order-buy__wrap a.order-buy__wrap-delete {
  color: #000;
}

.order-buy__list {
  display: flex;
  flex-direction: column;
  margin-top: clamp(2rem, 1.4285714286rem + 1.7857142857vw, 4rem);
  margin-bottom: clamp(2rem, 1.4285714286rem + 1.7857142857vw, 4rem);
  gap: 1rem;
}

.order-buy__form {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.order-buy__form-info {
  font-weight: 600;
  font-size: 1.6rem;
}

.order-buy__form-info_second {
  margin-top: 1.6rem;
}

.order-buy__form input {
  margin-top: 1rem;
  outline: none;
  border-radius: 3.2rem;
  padding: 1.6rem 2rem;
  width: 100%;
  height: 6rem;
  font-size: 1.8rem;
  background: #f8f6f1;
}

.order-buy__everything {
  display: flex;
  justify-content: space-between;
  margin-top: clamp(2rem, 1.0285714286rem + 3.0357142857vw, 5.4rem);
}

.order-buy__everything span {
  font-size: clamp(1.5rem, 1.3571428571rem + 0.4464285714vw, 2rem);
}

.order-buy__button {
  position: relative;
  margin-top: 2rem;
  border-radius: 4rem;
  width: 100%;
  height: 6rem;
  text-align: center;
  color: var(--clr-default-100);
  background: #f38601;
}

.order-buy__button img {
  width: 4rem;
  height: 4rem;
}

.order-buy__button picture {
  position: absolute;
  right: 0.6rem;
  top: 50%;
  width: 4rem;
  height: 4rem;
  transform: translateY(-50%);
}

[data-discount-list] {
  overflow: hidden;
  height: 40rem;
  max-width: 86rem;
  transition: height var(--transition);
}

[data-discount-list].hidden {
  height: 0;
}

.half-opacity {
  position: relative;
}

.half-opacity::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.8);
}

@keyframes pulse {
  0% {
    opacity: 1;
    transform: scale(1) translate(9rem, -30%);
  }

  50% {
    transform: scale(1.2) translate(7.5rem, -30%);
  }

  100% {
    opacity: 1;
    transform: scale(1) translate(9rem, -30%);
  }
}

@keyframes pulse_text {
  0% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    transform: scale(1.1);
  }

  100% {
    opacity: 1;
    transform: scale(1);
  }
}

.complect-hero {
  background: #f8f6f1;
}

.complect-hero__wrap {
  display: flex;
  padding: clamp(2rem, 1.3142857143rem + 2.1428571429vw, 4.4rem) 0 clamp(2.5rem, 1.3857142857rem + 3.4821428571vw, 6.4rem);
  gap: 2.6rem;
}

.complect-hero__wrap-left {
  width: 65.8rem;
}

.complect-hero__wrap-title {
  display: flex;
  flex-direction: column;
  font-weight: 900;
  font-size: clamp(4rem, 3.0571428571rem + 2.9464285714vw, 7.3rem);
  letter-spacing: -0.02em;
}

.complect-hero__wrap-retreat {
  display: flex;
  flex-direction: column;
  text-align: right;
}

.complect-hero__wrap-info {
  margin-left: 11.4rem;
}

.complect-hero__wrap-text {
  margin-top: clamp(2.5rem, 1.5rem + 3.125vw, 6rem);
  max-width: 48.1rem;
  font-weight: 500;
  font-size: clamp(1.6rem, 1.3714285714rem + 0.7142857143vw, 2.4rem);
  line-height: 133%;
  color: rgba(0, 0, 0, 0.7);
}

.complect-hero__wrap-price {
  position: relative;
  display: flex;
  align-items: center;
  margin-top: clamp(2rem, 1.3142857143rem + 2.1428571429vw, 4.4rem);
  gap: 25.4rem;
}

.complect-hero__wrap-price ::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4rem;
  display: inline-block;
  border-bottom: 0.2rem solid rgba(0, 0, 0, 0.12);
  width: 48.1rem;
  height: 6.4rem;
}

.complect-hero__wrap-cost {
  font-weight: 500;
  font-size: 2rem;
  color: rgba(0, 0, 0, 0.8);
}

.complect-hero__wrap-desc {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: clamp(2.4rem, 2.0571428571rem + 1.0714285714vw, 3.6rem);
  line-height: 111%;
  text-align: right;
  color: #000;
}

.complect-hero__wrap-buttons {
  display: flex;
  margin-top: clamp(5rem, 4rem + 3.125vw, 8.5rem);
  gap: 1.2rem;
}

.complect-hero__wrap-buttons a {
  color: var(--clr-default-900);
}

.complect-hero__wrap-buttons button {
  border-radius: 4rem;
  font-weight: 600;
  font-size: clamp(1.8rem, 1.6285714286rem + 0.5357142857vw, 2.4rem);
}

.complect-hero__wrap-btn {
  padding: 1.9rem clamp(2rem, 1.2857142857rem + 2.2321428571vw, 4.5rem);
  box-shadow: 0 0.1rem 0.1rem 0 rgba(0, 0, 0, 0.1);
  text-align: center;
  background: #e6e1d0;
}

.complect-hero__wrap-take {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.8rem 0.8rem 0.8rem 3rem;
  color: var(--clr-default-100);
  background: #f38601;
  gap: 1.8rem;
}

.complect-hero__wrap-take picture {
  border-radius: 100%;
  padding: clamp(1rem, 0.8285714286rem + 0.5357142857vw, 1.6rem);
  background-color: #000;
}

.complect-hero__wrap-take picture img {
  width: clamp(1.7rem, 1.5rem + 0.625vw, 2.4rem);
  height: clamp(1.7rem, 1.5rem + 0.625vw, 2.4rem);
}

.complect-hero-image {
  position: relative;
}

.complect-hero-image__big {
  border-radius: 5rem;
  max-width: 66rem;
  max-height: 70rem;
}

.complect-hero-image__ico {
  position: absolute;
  right: 0;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-style: solid;
  border-width: 0.5rem;
  border-color: #f8f6f1;
  border-bottom-left-radius: 4.5rem;
  background-color: #f8f6f1;
}

.complect-hero-image__ico-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  width: 8.5rem;
  height: 8.5rem;
  background-color: #000;
}

.complect-hero-image__relative {
  position: relative;
}

.complect-hero-image__relative::after {
  content: "";
  position: absolute;
  left: -0.3rem;
  top: -0.6rem;
  display: block;
  width: 4.8rem;
  height: 4.8rem;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32" fill="none"><path fill-rule="evenodd" clip-rule="evenodd" d="M0 0V32H32C14.3269 32 0 17.6729 0 0Z" fill="%23f8f6f1"/></svg>');
  background-size: cover;
  background-repeat: no-repeat;
  transform: rotate(180deg) translateX(100%);
}

.complect-hero-image__relative::before {
  content: "";
  position: absolute;
  right: -0.6rem;
  bottom: -0.3rem;
  display: block;
  width: 4.8rem;
  height: 4.8rem;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32" fill="none"><path fill-rule="evenodd" clip-rule="evenodd" d="M0 0V32H32C14.3269 32 0 17.6729 0 0Z" fill="%23f8f6f1"/></svg>');
  background-size: cover;
  background-repeat: no-repeat;
  transform: rotate(180deg) translateY(-100%);
}

.complect-list {
  padding-top: clamp(3rem, 2rem + 3.125vw, 6.5rem);
  background: #f8f6f1;
}

.complect-list__title {
  font-weight: 700;
  font-size: clamp(2.5rem, 1.6714285714rem + 2.5892857143vw, 5.4rem);
  line-height: 107%;
  letter-spacing: -0.02em;
  text-align: center;
}

.complect-list__swiper {
  padding-bottom: 4rem;
}

.complect-list__swiper * {
  -webkit-user-select: none;
  user-select: none;
}

.complect-list__swiper .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
}

.complect-list__swiper .swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  padding-top: 2rem;
  height: 3rem;
}

.complect-list__swiper .swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
  background-color: #f38601;
}

.complect-list__block {
  position: relative;
  padding-block: 3rem;
}

.complect-list__block .swiper-button-next,
.complect-list__block .swiper-button-prev {
  border-style: solid;
  border-width: 0.1rem;
  border-color: #f38601;
  border-radius: 100%;
  padding-top: 0.3rem;
  width: 6rem;
  height: 6rem;
  color: #f38601;
  background-color: #fff;
}

.complect-list__block .swiper-button-next::after,
.complect-list__block .swiper-button-next::before,
.complect-list__block .swiper-button-prev::after,
.complect-list__block .swiper-button-prev::before {
  font-size: 3.5rem;
}

.complect-list__block .swiper-button-prev {
  left: 0;
  transform: translateX(-103%);
}

.complect-list__block .swiper-button-next {
  right: 0;
  transform: translateX(103%);
}

.complect-list-slide {
  position: relative;
  display: flex;
  overflow: hidden;
  border-radius: 3.2rem;
  width: max-content;
}

.complect-list-slide__quote {
  position: absolute;
  left: 1rem;
  top: 1rem;
  border-radius: 4rem;
  padding: clamp(1rem, 0.8857142857rem + 0.3571428571vw, 1.4rem) clamp(1.5rem, 1.3571428571rem + 0.4464285714vw, 2rem);
  font-family: var(--font-family);
  font-weight: 600;
  font-size: clamp(1.8rem, 1.6857142857rem + 0.3571428571vw, 2.2rem);
  line-height: 118%;
  color: #000;
  background-color: #fff;
}

.complect-list-slide__block {
  position: absolute;
  left: 0;
  bottom: 0;
  border-top-right-radius: 5rem;
  padding: 1.3rem 1.3rem 0 0;
  background-color: #f8f6f1;
}

.complect-list-slide__relative {
  position: relative;
}

.complect-list-slide__relative::after {
  content: "";
  position: absolute;
  left: -0.1rem;
  top: -1.2rem;
  display: block;
  width: 4.8rem;
  height: 4.8rem;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32" fill="none"><path fill-rule="evenodd" clip-rule="evenodd" d="M0 0V32H32C14.3269 32 0 17.6729 0 0Z" fill="%23f8f6f1"/></svg>');
  background-size: cover;
  background-repeat: no-repeat;
  transform: rotate(0) translateY(-100%);
}

.complect-list-slide__relative::before {
  content: "";
  position: absolute;
  right: clamp(-1.2rem, -0.9428571429rem + -0.1785714286vw, -1rem);
  bottom: -0.1rem;
  display: block;
  width: 4.8rem;
  height: 4.8rem;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32" fill="none"><path fill-rule="evenodd" clip-rule="evenodd" d="M0 0V32H32C14.3269 32 0 17.6729 0 0Z" fill="%23f8f6f1"/></svg>');
  background-size: cover;
  background-repeat: no-repeat;
  transform: translateX(100%);
}

.complect-list-slide__price {
  border-radius: 44rem;
  padding: clamp(2.3rem, 2.1285714286rem + 0.5357142857vw, 2.9rem) clamp(1.4rem, 1.1142857143rem + 0.8928571429vw, 2.4rem);
  width: max-content;
  font-family: var(--font-family);
  font-weight: 600;
  font-size: clamp(2rem, 1.8285714286rem + 0.5357142857vw, 2.6rem);
  line-height: 100%;
  color: #fff;
  background-color: #000;
}

.complect-list__rights {
  display: block;
  padding: clamp(6rem, 5.8571428571rem + 0.4464285714vw, 6.5rem) 0 clamp(2.2rem, 1.9142857143rem + 0.8928571429vw, 3.2rem);
  font-weight: 500;
  font-size: 1.8rem;
  text-align: center;
  color: rgba(0, 0, 0, 0.8);
}

.complect-modal {
  background: #f8f6f1;
}

.complect-modal__title {
  font-weight: 700;
  font-size: clamp(2.8rem, 2.3428571429rem + 1.4285714286vw, 4.4rem);
  line-height: 118%;
  letter-spacing: -0.01em;
}

.complect-modal__title span {
  display: block;
}

.complect-modal__text {
  margin-top: 2.5rem;
  font-weight: 500;
  font-size: clamp(1.5rem, 1.4714285714rem + 0.0892857143vw, 1.6rem);
  line-height: 150%;
}

.complect-modal__list {
  display: flex;
  justify-content: space-between;
  margin-top: clamp(1.5rem, 1.2428571429rem + 0.8035714286vw, 2.4rem);
  border-radius: 2.4rem;
  padding: 0.5rem 2rem 2rem 2rem;
  background: #f8f6f1;
}

.complect-modal__list_half ul {
  flex-basis: 50%;
}

.complect-modal__list_column {
  flex-direction: column;
}

.complect-modal__list-flex-wrap {
  display: flex;
  flex-wrap: wrap;
}

.complect-modal__list-flex-wrap li {
  flex-grow: 1;
  flex-basis: 34%;
}

.complect-modal__list li {
  position: relative;
  display: flex;
  margin-top: 1.5rem;
  font-weight: 600;
  font-size: clamp(1.5rem, 1.4714285714rem + 0.0892857143vw, 1.6rem);
  color: rgba(0, 0, 0, 0.7);
  gap: 1.4rem;
}

.complect-modal__list li::before {
  content: "";
  display: flex;
  margin-top: 0.4rem;
  border-radius: 100%;
  min-width: 0.8rem;
  min-height: 0.8rem;
  max-width: 0.8rem;
  max-height: 0.8rem;
  background-color: #f38601;
}

.complect-modal .btn {
  width: 100%;
}

.thank__wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 80vh;
}

@media (max-width: 25em) {
  .complect-hero__wrap-buttons {
    flex-direction: column;
  }

  .complect-hero__wrap-take {
    justify-content: center;
    padding: 1.9rem;
  }

  .complect-hero__wrap-take picture {
    position: absolute;
    right: 0.8rem;
    top: 50%;
    transform: translateY(-50%);
  }
}

@media (max-width: 98.125em) {
  .complect-list__block {
    margin-inline: auto;
    width: 80%;
  }
}

@media (max-width: 90.625em) {
  .complect-modal__text {
    text-align: left;
  }
}

@media (max-width: 84.375em) {
  .complect-hero__wrap {
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
  }

  .complect-hero__wrap-left {
    width: auto;
  }

  .complect-hero__wrap-title {
    text-align: right;
  }

  .complect-hero__wrap-retreat {
    margin: 0;
  }

  .complect-hero__wrap-info {
    margin: 0;
    width: 100%;
  }

  .complect-hero__wrap-price {
    justify-content: space-between;
    gap: 0;
  }

  .complect-hero__wrap-price ::before {
    bottom: clamp(-4rem, -1.4285714286rem + -1.7857142857vw, -2rem);
    width: 100%;
  }

  .complect-hero__wrap-buttons {
    display: flex;
    justify-content: center;
  }
}

@media (max-width: 81.25em) {
  .order__wrapper {
    row-gap: clamp(1.9rem, 1.5rem + 1.25vw, 3.3rem);
  }
}

@media (max-width: 78.125em) {
  .order__set {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    row-gap: 2rem;
  }
}

@media (max-width: 78.75em) {
  [data-discount-list] {
    max-width: 60rem;
  }
}

@media (max-width: 78.75em) and (max-width: 62em) {
  [data-discount-list] {
    max-width: 40rem;
  }
}

@media (max-width: 78.75em) and (max-width: 48.125em) {
  [data-discount-list] {
    max-width: 100%;
  }
}

@media (max-width: 62.5em) {
  .btn {
    display: flex;
    align-items: center;
  }
}

@media (max-width: 48.125em) {
  .order__warning--mob {
    display: flex;
  }

  .order .container {
    flex-direction: column-reverse;
  }
}

@media (max-width: 43.75em) {
  .order {
    justify-content: center;
  }

  .order__title {
    text-align: center;
  }

  .order__subtitle {
    display: flex;
    justify-content: center;
    font-size: clamp(1.8rem, 1.6285714286rem + 0.5357142857vw, 2.4rem);
  }

  .complect-hero-image__big {
    border-radius: 3rem;
    width: 100%;
  }

  .complect-hero-image__ico {
    transform: scale(0.7) translate(2.2rem, -2.2rem);
  }
}

@media (max-width: 37.5em) {
  .order-buy {
    text-align: center;
  }

  .complect-modal__list {
    flex-direction: column;
  }
}

@media (max-width: 36.875em) {
  .order__button {
    width: 27rem;
  }
}

@media (max-width: 32.5em) {
  .complect-list__block .swiper-button-next,
  .complect-list__block .swiper-button-prev {
    width: 4rem;
    height: 4rem;
  }

  .complect-list__block .swiper-button-next::after,
  .complect-list__block .swiper-button-next::before,
  .complect-list__block .swiper-button-prev::after,
  .complect-list__block .swiper-button-prev::before {
    font-size: 2rem;
  }
}
/*# sourceMappingURL=style.css.map */

.complect-hero__wrap-info .complect-modal__list {
	background-color: #fff; 
    border: 2px solid #f38601;
}


@media (max-width: 600px) {
  .complect-modal__list-flex-wrap {
    flex-direction: column;
  }
}