@import url("https://fonts.googleapis.com/css2?family=Forum&display=swap");
@import "../f/gilroy/stylesheet.css";
:root {
  --vh: 1vh;
  --vw: 1vw;
  --primary-color: #2c2c2c;
  --secondary-color: #bd9864;
  --gray-color: #a8a8a8;
  --light-gray-color: #dfdfdf;
  --header-background: #636363;
  --btn-border-radius: 10px;
  --container-max-width: 1680px;
  --container-min-width: 320px;
  --section-x-gap: 60px;
  --header-height-desktop: 219px;
  --header-height-tablet: 116px;
  --header-height-portrait-tablet: 110px;
  --header-height-mobile: 151px;
  --select-border: rgba(219, 219, 219, 1);
  --select-focus: rgba(219, 219, 219, 1);
  --select-arrow: var(--select-border);
}
@media screen and (max-width: 1439px) {
  :root {
    --section-x-gap: 20px;
  }
}

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


html {
  line-height: 1.15; 
  -webkit-text-size-adjust: 100%; 
}

body {
  margin: 0;
}

main {
  display: block;
}

h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

hr {
  box-sizing: content-box; 
  height: 0; 
  overflow: visible; 
}

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

a {
  background-color: transparent;
}

abbr[title] {
  border-bottom: none; 
  text-decoration: underline; 
  text-decoration: underline dotted; 
}

b,
strong {
  font-weight: bolder;
}

code,
kbd,
samp {
  font-family: monospace, monospace; 
  font-size: 1em; 
}

small {
  font-size: 80%;
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

img {
  border-style: none;
}

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

button,
input {
  
  overflow: visible;
}

button,
select {
  
  text-transform: none;
}

button,
[type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
}

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

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

fieldset {
  padding: 0.35em 0.75em 0.625em;
}

legend {
  box-sizing: border-box; 
  color: inherit; 
  display: table; 
  max-width: 100%; 
  padding: 0; 
  white-space: normal; 
}

progress {
  vertical-align: baseline;
}

textarea {
  overflow: auto;
}

[type="checkbox"],
[type="radio"] {
  box-sizing: border-box; 
  padding: 0; 
}

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

[type="search"] {
  -webkit-appearance: textfield; 
  outline-offset: -2px; 
}

[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  -webkit-appearance: button; 
  font: inherit; 
}

details {
  display: block;
}

summary {
  display: list-item;
}

template {
  display: none;
}

[hidden] {
  display: none;
}

.forum-regular {
  font-family: "Forum", serif;
  font-weight: 400;
  font-style: normal;
}

html.overflow-hidden {
  overflow-y: hidden;
  overflow-x: hidden;
}
html.overflow-hidden:after {
  content: "";
  display: block;
  z-index: 2;
  width: 100%;
  height: calc(var(--vh, 1vh) * 100);
  position: fixed;
  left: 0;
  top: 0;
  background-color: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

body {
  font-family: "Gilroy";
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
}

a {
  color: var(--primary-color);
  text-decoration: none;
}

.group:before,
.group:after {
  content: "";
  display: table;
}

.group:after {
  clear: both;
}

.group {
  zoom: 1;
}

.submit::-moz-focus-inner {
  border: 0;
  padding: 0;
}

.clear {
  height: 0;
  overflow: hidden;
  clear: both;
}

.nowrap {
  white-space: nowrap;
}

.show {
  display: block;
}

.hide {
  display: none;
}

.table {
  display: table;
  width: 100%;
  height: 100%;
}
.table .tr,
.table th {
  display: table-row;
}
.table .td {
  display: table-cell;
  vertical-align: middle;
}
.table .table-head {
  display: table-header-group;
}
.table .table-body {
  display: table-row-group;
}

.hidden {
  display: none !important;
}

.opacity-10 {
  opacity: 0.1;
}

.opacity-20 {
  opacity: 0.2;
}

.opacity-30 {
  opacity: 0.3;
}

.opacity-40 {
  opacity: 0.4;
}

.opacity-50 {
  opacity: 0.5;
}

.opacity-60 {
  opacity: 0.6;
}

.opacity-70 {
  opacity: 0.7;
}

.opacity-80 {
  opacity: 0.8;
}

.opacity-90 {
  opacity: 0.9;
}

#console {
  position: fixed;
  top: 5px;
  right: 5px;
  padding: 5px 10px;
  background: white;
  font-size: 14px;
  border-radius: 5px;
  z-index: 15;
}

section,
footer,
header {
  max-width: 100%;
  width: 100%;
  margin: 0 auto;
}

.scrollable-x {
  max-width: 100%;
  overflow-x: scroll;
  -ms-overflow-style: none; 
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  -ms-overflow-style: none;
  scroll-snap-type: x mandatory;
}
.scrollable-x::-webkit-scrollbar {
  display: none;
}

select {
  appearance: none;
  background-color: transparent;
  border: none;
  padding: 0 1em 0 0;
  margin: 0;
  width: 100%;
  font-family: inherit;
  font-size: inherit;
  cursor: inherit;
  line-height: inherit;
  z-index: 1;
  outline: none;
}
select::-ms-expand {
  display: none;
}

.select {
  display: grid;
  grid-template-areas: "select";
  align-items: center;
  position: relative;
  min-width: 200px;
  max-width: 100%;
  border: 1px solid var(--select-border);
  border-radius: 10px;
  font-size: 16px;
  cursor: pointer;
  line-height: 1.1;
  background-color: #fff;
  background-image: linear-gradient(to top, #f9f9f9, #fff 33%);
}
.select select {
  grid-area: select;
  padding: 15px 46px 15px 30px;
}
.select:not(.select--multiple)::after {
  content: "";
  justify-self: end;
  width: 16px;
  height: 16px;
  right: 24px;
  position: absolute;
  background: url(../i/arr.svg) right center no-repeat;
}
@media screen and (max-width: 767px) {
  .select select {
    padding: 11px 20px;
  }
  .select:not(.select--multiple)::after {
    right: 14px;
  }
}

select:focus + .focus {
  position: absolute;
  top: -1px;
  left: -1px;
  right: -1px;
  bottom: -1px;
  border: 2px solid var(--select-focus);
  border-radius: inherit;
}

select[multiple] {
  padding-right: 0;
    height: 6rem;
  }
select[multiple] option {
  white-space: normal;
  outline-color: var(--select-focus);
}

.select--disabled {
  cursor: not-allowed;
  background-color: #eee;
  background-image: linear-gradient(to top, #ddd, #eee 33%);
}

label {
  font-size: 1.125rem;
  font-weight: 500;
}

.select + label {
  margin-top: 2rem;
}

.blur {
  filter: blur(6px);
}

.SmartCaptcha-Shield.SmartCaptcha-Shield_position_bottom {
  bottom: 1% !important;
}

.fslightbox-container {
  background: rgb(255, 255, 255) !important;
}

.development {
  text-align: center;
  width: 100%;
}
.development .header {
  font-family: "Forum", serif;
  font-size: 36px;
  margin: 0 auto 1em;
  max-width: 800px;
}
.development ul {
  text-align: left;
  margin: 0 auto 1em;
  max-width: 800px;
}
.development img {
  max-width: 600px;
}
.development.in-row {
  display: flex;
  flex-direction: row;
  column-gap: 40px;
  align-items: center;
  justify-content: center;
  margin-top: -80px;
}
.development.in-row .header {
  text-align: center;
  max-width: 500px;
  margin: 0;
}
@media screen and (max-width: 1199px) {
  .development.in-row {
    flex-direction: column;
    margin-top: 0;
  }
}
@media screen and (max-width: 767px) {
  .development .header {
    font-size: 24px;
    max-width: 96%;
  }
  .development img {
    max-width: 100%;
  }
}

.select-product-from-list {
  position: fixed;
  z-index: 1001;
  left: 0;
  top: 0;
  height: calc(var(--vh, vh) * 100);
  width: 100%;
}
.select-product-from-list .close {
  position: absolute;
  right: 40px;
  top: 40px;
  z-index: 2;
}
.select-product-from-list .products-wrapper {
  position: fixed;
  overflow: scroll;
  max-width: 550px;
  width: 100%;
  background-color: rgb(243, 243, 243);
  height: calc(var(--vh, vh) * 100);
  padding: 30px;
  scrollbar-width: none;
  scroll-snap-type: x mandatory;
}
.select-product-from-list .products-wrapper::-webkit-scrollbar {
  display: none;
}
.select-product-from-list .products-wrapper .header {
  font-size: 28px !important;
  font-family: "Gilroy" !important;
  font-weight: 400 !important;
  text-align: left !important;
}
.select-product-from-list .products-wrapper .select-item {
  width: 100%;
  display: flex;
  column-gap: 30px;
  padding: 20px 0;
}
.select-product-from-list .products-wrapper .select-item .img {
  width: 180px;
  flex-shrink: 0;
}
.select-product-from-list .products-wrapper .select-item .img img {
  width: 100%;
  height: auto;
  border-radius: 30px;
}
.select-product-from-list .products-wrapper .select-item .select-content {
  display: flex;
  flex-direction: column;
  row-gap: 10px;
  flex-grow: 1;
}
.select-product-from-list
  .products-wrapper
  .select-item
  .select-content
  .title {
  text-decoration: none;
  font-size: 18px;
}
.select-product-from-list
  .products-wrapper
  .select-item
  .select-content
  .price {
  margin-top: 16px;
  font-size: 20px;
  display: flex;
  align-items: center;
  column-gap: 16px;
}
.select-product-from-list
  .products-wrapper
  .select-item
  .select-content
  .price
  .old {
  color: rgb(168, 168, 168);
  text-decoration: line-through;
}
.select-product-from-list
  .products-wrapper
  .select-item
  .select-content
  .option {
  display: flex;
  column-gap: 6px;
  font-size: 15px;
}
.select-product-from-list
  .products-wrapper
  .select-item
  .select-content
  .option
  i {
  color: rgb(135, 135, 135);
  font-style: normal;
}
.select-product-from-list
  .products-wrapper
  .select-item
  .select-content
  .title
  + .option {
  margin-top: 16px;
}
.select-product-from-list
  .products-wrapper
  .select-item
  .select-content
  .option
  + .option {
  margin-top: 4px;
}
.select-product-from-list
  .products-wrapper
  .select-item
  .select-content
  .spacer {
  flex-grow: 1;
}
.select-product-from-list
  .products-wrapper
  .select-item
  .select-content
  .buttons {
  display: flex;
  column-gap: 10px;
  justify-content: stretch;
}
.select-product-from-list
  .products-wrapper
  .select-item
  .select-content
  .buttons
  .btn {
  padding-left: 0;
  padding-right: 0;
  justify-content: center;
  width: calc(50% - 5px);
  height: 40px;
}
.select-product-from-list
  .products-wrapper
  .select-item
  .select-content
  .buttons
  .btn.basket {
  background-color: var(--primary-color);
}
.select-product-from-list
  .products-wrapper
  .select-item
  .select-content
  .buttons
  .btn.about {
  background-color: transparent;
  border: 1px solid rgb(216, 216, 216);
  color: var(--primary-color);
}
.select-product-from-list
  .products-wrapper
  .select-item
  .select-content
  .buttons
  .btn.full {
  width: 100%;
}
.select-product-from-list .products-wrapper .select-item + .select-item {
  border-top: 1px solid rgb(229, 229, 229);
}
@media screen and (max-width: 767px) {
  .select-product-from-list {
    overflow: scroll;
    scrollbar-width: none;
    scroll-snap-type: x mandatory;
    background-color: rgb(243, 243, 243);
  }
  .select-product-from-list .close {
    position: relative;
    top: 25px;
    right: calc((100% - 32px - 25px) * -1);
  }
  .select-product-from-list .close svg path {
    stroke: var(--primary-color);
  }
  .select-product-from-list .products-wrapper {
    padding-top: 30px;
    max-width: 100%;
    width: 100%;
    overflow: visible;
    position: relative;
    padding-bottom: 20px;
  }
  .select-product-from-list .products-wrapper .header {
    font-size: 24px !important;
  }
  .select-product-from-list .header {
    text-align: left;
  }
}
@media screen and (max-width: 600px) {
  .select-product-from-list .products-wrapper .select-item {
    flex-direction: column;
    row-gap: 30px;
  }
  .select-product-from-list .products-wrapper .select-item .img {
    width: 100%;
    flex-shrink: 0;
  }
  .select-product-from-list .products-wrapper .select-item .img img {
    width: 100%;
    height: auto;
    border-radius: 30px;
  }
}

.RatingBadgeWidget {
  width: 200px !important;
  height: 67px !important;
}

.draggable {
  cursor: grab;
  user-select: none;
  -webkit-user-select: none;
}

:root {
  --header-column-gap: 34px;
  --header-corner-margin: 60px;
  --header-logo-gap: 115px;
  --section-border-radius: 30px;
}
@media screen and (max-width: 1439px) {
  :root {
    --header-column-gap: 16px;
    --header-corner-margin: 20px;
    --header-logo-gap: 90px;
  }
}
@media screen and (max-width: 767px) {
  :root {
    --header-corner-margin: 10px;
  }
}

header {
  width: 100%;
  max-width: var(--container-max-width);
  min-width: var(--container-min-width);
  margin: 0 auto;
  z-index: 11;
  position: relative;
}
header .nav-blur {
  display: none;
}
header .dark-row {
  width: 100%;
  background-color: var(--primary-color);
  color: white;
  padding: 24px var(--header-corner-margin);
  font-size: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 0;
  z-index: 2;
  position: relative;
}
header .dark-row .nav-blur {
  display: none;
}
header .dark-row a {
  color: white;
  text-decoration: none;
}
header .dark-row .left-column ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  column-gap: var(--header-column-gap);
}
header .dark-row .left-column ul li {
  margin: 0;
  padding: 0;
  position: relative;
}
header .dark-row .left-column ul li a {
  display: flex;
  column-gap: 5px;
  align-items: center;
}
header .dark-row .left-column ul li .star {
  top: -1px;
  position: relative;
}
header .dark-row .left-column ul li.marked {
  color: var(--secondary-color);
}
header .dark-row .left-column ul li.marked a {
  color: var(--secondary-color);
}
header .dark-row .left-column ul li ol {
  display: none;
}
@media screen and (min-width: 1199px) {
  header .dark-row .left-column ul li:hover a .arr {
    transform: rotate(180deg);
  }
  header .dark-row .left-column ul li:hover ol {
    z-index: 100;
    list-style: none;
    margin: 0;
    padding: 20px 20px 15px;
    display: flex;
    flex-direction: column;
    row-gap: 10px;
    position: absolute;
    min-width: calc(100% + 40px);
    left: -20px;
    top: 100%;
    background-color: var(--primary-color);
    border-radius: 0 0 var(--btn-border-radius) var(--btn-border-radius);
  }
  header .dark-row .left-column ul li:hover ol li {
    white-space: nowrap;
  }
  header .dark-row .left-column ul li:hover ol li a {
    color: white;
  }
}
header .dark-row .right-column ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  column-gap: var(--header-column-gap);
  font-size: 18px;
}
header .dark-row .right-column ul li {
  margin: 0;
  padding: 0;
  display: flex;
  column-gap: 10px;
  align-items: end;
}
header .dark-row .right-column ul li span {
  font-size: 15px;
  color: var(--gray-color);
}
@media screen and (max-width: 1439px) {
  header .dark-row .right-column ul li span {
    font-size: 14px;
  }
}
header .dark-row .right-column ul li.buttons {
  display: none;
}
header .dark-row .close-navigation {
  display: none;
}
header .light-row {
  width: 100%;
  padding: 45px var(--header-corner-margin);
  background-color: white;
  display: flex;
  align-items: center;
  column-gap: var(--header-logo-gap);
  z-index: 1;
}
header .light-row .left-column {
  width: 369px;
  flex-shrink: 0;
}
header .light-row .left-column svg {
  width: 100%;
  max-width: 100%;
}
header .light-row .right-column {
  display: flex;
  column-gap: 10px;
  align-items: center;
  flex-grow: 1;
}
header .light-row .right-column > div {
  display: flex;
  column-gap: 10px;
  align-items: center;
}
header .light-row .right-column > div:last-child {
  flex-grow: 1;
}
header .light-row .right-column .hamb {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  row-gap: 5px;
}
header .light-row .right-column .hamb i {
  transition: all 0.5s;
  width: 20px;
  height: 1px;
  background-color: white;
}
header .light-row .right-column .btn {
  padding: 0 40px 0 30px;
  display: flex;
  align-items: center;
  column-gap: 20px;
  background-color: var(--primary-color);
  color: white;
  border-radius: var(--btn-border-radius);
  text-decoration: none;
  font-size: 18px;
  height: var(--button-height);
}
header .light-row .right-column .btn .hamb {
  display: block;
  width: 20px;
  height: 13px;
  position: relative;
  overflow: hidden;
}
header .light-row .right-column .btn .hamb i {
  transition: all 0.5s;
  position: absolute;
  top: 6px;
  width: 20px;
  height: 1px;
  background-color: white;
}
header .light-row .right-column .btn .hamb i:first-child {
  top: 0;
  left: 0;
  transform: none;
}
header .light-row .right-column .btn .hamb i:last-child {
  top: calc(100% - 1px);
  left: 0;
  transform: none;
}
header .light-row .right-column .btn.opened .hamb {
  position: relative;
}
header .light-row .right-column .btn.opened .hamb i {
  position: absolute;
  width: 21px;
}
header .light-row .right-column .btn.opened .hamb i:first-child {
  top: 50%;
  left: 0;
  transform: rotate(45deg) translateY(-50%);
}
header .light-row .right-column .btn.opened .hamb i:nth-child(2) {
  opacity: 0;
}
header .light-row .right-column .btn.opened .hamb i:last-child {
  top: 50%;
  left: 0;
  transform: rotate(-45deg) translateY(-50%);
}
header .light-row .right-column .btn-group {
  display: flex;
  align-items: center;
  flex-grow: 1;
}
header .light-row .right-column .btn-group input[type="text"] {
  border-radius: var(--btn-border-radius) 0 0 var(--btn-border-radius);
  height: 50px;
  border: 1px solid var(--light-gray-color);
  padding: 16px 20px;
  outline: none;
  flex-grow: 1;
}
header .light-row .right-column .btn-group button {
  border-radius: 0 var(--btn-border-radius) var(--btn-border-radius) 0;
  border: 1px solid var(--primary-color);
  background-color: var(--primary-color);
  cursor: pointer;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
}
header .light-row .right-column .btn-group button svg {
  flex-shrink: 0;
}
header .light-row .right-column .btn-group .close {
  display: none;
}
header .light-row .right-column .icon {
  height: 50px;
  width: 50px;
  border: 1px solid var(--light-gray-color);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--btn-border-radius);
  position: relative;
}
header .light-row .right-column .icon.dark {
  background-color: var(--primary-color);
}
header .light-row .right-column .icon svg {
  flex-shrink: 0;
}
header .light-row .right-column .icon .badge {
  position: absolute;
  right: -5px;
  top: -5px;
  background-color: var(--secondary-color);
  color: white;
  aspect-ratio: 1/1;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  font-size: 12px;
}
header .light-row .right-column .icon.navigation {
  display: none;
  transition: all 0.3s;
}
@media screen and (max-width: 1199px) {
  header .light-row .right-column .icon.navigation {
    display: flex;
  }
}
header .light-row .right-column .icon.navigation.opened i {
  position: relative;
}
header .light-row .right-column .icon.navigation.opened i:first-child {
  top: 3px;
  left: 7px;
  transform: rotate(45deg);
}
header .light-row .right-column .icon.navigation.opened i:nth-child(2) {
  transform: rotate(90deg);
}
header .light-row .right-column .icon.navigation.opened i:last-child {
  left: -7px;
  top: -9px;
  transform: rotate(-45deg);
}
header .light-row .right-column .divider {
  display: none;
}
header .header-gap {
  height: 30px;
}
header .catalog-navigation {
  position: absolute;
  left: 0;
  top: 100%;
  padding: 50px 20px;
  width: 100%;
  background-color: #2c2c2c;
  background-image: url(../i/catalog-navigation.png);
  background-size: cover;
  background-repeat: no-repeat;
  display: none;
  z-index: 2;
  max-height: calc(var(--vh, 1nh) * 100 - var(--header-height-desktop));
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
  -ms-overflow-style: none;
  scrollbar-width: none;
  scroll-snap-type: y mandatory;
  flex-wrap: wrap;
  gap: 10px;
  color: white;
}
header .catalog-navigation::-webkit-scrollbar {
  display: none;
}
header .catalog-navigation a {
  color: white;
  text-decoration: none;
}
header .catalog-navigation .block {
  padding: 20px 30px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  width: calc(25% - 7.5px);
}
header .catalog-navigation .block .title {
  display: flex;
  align-items: center;
  column-gap: 10px;
  font-family: "Forum", serif;
  font-size: 30px;
}
header .catalog-navigation .block .title svg {
  position: relative;
  top: 2px;
}
header .catalog-navigation .block ul {
  list-style: none;
  margin: 20px 0 0;
  padding: 0;
  columns: 2;
  column-gap: 30px;
}
header .catalog-navigation .block ul li {
  padding: 5px 0;
  break-inside: avoid;
}
header .catalog-navigation .block ul li a {
  opacity: 0.5;
  transition: all 0.2s;
}
header .catalog-navigation .block ul li a:hover {
  opacity: 1;
}
header .catalog-navigation .block.small {
  width: calc(22% - 6.6666666667px);
}
header .catalog-navigation .block.small ul {
  columns: 1;
}
header .catalog-navigation .block.medium {
  width: calc(35% - 6.6666666667px);
}
header .catalog-navigation .block.large {
  width: calc(43% - 6.6666666667px);
}
header .catalog-navigation .close {
  display: none;
}
header .catalog-navigation .header {
  display: none;
}
header .catalog-navigation.opened {
  display: flex;
}
@media screen and (max-width: 1199px) {
  header .catalog-navigation .block {
    width: calc(33.3333333333% - 6.6666666667px);
  }
  header .catalog-navigation .block.small {
    width: 100%;
  }
  header .catalog-navigation .block.small ul {
    columns: 1;
  }
  header .catalog-navigation .block.medium {
    width: 100%;
  }
  header .catalog-navigation .block.medium ul {
    columns: 3;
  }
  header .catalog-navigation .block.large {
    width: 100%;
  }
  header .catalog-navigation .block.large ul {
    columns: 3;
  }
}
@media screen and (max-width: 767px) {
  header .catalog-navigation {
    position: fixed;
    top: 0;
    left: 0;
    width: calc(var(--vw, 1vw) * 100);
    height: calc(var(--vh, 1vh) * 100);
    max-height: calc(var(--vh, 1vh) * 100) !important;
    padding: 10px 0;
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: none;
    scrollbar-width: none;
    scroll-snap-type: y mandatory;
  }
  header .catalog-navigation::-webkit-scrollbar {
    display: none;
  }
  header .catalog-navigation.opened {
    align-content: start;
  }
  header .catalog-navigation .header {
    font-family: "Forum", serif;
    font-size: 30px;
    display: block;
    padding: 0 20px;
  }
  header .catalog-navigation .close {
    display: block;
    position: absolute;
    top: 20px;
    right: 20px;
  }
  header .catalog-navigation .close svg {
    width: 20px;
    height: 20px;
  }
  header .catalog-navigation .block {
    border: none;
    border-radius: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 20px;
    width: 100%;
  }
  header .catalog-navigation .block .title {
    justify-content: space-between;
  }
  header .catalog-navigation .block ul {
    display: none;
    columns: 1;
  }
  header .catalog-navigation .block.opened .title svg {
    transform: rotate(-90deg);
  }
  header .catalog-navigation .block.opened ul {
    display: flex;
    flex-direction: column;
    row-gap: 8px;
  }
}
header.fixed {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
header.fixed .dark-row {
  border-radius: 0;
  margin-top: -73px;
}
header.fixed .dark-row.opened {
  margin-top: 0;
}
header.fixed .header-gap {
  display: none;
}
header.fixed .light-row {
  z-index: 1;
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.15);
  padding: 15px var(--header-corner-margin);
}
header.fixed .light-row .right-column .icon.navigation {
  display: flex;
}
@media screen and (min-width: 1690px) {
  header.fixed .light-row {
    border-radius: 0 0 var(--section-border-radius) var(--section-border-radius);
  }
}
@media screen and (max-width: 1199px) {
  header.dark-nav-opened .nav-blur {
    content: "";
    display: block;
    z-index: 99;
    width: 100%;
    height: calc(var(--vh, 1vh) * 100);
    position: fixed;
    left: 0;
    top: 0;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
  }
  header .dark-row {
    display: none;
  }
  header .dark-row.opened {
    display: flex;
    row-gap: 30px;
    flex-direction: column;
    align-items: stretch;
    position: fixed;
    right: 0;
    top: 0;
    width: 500px;
    height: calc(var(--vh, 1vh) * 100);
    z-index: 100;
    padding: 100px 60px 60px 50px;
    overflow-y: scroll;
  }
  header .dark-row.opened .close-navigation {
    display: block;
    position: absolute;
    right: 50px;
    top: 40px;
  }
  header .dark-row.opened .left-column ul {
    flex-direction: column;
    align-items: stretch;
  }
  header .dark-row.opened .left-column ul li {
    font-size: 20px;
    padding: 24px 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  header .dark-row.opened .left-column ul li:last-child {
    border-bottom: none;
  }
  header .dark-row.opened .left-column ul li .star {
    display: none;
  }
  header .dark-row.opened .left-column ul li a span {
    flex-grow: 1;
  }
  header .dark-row.opened .left-column ul li a .arr {
    transform: rotate(-90deg);
  }
  header .dark-row.opened .left-column ul li.opened svg {
    transform: rotate(0deg);
  }
  header .dark-row.opened .left-column ul li.opened ol {
    list-style: none;
    margin: 0;
    display: flex;
    flex-direction: column;
    row-gap: 10px;
    padding: 20px 0 0;
  }
  header .dark-row.opened .left-column ul li.opened ol li {
    border-bottom: none;
    font-size: 16px;
    padding: 0;
  }
  header .dark-row.opened .left-column ul li.opened ol li a {
    color: white;
  }
  header .dark-row.opened .right-column {
    align-self: stretch;
    padding-left: 10px;
  }
  header .dark-row.opened .right-column ul {
    flex-direction: column;
    align-items: stretch;
    row-gap: 10px;
  }
  header .dark-row.opened .right-column ul li {
    font-size: 24px;
  }
  header .dark-row.opened .right-column ul li span {
    font-size: 16px;
    top: -3px;
    position: relative;
  }
  header .dark-row.opened .right-column ul li.buttons {
    display: flex;
    align-items: center;
    column-gap: 25px;
    padding-top: 25px;
  }
  header .dark-row.opened .right-column ul li.buttons .btn {
    font-size: 15px;
  }
  header .dark-row.opened .right-column ul li.buttons a {
    line-height: 0;
  }
  header .header-gap {
    height: 15px;
  }
  header .light-row {
    padding: 30px var(--header-corner-margin);
    justify-content: space-between;
  }
  header .light-row .left-column {
    flex-grow: 1;
    justify-content: flex-start;
  }
  header .light-row .left-column svg {
    width: auto;
  }
  header .light-row .right-column {
    flex-grow: 1;
    justify-content: flex-end;
  }
  header .light-row .right-column .btn-group {
    flex-grow: 0;
  }
  header .light-row .right-column .btn-group input[type="text"] {
    display: none;
  }
  header .light-row .right-column .btn-group button {
    border: 1px solid var(--light-gray-color);
    background-color: white;
    border-radius: var(--btn-border-radius);
  }
  header .light-row .right-column .btn-group button svg path {
    fill: black;
  }
  header .light-row .right-column .btn-group.opened {
    position: fixed;
    background-color: white;
    width: 100%;
    height: calc(var(--vh, 1vh) * 100);
    overflow: scroll;
    top: 0;
    left: 0;
    z-index: 1001;
    display: flex;
    justify-items: center;
    padding: 60px 40px;
  }
  header .light-row .right-column .btn-group.opened input[type="text"] {
    display: block;
  }
  header .light-row .right-column .btn-group.opened button {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    background-color: var(--primary-color);
    border: 1px solid var(--primary-color);
    width: 50px !important;
    height: 50px !important;
  }
  header .light-row .right-column .btn-group.opened button svg path {
    fill: white;
  }
  header .light-row .right-column .btn-group.opened .close {
    display: block;
    position: absolute;
    top: 40px;
    right: 50px;
  }
  header .light-row .right-column .btn-group.opened .close svg path {
    stroke: var(--primary-color);
  }
  header .light-row .right-column > div:last-child {
    max-width: 170px;
  }
}
@media screen and (max-width: 991px) {
  header .light-row {
    flex-direction: column;
    align-items: center;
    row-gap: 30px;
  }
  header .light-row .left-column {
    position: absolute;
    width: calc(100% - 210px - 20px - 170px - 30px);
    left: 222px;
    justify-content: center;
  }
  header .light-row .left-column svg {
    width: 100%;
  }
  header .light-row .right-column {
    align-self: stretch;
  }
  header .light-row .right-column > div:last-child {
    justify-content: end;
    max-width: 100%;
  }
}
@media screen and (max-width: 767px) {
  header .light-row {
    row-gap: 0;
    padding: 0;
  }
  header .light-row .left-column {
    padding-top: 15px;
    padding-left: 20px;
    padding-right: 20px;
    width: 100%;
    left: auto;
    position: relative;
  }
  header .light-row .right-column {
    padding: 20px 10px 20px;
  }
  header .light-row .right-column .btn {
    padding: 8px 16px;
    column-gap: 10px;
  }
  header .light-row .right-column .icon {
    width: 40px;
    height: 40px;
  }
  header .light-row .right-column .btn-group button {
    width: 40px;
    height: 40px;
  }
  header .dark-row.opened {
    width: calc(var(--vw, 1vw) * 100);
    padding: 60px 0 40px 0;
  }
  header .dark-row.opened .close-navigation {
    display: block;
    position: absolute;
    right: 20px;
    top: 20px;
  }
  header .dark-row.opened .close-navigation svg {
    width: 24px;
    height: 24px;
  }
  header .dark-row.opened .left-column ul li {
    padding: 20px;
  }
  header .dark-row.opened .right-column {
    padding: 0 20px;
  }
  header .dark-row.opened .right-column ul li {
    font-size: 20px;
  }
  header .dark-row.opened .right-column ul li span {
    font-size: 15px;
    top: -2px;
  }
  header .dark-row.opened .right-column ul li.buttons {
    flex-wrap: wrap;
    row-gap: 20px;
    column-gap: 15px;
  }
  header .dark-row.opened .right-column ul li.buttons .btn {
    padding: 0 10px;
  }
  header .header-gap {
    display: none;
  }
  header.fixed {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
  }
  header.fixed .light-row {
    position: absolute;
    top: 0;
    left: 0;
    padding: 0;
    width: 100%;
  }
  header.fixed .light-row .left-column {
    position: absolute;
    top: -151px;
  }
  header.fixed .light-row .right-column {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    background-color: white;
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.15);
  }
}
@media screen and (max-width: 480px) {
  header .light-row .right-column {
    justify-content: center;
  }
  header .light-row .right-column .divider {
    display: none;
  }
  header .light-row .right-column .btn .hamb {
    display: none;
  }
}
@media screen and (min-width: 1690px) {
  header .dark-row {
    border-radius: 0 0 var(--section-border-radius) var(--section-border-radius);
  }
}

