@charset "UTF-8";
@font-face {
  font-family: "NunitoSans";
  src: url("/fonts/NunitoSans.woff2") format("woff2");
  font-weight: 300;
}
* {
  margin: 0;
  padding: 0;
  border: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  font-family: "NunitoSans", sans-serif;
  font-size: 16px;
  line-height: 20px;
  color: #000;
  background-color: #fff;
}

:focus,
:active {
  outline: none;
}

a {
  text-decoration: none;
  color: #000;
}

a:focus,
a:active {
  text-decoration: none;
}

input,
button,
textarea {
  font-family: inherit;
  cursor: pointer;
  background-color: transparent;
  color: #000;
}

textarea {
  resize: none;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
}
input[type="number"] {
  -moz-appearance: textfield;
}

input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
  opacity: 1;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

input:focus::-webkit-input-placeholder,
textarea:focus::-webkit-input-placeholder {
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

*::-webkit-scrollbar {
  width: 4px;
  height: 4px;
}

*::-webkit-scrollbar-track {
  background: #f7f7f7;
  border-radius: 4px;
}

*::-webkit-scrollbar-thumb {
  background-color: #1f1f21;
  border-radius: 4px;
}

svg,
img {
  display: block;
}

div,
a,
input,
textarea,
button,
path,
label,
section,
img,
p,
::after,
::before,
h1,
h2,
h3,
h4,
h5,
h6 {
  -webkit-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

ul,
ol {
  margin-left: 20px;
}

.link_decor {
  position: relative;
}
.link_decor::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #000;
}
.link_decor:hover::after {
  width: 100%;
}

.wrapper {
  max-width: 1440px;
  width: 100%;
  min-height: 100vh;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.block {
  max-width: 1356px;
  width: 100%;
  padding: 0 18px;
  margin: 0 auto;
}

@media (max-width: 850px) {
  .block {
    padding: 0 14px;
  }
}
/*****  загальні для Слайдер Slick *****/
.slick-list {
  overflow: hidden;
}

.slick-track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition: none;
  -o-transition: none;
  transition: none;
}

.btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 50px;
  padding: 0 16px;
  border-radius: 25px;
  border: 1px solid #000;
  text-transform: uppercase;
  font-size: 16px;
  font-weight: 400;
  width: -moz-max-content;
  width: -webkit-max-content;
  width: max-content;
}
.btn::after {
  content: "";
  width: 24px;
  height: 24px;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.btn.black {
  color: #fff;
  background-color: #000;
}
.btn.black::after {
  background: url("/img/arrow_white.svg") no-repeat 50%;
}
.btn.black:hover {
  color: #000;
  background-color: #fff;
}
.btn.black:hover::after {
  background: url("/img/arrow_black.svg") no-repeat 50%;
}
.btn.white {
  color: #000;
  background-color: #fff;
}
.btn.white::after {
  background: url("/img/arrow_black.svg") no-repeat 50%;
}
.btn.white:hover {
  color: #fff;
  background-color: #000;
}
.btn.white:hover::after {
  background: url("/img/arrow_white.svg") no-repeat 50%;
}

.btn_brown,
.btn_black {
  text-transform: uppercase;
  font-size: 14px;
  line-height: 18px;
  padding: 11px 0;
  text-align: center;
}
.btn_brown:hover,
.btn_black:hover {
  -webkit-transform: scale(0.95);
  -ms-transform: scale(0.95);
  transform: scale(0.95);
}

.btn_brown {
  background-color: #bfb19f;
  color: #000;
}

.btn_black {
  background-color: #000;
  color: #fff;
}

.titleM {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: end;
  gap: 40px;
  padding-bottom: 60px;
}
.titleM h2 {
  width: calc(50% - 20px);
  font-size: clamp(44px, 5vw + 1rem, 72px);
  line-height: clamp(44px, 6vw + 1rem, 72px);
  font-weight: 300;
}
.titleM p {
  width: calc(50% - 20px);
  font-size: 22px;
  line-height: 32px;
  font-weight: 300;
}

@media (max-width: 768px) {
  .titleM {
    padding-bottom: 30px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 30px;
  }
  .titleM h2,
  .titleM p {
    margin-left: auto;
    width: 100%;
  }
  .titleM p {
    font-size: 16px;
    line-height: 24px;
    font-weight: 300;
  }
}
.indicator {
  position: relative;
  width: 14px;
  height: 14px;
}
.indicator::before {
  content: "";
  width: 14px;
  height: 2px;
  background-color: #000;
  position: absolute;
  top: 6px;
  left: 0;
}
.indicator::after {
  content: "";
  width: 2px;
  height: 14px;
  background-color: #000;
  position: absolute;
  top: 0;
  left: 6px;
}

.decor_top::before,
.decor_top::after {
  content: "";
  width: 8px;
  height: 8px;
  background-color: #000;
  -webkit-clip-path: polygon(0% 0%, 12.5% 0%, 12.5% 87.5%, 100% 87.5%, 100% 100%, 0% 100%);
  clip-path: polygon(0% 0%, 12.5% 0%, 12.5% 87.5%, 100% 87.5%, 100% 100%, 0% 100%);
  position: absolute;
  top: -1px;
  left: -1px;
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}
.decor_top::after {
  left: initial;
  right: -1px;
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

.decor_bottom::before,
.decor_bottom::after {
  content: "";
  width: 8px;
  height: 8px;
  background-color: #000;
  -webkit-clip-path: polygon(0% 0%, 12.5% 0%, 12.5% 87.5%, 100% 87.5%, 100% 100%, 0% 100%);
  clip-path: polygon(0% 0%, 12.5% 0%, 12.5% 87.5%, 100% 87.5%, 100% 100%, 0% 100%);
  position: absolute;
  bottom: -1px;
  left: -1px;
}
.decor_bottom::after {
  left: initial;
  right: -1px;
  -webkit-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  transform: rotate(-90deg);
}

.price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 7px;
}
.price .current {
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
}
.price .old {
  font-size: 16px;
  font-weight: 300;
  color: #a7a7a7;
  text-decoration: line-through;
  text-transform: uppercase;
}

.goods_block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  overflow: auto;
  padding: 0 0 15px;
}
.goods_block .item {
  padding: 15px;
  border: 1px solid transparent;
  position: relative;
  width: 330px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.goods_block .item img {
  width: 100%;
  aspect-ratio: 1;
  -o-object-fit: cover;
  object-fit: cover;
}
.goods_block .item .price {
  margin: 30px 0 10px;
}
.goods_block .item .price::before,
.goods_block .item .price::after {
  opacity: 0;
}
.goods_block .item p {
  font-size: 12px;
  line-height: 18px;
}
.goods_block .item .to_cart {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  padding: 0 10px;
  height: 34px;
  border-radius: 17px;
  border: 1px solid transparent;
  width: -moz-max-content;
  width: -webkit-max-content;
  width: max-content;
  margin-left: auto;
  opacity: 0;
  pointer-events: none;
}
.goods_block .item .to_cart::after {
  content: "";
  width: 24px;
  height: 24px;
  background: url("/img/arrow_black.svg") no-repeat 50%;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.goods_block .item .to_cart:hover {
  border: 1px solid #000;
}
.goods_block .item::before,
.goods_block .item::after {
  opacity: 0;
}
.goods_block .item:hover {
  border: 1px solid #e4e4e4;
}
.goods_block .item:hover::before,
.goods_block .item:hover::after {
  opacity: 1;
}
.goods_block .item:hover .price::before,
.goods_block .item:hover .price::after {
  opacity: 1;
}
.goods_block .item:hover .to_cart {
  opacity: 1;
  pointer-events: all;
}

@media (max-width: 768px) {
  .goods_block {
    gap: 18px;
  }
  .goods_block .item {
    width: 200px;
    padding: 0;
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid #e4e4e4;
  }
  .goods_block .item img {
    aspect-ratio: 198/238;
  }
  .goods_block .item p {
    padding-left: 12px;
  }
  .goods_block .item .price {
    margin: 20px 0 10px;
    gap: 0;
  }
  .goods_block .item .price .current,
  .goods_block .item .price .old {
    font-size: 12px;
    padding-left: 12px;
  }
  .goods_block .item .price::before,
  .goods_block .item .price::after {
    display: none;
  }
  .goods_block .item .to_cart {
    width: 40px;
    height: 40px;
    border-radius: 20px;
    background: url("/img/basket.svg") no-repeat 50% #f7f7f7;
    margin: 26px 0 11px 7px;
    font-size: 0;
    opacity: 1;
    pointer-events: all;
  }
  .goods_block .item .to_cart::after {
    display: none;
  }
  .goods_block .item::before,
  .goods_block .item::after {
    display: none;
  }
}
.pagin {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -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;
  gap: 20px;
}
.pagin button {
  text-transform: uppercase;
  padding: 12px 20px;
  border: 1px solid transparent;
  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;
  gap: 10px;
  background-color: #efefef;
  border-radius: 25px;
}
.pagin button::after {
  content: "";
  width: 24px;
  height: 24px;
  background: url("/img/more.svg") no-repeat 50%;
}
.pagin button:hover {
  border: 1px solid #000;
}
.pagin .links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.pagin .links a {
  width: 40px;
  height: 40px;
  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;
  border: 1px solid transparent;
}
.pagin .links a.on {
  border: 1px solid #000;
}
.pagin .links a:hover {
  background-color: #e4e4e4;
  border: 1px solid #e4e4e4;
}
.pagin .links div {
  width: 40px;
  height: 40px;
  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;
}

.crumbs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 9px;
  padding: 20px 0;
}
.crumbs a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 9px;
  border-bottom: 1px solid transparent;
  font-size: 12px;
  line-height: 15px;
  font-weight: 300;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.crumbs a::after {
  content: "";
  width: 3px;
  height: 3px;
  border-radius: 1.5px;
  background-color: #000;
}
.crumbs a:hover {
  border-bottom: 1px solid #000;
}
.crumbs p {
  font-size: 12px;
  line-height: 15px;
  font-weight: 300;
  opacity: 0.5;
}

.size {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 16px 10px;
}
.size p {
  width: 100%;
  padding-top: 8px;
  font-size: 12px;
  line-height: 18px;
  font-weight: 300;
}
.size button {
  width: 40px;
  height: 40px;
  font-size: 16px;
  line-height: 40px;
  text-align: center;
  border: 1px solid #d9d9d9;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.size button.on {
  border: 1px solid #bfb19f;
  background-color: #bfb19f;
}

.counter {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.counter button {
  width: 40px;
  height: 40px;
  border: 1px solid #000;
}
.counter button:first-child {
  background: url("/img/minus.svg") no-repeat 50%;
}
.counter button:first-child:hover {
  border: 1px solid #bfb19f;
  background: url("/img/minus.svg") no-repeat 50% #bfb19f;
}
.counter button:last-child {
  background: url("/img/plus.svg") no-repeat 50%;
}
.counter button:last-child:hover {
  border: 1px solid #bfb19f;
  background: url("/img/plus.svg") no-repeat 50% #bfb19f;
}
.counter input {
  width: 45px;
  text-align: center;
}

.seo {
  max-width: 1000px;
  width: 100%;
  padding: 20px 14px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 20px;
}

.modal {
  position: fixed;
  width: 100vw;
  height: 100vh;
  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;
  padding: 40px;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: -1;
  opacity: 0;
  pointer-events: none;
}
.modal.on {
  z-index: 1010;
  opacity: 1;
  pointer-events: all;
}
.modal .cont {
  background-color: #fff;
  padding: 60px;
  max-width: 550px;
  width: 100%;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -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;
  gap: 40px;
}
.modal .cont .head {
  margin-bottom: 20px;
}
.modal .cont .head h3 {
  font-size: 36px;
  line-height: 50px;
  font-weight: 400;
}
.modal .cont .head button {
  width: 24px;
  height: 24px;
  position: absolute;
  top: 20px;
  right: 20px;
  background: url("/img/close.svg") no-repeat 50%;
}
.modal .cont .head button:hover {
  background: url("/img/close_white.svg") no-repeat 50% #000;
}
.modal .cont .body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}
.modal .cont .body label {
  cursor: pointer;
}
.modal .cont .body span {
  font-size: 14px;
  line-height: 20px;
  margin-bottom: 10px;
}
.modal .cont .body input {
  width: 100%;
  font-size: 14px;
  line-height: 20px;
  padding: 12px 15px 9px;
  border: 1px solid #bfb19f;
}
.modal .cont .body .file_label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  cursor: pointer;
  padding: 10px;
  border: 1px solid #bfb19f;
  margin-top: 10px;
  -webkit-transition: background-color 0.3s ease;
  -o-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}
.modal .cont .body .file_label:hover {
  background-color: #f1f1f1;
}
.modal .cont .body .file_label img {
  width: 20px;
  margin-right: 10px;
}
.modal .cont .body .file_label span {
  margin: 0;
}
.modal .cont .body .file_label input {
  display: none;
}
.modal .cont .body .file_label .file_name {
  margin-left: auto;
  font-size: 14px;
  color: #555;
  white-space: nowrap;
  overflow: hidden;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  max-width: 200px;
}
.modal .cont .foot button {
  width: 180px;
}

