@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Kodchasan:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;1,200;1,300;1,400;1,500;1,600;1,700&family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Play:wght@400;700&display=swap");
:root {
  --font-family: "Inter", sans-serif;
  --second-family: "Kodchasan", sans-serif;
  --third-family: "Montserrat", sans-serif;
  --content-width: 1170px;
  --container-offset: 0px;
  --container-width: calc(var(--content-width) + (var(--container-offset) * 2));
  --color-black-solid: #000;
  --color-grey-62: #9e9e9e;
  --color-grey-4: #090909;
  --color-orange-86: #f2ddc4;
  --color-azure-5: #050f17;
  --color-black--49-80: rgba(0, 0, 0, 0.5);
  --color-white-solid: #fff;
  --color-grey-93: #eee;
  --color-white--800: rgba(255, 255, 255, 0.8);
  --color-grey-84: #d5d5d5;
  --color-orange-48: #a8894d;
}

/* stylelint-disable */
/* stylelint-disable */
/* stylelint-disable */
.custom-checkbox__field:checked + .custom-checkbox__content::after {
  opacity: 1;
}

.custom-checkbox__field:focus + .custom-checkbox__content::before {
  outline: 2px solid #f00;
  outline-offset: 2px;
}

.custom-checkbox__field:disabled + .custom-checkbox__content {
  opacity: 0.4;
  pointer-events: none;
}

/* stylelint-disable */
/* stylelint-disable */
/* stylelint-disable value-keyword-case */
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

body.no-scroll {
  overflow: hidden;
  height: 100%; /* Это гарантирует, что высота будет фиксированной */
}

.page {
  height: 100%;
  font-family: var(--font-family, sans-serif);
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

.page__body {
  margin: 0;
  min-width: 360px;
  min-height: 100%;
  font-size: 16px;
}

.remove-photo {
  margin-top: auto;
  margin-top: 20px;
}

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

a {
  text-decoration: none;
}

.site-container {
  overflow: hidden;
}

.is-hidden {
  display: none !important; /* stylelint-disable-line declaration-no-important */
}

.btn-reset {
  border: none;
  padding: 0;
  background-color: transparent;
  cursor: pointer;
}

.list-reset {
  list-style: none;
  margin: 0;
  padding: 0;
}

.input-reset {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  border-radius: 0;
  background-color: #fff;
}
.input-reset::-webkit-search-decoration, .input-reset::-webkit-search-cancel-button, .input-reset::-webkit-search-results-button, .input-reset::-webkit-search-results-decoration {
  display: none;
}

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

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

.centered {
  text-align: center;
}

.dis-scroll {
  position: fixed;
  left: 0;
  top: 0;
  overflow: hidden;
  width: 100%;
  height: 100vh;
  -ms-scroll-chaining: none;
  overscroll-behavior: none;
}

.page--ios .dis-scroll {
  position: relative;
}

.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.flex-column {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.burger {
  --burger-width: 30px;
  --burger-height: 30px;
  --burger-line-height: 2px;
  position: relative;
  border: none;
  padding: 0;
  width: var(--burger-width);
  height: var(--burger-height);
  color: #000;
  background-color: transparent;
  cursor: pointer;
  display: none;
  color: white;
  --burger-height: 20px;
}
.burger::before, .burger::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: var(--burger-line-height);
  background-color: currentColor;
  -webkit-transition: top 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  transition: top 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, top 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, top 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}
.burger::before {
  top: 0;
}
.burger::after {
  top: calc(100% - var(--burger-line-height));
}
.burger__line {
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  height: var(--burger-line-height);
  background-color: currentColor;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}
.burger--active::before {
  top: 50%;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transition: top 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  transition: top 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, top 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, top 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}
.burger--active::after {
  top: 50%;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-transition: top 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  transition: top 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, top 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, top 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}
.burger--active .burger__line {
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}
@media (max-width: 998px) {
  .burger {
    display: block;
    z-index: 101;
  }
}

.burger--active {
  color: white;
}

.header__logo {
  font-family: var(--second-family);
  font-weight: 400;
  font-size: 24px;
  line-height: 167%;
  color: var(--color-black-solid);
}
.header__image {
  max-width: 32px;
  width: 100%;
  cursor: pointer;
}
@media (max-width: 998px) {
  .header__image {
    display: none;
  }
}

.container-header {
  width: 100%;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 20px;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 16px 52px;
}
@media (max-width: 998px) {
  .container-header {
    padding: 20px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}

@media (max-width: 998px) {
  .nav {
    position: fixed;
    left: 0;
    top: 0;
    max-width: 100%;
    width: 100%;
    background: #FFEA61;
    height: 130vh;
    z-index: 100;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    overflow-y: auto;
    visibility: hidden;
    -webkit-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    transform: translateX(-100%);
    -webkit-transition: visibility 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
    transition: visibility 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
    transition: transform 0.3s ease-in-out, visibility 0.3s ease-in-out;
    transition: transform 0.3s ease-in-out, visibility 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  }
}
.nav__list {
  gap: 45px;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media (max-width: 998px) {
  .nav__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-right: 0;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding-top: 50px;
    gap: 31px;
  }
}
.nav__link {
  font-family: var(--font-family);
  font-weight: 300;
  font-size: 15px;
  line-height: 213%;
  letter-spacing: -0.03em;
  color: var(--color-black-solid);
}

.nav.menu--active {
  visibility: visible;
  -webkit-transform: none;
  -ms-transform: none;
  transform: none;
}

.cart-total {
  margin-top: 20px;
  font-weight: bold;
  text-align: right;
  color: #000;
}

.cart-item img {
  width: 50px;
  height: 50px;
  -o-object-fit: cover;
  object-fit: cover;
}

.remove-item {
  color: #000;
  cursor: pointer;
}

.close-cart {
  font-size: 24px;
  cursor: pointer;
  color: #000;
}

.cart-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid #000;
}

#cart-items p {
  color: #000;
}