:root {
  --footer-column-gap: 40px;
  --footer-x-margin: 90px;
  --footer-y-margin: 90px;
}
@media screen and (max-width: 1439px) {
  :root {
    --footer-x-margin: 40px;
    --footer-y-margin: 90px;
  }
}
@media screen and (max-width: 1199px) {
  :root {
    --footer-column-gap: 60px;
    --footer-x-margin: 40px;
    --footer-y-margin: 60px;
  }
}
@media screen and (max-width: 991px) {
  :root {
    --footer-column-gap: 40px;
    --footer-x-margin: 20px;
    --footer-y-margin: 40px;
  }
}
@media screen and (max-width: 767px) {
  :root {
    --footer-column-gap: 40px;
    --footer-x-margin: 10px;
    --footer-y-margin: 40px;
  }
}

footer {
  background-color: black;
  background-image: url(../i/footer.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: white;
  max-width: var(--container-max-width);
}
@media screen and (max-width: 991px) {
  footer {
    background-size: cover;
  }
}
@media screen and (min-width: 1690px) {
  footer {
    border-radius: var(--section-border-radius) var(--section-border-radius) 0 0;
  }
}
footer .container {
  max-width: var(--container-max-width);
  min-width: var(--container-min-width);
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}
footer .container .copyright {
  grid-area: copyright;
  color: rgba(255, 255, 255, 0.5);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 26px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 991px) {
  footer .container .copyright {
    flex-direction: column;
    row-gap: 10px;
    align-items: start;
  }
}
footer .container .grid {
  display: flex;
  justify-content: space-between;
  padding: var(--footer-y-margin) var(--footer-x-margin);
}
footer .container .grid .header {
  font-family: "Forum", serif;
  font-size: 40px;
  margin-bottom: 30px;
}
footer .container .grid .left-column .logo {
  max-width: 100%;
}
footer .container .grid .left-column .logo path {
  fill: white;
}
footer .container .grid .left-column .timetable {
  margin: 50px 0 20px;
  display: flex;
  flex-direction: column;
  row-gap: 10px;
}
footer .container .grid .left-column .timetable p {
  margin: 0;
}
footer .container .grid .left-column .social {
  display: flex;
  column-gap: 15px;
}
footer .container .grid .left-column .social a {
  text-decoration: none;
}
footer .container .grid .left-column .social svg {
  width: 20px;
  height: 20px;
}
footer .container .grid .middle-column {
  padding-right: 80px;
}
footer .container .grid .middle-column ul {
  list-style: none;
  margin: 0;
  padding: 0;
  columns: 2;
  column-gap: var(--footer-column-gap);
  row-gap: 20px;
}
footer .container .grid .middle-column ul li {
  padding-bottom: 20px;
  break-inside: avoid;
  color: white;
  font-size: 15px;
}
footer .container .grid .middle-column ul li a {
  color: white;
  text-decoration: none;
}
@media screen and (max-width: 1439px) {
  footer .container .grid .middle-column {
    padding-right: 0;
  }
}
@media screen and (max-width: 1439px) {
  footer .container .grid .middle-column ul {
    columns: 2;
    column-gap: calc(var(--footer-column-gap) * 1.5);
  }
}
footer .container .grid .right-column .address {
  display: flex;
  column-gap: 15px;
  align-items: end;
  margin: 0;
}
footer .container .grid .right-column .address a {
  font-size: 24px;
  color: white;
  text-decoration: none;
}
footer .container .grid .right-column .address span {
  color: rgba(255, 255, 255, 0.5);
}
footer .container .grid .right-column .address + .address {
  margin-top: 12px;
}
footer .container .grid .right-column .email {
  margin: 20px 0 0;
}
footer .container .grid .right-column .email a {
  color: var(--secondary-color);
  text-decoration: none;
  font-size: 22px;
}
@media screen and (max-width: 1439px) {
  footer .container .grid .right-column {
    width: 220px;
    row-gap: 10px;
  }
  footer .container .grid .right-column .address {
    flex-wrap: wrap;
  }
  footer .container .grid .right-column .address a {
    width: 100%;
  }
  footer .container .grid .right-column .address span {
    width: 100%;
    text-align: right;
  }
  footer .container .grid .right-column .address + .address {
    margin-top: 20px;
  }
}
@media screen and (max-width: 1199px) {
  footer .container .grid {
    flex-wrap: wrap;
    column-gap: 0;
    row-gap: 50px;
  }
  footer .container .grid .left-column {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: start;
  }
  footer .container .grid .left-column .timetable {
    margin: 0;
  }
  footer .container .grid .left-column .text {
    display: flex;
    width: 50%;
    column-gap: 86px;
  }
  footer .container .grid .left-column .logo {
    max-width: 340px;
  }
  footer .container .grid .middle-column {
    width: 50%;
    padding-right: 10%;
  }
  footer .container .grid .middle-column ul {
    columns: 3;
    column-gap: 20px;
  }
  footer .container .grid .right-column {
    width: 50%;
  }
  footer .container .grid .right-column .address {
    flex-wrap: nowrap;
  }
  footer .container .grid .right-column .address a {
    width: auto;
  }
  footer .container .grid .right-column .address span {
    width: auto;
    text-align: left;
  }
}
@media screen and (max-width: 991px) {
  footer .container .grid .left-column {
    flex-direction: row;
    column-gap: 100px;
    align-items: center;
  }
  footer .container .grid .left-column .logo {
    max-width: 280px;
    flex-shrink: 0;
  }
  footer .container .grid .left-column .text {
    width: 100%;
    flex-direction: row;
    column-gap: 50px;
    align-items: center;
  }
  footer .container .grid .left-column .timetable {
    row-gap: 5px;
  }
  footer .container .grid .left-column .timetable p {
    text-align: left;
  }
  footer .container .grid .middle-column {
    display: none;
  }
  footer .container .grid .right-column {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    column-gap: 80px;
  }
  footer .container .grid .right-column .header {
    display: none;
  }
  footer .container .grid .right-column .address {
    flex-direction: column;
    align-items: center;
    row-gap: 5px;
  }
  footer .container .grid .right-column .address + .address {
    margin-top: 0;
  }
  footer .container .grid .right-column .email {
    text-align: left;
    margin-top: 0;
  }
}
@media screen and (max-width: 767px) {
  footer .container .grid .left-column {
    flex-direction: column;
    row-gap: 30px;
    align-items: center;
  }
  footer .container .grid .left-column .logo {
    max-width: 100%;
  }
  footer .container .grid .left-column .text {
    width: 100%;
    flex-direction: column;
    row-gap: 30px;
    align-items: center;
  }
  footer .container .grid .left-column .timetable p {
    text-align: center;
  }
  footer .container .grid .middle-column {
    display: none;
  }
  footer .container .grid .right-column {
    width: 100%;
    display: block;
  }
  footer .container .grid .right-column .header {
    display: none;
  }
  footer .container .grid .right-column .address {
    flex-direction: column;
    align-items: center;
    row-gap: 5px;
  }
  footer .container .grid .right-column .address + .address {
    margin-top: 36px;
  }
  footer .container .grid .right-column .email {
    text-align: center;
    margin-top: 30px;
  }
}
@media screen and (max-width: 767px) {
  footer .container {
    padding: 0;
  }
}

:root {
  --direction-item-height: 300px;
  --collection-item-height: 120px;
  --photo-item-height: 400px;
}
@media screen and (max-width: 1439px) {
  :root {
    --photo-item-height: 340px;
  }
}
@media screen and (max-width: 1199px) {
  :root {
    --photo-item-height: 300px;
  }
}
@media screen and (max-width: 767px) {
  :root {
    --direction-item-height: 260px;
    --collection-item-height: 100px;
  }
}
@media screen and (max-width: 480px) {
  :root {
    --direction-item-height: 200px;
  }
}

section {
  width: 100%;
}
section .section-container {
  width: 100%;
  max-width: var(--container-max-width);
  margin: 0 auto;
}
section .section-container > .header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 30px;
}
section .section-container > .header .title {
  font-size: 50px;
  font-family: "Forum", serif;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  section .section-container > .header .title {
    font-size: 40px;
  }
}
section .section-container > .header .nav {
  display: flex;
  align-items: center;
  column-gap: 20px;
}
section .section-container > .header .nav .arrows {
  display: flex;
  align-items: center;
  column-gap: 5px;
}
section .section-container > .header .nav .arrows svg {
  cursor: pointer;
}
section .section-container > .header .nav .arrows .disabled {
  opacity: 0.4;
  cursor: default;
}
@media screen and (max-width: 767px) {
  section .section-container > .header .nav .btn {
    display: none;
  }
}
section .section-container > .header .nav.tabs .btn {
  color: var(--primary-color);
  background-color: white;
  border: 1px solid rgb(220, 220, 220);
  display: inline-flex;
  white-space: nowrap;
}
section .section-container > .header .nav.tabs .btn.active {
  background-color: var(--primary-color);
  color: white;
}
@media screen and (max-width: 767px) {
  section .section-container > .header .nav.tabs {
    overflow: scroll;
    width: 100%;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: none;
    scrollbar-width: none;
    scroll-snap-type: x mandatory;
  }
  section .section-container > .header .nav.tabs::-webkit-scrollbar {
    display: none;
  }
}
@media screen and (max-width: 991px) {
  section .section-container > .header.with-buttons {
    flex-direction: column;
    row-gap: 20px;
    align-items: start;
  }
}
section.section-logo .section-container {
  padding: 40px 60px 40px;
  text-align: center;
}
section.section-logo .section-container svg {
  max-width: 100%;
}
section.section-error .section-container {
  padding: 40px 60px;
}
section.section-error .section-container .error-message {
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 40px;
  max-width: 800px;
  text-align: center;
  margin: 0 auto;
  padding: 80px 0 0;
}
section.section-error .section-container .error-message .status-code {
  font-size: 200px;
  line-height: 1;
}
section.section-error .section-container .error-message .header {
  font-size: 36px;
  font-family: "Forum", serif;
  font-weight: 400;
  line-height: 1.1;
  margin: 0;
}
section.section-error .section-container .error-message p {
  margin: 0;
  font-size: 20px;
}
section.section-error .section-container .error-message .btn {
  background-color: var(--primary-color);
  color: white;
}
@media screen and (max-width: 767px) {
  section.section-error .section-container .error-message {
    padding: 0;
    row-gap: 20px;
  }
  section.section-error .section-container .error-message .header {
    font-size: 24px;
  }
  section.section-error .section-container .error-message .status-code {
    font-size: 120px;
  }
}
@media screen and (max-width: 767px) {
  section.section-error .section-container {
    padding-left: 10px;
    padding-right: 10px;
  }
}
section.section-bcrumbs .section-container {
  padding: 20px 60px;
  font-size: 15px;
  background-color: rgb(243, 243, 243);
}
section.section-bcrumbs .section-container ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: inline;
  align-items: center;
  flex-wrap: wrap;
}
section.section-bcrumbs .section-container ul li {
  margin: 0;
  padding: 0;
  display: inline;
}
section.section-bcrumbs .section-container ul li:not(:first-child):before {
  display: inline-block;
  content: "";
  background-image: url("data:image/svg+xml,%3Csvg width='6' height='10' viewBox='0 0 6 10' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L5 5L1 9' stroke='%23696563' stroke-linecap='round'/%3E%3C/svg%3E%0A");
  width: 6px;
  height: 10px;
  margin-left: 10px;
  margin-right: 10px;
}
section.section-bcrumbs .section-container ul li a {
  color: rgb(105, 101, 99);
}
section.section-bcrumbs .section-container ul li span {
  color: rgba(105, 101, 99, 0.6);
}
@media screen and (min-width: 1690px) {
  section.section-bcrumbs .section-container {
    border-radius: 10px;
  }
}
@media screen and (max-width: 991px) {
  section.section-bcrumbs .section-container ul {
    display: block;
    overflow-x: scroll;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: none;
    scrollbar-width: none;
    scroll-snap-type: x mandatory;
    white-space: nowrap;
  }
  section.section-bcrumbs .section-container ul::-webkit-scrollbar {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  section.section-bcrumbs .section-container {
    padding: 20px;
  }
  section.section-bcrumbs .section-container ul {
    direction: ltr;
  }
  section.section-bcrumbs .section-container ul li {
    display: none;
  }
  section.section-bcrumbs .section-container ul li.first {
    display: inline;
  }
  section.section-bcrumbs .section-container ul li.visible {
    display: inline;
  }
}
@media screen and (min-width: 1690px) {
  section.section-header + section.section-bcrumbs .section-container {
    border-radius: 0 0 var(--section-border-radius) var(--section-border-radius);
  }
}
section.section-default .section-container {
  padding: 40px 60px 0;
}
section.section-default .section-container h1 {
  font-family: "Forum", serif;
  font-size: 45px;
  line-height: 1.1;
  font-weight: 400;
  margin: 0 0 30px;
}
section.section-default .section-container p {
  margin: 0 0 15px;
}
section.section-default .section-container table {
  border-collapse: collapse;
  margin: 0 0 15px;
}
section.section-default .section-container table tr td {
  border: 1px solid var(--primary-color);
  padding: 5px 10px;
}
@media screen and (max-width: 767px) {
  section.section-default .section-container {
    padding: 40px 20px 0;
  }
  section.section-default .section-container h1 {
    font-size: 36px;
  }
}
section.section-banner .section-container {
  max-width: var(--container-max-width);
}
section.section-banner .section-container .previous,
section.section-banner .section-container .next {
  display: none;
}
@media screen and (min-width: 1690px) {
  section.section-banner .section-container .slider .slider-item img {
    border-radius: var(--section-border-radius);
  }
}
section.section-brands .section-container {
  padding: 40px var(--section-x-gap);
}
section.section-brands .section-container .brands-list {
  display: flex;
  flex-wrap: nowrap;
  position: relative;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  -ms-overflow-style: none;
  scrollbar-width: none;
  scroll-snap-type: x mandatory;
  column-gap: 10px;
}
section.section-brands .section-container .brands-list::-webkit-scrollbar {
  display: none;
}
section.section-brands .section-container .brands-list a {
  scroll-snap-align: start;
  scroll-behavior: smooth;
  flex-shrink: 0;
  width: 186px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.3;
}
section.section-brands .section-container .brands-list a:hover {
  opacity: 1;
}
section.section-brands .section-container .brands-list a svg,
section.section-brands .section-container .brands-list a img {
  max-width: 80%;
  max-height: 80%;
}
@media screen and (max-width: 767px) {
  section.section-brands .section-container .brands-list a {
    width: 110px;
    height: 56px;
  }
  section.section-brands .section-container .brands-list a svg,
  section.section-brands .section-container .brands-list a img {
    max-width: 70%;
    max-height: 70%;
  }
}
section.section-brands .section-container .brands-list + .brands-list {
  margin-top: 10px;
}
section.section-brands .section-container .alphabet .scrollable {
  text-align: center;
  overflow-x: scroll;
  position: relative;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  -ms-overflow-style: none;
  scrollbar-width: none;
  scroll-snap-type: x mandatory;
}
section.section-brands
  .section-container
  .alphabet
  .scrollable::-webkit-scrollbar {
  display: none;
}
section.section-brands .section-container .alphabet .scrollable .letters {
  margin: 100px auto 80px;
  display: inline-flex;
  column-gap: 10px;
  font-size: 24px;
  list-style: none;
  padding: 0;
  white-space: nowrap;
}
section.section-brands .section-container .alphabet .scrollable .letters a,
section.section-brands .section-container .alphabet .scrollable .letters span {
  text-decoration: none;
  display: block;
  padding: 2px 10px;
}
section.section-brands
  .section-container
  .alphabet
  .scrollable
  .letters
  a.active,
section.section-brands
  .section-container
  .alphabet
  .scrollable
  .letters
  span.active {
  color: var(--secondary-color);
  background-color: rgb(243, 243, 243);
  border-radius: 10px;
}
section.section-brands .section-container .alphabet .scrollable .letters span {
  color: rgba(0, 0, 0, 0.4);
}
section.section-brands .section-container .alphabet .scrollable .letters li {
  padding: 0;
  margin: 0;
}
section.section-brands .section-container .alphabet .scrollable .letters li ol {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
}
section.section-brands .section-container .alphabet .brands-grid {
  display: flex;
  align-items: start;
  column-gap: 40px;
}
section.section-brands
  .section-container
  .alphabet
  .brands-grid
  .brands-filter {
  width: 350px;
  flex-shrink: 0;
  align-self: start;
  background-color: rgb(243, 243, 243);
  border-radius: 30px;
  padding: 40px;
}
section.section-brands
  .section-container
  .alphabet
  .brands-grid
  .brands-filter
  .header {
  font-family: "Forum", serif;
  font-size: 22px;
  margin: 0 0 20px;
  display: block;
  font-weight: 400;
}
section.section-brands
  .section-container
  .alphabet
  .brands-grid
  .brands-filter
  ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  row-gap: 10px;
}
section.section-brands
  .section-container
  .alphabet
  .brands-grid
  .brands-filter
  ul
  li
  a.active {
  color: var(--secondary-color);
}
section.section-brands .section-container .alphabet .brands-grid .brands-items {
  display: flex;
  flex-direction: column;
  row-gap: 40px;
  width: 100%;
}
section.section-brands
  .section-container
  .alphabet
  .brands-grid
  .brands-items
  .brands-block {
  width: 100%;
}
section.section-brands
  .section-container
  .alphabet
  .brands-grid
  .brands-items
  .brands-block
  .header {
  font-family: "Forum", serif;
  font-size: 45px;
  line-height: 1;
  border-bottom: 1px solid rgb(234, 234, 234);
  padding-bottom: 20px;
}
section.section-brands
  .section-container
  .alphabet
  .brands-grid
  .brands-items
  .brands-block
  ul {
  list-style: none;
  margin: 20px 0 0;
  padding: 0;
  columns: 4;
  row-gap: 30px;
}
section.section-brands
  .section-container
  .alphabet
  .brands-grid
  .brands-items
  .brands-block
  ul
  li {
  padding: 7px 0;
}
@media screen and (max-width: 1199px) {
  section.section-brands .section-container .alphabet .scrollable .letters {
    font-size: 20px;
    margin: 80px auto 60px;
    column-gap: 8px;
  }
  section.section-brands .section-container .alphabet .scrollable .letters a,
  section.section-brands
    .section-container
    .alphabet
    .scrollable
    .letters
    span {
    padding: 0 8px;
  }
  section.section-brands
    .section-container
    .alphabet
    .brands-grid
    .brands-items
    .brands-block
    ul {
    columns: 3;
  }
}
@media screen and (max-width: 991px) {
  section.section-brands .section-container .alphabet .brands-grid {
    flex-direction: column;
    row-gap: 40px;
  }
  section.section-brands
    .section-container
    .alphabet
    .brands-grid
    .brands-filter {
    width: 100%;
  }
  section.section-brands
    .section-container
    .alphabet
    .brands-grid
    .brands-filter
    ul {
    flex-direction: row;
    column-gap: 30px;
    flex-wrap: wrap;
  }
  section.section-brands
    .section-container
    .alphabet
    .brands-grid
    .brands-items
    .brands-block
    ul {
    columns: 3;
  }
}
@media screen and (max-width: 767px) {
  section.section-brands
    .section-container
    .alphabet
    .brands-grid
    .brands-filter {
    width: 100%;
  }
  section.section-brands
    .section-container
    .alphabet
    .brands-grid
    .brands-filter
    ul {
    flex-direction: column;
    column-gap: 30px;
    flex-wrap: wrap;
  }
  section.section-brands
    .section-container
    .alphabet
    .brands-grid
    .brands-items
    .brands-block
    ul {
    columns: 2;
  }
}
@media screen and (min-width: 1690px) {
  section.section-brands .section-container {
    padding-left: 0;
    padding-right: 0;
  }
}
section.section-directions .section-container {
  padding: 0 20px 80px;
}
section.section-directions .section-container .directions-list {
  display: flex;
  flex-wrap: wrap;
  column-gap: 10px;
  row-gap: 10px;
}
section.section-directions .section-container .directions-list .item {
  width: calc(33.3333333333% - 6.6666666667px);
  height: var(--direction-item-height);
  border-radius: 30px;
  position: relative;
  color: white;
}
section.section-directions .section-container .directions-list .item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 30px;
}
section.section-directions .section-container .directions-list .item .shadow {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
  border-radius: 30px;
  position: absolute;
  background: linear-gradient(
    21.59deg,
    #000000 -11.47%,
    rgba(0, 0, 0, 0) 40.27%
  );
}
section.section-directions .section-container .directions-list .item .badge {
  z-index: 2;
  background-color: rgba(0, 0, 0, 0.3);
  left: 20px;
  top: 20px;
  padding: 10px 18px;
  border-radius: var(--btn-border-radius);
  text-decoration: none;
  position: absolute;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
section.section-directions .section-container .directions-list .item strong {
  display: block;
  position: absolute;
  z-index: 2;
  font-size: 40px;
  font-family: "Forum", serif;
  left: 40px;
  bottom: 40px;
  line-height: 1;
  font-weight: 400;
}
section.section-directions .section-container .directions-list .item svg {
  position: absolute;
  top: 10px;
  right: 10px;
}
section.section-directions .section-container .directions-list .item.small {
  width: calc(22% - 6.6666666667px);
}
section.section-directions .section-container .directions-list .item.medium {
  width: calc(35% - 6.6666666667px);
}
section.section-directions .section-container .directions-list .item.large {
  width: calc(43% - 6.6666666667px);
}
@media screen and (max-width: 1439px) {
  section.section-directions .section-container .directions-list .item.small {
    width: calc(25% - 6.6666666667px);
  }
  section.section-directions .section-container .directions-list .item.medium {
    width: calc(35% - 6.6666666667px);
  }
  section.section-directions .section-container .directions-list .item.large {
    width: calc(40% - 6.6666666667px);
  }
}
@media screen and (max-width: 1199px) {
  section.section-directions .section-container .directions-list .item.small {
    width: calc(50% - 5px);
  }
  section.section-directions .section-container .directions-list .item.medium {
    width: calc(50% - 5px);
  }
  section.section-directions .section-container .directions-list .item.large {
    width: calc(50% - 5px);
  }
}
@media screen and (max-width: 767px) {
  section.section-directions .section-container .directions-list .item {
    border-radius: 20px;
  }
  section.section-directions .section-container .directions-list .item strong {
    font-size: 30px;
    left: 30px;
    bottom: 30px;
  }
  section.section-directions .section-container .directions-list .item img {
    border-radius: 20px;
  }
  section.section-directions .section-container .directions-list .item.small {
    width: 100%;
  }
  section.section-directions .section-container .directions-list .item.medium {
    width: 100%;
  }
  section.section-directions .section-container .directions-list .item.large {
    width: 100%;
  }
}
@media screen and (min-width: 1690px) {
  section.section-directions .section-container {
    padding-left: 0;
    padding-right: 0;
  }
}
section.section-products {
  background-color: rgb(243, 243, 243);
}
section.section-products .section-container {
  padding: 60px 20px 40px;
}
section.section-products .section-container .header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 30px;
}
section.section-products .section-container .header .title {
  font-size: 50px;
  font-family: "Forum", serif;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  section.section-products .section-container .header .title {
    font-size: 40px;
  }
}
section.section-products .section-container .header .nav {
  display: flex;
  align-items: center;
  column-gap: 20px;
}
section.section-products .section-container .header .nav .arrows {
  display: flex;
  align-items: center;
  column-gap: 5px;
}
section.section-products .section-container .header .nav .arrows svg {
  cursor: pointer;
}
section.section-products .section-container .header .nav .arrows .disabled {
  opacity: 0.4;
  cursor: default;
}
@media screen and (max-width: 767px) {
  section.section-products .section-container .header .nav .btn {
    display: none;
  }
}
section.section-products .section-container .products-slider {
  position: relative;
  overflow: hidden;
}
section.section-products
  .section-container
  .products-slider
  .products-slider-wrapper {
  display: flex;
  flex-wrap: nowrap;
  position: relative;
}
section.section-products
  .section-container
  .products-slider
  .products-slider-wrapper
  .swiper-slide {
  height: auto;
}
section.section-products
  .section-container
  .products-slider
  .products-slider-dots {
  display: flex;
  justify-content: center;
  column-gap: 5px;
  margin-top: 20px;
}
section.section-products
  .section-container
  .products-slider
  .products-slider-dots
  i,