@media (max-width: 550px) {
  .modal .cont {
    padding: 40px 20px;
    gap: 24px;
  }
  .modal .cont .head h3 {
    font-size: 30px;
    line-height: 45px;
  }
  .modal .cont .head button {
    top: 10px;
    right: 10px;
  }
}
header {
  position: relative;
  z-index: 1003;
}
header .lang {
  position: relative;
  padding: 0 5px;
}
header .lang span {
  font-size: 14px;
  line-height: 24px;
  font-weight: 700;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 12px;
}
header .lang span::after {
  content: "";
  width: 12px;
  height: 12px;
  background: url("/img/arrow.svg") no-repeat 50%;
}
header .lang a {
  font-size: 14px;
  line-height: 24px;
  font-weight: 700;
  max-height: 0;
  position: absolute;
  width: 100%;
  top: 100%;
  left: 0;
  overflow: hidden;
  padding-left: 5px;
}
header .lang a:hover {
  background: rgba(217, 217, 217, 0.5);
}
header .lang:hover a {
  max-height: 100%;
}
header .layer1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 24px 0 22px;
  position: relative;
}
header .layer1 .links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 12px;
}
header .layer1 .links .tel {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 12px;
  line-height: 14px;
  padding-bottom: 2px;
}
header .layer1 .links .tel span {
  opacity: 0.5;
}
header .layer1 .links .tel::before {
  content: "";
  margin-right: 12px;
  width: 14px;
  height: 14px;
  background: url("/img/phone.svg") no-repeat 50%;
}
header .layer1 .links .map {
  background: url("/img/header_tel.svg") no-repeat 50%;
  width: 24px;
  height: 24px;
}
header .layer1 .links .inst {
  width: 24px;
  height: 24px;
  background: url("/img/inst.svg") no-repeat 50%;
}
header .layer1 .links .telegram {
  width: 24px;
  height: 24px;
  background: url("/img/telegram.svg") no-repeat 50%/90%;
}
header .layer1 .logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  font-size: 30px;
  line-height: 25px;
  font-weight: 700;
  width: -moz-max-content;
  width: -webkit-max-content;
  width: max-content;
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
}
header .layer1 .burger {
  display: none;
}
header .layer1 .slb {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 24px;
  width: -moz-max-content;
  width: -webkit-max-content;
  width: max-content;
  margin-left: auto;
}
header .layer1 .slb .search {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 240px;
  border-radius: 20px;
  overflow: hidden;
  padding-right: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  background: rgba(217, 217, 217, 0.2);
}
header .layer1 .slb .search input {
  width: 100%;
  padding: 12px 5px 12px 16px;
  font-size: 12px;
  line-height: 16px;
  font-weight: 300;
}
header .layer1 .slb .search button {
  width: 16px;
  height: 16px;
  background: url("/img/search.svg") no-repeat 50%;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
header .layer1 .slb .basket,
header .layer1 .slb .compare_btn {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: url("/img/basket.svg") no-repeat 50%;
  position: relative;
}
header .layer1 .slb .basket span,
header .layer1 .slb .compare_btn span {
  position: absolute;
  text-align: center;
  right: 0;
  top: 6px;
  background-color: #000;
  color: #fff;
  font-size: 10px;
  line-height: 14px;
  font-weight: 700;
  padding: 0 5px;
  height: 16px;
  border-radius: 8px;
}
header .layer1 .slb .compare_btn {
  background: url("/img/compare.svg") no-repeat 50%;
}
header .layer2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: end;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 10px;
  z-index: 1010;
  border-bottom: 1px solid #000;
}
header .layer2 .head {
  display: none;
}
header .layer2 .header_catalog {
  position: relative;
}
header .layer2 .header_catalog .open {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: end;
  gap: 25px;
  font-size: 16px;
  line-height: 12px;
  padding: 16px 0;
  color: #000;
}
header .layer2 .header_catalog .cont {
  position: absolute;
  left: 0;
  top: 100%;
  opacity: 0;
  pointer-events: none;
  background-color: #fff;
  border-top: 1px solid #000;
}
header .layer2 .header_catalog .cont .category {
  width: 393px;
  border-bottom: 1px solid #000;
}
header .layer2 .header_catalog .cont .category > a {
  width: 100%;
  height: 67px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 0 27px 0 65px;
  position: relative;
  color: #000;
}
header .layer2 .header_catalog .cont .category > a img {
  position: absolute;
  left: 16px;
  top: 0;
  bottom: 0;
  margin: auto 0;
  width: 32px;
  height: 32px;
  border-radius: 16px;
  opacity: 0;
}
header .layer2 .header_catalog .cont .category > a span {
  font-size: 18px;
}
header .layer2 .header_catalog .cont .category > a .indicator {
  opacity: 0;
}
header .layer2 .header_catalog .cont .category > a:hover {
  background-color: #1f1f21;
}
header .layer2 .header_catalog .cont .category > a:hover img {
  opacity: 1;
}
header .layer2 .header_catalog .cont .category > a:hover span {
  color: #fff;
}
header .layer2 .header_catalog .cont .category > a:hover ~ .sub {
  opacity: 1;
  pointer-events: all;
}
header .layer2 .header_catalog .cont .category .sub {
  width: 393px;
  height: 100%;
  position: absolute;
  top: 0;
  left: 100%;
  background-color: #1f1f21;
  padding: 25px 0 25px 41px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  opacity: 0;
  pointer-events: none;
}
header .layer2 .header_catalog .cont .category .sub a {
  width: 100%;
  padding-left: 24px;
}
header .layer2 .header_catalog .cont .category .sub a span {
  display: block;
  padding: 15px 0;
  width: 268px;
  color: #fff;
  border-bottom: 1px solid #fff;
}
header .layer2 .header_catalog .cont .category .sub a:hover {
  background-color: #bfb19f;
}
header .layer2 .header_catalog .cont .category .sub a:hover span {
  color: #000;
  border-bottom: 1px solid transparent;
}
header .layer2 .header_catalog .cont .category .sub a:last-child span {
  border: 0;
}
header .layer2 .header_catalog .cont .category .sub:hover {
  opacity: 1;
  pointer-events: all;
}
header .layer2 .header_catalog:hover .cont {
  opacity: 1;
  pointer-events: all;
}
header .layer2 .nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 16px;
  width: clamp(508px, 45.75%, 604px);
  padding-bottom: 21px;
}
header .layer2 .nav .serv {
  position: relative;
}
header .layer2 .nav .serv .drop {
  position: absolute;
  top: 100%;
  left: 0;
  width: 354px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  opacity: 0;
  pointer-events: none;
  padding-top: 21px;
}
header .layer2 .nav .serv .drop a {
  background-color: #fff;
  padding: 17px 17px 17px 60px;
  border-bottom: 1px solid #000;
}
header .layer2 .nav .serv .drop a:first-child {
  border-top: 1px solid #000;
}
header .layer2 .nav .serv .drop a:hover {
  background-color: #efefef;
}
header .layer2 .nav .serv:hover .drop {
  opacity: 1;
  pointer-events: all;
}

@media (hover: none) {
  .link_decor:hover::after {
    width: 0;
  }
  header .layer2 .header_catalog .cont .category button:hover img {
    opacity: 0;
  }
}
@media (max-width: 1125px) {
  header {
    position: relative;
  }
  header .layer1 {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 9px 14px;
    padding: 0 0 11px;
    border-bottom: 1px solid #000;
  }
  header .layer1 .links {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: calc(100% + 28px);
    margin-left: -14px;
    margin-right: -14px;
    padding: 5px;
    background-color: #bfb19f;
  }
  header .layer1 .links span {
    opacity: 1;
  }
  header .layer1 .logo {
    position: relative;
    left: initial;
    right: initial;
    margin: initial;
    font-size: 0;
    gap: 0;
    width: 35px;
    overflow: hidden;
  }
  header .layer1 .burger {
    display: block;
    position: relative;
    width: 24px;
    height: 24px;
  }
  header .layer1 .burger span {
    position: absolute;
    top: 11px;
    left: 0;
    width: 20px;
    height: 2px;
    background-color: #000;
    border-radius: 1px;
  }
  header .layer1 .burger::before {
    content: "";
    position: absolute;
    top: 5px;
    left: 0;
    width: 11px;
    height: 2px;
    background-color: #000;
    border-radius: 1px;
  }
  header .layer1 .burger::after {
    content: "";
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 16px;
    height: 2px;
    background-color: #000;
    border-radius: 1px;
  }
  header .layer1 .slb {
    max-width: calc(100% - 100px);
    width: 100%;
    gap: 20px;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: end;
  }
  header .layer1 .slb .search {
    background: rgba(217, 217, 217, 0.2);
  }
  header .layer1 .slb .lang {
    display: none;
  }
  header .layer2 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    max-height: 100vh;
    height: 100vh;
    overflow: auto;
    background-color: #fff;
    -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;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: start;
    gap: 0;
    opacity: 0;
    pointer-events: none;
    z-index: -1;
    border-bottom: 0;
  }
  header .layer2.on {
    opacity: 1;
    pointer-events: all;
    z-index: 1002;
  }
  header .layer2 .head {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 10px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 18px 20px 18px 16px;
    width: 100%;
  }
  header .layer2 .head .logo {
    width: 36px;
    height: 33px;
    background: url("/img/logo.svg");
  }
  header .layer2 .head .close {
    position: relative;
    width: 20px;
    height: 20px;
    margin-left: auto;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  header .layer2 .head .close::before {
    content: "";
    width: 20px;
    height: 2px;
    background-color: #000;
    position: absolute;
    top: 9px;
    left: 0;
  }
  header .layer2 .head .close::after {
    content: "";
    width: 2px;
    height: 20px;
    background-color: #000;
    position: absolute;
    top: 0;
    left: 9px;
  }
  header .layer2 .header_catalog {
    width: 100%;
  }
  header .layer2 .header_catalog .open {
    padding: 20px 20px 20px 65px;
    border-bottom: 1px solid #000;
    width: 100%;
  }
  header .layer2 .header_catalog .open img {
    display: none;
  }
  header .layer2 .header_catalog .cont {
    display: none;
    -webkit-transition: none;
    -o-transition: none;
    transition: none;
    position: relative;
    left: initial;
    top: initial;
    opacity: 1;
  }
  header .layer2 .header_catalog .cont .category {
    width: 100%;
  }
  header .layer2 .header_catalog .cont .category button {
    padding: 23px 42px 23px 65px;
  }
  header .layer2 .header_catalog .cont .category button:hover {
    background-color: #fff;
  }
  header .layer2 .header_catalog .cont .category button:hover span {
    color: #000;
  }
  header .layer2 .header_catalog .cont .category button img {
    left: 15px;
    opacity: 0;
  }
  header .layer2 .header_catalog .cont .category button .indicator {
    opacity: 1;
  }
  header .layer2 .header_catalog .cont .category button.on img {
    opacity: 1;
  }
  header .layer2 .header_catalog .cont .category button.on .indicator::after {
    opacity: 0;
  }
  header .layer2 .header_catalog .cont .category .sub {
    display: none;
    width: 100%;
    height: initial;
    position: relative;
    top: initial;
    left: initial;
    padding: 24px 65px 24px 80px;
    -webkit-transition: none;
    -o-transition: none;
    transition: none;
    opacity: 1;
  }
  header .layer2 .header_catalog .cont .category .sub a {
    padding: 0;
    opacity: 1;
  }
  header .layer2 .header_catalog .cont .category .sub a span {
    width: 100%;
  }
  header .layer2 .nav {
    width: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 16px;
    padding: 50px 45px;
  }
  header .layer2 .nav a {
    display: block;
    width: -moz-max-content;
    width: -webkit-max-content;
    width: max-content;
    padding: 15px 10px;
  }
  header .layer2 .nav .serv .drop {
    -webkit-transition: none;
    -o-transition: none;
    transition: none;
    display: none;
    position: relative;
    top: initial;
    left: initial;
    width: initial;
    padding: 0 0 16px;
    opacity: 1;
  }
  header .layer2 .nav .serv .drop a {
    display: block;
    border: none;
    padding: 16px 10px 16px 20px;
    opacity: 1;
    color: #000;
  }
  header .layer2 .nav .serv .drop a:first-child {
    border: none;
  }
}
@media (max-width: 520px) {
  header .layer1 .slb {
    gap: 10px;
  }
  header .layer1 .slb .search {
    padding-right: 12px;
    width: -moz-fit-content;
    width: -webkit-fit-content;
    width: fit-content;
  }
  header .layer1 .slb .compare {
    display: none;
  }
}
.main_banner {
  position: relative;
  width: 100%;
}
.main_banner .big_slider {
  position: relative;
  z-index: 2;
}
.main_banner .big_slider .item {
  position: relative;
}
.main_banner .big_slider .item img {
  width: 100%;
  min-height: 393px;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: 50%;
  object-position: 50%;
}
.main_banner .big_slider .item .inf {
  position: absolute;
  max-width: 1168px;
  width: 100%;
  height: -moz-max-content;
  height: -webkit-max-content;
  height: max-content;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  margin: auto;
  padding: 30px;
}
.main_banner .big_slider .item .inf div {
  font-size: clamp(36px, 5vw + 1rem, 78px);
  line-height: clamp(40px, 6vw + 1rem, 85px);
  font-weight: 300;
  color: #fff;
}
.main_banner .big_slider .item .inf a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 5px;
  height: 50px;
  border-radius: 25px;
  border: 1px solid #fff;
  font-size: 16px;
  color: #fff;
  padding: 0 20px;
  width: -moz-max-content;
  width: -webkit-max-content;
  width: max-content;
  text-transform: uppercase;
  margin-top: 30px;
}
.main_banner .big_slider .item .inf a span {
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
  width: 16px;
  height: 16px;
  background: url("/img/arrow_white.svg") no-repeat 50%;
}
.main_banner .big_slider .item .inf a:hover {
  background-color: #fff;
  color: #000;
}
.main_banner .big_slider .item .inf a:hover span {
  background: url("/img/arrow_black.svg") no-repeat 50%;
}
.main_banner .big_slider_nav {
  position: absolute;
  z-index: 1001;
  top: 10%;
  right: 10%;
}
.main_banner .big_slider_nav .count {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
}
.main_banner .big_slider_nav .count .current {
  color: #fff;
  font-size: 42px;
  line-height: 42px;
}
.main_banner .big_slider_nav .count .total {
  color: #fff;
  font-size: 18px;
  line-height: 25px;
}
.main_banner .big_slider_nav .arrows {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-top: 15px;
}
.main_banner .big_slider_nav .arrows button {
  width: 20px;
  height: 20px;
  background: url("/img/slider_arrow.svg") no-repeat 50%;
}
.main_banner .big_slider_nav .arrows button.prev {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}
.main_banner .big_slider_nav .arrows button.slick-disabled {
  opacity: 0.5;
}
.main_banner .small_slider {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 30px;
  margin-top: -80px;
}
.main_banner .small_slider .slider {
  width: calc(100% - 140px);
  z-index: 1000;
}
.main_banner .small_slider .slider .item {
  position: relative;
  margin-right: 16px;
}
.main_banner .small_slider .slider .item img {
  width: 280px;
  height: 280px;
  -o-object-fit: cover;
  object-fit: cover;
}
.main_banner .small_slider .slider .item span {
  position: absolute;
  top: 30px;
  left: 30px;
  font-size: 26px;
  color: #fff;
}
.main_banner .small_slider button {
  width: 40px;
  height: 40px;
  border-radius: 20px;
  border: 1px solid #000;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  background: url("/img/arrow_black.svg") no-repeat 50% #fff;
}
.main_banner .small_slider button.prev {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}
.main_banner h1 {
  font-size: clamp(36px, 5vw + 1rem, 78px);
  line-height: clamp(40px, 6vw + 1rem, 85px);
  font-weight: 300;
  text-align: center;
  margin-top: 40px;
}

@media (max-width: 1023px) {
  .main_banner .big_slider .item .inf a {
    font-size: 14px;
    height: 40px;
    border-radius: 20px;
    padding: 0 15px;
    margin-top: 20px;
  }
  .main_banner .big_slider_nav {
    top: 30px;
    right: 30px;
  }
  .main_banner .big_slider_nav .count {
    gap: 12px;
  }
  .main_banner .big_slider_nav .count .current {
    font-size: 23px;
    line-height: 23px;
  }
  .main_banner .big_slider_nav .count .total {
    font-size: 10px;
    line-height: 14px;
  }
  .main_banner .small_slider {
    margin-top: -30px;
  }
  .main_banner .small_slider .slider .item img {
    width: 160px;
    height: 160px;
  }
  .main_banner .small_slider .slider .item span {
    font-size: 18px;
  }
  .main_banner .small_slider button {
    width: 30px;
    height: 30px;
  }
}
@media (max-width: 540px) {
  .main_banner .small_slider {
    gap: 0;
    position: relative;
  }
  .main_banner .small_slider .slider {
    width: calc(100% - 32px);
    margin: 0 auto;
    z-index: 3;
  }
  .main_banner .small_slider button {
    position: absolute;
    top: 65px;
    z-index: 44;
  }
  .main_banner .small_slider button.next {
    right: 14px;
  }
}
.discounts {
  padding: 136px 16px 20px;
}
.discounts .btn {
  display: none;
  margin: 48px auto 0;
}

