/*============= ALIGNES ===============*/
.alignwide {
  width: 100%;
}

.alignfull {
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  max-width: 1920px;
}

@media only screen and (min-width: 1920px) {
  .alignfull {
    width: 100vw !important;
    max-width: unset;
  }
}
/* =========== BASE CONFIG =========== */
html {
  box-sizing: border-box;
}

:root {
  --primary: #f1f0eb;
  --secondary: #b2aba5;
  --black: #cebfb4;
  --gray1: #5a534e;
  --gray2: #242424;
  --gray3: #333333;
  --white: #ffffff;
  --20: calc(20 / 19.2 * 1vw);
  --20to15: max(var(--20), 15px);
  --20s: max(var(--20), 20px);
  --transition: all 0.3s ease-in;
}

.sidebar {
  /* position: fixed;
  right: 20px;
  height: fit-content;
  top: 0;
  bottom: 0;
  margin: auto;
  display: flex;
  gap: 10px;
  flex-direction: column;
  align-items: center;
  justify-content: center; */
  display: none;
}
.sidebar .sidebar__item {
  width: 50px;
  height: 50px;
  padding: 10px;
  background: #ffffff;
  border: 1px solid var(--black);
  border-radius: 50%;
}
.sidebar .sidebar__item img,
.sidebar .sidebar__item svg {
  object-fit: contain;
  width: 100%;
  height: 100%;
}
.sidebar .sidebar__item.sidebar__btn path {
  fill: rgb(90, 83, 78);
}

* {
  margin: 0;
  padding: 0;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  box-sizing: inherit;
}

body {
  background-color: var(--gray3);
  overflow-x: hidden;
  margin: 0 auto;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
}

a {
  text-decoration: none;
  font-family: "Inter";
  font-weight: 300;
  font-size: max(0.8333333333vw, 14px);
  line-height: 150%;
  color: var(--color, var(--black));
  transition: all 0.3s ease-in;
}
@media (min-width: 992px) {
  a:hover {
    --color: var(--secondary);
  }
}

ul li {
  list-style-position: inside;
  font-family: "Inter";
  font-weight: 300;
  font-size: max(0.8333333333vw, 14px);
  line-height: 150%;
  color: var(--color, var(--black));
  margin-bottom: 10px;
}
ul li::marker {
  color: var(--secondary);
}

ol li {
  list-style-position: inside;
  font-family: "Inter";
  font-weight: 300;
  font-size: max(0.8333333333vw, 14px);
  line-height: 150%;
  color: var(--color, var(--black));
  margin-bottom: 10px;
}

input {
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
}

h1.page-title {
  margin-bottom: max(2.6041666667vw, 20px);
}

.breadcrumbs {
  padding: max(3.59375vw, 20px) 0 max(1.5625vw, 15px);
  font-family: "Lithium Typeface";
  font-weight: 400;
  font-size: max(1.0416666667vw, 16px);
  line-height: 86%;
  color: var(--color, var(--black));
}
.breadcrumbs span {
  font-family: "Lithium Typeface";
  font-weight: 400;
  font-size: max(1.0416666667vw, 16px);
  line-height: 86%;
  color: var(--color, var(--black));
  transition: var(--transition);
}

.container {
  max-width: max(91.6666666667vw, 1760px);
  width: 100%;
  margin: 0 auto;
  padding: 0 var(--20s);
}

.page-container {
  max-width: max(67.34375vw, 1293px);
  width: 100%;
  margin: 0 auto;
  padding: 0 var(--20s);
}

svg {
  transition: var(--transition);
  width: var(--svgWidth, 16px);
  height: var(--svgHeight, 16px);
  color: var(--svgColor, var(--black));
}

button {
  border: none;
  background: transparent;
  cursor: pointer;
  transition: var(--transition);
}

.btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  outline: none;
  cursor: pointer;
  transition: var(--transition);
  padding: max(1.0416666667vw, 20px) max(1.8229166667vw, 20px);
  border: 1px solid var(--black);
  background: var(--background, transparent);
  font-family: "Inter";
  font-weight: 400;
  font-size: max(0.7291666667vw, 14px);
  line-height: 150%;
  color: var(--color, var(--black));
  letter-spacing: 0.7px;
  text-transform: uppercase;
  color: var(--color, var(--black));
  overflow: hidden;
  flex-shrink: 0;
}
.btn:before {
  content: "";
  position: absolute;
  width: 150%;
  aspect-ratio: 1/1;
  background: var(--black);
  transition: transform 0.5s ease-out, opacity 0.5s ease-out;
  border-radius: 50%;
  transform: scale(0);
  transform-origin: bottom;
  z-index: 0;
  opacity: 0;
}
.btn span {
  z-index: 1;
}
.btn svg {
  transition: var(--transition);
}
.btn svg path {
  transition: var(--transition);
}
@media (min-width: 992px) {
  .btn:hover {
    --color: var(--white);
  }
  .btn:hover::before {
    transform: scale(1);
    opacity: 1;
    transition: transform 0.5s ease-out, opacity 0s ease-out;
  }
}
.btn--secondary {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  outline: none;
  cursor: pointer;
  transition: var(--transition);
  padding: max(1.0416666667vw, 20px) max(1.8229166667vw, 20px);
  border: 1px solid var(--white);
  background: var(--background, transparent);
  font-family: "Inter";
  font-weight: 400;
  font-size: max(0.7291666667vw, 14px);
  line-height: 150%;
  color: var(--color, var(--black));
  letter-spacing: 0.7px;
  text-transform: uppercase;
  color: var(--color, var(--white));
}
.btn--secondary:before {
  content: "";
  position: absolute;
  width: 150%;
  aspect-ratio: 1/1;
  background: var(--white);
  transition: transform 0.5s ease-out, opacity 0.5s ease-out;
  border-radius: 50%;
  transform: scale(0);
  transform-origin: bottom;
  z-index: 0;
  opacity: 0;
}
.btn--secondary span {
  z-index: 1;
}
@media (min-width: 992px) {
  .btn--secondary:hover {
    --color: var(--black);
  }
}
.header__wrap{
	display: flex;
    justify-content: flex-start !important;
    align-items: center;
    padding: max(1.0416666667vw, 10px) 0;
    gap: 15px;
}
.header__soc-holder{
	display:none !important;
}
.header__contact-value{
	display:none !important;
}
.btn--circle {
  width: max(7.9166666667vw, 20px);
  height: max(7.9166666667vw, 20px);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "Inter";
  font-weight: 400;
  font-size: max(0.7291666667vw, 14px);
  line-height: 150%;
  color: var(--color, var(--black));
  letter-spacing: 0.7px;
  text-transform: uppercase;
  position: relative;
  transform: scale(1);
  transition: var(--transition);
}
.btn--circle:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: var(--white);
  transform: scale(1);
  z-index: -1;
  transition: all 0.3s cubic-bezier(0.4, 0, 1, 1);
}
.btn--circle:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: var(--primary);
  transform: scale(0);
  z-index: -1;
  transition: transform 0.3s cubic-bezier(0.4, 0, 1, 1);
}
@media (min-width: 992px) {
  .btn--circle:hover:after {
    transform: scale(1.43);
    background-color: var(--primary);
  }
  .btn--circle:hover:before {
    transform: scale(0.856);
    background-color: var(--primary);
  }
}

h1,
.h1 {
  font-family: "Lithium Typeface";
  font-weight: 400;
  font-size: max(7.2916666667vw, 32px);
  line-height: 86%;
  color: var(--color, var(--black));
}

h2,
.h2 {
  font-family: "Lithium Typeface";
  font-weight: 400;
  font-size: max(4.1666666667vw, 27px);
  line-height: 86%;
  color: var(--color, var(--black));
}

h3,
.h3 {
  font-family: "Lithium Typeface";
  font-weight: 400;
  font-size: max(2.0833333333vw, 25px);
  line-height: 150%;
  color: var(--color, var(--black));
}

h4,
.h4 {
  font-family: "Inter";
  font-weight: 500;
  font-size: max(1.6666666667vw, 18px);
  line-height: 150%;
  color: var(--color, var(--black));
}

h5,
.h5 {
  font-family: "Inter";
  font-weight: 400;
  font-size: max(1.4583333333vw, 16px);
  line-height: 150%;
  color: var(--color, var(--black));
}

h6,
.h6 {
  font-family: "Inter";
  font-weight: 500;
  font-size: max(0.8333333333vw, 16px);
  line-height: 150%;
  color: var(--color, var(--black));
}

.h6-L {
  font-family: "Lithium Typeface";
  font-weight: 400;
  font-size: max(1.0416666667vw, 16px);
  line-height: 86%;
  color: var(--color, var(--black));
}

.h6-14 {
  font-family: "Inter";
  font-weight: 500;
  font-size: max(0.7291666667vw, 14px);
  line-height: 150%;
  color: var(--color, var(--black));
  letter-spacing: 0.7px;
  text-transform: uppercase;
}

.p-24 {
  font-family: "Inter";
  font-weight: 400;
  font-size: max(1.25vw, 16px);
  line-height: 150%;
  color: var(--color, var(--black));
}

.p-20 {
  font-family: "Inter";
  font-weight: 400;
  font-size: max(1.0416666667vw, 16px);
  line-height: 150%;
  color: var(--color, var(--black));
}

p,
.p {
  font-family: "Inter";
  font-weight: 300;
  font-size: max(0.8333333333vw, 14px);
  line-height: 150%;
  color: var(--color, var(--black));
}

.p-14 {
  font-family: "Inter";
  font-weight: 400;
  font-size: max(0.7291666667vw, 14px);
  line-height: 150%;
  color: var(--color, var(--black));
  letter-spacing: 0.7px;
  text-transform: uppercase;
}

.compensate-for-scrollbar {
  margin-right: auto !important;
}

body.compensate-for-scrollbar {
  overflow: auto !important;
  overflow-x: hidden !important;
}

.block-number {
  margin-bottom: max(1.71875vw, 15px);
  font-family: "Lithium Typeface";
  font-size: max(1.0416666667vw, 16px);
  font-weight: 400;
  line-height: 86%;
}