section.section-products
  .section-container
  .products-slider
  .products-slider-dots
  .swiper-pagination-bullet {
  width: 20px;
  height: 6px;
  background-color: rgb(44, 44, 44);
  border-radius: 3px;
  transition: all 0.3s;
  opacity: 0.2;
  cursor: pointer;
  margin: 0;
}
section.section-products
  .section-container
  .products-slider
  .products-slider-dots
  i.active,
section.section-products
  .section-container
  .products-slider
  .products-slider-dots
  i.swiper-pagination-bullet-active,
section.section-products
  .section-container
  .products-slider
  .products-slider-dots
  .swiper-pagination-bullet.active,
section.section-products
  .section-container
  .products-slider
  .products-slider-dots
  .swiper-pagination-bullet.swiper-pagination-bullet-active {
  width: 50px;
  opacity: 1;
}
section.section-products .section-container > .btn {
  display: none;
}
@media screen and (max-width: 767px) {
  section.section-products .section-container {
    padding: 40px 20px 40px;
  }
  section.section-products .section-container > .btn {
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    display: inline-flex;
    margin: 36px 0 0;
  }
}
@media screen and (min-width: 1690px) {
  section.section-products .section-container {
    padding-left: 0;
    padding-right: 0;
  }
}
section.section-products.reverse-colors {
  background-color: white;
}
section.section-products.reverse-colors .section-container {
  padding: 40px 20px 40px;
}
section.section-products.reverse-colors
  .section-container
  .products-slider
  .products-item {
  background-color: rgb(243, 243, 243);
}
@media screen and (max-width: 767px) {
  section.section-products.reverse-colors .section-container {
    padding: 40px 20px 40px;
  }
}
section.section-about {
  max-width: var(--container-max-width);
  padding-top: 40px;
}
section.section-about .section-container {
  width: 100%;
  background-image: url(../i/about.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  position: relative;
  padding: 70px 120px 90px 185px;
}
section.section-about .section-container .shadow {
  position: absolute;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-image: url(../i/s1.png);
  background-size: 100% 100%;
  background-repeat: no-repeat;
}
section.section-about .section-container .shadow div {
  width: 100%;
  height: 100%;
  background-image: url(../i/s2.png);
  background-size: 100% 100%;
  background-repeat: no-repeat;
}
section.section-about .section-container .content-wrapper {
  display: flex;
  column-gap: 140px;
}
section.section-about .section-container .content-wrapper .video-column {
  position: relative;
  z-index: 2;
  color: white;
}
section.section-about
  .section-container
  .content-wrapper
  .video-column
  .header {
  color: #9f9f9f;
  font-family: "Forum", serif;
  font-size: 40px;
  line-height: 1;
  margin-bottom: 60px;
}
section.section-about
  .section-container
  .content-wrapper
  .video-column
  .header
  span {
  display: block;
}
section.section-about
  .section-container
  .content-wrapper
  .video-column
  .header
  i {
  color: white;
  font-size: 70px;
  font-style: normal;
}
section.section-about
  .section-container
  .content-wrapper
  .video-column
  .header
  span
  + span {
  padding-left: 60px;
}
section.section-about
  .section-container
  .content-wrapper
  .video-column
  .poster {
  width: 480px;
  height: 300px;
  background: url(../i/video.jpg) center no-repeat;
  border-radius: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
}
section.section-about
  .section-container
  .content-wrapper
  .video-column
  .poster
  .button {
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 15px;
  border-radius: 50%;
  line-height: 0;
}
section.section-about .section-container .content-wrapper .text-column {
  position: relative;
  z-index: 2;
  color: white;
  max-width: 580px;
}
section.section-about
  .section-container
  .content-wrapper
  .text-column
  .h1-header {
  font-family: "Forum", serif;
  font-size: 107px;
  line-height: 0.8;
  position: relative;
  left: -128px;
}
section.section-about
  .section-container
  .content-wrapper
  .text-column
  .h2-header {
  font-size: 64px;
  font-family: "Forum", serif;
  line-height: 1;
  margin: 0 0 35px;
}
section.section-about .section-container .content-wrapper .text-column p {
  margin: 0 0 2em;
}
section.section-about
  .section-container
  .content-wrapper
  .text-column
  > *:last-child {
  margin-bottom: 0;
}
@media screen and (min-width: 1690px) {
  section.section-about .section-container {
    border-radius: var(--section-border-radius);
    overflow: hidden;
  }
}
@media screen and (max-width: 1439px) {
  section.section-about .section-container {
    padding: 70px 100px 90px 140px;
  }
  section.section-about .section-container .content-wrapper {
    column-gap: 120px;
  }
  section.section-about
    .section-container
    .content-wrapper
    .video-column
    .poster {
    width: 400px;
    height: 240px;
  }
  section.section-about .section-container .content-wrapper .text-column {
    max-width: 500px;
  }
  section.section-about
    .section-container
    .content-wrapper
    .text-column
    .h1-header {
    font-size: 96px;
    left: -90px;
  }
  section.section-about
    .section-container
    .content-wrapper
    .text-column
    .h2-header {
    font-size: 50px;
  }
}
@media screen and (max-width: 1199px) {
  section.section-about .section-container {
    padding: 50px 90px 90px 90px;
  }
  section.section-about .section-container .content-wrapper {
    flex-direction: column-reverse;
    align-items: center;
    column-gap: 0;
    row-gap: 120px;
  }
  section.section-about .section-container .content-wrapper .text-column {
    width: 600px;
  }
  section.section-about .section-container .content-wrapper .video-column {
    display: flex;
    column-gap: 60px;
  }
}
@media screen and (max-width: 991px) {
  section.section-about .section-container {
    padding: 50px;
  }
  section.section-about .section-container .content-wrapper .text-column {
    width: 90%;
    max-width: 480px;
  }
  section.section-about
    .section-container
    .content-wrapper
    .text-column
    .h1-header {
    left: 0;
  }
  section.section-about
    .section-container
    .content-wrapper
    .text-column
    .h2-header {
    padding-left: 80px;
  }
  section.section-about .section-container .content-wrapper .video-column {
    flex-direction: column;
  }
  section.section-about
    .section-container
    .content-wrapper
    .video-column
    .header {
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 767px) {
  section.section-about
    .section-container
    .content-wrapper
    .text-column
    .h1-header {
    font-size: 68px;
  }
  section.section-about
    .section-container
    .content-wrapper
    .text-column
    .h2-header {
    font-size: 32px;
  }
  section.section-about
    .section-container
    .content-wrapper
    .video-column
    .header {
    font-size: 32px;
  }
  section.section-about
    .section-container
    .content-wrapper
    .video-column
    .header
    i {
    font-size: 68px;
  }
  section.section-about
    .section-container
    .content-wrapper
    .video-column
    .header
    span
    + span {
    padding: 0;
  }
}
@media screen and (max-width: 480px) {
  section.section-about .section-container {
    padding: 50px 20px;
  }
  section.section-about .section-container .content-wrapper {
    row-gap: 80px;
  }
  section.section-about
    .section-container
    .content-wrapper
    .text-column
    .h2-header {
    padding-left: 0;
    text-align: right;
    font-size: 30px;
  }
  section.section-about .section-container .content-wrapper .video-column {
    width: 100%;
  }
  section.section-about
    .section-container
    .content-wrapper
    .video-column
    .header {
    font-size: 30px;
  }
  section.section-about
    .section-container
    .content-wrapper
    .video-column
    .poster {
    width: 100%;
    height: auto;
    aspect-ratio: 8/5;
  }
}
section.section-projects {
  padding: 50px 0 50px;
  overflow: hidden;
}
section.section-projects .section-container {
  position: relative;
}
section.section-projects .section-container .text {
  width: 800px;
  background-color: rgb(243, 243, 243);
  border-radius: 0 30px 30px 0;
  padding: 125px 125px 150px 80px;
  display: flex;
  flex-direction: column;
  row-gap: 30px;
  align-items: start;
}
section.section-projects .section-container .text .header {
  font-family: "Forum", serif;
  font-size: 46px;
  line-height: 1;
}
section.section-projects .section-container .text .header span {
  color: var(--secondary-color);
  display: block;
}
section.section-projects .section-container .text p {
  max-width: 350px;
}
@media screen and (min-width: 1690px) {
  section.section-projects .section-container .text {
    border-radius: 30px;
  }
}
section.section-projects .section-container .hero {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 585px;
}
@media screen and (min-width: 1690px) {
  section.section-projects .section-container .hero {
    left: calc(100% - 1037px);
  }
}
@media screen and (max-width: 991px) {
  section.section-projects .section-container .text {
    padding-top: 100px;
    width: 86%;
  }
  section.section-projects .section-container .text p {
    max-width: 90%;
  }
  section.section-projects .section-container .hero {
    position: relative;
    left: 80px;
    margin-top: -80px;
    transform: none;
    width: calc(100% - 80px - 20px);
  }
}
@media screen and (max-width: 767px) {
  section.section-projects .section-container .text {
    padding: 30px 20px 100px 20px;
    width: calc(100% - 20px);
    row-gap: 20px;
  }
  section.section-projects .section-container .text .header {
    font-size: 30px;
  }
  section.section-projects .section-container .text .header span {
    display: inline;
  }
  section.section-projects .section-container .text p {
    max-width: 100%;
  }
  section.section-projects .section-container .hero {
    position: relative;
    left: 20px;
    margin-top: -60px;
    transform: none;
    width: 700px;
  }
}
section.section-tiles .section-container {
  padding: 80px 20px 40px;
  display: flex;
  column-gap: 10px;
}
section.section-tiles .section-container .tile {
  background-color: rgb(234, 234, 234);
  border-radius: 30px;
  overflow: hidden;
  width: calc(50% - 6.6666666667px);
  padding: 40px 50px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: start;
  height: 320px;
  background-position: right bottom;
  background-repeat: no-repeat;
  background-size: 45% auto;
}
section.section-tiles .section-container .tile .header {
  font-size: 30px;
  font-family: "Forum", serif;
  line-height: 1.1;
  max-width: 260px;
}
section.section-tiles .section-container .tile.service {
  background-color: var(--primary-color);
  background-image: url(../i/service.png);
  color: white;
  background-size: 80% auto;
}
section.section-tiles .section-container .tile.service .btn {
  background-color: white;
  color: var(--primary-color);
}
section.section-tiles .section-container .tile.price {
  background-image: url(../i/price.png);
  color: var(--primary-color);
}
section.section-tiles .section-container .tile.price .btn {
  background-color: var(--primary-color);
  color: white;
}
section.section-tiles .section-container .tile.partners {
  background-color: var(--secondary-color);
  background-image: url(../i/partners.png);
  color: var(--primary-color);
  background-size: 55% auto;
}
section.section-tiles .section-container .tile.partners .header {
  color: white;
}
section.section-tiles .section-container .tile.partners .btn {
  background-color: white;
  color: var(--primary-color);
}
@media screen and (max-width: 1439px) {
  section.section-tiles .section-container .tile {
    background-size: 70% auto;
  }
  section.section-tiles .section-container .tile.price {
    background-size: 45% auto;
  }
  section.section-tiles .section-container .tile.partners {
    background-size: 60% auto;
  }
}
@media screen and (max-width: 1199px) {
  section.section-tiles .section-container {
    flex-wrap: wrap;
    row-gap: 10px;
  }
  section.section-tiles .section-container .tile {
    width: calc(50% - 5px);
    background-size: 60% auto;
  }
  section.section-tiles .section-container .tile.partners {
    width: 100%;
    background-size: auto 85%;
  }
  section.section-tiles .section-container .tile.partners .header {
    max-width: 300px;
  }
}
@media screen and (max-width: 991px) {
  section.section-tiles .section-container .tile {
    background-size: auto 60%;
  }
  section.section-tiles .section-container .tile.price {
    background-size: auto 70%;
  }
  section.section-tiles .section-container .tile.partners .header {
    max-width: 300px;
  }
}
@media screen and (max-width: 767px) {
  section.section-tiles .section-container .tile {
    width: 100%;
    background-size: auto 65%;
  }
  section.section-tiles .section-container .tile.price {
    background-size: auto 90%;
  }
  section.section-tiles .section-container .tile.partners {
    background-size: auto 90%;
  }
}
@media screen and (max-width: 480px) {
  section.section-tiles .section-container .tile {
    padding: 30px;
    height: 280px;
  }
  section.section-tiles .section-container .tile .header {
    max-width: 100%;
    font-size: 26px;
  }
  section.section-tiles .section-container .tile.partners {
    background-size: 56% auto;
  }
}
@media screen and (min-width: 1690px) {
  section.section-tiles .section-container {
    padding-left: 0;
    padding-right: 0;
  }
}
section.section-news {
  background-color: rgb(243, 243, 243);
}
section.section-news .section-container {
  padding: 40px 20px 80px;
}
section.section-news .section-container > .header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 30px;
}
section.section-news .section-container > .header .title {
  font-size: 50px;
  font-family: "Forum", serif;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  section.section-news .section-container > .header .title {
    font-size: 40px;
  }
}
section.section-news .section-container > .header .nav {
  display: flex;
  align-items: center;
  column-gap: 20px;
}
section.section-news .section-container > .header .nav .arrows {
  display: flex;
  align-items: center;
  column-gap: 5px;
}
section.section-news .section-container > .header .nav .arrows svg {
  cursor: pointer;
}
section.section-news .section-container > .header .nav .arrows .disabled {
  opacity: 0.4;
  cursor: default;
}
@media screen and (max-width: 767px) {
  section.section-news .section-container > .header .nav .btn {
    display: none;
  }
}
section.section-news .section-container .news-slider .news-item {
  width: calc(25% - 7.5px);
}
@media screen and (max-width: 1439px) {
  section.section-news .section-container .news-slider .news-item {
    width: calc(33.3333333333% - 6.6666666667px);
  }
}
@media screen and (max-width: 1199px) {
  section.section-news .section-container .news-slider .news-item {
    width: calc(50% - 5px);
  }
}
@media screen and (max-width: 767px) {
  section.section-news .section-container .news-slider .news-item {
    width: 100%;
  }
}
section.section-news .section-container .news-items {
  display: flex;
  flex-wrap: wrap;
  gap: 40px 10px;
}
section.section-news .section-container .news-item {
  background-color: white;
  border-radius: 30px;
  overflow: hidden;
  padding: 10px;
  display: flex;
  flex-direction: column;
  row-gap: 10px;
  text-decoration: none;
  width: calc(25% - 7.5px);
  flex-shrink: 0;
  height: auto;
}
section.section-news .section-container .news-item img {
  max-width: 100%;
  border-radius: 24px;
  object-fit: cover;
  object-position: center;
  aspect-ratio: 4/3;
}
section.section-news .section-container .news-item .title {
  padding: 20px 20px 0 20px;
  font-size: 18px;
  font-weight: 500;
}
section.section-news .section-container .news-item .description {
  padding: 0 20px 0 20px;
  color: rgb(132, 132, 132);
}
section.section-news .section-container .news-item .sep {
  flex-grow: 1;
}
section.section-news .section-container .news-item .date {
  padding: 0 20px 10px 20px;
  color: rgba(132, 132, 132, 0.5);
  text-align: right;
  font-size: 0.8em;
}
@media screen and (max-width: 1439px) {
  section.section-news .section-container .news-item {
    width: calc(33.3333333333% - 6.6666666667px);
  }
}
@media screen and (max-width: 1199px) {
  section.section-news .section-container .news-item {
    width: calc(50% - 5px);
  }
}
@media screen and (max-width: 767px) {
  section.section-news .section-container .news-item {
    width: 100%;
  }
}
section.section-news .section-container .news-info {
  padding: 0 40px;
}
section.section-news .section-container .news-info .news-text-info {
  max-width: 1150px;
}
section.section-news .section-container .news-info .gallery {
  max-width: 1150px;
}
section.section-news .section-container .news-info .buttons {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  flex-wrap: wrap;
  row-gap: 10px;
  column-gap: 20px;
}
section.section-news .section-container .news-info .buttons .btn {
  background-color: var(--primary-color);
  color: white;
}
section.section-news .section-container .news-info > img,
section.section-news .section-container .news-info > p {
  width: 100%;
  margin-bottom: 20px;
}
section.section-news .section-container .news-info .header {
  font-size: 45px;
  font-family: "Forum", serif;
  margin: 0 0 30px;
  font-weight: 400;
  line-height: 1.1;
}
section.section-news .section-container .news-info p {
  margin: 0 0 20px;
}
section.section-news .section-container .news-info p img {
  width: 100%;
}
section.section-news .section-container .news-info .date {
  display: block;
  padding: 0 20px 10px 20px;
  color: rgba(132, 132, 132, 0.5);
  text-align: right;
  font-size: 0.9em;
}
section.section-news .section-container .news-info .gallery,
section.section-news .section-container .news-info .masonry {
  margin-top: 50px;
}
section.section-news .section-container > .btn {
  display: none;
}
@media screen and (max-width: 767px) {
  section.section-news .section-container > .btn {
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    display: inline-flex;
    margin: 36px 0 0;
  }
}
@media screen and (max-width: 767px) {
  section.section-news .section-container {
    padding: 40px 20px;
  }
  section.section-news .section-container .news-info {
    padding: 0;
  }
}
@media screen and (min-width: 1690px) {
  section.section-news .section-container {
    padding-left: 0;
    padding-right: 0;
  }
}
section.section-news.white {
  background-color: white;
}
section.section-news.white .section-container {
  padding: 80px 20px 0;
}
section.section-news.white .section-container .news-item {
  background-color: rgb(243, 243, 243);
}
@media screen and (max-width: 767px) {
  section.section-news.white .section-container {
    padding: 40px 20px 0;
  }
}
section.section-help .section-container {
  padding: 80px 0 80px 20px;
  overflow: hidden;
}
section.section-help .section-container .grid {
  background-color: rgb(243, 243, 243);
  border-radius: var(--section-border-radius) 0 0 var(--section-border-radius);
  overflow: hidden;
  display: flex;
  flex-wrap: nowrap;
  padding: 10px 0 10px 10px;
  column-gap: 100px;
}
section.section-help .section-container .grid .image {
  border-radius: 24px;
  overflow: hidden;
  line-height: 0;
  width: calc(50% - 50px);
  flex-shrink: 0;
}
section.section-help .section-container .grid .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
section.section-help .section-container .grid form {
  align-self: center;
  padding: 60px 20px 60px 0;
  max-width: 570px;
}
section.section-help .section-container .grid form .header {
  font-family: "Forum", serif;
  font-size: 40px;
  line-height: 1.1;
}
section.section-help .section-container .grid form .header span {
  color: var(--secondary-color);
}
section.section-help .section-container .grid form p {
  margin: 20px 0;
  color: rgb(132, 132, 132);
}
section.section-help .section-container .grid form .rows {
  display: flex;
  flex-direction: column;
  row-gap: 10px;
}
section.section-help .section-container .grid form .rows .columns {
  display: flex;
  column-gap: 10px;
}
section.section-help .section-container .grid form .rows .columns input {
  width: 50%;
}
section.section-help .section-container .grid form input[type="text"] {
  border-radius: var(--btn-border-radius);
  height: 50px;
  border: 1px solid var(--light-gray-color);
  padding: 16px 20px;
  outline: none;
}
section.section-help .section-container .grid form .buttons {
  padding-top: 30px;
  display: flex;
  column-gap: 30px;
  align-items: center;
}
section.section-help
  .section-container
  .grid
  form
  .buttons
  input[type="submit"] {
  border: none;
  background-color: var(--primary-color);
  color: white;
  padding: 0 58px;
}
section.section-help .section-container .grid form .buttons p {
  color: rgb(162, 162, 162);
  font-size: 14px;
  margin: 0;
}
section.section-help .section-container .grid .success {
  padding: 50px 30px;
  display: flex;
  flex-direction: column;
  row-gap: 20px;
  justify-content: center;
  align-items: center;
}
section.section-help .section-container .grid .success > * {
  margin: 0;
}
section.section-help .section-container .grid .success .header {
  font-size: 45px;
  font-family: "Forum", serif;
  line-height: 1.1;
  font-weight: 400;
  text-align: center;
  margin: 0 0 30px;
}
section.section-help .section-container .grid .success .btn {
  position: relative;
  top: auto;
  right: auto;
}
@media screen and (max-width: 767px) {
  section.section-help .section-container .grid .success {
    padding: 30px;
  }
  section.section-help .section-container .grid .success .header {
    font-size: 36px;
    margin-bottom: 20px;
  }
}
@media screen and (min-width: 1690px) {
  section.section-help .section-container {
    padding: 80px 0 80px 0;
  }
  section.section-help .section-container .grid {
    border-radius: var(--section-border-radius);
  }
}
@media screen and (max-width: 1199px) {
  section.section-help .section-container .grid {
    flex-direction: row-reverse;
    column-gap: 60px;
  }
  section.section-help .section-container .grid .image {
    border-radius: 24px 0 0 24px;
    width: calc(100% - 570px - 40px);
  }
  section.section-help .section-container .grid .image img {
    object-position: left center;
  }
}
@media screen and (max-width: 767px) {
  section.section-help .section-container {
    padding: 40px 10px;
  }
  section.section-help .section-container .grid {
    flex-direction: column;
    row-gap: 30px;
    border-radius: 30px;
    padding: 10px;
  }
  section.section-help .section-container .grid .image {
    width: 100%;
    border-radius: 24px;
  }
  section.section-help .section-container .grid form {
    width: 100%;
    max-width: 100%;
    padding: 0 10px 20px;
  }
  section.section-help .section-container .grid form .rows .columns {
    flex-direction: column;
    row-gap: 10px;
  }
  section.section-help .section-container .grid form .rows .columns input {
    width: 100%;
  }
  section.section-help .section-container .grid form .buttons {
    flex-direction: column;
    row-gap: 20px;
  }
}
@media screen and (max-width: 480px) {
  section.section-help .section-container .grid form .header {
    font-size: 30px;
  }
  section.section-help .section-container .grid form .buttons {
    align-items: stretch;
  }
  section.section-help .section-container .grid form .buttons .btn {
    justify-content: center;
    white-space: normal;
  }
}
section.section-header .section-container {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 40px 100px;
  position: relative;
  display: flex;
  align-items: center;
  font-family: "Forum", serif;
  font-size: 50px;
  color: white;
}
section.section-header .section-container .shadow {
  background: linear-gradient(7.73deg, #000000 4.29%, rgba(0, 0, 0, 0) 55.27%);
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
section.section-header .section-container .title {
  z-index: 2;
  line-height: 1;
}
section.section-header .section-container .title span {
  display: block;
  font-size: 16px;
  font-weight: normal;
  font-family: "Gilroy";
  max-width: 450px;
  margin: 30px 0 0;
  line-height: 1.4;
}
section.section-header .section-container .title h1 {
  font-size: 1em;
  margin: 0;
  font-weight: normal;
}
section.section-header .section-container .title .badge {
  display: inline-block;
  background-color: rgba(243, 243, 243, 0.2);
  padding: 10px 18px;
  border-radius: var(--btn-border-radius);
  text-decoration: none;
  backdrop-filter: blur(7px);
  -webkit-backdrop-filter: blur(7px);
  margin: 0 0 20px !important;
}
section.section-header .section-container .title .btn {
  margin-top: 30px;
  font-size: 16px;
  font-family: Gilroy;
}
section.section-header .section-container .buttons {
  position: absolute;
  left: 180px;
  bottom: 50px;
  z-index: 2;
  display: flex;
  column-gap: 10px;
}
section.section-header .section-container .buttons .btn {
  font-size: 16px;
  padding: 0 30px;
  background-color: transparent;
  border: 1px solid white;
  color: white;
}
section.section-header .section-container .buttons .btn.active {
  background-color: white;
  color: var(--primary-color);
}
@media screen and (max-width: 1199px) {
  section.section-header .section-container .buttons {
    left: 90px;
  }
}
@media screen and (max-width: 767px) {
  section.section-header .section-container .buttons {
    left: 0;
    width: 100%;
    padding: 0 30px;
    overflow-x: scroll;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: none;
    scrollbar-width: none;
    scroll-snap-type: x mandatory;
  }
  section.section-header .section-container .buttons::-webkit-scrollbar {
    display: none;
  }
  section.section-header .section-container .buttons .btn {
    white-space: nowrap;
  }
}
@media screen and (min-width: 1690px) {
  section.section-header .section-container {
    border-radius: var(--section-border-radius);
    overflow: hidden;
  }
}
@media screen and (max-width: 767px) {
  section.section-header .section-container {
    font-size: 30px;
    padding: 20px 30px;
  }
}
section.section-header.large .section-container {
  min-height: 500px;
  padding: 70px 180px;
}
@media screen and (max-width: 1199px) {
  section.section-header.large .section-container {
    min-height: 400px;
    padding: 50px 90px;
  }
}
@media screen and (max-width: 767px) {
  section.section-header.large .section-container {
    padding: 40px 30px;
    min-height: 310px;
  }
  section.section-header.large .section-container .title {
    font-size: 30px;
  }
  section.section-header.large .section-container .title span {
    margin: 10px 0 0;
    font-size: 14px;
    max-width: 300px;
  }
}
@media screen and (min-width: 1690px) {
  section.section-header:has(+ .section-bcrumbs) .section-container {
    border-radius: var(--section-border-radius) var(--section-border-radius) 0 0;
  }
}
section.section-catalog .section-container {
  padding: 80px 20px 0;
}
section.section-catalog .section-container .catalog-grid .items .products-item {
  background-color: rgb(243, 243, 243);
}
@media screen and (min-width: 1690px) {
  section.section-catalog .section-container {
    padding: 80px 0 0;
  }
}
@media screen and (max-width: 767px) {
  section.section-catalog .section-container {
    padding: 40px 10px 0;
  }
}
section.section-product .section-container {
  padding: 80px 20px 30px;
}
@media screen and (min-width: 1690px) {
  section.section-product .section-container {
    padding: 80px 0 30px;
  }
}
@media screen and (max-width: 767px) {
  section.section-product .section-container {
    padding: 40px 10px 40px;
  }
}
section.section-brand .section-container {
  padding: 80px 150px 80px 20px;
}
section.section-brand .section-container .brand-grid {
  display: flex;
  column-gap: 20px;
}
section.section-brand .section-container .brand-grid .brand-logo {
  text-align: center;
  width: 370px;
  flex-shrink: 0;
}
section.section-brand .section-container .brand-grid .brand-logo img,
section.section-brand .section-container .brand-grid .brand-logo svg {
  max-width: 80%;
}
section.section-brand .section-container .brand-grid .brand-info {
  width: calc(100% - 370px - 20px);
}
section.section-brand .section-container .brand-grid .brand-info .header {
  font-size: 45px;
  font-family: "Forum", serif;
  margin: 0 0 30px;
  line-height: 1;
  font-weight: 400;
}
section.section-brand .section-container .brand-grid .brand-info .gallery,
section.section-brand .section-container .brand-grid .brand-info .masonry {
  margin-top: 40px;
}
section.section-brand .section-container .brand-grid .brand-info .catalogs {
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}
section.section-brand
  .section-container
  .brand-grid
  .brand-info
  .catalogs
  .btn {
  background-color: var(--primary-color);
  color: white;
  column-gap: 10px;
  padding: 0 30px;
}
@media screen and (max-width: 1439px) {
  section.section-brand .section-container {
    padding: 80px 100px 80px 20px;
  }
  section.section-brand .section-container .brand-grid .brand-logo {
    width: 300px;
  }
  section.section-brand .section-container .brand-grid .brand-info {
    width: calc(100% - 300px - 20px);
  }
}
@media screen and (max-width: 1199px) {
  section.section-brand .section-container {
    padding: 60px 20px;
  }
  section.section-brand .section-container .brand-grid .brand-logo {
    display: none;
  }
  section.section-brand .section-container .brand-grid .brand-info {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  section.section-brand .section-container {
    padding: 40px 20px;
  }
}
section.section-category-info .section-container {
  padding: 40px 100px;
  font-size: 18px;
}
section.section-category-info .section-container .header {
  font-size: 45px;
  font-family: "Forum", serif;
  margin: 0 0 30px;
  line-height: 1;
  font-weight: 400;
}
section.section-category-info .section-container p:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 767px) {
  section.section-category-info .section-container {
    padding: 40px 20px 0;
    font-size: 16px;
  }
}
section.section-collections .section-container {
  padding: 0 20px;
}
section.section-collections .section-container .more {
  padding: 30px 0 0;
  text-align: center;
}
section.section-collections .section-container .more .btn {
  background: transparent;
  border: 1px solid var(--primary-color);
  color: var(--primary-color);
  margin: 0;
}
section.section-collections .section-container .collections {
  display: flex;
  flex-wrap: wrap;
  column-gap: 10px;
  row-gap: 10px;
}
section.section-collections .section-container .collections .item {
  width: calc(16.6666666667% - 8.3333333333px);
  height: var(--collection-item-height);
  border-radius: 30px;
  position: relative;
  color: white;
}
section.section-collections .section-container .collections .item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 30px;
}
section.section-collections .section-container .collections .item .shadow {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
  border-radius: 30px;
  position: absolute;
  background: rgba(0, 0, 0, 0.25);
}
section.section-collections .section-container .collections .item .text-badges {
  position: absolute;
  left: 10px;
  top: 10px;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  row-gap: 6px;
  z-index: 2;
}
section.section-collections
  .section-container
  .collections
  .item
  .text-badges
  .badge {
  padding: 2px 8px;
  border-radius: 5px;
  background-color: var(--primary-color);
  color: white;
  white-space: nowrap;
}
section.section-collections
  .section-container
  .collections
  .item
  .text-badges
  .badge.availability {
  background-color: var(--secondary-color);
}
section.section-collections .section-container .collections .item strong {
  display: block;
  position: absolute;
  z-index: 2;
  font-size: 28px;
  font-family: "Forum", serif;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  line-height: 1;
  font-weight: 400;
  max-width: calc(100% - 80px);
}
@media screen and (max-width: 1439px) {
  section.section-collections .section-container .collections .item {
    width: calc(20% - 8px);
  }
}
@media screen and (max-width: 1199px) {
  section.section-collections .section-container .collections .item {
    width: calc(25% - 7.5px);
  }
}
@media screen and (max-width: 991px) {
  section.section-collections .section-container .collections .item {
    width: calc(33.3333333333% - 6.6666666667px);
  }
}
@media screen and (max-width: 767px) {
  section.section-collections .section-container .collections .item {
    border-radius: 20px;
    width: calc(50% - 5px);
  }
  section.section-collections .section-container .collections .item strong {
    font-size: 24px;
  }
  section.section-collections .section-container .collections .item img {
    border-radius: 20px;
  }
}
@media screen and (max-width: 600px) {
  section.section-collections .section-container .collections .item {
    width: 100%;
  }
}
section.section-collections .section-container .collections.opened .hidden {
  display: block !important;
}
section.section-catalog-tiles .section-container {
  padding: 80px 20px 0px;
}
@media screen and (min-width: 1690px) {
  section.section-catalog-tiles .section-container {
    padding-left: 0;
    padding-right: 0;
  }
}
section.section-advantages .section-container {
  padding: 80px 20px;
}
section.section-advantages .section-container ul {
  list-style: none;
  margin: 0 0 40px;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  column-gap: 10px;
  row-gap: 10px;
  width: 100%;
}
section.section-advantages .section-container ul li {
  width: calc(33.3333333333% - 6.6666666667px);
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  padding: 40px;
  margin: 0;
  background-color: rgb(243, 243, 243);
}
section.section-advantages .section-container ul li .img {
  margin: 0 0 20px;
  width: 50px;
  height: 50px;
  background-color: var(--primary-color);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
section.section-advantages .section-container ul li .header {
  font-family: "Forum", serif;
  font-size: 30px;
  line-height: 1;
  margin: 0 0 10px;
}
section.section-advantages .section-container ul li p {
  margin: 10px 0 0;
  font-size: 15px;
}
section.section-advantages .section-container ul li.small {
  width: calc(25% - 6.6666666667px);
}
section.section-advantages .section-container ul li.medium {
  width: calc(35% - 6.6666666667px);
}
section.section-advantages .section-container ul li.large {
  width: calc(40% - 6.6666666667px);
}
@media screen and (max-width: 1439px) {
  section.section-advantages .section-container ul li.small {
    width: calc(40% - 6.6666666667px);
  }
  section.section-advantages .section-container ul li.medium {
    width: calc(60% - 6.6666666667px);
  }
  section.section-advantages .section-container ul li.large {
    width: calc(50% - 6.6666666667px);
  }
}
@media screen and (max-width: 991px) {
  section.section-advantages .section-container ul li.small {
    width: calc(50% - 6.6666666667px);
  }
  section.section-advantages .section-container ul li.medium {
    width: calc(50% - 6.6666666667px);
  }
  section.section-advantages .section-container ul li.large {
    width: calc(50% - 6.6666666667px);
  }
}
@media screen and (max-width: 767px) {
  section.section-advantages .section-container {
    padding: 40px 20px;
  }
  section.section-advantages .section-container ul li.small {
    width: 100%;
  }
  section.section-advantages .section-container ul li.medium {
    width: 100%;
  }
  section.section-advantages .section-container ul li.large {
    width: 100%;
  }
}
section.section-history {
  background-color: rgb(243, 243, 243);
}
section.section-history .section-container {
  padding: 120px 60px;
}
section.section-history .section-container .history-grid {
  display: flex;
  flex-wrap: nowrap;
  column-gap: 140px;
}
section.section-history .section-container .history-grid .column-header {
  width: 300px;
  flex-shrink: 0;
  font-size: 70px;
  font-family: "Forum", serif;
  line-height: 1;
}
section.section-history .section-container .history-grid .column-header span {
  color: var(--secondary-color);
}
section.section-history .section-container .history-grid .timeline {
  max-width: 900px;
}
section.section-history .section-container .history-grid .timeline .btn {
  margin: 0 0 0 120px;
  background-color: var(--primary-color);
  color: white;
  column-gap: 5px;
}
section.section-history .section-container .history-grid .timeline ul {
  display: flex;
  flex-direction: column;
  margin: 0;
  padding: 0;
  list-style: none;
}
section.section-history .section-container .history-grid .timeline ul li {
  position: relative;
  margin: 0;
  padding: 0 0 80px 120px;
  font-size: 15px;
}
section.section-history
  .section-container
  .history-grid
  .timeline
  ul
  li.hidden-row {
  display: none;
}
section.section-history .section-container .history-grid .timeline ul li .dot {
  background-color: var(--secondary-color);
  display: flex;
  justify-content: center;
  align-items: center;
  height: 50px;
  width: 50px;
  color: white;
  font-size: 22px;
  position: absolute;
  left: 0;
  top: 0;
  border-radius: 50%;
  z-index: 2;
}
section.section-history .section-container .history-grid .timeline ul li .line {
  width: 2px;
  height: 100%;
  background-color: var(--secondary-color);
  left: 24px;
  top: 0;
  position: absolute;
  z-index: 1;
}
section.section-history
  .section-container
  .history-grid
  .timeline
  ul
  li
  .header {
  font-size: 45px;
  font-family: "Forum", serif;
  line-height: 1.15;
}
section.section-history
  .section-container
  .history-grid
  .timeline
  ul
  li
  .video {
  margin: 30px 0 0;
  display: inline-flex;
  align-items: center;
  column-gap: 30px;
  background-color: white;
  border-radius: 20px;
  padding: 20px;
}
section.section-history
  .section-container
  .history-grid
  .timeline
  ul
  li
  .video
  .thumbnails
  a {
  display: block;
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  line-height: 0;
}
section.section-history
  .section-container
  .history-grid
  .timeline
  ul
  li
  .video
  .thumbnails
  a
  svg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
section.section-history
  .section-container
  .history-grid
  .timeline
  ul
  li
  .video
  .description
  .name {
  font-size: 22px;
  font-weight: 600;
}
section.section-history
  .section-container
  .history-grid
  .timeline
  ul
  li
  .video
  .description
  p {
  margin: 10px 0 0;
  color: rgb(135, 135, 135);
  max-width: 300px;
}
section.section-history
  .section-container
  .history-grid
  .timeline
  ul
  li.gradient
  .line {
  background: linear-gradient(
    180deg,
    rgb(207, 148, 96) 0%,
    rgba(207, 148, 96, 0) 100%
  );
  background-color: transparent;
}
section.section-history
  .section-container
  .history-grid
  .timeline.opened
  ul
  li.hidden-row {
  display: block;
}
section.section-history
  .section-container
  .history-grid
  .timeline.opened
  ul
  li
  .line {
  background-color: var(--secondary-color);
}
section.section-history
  .section-container
  .history-grid
  .timeline.opened
  .btn
  svg {
  transform: rotate(180deg);
}
@media screen and (max-width: 1439px) {
  section.section-history .section-container .history-grid {
    column-gap: 100px;
  }
}
@media screen and (max-width: 1199px) {
  section.section-history .section-container {
    padding: 60px 40px;
  }
  section.section-history .section-container .history-grid {
    flex-direction: column;
    row-gap: 50px;
  }
  section.section-history .section-container .history-grid .column-header {
    width: 100%;
    font-size: 50px;
  }
}
@media screen and (max-width: 767px) {
  section.section-history .section-container {
    padding: 40px 20px;
  }
  section.section-history .section-container .history-grid {
    flex-direction: column;
    row-gap: 50px;
  }
  section.section-history .section-container .history-grid .column-header {
    width: 100%;
    font-size: 36px;
  }
  section.section-history .section-container .history-grid .timeline ul li {
    padding: 0 0 40px 70px;
  }
  section.section-history
    .section-container
    .history-grid
    .timeline
    ul
    li
    .dot {
    width: 40px;
    height: 40px;
  }
  section.section-history
    .section-container
    .history-grid
    .timeline
    ul
    li
    .line {
    left: 19px;
  }
  section.section-history
    .section-container
    .history-grid
    .timeline
    ul
    li
    .header {
    line-height: 1;
  }
  section.section-history
    .section-container
    .history-grid
    .timeline
    ul
    li
    .video {
    flex-direction: column;
    row-gap: 20px;
  }
  section.section-history
    .section-container
    .history-grid
    .timeline
    ul
    li
    .video
    .thumbnails {
    align-self: stretch;
  }
  section.section-history
    .section-container
    .history-grid
    .timeline
    ul
    li
    .video
    .thumbnails
    a
    img {
    width: 100%;
  }
}
section.section-requisites .section-container {
  padding: 80px 60px;
}
section.section-requisites .section-container ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: start;
  column-gap: 100px;
}
section.section-requisites .section-container ul li {
  padding-top: 15px;
}
section.section-requisites .section-container ul li.header {
  padding: 0;
  font-size: 50px;
  font-family: "Forum", serif;
  line-height: 1;
}
section.section-requisites .section-container ul li.header span {
  color: var(--secondary-color);
}
section.section-requisites .section-container ul li p {
  margin: 0 0 1em;
}
section.section-requisites .section-container ul li > *:last-child {
  margin-bottom: 0;
}
section.section-requisites .section-container ul li:last-child {
  flex-grow: 1;
  padding-top: 15px;
  display: flex;
  justify-content: space-between;
  column-gap: 40px;
}
@media screen and (max-width: 1199px) {
  section.section-requisites .section-container ul {
    justify-content: start;
    row-gap: 1em;
  }
  section.section-requisites .section-container ul li:last-child {
    flex-wrap: wrap;
  }
  section.section-requisites .section-container ul li:last-child div {
    width: calc(50% - 20px);
  }
  section.section-requisites
    .section-container
    ul
    li:last-child
    div:first-child {
    width: 100%;
  }
}
@media screen and (max-width: 991px) {
  section.section-requisites .section-container ul li:last-child {
    flex-wrap: wrap;
  }
  section.section-requisites .section-container ul li:last-child div {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  section.section-requisites .section-container {
    padding: 40px 20px;
  }
  section.section-requisites .section-container ul {
    flex-wrap: wrap;
    justify-content: start;
    row-gap: 1em;
  }
  section.section-requisites .section-container ul li {
    width: 100%;
  }
  section.section-requisites .section-container ul li.header {
    font-size: 36px;
  }
  section.section-requisites .section-container ul li.header br {
    display: none;
  }
  section.section-requisites .section-container ul li:nth-child(2) {
    width: 100%;
  }
  section.section-requisites .section-container ul li:nth-child(3) {
    margin-left: 0;
    width: 100%;
  }
  section.section-requisites .section-container ul li:nth-child(4) {
    margin-left: 0;
    width: 100%;
  }
}
section.section-showrooms {
  margin: 40px 0;
}
section.section-showrooms .section-container {
  padding: 0 10px 0 0;
}
section.section-showrooms .section-container .map-grid {
  display: flex;
  background-color: rgb(243, 243, 243);
  border-radius: 0 30px 30px 0;
}
section.section-showrooms .section-container .map-grid .info {
  width: 100%;
  padding: 60px 60px 60px 60px;
}
section.section-showrooms .section-container .map-grid .info .header {
  font-size: 50px;
  font-family: "Forum", serif;
  font-weight: 400;
  line-height: 1.1;
  margin: 0 0 30px;
}
@media screen and (max-width: 767px) {
  section.section-showrooms .section-container .map-grid .info .header {
    font-size: 36px;
  }
}
section.section-showrooms .section-container .map-grid .info .tabs {
  display: flex;
  column-gap: 70px;
  align-items: start;
  justify-content: stretch;
}
section.section-showrooms .section-container .map-grid .info .tabs .tab {
  flex-shrink: 0;
  width: calc(50% - 35px);
  display: flex;
  flex-direction: column;
}
section.section-showrooms .section-container .map-grid .info .tabs .tab .title {
  border: 1px solid rgb(221, 221, 221);
  border-radius: 10px;
  padding: 15px 30px;
  margin-bottom: 30px;
  font-size: 18px;
}
section.section-showrooms .section-container .map-grid .info .tabs .tab .phone {
  font-size: 24px;
  padding-left: 30px;
  margin-bottom: 5px;
}
section.section-showrooms .section-container .map-grid .info .tabs .tab .email {
  color: var(--secondary-color);
  font-size: 20px;
  padding-left: 30px;
}
section.section-showrooms .section-container .map-grid .info .tabs .tab p {
  padding-left: 30px;
}
section.section-showrooms .section-container .map-grid .info .tabs .tab .time {
  padding-left: 30px;
  margin-top: 30px;
  line-height: 30px;
}
section.section-showrooms
  .section-container
  .map-grid
  .info
  .tabs
  .tab.hover
  .title,
section.section-showrooms
  .section-container
  .map-grid
  .info
  .tabs
  .tab.active
  .title {
  border-color: var(--secondary-color);
  -webkit-box-shadow: 0px 0px 4px 1px rgb(207, 148, 96);
  -moz-box-shadow: 0px 0px 4px 1px rgb(207, 148, 96);
  box-shadow: 0px 0px 4px 1px rgb(207, 148, 96);
}
section.section-showrooms .section-container .map-grid .map-container {
  width: 50%;
  padding: 10px 10px 10px 0;
}
section.section-showrooms .section-container .map-grid .map-container .map {
  width: 100%;
  height: 480px;
  border-radius: 20px;
  overflow: hidden;
}
@media screen and (min-width: 1690px) {
  section.section-showrooms .section-container .map-grid {
    border-radius: 30px;
  }
}
@media screen and (max-width: 1439px) {
  section.section-showrooms .section-container {
    padding: 0 10px;
  }
  section.section-showrooms .section-container .map-grid {
    flex-direction: column-reverse;
    border-radius: 30px;
  }
  section.section-showrooms .section-container .map-grid .info {
    width: 100%;
    padding: 40px 60px;
  }
  section.section-showrooms .section-container .map-grid .info .tabs .tab {
    width: 300px;
  }
  section.section-showrooms .section-container .map-grid .map-container {
    padding: 10px;
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  section.section-showrooms .section-container .map-grid .info {
    padding: 30px 20px;
  }
  section.section-showrooms .section-container .map-grid .info .tabs {
    flex-wrap: wrap;
    row-gap: 50px;
  }
  section.section-showrooms .section-container .map-grid .info .tabs .tab {
    width: auto;
  }
}
section.section-showrooms-photo .section-container {
  padding: 0 20px 80px;
}
section.section-showrooms-photo .section-container .header {
  padding-left: 40px;
}
section.section-showrooms-photo .section-container .photos {
  display: flex;
  flex-wrap: wrap;
  column-gap: 10px;
  row-gap: 10px;
}
section.section-showrooms-photo .section-container .photos .photo {
  width: calc(25% - 7.5px);
  height: var(--photo-item-height);
  border-radius: 30px;
  position: relative;
  color: white;
  overflow: hidden;
}
section.section-showrooms-photo .section-container .photos .photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
section.section-showrooms-photo .section-container .photos .photo .overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  visibility: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.1s;
}
section.section-showrooms-photo .section-container .photos .photo .overlay img {
  width: 30px;
  height: 30px;
}
section.section-showrooms-photo
  .section-container
  .photos
  .photo:hover
  .overlay {
  visibility: visible;
  background-color: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
section.section-showrooms-photo
  .section-container
  .photos
  .photo:hover
  .overlay
  svg {
  visibility: visible;
}
section.section-showrooms-photo .section-container .photos .photo.small {
  width: calc(22% - 6.6666666667px);
}
section.section-showrooms-photo .section-container .photos .photo.medium {
  width: calc(35% - 6.6666666667px);
}
section.section-showrooms-photo .section-container .photos .photo.large {
  width: calc(43% - 6.6666666667px);
}
@media screen and (max-width: 1439px) {
  section.section-showrooms-photo .section-container .photos .photo.small {
    width: calc(25% - 6.6666666667px);
  }
  section.section-showrooms-photo .section-container .photos .photo.medium {
    width: calc(35% - 6.6666666667px);
  }
  section.section-showrooms-photo .section-container .photos .photo.large {
    width: calc(40% - 6.6666666667px);
  }
}
@media screen and (max-width: 1199px) {
  section.section-showrooms-photo .section-container .photos .photo {
    width: calc(33.3333333333% - 6.6666666667px);
  }
  section.section-showrooms-photo .section-container .photos .photo.small {
    width: calc(33.3333333333% - 6.6666666667px);
  }
  section.section-showrooms-photo .section-container .photos .photo.medium {
    width: calc(33.3333333333% - 6.6666666667px);
  }
  section.section-showrooms-photo .section-container .photos .photo.large {
    width: calc(33.3333333333% - 6.6666666667px);
  }
}
@media screen and (max-width: 991px) {
  section.section-showrooms-photo .section-container .photos .photo {
    width: calc(50% - 5px);
  }
  section.section-showrooms-photo .section-container .photos .photo.small {
    width: calc(50% - 5px);
  }
  section.section-showrooms-photo .section-container .photos .photo.medium {
    width: calc(50% - 5px);
  }
  section.section-showrooms-photo .section-container .photos .photo.large {
    width: calc(50% - 5px);
  }
}
@media screen and (max-width: 767px) {
  section.section-showrooms-photo .section-container .photos .photo {
    border-radius: 20px;
    width: 100%;
  }
  section.section-showrooms-photo .section-container .photos .photo.small {
    width: 100%;
  }
  section.section-showrooms-photo .section-container .photos .photo.medium {
    width: 100%;
  }
  section.section-showrooms-photo .section-container .photos .photo.large {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  section.section-showrooms-photo .section-container .header {
    padding-left: 0;
  }
}
section.section-review .section-container {
  padding: 0 20px 0 60px;
}
section.section-review .section-container .grid {
  display: flex;
  align-items: start;
  column-gap: 90px;
}
section.section-review .section-container .grid .text {
  width: 400px;
  flex-shrink: 0;
}
section.section-review .section-container .grid .text .header {
  font-size: 50px;
  font-family: "Forum", serif;
  line-height: 1.1;
  margin: 0;
  font-weight: 400;
}
section.section-review .section-container .grid .links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  flex-grow: 1;
}
section.section-review .section-container .grid .links a,
section.section-review .section-container .grid .links span {
  width: calc(25% - 7.5px);
  background-color: rgb(243, 243, 243);
  min-height: 160px;
  padding: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 30px;
}
section.section-review .section-container .grid .links a img,
section.section-review .section-container .grid .links span img {
  max-width: 100%;
  max-height: 120px;
}
@media screen and (max-width: 1439px) {
  section.section-review .section-container .grid {
    column-gap: 60px;
  }
  section.section-review .section-container .grid .links a {
    width: calc(50% - 5px);
  }
}
@media screen and (max-width: 1199px) {
  section.section-review .section-container .grid {
    column-gap: 40px;
  }
}
@media screen and (max-width: 991px) {
  section.section-review .section-container {
    padding: 0 10px 40px;
  }
  section.section-review .section-container .grid {
    flex-direction: column;
    row-gap: 30px;
  }
  section.section-review .section-container .grid .text {
    width: 100%;
    padding-left: 50px;
  }
  section.section-review .section-container .grid .links {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  section.section-review .section-container .grid .text {
    padding-left: 10px;
  }
}
@media screen and (max-width: 480px) {
  section.section-review .section-container .grid .links a {
    width: 100%;
  }
}
section.section-departments .section-container {
  padding: 40px 60px 80px;
}
section.section-departments .section-container .header {
  margin-bottom: 30px;
}
section.section-departments .section-container ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  row-gap: 60px;
}
section.section-departments .section-container ul li {
  width: 25%;
}
section.section-departments .section-container ul li.sep {
  width: 100%;
  height: 0;
  overflow: hidden;
}
section.section-departments .section-container ul li strong {
  font-family: "Forum", serif;
  font-size: 30px;
  font-weight: 400;
  display: block;
  margin-bottom: 20px;
}
section.section-departments .section-container ul li p {
  margin-top: 0;
  max-width: 250px;
}
section.section-departments .section-container ul li strong + p {
  margin-top: -15px;
}
section.section-departments .section-container ul li .phone {
  font-size: 24px;
  margin-bottom: 5px;
  display: block;
}
section.section-departments .section-container ul li .name {
  font-size: 20px;
  margin: 10px 0 0;
  display: block;
}
section.section-departments .section-container ul li .email {
  color: var(--secondary-color);
  font-size: 20px;
  display: block;
}
section.section-departments .section-container ul li .time {
  margin-top: 30px;
  line-height: 30px;
}
@media screen and (max-width: 1199px) {
  section.section-departments .section-container ul {
    column-gap: 40px;
  }
  section.section-departments .section-container ul li {
    width: calc(50% - 20px);
  }
}
@media screen and (max-width: 767px) {
  section.section-departments .section-container {
    padding: 0 20px 40px;
  }
  section.section-departments .section-container .header {
    margin-bottom: 10px;
  }
  section.section-departments .section-container ul {
    row-gap: 40px;
  }
  section.section-departments .section-container ul li {
    width: 100%;
  }
}
section.section-cooperation .section-container {
  padding: 80px 20px 80px 0;
  overflow: hidden;
}
section.section-cooperation .section-container .grid {
  background-color: rgb(243, 243, 243);
  border-radius: 0 var(--section-border-radius) var(--section-border-radius) 0;
  overflow: hidden;
  display: flex;
  flex-direction: row-reverse;
  flex-wrap: nowrap;
  padding: 10px 10px 10px 0;
  column-gap: 100px;
}
section.section-cooperation .section-container .grid .image {
  border-radius: 24px;
  overflow: hidden;
  line-height: 0;
  width: calc(50% - 50px);
  flex-shrink: 0;
}
section.section-cooperation .section-container .grid .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
section.section-cooperation .section-container .grid form,
section.section-cooperation .section-container .grid .text {
  align-self: center;
  padding: 60px 20px 60px 100px;
  width: calc(50% - 50px);
}
section.section-cooperation .section-container .grid form .header,
section.section-cooperation .section-container .grid .text .header {
  font-family: "Forum", serif;
  font-size: 40px;
  line-height: 1.1;
}
section.section-cooperation .section-container .grid form .header span,
section.section-cooperation .section-container .grid .text .header span {
  color: var(--secondary-color);
}
section.section-cooperation .section-container .grid form p,
section.section-cooperation .section-container .grid .text p {
  margin: 20px 0;
  color: rgb(132, 132, 132);
}
section.section-cooperation .section-container .grid form p.italic,
section.section-cooperation .section-container .grid .text p.italic {
  font-style: italic;
  color: var(--primary-color);
  margin: 8px 0 0;
}
section.section-cooperation .section-container .grid form ul,
section.section-cooperation .section-container .grid .text ul {
  margin: 40px 0;
}
section.section-cooperation .section-container .grid form ul li,
section.section-cooperation .section-container .grid .text ul li {
  margin-bottom: 8px;
}
section.section-cooperation .section-container .grid form .rows,
section.section-cooperation .section-container .grid .text .rows {
  display: flex;
  flex-direction: column;
  row-gap: 10px;
}
section.section-cooperation .section-container .grid form .rows .columns,
section.section-cooperation .section-container .grid .text .rows .columns {
  display: flex;
  column-gap: 10px;
}
section.section-cooperation .section-container .grid form .rows .columns input,
section.section-cooperation
  .section-container
  .grid
  .text
  .rows
  .columns
  input {
  width: 50%;
}
section.section-cooperation .section-container .grid form input[type="text"],
section.section-cooperation .section-container .grid .text input[type="text"] {
  border-radius: var(--btn-border-radius);
  height: 50px;
  border: 1px solid var(--light-gray-color);
  padding: 16px 20px;
  outline: none;
}
section.section-cooperation .section-container .grid form .buttons,
section.section-cooperation .section-container .grid .text .buttons {
  padding-top: 30px;
  display: flex;
  column-gap: 30px;
  align-items: center;
}
section.section-cooperation
  .section-container
  .grid
  form
  .buttons
  input[type="submit"],
section.section-cooperation
  .section-container
  .grid
  .text
  .buttons
  input[type="submit"] {
  border: none;
  background-color: var(--primary-color);
  color: white;
  padding: 0 58px;
}
section.section-cooperation .section-container .grid form .buttons p,
section.section-cooperation .section-container .grid .text .buttons p {
  color: rgb(162, 162, 162);
  font-size: 14px;
  margin: 0;
}
section.section-cooperation .section-container .grid .success {
  width: calc(50% - 50px);
  padding: 50px 30px 50px 100px;
  display: flex;
  flex-direction: column;
  row-gap: 20px;
  justify-content: center;
  align-items: center;
}
section.section-cooperation .section-container .grid .success > * {
  margin: 0;
}
section.section-cooperation .section-container .grid .success .header {
  font-size: 45px;
  font-family: "Forum", serif;
  line-height: 1.1;
  font-weight: 400;
  text-align: center;
  margin: 0 0 30px;
}
section.section-cooperation .section-container .grid .success .btn {
  position: relative;
  top: auto;
  right: auto;
}
@media screen and (max-width: 1199px) {
  section.section-cooperation .section-container .grid .success {
    width: auto;
    padding-right: 60px;
  }
}
@media screen and (max-width: 767px) {
  section.section-cooperation .section-container .grid .success {
    padding: 30px;
    width: 100%;
  }
  section.section-cooperation .section-container .grid .success .header {
    font-size: 36px;
    margin-bottom: 20px;
  }
}
@media screen and (min-width: 1690px) {
  section.section-cooperation .section-container {
    padding: 80px 0 80px 0;
  }
  section.section-cooperation .section-container .grid {
    border-radius: var(--section-border-radius);
  }
}
@media screen and (max-width: 1199px) {
  section.section-cooperation .section-container .grid {
    flex-direction: row;
    justify-content: start;
    column-gap: 60px;
  }
  section.section-cooperation .section-container .grid .image {
    border-radius: 0 24px 24px 0;
    width: calc(33.3333333333% - 40px);
  }
  section.section-cooperation .section-container .grid .image img {
    object-position: left center;
  }
  section.section-cooperation .section-container .grid form {
    width: auto;
    padding-left: 0;
    padding-right: 60px;
  }
}
@media screen and (max-width: 767px) {
  section.section-cooperation .section-container {
    padding: 40px 10px;
  }
  section.section-cooperation .section-container .grid {
    flex-direction: column-reverse;
    row-gap: 30px;
    border-radius: 30px;
    padding: 10px;
  }
  section.section-cooperation .section-container .grid .image {
    width: 100%;
    border-radius: 24px;
  }
  section.section-cooperation .section-container .grid form {
    width: 100%;
    max-width: 100%;
    padding: 0 10px 20px;
  }
  section.section-cooperation .section-container .grid form .rows .columns {
    flex-direction: column;
    row-gap: 10px;
  }
  section.section-cooperation
    .section-container
    .grid
    form
    .rows
    .columns
    input {
    width: 100%;
  }
  section.section-cooperation .section-container .grid form .buttons {
    flex-direction: column;
    row-gap: 20px;
  }
}
@media screen and (max-width: 480px) {
  section.section-cooperation .section-container .grid form .header {
    font-size: 30px;
  }
  section.section-cooperation .section-container .grid form .buttons {
    align-items: stretch;
  }
  section.section-cooperation .section-container .grid form .buttons .btn {
    justify-content: center;
  }
}
@media screen and (max-width: 1199px) {
  section.section-partners .section-container .grid .text {
    width: calc(67% - 50px);
    padding-left: 20px;
  }
}
@media screen and (max-width: 767px) {
  section.section-partners .section-container .grid .text {
    width: 100%;
    padding-left: 0;
  }
}
section.section-requisites .section-container {
  padding: 40px 60px;
}
section.section-requisites .section-container .grid {
  display: flex;
  column-gap: 80px;
  align-items: center;
}
section.section-requisites .section-container .grid .img {
  align-self: stretch;
  width: calc(50% - 40px);
}
section.section-requisites .section-container .grid .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 30px;
}
section.section-requisites .section-container .grid .text {
  padding: 30px 0;
  width: calc(50% - 40px);
}
section.section-requisites .section-container .grid .text .header {
  font-size: 50px;
  font-family: "Forum", serif;
  font-weight: 400;
  margin: 0 0 30px;
}
section.section-requisites .section-container .grid .text p {
  line-height: 1.8;
  margin: 0;
}
section.section-requisites .section-container .grid .text > * {
  margin-bottom: 0;
}
@media screen and (max-width: 1199px) {
  section.section-requisites .section-container {
    padding: 0 60px;
  }
}
@media screen and (max-width: 991px) {
  section.section-requisites .section-container .grid {
    flex-direction: column;
  }
  section.section-requisites .section-container .grid .img {
    width: 100%;
    height: 400px;
  }
  section.section-requisites .section-container .grid .text {
    width: 100%;
    padding-bottom: 0;
    padding-top: 40px;
  }
}
@media screen and (max-width: 767px) {
  section.section-requisites .section-container {
    padding: 40px 20px;
  }
}
@media screen and (max-width: 600px) {
  section.section-requisites .section-container .grid .img {
    height: auto;
  }
  section.section-requisites .section-container .grid .img img {
    min-height: 210px;
  }
}
section.section-projects-hero .section-container {
  padding: 40px 60px;
}
section.section-projects-hero .section-container .hero {
  max-width: 1100px;
}
section.section-projects-hero .section-container .hero .header {
  font-weight: 400;
  font-size: 45px;
  font-family: "Forum", serif;
  line-height: 1.1;
}
@media screen and (max-width: 767px) {
  section.section-projects-hero .section-container .hero .header {
    font-size: 40px;
  }
}
section.section-projects-hero .section-container .hero .video {
  width: 100%;
  border-radius: 30px;
  overflow: hidden;
  line-height: 0;
  margin-top: 40px;
}
section.section-projects-hero .section-container .hero .video a {
  display: block;
  position: relative;
}
section.section-projects-hero .section-container .hero .video a img {
  width: 100%;
  height: auto;
}
section.section-projects-hero .section-container .hero .video a .button {
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 15px;
  border-radius: 50%;
  line-height: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 767px) {
  section.section-projects-hero .section-container {
    padding: 40px 20px;
  }
  section.section-projects-hero .section-container .hero .video {
    position: relative;
    border-radius: 0;
    width: calc(var(--vw, 1vw) * 100);
    left: 50%;
    right: 50%;
    margin-left: calc(var(--vw, 1vw) * -50);
    margin-right: calc(var(--vw, 1vw) * -50);
    min-height: 300px;
    display: flex;
  }
  section.section-projects-hero .section-container .hero .video a img {
    height: 100%;
    object-fit: cover;
    object-position: center;
  }
}
section.section-projects-list .section-container {
  padding: 40px 20px 0;
}
section.section-projects-list .section-container > .header .title {
  padding-left: 40px;
}
@media screen and (max-width: 767px) {
  section.section-projects-list .section-container > .header .title {
    padding-left: 0;
  }
}
section.section-projects-list .section-container .projects-items {
  display: flex;
  flex-wrap: wrap;
  column-gap: 10px;
  row-gap: 10px;
}
section.section-projects-list .section-container .projects-items .project-item {
  width: calc(33.3333333333% - 6.6666666667px);
  line-height: 0;
  border-radius: 30px;
  overflow: hidden;
  position: relative;
}
section.section-projects-list
  .section-container
  .projects-items
  .project-item
  img {
  width: 100%;
  height: auto;
}
section.section-projects-list
  .section-container
  .projects-items
  .project-item
  .shadow {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: linear-gradient(
    11.88deg,
    #000000 -5.13%,
    rgba(0, 0, 0, 0) 62.25%
  );
  z-index: 1;
}
section.section-projects-list
  .section-container
  .projects-items
  .project-item
  .title {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  padding: 40px;
  z-index: 2;
  font-family: "Forum", serif;
  font-size: 30px;
  line-height: 1.1;
  display: flex;
  align-items: end;
  color: white;
}
@media screen and (max-width: 1199px) {
  section.section-projects-list
    .section-container
    .projects-items
    .project-item {
    width: calc(50% - 5px);
  }
}
@media screen and (max-width: 767px) {
  section.section-projects-list
    .section-container
    .projects-items
    .project-item {
    width: 100%;
  }
  section.section-projects-list
    .section-container
    .projects-items
    .project-item
    .title {
    font-size: 24px;
  }
}
section.section-project-info .section-container {
  padding: 80px 20px 40px;
}
section.section-project-info .section-container > .header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 30px;
}
section.section-project-info .section-container > .header .title {
  font-size: 50px;
  font-family: "Forum", serif;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  section.section-project-info .section-container > .header .title {
    font-size: 40px;
  }
}
section.section-project-info .section-container > .header .nav {
  display: flex;
  align-items: center;
  column-gap: 20px;
}
section.section-project-info .section-container > .header .nav .arrows {
  display: flex;
  align-items: center;
  column-gap: 5px;
}
section.section-project-info .section-container > .header .nav .arrows svg {
  cursor: pointer;
}
section.section-project-info
  .section-container
  > .header
  .nav
  .arrows
  .disabled {
  opacity: 0.4;
  cursor: default;
}
@media screen and (max-width: 767px) {
  section.section-project-info .section-container > .header .nav .btn {
    display: none;
  }
}
section.section-project-info .section-container .project-info {
  padding: 0 40px;
}
section.section-project-info
  .section-container
  .project-info
  .project-text-info {
  max-width: 1150px;
}
section.section-project-info .section-container .project-info .gallery {
  max-width: 1150px;
}
section.section-project-info .section-container .project-info .buttons {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  flex-wrap: wrap;
  row-gap: 10px;
  column-gap: 20px;
}
section.section-project-info .section-container .project-info .buttons .btn {
  background-color: var(--primary-color);
  color: white;
}
section.section-project-info .section-container .project-info > img,
section.section-project-info .section-container .project-info > p {
  width: 100%;
  margin-bottom: 20px;
}
section.section-project-info .section-container .project-info .header {
  font-size: 45px;
  font-family: "Forum", serif;
  margin: 0 0 30px;
  font-weight: 400;
  line-height: 1.1;
}
section.section-project-info .section-container .project-info p {
  margin: 0 0 20px;
}
section.section-project-info .section-container .project-info p img {
  width: 100%;
}
section.section-project-info .section-container .project-info .gallery,
section.section-project-info .section-container .project-info .masonry {
  margin-top: 50px;
}
section.section-project-info .section-container > .btn {
  display: none;
}
@media screen and (max-width: 767px) {
  section.section-project-info .section-container > .btn {
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    display: inline-flex;
    margin: 36px 0 0;
  }
}
@media screen and (max-width: 767px) {
  section.section-project-info .section-container {
    padding: 60px 20px;
  }
  section.section-project-info .section-container .project-info {
    padding: 0;
  }
}
@media screen and (min-width: 1690px) {
  section.section-project-info .section-container {
    padding-left: 0;
    padding-right: 0;
  }
}
section.section-projects-slider .section-container {
  padding: 40px 20px 0;
}
section.section-projects-slider
  .section-container
  .projects-slider
  .projects-slide-wrapper
  .project-item {
  width: calc(33.3333333333% - 6.6666666667px);
}
@media screen and (max-width: 1199px) {
  section.section-projects-slider
    .section-container
    .projects-slider
    .projects-slide-wrapper
    .project-item {
    width: calc(50% - 5px);
  }
}
@media screen and (max-width: 767px) {
  section.section-projects-slider
    .section-container
    .projects-slider
    .projects-slide-wrapper
    .project-item {
    width: 100%;
  }
}

.section-products + .section-help .section-container {
  padding-top: 40px;
}

.catalog-grid {
  display: grid;
  grid-template-columns: 2fr;
  grid-template-areas: "items";
  column-gap: 40px;
  row-gap: 30px;
  width: 100%;
  overflow: hidden;
}
.catalog-grid .filter {
  grid-area: filter;
}
.catalog-grid .filter .close-filter {
  display: none;
}
.catalog-grid .filter form {
  background-color: rgb(243, 243, 243);
  border-radius: 30px;
  padding: 40px 40px;
  display: flex;
  flex-direction: column;
  row-gap: 20px;
}
.catalog-grid .filter form .row {
  border-bottom: 1px solid #e3e3e3;
  padding-bottom: 20px;
  user-select: none;
  
}
.catalog-grid .filter form .row .row-header {
  font-weight: 400;
  font-family: "Forum", serif;
  font-size: 22px;
  display: flex;
  column-gap: 20px;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  user-select: none;
}
.catalog-grid .filter form .row .row-header svg {
  transform: rotate(180deg);
}
.catalog-grid .filter form .row .form-checkbox {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.catalog-grid .filter form .row .form-checkbox label {
  font-family: "Forum", serif;
  font-size: 22px;
  font-weight: 400;
}
.catalog-grid .filter form .row .sorting {
  height: 40px;
  margin-bottom: 20px;
}
.catalog-grid .filter form .row .items {
  display: flex;
  row-gap: 10px;
  flex-direction: column;
  max-height: 340px;
  overflow-y: scroll;
  flex-wrap: nowrap;
}
.catalog-grid .filter form .row .items .item {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  column-gap: 10px;
  color: #757474;
}
.catalog-grid .filter form .row .items .item.hidden {
  display: none;
}
.catalog-grid .filter form .row .items .item label {
  flex-grow: 2;
  font-size: 15px;
  top: 1px;
  position: relative;
}
.catalog-grid .filter form .row .items .item input[type="checkbox"] {
  border-radius: 3px;
  border: 1px solid #d9d9d9;
  width: 20px;
  display: block;
  height: 20px;
  padding: 0;
  background-color: white;
  cursor: pointer;
  transition: all 0.2s;
  flex-shrink: 0;
}
.catalog-grid .filter form .row .items .item input[type="checkbox"]:after {
  content: "";
  width: 14px;
  height: 12px;
  background-color: transparent;
  border-radius: 50%;
  display: none;
  transition: all 0.2s;
  transform: translate3d(3px, 2px, 0);
}
.catalog-grid .filter form .row .items .item input[type="checkbox"]:checked {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}
.catalog-grid
  .filter
  form
  .row
  .items
  .item
  input[type="checkbox"]:checked:after {
  background-image: url("data:image/svg+xml,%3Csvg width='14' height='12' viewBox='0 0 14 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0.215299 6.64521C1.60038 8.35985 2.98748 10.0629 4.33621 11.7011C4.49774 11.898 4.67945 12 4.86319 12C5.05096 12 5.23672 11.8911 5.40228 11.6872C8.19263 8.2579 10.981 4.82398 13.7673 1.39005C13.9248 1.19542 14.0075 0.966027 13.9995 0.745904C13.9934 0.546634 13.9147 0.363584 13.7733 0.215291C13.4664 -0.106785 13.0646 -0.0650777 12.7456 0.324193C11.8815 1.38079 11.0213 2.43969 10.1592 3.4986L4.86521 10.0027L4.5785 9.65974C4.49168 9.55547 4.41294 9.46047 4.33419 9.36547L3.41148 8.23705C2.68058 7.34265 1.94968 6.44826 1.21272 5.56081C1.04715 5.36154 0.863419 5.25959 0.681703 5.25959C0.522197 5.25959 0.36471 5.33606 0.221357 5.4913C-0.0714079 5.80411 -0.0734271 6.28838 0.21328 6.64289L0.215299 6.64521Z' fill='white'/%3E%3C/svg%3E%0A");
  display: block;
  transform: translate3d(3px, 2px, 0);
}
.catalog-grid .filter form .row .items .item.disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
.catalog-grid .filter form .row .items .item.disabled > * {
  cursor: not-allowed !important;
}
.catalog-grid .filter form .row .switcher {
  color: var(--secondary-color);
  display: flex;
  column-gap: 10px;
  align-items: center;
  cursor: pointer;
  margin-top: 20px;
}
.catalog-grid .filter form .row .sorting {
  border: none;
  border-radius: 5px;
  height: 40px;
  width: 100%;
  text-align: left;
  padding: 0 15px;
}
.catalog-grid .filter form .row .input-range {
  display: flex;
  align-items: center;
  justify-content: space-between;
  column-gap: 10px;
}
.catalog-grid .filter form .row .input-range .value {
  display: flex;
  column-gap: 7px;
  align-items: center;
  position: relative;
}
.catalog-grid .filter form .row .input-range .value span {
  font-weight: 300;
  color: #9e9e9e;
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-48%);
}
.catalog-grid .filter form .row .input-range .value input {
  border: none;
  border-radius: 5px;
  height: 40px;
  width: 100%;
  text-align: left;
  padding: 0 10px 0 38px;
}
.catalog-grid .filter form .row .range-slider {
  position: relative;
  height: 13px;
  margin: 0 0 20px;
}
.catalog-grid .filter form .row .range-slider input[type="range"] {
  width: 100%;
  height: 13px;
  overflow: hidden;
  cursor: pointer;
  outline: none;
  position: absolute;
}
.catalog-grid .filter form .row .range-slider input[type="range"],
.catalog-grid
  .filter
  form
  .row
  .range-slider
  input[type="range"]::-webkit-slider-runnable-track,
.catalog-grid
  .filter
  form
  .row
  .range-slider
  input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  background: none;
}
.catalog-grid
  .filter
  form
  .row
  .range-slider
  input[type="range"]::-webkit-slider-runnable-track {
  width: 100%;
  height: 1px;
  background: #b7b7b7;
}
.catalog-grid
  .filter
  form
  .row
  .range-slider
  input[type="range"]:nth-child(2)::-webkit-slider-runnable-track {
  background: none;
}
.catalog-grid
  .filter
  form
  .row
  .range-slider
  input[type="range"]::-webkit-slider-thumb {
  position: relative;
  height: 11px;
  width: 11px;
  margin-top: -5px;
  background: white;
  border: 1px solid var(--primary-color);
  border-radius: 50%;
  z-index: 1;
}
.catalog-grid
  .filter
  form
  .row
  .range-slider
  input[type="range"]:nth-child(1)::-webkit-slider-thumb {
  z-index: 2;
}
@-moz-document url-prefix() {
  .catalog-grid .filter form .row .range-slider {
    position: relative;
  }
  .catalog-grid .filter form .row .range-slider::before {
    content: "";
    width: 100%;
    height: 1px;
    background: var(--primary-color);
    display: block;
    position: relative;
    top: 6px;
  }
  .catalog-grid
    .filter
    form
    .row
    .range-slider
    input[type="range"]:nth-child(1) {
    position: absolute;
    top: 50% !important;
    overflow: visible !important;
    height: 0;
  }
  .catalog-grid
    .filter
    form
    .row
    .range-slider
    input[type="range"]:nth-child(2) {
    position: absolute;
    top: 50% !important;
    overflow: visible !important;
    height: 0;
  }
  .catalog-grid
    .filter
    form
    .row
    .range-slider
    input[type="range"]::-moz-range-thumb {
    position: relative;
    height: 11px;
    width: 11px;
    margin-top: -5px;
    background: white;
    border: 1px solid var(--primary-color);
    border-radius: 50%;
    z-index: 1;
  }
}
.catalog-grid .filter form .row .row-container {
  display: none;
  padding-top: 20px;
}
.catalog-grid .filter form .row .categories-tree {
  position: relative;
  width: calc(100% + 40px);
  left: -20px;
}
.catalog-grid .filter form .row .categories-tree .categories-items {
  display: flex;
  flex-direction: column;
}
.catalog-grid .filter form .row .categories-tree .categories-items a {
  text-decoration: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  column-gap: 10px;
}
.catalog-grid .filter form .row .categories-tree .categories-items a.back {
  position: relative;
  left: -18px;
  font-weight: 500;
}
.catalog-grid .filter form .row .categories-tree .categories-items a.back span {
  flex-grow: 1;
}
.catalog-grid
  .filter
  form
  .row
  .categories-tree
  .categories-items
  .categories-item {
  padding: 7px 20px;
}
.catalog-grid
  .filter
  form
  .row
  .categories-tree
  .categories-items
  .categories-item
  .categories-items {
  padding: 10px 0 6px;
}
.catalog-grid
  .filter
  form
  .row
  .categories-tree
  .categories-items
  .categories-item
  .categories-items
  .categories-item {
  padding: 7px 10px;
}
.catalog-grid
  .filter
  form
  .row
  .categories-tree
  .categories-items
  .categories-item
  .categories-items
  .categories-item
  a,
.catalog-grid
  .filter
  form
  .row
  .categories-tree
  .categories-items
  .categories-item
  .categories-items
  .categories-item
  span {
  color: rgb(117, 116, 116);
}
.catalog-grid
  .filter
  form
  .row
  .categories-tree
  .categories-items
  .categories-item.active {
  background-color: white;
  border-radius: 10px;
}
.catalog-grid
  .filter
  form
  .row
  .categories-tree
  .categories-items
  .categories-item.active
  > a
  svg {
  transform: rotate(180deg);
}
.catalog-grid .filter form .row.opened .row-header svg {
  transform: rotate(0deg);
}
.catalog-grid .filter form .row.opened .row-container {
  display: block;
}
.catalog-grid .filter form .buttons {
  text-align: center;
}
.catalog-grid .filter form .buttons .submit {
  width: 100%;
  height: 60px;
  color: white;
  background-color: var(--primary-color);
  border-radius: 30px;
  border: none;
  font-size: 16px;
  text-transform: uppercase;
  font-weight: 300;
  display: block;
}
.catalog-grid .filter form .buttons .submit span {
  font-weight: bold;
  font-size: 18px;
  display: block;
}
.catalog-grid .filter form .buttons .reset {
  color: var(--primary-color);
  background-color: transparent;
  border: 1px solid var(--primary-color);
  margin: 15px 0 0 0;
}
.catalog-grid .filter form .buttons .btn {
  width: 90%;
  justify-content: center;
}
.catalog-grid .items {
  width: 100%;
  overflow: hidden;
}
.catalog-grid .items .items-wrapper {
  width: 100%;
  overflow: hidden;
}
.catalog-grid .items .items-wrapper .selected-options {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 30px;
}
.catalog-grid .items .items-wrapper .selected-options span {
  background-color: var(--primary-color);
  color: white;
  border-radius: 15px;
  padding: 5px 12px;
  display: flex;
  column-gap: 8px;
  align-items: center;
  cursor: pointer;
}
.catalog-grid .items .items-wrapper .selected-options span svg {
  width: 16px;
  height: 16px;
}
.catalog-grid .items .items-wrapper .selected-options span svg path {
  fill: white;
}
.catalog-grid .items .items-wrapper .items-container {
  grid-area: items;
  display: flex;
  column-gap: 10px;
  row-gap: 40px;
  flex-wrap: wrap;
}
.catalog-grid .items .items-wrapper .items-container .products-item {
  width: calc(33.3333333333% - 6.6666666667px);
  height: auto;
}
@media screen and (max-width: 1439px) {
  .catalog-grid .items .items-wrapper .items-container .products-item {
    width: calc(50% - 5px);
  }
}
@media screen and (max-width: 1199px) {
  .catalog-grid .items .items-wrapper .items-container .products-item {
    width: calc(33.3333333333% - 6.6666666667px);
  }
}
@media screen and (max-width: 991px) {
  .catalog-grid .items .items-wrapper .items-container .products-item {
    width: calc(50% - 5px);
  }
}
@media screen and (max-width: 767px) {
  .catalog-grid .items .items-wrapper .items-container .products-item {
    width: 100%;
  }
}
.catalog-grid .catalog-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  column-gap: 10px;
  padding-bottom: 20px;
}
.catalog-grid .catalog-top .filter-button {
  display: none;
}
.catalog-grid .catalog-top .title {
  font-family: "Forum", serif;
  font-size: 45px;
  margin: 0;
  font-weight: normal;
}
.catalog-grid .catalog-top .selected {
  display: flex;
  flex-wrap: wrap;
  column-gap: 10px;
  row-gap: 10px;
}
.catalog-grid .catalog-top .selected a {
  text-decoration: none;
  display: inline-flex;
  column-gap: 10px;
  align-items: center;
  padding: 5px 10px;
  background-color: #e0e0de;
  font-size: 12px;
}
.catalog-grid .catalog-top .selected a.reset {
  background-color: transparent;
}
@media screen and (max-width: 1199px) {
  .catalog-grid {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-areas: "items";
  }
  .catalog-grid .catalog-top .filter-button {
    flex-grow: 1;
    display: flex;
    justify-content: end;
  }
  .catalog-grid .catalog-top .btn {
    display: inline-flex;
    column-gap: 10px;
    background-color: var(--primary-color);
    color: white;
  }
  .catalog-grid .filter {
    display: none;
    background-color: rgb(243, 243, 243);
    position: fixed;
    top: 0;
    left: 0;
    width: 400px;
    height: calc(var(--vh, 1vh) * 100);
    z-index: 100;
    padding: 0 var(--grid-gap) 20px;
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: none;
    scrollbar-width: none;
    scroll-snap-type: x mandatory;
  }
  .catalog-grid .filter::-webkit-scrollbar {
    display: none;
  }
  .catalog-grid .filter.opened {
    display: block;
  }
  .catalog-grid .filter .close-filter {
    display: block;
    position: absolute;
    right: 20px;
    top: 20px;
    z-index: 1;
  }
  .catalog-grid .filter .close-filter svg path {
    stroke: var(--primary-color);
  }
  .catalog-grid .filter form {
    position: relative;
    top: 0;
  }
}
@media screen and (max-width: 767px) {
  .catalog-grid .filter {
    width: calc(var(--vw, 1vw) * 100);
  }
  .catalog-grid .filter .close-filter svg {
    width: 20px;
    height: 20px;
  }
  .catalog-grid .catalog-top {
    flex-wrap: wrap;
    row-gap: 10px;
  }
  .catalog-grid .catalog-top .filter-button {
    flex-grow: 0;
    justify-content: start;
  }
  .catalog-grid .catalog-top .btn {
    display: inline-flex;
    column-gap: 10px;
    background-color: var(--primary-color);
    color: white;
  }
  .catalog-grid .catalog-top .title {
    width: 100%;
    font-size: 35px;
  }
}