@media (max-width: 768px) {
  .discounts {
    padding: 46px 16px 20px;
  }
  .discounts .btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.advantages {
  padding-top: 20px;
  padding-bottom: 70px;
}
.advantages h3 {
  font-size: 36px;
  line-height: 50px;
  font-weight: 400;
  margin-bottom: 40px;
}
.advantages h2 {
  font-size: 72px;
  line-height: 72px;
  font-weight: 400;
}
.advantages .cont {
  margin-bottom: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 40px;
}
.advantages .cont .line {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 40px;
}
.advantages .cont .item {
  position: relative;
  width: calc(50% - 20px);
  height: 300px;
  border: 1px solid #e4e4e4;
}
.advantages .cont .item .fond {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.advantages .cont .item .box {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  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;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 20px;
  padding: 30px;
}
.advantages .cont .item .box .img {
  width: 48px;
  height: 48px;
  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;
}
.advantages .cont .item .box .img img {
  max-width: 100%;
}
.advantages .cont .item .box p {
  font-size: 16px;
  line-height: 24px;
  text-align: center;
}
.advantages .cont .item.dark {
  border: none;
}
.advantages .cont .item.dark .box {
  background-color: rgba(0, 0, 0, 0.4);
}
.advantages .cont .item.dark .box p {
  color: #fff;
}
.advantages .sale {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  background-color: #b4d4a2;
  position: relative;
}
.advantages .sale .img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 30px;
}
.advantages .sale .img div {
  font-size: 80px;
  line-height: 80px;
  font-weight: 400;
  padding: 0;
}
.advantages .sale p {
  font-weight: 300;
  max-width: 530px;
  width: 100%;
  margin: 0 0 0 auto;
}
.advantages .sale a {
  margin: 0 auto;
}
.advantages .sale span {
  margin-left: auto;
  -webkit-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  transform: rotate(-90deg);
}

@media (max-width: 1024px) {
  .advantages .sale {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 30px;
    padding: 30px 13px 33px;
  }
  .advantages .sale .img {
    width: 100%;
  }
  .advantages .sale .img img {
    width: 100px;
  }
  .advantages .sale .img div {
    font-size: 40px;
    line-height: 40px;
  }
  .advantages .sale p {
    margin: 0;
    max-width: 100%;
  }
  .advantages .sale span {
    display: none;
  }
}
@media (max-width: 768px) {
  .advantages.block {
    padding: 20px 14px 30px;
  }
  .advantages h2 {
    font-size: 40px;
    line-height: 40px;
  }
  .advantages .cont {
    gap: 30px;
  }
  .advantages .cont .line {
    gap: 30px;
  }
  .advantages .cont .line:nth-child(2n) .item:nth-child(1) {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
  .advantages .cont .item {
    width: 100%;
  }
  .advantages .decor_bottom::after,
  .advantages .decor_bottom::before,
  .advantages .decor_top::after,
  .advantages .decor_top::before {
    display: none;
  }
}
.services {
  padding-top: 70px;
  padding-bottom: 70px;
}
.services .cont {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 25px;
}
.services .cont .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 45px;
  max-width: 384px;
  width: 100%;
}
.services .cont .item p {
  font-size: 22px;
  font-weight: 300;
  line-height: 29px;
}
.services .cont .item .img {
  overflow: hidden;
  aspect-ratio: 1/1;
}
.services .cont .item .img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.services .cont .item:hover .img img {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}
.services h3 {
  margin-top: 110px;
  font-size: 36px;
  line-height: 48px;
  font-weight: 300;
}

@media (max-width: 768px) {
  .services {
    padding-top: 30px;
    padding-bottom: 25px;
  }
  .services .cont {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .services .cont .item {
    max-width: 100%;
    gap: 28px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: start;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border-radius: 4px;
    border: 1px solid #e4e4e4;
    overflow: hidden;
  }
  .services .cont .item p {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
  .services .cont .item .img {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    width: 37.605%;
  }
  .services h3 {
    margin-top: 50px;
    font-size: 24px;
    line-height: 36px;
  }
}
.new_projects {
  padding-top: 65px;
  padding-bottom: 60px;
}
.new_projects h3 {
  font-size: 36px;
  line-height: 36px;
  font-weight: 300;
  margin-bottom: 50px;
}
.new_projects h4 {
  font-size: 24px;
  line-height: 36px;
  font-weight: 300;
  margin-bottom: 50px;
}
.new_projects .titleM h2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.new_projects .titleM h2 span {
  display: block;
  margin-left: 12%;
}
.new_projects .titleM a {
  margin-left: auto;
  -ms-flex-item-align: end;
  align-self: flex-end;
}
.new_projects .cont .item {
  border-bottom: 1px solid #1f1f21;
}
.new_projects .cont .item:first-child {
  border-top: 1px solid #1f1f21;
}
.new_projects .cont .item .box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 0;
  cursor: pointer;
}
.new_projects .cont .item .box .num {
  width: 30%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 25px;
  padding-left: 18px;
}
.new_projects .cont .item .box .decor_elem {
  width: 23%;
}
.new_projects .cont .item .box .material {
  width: 34%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding-right: 18px;
}
.new_projects .cont .item .drop {
  padding: 40px 0 60px;
  background-color: #1f1f21;
  position: relative;
  -webkit-transition: none;
  -o-transition: none;
  transition: none;
  display: none;
}
.new_projects .cont .item .drop .slider {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.new_projects .cont .item .drop .slider .img:nth-child(1) {
  width: 30%;
}
.new_projects .cont .item .drop .slider .img:nth-child(2) {
  width: 23%;
}
.new_projects .cont .item .drop .slider .img:nth-child(2) .decor_top {
  width: -moz-max-content;
  width: -webkit-max-content;
  width: max-content;
  position: relative;
  padding: 13px;
  border: 1px solid #515157;
}
.new_projects .cont .item .drop .slider .img:nth-child(2) .decor_top::before,
.new_projects .cont .item .drop .slider .img:nth-child(2) .decor_top::after {
  background-color: #fff;
}
.new_projects .cont .item .drop .slider .img:nth-child(2) .decor_top .decor_bottom::before,
.new_projects .cont .item .drop .slider .img:nth-child(2) .decor_top .decor_bottom::after {
  background-color: #fff;
}
.new_projects .cont .item .drop .slider .img:nth-child(3) {
  width: 34%;
}
.new_projects .cont .item .drop .slider .img img {
  max-width: 100%;
}
.new_projects .cont .item .drop .btn {
  background-color: transparent;
  border: transparent;
  position: absolute;
  bottom: 60px;
  right: 7%;
}
.new_projects .cont .item .drop .btn:hover {
  background-color: #fff;
}
.new_projects .cont .item:hover {
  background-color: #1f1f21;
}
.new_projects .cont .item:hover p {
  color: #fff;
}
.new_projects .cont .item:hover .indicator::before,
.new_projects .cont .item:hover .indicator::after {
  background-color: #fff;
}
.new_projects .cont .item.on {
  background-color: #1f1f21;
}
.new_projects .cont .item.on p {
  color: #fff;
}
.new_projects .cont .item.on .indicator::before {
  background-color: #fff;
}
.new_projects .cont .item.on .indicator::after {
  display: none;
}

@media (max-width: 768px) {
  .new_projects {
    padding: 25px 0;
  }
  .new_projects h3 {
    font-size: 24px;
    line-height: 36px;
    font-weight: 300;
    padding-left: 30px;
    margin-bottom: 20px;
  }
  .new_projects .titleM h2 {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }
  .new_projects .titleM h2 span {
    margin-left: 10px;
  }
  .new_projects .titleM a {
    display: none;
  }
  .new_projects .cont .item .box {
    padding: 10px 0;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 5px;
    position: relative;
  }
  .new_projects .cont .item .box .num {
    width: 100%;
    padding-left: 68px;
  }
  .new_projects .cont .item .box .num p:nth-child(1) {
    height: -moz-max-content;
    height: -webkit-max-content;
    height: max-content;
    position: absolute;
    left: 25px;
    top: 0;
    bottom: 0;
    margin: auto 0;
  }
  .new_projects .cont .item .box .decor_elem {
    display: none;
  }
  .new_projects .cont .item .box .material {
    width: 100%;
    padding-left: 68px;
  }
  .new_projects .cont .item .box .material p {
    font-weight: 300;
  }
  .new_projects .cont .item .box .material .indicator {
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto 0;
    right: 30px;
  }
  .new_projects .cont .item .drop {
    padding: 30px 0 0;
  }
  .new_projects .cont .item .drop .slider {
    display: block;
    width: calc(100% - 60px);
    margin: 0 auto;
    position: relative;
  }
  .new_projects .cont .item .drop .slider .img {
    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;
  }
  .new_projects .cont .item .drop .slider .slick-prev,
  .new_projects .cont .item .drop .slider .slick-next {
    position: absolute;
    top: calc(50% - 15px);
    width: 30px;
    height: 30px;
    border-radius: 15px;
    border: 1px solid #000;
    background: url("/img/arrow_black.svg") no-repeat 50% #fff;
    font-size: 0;
    z-index: 2;
  }
  .new_projects .cont .item .drop .slider .slick-prev {
    left: -9px;
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
  }
  .new_projects .cont .item .drop .slider .slick-next {
    right: -9px;
  }
  .new_projects .cont .item .drop .btn {
    position: initial;
    bottom: initial;
    right: initial;
    margin: 30px auto;
  }
}
.logos {
  padding-top: 60px;
  padding-bottom: 60px;
}
.logos h2 {
  font-size: 70px;
  line-height: 70px;
  font-weight: 400;
  margin-bottom: 40px;
}
.logos .slider .item {
  width: 280px;
  height: 280px;
  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;
  padding: 16px;
  border: 1px solid #efefef;
  margin-right: 16px;
}
.logos .slider .item img {
  max-width: 100%;
  max-height: 100%;
}

@media (max-width: 768px) {
  .logos {
    padding-top: 60px;
  }
  .logos h2 {
    font-size: 40px;
    line-height: 40px;
    margin-bottom: 20px;
  }
  .logos .slider .item {
    padding: 12px;
    width: 140px;
    height: 140px;
  }
}
.about_us {
  padding-top: 60px;
  padding-bottom: 60px;
}
.about_us h2 {
  font-size: 72px;
  line-height: 72px;
  font-weight: 400;
}
.about_us .cont {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 60px 40px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-top: 60px;
}
.about_us .cont img {
  width: calc(100% - 500px);
}
.about_us .cont .desc {
  width: 460px;
  padding-top: 40px;
}
.about_us .cont .desc p {
  font-size: 22px;
  line-height: 32px;
}
.about_us .cont .desc a {
  height: 35px;
  border: none;
  margin-top: 40px;
}

@media (max-width: 768px) {
  .about_us {
    padding-top: 30px;
    padding-bottom: 30px;
  }
  .about_us h2 {
    font-size: 40px;
    line-height: 40px;
  }
  .about_us .cont {
    margin-top: 30px;
    gap: 20px;
  }
  .about_us .cont img {
    width: 100%;
  }
  .about_us .cont .desc {
    padding-top: 0;
  }
  .about_us .cont .desc a {
    margin-top: 20px;
  }
  .about_us .cont .seo {
    margin-top: 20px;
  }
}
.filters_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 0 13px;
}
.filters_box .name {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: end;
  margin-bottom: 30px;
}
.filters_box .name h1 {
  font-weight: 300;
  font-size: 36px;
  line-height: 36px;
}
.filters_box .name p {
  margin-bottom: 3px;
}
.filters_box .head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  width: 100%;
}
.filters_box .head .filters_btn {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  line-height: 24px;
  padding: 13px 20px;
  border-radius: 25px;
  border: 1px solid #000;
}
.filters_box .head .filters_btn::after {
  content: "";
  width: 24px;
  height: 24px;
  background: url("/img/filters.svg") no-repeat 50%;
}
.filters_box .head .filters_btn:hover {
  background-color: #efefef;
}
.filters_box .head .filters_btn.on::after {
  content: "";
  width: 24px;
  height: 24px;
  background: url("/img/filters_open.svg") no-repeat 50%;
}
.filters_box .head .selected {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 10px;
  width: 100%;
}
.filters_box .head .selected button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 6px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 2px 4px;
  font-size: 10px;
  line-height: 16px;
  border: 1px solid transparent;
  background-color: #efefef;
  border-radius: 10px;
}
.filters_box .head .selected button::after {
  content: "";
  width: 8px;
  height: 8px;
  background: url("/img/close8x8.svg");
}
.filters_box .head .selected button:hover {
  border: 1px solid #000;
}
.filters_box .head select {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  font-size: 14px;
  cursor: pointer;
  margin-left: auto;
  background-color: #fff;
  color: #000;
}
.filters_box .drop_filters {
  margin-top: 30px;
  width: 100%;
  display: none;
  -webkit-transition: none;
  -o-transition: none;
  transition: none;
}
.filters_box .filters {
  width: 100%;
  padding-top: 20px;
  border-top: 1px solid #000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 30px;
}
.filters_box .filters .item {
  width: calc((100% - 90px) / 4);
}
.filters_box .filters .item button {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 10px;
  font-size: 14px;
  line-height: 20px;
  font-weight: 600;
}
.filters_box .filters .item button::after {
  content: "";
  width: 12px;
  height: 12px;
  background: url("/img/arrow.svg") no-repeat 50%;
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}
.filters_box .filters .item button.on::after {
  -webkit-transform: rotate(0);
  -ms-transform: rotate(0);
  transform: rotate(0);
}
.filters_box .filters .item button:hover {
  background-color: #efefef;
}
.filters_box .filters .item .drop {
  display: none;
  max-height: 300px;
  overflow: auto;
  -webkit-transition: none;
  -o-transition: none;
  transition: none;
}
.filters_box .filters .item .drop::-webkit-scrollbar-track {
  background: #efefef;
}
.filters_box .filters .item .drop::-webkit-scrollbar-thumb {
  background-color: #838383;
}
.filters_box .filters .item .drop label {
  cursor: pointer;
}
.filters_box .filters .item .drop label input {
  display: none;
}
.filters_box .filters .item .drop label input ~ .brand_name,
.filters_box .filters .item .drop label input ~ .color {
  -webkit-transition: none;
  -o-transition: none;
  transition: none;
  width: calc(100% - 8px);
  font-size: 14px;
  line-height: 20px;
  padding: 16px 10px;
  border-bottom: 1px solid #000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
}
.filters_box .filters .item .drop label input ~ .brand_name span,
.filters_box .filters .item .drop label input ~ .color span {
  width: 40px;
  height: 20px;
}
.filters_box .filters .item .drop label input ~ .brand_name:hover,
.filters_box .filters .item .drop label input ~ .color:hover {
  background-color: #efefef;
}
.filters_box .filters .item .drop label input ~ .brand_name::after,
.filters_box .filters .item .drop label input ~ .color::after {
  -webkit-transition: none;
  -o-transition: none;
  transition: none;
  content: "";
  width: 20px;
  height: 20px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin-left: auto;
}
.filters_box .filters .item .drop label input:checked ~ .brand_name::after,
.filters_box .filters .item .drop label input:checked ~ .color::after {
  background: url("/img/check.svg") no-repeat 50%;
}
.filters_box .filters .item .drop label:first-child .brand_name {
  border-top: 1px solid #000;
}