.cart-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid #000;
}

.cart-overlay {
  position: fixed;
  top: 0;
  right: 0;
  width: 30%;
  height: 100%;
  background: #fff;
  -webkit-box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
  box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
  -webkit-transform: translateX(100%);
  -ms-transform: translateX(100%);
  transform: translateX(100%);
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  z-index: 100;
  padding: 20px;
  overflow-y: auto;
}
.cart-overlay h2 {
  color: #000;
}

.cart-overlay.active {
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0);
}

.cart-btn {
  max-width: 200px;
  width: 100%;
  border: 2px solid #000;
  font-weight: var(--font-family);
  font-weight: 500;
  font-size: 16px;
  color: #000;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 16px 0px;
}

.hero {
  background-image: url(".././img/hero.webp");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding: 180px 0px;
}
.hero__title {
  font-family: var(--second-family);
  font-weight: 400;
  font-size: 48px;
  line-height: 146%;
  letter-spacing: -0.06em;
  color: var(--color-white-solid);
  margin: 0;
}
.hero__line {
  max-width: 73px;
  width: 100%;
  height: 2px;
  background: var(--color-black-solid);
}
.hero__descr {
  font-family: var(--font-family);
  font-weight: 300;
  font-size: 16px;
  text-transform: capitalize;
  color: var(--color-white-solid);
  margin: 0;
}
.hero__btn {
  max-width: 176px;
  width: 100%;
  background: #cd7cff;
  border-radius: 100px;
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 20px;
  text-transform: capitalize;
  color: var(--color-white-solid);
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 10px 0px;
  margin-top: 31px;
}

.container-hero {
  max-width: 530px;
  width: 100%;
  margin-left: 201px;
  padding: 0px 20px;
  gap: 8px;
}
@media (max-width: 800px) {
  .container-hero {
    margin-left: 0px;
    margin: 0 auto;
  }
}