.products-item {
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  width: calc(25% - 7.5px);
  border-radius: 30px;
  background-color: white;
}
.products-item > a {
  display: block;
}
.products-item img {
  width: calc(100% - 8px);
  margin: 4px auto 0;
  border-radius: 26px;
  flex-shrink: 0;
  display: block;
}
.products-item .tile span {
  display: block;
  width: calc(100% - 8px);
  margin: 4px auto 0;
  padding: 4px;
  background: white;
  border-radius: 26px;
}
.products-item .tile span img {
  width: 100%;
  margin: 0 auto 0;
}
.products-item .product-content {
  flex-grow: 1;
  padding: 30px 30px 40px;
  display: flex;
  flex-direction: column;
  gap: 5%;
}
.products-item .product-content .title {
  text-decoration: none;
  font-size: 18px;
}
.products-item .product-content .option {
  display: flex;
  column-gap: 6px;
  font-size: 15px;
}
.products-item .product-content .option i {
  color: rgb(135, 135, 135);
  font-style: normal;
}
.products-item .product-content .title + .option {
  margin-top: 16px;
}
.products-item .product-content .option + .option {
  margin-top: 4px;
}
.products-item .product-content .price {
  margin: 26px 0 16px;
  font-size: 20px;
  display: flex;
  align-items: center;
  column-gap: 16px;
}
.products-item .product-content .price .old {
  color: rgb(168, 168, 168);
  text-decoration: line-through;
}
.products-item .product-content .buttons {
  display: flex;
  column-gap: 10px;
  justify-content: stretch;
}
.products-item .product-content .buttons .basket-wrapper {
  width: calc(50% - 5px);
}
.products-item .product-content .buttons .basket-wrapper .btn {
  width: 100%;
}
.products-item .product-content .buttons .basket-wrapper .amount {
  border: 1px solid rgb(216, 216, 216);
  height: 100%;
  background-color: transparent;
}
.products-item .product-content .buttons .basket-wrapper .amount input {
  background-color: transparent;
}
.products-item .product-content .buttons .btn {
  padding-left: 0;
  padding-right: 0;
  justify-content: center;
  width: calc(50% - 5px);
}
.products-item .product-content .buttons .btn.basket {
  background-color: var(--primary-color);
}
.products-item .product-content .buttons .btn.more {
  background-color: transparent;
  border: 1px solid rgb(216, 216, 216);
  color: var(--primary-color);
}
.products-item .product-content .buttons .btn.full {
  width: 100%;
}
.products-item .product-content .spacer {
  flex-grow: 1;
}
.products-item .product-content .spacer + .buttons {
  margin-top: 20px;
}
@media screen and (max-width: 767px) {
  .products-item .product-content {
    padding: 20px 15px 30px;
  }
}
.products-item .badge {
  position: absolute;
  background-color: #fb544a;
  color: white;
  right: 20px;
  top: 20px;
  padding: 5px;
  border-radius: 50%;
  aspect-ratio: 1/1;
  font-weight: 500;
  font-size: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.products-item .text-badges {
  position: absolute;
  left: 20px;
  top: 20px;
  display: flex;
  flex-direction: column;
  row-gap: 6px;
}
.products-item .text-badges .item {
  padding: 2px 8px;
  border-radius: 5px;
  background-color: var(--primary-color);
  color: white;
}
.products-item .text-badges .item.availability {
  background-color: var(--secondary-color);
}
.products-item .text-badges .item.discontinued {
  background-color: #eba73e;
}
@media screen and (max-width: 1199px) {
  .products-item {
    width: calc(33.33% - 6.6666666667px);
  }
}
@media screen and (max-width: 991px) {
  .products-item {
    width: calc(50% - 5px);
  }
}
@media screen and (max-width: 600px) {
  .products-item {
    width: 100%;
  }
}

form input[type="checkbox"] {
  appearance: none;
  margin: 0;
  font: inherit;
  color: currentColor;
  border-radius: 15px;
  background-color: rgb(227, 227, 227);
  width: 40px;
  display: block;
  height: 24px;
  padding: 4px;
  cursor: pointer;
  transition: all 0.3s;
}
form input[type="checkbox"]:after {
  content: "";
  width: 16px;
  height: 16px;
  background-color: white;
  border-radius: 50%;
  display: inline-block;
  transition: all 0.3s;
}
form input[type="checkbox"]:checked {
  background-color: var(--primary-color);
}
form input[type="checkbox"]:checked:after {
  transform: translateX(16px);
  position: relative;
}
form input[type="checkbox"].simple {
  border-radius: 3px;
  border: 1px solid #d9d9d9;
  width: 20px;
  display: block;
  height: 20px;
  padding: 0;
  background-color: white;
  cursor: pointer;
  transition: all 0.2s;
}
form input[type="checkbox"].simple:after {
  content: "";
  width: 14px;
  height: 12px;
  background-color: transparent;
  border-radius: 50%;
  display: none;
  transition: all 0.2s;
  transform: translate3d(3px, 2px, 0);
}
form input[type="checkbox"].simple:checked {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}
form input[type="checkbox"].simple:checked:after {
  background-image: url("data:image/svg+xml,%3Csvg width='14' height='12' viewBox='0 0 14 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0.215299 6.64521C1.60038 8.35985 2.98748 10.0629 4.33621 11.7011C4.49774 11.898 4.67945 12 4.86319 12C5.05096 12 5.23672 11.8911 5.40228 11.6872C8.19263 8.2579 10.981 4.82398 13.7673 1.39005C13.9248 1.19542 14.0075 0.966027 13.9995 0.745904C13.9934 0.546634 13.9147 0.363584 13.7733 0.215291C13.4664 -0.106785 13.0646 -0.0650777 12.7456 0.324193C11.8815 1.38079 11.0213 2.43969 10.1592 3.4986L4.86521 10.0027L4.5785 9.65974C4.49168 9.55547 4.41294 9.46047 4.33419 9.36547L3.41148 8.23705C2.68058 7.34265 1.94968 6.44826 1.21272 5.56081C1.04715 5.36154 0.863419 5.25959 0.681703 5.25959C0.522197 5.25959 0.36471 5.33606 0.221357 5.4913C-0.0714079 5.80411 -0.0734271 6.28838 0.21328 6.64289L0.215299 6.64521Z' fill='white'/%3E%3C/svg%3E%0A");
  display: block;
  transform: translate3d(3px, 2px, 0);
}
form input[type="text"],
form input[type="email"] {
  border-radius: var(--btn-border-radius);
  height: 50px;
  border: 1px solid var(--light-gray-color);
  padding: 16px 20px;
  outline: none;
  flex-grow: 1;
  width: 100%;
}
form input[type="text"].error,
form input[type="email"].error {
  border-color: rgb(220, 67, 85) !important;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e") !important;
  background-repeat: no-repeat !important;
  background-position: right calc(0.375em + 0.1875rem) center !important;
  background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem) !important;
  padding-right: calc(1.5em + 0.75rem) !important;
}
form textarea {
  border-radius: var(--btn-border-radius);
  border: 1px solid var(--light-gray-color);
  padding: 16px 20px;
  outline: none;
  flex-grow: 1;
  width: 100%;
  height: 160px;
}
form textarea.error {
  border-color: rgb(220, 67, 85);
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right calc(0.375em + 0.1875rem) center;
  background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
  padding-right: calc(1.5em + 0.75rem);
}