.category_page {
  padding-bottom: 70px;
}
.category_page .material {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 5px;
  overflow: auto;
  padding: 25px 0 10px;
  margin-bottom: 25px;
}
.category_page .material a {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  position: relative;
  border: 1px solid transparent;
  padding: 9px;
}
.category_page .material a::before,
.category_page .material a::after {
  opacity: 0;
}
.category_page .material a.on {
  border: 1px solid #e4e4e4;
}
.category_page .material a.on::before,
.category_page .material a.on::after {
  opacity: 1;
}
.category_page .material a.on .container::before,
.category_page .material a.on .container::after {
  opacity: 1;
}
.category_page .material a:hover {
  border: 1px solid #e4e4e4;
}
.category_page .material a .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.category_page .material a .container img {
  width: 100px;
  height: 100px;
  -o-object-fit: cover;
  object-fit: cover;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.category_page .material a .container span {
  min-width: 140px;
  width: -moz-min-content;
  width: -webkit-min-content;
  width: min-content;
  min-height: 100px;
  font-weight: 300;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 0 12px 0 24px;
  background-color: #efefef;
}
.category_page .material a .container::before,
.category_page .material a .container::after {
  opacity: 0;
}
.category_page .material::-webkit-scrollbar {
  width: 2px;
  height: 2px;
}
.category_page .material::-webkit-scrollbar-track {
  background: #f7f7f7;
  border-radius: 2px;
}
.category_page .material::-webkit-scrollbar-thumb {
  background-color: #d9d9d9;
  border-radius: 2px;
}
.category_page h1,
.category_page h3 {
  font-size: 36px;
  line-height: 48px;
  font-weight: 400;
  margin: 10px 0;
}
.category_page .form_search {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: end;
  gap: 12px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 10px 0;
}
.category_page .form_search label span {
  display: block;
  font-size: 14px;
  line-height: 20px;
  margin-bottom: 6px;
}
.category_page .form_search label input {
  font-size: 18px;
  line-height: 28px;
  padding: 6px 20px;
  background-color: #efefef;
  width: 300px;
}
.category_page .form_search button {
  font-size: 14px;
  line-height: 28px;
  padding: 5px 16px;
  background-color: #000;
  color: #fff;
  border: 1px solid #000;
}
.category_page .form_search button:hover {
  background-color: #fff;
  color: #000;
}

.category_cont {
  padding: 36px 0 75px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 96px 30px;
}
.category_cont .item {
  width: calc((100% - 90px) / 4);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 15px;
}
.category_cont .item a {
  position: relative;
}
.category_cont .item a .labels_box {
  position: absolute;
  z-index: 1;
  top: 14px;
  left: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 10px;
  padding-right: 80px;
}
.category_cont .item a .label {
  font-size: 14px;
  font-weight: 700;
  line-height: 34px;
  white-space: nowrap;
  padding: 0 19px;
  border-radius: 17px;
  text-transform: uppercase;
}
.category_cont .item a .label.discount {
  position: absolute;
  top: 0;
  right: 15px;
}
.category_cont .item a .img {
  width: 100%;
  aspect-ratio: 1/1;
  overflow: hidden;
}
.category_cont .item a .img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.category_cont .item a .name {
  margin: 16px 0 8px;
}
.category_cont .item a .name p {
  font-size: 14px;
  line-height: 18px;
  font-weight: 300;
}
.category_cont .item a .name p:nth-child(2) {
  font-size: 16px;
  font-weight: 400;
  height: 36px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.category_cont .item a .disc {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 0 10px;
}
.category_cont .item a .disc span {
  width: 70px;
  font-size: 12px;
  color: #838383;
}
.category_cont .item a .disc p {
  width: calc(100% - 80px);
  font-size: 12px;
}
.category_cont .item a:hover .img img {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}
.category_cont .item .price {
  margin-top: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 12px;
}
.category_cont .item .price > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
}
.category_cont .item .price > div:first-child .current,
.category_cont .item .price > div:first-child .old {
  font-size: 12px;
}
.category_cont .item .price .current {
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
}
.category_cont .item .price .old {
  font-weight: 300;
  color: #a7a7a7;
  text-decoration: line-through;
}
.category_cont .item .buy {
  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;
  gap: 10px;
  width: 100%;
  height: 40px;
  background-color: #1f1f21;
  color: #fff;
  font-size: 14px;
  text-transform: uppercase;
}
.category_cont .item .buy::before {
  content: "";
  width: 18px;
  height: 18px;
  background: url("/img/basket_white.svg") no-repeat 50%;
}
.category_cont .item .buy:hover {
  -webkit-transform: scale(0.95);
  -ms-transform: scale(0.95);
  transform: scale(0.95);
}
.category_cont .item .wholesale {
  width: 100%;
  text-align: center;
  font-size: 14px;
  line-height: 38px;
  background-color: #bfb19f;
  text-transform: uppercase;
}
.category_cont .item .wholesale:hover {
  -webkit-transform: scale(0.95);
  -ms-transform: scale(0.95);
  transform: scale(0.95);
}

@media (max-width: 1100px) {
  .filters_box .filters .item {
    width: calc((100% - 60px) / 3);
  }
}
@media (max-width: 1024px) {
  .category_cont .item {
    width: calc((100% - 60px) / 3);
  }
}
@media (max-width: 850px) {
  .filters_box {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  .filters_box .name {
    width: -moz-max-content;
    width: -webkit-max-content;
    width: max-content;
  }
  .filters_box .name h2 {
    font-size: 24px;
    line-height: 24px;
  }
  .filters_box .name p {
    font-size: 0;
    line-height: 0px;
  }
  .filters_box .name p span {
    font-size: 14px;
    line-height: 16px;
  }
  .filters_box .head {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .filters_box .head .selected {
    gap: 16px 10px;
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
  .filters_box .filters .item {
    width: calc((100% - 30px) / 2);
  }
  .category_page .material {
    gap: 25px;
    padding: 20px 0 10px;
    margin: 0 0 20px;
  }
  .category_page .material a {
    width: -moz-max-content;
    width: -webkit-max-content;
    width: max-content;
    border: 0;
    padding: 0;
  }
  .category_page .material a.decor_top::after,
  .category_page .material a.decor_top::before {
    display: none;
  }
  .category_page .material a.on {
    border: 0;
  }
  .category_page .material a.on .container img {
    border: 2px solid #230b34;
  }
  .category_page .material a:hover {
    border: 0;
  }
  .category_page .material a .container {
    gap: 12px;
    -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;
  }
  .category_page .material a .container.decor_bottom::after,
  .category_page .material a .container.decor_bottom::before {
    display: none;
  }
  .category_page .material a .container img {
    width: 48px;
    height: 48px;
    border-radius: 24px;
    border: 2px solid transparent;
  }
  .category_page .material a .container span {
    display: block;
    min-width: initial;
    min-height: initial;
    padding: 0;
    font-size: 14px;
    line-height: 18px;
    font-weight: 400;
    background-color: #fff;
  }
  .category_cont .item {
    width: calc((100% - 30px) / 2);
  }
}
@media (max-width: 550px) {
  .filters_box .filters .item {
    width: 100%;
  }
  .category_cont {
    gap: 55px 0;
  }
  .category_cont .item {
    width: 100%;
  }
  .category_cont .item .img {
    width: 100%;
    height: 300px;
  }
}
.text_container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 30px;
}
.text_container h3 {
  font-size: 36px;
  line-height: 50px;
  font-weight: 400;
}

.table {
  padding-bottom: 60px;
}
.table .line {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 50px;
  padding: 16px 20px;
  border-bottom: 1px solid #000;
}
.table .line:nth-child(1) {
  border-top: 1px solid #000;
}
.table .line div {
  width: calc(66.6666666667% - 25px);
}
.table .line div:last-child {
  width: calc(33.3333333333% - 25px);
}
.table .line div h6,
.table .line div p {
  font-size: 16px;
  line-height: 34px;
}

@media (max-width: 768px) {
  .table .line {
    gap: 30px;
  }
  .table .line div {
    width: calc(66.6666666667% - 15px);
  }
  .table .line div:last-child {
    width: calc(33.3333333333% - 15px);
  }
}
.frequently_questions {
  padding: 60px 0;
}
.frequently_questions h3 {
  font-size: 36px;
  line-height: 50px;
  font-weight: 400;
  margin-bottom: 20px;
  padding: 0 14px;
}
.frequently_questions .item {
  padding: 16px 20px;
  border-top: 1px solid #000;
  cursor: pointer;
}
.frequently_questions .item:last-child {
  border-bottom: 1px solid #000;
}
.frequently_questions .item.on {
  background-color: #1f1f21;
}
.frequently_questions .item.on p {
  color: #fff;
}
.frequently_questions .item.on .head .indicator::before {
  background-color: #fff;
}
.frequently_questions .item.on .head .indicator::after {
  display: none;
}
.frequently_questions .item:hover {
  background-color: #1f1f21;
}
.frequently_questions .item:hover p {
  color: #fff;
}
.frequently_questions .item:hover .indicator::before,
.frequently_questions .item:hover .indicator::after {
  background-color: #fff;
}
.frequently_questions .item .head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.frequently_questions .item .head p {
  line-height: 34px;
}
.frequently_questions .item .drop {
  display: none;
  -webkit-transition: none;
  -o-transition: none;
  transition: none;
  padding-top: 10px;
}

.popular_requests {
  padding-bottom: 60px;
}
.popular_requests h3 {
  font-size: 36px;
  line-height: 50px;
  font-weight: 400;
  margin-bottom: 20px;
}
.popular_requests .cont {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 24px;
}
.popular_requests .cont a {
  padding: 8px 16px;
  border: 1px solid transparent;
  background-color: #efefef;
  border-radius: 19px;
}
.popular_requests .cont a:hover {
  border: 1px solid #000;
}

.product {
  padding-bottom: 44px;
}
.product .cont {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.product .cont .title {
  height: -moz-max-content;
  height: -webkit-max-content;
  height: max-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 15px;
}
.product .cont .title p {
  font-weight: 300;
}
.product .cont .title h1 {
  font-size: 36px;
  line-height: 36px;
  font-weight: 300;
  width: 100%;
}
.product .cont .title div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
}
.product .cont .title div p {
  width: -moz-max-content;
  width: -webkit-max-content;
  width: max-content;
  font-size: 12px;
}
.product .cont .title div a {
  font-size: 12px;
  font-weight: 400;
}
.product .cont .title div .label {
  padding: 0 5px;
  font-size: 12px;
  background-color: #b4d4a2;
}
.product .cont.v2 {
  display: block;
}
.product .cont.v2 .visual {
  float: left;
  margin: 0 40px 40px 0;
}
.product .cont.v2 .info {
  width: calc(48.3% - 40px);
  float: right;
  margin-bottom: 20px;
}
.product .cont .visual {
  width: 51.7%;
  position: relative;
}
.product .cont .visual .labels_box {
  position: absolute;
  z-index: 1002;
  top: 20px;
  left: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 15px;
  padding-right: 100px;
}
.product .cont .visual .label {
  font-size: 14px;
  line-height: 20px;
  font-weight: 700;
  padding: 7px 19px;
  border-radius: 17px;
  text-transform: uppercase;
  font-weight: 700;
}
.product .cont .visual .label.discount {
  position: absolute;
  top: 0;
  right: 20px;
}
.product .cont .visual .md .close {
  display: none;
}
.product .cont .visual .md .big {
  width: 100%;
  position: relative;
}
.product .cont .visual .md .big .img {
  position: relative;
  aspect-ratio: 683/522;
  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;
  z-index: 1;
}
.product .cont .visual .md .big .img img {
  max-width: 100%;
  max-height: 100%;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  cursor: pointer;
}
.product .cont .visual .md .big .img iframe {
  width: 100%;
  height: 100%;
  border: none;
}
.product .cont .visual .md .big .slick-prev,
.product .cont .visual .md .big .slick-next {
  position: absolute;
  z-index: 1002;
  top: calc(50% - 24px);
  width: 48px;
  height: 48px;
  border-radius: 24px;
  border: 1px solid #000;
  font-size: 0;
  background: url("/img/arrow_black.svg") no-repeat 50%;
}
.product .cont .visual .md .big .slick-prev.slick-disabled,
.product .cont .visual .md .big .slick-next.slick-disabled {
  opacity: 0.3;
}
.product .cont .visual .md .big .slick-prev {
  left: 30px;
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}
.product .cont .visual .md .big .slick-prev:hover {
  -webkit-transform: rotate(180deg) scale(0.9);
  -ms-transform: rotate(180deg) scale(0.9);
  transform: rotate(180deg) scale(0.9);
}
.product .cont .visual .md .big .slick-next {
  right: 30px;
}
.product .cont .visual .md .big .slick-next:hover {
  -webkit-transform: scale(0.9);
  -ms-transform: scale(0.9);
  transform: scale(0.9);
}
.product .cont .visual .md.on {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1003;
  width: 100%;
  height: 100%;
  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;
  background-color: rgba(0, 0, 0, 0.8);
  padding: 20px 0;
}
.product .cont .visual .md.on .close {
  display: block;
  position: absolute;
  top: 20px;
  right: 20px;
  width: 48px;
  height: 48px;
  cursor: pointer;
  background: url("../img/close_white.svg") no-repeat 50%/60%;
}
.product .cont .visual .md.on .close:hover {
  background: url("../img/close_white.svg") no-repeat 50%/80%;
}
.product .cont .visual .md.on .big {
  max-width: 916px;
}
.product .cont .visual .md.on .big .img {
  aspect-ratio: initial;
}
.product .cont .visual .md.on .big .img img {
  -o-object-fit: contain;
  object-fit: contain;
  max-height: 95vh;
}
.product .cont .visual .small {
  margin-top: 17px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.product .cont .visual .small .slider {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: calc(100% - 106px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow-x: auto;
  gap: 10px;
  -ms-scroll-snap-type: x mandatory;
  scroll-snap-type: x mandatory;
}
.product .cont .visual .small .slider::-webkit-scrollbar {
  width: 0;
  height: 0;
}
.product .cont .visual .small .slider .img {
  cursor: pointer;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  position: relative;
  width: 144px;
  height: 109px;
  padding: 8px;
  border: 1px solid transparent;
}
.product .cont .visual .small .slider .img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.product .cont .visual .small .slider .img::before,
.product .cont .visual .small .slider .img::after {
  display: none;
}
.product .cont .visual .small .slider .img span::before,
.product .cont .visual .small .slider .img span::after {
  display: none;
}
.product .cont .visual .small .slider .img.on,
.product .cont .visual .small .slider .img:hover {
  border: 1px solid #e4e4e4;
}
.product .cont .visual .small .slider .img.on::before,
.product .cont .visual .small .slider .img.on::after,
.product .cont .visual .small .slider .img:hover::before,
.product .cont .visual .small .slider .img:hover::after {
  display: block;
}
.product .cont .visual .small .slider .img.on span::before,
.product .cont .visual .small .slider .img.on span::after,
.product .cont .visual .small .slider .img:hover span::before,
.product .cont .visual .small .slider .img:hover span::after {
  display: block;
}
.product .cont .visual .small button {
  width: 30px;
  height: 30px;
  border: 1px solid #000;
  border-radius: 15px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  background: url("/img/arrow_black.svg") no-repeat 50%;
}
.product .cont .visual .small button.slick-disabled {
  opacity: 0.3;
}
.product .cont .visual .small button.prev {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}
.product .cont .visual .small button.prev:hover {
  -webkit-transform: rotate(180deg) scale(0.9);
  -ms-transform: rotate(180deg) scale(0.9);
  transform: rotate(180deg) scale(0.9);
}
.product .cont .visual .small button.next:hover {
  -webkit-transform: scale(0.9);
  -ms-transform: scale(0.9);
  transform: scale(0.9);
}
.product .cont .info {
  width: 43.2%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 18px 10px;
  height: -moz-max-content;
  height: -webkit-max-content;
  height: max-content;
}
.product .cont .info .price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 15px;
  width: 100%;
}
.product .cont .info .price > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
}
.product .cont .info .price > div:first-child .current,
.product .cont .info .price > div:first-child .old {
  font-size: 12px;
}
.product .cont .info .price .current {
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  white-space: nowrap;
}
.product .cont .info .price .old {
  font-size: 18px;
  font-weight: 300;
  color: #a7a7a7;
  text-decoration: line-through;
  margin-right: 10px;
  white-space: nowrap;
}
.product .cont .info .size {
  width: 50%;
}
.product .cont .info .counter {
  margin-right: 20px;
  height: -moz-max-content;
  height: -webkit-max-content;
  height: max-content;
  -ms-flex-item-align: end;
  -ms-grid-row-align: end;
  align-self: end;
}
.product .cont .info .purpose {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 25px;
}
.product .cont .info .purpose div {
  padding: 5px 50px 5px 0;
  border-right: 1px solid #d9d9d9;
}
.product .cont .info .purpose div:last-child {
  border-right: none;
}
.product .cont .info .purpose div p {
  font-size: 12px;
  font-weight: 700;
  color: #838383;
}
.product .cont .info .purpose div span {
  font-size: 14px;
}
.product .cont .info .params {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 0 40px;
}
.product .cont .info .params div {
  width: calc(50% - 20px);
  padding: 8px 0 6px;
  border-bottom: 1px solid #d9d9d9;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 20px;
}
.product .cont .info .params div p,
.product .cont .info .params div span {
  width: calc(60% - 10px);
  font-size: 12px;
  line-height: 18px;
  font-weight: 300;
}
.product .cont .info .params div span {
  width: calc(40% - 10px);
  text-align: right;
}
.product .cont .info .buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
}
.product .cont .info .buttons button {
  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;
  gap: 10px;
  height: 40px;
  font-size: 14px;
  text-transform: uppercase;
}
.product .cont .info .buttons button:hover {
  -webkit-transform: scale(0.95);
  -ms-transform: scale(0.95);
  transform: scale(0.95);
}
.product .cont .info .buttons button:first-child {
  background-color: #000;
  color: #fff;
  width: 133px;
}
.product .cont .info .buttons button:first-child::before {
  content: "";
  width: 18px;
  height: 18px;
  background: url("/img/basket_white.svg") no-repeat 50%;
}
.product .cont .info .buttons button:nth-child(2) {
  background-color: #bfb19f;
  width: 230px;
  color: #000;
}
.product .cont .info .buttons button:nth-child(3) {
  border: 1px solid transparent;
  width: 40px;
  height: 40px;
  background: url("/img/compare.svg") no-repeat 50% #efefef;
}
.product .cont .info .buttons button:nth-child(3):hover {
  border: 1px solid #000;
}
.product .cont .info .calculate-cost {
  width: 230px;
}
.product .cont .info .text {
  width: 100%;
  margin-top: 8px;
}
.product .cont .info .text p {
  font-size: 16px;
  line-height: 26px;
  font-weight: 300;
}
.product .cont .info .text button {
  width: 100%;
  padding: 4px;
  text-align: center;
  text-transform: uppercase;
  font-size: 10px;
  line-height: 16px;
  background-color: #efefef;
  margin-top: 10px;
  border: 1px solid transparent;
}
.product .cont .info .text button:hover {
  border: 1px solid #000;
}
.product .cont .info .wtf_box {
  width: 100%;
  margin-top: 10px;
}
.product .cont .info .wtf_box .item {
  border-top: 1px solid #000;
  cursor: pointer;
}
.product .cont .info .wtf_box .item:last-child {
  border-bottom: 1px solid #000;
}
.product .cont .info .wtf_box .item .head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  font-size: 12px;
  line-height: 18px;
  font-weight: 700;
  padding: 11px 20px 11px 0;
}
.product .cont .info .wtf_box .item .drop {
  display: none;
  -webkit-transition: none;
  -o-transition: none;
  transition: none;
}
.product .cont .info .wtf_box .item .drop .txt {
  padding: 20px 48px 20px 0;
}
.product .cont .info .wtf_box .item .drop .txt p {
  font-size: 14px;
  line-height: 16px;
  font-weight: 300;
}
.product .cont .info .wtf_box .item.on .head .indicator::after {
  display: none;
}

@media (max-width: 950px) {
  .product .cont {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 30px;
  }
  .product .cont.v2 .visual {
    float: initial;
    margin: 0;
  }
  .product .cont.v2 .info {
    width: 100%;
    float: initial;
    margin: 40px 0;
    gap: 30px;
  }
  .product .cont.v2 .info .title {
    width: 100%;
  }
  .product .cont .visual {
    max-width: 100%;
    width: 100%;
    margin: 0 auto;
  }
  .product .cont .info {
    width: 100%;
  }
  .product .cont .info .counter {
    width: 100%;
  }
}
@media (max-width: 650px) {
  .product .cont .visual .labels_box {
    top: 15px;
    left: 15px;
  }
  .product .cont .visual .md .big .img {
    aspect-ratio: 365/300;
    min-height: 300px;
  }
  .product .cont .visual .md .big .img .bestseller {
    top: 14px;
    left: 16px;
  }
  .product .cont .visual .md .big .slick-prev {
    left: 0;
  }
  .product .cont .visual .md .big .slick-next {
    right: 0;
  }
  .product .cont .visual .small .slider {
    width: calc(100% - 80px);
  }
  .product .cont .info .title p {
    font-size: 14px;
  }
  .product .cont .info .title h1 {
    font-size: 22px;
    line-height: 30px;
    font-weight: 400;
  }
  .product .cont .info .params {
    display: none;
  }
  .product .cont .info .purpose {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 0;
  }
  .product .cont .info .purpose div {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 10px;
    border: 0;
  }
  .product .cont .info .purpose div p {
    min-width: 80px;
  }
  .product .cont .info .price {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
  .product .cont .info .buttons {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 20px;
    width: 100%;
  }
  .product .cont .info .buttons button {
    position: relative;
  }
  .product .cont .info .buttons button:first-child {
    width: 100%;
  }
  .product .cont .info .buttons button:nth-child(2) {
    width: calc(100% - 60px);
  }
  .product .cont .info .calculate_cost {
    width: 100%;
  }
  .product .cont .info .text {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
  .product .cont .info .wtf_box {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
    width: calc(100% + 28px);
    margin-left: -14px;
    margin-right: -14px;
  }
  .product .cont .info .wtf_box .item {
    width: 100%;
    padding: 13px 20px 13px 30px;
  }
}
.free_sample {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 20px;
  background-color: #b4d4a2;
  position: relative;
  max-width: 1320px;
  width: 100%;
  margin: 0 auto;
  border: 1px solid transparent;
  padding-right: 14px;
}
.free_sample div {
  font-size: 36px;
  line-height: 48px;
  font-weight: 300;
  margin: 0 auto;
  text-transform: uppercase;
}
.free_sample button {
  margin: 0 auto;
  white-space: nowrap;
}

@media (max-width: 950px) {
  .free_sample.decor_top::before,
  .free_sample.decor_top::after {
    display: none;
  }
  .free_sample div {
    font-size: 24px;
    line-height: 36px;
  }
  .free_sample div.decor_bottom::before,
  .free_sample div.decor_bottom::after {
    display: none;
  }
}
@media (max-width: 600px) {
  .free_sample {
    padding: 30px 13px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .free_sample div {
    width: calc(100% - 143px);
    text-align: center;
  }
  .free_sample a {
    margin: 0 0 0 auto;
  }
}
.interested {
  margin-top: 40px;
  padding-bottom: 40px;
}
.interested .title {
  font-size: 36px;
  line-height: 36px;
  font-weight: 300;
  margin-bottom: 30px;
}
.interested a {
  border: 1px solid transparent;
}

@media (max-width: 650px) {
  .interested {
    padding-bottom: 30px;
  }
  .interested h4 {
    font-size: 24px;
  }
}
.services_box {
  padding-top: 60px;
  padding-bottom: 60px;
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
}
.services_box h2 {
  font-size: 72px;
  line-height: 72px;
  font-weight: 400;
  margin-bottom: 60px;
}
.services_box h3 {
  font-size: 36px;
  line-height: 72px;
  font-weight: 300;
}
.services_box .cont {
  padding: 1px 1px 20px 1px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
  overflow: auto;
}
.services_box .cont a {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  padding: 5px;
  border: 1px solid transparent;
}
.services_box .cont a::before,
.services_box .cont a::after {
  opacity: 0;
}
.services_box .cont a img {
  width: 100px;
  height: 100px;
}
.services_box .cont a p {
  width: 200px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 10px 10px 10px 30px;
  background-color: #efefef;
  font-weight: 300;
}
.services_box .cont a p::before,
.services_box .cont a p::after {
  opacity: 0;
}
.services_box .cont a:hover {
  border: 1px solid #d9d9d9;
}
.services_box .cont a:hover::before,
.services_box .cont a:hover::after {
  opacity: 1;
}
.services_box .cont a:hover p::before,
.services_box .cont a:hover p::after {
  opacity: 1;
}

@media (max-width: 768px) {
  .services_box h2 {
    font-size: 40px;
    line-height: 48px;
    margin-bottom: 30px;
  }
}
.shopping_bag {
  padding-bottom: 40px;
}
.shopping_bag h2 {
  font-size: 36px;
  line-height: 48px;
  font-weight: 300;
  margin: 10px 0 30px;
}
.shopping_bag .cont {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 1px;
}
.shopping_bag .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -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;
  border-top: 1px solid transparent;
  border-bottom: 1px solid transparent;
  position: relative;
}
.shopping_bag .item::before {
  content: "";
  width: calc(100% - 146px);
  height: 1px;
  background-color: #d9d9d9;
  position: absolute;
  top: 0;
  right: 0;
}
.shopping_bag .item:last-child::after {
  content: "";
  width: calc(100% - 146px);
  height: 1px;
  background-color: #d9d9d9;
  position: absolute;
  bottom: 0;
  right: 0;
}
.shopping_bag .item .name {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 20px;
  width: -moz-fit-content;
  width: -webkit-fit-content;
  width: fit-content;
}
.shopping_bag .item .name img {
  width: 126px;
  height: 126px;
}
.shopping_bag .item .name .text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 7px 10px;
}
.shopping_bag .item .name .text a {
  font-weight: 300;
  width: 100%;
}
.shopping_bag .item .name .text a:hover {
  color: #709e57;
}
.shopping_bag .item .name .text h6 {
  font-size: 20px;
  line-height: 20px;
  font-weight: 300;
  width: 100%;
}
.shopping_bag .item .name .text .article {
  width: -moz-max-content;
  width: -webkit-max-content;
  width: max-content;
  font-size: 12px;
}
.shopping_bag .item .name .text .label {
  padding: 0 5px;
  font-size: 12px;
  background-color: #b4d4a2;
}
.shopping_bag .item .inf {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 20px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 423px;
  padding-right: 15px;
}
.shopping_bag .item .inf .price {
  margin-left: auto;
  white-space: nowrap;
}
.shopping_bag .item .inf .price .current {
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1;
}
.shopping_bag .item .inf .close {
  width: 24px;
  height: 24px;
  background: url("/img/close.svg") no-repeat 50%;
}
.shopping_bag .item .inf .close:hover {
  background: url("/img/close_white.svg") no-repeat 50% #000;
}
.shopping_bag .total {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: end;
  gap: 10px;
  text-transform: uppercase;
  margin: 20px 0;
  font-weight: 300;
}
.shopping_bag .total p {
  font-weight: 700;
  margin-right: 7%;
}
.shopping_bag .buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 14px;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: end;
}
.shopping_bag .buttons a {
  width: 211px;
}
.shopping_bag .buttons button {
  width: 180px;
}

@media (max-width: 860px) {
  .shopping_bag h2 {
    display: none;
  }
  .shopping_bag .cont {
    gap: 15px;
  }
  .shopping_bag .item {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 15px;
    padding-bottom: 10px;
    padding: 10px;
    border-radius: 4px;
    border: 1px solid #e4e4e4;
    position: relative;
  }
  .shopping_bag .item::before,
  .shopping_bag .item::after {
    display: none;
  }
  .shopping_bag .item .name {
    width: 100%;
  }
  .shopping_bag .item .name img {
    border-radius: 4px;
    width: 108px;
    height: 92px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
  }
  .shopping_bag .item .inf {
    width: initial;
  }
  .shopping_bag .item .inf .close {
    position: absolute;
    top: 12px;
    right: 12px;
    margin: 0;
  }
}
@media (max-width: 725px) {
  .shopping_bag .item .size {
    margin: 0;
  }
  .shopping_bag .item .size button.on {
    background-color: #bfb19f;
    border: 1px solid #bfb19f;
    color: #000;
  }
}
@media (max-width: 580px) {
  .shopping_bag .item {
    gap: 20px;
  }
  .shopping_bag .item .name p {
    font-size: 14px;
  }
  .shopping_bag .item .name .text h6 {
    font-size: 16px;
    font-weight: 400;
    white-space: initial;
  }
  .shopping_bag .item .inf {
    width: 100%;
  }
  .shopping_bag .total {
    font-size: 16px;
  }
  .shopping_bag .total p {
    font-weight: 400;
    margin-right: 7%;
  }
  .shopping_bag .total p span {
    font-size: 22px;
    font-weight: 700;
  }
  .shopping_bag .buttons {
    width: 100%;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .shopping_bag .buttons a,
  .shopping_bag .buttons button {
    width: 100%;
  }
}
.checkout {
  padding-bottom: 96px;
}
.checkout .cont {
  margin-top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.checkout .cont form {
  max-width: 431px;
  height: -moz-max-content;
  height: -webkit-max-content;
  height: max-content;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 20px;
}
.checkout .cont form h2 {
  font-size: 36px;
  line-height: 42px;
  font-weight: 300;
}
.checkout .cont form p {
  font-size: 14px;
  line-height: 17px;
  font-weight: 300;
  text-align: center;
}
.checkout .cont form .field {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 12px;
}
.checkout .cont form .field p {
  text-align: left;
}
.checkout .cont form .field input,
.checkout .cont form .field textarea {
  font-size: 14px;
  line-height: 17px;
  padding: 12px 15px;
  border: 1px solid #bfb19f;
}
.checkout .cont form .radio_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1px;
  border: 1px solid #bfb19f;
  background-color: #bfb19f;
  margin-top: 18px;
}
.checkout .cont form .radio_box label {
  width: 50%;
  cursor: pointer;
}
.checkout .cont form .radio_box label span {
  display: block;
  width: 100%;
  font-size: 14px;
  line-height: 38px;
  text-align: center;
  background-color: #fff;
}
.checkout .cont form .radio_box label input {
  display: none;
}
.checkout .cont form .radio_box label input:checked ~ span {
  background-color: #b4d4a2;
}
.checkout .cont form button {
  min-width: 180px;
  margin-left: auto;
  padding: 11px;
}
.checkout .cont .basket {
  max-width: 747px;
  width: 100%;
}
.checkout .cont .basket .title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 56px;
}
.checkout .cont .basket .title h3 {
  font-size: 24px;
  line-height: 36px;
  font-weight: 300;
}
.checkout .cont .basket .title a {
  width: 264px;
}
.checkout .cont .basket .box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 1px;
}
.checkout .cont .basket .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  margin-bottom: 2px;
}
.checkout .cont .basket .item img {
  width: 126px;
  height: 126px;
  -o-object-fit: cover;
  object-fit: cover;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.checkout .cont .basket .item .info {
  width: calc(100% - 146px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-top: 1px solid #d9d9d9;
  font-size: 12px;
  line-height: 18px;
  font-weight: 300;
}
.checkout .cont .basket .item .info .name {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 7px 10px;
  width: -moz-min-content;
  width: -webkit-min-content;
  width: min-content;
  width: 45%;
}
.checkout .cont .basket .item .info .name p {
  width: 100%;
}
.checkout .cont .basket .item .info .name h6 {
  font-size: 20px;
  font-weight: 300;
  width: 100%;
  overflow: hidden;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
}
.checkout .cont .basket .item .info .name .label {
  padding: 0 5px;
  background-color: #b4d4a2;
}
.checkout .cont .basket .item .info .name .proportions {
  width: 100%;
}
.checkout .cont .basket .item .info .name .proportions span {
  font-size: 16px;
  font-weight: 400;
}
.checkout .cont .basket .item .info .qty {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  white-space: nowrap;
}
.checkout .cont .basket .item .info .qty span {
  font-size: 16px;
  line-height: 18px;
  font-weight: 400;
}
.checkout .cont .basket .item .info .qty span:last-child {
  display: none;
}
.checkout .cont .basket .item .info .price {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.checkout .cont .basket .item .info .price .current {
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1;
}
.checkout .cont .basket .item .info .total {
  display: none;
}
.checkout .cont .basket .item .info .close {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  margin-right: 15px;
  background: url("/img/close.svg") no-repeat 50%;
}
.checkout .cont .basket .item .info .close:hover {
  background: url("/img/close_white.svg") no-repeat 50% #000;
}
.checkout .cont .basket .item:last-child {
  margin-bottom: 0;
}
.checkout .cont .basket .item:last-child .info {
  border-bottom: 1px solid #d9d9d9;
}
.checkout .cont .basket .all {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: end;
  gap: 10px;
  text-transform: uppercase;
  margin-top: 25px;
}
.checkout .cont .basket .all p {
  font-weight: 300;
}
.checkout .cont .basket .all h6 {
  font-size: 16px;
  margin-right: 80px;
}

@media (max-width: 1040px) {
  .checkout .cont {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .checkout .cont form {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
}
@media (max-width: 710px) {
  .checkout .cont {
    margin-top: 0;
  }
  .checkout .cont .basket .title {
    display: none;
  }
  .checkout .cont .basket .box {
    gap: 9px;
  }
  .checkout .cont .basket .item {
    padding: 10px;
    border: 1px solid #e4e4e4;
    border-radius: 4px;
    gap: 16px;
    position: relative;
  }
  .checkout .cont .basket .item img {
    width: 100px;
    height: 100px;
    border-radius: 4px;
  }
  .checkout .cont .basket .item .info {
    border: 0;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: start;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 0 5px;
    width: calc(100% - 115px);
  }
  .checkout .cont .basket .item .info:last-child {
    border: 0;
  }
  .checkout .cont .basket .item .info .name {
    width: 100%;
    gap: 0 5px;
  }
  .checkout .cont .basket .item .info .name p {
    margin-bottom: 3px;
  }
  .checkout .cont .basket .item .info .name h6 {
    font-size: 16px;
    font-weight: 700;
  }
  .checkout .cont .basket .item .info .name .label {
    color: #709e57;
    background-color: transparent;
    width: 100%;
    padding: 0;
  }
  .checkout .cont .basket .item .info .name .article {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
    color: #838383;
  }
  .checkout .cont .basket .item .info .name .proportions {
    width: -moz-max-content;
    width: -webkit-max-content;
    width: max-content;
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
    color: #838383;
  }
  .checkout .cont .basket .item .info .name .proportions span {
    font-size: 12px;
  }
  .checkout .cont .basket .item .info .proportions {
    margin-left: 10px;
  }
  .checkout .cont .basket .item .info .proportions span {
    text-transform: uppercase;
  }
  .checkout .cont .basket .item .info .qty {
    font-size: 0;
    height: 14px;
  }
  .checkout .cont .basket .item .info .qty span {
    font-size: 12px;
    line-height: 14px;
  }
  .checkout .cont .basket .item .info .qty span:last-child {
    display: inline-block;
  }
  .checkout .cont .basket .item .info .price .old {
    display: none;
  }
  .checkout .cont .basket .item .info .price .current {
    font-size: 12px;
    line-height: 14px;
    font-weight: 400;
  }
  .checkout .cont .basket .item .info .total {
    display: block;
    margin-left: 25px;
    font-weight: 400;
  }
  .checkout .cont .basket .item .info .close {
    position: absolute;
    margin: 0;
    top: 5px;
    right: 5px;
  }
  .checkout .cont .basket .all {
    line-height: 30px;
  }
  .checkout .cont .basket .all h6 {
    font-size: 22px;
    margin-right: 20px;
  }
  .checkout .cont form h2 {
    font-size: 24px;
    line-height: 36px;
  }
  .checkout .cont form button {
    width: 100%;
  }
}
.return {
  padding-bottom: 78px;
}
.return .cont {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
}
.return .cont .text {
  width: 592px;
}
.return .cont .text h1 {
  font-size: 36px;
  line-height: 48px;
  font-weight: 300;
  margin: 20px 0 40px;
}
.return .cont .text p {
  line-height: 24px;
}
.return .cont .text h6 {
  font-size: 16px;
  margin: 35px 0 20px;
}
.return .cont .text a {
  display: block;
  margin-top: 50px;
  width: 230px;
}
.return .cont .img {
  width: calc(100% - 622px);
}
.return .cont .img img {
  margin-left: auto;
  max-width: 100%;
}

@media (max-width: 850px) {
  .return {
    padding-bottom: 63px;
  }
  .return .cont {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .return .cont .img {
    width: 100%;
  }
  .return .cont .img img {
    width: 191px;
  }
  .return .cont .text {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
    width: 100%;
  }
  .return .cont .text a {
    margin: 50px auto 0;
  }
}
.about {
  padding-bottom: 30px;
}
.about h1 {
  font-size: 72px;
  line-height: 72px;
  font-weight: 300;
  margin: 20px 0 60px;
}
.about h2 {
  font-size: 36px;
  line-height: 48px;
  font-weight: 300;
  margin: 0 0 40px;
}
.about .square {
  width: 30px;
  height: 30px;
}
.about .square.v1 {
  background: url("/img/about_us/about_dec1.svg") no-repeat 50% #bfb19f;
}
.about .square.v2 {
  background: url("/img/about_us/about_dec2.svg") no-repeat 50% #000;
}
.about .square.v3 {
  background: url("/img/about_us/about_dec3.svg") no-repeat 50% #bfb19f;
}
.about .square.v4 {
  background: url("/img/about_us/about_dec4.svg") no-repeat 50% #000;
}
.about .square.v5 {
  background: url("/img/about_us/about_dec4.svg") no-repeat 50% #b4d4a2;
}
.about .square.v6 {
  background: url("/img/about_us/about_dec1.svg") no-repeat 50% #efefef;
}
.about .square.v7 {
  background: url("/img/about_us/about_dec4.svg") no-repeat 50% #838383;
}
.about .square.v8 {
  background: url("/img/about_us/about_dec4.svg") no-repeat 50% #bfb19f;
}
.about .square.v9 {
  background: url("/img/about_us/about_dec3.svg") no-repeat 50% #1f1f21;
}
.about .info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 20px;
  overflow: auto;
  padding-bottom: 10px;
}
.about .info a {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 300px;
  height: 300px;
  padding: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 10px;
}
.about .info a .img {
  width: 72px;
  height: 72px;
  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;
}
.about .info a:nth-child(1) .img {
  background: url("/img/about_us/about_info1.svg") no-repeat 50%;
}
.about .info a:nth-child(2) .img {
  background: url("/img/about_us/about_info2.svg") no-repeat 50%;
}
.about .info a:nth-child(3) .img {
  background: url("/img/about_us/about_info3.svg") no-repeat 50%;
}
.about .info a:nth-child(4) .img {
  background: url("/img/about_us/about_info4.svg") no-repeat 50%;
}
.about .info a h3 {
  font-size: 28px;
  line-height: 28px;
  font-weight: 400;
  -webkit-transition: none;
  -o-transition: none;
  transition: none;
}
.about .info a p {
  font-size: 16px;
  line-height: 22px;
  -webkit-transition: none;
  -o-transition: none;
  transition: none;
}
.about .info a:hover {
  background-color: #1f1f21;
  color: #fff;
}
.about .info a:hover:nth-child(1) .img {
  background: url("/img/about_us/about_info1_w.svg") no-repeat 50%;
}
.about .info a:hover:nth-child(2) .img {
  background: url("/img/about_us/about_info2_w.svg") no-repeat 50%;
}
.about .info a:hover:nth-child(3) .img {
  background: url("/img/about_us/about_info3_w.svg") no-repeat 50%;
}
.about .info a:hover:nth-child(4) .img {
  background: url("/img/about_us/about_info4_w.svg") no-repeat 50%;
}
.about .cont {
  padding-top: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.about .cont h2 {
  margin: 0;
  padding-bottom: 40px;
  border-bottom: 1px solid #000;
}
.about .cont .desc {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 40px;
  padding: 40px 0 60px;
}
.about .cont .desc div {
  width: calc(50% - 20px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 20px;
}
.about .cont .desc div:first-child p {
  font-size: 22px;
  line-height: 34px;
}
.about .cont .desc img {
  width: 100%;
}
.about .cont .points {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 40px;
}
.about .cont .points .item {
  width: calc((100% - 80px) / 3);
  font-weight: 300;
}
.about .cont .points .item .title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 20px;
}

.notice {
  border-top: 1px solid #000;
  padding-top: 60px;
  padding-bottom: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.notice a {
  width: 48.48%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -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;
  padding: 40px;
}
.notice a:nth-child(1) {
  background-color: #b4d4a2;
}
.notice a:nth-child(2) {
  background-color: #efefef;
}
.notice a:hover {
  -webkit-transform: scale(0.95);
  -ms-transform: scale(0.95);
  transform: scale(0.95);
}
.notice a div {
  width: 72px;
  height: 72px;
  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;
}
.notice a div img {
  max-width: 100%;
}
.notice a div.title {
  width: 100%;
  font-size: 36px;
  line-height: 48px;
  font-weight: 400;
  margin: 20px 0 10px;
  text-align: center;
}
.notice a p {
  font-size: 22px;
  line-height: 34px;
  font-weight: 300;
  text-align: center;
}

@media (max-width: 1023px) {
  .about .info {
    width: 100%;
    overflow: auto;
    gap: 30px;
    padding-bottom: 20px;
  }
}
@media (max-width: 768px) {
  .about h1 {
    font-size: 40px;
    line-height: 40px;
    margin: 0 0 20px;
  }
  .about h2 {
    font-size: 30px;
    line-height: 30px;
    margin: 0 0 20px;
  }
  .about .info a h3 {
    font-size: 24px;
    line-height: 24px;
  }
  .about .cont .desc div {
    width: 100%;
  }
  .notice {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 30px;
  }
  .notice a {
    width: 100%;
  }
}
@media (max-width: 500px) {
  .notice {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 30px;
  }
  .notice a {
    padding: 20px;
  }
  .notice a h4 {
    font-size: 22px;
    line-height: 36px;
  }
  .notice a p {
    font-size: 18px;
    line-height: 24px;
  }
}
.botique {
  padding-bottom: 60px;
}
.botique h1 {
  font-size: 36px;
  line-height: 50px;
  font-weight: 300;
  margin: 20px 0;
}
.botique .cont {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 40px;
}
.botique .cont img {
  width: 100%;
  height: 500px;
  -o-object-fit: cover;
  object-fit: cover;
}
.botique .cont div {
  width: calc(50% - 20px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 20px;
}
.botique .cont div:nth-child(2) p {
  font-size: 22px;
  line-height: 34px;
}

@media (max-width: 768px) {
  .botique h1 {
    margin: 20px 0;
  }
  .botique .cont img {
    height: 350px;
  }
  .botique .cont div {
    width: 100%;
  }
}
.shipping_payment {
  padding-bottom: 30px;
}
.shipping_payment .cont {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 20px;
}
.shipping_payment .cont .text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 30px;
  width: calc(70.3% - 30px);
}
.shipping_payment .cont .text h1 {
  width: 100%;
  margin: 20px 0 0;
  font-size: 36px;
  line-height: 48px;
  font-weight: 300;
}
.shipping_payment .cont .text .box {
  width: 43.4%;
  position: relative;
  border: 1px solid #e4e4e4;
  padding: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 30px;
  line-height: 24px;
}
.shipping_payment .cont .text .box h6 {
  font-size: 16px;
}
.shipping_payment .cont .text .box div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 17px;
  font-weight: 300;
}
.shipping_payment .cont .text .box div p span {
  font-weight: 700;
}
.shipping_payment .cont .text a {
  display: block;
  width: 230px;
}
.shipping_payment .cont img {
  width: 29.7%;
  height: -moz-max-content;
  height: -webkit-max-content;
  height: max-content;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

@media (max-width: 850px) {
  .shipping_payment {
    padding-bottom: 40px;
  }
  .shipping_payment .cont {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 20px;
  }
  .shipping_payment .cont .text {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
    width: 100%;
  }
  .shipping_payment .cont .text h1 {
    margin: 0;
  }
  .shipping_payment .cont .text .box {
    width: calc(50% - 15px);
  }
  .shipping_payment .cont img {
    margin-left: auto;
    width: 40%;
    min-width: 191px;
  }
}
@media (max-width: 600px) {
  .shipping_payment .cont .text .box {
    width: 100%;
  }
  .shipping_payment .cont .text a {
    margin: 0 auto;
  }
}
.blog {
  padding-bottom: 50px;
}
.blog h1 {
  font-size: 36px;
  line-height: 48px;
  font-weight: 300;
  margin: 20px 0;
}
.blog .cont {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 50px 0;
  margin-top: 20px;
}
.blog .cont .item {
  display: block;
  width: 31.4%;
  border: 1px solid transparent;
  position: relative;
  padding: 25px 15px 10px;
}
.blog .cont .item::before,
.blog .cont .item::after {
  opacity: 0;
}
.blog .cont .item .title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 24px;
  font-weight: 300;
}
.blog .cont .item .title::before {
  content: "";
  width: 32px;
  height: 32px;
  background: url("/img/about_us/about_dec4.svg") no-repeat 50% #000;
}
.blog .cont .item .title p:last-child {
  margin-left: auto;
}
.blog .cont .item img {
  width: 100%;
  aspect-ratio: 1/1;
  margin: 16px 0;
  -o-object-fit: cover;
  object-fit: cover;
}
.blog .cont .item .name {
  font-size: 22px;
  line-height: 27px;
  font-weight: 300;
}
.blog .cont .item .name p {
  font-size: 12px;
  line-height: 24px;
  font-weight: 700;
}
.blog .cont .item .name::before,
.blog .cont .item .name::after {
  opacity: 0;
}
.blog .cont .item .btn {
  margin-top: 15px;
  border: 1px solid transparent;
  opacity: 0;
}
.blog .cont .item:hover {
  border: 1px solid #e4e4e4;
}
.blog .cont .item:hover::before,
.blog .cont .item:hover::after {
  opacity: 1;
}
.blog .cont .item:hover .name {
  text-decoration: underline;
}
.blog .cont .item:hover .name::before,
.blog .cont .item:hover .name::after {
  opacity: 1;
}
.blog .cont .item:hover .btn {
  opacity: 1;
}
.blog .pagin {
  margin-top: 30px;
}

@media (max-width: 850px) {
  .blog h2 {
    font-size: 24px;
    line-height: 30px;
  }
  .blog .cont .item {
    width: 100%;
    padding: 0;
  }
  .blog .cont .item::before,
  .blog .cont .item::after {
    display: none;
  }
  .blog .cont .item img {
    aspect-ratio: 364/204;
    margin: 20px 0;
  }
  .blog .cont .item .name {
    font-size: 18px;
  }
  .blog .cont .item .name::before,
  .blog .cont .item .name::after {
    display: none;
  }
  .blog .cont .item .btn {
    display: none;
  }
}
.more_info {
  margin-top: 68px;
  margin-bottom: 50px;
}
.more_info .title {
  font-size: 22px;
  line-height: 27px;
  font-weight: 300;
  margin-bottom: 20px;
}
.more_info a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 16px;
  line-height: 24px;
  padding-left: 18px;
  border-top: 1px solid #000;
}
.more_info a:last-child {
  border-bottom: 1px solid #000;
}
.more_info a div {
  margin-right: 40px;
}
.more_info a span {
  margin-left: auto;
  padding: 17px 20px;
  text-transform: uppercase;
  background-color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 5px;
  opacity: 0;
}
.more_info a span::after {
  content: "";
  width: 24px;
  height: 24px;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
  background: url("/img/arrow_black.svg") no-repeat 50%;
}
.more_info a:hover {
  background-color: #000;
}
.more_info a:hover div,
.more_info a:hover p {
  color: #fff;
}
.more_info a:hover span {
  opacity: 1;
}

@media (max-width: 850px) {
  .more_info {
    margin-top: 36px;
  }
  .more_info h6 {
    font-size: 18px;
  }
  .more_info a {
    width: calc(100% + 28px);
    margin-left: -14px;
    padding: 18px 0 18px 18px;
  }
  .more_info a span {
    display: none;
  }
}
.blog_item {
  padding-bottom: 80px;
}
.blog_item h1 {
  font-size: 36px;
  line-height: 48px;
  font-weight: 300;
  margin: 0 0 16px;
}
.blog_item .tags {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.blog_item .tags a {
  font-size: 10px;
  border-radius: 10px;
  line-height: 16px;
  padding: 2px 8px;
  background-color: #efefef;
}
.blog_item .tags a:hover {
  background-color: #000;
  color: #fff;
}
.blog_item img {
  width: 100%;
  height: 500px;
  -o-object-fit: cover;
  object-fit: cover;
}
.blog_item .date {
  font-size: 12px;
  line-height: 24px;
  margin: 12px 0 40px;
}
.blog_item .text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 40px;
  max-width: 1233px;
  width: 100%;
}
.blog_item .text h5 {
  font-size: 22px;
  line-height: 34px;
  font-weight: 400;
}
.blog_item .text p {
  line-height: 34px;
}
.blog_item .text a {
  text-decoration: underline;
}
.blog_item .text a:hover {
  text-decoration: none;
}
.blog_item .text ol {
  margin-left: 20px;
}
.blog_item .text ol li {
  font-weight: 700;
}
.blog_item .text ol li p {
  font-weight: 400;
}
.blog_item .text ol li p span {
  font-weight: 700;
}

@media (max-width: 850px) {
  .blog_item {
    padding-bottom: 40px;
  }
  .blog_item h2 {
    font-size: 30px;
    line-height: 40px;
    margin: 0 0 20px;
  }
  .blog_item img {
    height: 350px;
  }
  .blog_item h6 {
    margin: 12px 0 24px;
  }
  .blog_item .text {
    gap: 30px;
  }
}
.projects {
  padding-bottom: 33px;
}
.projects .crumbs {
  max-width: 1320px;
  width: 100%;
  margin: 0 auto;
}
.projects .title {
  max-width: 1320px;
  width: 100%;
  margin: 40px auto 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 20px;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.projects .title h1 {
  font-size: 72px;
  line-height: 72px;
  font-weight: 300;
  position: relative;
}
.projects .title h1 span {
  font-size: 22px;
  position: absolute;
  top: -24px;
  right: -25px;
}
.projects .title p {
  font-weight: 300;
  font-size: 22px;
  line-height: 32px;
  max-width: 773px;
  width: 100%;
}
.projects nav {
  max-width: 1320px;
  padding: 0 0 14px;
  width: 100%;
  margin: 0 auto 20px;
  overflow: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 10px;
}
.projects nav a {
  font-size: 22px;
  line-height: 26px;
  padding: 17px;
  border-radius: 3px;
  border: 2px solid transparent;
  white-space: nowrap;
}
.projects nav a:hover {
  background-color: #e4e4e4;
}
.projects nav a.on {
  border: 2px solid #515157;
}
.projects .cont {
  background-color: #1f1f21;
  padding: 70px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 120px 0;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.projects .cont .item {
  color: #fff;
  line-height: 24px;
  width: 42.15%;
}
.projects .cont .item span {
  padding-right: 15px;
}
.projects .cont .item .pictures {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 15px 20px;
  margin: 15px 0;
}
.projects .cont .item .pictures a {
  position: relative;
  width: 100%;
}
.projects .cont .item .pictures a img {
  width: 100%;
  height: 401px;
  -o-object-fit: cover;
  object-fit: cover;
}
.projects .cont .item .pictures a::after {
  content: "";
  width: 36px;
  height: 36px;
  border-radius: 18px;
  background: url("/img/arrow_white.svg") no-repeat 50% #1f1f21;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  -webkit-transform: rotate(-45deg) scale(2);
  -ms-transform: rotate(-45deg) scale(2);
  transform: rotate(-45deg) scale(2);
  opacity: 0;
}
.projects .cont .item .pictures a:hover::after {
  opacity: 1;
}
.projects .cont .item .pictures p {
  width: 100%;
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1;
}
.projects .cont .item.v2 {
  width: 50%;
}
.projects .cont .item.v2 .pictures a:nth-child(1) {
  width: calc(55% - 10px);
}
.projects .cont .item.v2 .pictures a:nth-child(3) {
  width: calc(45% - 10px);
}
.projects .cont .item:nth-child(2n + 1) p {
  padding-left: 50px;
}
.projects .cont .item .btn {
  display: none;
}
.projects .more {
  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;
  padding: 0 24px 70px;
  background-color: #1f1f21;
}
.projects .more button {
  line-height: 24px;
  padding: 16px;
  border: 1px solid #fff;
  color: #fff;
  text-transform: uppercase;
}
.projects .more button:hover {
  background-color: #fff;
  color: #000;
}

@media (max-width: 1360px) {
  .projects .crumbs {
    width: calc(100% - 28px);
  }
  .projects .title {
    padding: 0 14px;
  }
  .projects nav {
    width: calc(100% - 28px);
  }
}
@media (max-width: 850px) {
  .projects .title {
    margin: 7px 0 60px;
  }
  .projects .title h1 {
    font-size: 36px;
    line-height: 48px;
  }
  .projects .title h1 span {
    font-size: 16px;
    top: -15px;
    right: -15px;
  }
  .projects nav {
    width: 100%;
    padding: 8px 20px;
    background-color: #f7f7f7;
  }
  .projects nav::-webkit-scrollbar {
    width: 0;
    height: 0;
  }
  .projects nav a {
    padding: 10px 22px;
    font-size: 14px;
    line-height: 16px;
  }
  .projects nav a.on {
    background-color: #fff;
  }
  .projects .cont {
    gap: 80px 0;
  }
  .projects .cont .item {
    width: 100%;
  }
  .projects .cont .item .pictures a img {
    height: auto;
  }
  .projects .cont .item .btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    background-color: #1f1f21;
    border: 1px solid #fff;
    margin: 0 30px 0 auto;
  }
  .projects .cont .item.v2 {
    width: 100%;
  }
  .projects .cont .item p,
  .projects .cont .item p:nth-child(2n + 1) {
    padding-left: 20px;
  }
  .projects .cont .item .pictures p {
    padding-left: 60px;
  }
  .projects .more {
    padding: 0 14px 60px;
  }
}
@media (max-width: 600px) {
  .projects .cont .item.v2 {
    width: 100%;
  }
  .projects .cont .item.v2 .pictures {
    gap: 20px;
  }
  .projects .cont .item.v2 .pictures a:nth-child(1) {
    width: 100%;
  }
  .projects .cont .item.v2 .pictures a:nth-child(3) {
    display: none;
  }
  .projects .cont .item.v2 .pictures p {
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
  }
}
.projects_item {
  padding-bottom: 20px;
}
.projects_item .title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 3.7%;
  margin: 60px 0;
}
.projects_item .title .num {
  margin-top: 20px;
  font-size: 22px;
  font-weight: 300;
}
.projects_item .title h1 {
  font-size: 64px;
  line-height: 74px;
  color: #1f1f21;
  font-weight: 400;
  max-width: 623px;
  width: 100%;
}
.projects_item .title p {
  -ms-flex-item-align: end;
  -ms-grid-row-align: end;
  align-self: end;
  font-size: 22px;
  line-height: 26px;
  font-weight: 300;
  max-width: 489px;
  width: 100%;
}
.projects_item .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.projects_item .container img {
  max-width: 100%;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.projects_item .container iframe {
  width: 100%;
  aspect-ratio: 2/1;
}
.projects_item .container p {
  line-height: 20px;
  font-weight: 300;
  max-width: 1011px;
  margin: 0 auto;
  width: 100%;
}
.projects_item .container p:has(img) {
  max-width: 100%;
}
.projects_item .container hr {
  width: 100%;
  height: 1px;
  background-color: #000;
}

@media (max-width: 850px) {
  .projects_item .title {
    margin: 0 0 30px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 20px;
  }
  .projects_item .title .num {
    display: none;
  }
  .projects_item .title h1 {
    font-size: 36px;
    line-height: 41px;
    max-width: 100%;
  }
  .projects_item .title p {
    max-width: 100%;
    -ms-flex-item-align: start;
    -ms-grid-row-align: start;
    align-self: start;
  }
}
.design {
  padding-bottom: 70px;
}
.design .title {
  max-width: 1200px;
  width: 100%;
  margin: 60px auto 50px;
}
.design .title h1 {
  font-size: 64px;
  line-height: 74px;
  font-weight: 400;
  margin-bottom: 50px;
}
.design .title .info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 47px;
}
.design .title .info img {
  width: 135px;
  height: 135px;
  border-radius: 50%;
}
.design .title .text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 26px;
}
.design .title .text > p {
  max-width: 629px;
  width: 100%;
  font-size: 22px;
  line-height: 27px;
  font-weight: 300;
  font-style: italic;
}
.design .title .text .person p {
  line-height: 19px;
}
.design .title .text .person p:last-child {
  font-weight: 300;
}
.design nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
}
.design nav::after {
  content: "";
  width: 100%;
  height: 1px;
  background-color: rgba(0, 0, 0, 0.1);
  position: absolute;
  bottom: 0;
  left: 0;
}
.design nav a {
  padding: 45px 26px;
  border-bottom: 3px solid transparent;
  font-size: 24px;
  line-height: 29px;
  font-weight: 300;
}
.design nav a span {
  opacity: 0.3;
  margin-right: 35px;
}
.design nav a:hover {
  background-color: #e4e4e4;
}
.design nav a.on {
  border-bottom: 3px solid #000;
  padding: 45px 110px 45px 60px;
  pointer-events: none;
}
.design .cont {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 50px;
}
.design .item h4 {
  font-size: 24px;
  line-height: 29px;
  font-weight: 300;
  padding: 36px 36px 36px 60px;
  border-bottom: 1px solid #000;
}
.design .item .text {
  padding: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 20px;
}
.design .item .text p {
  line-height: 20px;
  font-weight: 300;
}
.design .item .imgs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
}
.design .item .imgs img {
  width: 100%;
  height: 565px;
  -o-object-fit: cover;
  object-fit: cover;
}
.design .item .imgs.v3 img {
  cursor: pointer;
  height: initial;
  width: calc((100% - 60px) / 3);
  aspect-ratio: 33/55;
}
.design .item:first-child h4 {
  display: none;
}
.design .btn_brown {
  width: -moz-fit-content;
  width: -webkit-fit-content;
  width: fit-content;
  padding: 11px;
  margin: 0 auto;
}
.design .imgs_slider {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1005;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  padding: 40px;
  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;
}
.design .imgs_slider .close {
  position: absolute;
  top: 40px;
  right: 40px;
  width: 48px;
  height: 48px;
  background: url("../img/close_white.svg") no-repeat 50%;
}
.design .imgs_slider .slider {
  width: -moz-max-content;
  width: -webkit-max-content;
  width: max-content;
  height: 100%;
  position: relative;
}
.design .imgs_slider .slider div {
  height: 100%;
  aspect-ratio: 33/50;
  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;
}
.design .imgs_slider .slider div img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.design .imgs_slider .slider .slick-prev,
.design .imgs_slider .slider .slick-next {
  position: absolute;
  top: calc(50% - 24px);
  width: 48px;
  height: 48px;
  border-radius: 24px;
  border: 1px solid #000;
  font-size: 0;
  background: url("../img/arrow_black.svg") no-repeat 50% #fff;
}
.design .imgs_slider .slider .slick-prev:hover,
.design .imgs_slider .slider .slick-next:hover {
  border: 1px solid #fff;
  background: url("../img/arrow_white.svg") no-repeat 50% #000;
}
.design .imgs_slider .slider .slick-prev {
  left: -72px;
  -webkit-transform: rotateY(180deg);
  transform: rotateY(180deg);
}
.design .imgs_slider .slider .slick-next {
  right: -72px;
}

@media (max-width: 768px) {
  .design .title {
    margin: 0 auto 40px;
    padding-left: 6px;
  }
  .design .title h1 {
    font-size: 24px;
    line-height: 28px;
    margin-bottom: 40px;
  }
  .design .title .info {
    gap: 28px;
  }
  .design .title .info img {
    width: 100px;
    height: 100px;
  }
  .design .title .info .text > p {
    font-size: 18px;
    line-height: 21px;
  }
  .design nav {
    background-color: #f7f7f7;
    border-radius: 3px;
    width: -moz-max-content;
    width: -webkit-max-content;
    width: max-content;
    margin: 0 20px;
  }
  .design nav::after {
    display: none;
  }
  .design nav a {
    font-size: 14px;
    line-height: 16px;
    padding: 17px 42px;
    border-radius: 3px;
    border: 2px solid transparent;
  }
  .design nav a span {
    display: none;
  }
  .design nav a.on {
    border: 2px solid #515157;
    background-color: #fff;
    padding: 17px 22px;
  }
  .design .cont {
    gap: 30px;
  }
  .design .cont .item h4 {
    margin-left: 16px;
    padding: 25px 0;
  }
  .design .cont .item .text {
    padding: 30px 20px;
  }
  .design .cont .item .imgs {
    gap: 14px;
  }
  .design .cont .item .imgs img {
    height: 300px;
  }
  .design .cont .item .imgs.v3 img {
    width: calc((100% - 28px) / 3);
    height: initial;
  }
  .design .imgs_slider {
    padding: 20px;
  }
  .design .imgs_slider .slider {
    width: calc(100% - 144px);
    height: initial;
  }
}
@media (max-width: 550px) {
  .design .cont .item .imgs.v3 {
    overflow: auto;
    padding-bottom: 20px;
  }
  .design .cont .item .imgs.v3 img {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    height: initial;
    width: 100%;
  }
}
.contact {
  padding-bottom: 160px;
}
.contact .title {
  margin: 20px 0 40px;
}
.contact .title h1 {
  font-size: 36px;
  line-height: 44px;
  font-weight: 300;
  margin-bottom: 12px;
}
.contact .cont {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 60px;
}
.contact .cont .map {
  width: 45%;
}
.contact .cont .map iframe {
  width: 100%;
  height: 100%;
}
.contact .cont .text {
  width: 45%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 20px;
}
.contact .cont .text .address::before {
  content: "";
  display: block;
  width: 32px;
  height: 32px;
  margin-bottom: 20px;
  background: url("/img/about_us/about_dec4.svg") no-repeat 50% #000;
}
.contact .cont .text .address p {
  font-size: 22px;
  line-height: 36px;
}
.contact .cont .text .route {
  font-size: 16px;
  line-height: 20px;
  font-weight: 700;
  text-decoration: underline;
}
.contact .cont .text .route:hover {
  text-decoration: none;
}
.contact .cont .text .tel {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  font-size: 22px;
  line-height: 32px;
}
.contact .cont .text .tel::before {
  content: "";
  width: 32px;
  height: 32px;
  margin-right: 10px;
  background: url("/img/phone_white.svg") no-repeat 50% #000;
}
.contact .cont .text .tel span {
  color: #838383;
}
.contact .cont .text .time {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 15px;
}
.contact .cont .text .time p {
  font-weight: 300;
  margin-bottom: 5px;
  color: #1f1f21;
}
.contact .cont .text .time div:last-child {
  margin-top: 20px;
}
.contact .cont .text .time div p {
  margin: 0;
  font-size: 22px;
  line-height: 26px;
  font-weight: 400;
  color: #000;
}
.contact .cont .text .time div p span {
  color: #a7a7a7;
}
.contact .cont .text .email p {
  font-size: 14px;
  line-height: 16px;
  margin-bottom: 11px;
}
.contact .cont .text .email a {
  font-size: 36px;
  line-height: 41px;
}
.contact .cont .text .email a:hover {
  text-decoration: underline;
}

@media (max-width: 850px) {
  .contact {
    padding-bottom: 100px;
  }
  .contact .title {
    margin: 0 0 20px;
  }
  .contact .cont {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 50px;
  }
  .contact .cont .map {
    width: 100%;
    height: 350px;
  }
  .contact .cont .text {
    width: 100%;
    padding: 0 20px;
    gap: 50px;
  }
  .contact .cont .text .time p {
    font-size: 16px;
    line-height: 19px;
  }
  .contact .cont .text .time div p {
    font-size: 16px;
    line-height: 19px;
  }
  .contact .cont .text .time div p span {
    color: #709e57;
  }
  .contact .cont .text .time div p:last-child {
    font-weight: 700;
  }
  .contact .cont .text .time div:last-child {
    margin-top: 5px;
  }
  .contact .cont .text .time div:last-child p {
    color: #bfb19f;
  }
  .contact .cont .text .time div:last-child p:last-child {
    font-weight: 400;
  }
  .contact .cont .text .email {
    margin-top: 40px;
  }
  .contact .cont .text .email p {
    font-size: 16px;
    font-weight: 300;
  }
  .contact .cont .text .email a {
    font-size: 24px;
    line-height: 28px;
  }
}
.decoration {
  padding-bottom: 140px;
}
.decoration h2 {
  font-size: 36px;
  line-height: 48px;
  font-weight: 300;
  position: relative;
  padding-top: 15px;
  margin: 50px 0;
}
.decoration .banner {
  position: relative;
  margin: 20px 0 90px;
  min-height: 565px;
}
.decoration .banner img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  -o-object-fit: cover;
  object-fit: cover;
}
.decoration .banner .text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 30px;
  padding: 80px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
}
.decoration .banner .text h1 {
  max-width: 935px;
  width: 100%;
  color: #fff;
  font-size: 60px;
  line-height: 69px;
  font-weight: 300;
}
.decoration .banner .text p {
  max-width: 935px;
  width: 100%;
  color: #fff;
  font-size: 24px;
  line-height: 28px;
  font-weight: 300;
}
.decoration .banner .text a {
  margin-top: 60px;
  border: 1px solid #fff;
  background-color: transparent;
}
.decoration .banner .text a:hover {
  background-color: #fff;
}
.decoration .cont {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 100px 50px;
  padding-bottom: 40px;
}
.decoration .cont .item {
  width: calc(50% - 25px);
}
.decoration .cont .item a:hover .img img {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}
.decoration .cont .item a .img {
  overflow: hidden;
  margin-bottom: 35px;
}
.decoration .cont .item a .img img {
  width: 100%;
  aspect-ratio: 623/377;
  -o-object-fit: cover;
  object-fit: cover;
}
.decoration .cont .item a p {
  font-size: 18px;
  line-height: 18px;
  font-weight: 300;
}
.decoration .cont .item a p:last-child {
  font-size: 12px;
}
.decoration .cont .item button {
  margin-top: 35px;
  display: block;
  width: 230px;
}