/*============ SLIDER =================*/
.slider-btn {
  width: max(2.0833333333vw, 40px);
  height: max(2.0833333333vw, 40px);
  border-radius: 50%;
  background-color: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  background: transparent;
  transition: var(--transition);
  border: 2px solid var(--primary);
}
.slider-btn svg {
  width: max(1.0416666667vw, 20px);
  height: max(1.0416666667vw, 20px);
  --svgColor: var(--black);
}
.slider-btn--prev svg {
  transform: rotate(180deg);
}
@media (min-width: 992px) {
  .slider-btn:hover {
    background-color: var(--white);
  }
  .slider-btn:hover svg {
    --svgColor: var(--black);
  }
}
.slider-btn.swiper-button-disabled {
  opacity: 0.6;
  pointer-events: none !important;
}
.slider-btn.swiper-button-disabled svg {
  color: var(--stroke);
}

.mobile-menu__contact-value{
  font-size: 12px;
  margin-left: -10px;
}

.slider-pagination {
  position: static !important;
  text-align: start !important;
  max-width: 65%;
  --swiper-pagination-bullet-horizontal-gap: max(0.2604166667vw, 5px);
  --swiper-pagination-color: var(--primary);
  --swiper-pagination-bullet-inactive-color: var(--secondary);
  --swiper-pagination-bullet-inactive-opacity: 1;
  --swiper-pagination-bullet-width: max(0.4166666667vw, 8px);
  --swiper-pagination-bullet-height: max(0.4166666667vw, 8px);
}

.slider-nav {
  display: flex;
}
.slider-nav > *:not(:last-child) {
  margin-right: max(0.5208333333vw, 5px);
}

.swiper-navigation {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: max(2.0833333333vw, 20px);
}

.block-head {
  margin-bottom: max(3.6458333333vw, 30px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: max(0.5208333333vw, 10px);
}
.block-head .block-title {
  margin-bottom: 0;
  max-width: 85%;
}
.block-head__navigation {
  display: flex;
}
.block-head__navigation > *:not(:last-child) {
  margin-right: max(1.0416666667vw, 10px);
}

.block-subtitle {
  display: flex;
  align-items: center;
  font-family: "Inter";
  font-weight: 500;
  font-size: max(0.8333333333vw, 16px);
  line-height: 150%;
  color: var(--color, var(--black));
  letter-spacing: 0.8px;
  text-transform: uppercase;
  margin-bottom: max(1.5104166667vw, 15px);
}
.block-subtitle:before {
  content: "";
  display: block;
  width: max(0.3125vw, 6px);
  height: max(0.3125vw, 6px);
  border-radius: 50%;
  background-color: var(--black);
  margin-right: max(1.25vw, 5px);
}

.fancybox__content .logo {
  width: 100%;
  height: auto;
  margin-bottom: 20px;
  object-fit: contain;
  background: #c0bfbf;
}
.logo__text {
  font-size: 35px;
  white-space: nowrap;
  color: var(--black);
  font-weight: 800;
  /* text-transform: uppercase; */
}

/* @media (max-width:590px) {
  .logo__text {
    font-size: 55px;
  }
} */
@media (max-width:380px) {
  .logo__text {
    font-size: 27px;
  }
}

.fancybox__slide * {
  color: #242424;
}

/*============ TEMPLATES ===============*/
.product {
  position: relative;
  height: max-content;
  overflow: hidden;
  height: 100%;
}
.product:after {
  content: "";
  display: block;
  padding-bottom: 124.5%;
  background: linear-gradient(180deg, rgba(217, 217, 217, 0) 0%, #bababa 100%);
  mix-blend-mode: multiply;
  z-index: 1;
}
.product__content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: max(0.3645833333vw, 7px);
  z-index: 2;
  padding: max(1.3020833333vw, 20px) max(1.5625vw, 15px);
  --color: var(--white);
}
.product__button {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, 0);
  opacity: 0;
  z-index: 3;
}
.product__title {
  letter-spacing: 0.8px;
  text-transform: uppercase;
}
.product__volume {
  letter-spacing: 0.7px;
  text-transform: uppercase;
}
.product__price {
  letter-spacing: 0.8px;
  text-transform: uppercase;
}
.product__top {
  display: flex;
  justify-content: space-between;
  gap: max(0.5208333333vw, 10px);
}
.product__image-hover, .product__image-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  transition: 0.3s all linear;
  transform: scale(1);
  object-fit: cover;
}
.product__image-bg {
  filter: blur(5px);
}
@media (min-width: 992px) {
  .product:hover .product__image-hover {
    transform: scale(0.888);
  }
  .product:hover .product__image-bg {
    transform: scale(1.05);
  }
  .product:hover .product__button {
    transform: translate(-50%, -50%);
    top: 50%;
    opacity: 1;
  }
}

@media (max-width: 991px) {
  .product__button {
    width: 90px;
    height: 90px;
    top: 5px;
    left: 5px;
    transform: none;
    opacity: 1;
  }
}
/* ============== MODAL ============= */
/* ============= MEDIA QUERIES =========== */

/*# sourceMappingURL=main.css.map */