.descr {
  padding: 12px 50px;
  font-family: var(--third-family);
  font-weight: 400;
  font-size: 20px;
  line-height: 122%;
  text-transform: capitalize;
  color: var(--color-white-solid);
  background: #6d418d;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
}
.descr__name {
  font-family: var(--third-family);
  font-weight: 400;
  font-size: 20px;
  line-height: 122%;
  text-transform: capitalize;
  color: var(--color-white-solid);
}

.slider-section {
  padding: 60px 0px;
  overflow-x: hidden; /* Добавляем это */
}

.container-slider {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: relative;
  padding: 0 50px;
  overflow-x: hidden; /* И это */
}

.slider-wrapper {
  max-width: 1030px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  overflow: hidden;
  -ms-touch-action: pan-y;
  touch-action: pan-y; /* Блокируем горизонтальный скролл на тач-устройствах */
}

.slider {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition: -webkit-transform 0.5s ease;
  transition: -webkit-transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
  width: 100%;
}

.slide {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 25%;
  flex: 0 0 25%;
  max-width: 25%;
  padding: 0 10px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  position: relative;
  height: 407px;
}

.slider__btn {
  width: 100%;
  background: #cd7cff;
  border-radius: 100px;
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 20px;
  text-transform: capitalize;
  color: var(--color-white-solid);
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 10px 0px;
  margin-top: auto;
}

.slide-content {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 16px;
}

.slide__icon {
  max-width: 40px;
  width: 100%;
  height: 40px;
  cursor: pointer;
}