@media (max-width: 850px) {
  .decoration {
    padding-bottom: 50px;
  }
  .decoration .banner {
    width: calc(100% + 28px);
    min-height: 400px;
    margin: 0 0 50px -14px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: end;
  }
  .decoration .banner .text {
    gap: 20px;
    padding: 40px 30px;
  }
  .decoration .banner .text h1 {
    font-size: 24px;
    line-height: 28px;
    font-weight: 400;
  }
  .decoration .banner .text p {
    font-size: 16px;
    line-height: 19px;
    font-weight: 400;
  }
  .decoration .banner .text a {
    margin-top: 30px;
  }
  .decoration .cont {
    gap: 50px 30px;
  }
  .decoration .cont .item {
    width: calc(50% - 15px);
  }
}
@media (max-width: 650px) {
  .decoration h2 {
    font-size: 24px;
    line-height: 36px;
    padding-top: 0;
    margin: 30px 0;
  }
  .decoration h2::before,
  .decoration h2::after {
    display: none;
  }
  .decoration .cont .item {
    width: 100%;
  }
  .decoration .cont .item button {
    width: 270px;
    margin: 35px auto 0;
  }
}
.brand_page {
  padding-bottom: 20px;
}
.brand_page h1 {
  font-size: 36px;
  line-height: 48px;
  font-weight: 300;
}
.brand_page .brand {
  padding: 40px 0 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.brand_page .brand .img {
  width: 29.1%;
  padding: 16px;
}
.brand_page .brand .img img {
  max-width: 100%;
  max-height: 100%;
}
.brand_page .brand .text {
  width: 66.36%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 30px;
}
.brand_page .brand .text p {
  font-weight: 300;
}

@media (max-width: 850px) {
  .brand_page h1 {
    font-size: 28px;
    line-height: 40px;
  }
  .brand_page .brand {
    padding: 20px 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .brand_page .brand .img {
    width: 300px;
    margin-left: auto;
  }
  .brand_page .brand .text {
    width: 100%;
  }
  .brand_page .brand .text a {
    margin-left: auto;
  }
}
.serv_box .title {
  padding: 40px 0;
}
.serv_box .title h1 {
  font-size: 72px;
  line-height: 100px;
  font-weight: 300;
}
.serv_box .title p {
  font-size: 22px;
  line-height: 34px;
  font-weight: 300;
  max-width: 640px;
  margin-top: 20px;
}
.serv_box .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 69px 40px;
  border-top: 1px solid #000;
}
.serv_box .item span {
  font-size: 10px;
  line-height: 14px;
  -webkit-transition: none;
  -o-transition: none;
  transition: none;
}
.serv_box .item h2 {
  font-size: 40px;
  line-height: 40px;
  font-weight: 300;
  padding-left: 14px;
  -webkit-transition: none;
  -o-transition: none;
  transition: none;
}
.serv_box .item p {
  font-size: 12px;
  line-height: 18px;
  font-weight: 300;
  padding-left: 14px;
  margin-top: 10px;
  -webkit-transition: none;
  -o-transition: none;
  transition: none;
}
.serv_box .item img {
  width: 100px;
  height: 100px;
  -o-object-fit: cover;
  object-fit: cover;
  margin: 0 65px 0 auto;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.serv_box .item .arrow {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  background: url("/img/arrow_black.svg") no-repeat 50%;
  background-size: 100%;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-transition: none;
  -o-transition: none;
  transition: none;
}
.serv_box .item:hover {
  background-color: #1f1f21;
  color: #fff;
}
.serv_box .item:hover .arrow {
  background: url("/img/arrow_white.svg") no-repeat 50%;
  background-size: 100%;
}

@media (max-width: 768px) {
  .serv_box .title {
    padding: 30px 0;
  }
  .serv_box .title h1 {
    font-size: 40px;
    line-height: 55px;
  }
  .serv_box .title p {
    font-size: 18px;
    line-height: 24px;
  }
  .serv_box .item {
    padding: 40px 20px;
  }
  .serv_box .item h2 {
    font-size: 30px;
    line-height: 30px;
  }
  .serv_box .item img {
    width: 70px;
    height: 70px;
    margin: 0 20px 0 auto;
  }
  .serv_box .item .arrow {
    width: 24px;
    height: 24px;
  }
}
@media (max-width: 550px) {
  .serv_box .item {
    padding: 28px 14px;
  }
  .serv_box .item h2 {
    font-size: 24px;
    line-height: 24px;
  }
}
.services_item .cont {
  padding: 40px 0 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 40px;
}
.services_item .cont .img {
  width: 100%;
  height: 565px;
  position: relative;
  padding: 20px 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 20px;
  color: #fff;
}
.services_item .cont .img img {
  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.services_item .cont .img h1 {
  position: relative;
  z-index: 1;
  font-size: 70px;
  line-height: 90px;
  font-weight: 300;
}
.services_item .cont .img p,
.services_item .cont .img button {
  width: -moz-fit-content;
  width: -webkit-fit-content;
  width: fit-content;
  position: relative;
  z-index: 1;
}
.services_item .cont div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 20px;
}
.services_item .cont div:last-child {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.services_item .cont div p {
  font-size: 16px;
  line-height: 26px;
  font-weight: 300;
}
.services_item .cont div button {
  padding: 11px 20px;
}

@media (max-width: 768px) {
  .services_item .cont {
    padding: 20px 0 40px;
  }
  .services_item .cont .img {
    height: 350px;
    padding: 30px;
  }
  .services_item .cont .img h1 {
    font-size: 40px;
    line-height: 50px;
  }
  .services_item .cont div {
    width: 100%;
  }
}
.error {
  padding-bottom: 60px;
}
.error .cont {
  margin-top: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 20px;
}
.error .cont img {
  width: 100px;
  height: 100px;
}
.error .cont h1 {
  font-size: 72px;
  line-height: 100px;
  font-weight: 400;
}
.error .cont p {
  font-size: 22px;
  line-height: 34px;
}

@media (max-width: 768px) {
  .error .cont {
    margin-top: 20px;
  }
  .error .cont h1 {
    font-size: 48px;
    line-height: 60px;
  }
}
@media (max-width: 550px) {
  .error .cont h1 {
    font-size: 36px;
    line-height: 48px;
  }
  .error .cont p {
    font-size: 16px;
    line-height: 20px;
  }
}
.compare {
  padding-bottom: 40px;
}
.compare h3 {
  font-size: 36px;
  line-height: 50px;
  font-weight: 400;
  margin: 20px 0 40px;
}
.compare .category {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 30px;
}
.compare .category a {
  padding: 10px 20px;
  background-color: #d9d9d9;
  border-radius: 20px;
}
.compare .category a:hover,
.compare .category a.on {
  background-color: #000;
  color: #fff;
}
.compare .cont {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
  overflow: auto;
  padding-bottom: 20px;
}
.compare .cont .item {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 300px;
}
.compare .cont .item .head {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.compare .cont .item .head button {
  width: 20px;
  height: 20px;
  background: url("/img/close.svg") no-repeat 50%;
  position: absolute;
  top: 0;
  right: 0;
}
.compare .cont .item .head button:hover {
  background: url("/img/close_white.svg") no-repeat 50% #000;
}
.compare .cont .item .head a {
  font-size: 14px;
  line-height: 20px;
  max-width: calc(100% - 30px);
  white-space: nowrap;
  overflow: hidden;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
}
.compare .cont .item .head a:hover {
  color: #709e57;
}
.compare .cont .item .head a:nth-child(3) {
  height: 48px;
  font-size: 16px;
  line-height: 24px;
  font-weight: 600;
  white-space: normal;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.compare .cont .item .head .price {
  margin: 16px 0;
}
.compare .cont .item img {
  width: 100%;
  aspect-ratio: 1;
  -o-object-fit: cover;
  object-fit: cover;
}
.compare .cont .item .chars {
  padding: 16px 8px;
}
.compare .cont .item .chars p {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 0 8px;
  font-size: 12px;
  line-height: 24px;
}
.compare .cont .item .chars p span {
  width: calc(50% - 4px);
  color: #000;
}
.compare .cont .item .chars p span:first-child {
  color: #838383;
}
.compare .cont .item .buy {
  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;
  gap: 10px;
  width: 100%;
  height: 40px;
  background-color: #1f1f21;
  color: #fff;
  font-size: 14px;
  text-transform: uppercase;
}
.compare .cont .item .buy::before {
  content: "";
  width: 18px;
  height: 18px;
  background: url("/img/basket_white.svg") no-repeat 50%;
}
.compare .cont .item .buy:hover {
  -webkit-transform: scale(0.95);
  -ms-transform: scale(0.95);
  transform: scale(0.95);
}

.catalog {
  padding-bottom: 60px;
}
.catalog h1 {
  font-size: 36px;
  line-height: 50px;
  font-weight: 400;
  margin: 20px 0 40px;
}
.catalog .cont {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 30px;
}
.catalog .cont a {
  position: relative;
  width: calc((100% - 30px) / 2);
  aspect-ratio: 1;
}
.catalog .cont a img {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  z-index: 0;
}
.catalog .cont a .fond {
  background-color: rgba(0, 0, 0, 0.5);
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  padding: 24px;
}
.catalog .cont a .fond:hover {
  background-color: rgba(0, 0, 0, 0.25);
}
.catalog .cont a .fond h2 {
  font-size: 36px;
  line-height: 50px;
  font-weight: 400;
  color: #fff;
}

@media (max-width: 650px) {
  .catalog {
    padding-bottom: 30px;
  }
  .catalog h1 {
    margin: 0 0 30px;
  }
  .catalog .cont a {
    width: calc(100% + 28px);
    margin: 0 -14px;
  }
}
footer.block {
  margin: auto auto 0;
}
footer .info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 20px;
  padding: 60px 0;
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
}
footer .info .item {
  max-width: 285px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 8px;
}
footer .info .item .logo {
  width: 152px;
  height: 21px;
  background: url("/img/logo215.svg");
  background-size: 100%;
}
footer .info .item p,
footer .info .item a {
  font-size: 14px;
  line-height: 20px;
  width: -moz-fit-content;
  width: -webkit-fit-content;
  width: fit-content;
}
footer .info .item .title {
  font-weight: 700;
}
footer .info .item .soc {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
}
footer .info .item .soc a {
  width: 24px;
  height: 24px;
}
footer .info .item .soc a:hover {
  -webkit-transform: scale(0.9);
  -ms-transform: scale(0.9);
  transform: scale(0.9);
}
footer .info .item .soc a.fb {
  background: url("/img/fb.svg") no-repeat 50%;
}
footer .info .item .soc a.inst {
  background: url("/img/inst.svg") no-repeat 50%;
}
footer .info .item .soc a.pint {
  background: url("/img/pinterest.svg") no-repeat 50%;
}
footer .info .item .soc a.telegram {
  background: url("/img/telegram.svg") no-repeat 50%/90%;
}
footer .copyright {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 40px;
  padding: 60px 0;
}
footer .copyright p {
  font-size: 14px;
  line-height: 20px;
}

@media (max-width: 1023px) {
  footer .info {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 40px;
  }
  footer .info .item {
    max-width: initial;
    width: calc((100% - 80px) / 3);
  }
  footer .info .item:first-child {
    width: 100%;
  }
}
@media (max-width: 768px) {
  footer.block {
    padding: 0;
  }
  footer .info {
    padding: 40px 14px;
    gap: 30px;
  }
  footer .info .item {
    width: calc((100% - 60px) / 3);
  }
  footer .copyright {
    padding: 24px 14px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 20px;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: start;
  }
}
@media (max-width: 550px) {
  footer .info .item {
    width: 100%;
  }
}
