@import url(https://fonts.googleapis.com/css?family=Unbounded:200,300,regular,500,600,700,800,900);
@import url(https://fonts.googleapis.com/css?family=Wittgenstein:regular,500,600,700,800,900,italic,500italic,600italic,700italic,800italic,900italic);
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  list-style: none;
  text-decoration: none;
}
.jS {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.jC {
  display: flex;
  justify-content: space-between;

  align-items: center;
}

.jE {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.j {
  display: flex;
  justify-content: space-between;
}
.flexCol {
  display: flex;
  flex-direction: column;
}
.gap30 {
  gap: 30px;
}
.gap25 {
  gap: 30px;
}
.gap20 {
  gap: 20px;
}
.gap15 {
  gap: 15px;
}
.gap10 {
  gap: 10px;
}
.gap5 {
  gap: 10px;
}
.g2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.g3 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
}
.g4 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
}
.g5 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
}

@media (max-width: 1200px) {
  .g5 {
    grid-template-columns: 1fr 1fr 1fr;
  }
  .g4 {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 1000px) {
  .g5 {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 768px) {
  .jS,
  .jC,
  .jE,
  .j {
    align-items: center;
    flex-direction: column;
  }
  .g5,
  .g2,
  .g3,
  .g4 {
    grid-template-columns: 1fr;
  }
}

.break {
  word-break: break-all;
}
a,
button {
  text-align: center;
  width: fit-content;
  cursor: pointer;
  background: transparent;
  transition: all 0.2s linear;
  border: none;
}
button:focus,
a:focus {
  outline: 4px solid #fff;
  filter: brightness(90%);
}
@media (hover: hover) {
  button:hover,
  a:hover {
    filter: brightness(80%);
  }
}

textarea,
input {
  display: block;
  width: 100%;
  border: none;
  outline: none;
  resize: none;
}

main {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
:root {
  scroll-behavior: smooth;
}

.mob {
  display: none;
}
@media (max-width: 768px) {
  .mob {
    display: block !important;
  }
  .desktop {
    display: none !important;
  }
}
body {
  background: #f6f3ed;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100vh;
  font-family: "Unbounded", sans-serif;
}

.container {
  max-width: 1070px;
  width: 100%;
  margin-inline: auto;
  padding-inline: 15px;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* terms */
.terms {
  flex-grow: 1;
  padding-block: 80px;
}

.terms__title {
  color: #060706;
  text-align: center;
  font-family: Unbounded;
  font-size: 36px;
  font-style: normal;
  font-weight: 600;
  line-height: 110%; /* 39.6px */
  letter-spacing: -0.72px;
  margin-bottom: 48px;
}
.terms__content ul,
.terms__content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.terms__content * {
  color: #060706;
  font-family: Unbounded;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%; /* 22.4px */
}
.terms__content a {
  color: #060706;
  font-family: Unbounded;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%; /* 22.4px */
}
@media (max-width: 768px) {
  .terms__title {
    font-size: 32px;
  }
}

/* cookie */
.cookie-notification {
  position: fixed;
  bottom: 0;
  box-sizing: border-box;
  z-index: 5;
  width: 100%;
  max-width: 481px;
  width: 100%;
  right: 0;
  padding: 32px 17px;
  background: #f6f3ed;
  display: none;
}

.cookie__title {
  color: #060706;
  font-family: Wittgenstein;
  font-size: 40px;
  font-style: normal;
  font-weight: 400;
  line-height: 110%; /* 44px */
  letter-spacing: 1.6px;
  text-transform: capitalize;
  margin-bottom: 16px;
}
.cookie__text a {
  text-decoration: underline;
  color: #060706;
  font-family: Unbounded;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%; /* 22.4px */
}
.cookie__text {
  margin-bottom: 32px;
  color: #060706;
  font-family: Unbounded;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%; /* 22.4px */
}

.cookie__btns {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cookieBtn {
  display: block;
  width: 100%;
  border-radius: 40px;
  background: #060706;
  padding: 12px;
  color: #fff;
  text-align: center;
  font-family: Unbounded;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%; /* 16.8px */
  text-transform: uppercase;
}

@media (max-width: 900px) {
  .cookie-notification {
    max-width: 320px;
    padding: 20px 5px;
  }

  .cookie__title {
    font-size: 32px;
  }
}
@media (max-width: 370px) {
  .cookie-notification {
    max-width: initial;
    padding: 20px 0;
  }
}

.header {
  background: #f6f3ed;
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
  padding-block: 12px;
}

.header__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
  align-items: center;
}
.header__logo {
  display: block;
  color: #060706;
  text-align: center;
  font-family: Unbounded;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 90%; /* 18px */
  letter-spacing: 1.6px;
  text-transform: capitalize;
}

.header__nav {
  display: flex;
  align-items: center;
  gap: 20px 32px;
  flex-wrap: wrap;
}

.header__nav a {
  display: block;
  color: #060706;
  text-align: center;
  leading-trim: both;
  text-edge: cap;
  font-family: Unbounded;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%; /* 19.2px */
  text-transform: capitalize;
}

@media (max-width: 768px) {
}
.footer {
  padding-block: 32px;
  background: rgba(6, 7, 6, 0.7);
}

.footer__inner {
  flex-wrap: wrap;
  margin-bottom: 74px;
}
.footer__bottom {
  flex-wrap: wrap;
  gap: 12px;
}
.footer__logo {
  display: block;
  color: #fff;
  text-align: center;
  font-family: Unbounded;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 90%; /* 18px */
  letter-spacing: 1.6px;
  text-transform: capitalize;
}
.footer__links {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.footer__links a {
  display: block;
  color: #fff;
  text-align: center;
  leading-trim: both;
  text-edge: cap;
  font-family: Unbounded;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%; /* 19.2px */
  text-transform: capitalize;
}
.footer__links a:last-child {
  border: none;
}
.footer__socials {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
}

.footer__social {
  display: block;
  width: 32px;
  height: 32px;
}

.footer__address {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.footer__address *,
.footer__address a {
  display: block;
  color: #fff;
  text-align: center;
  leading-trim: both;
  text-edge: cap;
  font-family: Unbounded;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%; /* 19.2px */
}

.footer__copyright {
  color: rgba(255, 255, 255, 0.6);
  text-align: center;
  font-family: Unbounded;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%; /* 22.4px */
}
@media (max-width: 768px) {
}
@media (max-width: 420px) {
}
/* content */

section {
  padding-block: 64px;
}

.home__inner {
  max-width: 800px;
  width: 100%;
  margin-inline: auto;
}
.home__title {
  color: #060706;
  text-align: center;
  font-family: Wittgenstein;
  font-size: 52px;
  font-style: normal;
  font-weight: 400;
  line-height: 110%; /* 57.2px */
  text-transform: capitalize;
  margin-bottom: 48px;
}
.home__imgs {
  display: flex;
  align-items: flex-end;
  gap: 40px;
  justify-content: center;
}
.home__img {
  max-width: 210px;
  width: 100%;
}
.home__img:nth-child(2) {
  max-width: 376px;
}
.b1__blocks {
  gap: 32px;
}
.b1__item {
  display: flex;
  flex-direction: column;
}
.b1__img {
  max-width: 112px;
  width: 100%;
  margin-left: auto;
  margin-bottom: 32px;
}
.b1__label {
  color: #060706;
  font-family: Wittgenstein;
  font-size: 32px;
  font-style: normal;
  font-weight: 400;
  line-height: 110%; /* 35.2px */
  letter-spacing: 1.6px;
  text-transform: capitalize;
  margin-bottom: 12px;
}
.b1__text {
  flex-grow: 1;
  color: rgba(18, 18, 18, 0.7);
  font-family: Unbounded;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%; /* 22.4px */
  margin-bottom: 32px;
}

.b1__btn {
  color: #fff;
  text-align: center;
  font-family: Unbounded;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%; /* 16.8px */
  text-transform: uppercase;
  width: fit-content;
  padding: 12px 36px;
  display: block;
  border-radius: 40px;
  background: #060706;
}

.b2__inner {
  max-width: 768px;
  width: 100%;
  margin: 0 auto;
}
.b2__img {
  max-width: 210px;
  width: 100%;
  margin: 0 auto 32px;
}
.b2__title {
  color: rgba(18, 18, 18, 0.7);
  text-align: center;
  font-family: Wittgenstein;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%; /* 38.4px */
}
.b3__title {
  color: #060706;
  text-align: center;
  font-family: Wittgenstein;
  font-size: 32px;
  font-style: normal;
  font-weight: 400;
  line-height: 110%; /* 35.2px */
  letter-spacing: 1.6px;
  text-transform: capitalize;
  margin-bottom: 12px;
}
.b3__subtitle {
  max-width: 768px;
  width: 100%;
  margin: 0 auto 32px;
  color: rgba(18, 18, 18, 0.7);
  text-align: center;
  font-family: Unbounded;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%; /* 22.4px */
}

.b3__top {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
}
.b3__img {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
}
.b3__label {
  color: #060706;
  font-family: Wittgenstein;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%; /* 26px */
}
.b3__text {
  color: rgba(18, 18, 18, 0.7);
  font-family: Unbounded;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%; /* 22.4px */
}

.b4__inner {
  display: flex;
  justify-content: space-between;
  gap: 30px;
}
.b4__img {
  max-width: 477px;
  width: 50%;
}
.b4__img img {
  object-fit: cover;
}
.b4__content {
  max-width: 483px;
  width: 50%;
}
.b4__title {
  color: #060706;
  text-align: center;
  font-family: Wittgenstein;
  font-size: 32px;
  font-style: normal;
  font-weight: 400;
  line-height: 110%; /* 35.2px */
  letter-spacing: 1.6px;
  text-transform: capitalize;
  margin-bottom: 24px;
}
.b4__slider {
  overflow: hidden;
}
.b4___item {
  display: block;
}
.b4__img2 {
  max-width: 210px;
  width: 100%;
  height: 270px;
  margin: 0 auto 24px;
}
.b4__img2 img {
  object-fit: cover;
}
.b4__label {
  color: #060706;
  text-align: center;
  font-family: Unbounded;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 130%; /* 26px */
  margin-bottom: 16px;
}
.b4__text {
  color: rgba(18, 18, 18, 0.7);
  text-align: center;
  font-family: Unbounded;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%; /* 22.4px */
}
.swiper-pagination {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
}

.swiper-pagination-bullet {
  width: 12px;
  margin: 0 !important;
  height: 12px;
  background: rgba(6, 7, 6, 0.28);
  border-radius: 50%;
  transition: all 0.3s ease;
  cursor: pointer;
}

.swiper-pagination-bullet-active {
  width: 14px;
  height: 14px;
  background: #060706;
}

.swiper-pagination-bullet:hover {
  background: #666;
  transform: scale(1.2);
}
.b5__title {
  color: #060706;
  text-align: center;
  font-family: Wittgenstein;
  font-size: 32px;
  font-style: normal;
  font-weight: 400;
  line-height: 110%; /* 35.2px */
  letter-spacing: 1.6px;
  text-transform: capitalize;
  margin-bottom: 32px;
}

.b5__img {
  max-width: 48px;
  width: 100%;
  margin-bottom: 32px;
}
.b5__label {
  color: #060706;
  font-family: Unbounded;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 110%; /* 22px */
  letter-spacing: 1px;
  text-transform: capitalize;
  margin-bottom: 12px;
}
.b5__text {
  color: rgba(18, 18, 18, 0.7);
  font-family: Unbounded;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%; /* 22.4px */
}
.b6__title {
  color: #060706;
  text-align: center;
  font-family: Wittgenstein;
  font-size: 40px;
  font-style: normal;
  font-weight: 400;
  line-height: 110%; /* 44px */
  text-transform: capitalize;
  margin-bottom: 32px;
}

.b6__blocks {
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-width: 838px;
  width: 100%;
  margin-inline: auto;
}
.b6__item {
  display: block;
  width: 100%;
  padding: 12px;
  background: #fffcf6;
}
.b6__img {
  height: 349px;
  margin-bottom: 24px;
}
.b6__img img {
  object-fit: cover;
}
.b6__label {
  color: #121212;
  text-align: center;
  font-family: Wittgenstein;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%; /* 19.2px */
  margin-bottom: 3px;
}
.b6__price {
  color: rgba(18, 18, 18, 0.7);
  text-align: center;
  font-family: Unbounded;
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: 160%; /* 19.2px */
}

.b7__img {
  height: 421px;
  margin-bottom: 32px;
}
.b7__img img {
  object-fit: cover;
}
.b7__center {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  margin-bottom: 64px;
}

.b7__title {
  color: #060706;
  font-family: Wittgenstein;
  font-size: 32px;
  font-style: normal;
  font-weight: 600;
  line-height: 110%; /* 35.2px */
  text-transform: capitalize;
  margin-bottom: 5px;
}
.b7__price {
  color: rgba(18, 18, 18, 0.7);
  font-family: Unbounded;
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 160%; /* 38.4px */
}

.b7__colors {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}
.b7__color {
  width: 24px;
  height: 24px;
  border-radius: 50%;
}
.b7__color:first-child {
  background-color: #bfa795;
}
.b7__color:nth-child(2) {
  background-color: #060706;
}
.b7__color:last-child {
  background-color: #8e8e8e;
}
.b7__label1 {
  color: rgba(6, 7, 6, 0.5);
  text-align: center;
  font-family: Unbounded;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%; /* 19.2px */
}
.b7__col3 {
  max-width: 330px;
  width: 100%;
}
.b7__text {
  color: rgba(18, 18, 18, 0.7);
  text-align: right;
  font-family: Unbounded;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%; /* 19.2px */
  margin-bottom: 24px;
}
.b7__wrapper {
  display: flex;
  align-items: flex-end;
  gap: 12px;
  justify-content: flex-end;
}
.b7__col4 {
  max-width: 140px;
  width: 100%;
}
.b7__label2 {
  color: #060706;
  font-family: Unbounded;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%; /* 22.4px */
  margin-bottom: 8px;
}
.b7__count {
  display: flex;
  padding: 8px 15px;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  border-radius: 10px;
  border: 1px solid rgba(0, 0, 0, 0.1);
}
.b7__minus {
  display: block;
  width: 24px;
  height: 24px;
}
.b7__num {
  color: #060706;
  font-family: Unbounded;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%; /* 25.6px */
}
.b7__plus {
  display: block;
  width: 24px;
  height: 24px;
}
.b7__btn {
  display: block;
  width: fit-content;
  color: #fff;
  text-align: center;
  font-family: Unbounded;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%; /* 16.8px */
  text-transform: uppercase;
  padding: 12px 36px;
  border-radius: 40px;
  background: #060706;
}
.b7__bottom {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.b7__text2 {
  color: rgba(18, 18, 18, 0.7);
  font-family: Unbounded;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%; /* 22.4px */
}
@media (max-width: 860px) {
  .b7__center {
    flex-direction: column;
    align-items: flex-start;
  }
  .b7__text,
  .b7__label1 {
    text-align: left;
  }
  .home {
    overflow: hidden;
  }
  .home__imgs {
    gap: 12px;
  }
  .home__img:first-child {
    width: 150px;
  }
  .home__img:nth-child(2) {
    width: 230px;
  }
  .home__img:last-child {
    width: 150px;
  }
}
@media (max-width: 768px) {
  .footer__inner {
    align-items: center;
    text-align: center;
  }
  .footer__links,
  .footer__address {
    align-items: center;
    text-align: center;
  }
  .footer__bottom {
    flex-direction: column-reverse;
  }
  .home__title {
    font-size: 34px;
  }

  .b4__inner {
    flex-direction: column;
    gap: 80px;
  }
  .b4__img {
    height: 564px;
    max-width: initial;
    width: 100%;
  }
  .b4__content {
    max-width: initial;
    width: 100%;
  }
}
@media (max-width: 600px) {
  .home__img:first-child {
    width: 100px;
  }
  .home__img:nth-child(2) {
    width: 180px;
  }
  .home__img:last-child {
    width: 100px;
  }
}

@media (max-width: 360px) {
  .b7__wrapper {
    max-width: initial;
    align-items: flex-start;
    flex-direction: column;
  }
  .b7__btn {
    max-width: 450px;
  }
}