@media (max-width: 600px) {
  .slide__icon {
    display: none;
  }
  .container-slider {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 50px;
  }
  .slider__block {
    width: 100%;
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
}
.slider__block {
  display: none;
}

.slider__bg {
  position: absolute;
  max-width: 234px;
  width: 100%;
  padding: 20px 16px;
  background: #f6efef;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  gap: 16px;
  height: 166px;
  bottom: 0;
}
@media (max-width: 550px) {
  .slider__bg {
    max-width: 270px;
  }
}

.slider__name {
  font-family: var(--second-family);
  font-weight: 500;
  font-size: 20px;
  line-height: 165%;
  text-align: center;
  color: var(--color-black-solid);
  margin: 0;
}

.slider__descr {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 20px;
  text-transform: capitalize;
  color: var(--color-black-solid);
  margin: 0;
}

.slider-arrow {
  width: 40px;
  height: 40px;
  cursor: pointer;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

.slider-arrow:hover {
  opacity: 0.8;
}

/* Адаптивность */
@media (max-width: 1000px) {
  .slide {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 33.33%;
    flex: 0 0 33.33%;
    max-width: 33.33%;
  }
}
@media (max-width: 700px) {
  .slide {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
  .slider-container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .slider-arrow {
    margin: 20px 0;
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }
}
@media (max-width: 500px) {
  .slide {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
  .slider-container {
    padding: 0 20px;
  }
}
.second {
  padding: 45px 0px;
  background: #85ffbe;
}
.second__image {
  max-width: 572px;
  width: 100%;
}
.second__block {
  max-width: 490px;
  width: 100%;
  gap: 8px;
}
.second__title {
  font-family: var(--second-family);
  font-weight: 400;
  font-size: 48px;
  line-height: 146%;
  letter-spacing: -0.06em;
  color: var(--color-black-solid);
  margin: 0;
}
.second__descr {
  font-family: var(--font-family);
  font-weight: 300;
  font-size: 16px;
  text-transform: capitalize;
  color: var(--color-black-solid);
  margin: 0;
}

.container-second {
  max-width: 1167px;
  width: 100%;
  margin: 0 auto;
  padding: 0px 20px;
  gap: 25px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
@media (max-width: 900px) {
  .container-second {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

@media (max-width: 600px) {
  .about {
    padding: 20px 0px;
  }
}
.about__block {
  max-width: 244px;
  width: 100%;
  padding: 20px 16px;
  background: #85ffbe;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
}
@media (max-width: 600px) {
  .about__block {
    border-radius: 20px;
    max-width: 356px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}
.about__descr {
  font-family: var(--second-family);
  font-weight: 500;
  font-size: 20px;
  line-height: 165%;
  text-align: center;
  color: var(--color-black-solid);
  margin: 0;
}

.container-about {
  max-width: 940px;
  width: 100%;
  margin: 0 auto;
  padding: 0px 20px;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 25px;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: start;
}
@media (max-width: 600px) {
  .container-about {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}

.last {
  padding: 60px 0px;
}
.last__block {
  max-width: 490px;
  width: 100%;
  gap: 8px;
}
.last__title {
  font-family: var(--second-family);
  font-weight: 400;
  font-size: 48px;
  line-height: 146%;
  letter-spacing: -0.06em;
  color: var(--color-black-solid);
  margin: 0;
}
.last__descr {
  font-family: var(--font-family);
  font-weight: 300;
  font-size: 16px;
  text-transform: capitalize;
  color: var(--color-black-solid);
  margin: 0;
}
.last__form {
  max-width: 484px;
  width: 100%;
  gap: 16px;
}
.last__input {
  width: 100%;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--color-black-solid);
  border-radius: 100px;
  padding: 16px;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 137%;
  color: rgba(0, 0, 0, 0.8);
}
.last__input::-webkit-input-placeholder {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 137%;
  color: rgba(0, 0, 0, 0.8);
}
.last__input::-moz-placeholder {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 137%;
  color: rgba(0, 0, 0, 0.8);
}
.last__input:-ms-input-placeholder {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 137%;
  color: rgba(0, 0, 0, 0.8);
}
.last__input::-ms-input-placeholder {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 137%;
  color: rgba(0, 0, 0, 0.8);
}
.last__input::placeholder {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 137%;
  color: rgba(0, 0, 0, 0.8);
}
.last__btn {
  width: 100%;
  border: none;
  background: #cd7cff;
  border-radius: 100px;
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 20px;
  text-transform: capitalize;
  color: var(--color-white-solid);
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 10px 0px;
  cursor: pointer;
  margin-top: 14px;
}

.container-last {
  max-width: 1070px;
  width: 100%;
  margin: 0 auto;
  padding: 0px 20px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 25px;
}
@media (max-width: 700px) {
  .container-last {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.shop {
  padding: 60px 0px;
  gap: 59px;
}
.shop__block-text {
  max-width: 1070px;
  width: 100%;
  margin: 0 auto;
  padding: 0px 20px;
  gap: 8px;
}
.shop__title {
  font-family: var(--second-family);
  font-weight: 400;
  font-size: 48px;
  line-height: 146%;
  letter-spacing: -0.06em;
  color: var(--color-black-solid);
  margin: 0;
}
.shop__text1 {
  font-family: var(--font-family);
  font-weight: 300;
  font-size: 16px;
  text-transform: capitalize;
  color: var(--color-black-solid);
  margin: 0;
  margin-top: 10px;
}
.shop__block {
  gap: 18px;
}
@media (max-width: 850px) {
  .shop__block {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}
.shop__block1 {
  max-width: 331px;
  width: 100%;
  gap: 16px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background: #f6efef;
  border-radius: 20px;
  padding-bottom: 16px;
}
.shop__name {
  font-family: var(--second-family);
  font-weight: 500;
  font-size: 20px;
  line-height: 165%;
  text-align: center;
  color: var(--color-black-solid);
  padding: 0px 16px;
  margin: 0;
}
.shop__descr {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 20px;
  text-transform: capitalize;
  text-align: center;
  color: var(--color-black-solid);
  padding: 0px 16px;
  margin: 0;
}
.shop__text {
  font-family: var(--font-family);
  font-weight: 300;
  font-size: 16px;
  text-transform: capitalize;
  text-align: center;
  color: var(--color-black-solid);
  margin: 0;
  padding: 0px 16px;
}
.shop__btn {
  max-width: 299px;
  width: 100%;
  background: #cd7cff;
  border-radius: 100px;
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 20px;
  text-transform: capitalize;
  color: var(--color-white-solid);
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 10px 0px;
  margin-top: auto;
}

.container-shop {
  max-width: 1070px;
  width: 100%;
  margin: 0 auto;
  padding: 0px 20px;
  gap: 40px;
}

.kauf {
  padding: 55px 0px 62px 0px;
}
.kauf__block {
  gap: 8px;
}
.kauf__title {
  font-family: var(--second-family);
  font-weight: 400;
  font-size: 48px;
  line-height: 146%;
  letter-spacing: -0.06em;
  color: var(--color-black-solid);
  margin: 0;
}
.kauf__descr {
  max-width: 550px;
  width: 100%;
  font-family: var(--font-family);
  font-weight: 300;
  font-size: 16px;
  text-transform: capitalize;
  color: var(--color-black-solid);
  margin: 0;
}

.container-kauf {
  max-width: 968px;
  width: 100%;
  margin: 0 auto;
  padding: 0px 20px;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 25px;
}
@media (max-width: 650px) {
  .container-kauf {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: start;
  }
}

.uber {
  padding: 55px 0px 62px 0px;
}
.uber__block {
  gap: 8px;
}
.uber__title {
  font-family: var(--second-family);
  font-weight: 400;
  font-size: 48px;
  line-height: 146%;
  letter-spacing: -0.06em;
  color: var(--color-black-solid);
  margin: 0;
}
.uber__descr {
  max-width: 550px;
  width: 100%;
  font-family: var(--font-family);
  font-weight: 300;
  font-size: 16px;
  text-transform: capitalize;
  color: var(--color-black-solid);
  margin: 0;
}

.container-uber {
  max-width: 968px;
  width: 100%;
  margin: 0 auto;
  padding: 0px 20px;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 25px;
}
@media (max-width: 650px) {
  .container-uber {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: start;
  }
}

.thank {
  padding: 100px 0px;
}
.thank__image {
  max-width: 120px;
  width: 100%;
}
.thank__title {
  font-family: var(--second-family);
  font-weight: 700;
  font-size: 50px;
  text-align: center;
  letter-spacing: 0.03em;
  color: #4d4d4d;
}

.container-thank {
  max-width: 540px;
  width: 100%;
  margin: 0 auto;
  padding: 0px 20px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 40px;
}

.footer {
  background: #6d418d;
  padding: 40px 0px;
}
.footer__block {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 25px;
}
@media (max-width: 680px) {
  .footer__block {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.footer__block1 {
  max-width: 614px;
  width: 100%;
  gap: 5px;
}
.footer__name {
  font-family: var(--second-family);
  font-weight: 700;
  font-size: 20px;
  line-height: 116%;
  color: var(--color-white-solid);
  margin: 0;
}
.footer__text {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 144%;
  color: var(--color-white-solid);
  margin: 0;
  margin-top: 11px;
  margin-bottom: 11px;
}
.footer__link {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 144%;
  color: var(--color-white-solid);
  margin: 0;
}
.footer__block2 {
  max-width: 428px;
  width: 100%;
  gap: 10px;
}
.footer__title {
  font-family: var(--second-family);
  font-weight: 700;
  font-size: 32px;
  text-align: center;
  line-height: 72%;
  color: var(--color-white-solid);
  margin: 0;
  margin-bottom: 6px;
}
.footer__descr {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 20px;
  text-align: center;
  line-height: 185%;
  color: var(--color-white-solid);
  margin: 0;
}
.footer__copy {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 144%;
  text-align: end;
  color: var(--color-white-solid);
  margin: 0;
  margin-top: 6px;
}
.footer__all {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  text-align: center;
  line-height: 144%;
  color: var(--color-white-solid);
  margin: 0;
}

.container-footer {
  max-width: 1142px;
  width: 100%;
  margin: 0 auto;
  padding: 0px 20px;
  gap: 32px;
}

.privacy {
  max-width: 1163px;
  width: 100%;
  margin: 0 auto;
  padding: 100px 20px;
}
.privacy h2 {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 36px;
  color: #000;
}
.privacy h4 {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 24px;
  color: #000;
}
.privacy p {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 20px;
  color: #000;
}/*# sourceMappingURL=main.css.map */