.pager {
  margin: 40px 0 0 0;
  padding: 0;
  width: 100%;
  text-align: center;
  overflow: scroll;
  -webkit-overflow-scrolling: touch;
  -ms-overflow-style: none;
  scrollbar-width: none;
  scroll-snap-type: x mandatory;
}
.pager::-webkit-scrollbar {
  display: none;
}
.pager ul {
  display: inline-flex;
  list-style: none;
  column-gap: 10px;
  margin: 0 auto;
  padding: 0;
  align-items: center;
}
.pager ul li {
  font-size: 14px;
}
.pager ul li a,
.pager ul li span {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  border: 1px solid rgb(243, 243, 243);
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 1em;
}
.pager ul li a {
  text-decoration: none;
}
.pager ul li a svg path {
  fill: var(--primary-color);
}
.pager ul li.active span {
  background-color: var(--primary-color);
  color: white;
}
@media screen and (max-width: 767px) {
  .pager ul li a,
  .pager ul li span {
    width: 30px;
    height: 30px;
  }
}

.product-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 2fr 1fr 1fr;
  grid-template-areas: "gallery gallery info info price price" "gallery gallery properties properties price price" "gallery gallery properties properties price price" "sets sets sets sets sets sets" "description description description delivery delivery delivery";
  column-gap: 50px;
  row-gap: 20px;
}
.product-grid .header {
  font-family: "Forum", serif;
  font-size: 30px;
  margin: 0 0 10px;
  font-weight: 400;
}
.product-grid .h1 {
  font-size: 40px;
  font-family: "Forum", serif;
  margin: 0 0 15px;
  line-height: 1.1;
  font-weight: 400;
}
.product-grid .h3 {
  font-weight: 500;
  font-size: 18px;
  margin: 0 0 1em;
}
.product-grid ul {
  padding-left: 1.1em;
  margin: 1em 0 1.3em;
}
.product-grid ul li::marker {
  color: var(--secondary-color);
}
.product-grid .product-gallery {
  grid-area: gallery;
}
.product-grid .product-gallery .thumbnails {
  padding-top: 10px;
  overflow: hidden;
}
.product-grid .product-gallery .thumbnails .swiper-wrapper .swiper-slide {
  width: 72px;
  height: 62px;
  line-height: 0;
  cursor: pointer;
  border-radius: 10px;
  overflow: hidden;
  padding: 4px;
  border: 2px solid transparent;
}
.product-grid .product-gallery .thumbnails .swiper-wrapper .swiper-slide img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 6px;
}
.product-grid
  .product-gallery
  .thumbnails
  .swiper-wrapper
  .swiper-slide
  img.poster {
  object-fit: cover;
  object-position: center;
  width: 100%;
  height: 100%;
}
.product-grid .product-gallery .thumbnails .swiper-wrapper .swiper-slide .play {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.product-grid
  .product-gallery
  .thumbnails
  .swiper-wrapper
  .swiper-slide
  .play
  svg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.product-grid
  .product-gallery
  .thumbnails
  .swiper-wrapper
  .swiper-slide.swiper-slide-thumb-active {
  opacity: 0.7;
  border: 2px solid var(--secondary-color);
}
.product-grid .product-info {
  grid-area: info;
}
.product-grid .product-info .vendor-code {
  color: rgb(189, 189, 189);
  display: block;
  margin: 0 0 5px;
}
.product-grid .product-info .brand {
  font-size: 18px;
  margin: 0;
}
.product-grid .product-properties {
  grid-area: properties;
}
.product-grid .product-properties dl {
  display: flex;
  flex-wrap: wrap;
  align-items: start;
  column-gap: 16px;
  row-gap: 10px;
  margin-bottom: 0;
}
.product-grid .product-properties dl dt {
  color: rgb(172, 172, 172);
  width: calc(60% - 8px);
  padding: 0;
  margin: 0;
  display: flex;
  column-gap: 16px;
}
.product-grid .product-properties dl dt:after {
  content: "";
  flex-grow: 1;
  border-bottom: 1px solid rgb(234, 234, 234);
  position: relative;
  top: -3px;
}
.product-grid .product-properties dl dd {
  width: calc(40% - 8px);
  padding: 0;
  margin: 0;
}
.product-grid .product-properties .files {
  margin: 30px 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.product-grid .product-price {
  grid-area: price;
  align-self: start;
}
.product-grid .product-price .price-background {
  background-color: rgb(243, 243, 243);
  border-radius: 30px;
  padding: 50px 40px;
}
.product-grid .product-price .price-background .btn {
  width: 100%;
  justify-content: center;
  background-color: var(--primary-color);
  color: white;
}
.product-grid .product-price .price-background .btn.selected {
  background-color: var(--secondary-color);
}
.product-grid .product-price .price-background .available {
  margin: 0 0 15px;
  font-weight: 300;
}
.product-grid .product-price .price-background .available:before {
  content: "";
  background-color: rgb(96, 207, 114);
  width: 7px;
  height: 7px;
  position: relative;
  display: inline-block;
  border-radius: 50%;
  margin-right: 10px;
  top: -2px;
}
.product-grid .product-price .price-background .price span {
  font-size: 40px;
  font-weight: 700;
  margin: 0 15px 25px 0;
}
.product-grid .product-price .price-background .price del {
  opacity: 0.35;
  font-size: 30px;
  white-space: nowrap;
}
.product-grid .product-price .price-background .price.discontinued {
  font-size: 26px;
}
@media screen and (max-width: 767px) {
  .product-grid .product-price .price-background .price.discontinued {
    font-size: 20px;
  }
}
.product-grid .product-price .price-background .basket-wrapper {
  display: flex;
  column-gap: 10px;
}
.product-grid .product-price .price-background .basket-wrapper .amount {
  width: calc(50% - 5px);
  flex-shrink: 0;
}
.product-grid .product-price .price-background .basket-wrapper.selected {
  width: calc(50% - 5px);
  flex-shrink: 0;
}
@media screen and (max-width: 991px) {
  .product-grid .product-price .price-background .basket-wrapper {
    flex-direction: column;
    row-gap: 10px;
    justify-content: stretch;
  }
  .product-grid .product-price .price-background .basket-wrapper .amount {
    width: 100%;
  }
}
.product-grid .model-3d {
  margin: 0 0 1em;
  text-align: left;
}
.product-grid .product-description {
  grid-area: description;
  padding: 30px 40px 0 0;
}
.product-grid .product-description > *:last-child {
  margin-bottom: 0;
}
.product-grid .product-delivery {
  padding: 30px 0 0 40px;
  grid-area: delivery;
}
.product-grid .product-delivery > *:last-child {
  margin-bottom: 0;
}
.product-grid .product-sets {
  grid-area: sets;
  background-color: rgb(243, 243, 243);
  border-radius: 30px;
  padding: 30px;
}
.product-grid .product-sets .product-sets-wrapper {
  margin: 30px 0 0;
}
.product-grid .product-sets .product-sets-wrapper .product-set {
  overflow: scroll;
  scrollbar-width: none;
  scroll-snap-type: x mandatory;
}
.product-grid
  .product-sets
  .product-sets-wrapper
  .product-set::-webkit-scrollbar {
  display: none;
}
.product-grid .product-sets .product-sets-wrapper .product-set ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: stretch;
  column-gap: 15px;
  row-gap: 40px;
}
.product-grid .product-sets .product-sets-wrapper .product-set ul li {
  padding-left: 30px;
  flex-grow: 0;
  flex-shrink: 0;
  max-width: 330px;
  position: relative;
}
.product-grid .product-sets .product-sets-wrapper .product-set ul li:before {
  content: "+";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(0, -50%);
  color: rgb(170, 170, 170);
  font-size: 30px;
}
.product-grid
  .product-sets
  .product-sets-wrapper
  .product-set
  ul
  li:last-child:before {
  content: "=";
}
.product-grid
  .product-sets
  .product-sets-wrapper
  .product-set
  ul
  li:first-child {
  max-width: 300px;
  padding-left: 0;
}
.product-grid
  .product-sets
  .product-sets-wrapper
  .product-set
  ul
  li:first-child:before {
  display: none;
}
.product-grid
  .product-sets
  .product-sets-wrapper
  .product-set
  ul
  li
  .products-item {
  width: 100%;
  height: 100%;
}
.product-grid
  .product-sets
  .product-sets-wrapper
  .product-set
  ul
  li
  .products-item
  .price {
  margin-bottom: 0;
}
.product-grid
  .product-sets
  .product-sets-wrapper
  .product-set
  ul
  li
  .products-item
  .buttons {
  margin-top: 15px;
}
.product-grid .product-sets .product-sets-wrapper .product-set ul li.result {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  row-gap: 20px;
}
.product-grid
  .product-sets
  .product-sets-wrapper
  .product-set
  ul
  li.result
  .total-price {
  font-size: 40px;
  font-weight: 700;
  margin: 0;
}
.product-grid .product-sets .product-sets-wrapper .product-set ul li .checkbox {
  position: absolute;
  left: 45px;
  top: 15px;
  z-index: 1;
}
.product-grid
  .product-sets
  .product-sets-wrapper
  .product-set
  ul
  li
  .checkbox
  input[type="checkbox"] {
  appearance: none;
  margin: 0;
  font: inherit;
  color: currentColor;
  border-radius: 15px;
  background-color: rgb(227, 227, 227);
  width: 40px;
  display: block;
  height: 24px;
  padding: 4px;
  cursor: pointer;
  transition: all 0.3s;
}
.product-grid
  .product-sets
  .product-sets-wrapper
  .product-set
  ul
  li
  .checkbox
  input[type="checkbox"]:after {
  content: "";
  width: 16px;
  height: 16px;
  background-color: white;
  border-radius: 50%;
  display: inline-block;
  transition: all 0.3s;
}
.product-grid
  .product-sets
  .product-sets-wrapper
  .product-set
  ul
  li
  .checkbox
  input[type="checkbox"]:checked {
  background-color: var(--secondary-color);
}
.product-grid
  .product-sets
  .product-sets-wrapper
  .product-set
  ul
  li
  .checkbox
  input[type="checkbox"]:checked:after {
  transform: translateX(16px);
  position: relative;
}
.product-grid
  .product-sets
  .product-sets-wrapper
  .product-set
  ul
  li.disabled
  .products-item {
  opacity: 0.4;
}
.product-grid .product-sets .product-sets-wrapper .product-set + .product-set {
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid var(--secondary-color);
}
@media screen and (max-width: 1439px) {
  .product-grid {
    grid-template-areas: "gallery gallery gallery" "info info price" "properties properties price" "sets sets sets" "description description description" "delivery delivery delivery";
    grid-template-columns: 1fr 1fr 380px;
  }
  .product-grid .product-description {
    padding-right: 0;
  }
  .product-grid .product-delivery {
    padding-left: 0;
  }
}
@media screen and (max-width: 1199px) {
  .product-grid {
    row-gap: 40px;
  }
  .product-grid .product-sets {
    margin-bottom: 40px;
  }
  .product-grid .product-sets .product-sets-wrapper .product-set ul li {
    max-width: calc((100% - 30px - 60px) / 3 + 30px);
  }
  .product-grid
    .product-sets
    .product-sets-wrapper
    .product-set
    ul
    li:first-child {
    max-width: calc((100% - 30px - 60px) / 3);
  }
}
@media screen and (max-width: 991px) {
  .product-grid {
    grid-template-areas: "gallery" "info" "price" "sets" "properties" "description" "delivery";
    grid-template-columns: 1fr;
  }
  .product-grid .h1 {
    font-size: 30px;
  }
  .product-grid .product-price .price-background {
    max-width: 380px;
    margin: 0 auto;
    padding: 30px 20px;
  }
  .product-grid .product-info dl {
    justify-content: space-between;
  }
  .product-grid .product-info dl dt {
    flex-grow: 1;
  }
  .product-grid .product-info dl dd {
    width: auto;
  }
  .product-grid .product-sets .product-sets-wrapper .product-set ul li {
    max-width: 100%;
    width: 100%;
    padding-left: 0;
  }
  .product-grid
    .product-sets
    .product-sets-wrapper
    .product-set
    ul
    li:first-child {
    max-width: 100%;
  }
  .product-grid .product-sets .product-sets-wrapper .product-set ul li:before {
    left: 50%;
    top: -18px;
    transform: translate(-50%, -50%);
  }
  .product-grid
    .product-sets
    .product-sets-wrapper
    .product-set
    ul
    li
    .checkbox {
    position: absolute;
    left: 15px;
    top: 15px;
  }
  .product-grid
    .product-sets
    .product-sets-wrapper
    .product-set
    ul
    li
    .products-item {
    flex-direction: row;
    column-gap: 30px;
  }
  .product-grid
    .product-sets
    .product-sets-wrapper
    .product-set
    ul
    li
    .products-item
    img {
    width: 100%;
  }
  .product-grid
    .product-sets
    .product-sets-wrapper
    .product-set
    ul
    li
    .products-item
    .product-content {
    width: calc((100% - 30px) / 2);
    flex-shrink: 0;
  }
  .product-grid
    .product-sets
    .product-sets-wrapper
    .product-set
    ul
    li
    .products-item
    .product-content
    .price {
    margin-bottom: 0;
  }
}
@media screen and (max-width: 767px) {
  .product-grid .product-sets {
    padding: 20px 10px;
  }
  .product-grid .product-sets .header {
    text-align: center;
  }
  .product-grid
    .product-sets
    .product-sets-wrapper
    .product-set
    ul
    li
    .products-item {
    flex-direction: column;
    column-gap: 0;
  }
  .product-grid
    .product-sets
    .product-sets-wrapper
    .product-set
    ul
    li
    .products-item
    img {
    width: 100%;
  }
  .product-grid
    .product-sets
    .product-sets-wrapper
    .product-set
    ul
    li
    .products-item
    .product-content {
    width: auto;
  }
  .product-grid .product-properties dl {
    display: flex;
    flex-wrap: wrap;
    align-items: start;
    column-gap: 16px;
    row-gap: 6px;
    margin-bottom: 0;
  }
  .product-grid .product-properties dl dt {
    font-size: 14px;
    width: 100%;
  }
  .product-grid .product-properties dl dt:after {
    display: none;
  }
  .product-grid .product-properties dl dd {
    width: 100%;
    padding-bottom: 6px;
  }
}
.product-grid.v2 {
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
  grid-template-areas: "gallery gallery gallery gallery main-info main-info" "description description description delivery delivery delivery";
}
.product-grid.v2 .product-main-info {
  grid-area: main-info;
  display: flex;
  flex-direction: column;
  row-gap: 40px;
  align-content: stretch;
}
.product-grid.v2 .product-main-info .product-price {
  align-self: stretch;
}
.product-grid.v2 .product-gallery {
  position: relative;
}
@media screen and (max-width: 1439px) {
  .product-grid.v2 {
    grid-template-columns: repeat(8, 1fr);
    grid-template-areas: "gallery gallery gallery gallery gallery main-info main-info main-info" "description description description description delivery delivery delivery delivery";
  }
}
@media screen and (max-width: 1199px) {
  .product-grid.v2 {
    display: block;
  }
  .product-grid.v2 .product-gallery {
    position: relative;
    margin-bottom: 40px;
  }
  .product-grid.v2 .product-gallery .gallery {
    position: relative;
    top: auto;
  }
  .product-grid.v2 .product-main-info {
    margin-bottom: 40px;
  }
  .product-grid.v2 .product-description {
    padding-top: 0;
    margin-bottom: 40px;
  }
  .product-grid.v2 .product-delivery {
    padding-top: 0;
  }
  .product-grid.v2 .product-price {
    min-width: 400px;
    max-width: 500px;
    margin: 0 auto;
  }
}
@media screen and (max-width: 1199px) {
  .product-grid.v2 .product-price {
    min-width: auto;
    max-width: 100%;
    margin: 0 auto;
  }
}
.product-grid.v3 {
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
  grid-template-areas: "gallery gallery gallery gallery main-info main-info" "sets sets sets sets sets sets" "description description description delivery delivery delivery";
}
.product-grid.v3 .product-main-info {
  grid-area: main-info;
  display: flex;
  flex-direction: column;
  row-gap: 40px;
  align-content: stretch;
}
.product-grid.v3 .product-main-info .product-price {
  align-self: stretch;
  position: relative;
}
.product-grid.v3 .product-main-info .product-price .badge {
  position: absolute;
  background-color: #fb544a;
  color: white;
  right: 20px;
  top: 20px;
  padding: 5px;
  border-radius: 50%;
  aspect-ratio: 1/1;
  font-weight: 500;
  font-size: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.product-grid.v3 .product-gallery {
  position: relative;
}
.product-grid.v3 .product-gallery .product-gallery-wrapper {
  display: flex;
  flex-direction: row-reverse;
  column-gap: 20px;
}
.product-grid.v3
  .product-gallery
  .product-gallery-wrapper
  .products-slider-dots {
  display: none;
  justify-content: center;
  column-gap: 5px;
  margin-top: 20px;
}
.product-grid.v3
  .product-gallery
  .product-gallery-wrapper
  .products-slider-dots
  i,
.product-grid.v3
  .product-gallery
  .product-gallery-wrapper
  .products-slider-dots
  .swiper-pagination-bullet {
  width: 20px;
  height: 6px;
  background-color: rgb(44, 44, 44);
  border-radius: 3px;
  transition: all 0.3s;
  opacity: 0.2;
  cursor: pointer;
  margin: 0;
}
.product-grid.v3
  .product-gallery
  .product-gallery-wrapper
  .products-slider-dots
  i.active,
.product-grid.v3
  .product-gallery
  .product-gallery-wrapper
  .products-slider-dots
  i.swiper-pagination-bullet-active,
.product-grid.v3
  .product-gallery
  .product-gallery-wrapper
  .products-slider-dots
  .swiper-pagination-bullet.active,
.product-grid.v3
  .product-gallery
  .product-gallery-wrapper
  .products-slider-dots
  .swiper-pagination-bullet.swiper-pagination-bullet-active {
  width: 50px;
  opacity: 1;
}
.product-grid.v3 .product-gallery .product-gallery-wrapper .thumbnails {
  width: 72px;
  flex-shrink: 0;
  max-height: 80vh;
}
.product-grid.v3
  .product-gallery
  .product-gallery-wrapper
  .thumbnails
  .swiper-slide {
  height: 62px;
}
.product-grid.v3 .product-gallery .product-gallery-wrapper .gallery {
  border-radius: 0;
}
.product-grid.v3 .product-gallery .product-gallery-wrapper .gallery .slides {
  align-items: center;
}
.product-grid.v3 .product-gallery .product-gallery-wrapper .gallery .item img,
.product-grid.v3
  .product-gallery
  .product-gallery-wrapper
  .gallery
  .item
  video {
  max-height: 80vh;
}
@media screen and (max-width: 1439px) {
  .product-grid.v3 {
    grid-template-columns: repeat(8, 1fr);
    grid-template-areas: "gallery gallery gallery gallery gallery main-info main-info main-info" "sets sets sets sets sets sets sets sets" "description description description description delivery delivery delivery delivery";
  }
}
@media screen and (max-width: 1199px) {
  .product-grid.v3 {
    display: block;
  }
  .product-grid.v3 .product-gallery {
    position: relative;
    margin-bottom: 40px;
  }
  .product-grid.v3 .product-gallery .gallery {
    position: relative;
    top: auto;
  }
  .product-grid.v3 .product-main-info {
    margin-bottom: 40px;
  }
  .product-grid.v3 .product-description {
    padding-top: 0;
    margin-bottom: 40px;
  }
  .product-grid.v3 .product-delivery {
    padding-top: 0;
  }
  .product-grid.v3 .product-price {
    min-width: 400px;
    max-width: 500px;
    margin: 0 auto;
  }
}
@media screen and (max-width: 991px) {
  .product-grid.v3 .product-gallery .product-gallery-wrapper {
    display: block;
  }
  .product-grid.v3 .product-gallery .product-gallery-wrapper .thumbnails {
    display: none;
  }
  .product-grid.v3
    .product-gallery
    .product-gallery-wrapper
    .products-slider-dots {
    display: flex;
  }
  .product-grid.v3 .product-price {
    min-width: auto;
  }
}

.gallery {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  width: 100%;
}
.gallery .slides {
  display: flex;
  flex-wrap: nowrap;
}
.gallery .slides .item {
  width: 100%;
  flex-shrink: 0;
  position: relative;
  line-height: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.gallery .slides .item img {
  max-width: 100%;
  max-height: 100%;
}
.gallery .thumbnails {
  padding-top: 10px;
  display: flex;
  justify-content: center;
  column-gap: 10px;
  line-height: 0;
}
.gallery .previous {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
}
.gallery .next {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
}
.gallery.with-thumbnails .previous,
.gallery.with-thumbnails .next {
  transform: translateY(calc(-50% - 30px));
}
@media screen and (max-width: 767px) {
  .gallery {
    position: relative;
    width: calc(var(--vw, 1vw) * 100);
    left: 50%;
    right: 50%;
    margin-left: calc(var(--vw, 1vw) * -50);
    margin-right: calc(var(--vw, 1vw) * -50);
    border-radius: 0;
  }
  .gallery .slides {
    border-radius: 0;
  }
}

:root {
  --slider-item-height: 700px;
  --slider-item-y-padding: 100px;
  --slider-item-x-padding: 70px;
  --slider-hero-items-gap: 10px;
}
@media screen and (max-width: 1199px) {
  :root {
    --slider-item-height: 650px;
    --slider-item-x-padding: 90px;
    --slider-item-y-padding: 60px;
  }
}
@media screen and (max-width: 991px) {
  :root {
    --slider-item-height: auto;
  }
}
@media screen and (max-width: 767px) {
  :root {
    --slider-item-x-padding: 40px;
    --slider-item-y-padding: 60px;
  }
}

.slider {
  position: relative;
  overflow: hidden;
  border-radius: 0;
}
.slider .swiper-wrapper {
  width: 100%;
  display: flex;
}
.slider .swiper-wrapper .next {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
}
.slider .swiper-wrapper .previous {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
}
.slider .products-slider-dots {
  display: flex;
  justify-content: center;
  column-gap: 5px;
  margin-top: 20px;
}
.slider .products-slider-dots i,
.slider .products-slider-dots .swiper-pagination-bullet {
  width: 20px;
  height: 6px;
  background-color: rgb(44, 44, 44);
  border-radius: 3px;
  transition: all 0.3s;
  opacity: 0.2;
  cursor: pointer;
  margin: 0;
}
.slider .products-slider-dots i.active,
.slider .products-slider-dots i.swiper-pagination-bullet-active,
.slider .products-slider-dots .swiper-pagination-bullet.active,
.slider
  .products-slider-dots
  .swiper-pagination-bullet.swiper-pagination-bullet-active {
  width: 50px;
  opacity: 1;
}
.slider .slider-item {
  width: 100%;
  height: var(--slider-item-height);
  flex-shrink: 0;
  position: relative;
  line-height: 0;
}
.slider .slider-item picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left 50% top 85%;
}
@media screen and (max-width: 991px) {
  .slider .slider-item picture img {
    height: 100%;
    object-fit: cover;
    object-position: center;
  }
}
@media screen and (max-width: 767px) {
  .slider .slider-item picture img {
    aspect-ratio: 4/3;
  }
}
.slider .slider-item.hero .slide-wrapper {
  position: absolute;
  width: 100%;
  max-width: var(--container-max-width);
  min-width: var(--container-min-width);
  height: 100%;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  padding: var(--slider-item-y-padding) var(--slider-item-x-padding)
    calc(var(--slider-item-y-padding) / 2);
  color: white;
}
.slider .slider-item.hero .slide-wrapper .text {
  padding-left: 100px;
}
.slider .slider-item.hero .slide-wrapper .text .header {
  font-size: 50px;
  font-family: "Forum", serif;
  margin: 0 0 30px;
  line-height: 1;
}
@media screen and (max-width: 991px) {
  .slider .slider-item.hero .slide-wrapper .text .header {
    font-size: 40px;
  }
}
@media screen and (max-width: 767px) {
  .slider .slider-item.hero .slide-wrapper .text .header {
    font-size: 30px;
  }
}
@media screen and (max-width: 480px) {
  .slider .slider-item.hero .slide-wrapper .text .header {
    font-size: 24px;
  }
}
.slider .slider-item.hero .slide-wrapper .text p {
  line-height: 1.4;
  max-width: 700px;
  padding-right: 20px;
}
.slider .slider-item.hero .slide-wrapper .text p.i {
  margin-top: 30px;
}
@media screen and (max-width: 1199px) {
  .slider .slider-item.hero .slide-wrapper .text {
    padding-left: 0;
  }
}
@media screen and (max-width: 991px) {
  .slider .slider-item.hero .slide-wrapper .text {
    top: 50%;
    transform: translateY(-50%);
    position: absolute;
  }
}
@media screen and (max-width: 600px) {
  .slider .slider-item.hero .slide-wrapper .text p {
    display: none;
  }
}
.slider .slider-item.hero .slide-wrapper ul {
  width: calc(100% - var(--slider-item-x-padding) * 2);
  position: absolute;
  bottom: calc(var(--slider-item-y-padding) - 20px);
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: space-between;
  column-gap: var(--slider-hero-items-gap);
  row-gap: var(--slider-hero-items-gap);
}
.slider .slider-item.hero .slide-wrapper ul li {
  line-height: 1.4;
  border-radius: var(--btn-border-radius);
  background-color: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  padding: 23px 50px 23px 30px;
  column-gap: 20px;
  flex-grow: 0;
  width: calc(25% - var(--slider-hero-items-gap) * 3 / 4);
}
.slider .slider-item.hero .slide-wrapper ul li svg {
  flex-shrink: 0;
}
@media screen and (max-width: 1439px) {
  .slider .slider-item.hero .slide-wrapper ul {
    flex-wrap: wrap;
  }
  .slider .slider-item.hero .slide-wrapper ul li {
    width: calc(50% - var(--slider-hero-items-gap) / 2);
  }
}
@media screen and (max-width: 1199px) {
  .slider .slider-item.hero .slide-wrapper ul {
    bottom: calc(var(--slider-item-y-padding));
  }
}
@media screen and (max-width: 991px) {
  .slider .slider-item.hero .slide-wrapper ul {
    display: none;
  }
}
@media screen and (max-width: 1199px) {
  .slider .slider-item.hero .slide-wrapper {
    padding-bottom: calc(var(--slider-item-y-padding));
  }
}
.slider .slider-item.exposition {
  position: relative;
}
.slider .slider-item.exposition .slide-wrapper {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  color: white;
  text-align: center;
  line-height: 1.4;
  font-size: 20px;
}
.slider .slider-item.exposition .slide-wrapper .header {
  font-size: 50px;
  font-family: "Forum", serif;
  font-weight: 600;
  line-height: 1.1;
  margin: 0 0 10px;
}
@media screen and (max-width: 991px) {
  .slider .slider-item.exposition .slide-wrapper .header {
    font-size: 40px;
  }
}
@media screen and (max-width: 767px) {
  .slider .slider-item.exposition .slide-wrapper .header {
    font-size: 30px;
  }
}
@media screen and (max-width: 480px) {
  .slider .slider-item.exposition .slide-wrapper .header {
    font-size: 24px;
  }
}
.slider .slider-item.exposition .slide-wrapper p {
  margin: 0;
}
.slider .slider-item.exposition .slide-wrapper span {
  color: var(--secondary-color);
}
@media screen and (max-width: 991px) {
  .slider .slider-item.exposition .slide-wrapper {
    width: 80%;
    top: 30%;
  }
}
@media screen and (max-width: 767px) {
  .slider .slider-item.exposition .slide-wrapper {
    top: 50%;
    font-size: 16px;
  }
}
.slider .slider-item.exposition .brands {
  position: absolute;
  bottom: 50px;
  width: 96%;
  left: 50%;
  height: auto;
  transform: translateX(-50%);
  aspect-ratio: auto;
}
@media screen and (max-width: 991px) {
  .slider .slider-item.exposition .brands {
    width: 70%;
  }
}
@media screen and (max-width: 767px) {
  .slider .slider-item.exposition .brands {
    display: none;
  }
}
.slider .slider-item.exposition .logos {
  position: absolute;
  bottom: 50px;
  width: 100%;
  display: flex;
  column-gap: 60px;
  row-gap: 20px;
  align-items: center;
  justify-content: center;
}
.slider .slider-item.exposition .logos div {
  display: flex;
  column-gap: 60px;
  row-gap: 20px;
  align-items: center;
  justify-content: center;
}
.slider .slider-item.exposition .logos img {
  width: auto;
  flex-shrink: 1;
  max-width: 250px;
  max-height: 30px;
}
.slider .slider-item.exposition .logos img.oasis {
  height: 132px;
  max-height: 132px;
}
@media screen and (max-width: 1199px) {
  .slider .slider-item.exposition .logos img {
    width: auto;
    flex-shrink: 1;
    max-width: 150px;
    max-height: 26px;
  }
  .slider .slider-item.exposition .logos img.oasis {
    height: 132px;
    max-height: 132px;
  }
}
.slider .slider-item.artdom {
  position: relative;
}
.slider .slider-item.artdom .slide-wrapper {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  color: white;
  text-align: center;
  line-height: 1.4;
  font-size: 20px;
}
.slider .slider-item.artdom .slide-wrapper .header {
  font-size: 50px;
  font-family: "Forum", serif;
  font-weight: 600;
  line-height: 1.1;
  margin: 0 0 10px;
}
@media screen and (max-width: 991px) {
  .slider .slider-item.artdom .slide-wrapper .header {
    font-size: 40px;
  }
}
@media screen and (max-width: 767px) {
  .slider .slider-item.artdom .slide-wrapper .header {
    font-size: 30px;
  }
}
@media screen and (max-width: 480px) {
  .slider .slider-item.artdom .slide-wrapper .header {
    font-size: 24px;
  }
}
.slider .slider-item.artdom .slide-wrapper p {
  margin: 0;
}
.slider .slider-item.artdom .slide-wrapper span {
  color: var(--secondary-color);
}
@media screen and (max-width: 991px) {
  .slider .slider-item.artdom .slide-wrapper {
    width: 80%;
    top: 30%;
  }
}
@media screen and (max-width: 767px) {
  .slider .slider-item.artdom .slide-wrapper {
    top: 50%;
    font-size: 16px;
  }
}
.slider .slider-item.artdom .brands {
  position: absolute;
  bottom: 50px;
  width: 96%;
  left: 50%;
  height: auto;
  transform: translateX(-50%);
  aspect-ratio: auto;
}
@media screen and (max-width: 991px) {
  .slider .slider-item.artdom .brands {
    width: 96%;
  }
}
@media screen and (max-width: 767px) {
  .slider .slider-item.artdom .brands {
    width: 60%;
    bottom: 15px;
  }
}
.slider .slider-item.artdom .logos {
  position: absolute;
  bottom: 50px;
  width: 100%;
  display: flex;
  column-gap: 60px;
  row-gap: 20px;
  align-items: center;
  justify-content: center;
}
.slider .slider-item.artdom .logos div {
  display: flex;
  column-gap: 60px;
  row-gap: 20px;
  align-items: center;
  justify-content: center;
}
.slider .slider-item.artdom .logos img {
  width: auto;
  flex-shrink: 1;
  max-width: 250px;
  max-height: 30px;
}
.slider .slider-item.artdom .logos img.oasis {
  height: 132px;
  max-height: 132px;
}
@media screen and (max-width: 1199px) {
  .slider .slider-item.artdom .logos img {
    width: auto;
    flex-shrink: 1;
    max-width: 150px;
    max-height: 26px;
  }
  .slider .slider-item.artdom .logos img.oasis {
    height: 132px;
    max-height: 132px;
  }
}

:root {
  --tile-height: 300px;
}
@media screen and (max-width: 1439px) {
  :root {
    --tile-height: 300px;
  }
}
@media screen and (max-width: 767px) {
  :root {
    --tile-height: 260px;
  }
}
@media screen and (max-width: 480px) {
  :root {
    --tile-height: 200px;
  }
}

.tiles {
  display: flex;
  flex-wrap: wrap;
  column-gap: 10px;
  row-gap: 10px;
  width: 100%;
}
.tiles .item {
  width: calc(33.3333333333% - 6.6666666667px);
  min-height: var(--tile-height);
  position: relative;
  color: white;
  border-radius: 30px;
  overflow: hidden;
  padding: 90px 40px 60px;
}
.tiles .item strong {
  position: relative;
  display: block;
  z-index: 3;
  font-size: 40px;
  font-family: "Forum", serif;
  line-height: 1;
  font-weight: 400;
}
.tiles .item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
}
.tiles .item .shadow {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 2;
  position: absolute;
  background: linear-gradient(
    62.52deg,
    rgba(0, 0, 0, 0.889969) 2.18%,
    rgba(0, 0, 0, 0.72) 2.18%,
    rgba(0, 0, 0, 0.542039) 41.95%,
    rgba(0, 0, 0, 0) 101.15%
  );
  transition: all 0.3s;
}
.tiles .item .badge {
  z-index: 3;
  background-color: rgba(0, 0, 0, 0.3);
  left: 20px;
  top: 20px;
  padding: 10px 18px;
  border-radius: var(--btn-border-radius);
  text-decoration: none;
  position: absolute;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.tiles .item ul {
  list-style: none;
  margin: 15px 0 0;
  padding: 0;
  z-index: 3;
  position: relative;
}
.tiles .item ul li {
  padding: 5px 0;
}
.tiles .item ul li a {
  color: white;
}
.tiles .item ul li a:hover {
  color: var(--secondary-color);
}
.tiles .item svg {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 3;
}
.tiles .item.empty {
  padding: 40px;
  min-height: var(--tile-height);
  display: flex;
  align-items: end;
}
.tiles .item.small {
  width: calc(22% - 6.6666666667px);
}
.tiles .item.medium {
  width: calc(35% - 6.6666666667px);
}
.tiles .item.large {
  width: calc(43% - 6.6666666667px);
}
.tiles .item.large ul {
  column-gap: 20px;
  column-width: 200px;
}
.tiles .item:hover .shadow {
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
@media screen and (max-width: 1439px) {
  .tiles .item {
    width: calc(50% - 5px);
    height: auto;
    align-items: stretch;
  }
  .tiles .item.small {
    width: calc(50% - 5px);
  }
  .tiles .item.medium {
    width: 100%;
  }
  .tiles .item.medium ul {
    -moz-column-fill: balance;
    column-fill: balance;
    column-width: 300px;
    column-gap: 40px;
  }
  .tiles .item.large {
    width: 100%;
  }
  .tiles .item.large ul {
    -moz-column-fill: balance;
    column-fill: balance;
    column-width: 300px;
    column-gap: 40px;
  }
  .tiles .item.empty {
    width: calc(50% - 5px);
  }
}
@media screen and (max-width: 767px) {
  .tiles .item {
    border-radius: 20px;
  }
  .tiles .item.small {
    width: 100%;
  }
  .tiles .item.medium {
    width: 100%;
  }
  .tiles .item.large {
    width: 100%;
  }
}

:root {
  --button-height: 50px;
}
@media screen and (max-width: 767px) {
  :root {
    --button-height: 40px;
  }
}

.btn {
  padding: 0 48px;
  height: var(--button-height);
  color: white;
  background-color: var(--secondary-color);
  border-radius: var(--btn-border-radius);
  display: inline-flex;
  text-decoration: none;
  line-height: 1.4;
  align-items: center;
  border: none;
  cursor: pointer;
  column-gap: 10px;
}
.btn.disabled {
  opacity: 0.5;
}
.btn.black {
  background-color: var(--primary-color);
  color: white;
}
.btn.selected {
  background-color: var(--secondary-color);
  color: white;
}
.btn.large {
  font-size: 2em;
  height: 80px;
}
.btn svg {
  flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .btn {
    padding: 9px 30px;
    height: auto;
    min-height: var(--button-height);
  }
}

.ymaps3x0--main-engine-container {
  filter: grayscale(1);
  -ms-filter: grayscale(1);
  -webkit-filter: grayscale(1);
  -moz-filter: grayscale(1);
  -o-filter: grayscale(1);
}

.icon-marker {
  cursor: pointer;
  width: 30px;
  height: 30px;
  position: relative;
  transform: translate(-50%, -50%);
  transition: all 0.2s;
}

.masonry .item {
  width: calc(25% - 7.5px);
  line-height: 0;
  margin-bottom: 10px;
}
.masonry .item img {
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
}
.masonry .item video {
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
}
.masonry .item .overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  visibility: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.1s;
  border-radius: 10px;
  overflow: hidden;
}
.masonry .item .overlay img {
  width: 30px;
  height: 30px;
}
.masonry .item:hover .overlay {
  visibility: visible;
  background-color: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}
.masonry .item:hover .overlay svg {
  visibility: visible;
}
@media screen and (max-width: 1439px) {
  .masonry .item {
    width: calc(33.3333333333% - 6.6666666667px);
  }
}
@media screen and (max-width: 991px) {
  .masonry .item {
    width: calc(50% - 5px);
  }
}
@media screen and (max-width: 767px) {
  .masonry .item {
    width: 100%;
  }
}

.slider-with-dots {
  position: relative;
  overflow: hidden;
}
.slider-with-dots .slider-wrapper {
  display: flex;
  flex-wrap: nowrap;
  position: relative;
}
.slider-with-dots .slider-wrapper .swiper-slide {
  height: auto;
}
.slider-with-dots .slider-dots {
  display: flex;
  justify-content: center;
  column-gap: 5px;
  margin-top: 20px;
}
.slider-with-dots .slider-dots i,
.slider-with-dots .slider-dots .swiper-pagination-bullet {
  width: 20px;
  height: 6px;
  background-color: rgb(44, 44, 44);
  border-radius: 3px;
  transition: all 0.3s;
  opacity: 0.2;
  cursor: pointer;
  margin: 0;
}
.slider-with-dots .slider-dots i.active,
.slider-with-dots .slider-dots i.swiper-pagination-bullet-active,
.slider-with-dots .slider-dots .swiper-pagination-bullet.active,
.slider-with-dots
  .slider-dots
  .swiper-pagination-bullet.swiper-pagination-bullet-active {
  width: 50px;
  opacity: 1;
}

.swiper-button-disabled {
  opacity: 0.5;
}

.project-item {
  line-height: 0;
  border-radius: 30px;
  overflow: hidden;
  position: relative;
}
.project-item img {
  width: 100%;
  height: auto;
}
.project-item .shadow {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: linear-gradient(
    11.88deg,
    #000000 -5.13%,
    rgba(0, 0, 0, 0) 62.25%
  );
  z-index: 1;
}
.project-item .title {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  padding: 40px;
  z-index: 2;
  font-family: "Forum", serif;
  font-size: 30px;
  line-height: 1.1;
  display: flex;
  align-items: end;
  color: white;
}

section.section-basket .section-container {
  padding: 60px 20px 0;
}
section.section-basket .section-container .summary {
  width: 380px;
  padding: 40px;
  flex-shrink: 0;
  background-color: rgb(243, 243, 243);
  border-radius: 30px;
  align-self: start;
}
section.section-basket .section-container .summary .info {
  list-style: none;
  margin: 0 0 20px;
  padding: 0 0 20px;
  display: flex;
  flex-direction: column;
  width: 100%;
  row-gap: 7px;
  border-bottom: 1px solid rgb(229, 229, 229);
}
section.section-basket .section-container .summary .info li {
  padding: 0;
  margin: 0;
  display: flex;
  column-gap: 20px;
}
section.section-basket .section-container .summary .info li span {
  color: rgb(135, 135, 135);
  flex-grow: 1;
}
section.section-basket .section-container .summary .info li strong {
  flex-shrink: 0;
  width: 100px;
  font-weight: 400;
  text-align: right;
}
section.section-basket .section-container .summary .info li strong.discount {
  color: rgb(220, 67, 85);
}
section.section-basket .section-container .summary .total {
  display: flex;
  column-gap: 20px;
  font-size: 20px;
  align-items: center;
  margin: 0 0 20px;
}
section.section-basket .section-container .summary .total span {
  flex-grow: 1;
  font-weight: 500;
}
section.section-basket .section-container .summary .total strong {
  flex-shrink: 0;
  width: 50%;
  font-weight: 400;
  text-align: right;
  font-size: 24px;
}
section.section-basket .section-container .summary .total strong.discount {
  color: rgb(220, 67, 85);
}
section.section-basket .section-container .summary .btn {
  width: 100%;
  justify-content: center;
  background-color: var(--primary-color);
  color: white;
}
@media screen and (max-width: 1199px) {
  section.section-basket .section-container .summary {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  section.section-basket .section-container .summary {
    padding: 20px;
  }
  section.section-basket .section-container .summary .btn {
    padding: 0;
  }
}
section.section-basket .section-container .products-list {
  display: flex;
  column-gap: 10px;
}
section.section-basket .section-container .products-list .items {
  flex-grow: 1;
  background-color: rgb(243, 243, 243);
  border-radius: 30px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  row-gap: 30px;
}
section.section-basket .section-container .products-list .items .row {
  display: flex;
  column-gap: 30px;
  align-items: center;
  width: 100%;
}
section.section-basket
  .section-container
  .products-list
  .items
  .row
  .column.image {
  line-height: 0;
  width: 120px;
  flex-shrink: 0;
  flex-grow: 0;
}
section.section-basket
  .section-container
  .products-list
  .items
  .row
  .column.image
  img {
  width: 100%;
  border-radius: 20px;
}
section.section-basket
  .section-container
  .products-list
  .items
  .row
  .column.name {
  flex-grow: 1;
  font-size: 18px;
}
section.section-basket
  .section-container
  .products-list
  .items
  .row
  .column.count {
  width: 120px;
  flex-shrink: 0;
  flex-grow: 0;
}
section.section-basket
  .section-container
  .products-list
  .items
  .row
  .column.count.center {
  text-align: center;
}
section.section-basket
  .section-container
  .products-list
  .items
  .row
  .column.price {
  width: 120px;
  flex-shrink: 0;
  flex-grow: 0;
  font-size: 20px;
  text-align: right;
  display: flex;
  flex-direction: column;
  row-gap: 0;
}
section.section-basket
  .section-container
  .products-list
  .items
  .row
  .column.price
  span {
  font-weight: 600;
}
section.section-basket
  .section-container
  .products-list
  .items
  .row
  .column.price
  i {
  font-style: normal;
  color: rgb(168, 168, 168);
  font-size: 18px;
  text-decoration: line-through;
}
section.section-basket
  .section-container
  .products-list
  .items
  .row
  .column.remove {
  flex-shrink: 0;
  line-height: 0;
}
section.section-basket
  .section-container
  .products-list
  .items
  .row
  .column.remove
  a {
  display: block;
  padding: 10px;
}
section.section-basket
  .section-container
  .products-list
  .items
  .row
  .column.remove
  a:hover
  svg
  path {
  fill: var(--primary-color);
}
section.section-basket .section-container .products-list .items .row.set {
  flex-wrap: wrap;
}
section.section-basket
  .section-container
  .products-list
  .items
  .row.set
  .set-items {
  width: 100%;
  display: flex;
  flex-direction: column;
  row-gap: 30px;
  padding-top: 40px;
  padding-left: 20px;
}
section.section-basket .section-container .products-list .items .separator {
  height: 1px;
  background-color: rgb(229, 229, 229);
}
@media screen and (max-width: 1199px) {
  section.section-basket .section-container .products-list {
    flex-direction: column;
    row-gap: 30px;
  }
  section.section-basket .section-container .products-list .items {
    width: 100%;
  }
}
@media screen and (max-width: 991px) {
  section.section-basket .section-container .products-list .items .row {
    display: grid;
    grid-template-columns: 120px 120px auto;
    column-gap: 40px;
    row-gap: 20px;
    grid-template-areas: "image name name" "image count price" "image remove remove";
  }
  section.section-basket
    .section-container
    .products-list
    .items
    .row
    .column.image {
    align-self: start;
    grid-area: image;
  }
  section.section-basket
    .section-container
    .products-list
    .items
    .row
    .column.name {
    grid-area: name;
  }
  section.section-basket
    .section-container
    .products-list
    .items
    .row
    .column.price {
    grid-area: price;
    text-align: left;
    width: auto;
  }
  section.section-basket
    .section-container
    .products-list
    .items
    .row
    .column.remove {
    grid-area: remove;
  }
  section.section-basket
    .section-container
    .products-list
    .items
    .row
    .column.remove
    a {
    padding: 0 30px;
    height: var(--button-height);
    color: white;
    background-color: var(--primary-color);
    opacity: 0.4;
    border-radius: var(--btn-border-radius);
    display: inline-flex;
    width: auto;
    min-width: 240px;
    text-decoration: none;
    line-height: 1.4;
    align-items: center;
    border: none;
    cursor: pointer;
    justify-content: center;
    transition: 0.2s all;
  }
  section.section-basket
    .section-container
    .products-list
    .items
    .row
    .column.remove
    a
    svg
    path {
    fill: white;
  }
  section.section-basket
    .section-container
    .products-list
    .items
    .row
    .column.remove
    a:hover {
    opacity: 1;
  }
  section.section-basket
    .section-container
    .products-list
    .items
    .row
    .column.remove
    a:hover
    svg
    path {
    fill: white;
  }
}
@media screen and (max-width: 767px) {
  section.section-basket .section-container .products-list .items {
    padding: 20px;
  }
  section.section-basket
    .section-container
    .products-list
    .items
    .row
    .column.price {
    flex-direction: row;
    align-items: center;
    column-gap: 10px;
  }
}
@media screen and (max-width: 600px) {
  section.section-basket .section-container .products-list .items .row {
    grid-template-areas: "image" "name" "count" "price" "remove";
    grid-template-columns: 1fr;
  }
  section.section-basket
    .section-container
    .products-list
    .items
    .row
    .column.remove
    a {
    width: 100%;
    padding: 0 48px;
    min-width: 0;
  }
}
section.section-basket .section-container .user-data {
  display: flex;
  column-gap: 10px;
}
section.section-basket .section-container .user-data .order-information {
  flex-grow: 1;
  max-width: 640px;
  display: flex;
  flex-direction: column;
  row-gap: 30px;
}
section.section-basket .section-container .user-data .order-information .block {
  background-color: rgb(243, 243, 243);
  border-radius: 30px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  row-gap: 30px;
}
section.section-basket
  .section-container
  .user-data
  .order-information
  .block
  .header {
  font-family: "Forum", serif;
  font-size: 40px;
  font-weight: 400;
  line-height: 1.1;
  margin: 0;
}
section.section-basket
  .section-container
  .user-data
  .order-information
  .block
  form {
  display: flex;
  flex-direction: column;
  row-gap: 10px;
}
section.section-basket
  .section-container
  .user-data
  .order-information
  .block
  form
  .form-row {
  display: flex;
  flex-wrap: wrap;
  column-gap: 10px;
  row-gap: 10px;
}
section.section-basket
  .section-container
  .user-data
  .order-information
  .block
  form
  .form-row
  .column {
  width: calc(50% - 5px);
}
section.section-basket
  .section-container
  .user-data
  .order-information
  .block
  form
  .form-row
  .alert {
  width: 100%;
  color: rgb(220, 67, 85);
  font-size: 14px;
}
@media screen and (max-width: 1199px) {
  section.section-basket .section-container .user-data {
    flex-direction: column;
    row-gap: 30px;
  }
  section.section-basket .section-container .user-data .order-information {
    width: 100%;
    max-width: 100%;
  }
}
@media screen and (max-width: 767px) {
  section.section-basket
    .section-container
    .user-data
    .order-information
    .block {
    padding: 20px;
  }
  section.section-basket
    .section-container
    .user-data
    .order-information
    .block
    .header {
    font-size: 28px;
  }
  section.section-basket
    .section-container
    .user-data
    .order-information
    .block
    form
    .form-row {
    flex-wrap: wrap;
    row-gap: 10px;
  }
  section.section-basket
    .section-container
    .user-data
    .order-information
    .block
    form
    .form-row
    .column {
    width: 100%;
  }
}
section.section-basket .section-container .order-successful {
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 40px;
  max-width: 550px;
  text-align: center;
  margin: 0 auto;
  padding: 80px 0 0;
}
section.section-basket .section-container .order-successful .header {
  font-size: 45px;
  font-family: "Forum", serif;
  font-weight: 400;
  line-height: 1.1;
  margin: 0;
}
section.section-basket .section-container .order-successful p {
  margin: 0;
  font-size: 20px;
}
section.section-basket .section-container .order-successful .btn {
  background-color: var(--primary-color);
  color: white;
}
@media screen and (max-width: 767px) {
  section.section-basket .section-container .order-successful {
    padding: 0;
  }
  section.section-basket .section-container .order-successful .header {
    font-size: 36px;
  }
}
@media screen and (max-width: 767px) {
  section.section-basket .section-container {
    padding: 40px 10px 0;
  }
}

.amount {
  width: 100%;
  display: flex;
  align-items: center;
  background-color: white;
  border-radius: 10px;
  font-size: 18px;
}
.amount .plus,
.amount .minus {
  flex-shrink: 0;
  flex-grow: 0;
  height: 40px;
  width: 40px;
  display: flex;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  color: rgb(135, 135, 135);
}
.amount input {
  border: none;
  line-height: 40px;
  width: 100%;
  text-align: center;
  outline: none;
  font-family: "Gilroy";
}

.blured {
  filter: blur(6px);
}

section.section-service .section-container {
  padding: 80px 20px 0;
}
section.section-service .section-container .tab .header {
  font-size: 45px;
  font-family: "Forum", serif;
  line-height: 1.1;
  font-weight: 400;
  margin-bottom: 30px;
  padding-left: 40px;
  max-width: 850px;
}
@media screen and (max-width: 767px) {
  section.section-service .section-container .tab .header {
    padding-left: 0;
    font-size: 36px;
  }
}
section.section-service .section-container .tab .points + .header {
  margin-top: 80px;
}
section.section-service .section-container .tab .points {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  column-gap: 10px;
  row-gap: 10px;
  flex-wrap: wrap;
}
section.section-service .section-container .tab .points li {
  margin: 0;
  padding: 40px 30px;
  background-color: rgb(243, 243, 243);
  border-radius: 30px;
}
section.section-service .section-container .tab .points li .icon {
  background-color: var(--primary-color);
  border-radius: 50%;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  margin: 0 0 20px;
}
section.section-service .section-container .tab .points li .title {
  font-size: 30px;
  font-family: "Forum", serif;
  line-height: 1.1;
  font-weight: 400;
  margin-bottom: 10px;
}
section.section-service .section-container .tab .points li p {
  margin: 10px 0 0;
}
section.section-service .section-container .tab .points.five li {
  width: calc(20% - 8px);
}
@media screen and (max-width: 1439px) {
  section.section-service .section-container .tab .points.five li {
    width: calc(33.3333333333% - 6.6666666667px);
  }
  section.section-service .section-container .tab .points.five li:nth-child(1),
  section.section-service .section-container .tab .points.five li:nth-child(2) {
    width: calc(50% - 5px);
  }
}
@media screen and (max-width: 991px) {
  section.section-service .section-container .tab .points.five li {
    width: calc(50% - 5px);
  }
  section.section-service .section-container .tab .points.five li:nth-child(1) {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  section.section-service .section-container .tab .points.five li {
    width: 100%;
  }
  section.section-service .section-container .tab .points.five li:nth-child(2) {
    width: 100%;
  }
}
section.section-service .section-container .tab .points.three li {
  width: calc(33.3333333333% - 6.6666666667px);
}
@media screen and (max-width: 991px) {
  section.section-service .section-container .tab .points.three li {
    width: calc(50% - 5px);
  }
  section.section-service
    .section-container
    .tab
    .points.three
    li:nth-child(3) {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  section.section-service .section-container .tab .points.three li {
    width: 100%;
  }
  section.section-service
    .section-container
    .tab
    .points.three
    li:nth-child(3) {
    width: 100%;
  }
}
section.section-service .section-container .tab .points.many li {
  width: calc(33.3333333333% - 6.6666666667px);
}
@media screen and (max-width: 991px) {
  section.section-service .section-container .tab .points.many li {
    width: calc(50% - 5px);
  }
}
@media screen and (max-width: 767px) {
  section.section-service .section-container .tab .points.many li {
    width: 100%;
  }
}
section.section-service .section-container .tab .points.four li {
  width: calc(25% - 7.5px);
}
@media screen and (max-width: 1199px) {
  section.section-service .section-container .tab .points.four li {
    width: calc(50% - 5px);
  }
}
@media screen and (max-width: 767px) {
  section.section-service .section-container .tab .points.four li {
    width: 100%;
  }
}
section.section-service .section-container .tab .text {
  max-width: 850px;
  padding-left: 40px;
}
section.section-service .section-container .tab .text ol {
  margin: 1em 0 0 0;
}
section.section-service .section-container .tab .text ol li {
  margin: 1em 0 0;
}
section.section-service .section-container .tab .text .buttons {
  margin: 30px 0 0;
  display: inline-flex;
  column-gap: 10px;
  row-gap: 10px;
  flex-wrap: wrap;
}
@media screen and (max-width: 767px) {
  section.section-service .section-container .tab .text {
    padding-left: 0;
  }
}
section.section-service .section-container .tab .text + .points {
  margin-top: 80px;
}
section.section-service .section-container .tab .text + .header {
  margin-top: 30px;
}
section.section-service .section-container .tab .price-table {
  padding-left: 40px;
  margin-bottom: 60px;
  max-width: 850px;
}
section.section-service .section-container .tab .price-table .title {
  font-weight: 500;
  font-family: "Forum", serif;
  line-height: 1.1;
  font-size: 28px;
}
section.section-service .section-container .tab .price-table ul + .title {
  margin-top: 40px;
}
section.section-service .section-container .tab .price-table ul {
  list-style: none;
  margin: 30px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  row-gap: 10px;
}
section.section-service .section-container .tab .price-table ul li {
  display: flex;
  align-items: center;
  padding: 15px 30px;
  column-gap: 30px;
  justify-content: space-between;
}
section.section-service
  .section-container
  .tab
  .price-table
  ul
  li:nth-child(2n + 1) {
  background-color: rgb(243, 243, 243);
}
section.section-service .section-container .tab .price-table ul li strong {
  font-weight: 400;
  text-align: right;
}
section.section-service .section-container .tab .price-table .buttons {
  text-align: center;
  margin-top: 30px;
}
section.section-service .section-container .tab .price-table .buttons .btn {
  background-color: white;
  color: var(--primary-color);
  border: 1px solid var(--primary-color);
  padding: 0 30px;
}
@media screen and (max-width: 767px) {
  section.section-service .section-container .tab .price-table {
    padding-left: 0;
    margin-bottom: 40px;
  }
}

.modal-wrapper {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: calc(var(--vh, 1vh) * 100);
  overflow: hidden;
  z-index: 1001;
  transition: 0.2s all;
}
.modal-wrapper.blur {
  filter: blur(6px);
}
.modal-wrapper .close-modal {
  position: absolute;
  right: 40px;
  top: 40px;
  z-index: 1002;
  line-height: 0;
}
.modal-wrapper .modal {
  position: absolute;
  width: 600px;
  max-height: calc(var(--vh, 1vh) * 90);
  background-color: white;
  border-radius: 30px;
  padding: 30px 40px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
  -ms-overflow-style: none;
  scrollbar-width: none;
  scroll-snap-type: x mandatory;
}
.modal-wrapper .modal::-webkit-scrollbar {
  display: none;
}
.modal-wrapper .modal .header {
  font-size: 45px;
  font-family: "Forum", serif;
  line-height: 1.1;
  font-weight: 400;
  text-align: center;
  margin: 0 0 30px;
}
.modal-wrapper .modal p {
  margin: 0 0 20px;
  text-align: center;
}
.modal-wrapper .modal form {
  display: flex;
  flex-direction: column;
  row-gap: 10px;
}
.modal-wrapper .modal form .form-row {
  display: flex;
  flex-wrap: wrap;
  column-gap: 10px;
  row-gap: 10px;
}
.modal-wrapper .modal form .form-row .column {
  width: calc(50% - 5px);
}
.modal-wrapper .modal form .form-row .alert {
  width: 100%;
  color: rgb(220, 67, 85);
  font-size: 14px;
}
.modal-wrapper .modal form .buttons {
  display: flex;
  column-gap: 30px;
  align-items: center;
}
.modal-wrapper .modal form .buttons input[type="submit"] {
  border: none;
  background-color: var(--primary-color);
  color: white;
  padding: 0 58px;
}
.modal-wrapper .modal form .buttons p {
  color: rgb(162, 162, 162);
  font-size: 14px;
  margin: 0;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .modal-wrapper .modal form .buttons {
    flex-direction: column-reverse;
    row-gap: 20px;
  }
}
.modal-wrapper .modal .success {
  padding: 30px;
  display: flex;
  flex-direction: column;
  row-gap: 20px;
  justify-content: center;
  align-items: center;
}
.modal-wrapper .modal .success > * {
  margin: 0;
}
.modal-wrapper .modal .success .btn {
  position: relative;
  top: auto;
  right: auto;
}
@media screen and (max-width: 767px) {
  .modal-wrapper {
    background-color: white;
    padding: 20px 20px 30px;
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: none;
    scrollbar-width: none;
    scroll-snap-type: x mandatory;
  }
  .modal-wrapper::-webkit-scrollbar {
    display: none;
  }
  .modal-wrapper .close-modal {
    top: auto;
    right: auto;
    position: relative;
    left: calc(100% - 32px);
  }
  .modal-wrapper .close-modal svg path {
    fill: var(--primary-color);
    stroke: var(--primary-color);
  }
  .modal-wrapper .modal {
    position: relative;
    width: 100%;
    max-height: none;
    border-radius: 0;
    padding: 10px 0 0;
    overflow: visible;
    height: auto;
    left: auto;
    top: auto;
    transform: none;
  }
  .modal-wrapper .modal .header {
    font-size: 36px;
    margin-bottom: 20px;
  }
}

html.modal-opened {
  overflow-y: hidden;
  overflow-x: hidden;
}
html.modal-opened:after {
  content: "";
  display: block;
  z-index: 1000;
  width: 100%;
  height: calc(var(--vh, 1vh) * 100);
  position: fixed;
  left: 0;
  top: 0;
  background-color: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.promos-slider {
  padding-top: 175px;
  display: flex;
  flex-wrap: nowrap;
  position: relative;
  overflow-x: scroll;
  overflow-y: visible;
  -webkit-overflow-scrolling: touch;
  -ms-overflow-style: none;
  scrollbar-width: none;
  scroll-snap-type: x mandatory;
}
.promos-slider::-webkit-scrollbar {
  display: none;
}
.promos-slider .promos-item {
  width: 100%;
  height: 600px;
  flex-shrink: 0;
  position: relative;
  line-height: 0;
}
.promos-slider .promos-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: var(--section-border-radius);
}
.promos-slider .promos-item .promos-item-content {
  padding: 0;
  border-radius: 30px;
  z-index: 2;
  position: absolute;
  height: auto;
  background-color: rgb(234, 234, 234);
  top: 0;
  left: 50%;
  width: 80%;
  max-width: 1200px;
  transform: translate(-50%, -175px);
  display: flex;
  align-items: center;
  column-gap: 60px;
  justify-content: center;
}
.promos-slider .promos-item .promos-item-content .promos-item-img {
  line-height: 0;
  padding-left: 60px;
}
.promos-slider .promos-item .promos-item-content .promos-item-img img {
  max-height: 100%;
  max-width: 100%;
  border-radius: 20px;
}
.promos-slider .promos-item .promos-item-content .promos-item-text {
  line-height: 1.4;
  max-width: 60%;
  padding: 40px 120px 40px 0;
}
.promos-slider
  .promos-item
  .promos-item-content
  .promos-item-text
  .promos-item-header {
  font-family: "Forum", serif;
  font-size: 40px;
  line-height: 1.1;
  margin: 0 0 20px;
}
.promos-slider
  .promos-item
  .promos-item-content
  .promos-item-text
  .promos-item-notice {
  margin: 0 0 0;
  font-size: 24px;
}
.promos-slider .promos-item .promos-item-content .promos-item-text a {
  color: var(--secondary-color);
}
.promos-slider .promos-item .promos-item-content .promos-item-text .btn {
  color: white;
}
.promos-slider .promos-item .promos-item-content .arr-previous {
  position: absolute;
  left: 30px;
  top: 50%;
  transform: translateY(-50%);
  text-decoration: none;
  line-height: 0;
}
.promos-slider .promos-item .promos-item-content .arr-next {
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  text-decoration: none;
  line-height: 0;
}
.promos-slider.only-text {
  margin-top: 40px;
  padding-top: 180px;
}
.promos-slider.only-text .promos-item .promos-item-text {
  max-width: 100%;
  padding: 40px;
}
@media screen and (min-width: 1690px) {
  .promos-slider .promos-item img {
    border-radius: var(--section-border-radius);
  }
}
@media screen and (max-width: 1199px) {
  .promos-slider .promos-item .promos-item-content {
    justify-content: center;
  }
  .promos-slider .promos-item .promos-item-content .promos-item-img {
    display: none;
  }
  .promos-slider .promos-item .promos-item-content .promos-item-text {
    max-width: 80%;
    padding-right: 0;
  }
}
@media screen and (max-width: 991px) {
  .promos-slider .promos-item {
    height: 450px;
  }
  .promos-slider .promos-item .promos-item-content {
    transform: translate(-50%, -150px);
  }
  .promos-slider .promos-item .promos-item-content .promos-item-text {
    max-width: 80%;
  }
  .promos-slider
    .promos-item
    .promos-item-content
    .promos-item-text
    .promos-item-header {
    font-size: 32px;
  }
  .promos-slider
    .promos-item
    .promos-item-content
    .promos-item-text
    .promos-item-notice {
    font-size: 20px;
  }
}
@media screen and (max-width: 767px) {
  .promos-slider {
    padding-top: 150px;
  }
  .promos-slider .promos-item {
    height: 300px;
  }
  .promos-slider .promos-item .promos-item-content {
    width: calc(100% - 20px);
    padding: 40px 30px 30px;
  }
  .promos-slider .promos-item .promos-item-content .arr-previous {
    position: relative;
    top: auto;
    transform: none;
    left: auto;
  }
  .promos-slider .promos-item .promos-item-content .arr-next {
    position: relative;
    top: auto;
    transform: none;
    right: auto;
  }
  .promos-slider .promos-item .promos-item-content .promos-item-buttons {
    display: flex;
    column-gap: 10px;
  }
  .promos-slider .promos-item .promos-item-content .promos-item-buttons div {
    flex-grow: 1;
    text-align: center;
  }
  .promos-slider .promos-item .promos-item-content .promos-item-text {
    max-width: 100%;
    padding: 0;
  }
  .promos-slider
    .promos-item
    .promos-item-content
    .promos-item-text
    .promos-item-header {
    font-size: 24px;
  }
  .promos-slider
    .promos-item
    .promos-item-content
    .promos-item-text
    .promos-item-notice {
    font-size: 16px;
  }
}


