:root {
  --background: #ffffff;
  --light-grey-background: #fbfbfb;
  --onBackground: #212121;
  --primary: #fe0000;
  --onPrimary: #ffffff;
  --secondary: #c3a471;
  --onSecondary: #ffffff;
  --success: #28a745;
  --info: #17a2b8;
  --warning: #ffc107;
  --danger: #dc3545;
  --light: #f8f9fa;
  --dark: #343a40;
  --white: #fff;
  --black: #000;
  --black-secondary: #282828;
  --yellow: #fed700;
  --light-grey: #fafafa;
  --light-grey-secondary: #c4c6c8;
  --grey: #727271;
  --dark-grey: #333333;
  --breakpoint-xs: 0;
  --breakpoint-sm: 576px;
  --breakpoint-md: 768px;
  --breakpoint-lg: 992px;
  --breakpoint-xl: 1200px;
}

@font-face {
  font-family: "MuseoSansCyrl";
  src: url("../ttf/museosanscyrl-100.ttf") format("truetype");
  font-weight: 100;
  font-style: normal;
}

@font-face {
  font-family: "MuseoSansCyrl";
  src: url("../ttf/museosanscyrl-100italic.ttf") format("truetype");
  font-weight: 100;
  font-style: italic;
}

@font-face {
  font-family: "MuseoSansCyrl";
  src: url("../ttf/museosanscyrl-300.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: "MuseoSansCyrl";
  src: url("../ttf/museosanscyrl-300italic.ttf") format("truetype");
  font-weight: 300;
  font-style: italic;
}

@font-face {
  font-family: "MuseoSansCyrl";
  src: url("../ttf/museosanscyrl-500.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: "MuseoSansCyrl";
  src: url("../ttf/museosanscyrl-500italic.ttf") format("truetype");
  font-weight: 500;
  font-style: italic;
}

@font-face {
  font-family: "MuseoSansCyrl";
  src: url("../ttf/museosanscyrl-700.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: "MuseoSansCyrl";
  src: url("../ttf/museosanscyrl-700italic.ttf") format("truetype");
  font-weight: 700;
  font-style: italic;
}

@font-face {
  font-family: "MuseoSansCyrl";
  src: url("../ttf/museosanscyrl-900.ttf") format("truetype");
  font-weight: 900;
  font-style: normal;
}

@font-face {
  font-family: "MuseoSansCyrl";
  src: url("../ttf/museosanscyrl-900italic.ttf") format("truetype");
  font-weight: 900;
  font-style: italic;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.tablebodytext {
  display: none;
}

.content-page {
  max-width: 1720px;
  margin: 0 auto;
  box-sizing: border-box;
}

.w-90 {
  width: 90%;
}

body {
  min-width: 320px;
  font-family: "MuseoSansCyrl", serif;
  font-style: normal;
  margin: 0 auto;
}

body.opened-menu {
  overflow: hidden;
}

a,
a:hover {
  text-decoration: none;
  color: var(--white);
}

.link,
.link:hover {
  color: rgb(51, 51, 51);
  text-decoration: none;
  letter-spacing: 1.5px;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}

h1,
h2,
h3,
h4,
h5,
p {
  margin: 0;
  padding: 0;
}

img {
  object-fit: cover;
}

.block-space {
  margin: 100px 0;
}

.block-space:first-child {
  margin-top: 0;
  margin-bottom: 100px;
}

/*TODO*/
/*.swiper {*/
/*  width: 100%;*/
/*  height: auto;*/
/*}*/

/*.swiper-slide {*/
/*  height: auto;*/
/*  position: relative;*/
/*}*/

/*.swiper-slide picture {*/
/*  display: block;*/
/*  width: 100%;*/
/*  height: auto;*/
/*}*/

.swiper-wrapper {
  flex-wrap: nowrap;
  width: 100%;
  max-height: 100%;
  overflow: hidden;
}


.swiper .swiper-button-prev,
.swiper .swiper-button-next {
  background-repeat: no-repeat;
  background-position: center;
  width: 32px;
  height: 32px;
}

.swiper .swiper-button-prev {
  background-image: url("../svg/arrow-left.svg");
  left: 2%;
}

.swiper .swiper-button-next {
  background-image: url("../svg/arrow-right.svg");
  right: 2%;
}

.swiper .swiper-button-next::after,
.swiper .swiper-button-prev::after {
  content: "";
}

.main-banner {
  width: 100%;
  /*height: 100%;*/
  object-fit: cover;
  display: block;
}

.banner {
  position: relative;
}

.banner-content {
  position: absolute;
  top: 20%; /* Позиционирование контента */
  left: 5%;
  z-index: 1;
}

.banner-title {
  font-weight: 700;
  font-size: 2rem; /* Более адаптивный размер текста */
  line-height: 1.2;
  color: var(--white);
}

.banner-title-thin {
  margin-top: 10px;
  font-weight: 300;
  font-size: 1.5rem;
}

@media (max-width: 640px) {
  .banner-title {
    font-size: 1.5rem; /* Уменьшаем текст на мобильных устройствах */
  }

  .banner-title-thin {
    font-size: 1.2rem;
  }
}

.container-width {
  max-width: 1720px;
  margin: 0 auto;
  box-sizing: border-box;
}

.top-bar {
  display: flex;
  justify-content: space-between;
  padding: 35px 0 30px;
  z-index: 1000;
  background-color: #fff;
}

.top-bar__column {
  display: flex;
  flex: 1;
  align-items: center;
}

.top-bar__column_right {
  justify-content: flex-end;
  gap: 50px;
}

.contacts {
  display: flex;
  flex-direction: column;
}

a.phonenumber {
  font-size: 16px;
  line-height: 20px;
  color: var(--dark-grey);
  text-decoration: none;
}

.worktime {
  padding-top: 4px;
  font-size: 9px;
  line-height: 11px;
  color: var(--secondary);
}

.country {
  padding-left: 40px;
  cursor: pointer;
}

.country__active,
.city__active {
  font-size: 14px;
  line-height: 21px;
  color: var(--secondary);
}

.country__active {
  /*background: url(/local/templates/marcandre2023/assets/css/../images/icons/arr-down.svg) left center no-repeat;*/
  background-size: 12px;
}

.country__active.active {
  /*background: url(/local/templates/marcandre2023/assets/css/../images/icons/arr-up.svg) left center no-repeat;*/
  background-size: 12px;
}

.city {
  padding-left: 15px;
  cursor: pointer;
}

.city__active {
  /*background: url(/local/templates/marcandre2023/assets/css/../images/icons/location.svg) left center no-repeat;*/
  padding-left: 20px;
}

.country__list {
  display: none;
  list-style: none;
  background: #ffffff;
  padding: 10px 20px;
  position: absolute;
  -webkit-box-shadow: 0 0.461538em 0.923077em rgb(0 0 0 / 18%);
  box-shadow: 0 0.461538em 0.923077em rgb(0 0 0 / 18%);
  margin: 5px 0;
  z-index: 10;
}

.country__list.active {
  display: block;
}

.country__link {
  font-size: 14px;
  line-height: 20px;
  color: var(--dark-grey);
  text-decoration: none;
  display: flex;
  align-items: center;
  margin: 12px 0;
}

.country__link:hover {
  color: var(--secondary);
}

.country__icon {
  min-width: 16px;
  min-height: 16px;
  margin-right: 8px;
}

.actions {
  justify-content: flex-end;
}

.actions__box {
  height: 36px;
  width: 36px;
  background-repeat: no-repeat;
  background-position: center center;
  margin-left: 20px;
  position: relative;
  cursor: pointer;
}

.search {
  /*background-image: url(/local/templates/marcandre2023/assets/css/../images/icons/search.svg);*/
}

.callback {
  /*background-image: url(/local/templates/marcandre2023/assets/css/../images/icons/call.svg);*/
}

.whishlist {
  /*background-image: url(/local/templates/marcandre2023/assets/css/../images/icons/heart.svg);*/
}

.user {
  /*background-image: url(/local/templates/marcandre2023/assets/css/../images/icons/user.svg);*/
}

.basket {
  /*background-image: url(/local/templates/marcandre2023/assets/css/../images/icons/basket.svg);*/
}

.count-in {
  font-weight: 500;
  color: var(--secondary);
  border: 1px var(--secondary) solid;
  background: #fff;
  border-radius: 100px;
  height: 18px;
  width: 18px;
  display: block;
  text-align: center;
  line-height: 18px;
  font-size: 8px;
  right: 0;
  position: absolute;
  bottom: 0;
}

.search--form {
  display: none;
}

.search.active {
  display: none;
}

.search.active + .search--form {
  display: block;
  width: 247px;
  position: absolute;
  z-index: 100;
}

.search.active + .search--form .hidden-form {
  opacity: 1;
  width: 100%;
}

.search-form__text,
.search-form__text:focus {
  outline: 0;
  border: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  width: 100%;
  color: #1e1e1e;
  box-sizing: border-box;
  padding: 12px 10px;
}

.search.active + .search--form .search-form__text,
.search.active + .search--form .search-form__text:focus {
  padding: 9px 10px;
  border: 1px solid var(--secondary);
  border-radius: 6px;
  width: 100%;
}

.search-form__btn {
  position: absolute;
  width: 30px;
  top: 0;
  right: 0;
  background: transparent;
  border: none;
  color: transparent;
  z-index: 2;
}

.hidden-form i {
  position: absolute;
  top: 8px;
  right: 26px;
  z-index: 1;
  /*background: url(/local/templates/marcandre2023/assets/css/../images/icons/search.svg) center center no-repeat;*/
  height: 24px;
  width: 24px;
  background-size: contain;
}

.search.active + .search--form .hidden-form i {
  right: 10px;
  z-index: 10;
  top: 6px;
}

.search-form__text {
  color: #000;
  font-weight: 300;
}

.search-form__text::-webkit-input-placeholder {
  color: #1e1e1e;
  font-weight: 300;
}

.search-form__text::-moz-placeholder {
  color: #1e1e1e;
  font-weight: 300;
}

.search-form__text:-moz-placeholder {
  color: #1e1e1e;
  font-weight: 300;
}

.search-form__text:-ms-input-placeholder {
  color: #1e1e1e;
  font-weight: 300;
}

.actions .hidden-form {
  position: absolute;
  opacity: 0;
}

.menu {
  display: flex;
  justify-content: space-between;
  padding-left: 0;
  margin: 0;
}

.sub-menu {
  margin-top: 10px;
  display: none;
}

.sub-menu.active {
  position: absolute;
  z-index: 100;
  background: #fff;
  margin-top: 0;
  padding: 12px 24px;
}

.sub-menu.active li.menu__item:last-child {
  background: #fff;
  padding: 0;
}

.sub-menu.active li.menu__item:last-child a {
  color: #0d0d0d;
}

.sub-menu.active li.menu__item:last-child a:hover {
  color: var(--secondary);
}

.sub-menu.active {
  display: block;
}

.menu__items {
  display: flex;
  justify-content: space-between;
  padding-left: 0;
  margin: 0;
  gap: 60px;
}

.menu__item {
  list-style: none;
  padding: 0;
  border-radius: 6px;
}

.buy_button {
  cursor: pointer;
}

.menu__item.outlet {
  background: #ff0000;
  padding: 0 27px;
}

.menu__item:nth-child(8) .menu__link {
  color: #ff0000;
}

.menu__link {
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  line-height: 39px;
  color: #0d0d0d;
  transition: all 0.3s ease-out 0s;
  text-transform: uppercase;
  width: 100%;
  display: block;
  cursor: pointer;
}

.menu__link.active {
  color: var(--secondary);
}

.menu__item--red .menu__link {
  color: #ff0000;
}

.menu__link:hover {
  color: var(--secondary);
}

.menu__item.outlet .menu__link {
  color: #fff;
}

.top-menu {
  position: relative;
  top: 0;
  padding: 12px 0;
  margin-bottom: 24px;
  min-width: 300px;
  width: 100%;
  background-color: #fff;
  transition: all 0.5s ease; /* Анимация плавного перехода */
}

.top-menu.fixed {
  position: fixed;
  border-top: 2px solid rgba(0, 0, 0, 0.13);
  border-bottom: 2px solid rgba(0, 0, 0, 0.13);
  top: 0;
  left: 0;
  z-index: 9999;
  opacity: 1;
}

/* menu__dropdown */

.menu__dropdown {
  position: absolute;
  z-index: -1;
  /*top: 160px;*/
  left: 0;
  display: block;
  overflow: auto;
  width: 100%;
  height: auto;
  max-height: calc(100vh - 128px);
  margin: 0;
  padding: 20px 0 20px;
  transition-property: opacity, visibility, transform;
  transition-duration: 0.2s;
  transition-timing-function: cubic-bezier(0.16, 0.68, 0.43, 0.99);
  background: #ffffff;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-10px);
}

.megamenu {
  padding-bottom: 6.875rem;
  margin-bottom: 5rem;
  display: grid;
  gap: 90px;
}

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

.hidden-lg {
  display: none;
}

.banner {
  position: relative;
}

.collections-banner {
  overflow: hidden;
}

.banner::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background-color: var(--black);
  opacity: 0.0;
}

.text-block {
  text-align: center;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.block-text {
  margin: 0 auto 0;
  width: 100%;
  max-width: 685px;
  font-style: normal;
  font-weight: 300;
  font-size: 24px;
  line-height: 1.44;
  display: flex;
  align-items: center;
  text-align: center;
  color: var(--secondary);
}

.underline {
  margin: 0 auto;
  width: 443px;
  height: 1px;
  background: var(--secondary);
}

.page-title {
  font-weight: 250;
  font-size: 68px;
  /*line-height: 83px;*/
  line-height: 1.0 !important;
  text-transform: uppercase;
  color: var(--secondary);
}

.collection-prefix {
  font-weight: 300;
  font-size: 20px;
  line-height: 24px;
  text-transform: uppercase;
  color: var(--secondary);
  margin-top: 8px;
}

.collection-content {
  text-align: center;
  margin-bottom: 40px;
}

.collection-block-container {
  display: flex;
  justify-content: space-between;
  gap: 80px;
}

.collection-block-image {
  width: 100%;
  max-width: 704px;
  height: auto;
}

.collection-info-block-container {
  padding-right: 20px;
  width: 100%;
  max-width: 54%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.collection-info-block {
  display: flex;
  justify-content: center;
  flex-direction: column;
  gap: 45px;
}

.collection-info-title {
  font-weight: 300;
  font-size: 40px;
  display: flex;
  align-items: center;
  font-variant: small-caps;
  color: var(--secondary);
}

.collection-info-subtitle {
  font-weight: 300;
  font-size: 30px;
  display: flex;
  align-items: center;
  font-variant: small-caps;
  padding-top: 16px;
  color: var(--secondary);
}

.collection-text-block {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.collection-info-text {
  font-weight: 300;
  font-size: 18px;
  line-height: 1.44;
  color: var(--secondary);
}

a.main-button {
  margin-top: 150px;
  padding: 19px 25px;
  border: 1px solid var(--secondary);
  font-weight: 300;
  font-size: 16px;
  line-height: 24px;
  display: flex;
  align-items: center;
  text-align: center;
  color: var(--secondary);
  width: max-content;
  text-transform: uppercase;
}

.banner__item {
  position: relative;
}

.banner__item:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.25);
  z-index: 1;
}

.banner__text {
  position: absolute;
  top: 10%;
  margin: auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 6%;
  width: 100%;
  height: 100%;
  z-index: 2;
}

.banner__video {
  max-width: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.collections-banner,
.banner__item,
.banner__item:before,
.banner__video {
  min-height: inherit;
  height: 100%;
  max-height: 1089px;
}

.banner .aspect-ratio {
  max-height: inherit;
  height: auto;
}

.mobile_to_mobile {
  display: none;
  height: 100%;
}

.side-space {
  padding: 0 70px;
}

.office-space {
  padding: 0 100px;
}

.collections {
  padding: 100px 70px 40px;
  display: flex;
  justify-content: space-between;
  background-color: var(--light-grey-background);
  gap: 75px;
}

.collections-image {
  width: 100%;
  max-width: 596px;
}

.collections-img {
  width: 100%;
}

.collections-subtitle {
  font-weight: 500;
  font-size: 26px;
  line-height: 32px;
  text-align: center;
  letter-spacing: 0.14em;
  color: var(--secondary);
}

.collections-text,
.collections-text b {
  font-weight: 400;
  font-size: 20px;
  line-height: 24px;
  color: var(--black);
}

.collections-text b {
  font-weight: 600;
}

.collections-text:last-child {
  font-style: italic;
}

.cards-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(312.3px, 1fr));
  grid-column-gap: 20px;
  grid-row-gap: 30px;
  margin-bottom: 64px;
}

.cards-card {
  position: relative;
}

.cards-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.15); /* Темная подложка с прозрачностью 75% */
  z-index: 1; /* Чтобы подложка находилась поверх изображения */
}

.cards-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.card-title {
  font-weight: 400;
  font-size: 36px;
  line-height: 1.5;
  text-align: center;
  color: var(--secondary);
  margin: 0 0 16px;
}

.card-content {
  width: 100%;
  position: absolute;
  bottom: 11%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
  z-index: 100;
}

.collections-texts {
  display: flex;
  font-weight: 300;
  font-size: 18px;
  flex-direction: column;
  gap: 30px;
  margin-top: 35px;
  max-width: 943px;
}

.card-text {
  font-weight: 300;
  font-size: 40px;
  line-height: 1.44;
  text-align: center;
  text-transform: uppercase;
  color: var(--white);
}

.card-link {
  font-weight: 700;
  font-size: 24px;
  line-height: 1.44;
  text-align: center;
  text-decoration-line: underline;
  text-transform: uppercase;
  color: var(--white);
}

.collection-container {
  position: relative;
  display: flex;
  justify-content: center;
  cursor: pointer;
}

.collection-container::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  background: linear-gradient(
          0deg,
          rgba(40, 40, 40, 0.5) 0%,
          rgba(142, 142, 142, 0) 96.47%
  );
}

.catalog-item {
  width: 100%;
  max-width: 1700px;
  margin: 0 auto;
  display: flex;
  gap: 141px;
  justify-content: space-between;
}

.card__left {
  padding-left: 61px;
}

.card__right {
  padding-right: 146px;
}

.catalog-container {
  background: var(--light-grey);
  padding-top: 40px;
  padding-bottom: 40px;
}

.catalog-title {
  font-size: 40px;
  line-height: 48px;
  text-align: center;
  text-transform: uppercase;
  color: var(--black);
  margin: 24px 0 16px 0;
  position: relative;
  background: none;
}

.catalog-text {
  font-size: 18px;
  line-height: 24px;
  display: flex;
  align-items: center;
  text-align: center;
  text-transform: none;
  color: var(--black);
  max-width: 850px;
  margin: 0 auto 32px;
}

.catalog-btn {
  width: 100%;
  max-width: 559px;
  font-size: 16px;
  line-height: 22px;
  display: flex;
  text-align: center;
  letter-spacing: 0.05em;
  color: var(--white);
  background: var(--secondary);
  padding: 17px 52px;
  border-radius: 8px;
  text-decoration: none;
  justify-content: center;
  margin: 0 auto;
}

.catalog-container .catalog-image {
  width: auto;
  margin: 0 auto;
}

.catalog-container .catalog-pagination {
  margin-top: 16px;
  position: relative;
}

.about,
.about2 {
  position: relative;
  padding: 108px 0;
}

.about-container {
  display: flex;
  justify-content: space-between;
  gap: 120px;
  max-width: 1400px;
  margin: 0 auto;
}

.about::after,
.about2::after {
  content: "";
  top: 60px;
  position: absolute;
  width: 120px;
  height: 1px;
  background: var(--secondary);
  transform: rotate(-90deg);
}

.about::after {
  left: 0;
}

.about2::after {
  right: 0;
}

.about::before {
  left: -15px;
}

.about2::before {
  right: -15px;
}

.info-title {
  font-weight: 300;
  font-size: 48px;
  line-height: 120%;
  display: flex;
  align-items: center;
  text-transform: uppercase;
  color: var(--secondary);
}

.info-button {
  max-width: max-content;
  margin-top: 120px;
  padding: 26px 30px;
  border: 1px solid var(--secondary);
  font-size: 16px;
  font-weight: 300;
  line-height: 120%;
  display: flex;
  gap: 19px;
  align-items: center;
  text-align: center;
  text-transform: uppercase;
  overflow: hidden;
  color: var(--secondary);
}

.info-button span {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.info-button:hover {
  color: var(--secondary);
}

.button-arrow {
  background-image: url("../svg/button-arrow.svg");
  background-repeat: no-repeat;
  background-position: center;
  width: 9.5px;
  height: 9.5px;
}

.info-block {
  padding-left: 60px;
  max-width: 650px;
}

.info-block2 {
  padding-left: 0;
  padding-right: 60px;
  order: 1;
}

.image-block2 {
  order: 0;
}

.info-subtitle {
  margin-top: 40px;
  padding-bottom: 15px;
  font-weight: 300;
  font-size: 20px;
  line-height: 120%;
  display: flex;
  align-items: center;
  text-transform: uppercase;
  color: var(--grey);
}

.info-subtitle span {
  margin-right: 5px;
  font-weight: 300;
  color: var(--secondary);
}

.info-text {
  font-weight: 300;
  font-size: 18px;
  line-height: 1.44;
  display: flex;
  align-items: center;
  color: var(--secondary);
  margin: 30px 0;
}

.about-image {
  position: relative;
  z-index: 2;
  width: 100%;
}

.about-image-bcg {
  position: absolute;
  background-image: url("../brand_bcg.html");
  background-position: center;
  background-repeat: no-repeat;
  right: 0;
  top: 0;
  bottom: 0;
  opacity: 0.5;
  width: 100%;
  max-width: 555px;
}

.about-image-layout {
  z-index: 1;
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  background: var(--secondary);
  opacity: 0.8;
  width: 100%;
  max-width: 554px;
}

.about2 .about-image-layout2,
.about2 .about-image-bcg2 {
  left: 0;
}

.product-card {
  padding: 70px 0;
  background: var(--light-grey-background);
}

.product-image,
.image,
.product-content {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.product-container {
  display: flex;
  justify-content: space-between;
  gap: 85px;
  width: 100%;
  max-width: 1800px;
  margin: 0 auto;
}

.product-info {
  font-weight: 700;
  font-size: 18px;
  line-height: 22px;
  color: var(--black-secondary);
}

.product-title {
  margin-top: 16px;
  font-weight: 300;
  font-size: 40px;
  line-height: 1.5;
  color: var(--secondary);
}

.product-description {
  font-weight: 300;
  font-size: 26px;
  line-height: 1.5;
  letter-spacing: 0.14em;
  color: var(--secondary);
}

.product-text-block {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.product-text {
  font-weight: 300;
  font-size: 18px;
  line-height: 1.5;
  color: var(--black);
}

.product-tags {
  margin-top: 36px;
}

.product-materials {
  margin-top: 36px;
  /*justify-content: flex-end;*/
}

.product-material-img {
  width: 320px;
  height: 320px;
  border-radius: 12px;
  background-position: center;
  background-size: cover;
}

.tag {
  max-height: 84px;
  margin-right: 16px;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(280px, 1fr));
  gap: 60px;
}

.product {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.product img {
  height: 490px;
  object-fit: contain;
}

.article {
  margin-bottom: 10px;
  font-weight: 500;
  font-size: 18px;
  line-height: 22px;
  letter-spacing: 0.14em;
  text-transform: lowercase;
  color: var(--secondary);
}

.info {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: var(--black);
}

.contacts-title {
  margin: 0;
  padding: 15px 0;
  border-bottom: 1px solid var(--secondary);
  font-size: 28px;
  font-weight: 100;
  text-align: center;
  color: var(--secondary);
}

.secondary_menu {
  margin: 0;
  padding: 0;
  list-style: none;
  text-align: center;
  border-bottom: 1px solid var(--secondary);
}

.secondary_menu .menu_item {
  position: relative;
  display: inline-block;
  margin: 0;
  padding: 15px 0;
  font-size: 12px;
  font-weight: 300;
  text-transform: uppercase;
}

.secondary_menu .menu_item > a:hover,
.secondary_menu .menu_item.active > a {
  color: rgb(195, 164, 113);
}

.explore_menu .menu_item + .menu_item {
  margin-left: 60px;
}

.secondary_menu > .menu_item.active > a:before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 0;
  border-top: 4px solid rgb(189, 164, 112);
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}

.contacts_controls {
  min-width: 380px;
  max-width: 380px;
  height: 650px;
  padding-top: 15px;
  overflow: hidden;
  background: rgb(255, 255, 255);
}

.offices-controls {
  min-width: 380px;
  max-width: 568px;
  width: 100%;
  height: auto;
  overflow: hidden;
  background: rgb(255, 255, 255);
}

.contact_stores_find,
.contact_offices_find {
  margin: 0 auto;
  padding-right: 16px;
  width: 100%;
  height: 650px;
}

.contact_stores_find {
  margin: 0 auto;
}

.contact_controls_top {
  margin: 0 auto;
  width: 265px;
  padding-bottom: 15px;
}

.office_controls_top,
.office_controls_bottom {
  width: 100%;
  background: var(--light-grey-background);
  padding: 16px 24px;
  border-radius: 8px;
  margin-bottom: 32px;
}

.find_store,
.find_office {
  margin-left: 35px;
  white-space: nowrap;
}

.find_store,
.find_store:hover,
.find_office,
.find_office:hover,
.selected_name,
.selected_name:hover {
  position: relative;
  display: inline-block;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 2px;
  text-decoration: underline;
  text-transform: uppercase;
}

.find_store .icon_point,
.find_office .icon_point,
.selected_name .icon_point {
  position: absolute;
  top: 0;
  left: -35px;
}

.icon_point {
  background: url("../png/pin.png") no-repeat;
  width: 17px;
  height: 19px;
}

.icon_phone {
  background: url(../phone.html) no-repeat;
  position: absolute;
  width: 19px;
  height: 19px;
  left: 0;
}

.icon_mail {
  background: url(../mail.html) no-repeat;
  position: absolute;
  width: 25px;
  height: 19px;
  left: 0;
}

.icon_form {
  background: url(../feedback.html) no-repeat;
  position: absolute;
  width: 25px;
  height: 19px;
  left: 0;
}

.icon::before {
  content: "";
  display: block;
  height: 200%;
  width: 200%;
}

.find_store + .contact_text,
.find_office + .contact_text,
.email_block + .contact_text {
  padding: 15px 0 5px;
}

.contact_stores_find .select,
.contact_offices_find .select {
  margin-bottom: 10px;
  text-align: left;
  border-radius: 0;
}

.find_office {
  position: relative;
  display: inline-block;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 2px;
  text-decoration: underline;
  text-transform: uppercase;
}

.nearest-title {
  font-weight: 500;
  font-size: 16px;
  line-height: 20px;
  display: flex;
  align-items: center;
  letter-spacing: 0.5px;
  text-decoration-line: underline;
  color: var(--secondary);
  padding-bottom: 20px;
}

select {
  position: relative;
  padding: 5px 40px 5px 20px;
  background-color: transparent;
  background-image: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  -webkit-border-radius: 0;
  border-radius: 0;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 2px;
  z-index: 1;
  cursor: pointer;
  border: 1px solid var(--secondary);
  width: 100%;
}

.office-select-block:not(:last-child) {
  /*margin-bottom: 32px;*/
}

.office-select {
  padding: 0;
  border: none;
  font-weight: 500;
  font-size: 16px;
  line-height: 20px;
  display: flex;
  align-items: center;
  letter-spacing: 0.5px;
  color: var(--black);
}

.office-select-block,
.select {
  position: relative;
}

.office-select-block::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  width: 25px;
  height: 14px;
}

.select:after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 15px;
  margin-top: -6px;
  width: 25px;
  height: 14px;
  background: url(../png/select-arrow.png) no-repeat;
}

.office-select-block:after {
  background: url(../svg/select-arrow-black.svg) no-repeat;
}

.show-all-btn {
  cursor: pointer;
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  display: flex;
  align-items: center;
  letter-spacing: 0.5px;
  text-decoration-line: underline;
  color: var(--black);
  border: none;
  outline: none;
}

.show-btn {
  width: 100%;
  font-weight: 500;
  font-size: 12px;
  line-height: 16px;
  padding: 7px 7px 7px 24px;
  display: flex;
  justify-content: start;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white);
  background: var(--secondary);
  border: none;
}

.selected_info {
  font-size: 12px;
  text-align: left;
  height: 365px;
  overflow-y: auto;
}

.selected_info .textblock {
  margin: 0 auto;
  width: 265px;
  text-align: left;
}

.offices-info {
  margin-top: 16px;
  margin-right: 32px;
  height: 370px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.offices-block {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 16px;
  width: 100%;
  border: 1px solid rgba(0, 0, 0, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
}

.offices-block.active {
  background-color: #f0f0f0;
  border-color: #000;
}

.office-info,
a.office-info {
  font-weight: 400;
  font-size: 14px;
  line-height: 17px;
  display: flex;
  align-items: center;
  letter-spacing: 0.5px;
  color: var(--black);
}

.office-name,
a.office-name {
  font-weight: 600;
  font-size: 16px;
  line-height: 20px;
  display: flex;
  align-items: center;
  letter-spacing: 0.5px;
  color: var(--black);
}

.store_item {
  width: 240px;
  padding: 15px 0 0 23px;
}

.selected_address {
  display: block;
  padding-bottom: 12px;
  line-height: 18px;
  font-style: normal;
}

.phones_header,
.email_header {
  position: relative;
  padding: 0 0 6px 40px;
  letter-spacing: 1.6px;
  font-size: 12px;
  text-transform: uppercase;
  color: var(--secondary);
}

.phones_block,
.email_block {
  padding-bottom: 22px;
}

.contacts_fixed_bottom {
  margin: 0 auto;
  width: 265px;
  padding: 15px 0;
  background: rgb(255, 255, 255);
}

.contact_form_toggle {
  position: relative;
  display: block;
  margin: 8px 0 0 35px;
  width: 265px;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  text-decoration: underline;
}

.contact_form_toggle .icon_form {
  position: absolute;
  top: 4px;
  left: -35px;
}

.contacts-container,
.map-container {
  display: flex;
}

.offices-map,
.contacts_map {
  width: 100%;
  height: 600px;
  background-color: var(--light-grey-background);
}

iframe {
  height: 100%;
  width: 100%;
  box-sizing: border-box;
}

.footer {
  margin-top: 140px;
  margin-bottom: 0;
}

.footer-container {
  border-top: 2px solid var(--secondary);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.footer-content {
  margin: 0 auto;
  padding: 70px 60px;
}

.footer-title {
  margin-top: 15px;
  font-weight: 300;
  font-size: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: var(--secondary);
}

.footer-phone {
  margin-top: 5px;
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  display: flex;
  justify-content: center;
  text-align: center;
  color: var(--dark-grey);
}

.footer-phone:hover {
  color: var(--dark-grey);
}

.footer-social {
  display: flex;
  justify-content: center;
  gap: 25px;
  margin-top: 15px;
}

.rights-block {
  font-weight: 400;
  font-size: 12px;
  line-height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  letter-spacing: 0.2px;
  color: var(--white);
  background: var(--secondary);
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 90px;
  padding: 0;
}

.info-page__title {
  margin-bottom: 2rem;
  /*text-transform: none;*/
}

.brand-block-title {
  margin-bottom: 24px;
  font-weight: 400;
  font-size: 32px;
  line-height: 39px;
  color: var(--onBackground);
}

.brand-block-text {
  font-size: 18px;
  font-weight: 300;
  line-height: 1.5;
}

.brand-block-text:not(:last-child) {
  margin-bottom: 48px;
}

.brand-block {
  display: flex;
  gap: 165px;
}

.brand-image {
  width: 100%;
  max-width: 850px;
}

.brand-image2 {
  order: 1;
}

.brand-text2 {
  order: 0;
}

.brand-image img {
  width: 100%;
  object-fit: cover;
}

.brand-text {
  width: 705px;
}

.callback-title {
  font-weight: 600;
  font-size: 32px;
  line-height: 122%;
  text-align: center;
  letter-spacing: 0.5px;
  color: var(--onBackground);
}

.contacts_modal .modal_dialog {
  padding-bottom: 15px;
}

.modal_dialog {
  position: relative;
  margin: 95px auto;
  width: 810px;
  background: rgb(255, 255, 255);
  overflow: hidden;
  z-index: 102;
}

.modal_header {
  position: relative;
  padding: 0 30px;
}

.modal_content {
  padding: 0 30px;
}

.contact_form {
  position: relative;
  padding: 35px 0 100px;
}

.contact_form .btn {
  width: 100%;
}

.clearfix:after {
  clear: both;
  display: block;
  visibility: hidden;
  height: 0;
  content: ".";
  line-height: 0;
  font-size: 0;
}

.contacts_modal .modal_header .header {
  letter-spacing: -0.7px;
}

.brand-input,
.brand-textarea,
.brand-form-btn {
  height: auto;
  margin: 0;
  width: 100%;
  padding: 6px;
  border: 1px solid rgb(195, 164, 113);
  vertical-align: middle;
  font-family: "Roboto", sans-serif;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  font-size: 12px;
  color: rgb(51, 51, 51);
  outline: none;
}

.contact_form .form_left,
.contact_form button[type="submit"] {
  float: left;
  width: 265px;
}

.contact_form .field {
  padding-bottom: 28px;
}

.contact_form .name {
  padding-bottom: 10px;
}

.contact_form .textarea {
  height: 236px;
  resize: none;
  letter-spacing: 1.3px;
}

.contacts_modal .modal_header .header-modal {
  float: left;
  margin: 0;
  min-width: 70%;
  padding: 23px 20px 0 0;
  font-size: 28px;
  font-weight: 100;
  line-height: 48px;
  letter-spacing: -1.2px;
}

.contact_form .name label {
  margin: 0;
  padding: 0;
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 2.2px;
  text-transform: uppercase;
}

.contact_form .inp_string,
.contact_form .inp_email,
.contact_form .inp_phone {
  height: 42px;
  padding: 6px 15px 6px 15px;
  letter-spacing: 1.3px;
}

.contact_form .form_right {
  float: right;
  width: 440px;
}


.contact_form button[type="submit"] {
  position: absolute;
  bottom: 56px;
  left: 0;
  margin: 0;
  height: 42px;
  background: rgb(195, 164, 113);
  font-size: 12px;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgb(255, 255, 255);
}

.modal-active .modal_close {
  width: 28px;
  height: 28px;
}

.modal_close {
  display: block;
  position: absolute;
  top: 11px;
  right: 10px;
  width: 0;
  height: 0;
  border: 1px solid rgb(195, 164, 113);
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}

.modal-active .modal_close:before {
  visibility: visible;
  opacity: 1;
  left: 0;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  transform: rotate(45deg);
}

.modal_close:before,
.modal_close:after {
  content: "";
  position: absolute;
  top: 50%;
  display: block;
  width: 28px;
  height: 0;
  border-bottom: 1px solid rgb(195, 164, 113);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.4s ease-out 0.4s;
  transition: all 0.4s ease-out 0.4s;
}

.modal-active .modal_close:after {
  visibility: visible;
  opacity: 1;
  right: 0;
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.btn {
  display: inline-block;
  margin: 22px 0;
  height: 16px;
  padding: 12px;
  border: 1px solid rgb(195, 164, 113);
  font-size: 12px;
  line-height: 16px;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgb(195, 164, 113);
}

.contact_thx {
  line-height: 1.5;
  font-size: 18px;
  font-weight: 300;
  text-align: center;
  color: rgb(195, 164, 113);
}

.callback {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.callback-form {
  margin-top: 30px;
}

.callback-title {
  text-align: center;
  max-width: 600px;
}

.callback-btn {
  font-weight: 500;
  font-size: 16px;
  text-align: center;
  letter-spacing: 0.5px;
  color: var(--background);
  width: 300px;
  height: 48px;
  background: #c3a471;
  border-radius: 8px;
  outline: none;
  border: none;
}

.callback-links {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

a.callback-phone,
a.callback-email {
  font-weight: 400;
  font-size: 20px;
  line-height: 24px;
  text-align: center;
  color: var(--dark-grey);
}

.callback-email {
  text-decoration-line: underline;
}

.callback-block-title {
  font-weight: 500;
  font-size: 24px;
  line-height: 39px;
  letter-spacing: 0.5px;
  color: var(--onBackground);
}

.callback-form-block {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.callback-block-links {
  display: flex;
  align-items: end;
  flex-direction: column;
  gap: 8px;
}

.brand-text-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.office-title {
  font-weight: 600;
  font-size: 64px;
  line-height: 78px;
  display: flex;
  align-items: center;
  color: var(--secondary);
}

.modal-dialog .text-end button {
  width: 100%;
}

@media (max-width: 1900px) {
  .side-space-collection,
  .side-space {
    padding: 0 40px;
  }

  .text-block {
    gap: 30px;
  }

  .block-text {
    margin: 0 auto;
    font-size: 18px;
    max-width: 585px;
  }

  .collection-content {
    margin-bottom: 40px;
  }

  .collection-block-container {
    gap: 70px;
  }

  .collection-info-block-container {
    padding-right: 0;
  }

  .collection-info-block {
    gap: 35px;
  }

  .collection-info-title {
    font-size: 35px;
    line-height: 150%;
  }

  .collection-info-text {
    font-size: 20px;
  }

  .collection-text-block {
    gap: 25px;
  }

  .signature {
    width: 350px;
  }

  a.main-button {
    padding: 17px 25px;
    margin-top: 100px;
    font-size: 16px;
  }

  .block-text {
    font-size: 22px;
    max-width: 800px;
  }

  .catalog-item {
    gap: 60px;
  }

  .page-title {
    font-size: 44px;
    line-height: 150%;
  }

  .collection-prefix {
    margin-top: 10px;
    font-size: 18px;
    line-height: 150%;
  }

  .card-text {
    font-size: 35px;
  }

  .info-button {
    margin-top: 100px;
  }

  .card-content {
    gap: 15px;
  }

  .card-title {
    font-size: 36px;
  }

  .card-link {
    font-size: 20px;
    line-height: 150%;
  }

  .product-card {
    padding: 50px 0;
  }

  .product-container {
    gap: 60px;
  }

  .product-title {
    font-size: 35px;
  }

  .product-description {
    font-size: 20px;
  }

  .product-text-block {
    gap: 20px;
  }

  .product-text {
    font-size: 16px;
  }

  .products-grid {
    gap: 40px;
  }

  .product {
    padding: 10px;
    gap: 40px;
  }

  .product img {
    padding: 20px;
    height: 370px;
  }

  .article {
    font-size: 16px;
  }

  .collections {
    padding: 80px 40px 40px;
    gap: 60px;
  }

  .collections-texts {
    gap: 20px;
    margin-top: 25px;
  }

  .collections-subtitle {
    font-size: 22px;
    margin-top: 5px;
  }

  .collections-text,
  .collections-text b {
    font-size: 18px;
  }

  .footer-content {
    padding: 50px;
  }

  .brand {
    gap: 100px;
    margin-bottom: 64px;
  }

  .brand-block {
    gap: 60px;
  }

  .brand-text {
    width: fit-content;
  }

  .brand-block-title {
    margin-bottom: 20px;
    font-size: 28px;
    line-height: 150%;
  }

  .brand-block-text:not(:last-child) {
    margin-bottom: 30px;
  }
}

@media (max-width: 1840px) {
  .container-width {
    padding-left: 60px;
    padding-right: 60px;
  }

  .catalog-item {
    gap: 0;
  }

  .card__left {
    padding-left: 0;
    padding-right: 40px;
  }

  .card__right {
    padding-left: 40px;
    padding-right: 0;
  }

  .swiper .swiper-button-prev {
    left: 1%;
  }

  .swiper .swiper-button-next {
    right: 1%;
  }

  .banner-title {
    font-size: 72px;
    line-height: 72px;
  }

  .banner-title-thin {
    margin-left: 185px;
  }

  .about,
  .about2 {
    padding: 60px 0;
  }
}

@media (max-width: 1600px) {
  .about,
  .about2 {
    padding: 60px 120px;
  }

  .about-image-bcg {
    max-width: 299px;
  }

  .about-image-layout {
    max-width: 300px;
  }

  .menu__link {
    font-size: 12px;
  }

  .info-button {
    margin-top: 80px;
  }

  .menu--header .menu__item:last-child {
    margin-left: inherit;
  }
}

@media (max-width: 1440px) {
  .info-title {
    font-size: 40px;
  }

  .about,
  .about2 {
    padding: 40px 80px;
  }

  .about-container {
    gap: 80px;
  }

  .about-image {
    max-height: 580px;
  }

  .info-text {
    margin: 25px 0;
  }

  .info-button {
    margin-top: 60px;
  }

  .brand {
    gap: 80px;
  }

  .brand-block-title {
    margin-bottom: 15px;
    font-size: 22px;
  }

  .callback-block-title {
    font-size: 18px;
  }

  a.callback-phone,
  a.callback-email {
    font-size: 16px;
  }

  .callback-btn {
    font-size: 18px;
  }
}

@media (max-width: 1365px) {
  .block-text {
    font-size: 16px;
    max-width: 485px;
  }

  .collection-block-container {
    gap: 50px;
  }

  .collection-info-block {
    gap: 30px;
  }

  .collection-info-title {
    font-size: 30px;
  }

  .collection-info-text {
    font-size: 16px;
  }

  .collection-text-block {
    gap: 20px;
  }

  .signature {
    width: 300px;
  }

  a.main-button {
    padding: 14px 25px;
    margin-top: 60px;
    font-size: 16px;
  }

  .page-title {
    font-size: 35px;
  }

  .collection-prefix {
    font-size: 16px;
  }

  .catalog-btn {
    padding: 13px 0;
    max-width: 350px;
  }

  .container-width {
    padding-left: 24px;
    padding-right: 24px;
  }

  .banner-title {
    font-size: 60px;
    line-height: 60px;
  }

  .banner-title-thin {
    margin-left: 150px;
  }

  .info-title {
    font-size: 35px;
  }

  .info-subtitle {
    margin-top: 30px;
  }

  .card-title {
    font-size: 32px;
  }

  .info-block {
    max-width: 550px;
  }

  .about-container {
    gap: 60px;
  }

  .card-text {
    font-size: 30px;
  }

  .card-link {
    font-size: 18px;
  }

  .product-container {
    gap: 50px;
  }

  .product-title {
    margin-top: 10px;
    line-height: 150%;
  }

  .product-description {
    margin-top: 5px;
    font-size: 20px;
    line-height: 150%;
  }

  .product-card {
    padding: 40px 0;
  }

  .products-grid {
    gap: 25px;
    grid-template-columns: repeat(3, minmax(300px, 1fr));
  }

  .collections {
    gap: 50px;
  }

  .collections-texts {
    gap: 15px;
  }

  .collections-subtitle {
    font-size: 22px;
  }

  .collections-text,
  .collections-text b {
    font-size: 16px;
  }

  .footer-logo {
    width: 250px;
  }

  .brand-block-text:not(:last-child) {
    margin-bottom: 25px;
  }

  .callback-form-block {
    flex-direction: column;
    gap: 15px;
  }

  .callback-block-links {
    align-items: center;
  }

  .callback-block-title {
    text-align: center;
    line-height: 150%;
    margin-top: 25px;
  }
}

@media (max-width: 1280px) {
  .collections-title {
    font-size: 25px;
  }

  .collections-subtitle {
    font-size: 18px;
  }

  .collections-texts {
    margin-top: 20px;
  }

  .secondary_menu .menu_item {
    font-size: 12px;
    font-weight: 300;
  }

  select {
    padding: 5px 40px 5px 20px;
    font-size: 12px;
    font-weight: 300;
  }

  .show-btn {
    font-size: 12px;
    font-weight: 300;
  }

  .menu__items {
    gap: 45px;
  }

  .brand {
    gap: 60px;
  }

  .brand-block-title {
    font-size: 20px;
  }

  .brand-block {
    gap: 50px;
  }
}

@media (max-width: 1200px) {
  .card-text {
    font-size: 25px;
  }

  .card-link {
    font-size: 16px;
  }
}

@media (max-width: 1100px) {
  .logo {
    max-width: 250px;
  }

  .logo img {
    max-width: 100%;
  }
}

@media (min-width: 1024px) {
  .menu__item:hover .menu__dropdown {
    opacity: 1;
    visibility: visible;
    pointer-events: unset;
    transform: translateY(0);
    z-index: 100;
    border-top: 2px #dedede solid;
  }
}

@media only screen and (min-width: 61.875rem) {
  .megamenu {
    margin-right: auto;
    margin-left: auto;
    margin-bottom: 0;
    padding-bottom: 0;
    width: 100%;
    display: flex;
  }

  .submenu {
    display: flex;
    gap: 90px;
  }

  .submenu-images {
    max-width: 50%;
    gap: 24px;
  }

  .submenu ul {
    padding-left: 0;
  }

  .submenu img {
    max-width: 280px;
  }

  .submenu ul {
    list-style: none;
  }

  .submenu-images {
    max-width: 50%;
  }
}

@media (max-width: 1024px) {
  .header {
    display: flex;
    flex-direction: column;
  }

  .collection-info-title {
    font-size: 25px;
  }

  .top-bar {
    order: 2;
    margin: 0;
    padding: 17px 16px 17px;
    align-items: center;
    border-bottom: 1px var(--secondary) solid;
  }

  .top-bar.fixed {
    position: fixed;
    width: 100%;
    top: 0;
  }

  .hidden-lg {
    display: block;
  }

  .hidden-sm {
    display: none;
  }

  .menu--header {
    display: none;
  }

  .top-menu {
    left: -300px;
    -webkit-transition: left 0.5s;
    -o-transition: left 0.5s;
    transition: left 0.5s;
    position: fixed;
    width: 100%;
    max-width: 300px;
    border: 0;
    height: 100%;
    top: 0;
    background: #fff;
    z-index: 100;
    overflow: auto;
  }

  .top-menu.show {
    left: 0;
    z-index: 1000;
  }

  .top-menu .container-width {
    padding-left: 0;
    padding-right: 0;
  }

  .hidden-form {
    display: none;
    padding: 0 16px;
    position: relative;
    margin-top: 16px;
    transition: all 0.3s ease-out 0s;
  }

  .mobile--header {
    background: var(--secondary);
    margin-bottom: 16px;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-areas:
      "form form"
      "search user";
  }

  .mobile__search,
  .mobile__user {
    font-weight: 300;
    font-size: 11px;
    line-height: 74px;
    text-align: center;
    letter-spacing: 0px;
    text-transform: uppercase;
    color: #ffffff;
    text-decoration: none;
  }

  .hidden-form {
    grid-area: form;
  }

  .mobile__search {
    grid-area: search;
    border-right: 1px #ffffff7a solid;
  }

  .mobile__user {
    grid-area: user;
  }

  .top-menu .menu--header {
    display: block;
    padding: 16px 16px 20px;
  }

  .top-menu .menu__item {
    padding: 9px 0;
  }

  .menu__items {
    display: block;
  }

  .menu__item--dropdown {
    background: url("../svg/filter-arrow.svg") 100% 8px no-repeat;
    cursor: pointer;
  }

  .menu__item--dropdown.active {
    background: url("../svg/filter-arrow-up.svg") 100% 8px no-repeat;
  }

  .top-menu .menu__item:nth-child(8) .menu__link,
  .top-menu .menu__item:last-child .menu__link {
    color: #0d0d0d;
  }

  .menu__link {
    width: max-content;
  }

  .top-bar__column {
    flex: none;
  }

  .top-menu .country,
  .top-menu .city {
    text-align: center;
    padding-left: 0;
  }

  .top-menu.show .country__active {
    color: #1e1e1e;
  }

  .top-menu.show .country__list.active {
    display: block;
    left: 0;
    right: 0;
    width: fit-content;
    margin: auto;
  }

  .top-menu .city__active {
    background: none;
    padding-left: 0;
    display: inline-block;
  }

  .top-menu .city__active {
    border-bottom: 1px dashed var(--secondary);
  }

  .mobile--location {
    padding-bottom: 16px;
    border-bottom: 1px solid var(--secondary);
  }

  .top-menu .worktime {
    padding-top: 0;
    font-size: 13px;
    line-height: 21px;
    color: var(--secondary);
    text-align: center;
    padding-bottom: 13px;
  }

  .top-menu .phonenumber {
    font-weight: 300;
    font-size: 22px;
    line-height: 35px;
    text-align: center;
  }

  .top-menu.show {
    max-width: 100%;
    z-index: 10000;
  }

  .mobile--header {
    background: none;
    display: block;
    margin-bottom: 8px;
  }

  .full_mobile_line {
    display: flex;
    padding: 18px 21px 0;
    justify-content: space-between;
    align-items: center;
  }

  .right_mobile_line {
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .right_mobile_line > * {
    width: 26px;
    height: 26px;
    background-size: cover;
    display: block;
    overflow: hidden;
  }

  .mobile__user {
    font-size: 0;
  }

  .close_mobile_full {
    line-height: 0;
  }

  .mobile_wishlist.whishlist {
    background-size: 30px 30px;
    background-position: 50%;
  }

  body .top-menu .country__active {
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 17.5px;
    letter-spacing: 0;
    text-transform: initial;
  }

  .top-menu.show .city.tfl__link-container {
    display: none;
  }

  .top-menu.show .country__list.active {
    position: static;
    width: 100%;
    margin-bottom: -16px;
    box-shadow: 0 4px 4px 0px rgba(0, 0, 0, 0.25);
    text-align: center;
    padding: 11px 0 20px;
  }

  .top-menu.show .country__link {
    display: flex;
    color: #000;
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 39px;
    letter-spacing: 0;
    margin: 0 auto;
    justify-content: center;
  }

  .top-menu.show .mobile--location {
    border: none;
  }

  .top-menu.show .country__icon {
    min-width: 23px;
    min-height: 23px;
    margin-right: 8px;
  }

  .top-menu .menu__link {
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 18px;
    letter-spacing: 0;
    text-transform: initial;
    color: #000;
  }

  .top-menu ul.sub-menu {
    padding-left: 30px;
  }

  li.menu__item.menu__item--dropdown.active > a.menu__link {
    color: var(--secondary);
  }

  .top-menu .sub-menu .menu__link {
    color: #000;
    font-size: 14px;
    font-style: normal;
    line-height: 18px;
    letter-spacing: 0;
  }

  .top-menu .sub-menu .menu__link:last-child {
    font-weight: 300;
  }

  .sub-menu {
    height: 0;
    overflow: hidden;
    transition: height 0.3s ease;
  }

  .sub-menu.mobile-active {
    height: auto;
    display: block;
  }

  .top-menu.fixed {
    left: -300px;
    opacity: 1;
  }

  .top-menu.show {
    left: 0;
  }

  .top-menu li.menu__item.menu__item--dropdown.outlet {
    padding: 9px 0;
    background: none;
    color: #ff0000;
  }

  .top-menu li.menu__item.menu__item--dropdown.outlet a {
    color: #ff0000;
  }

  .top-menu .menu--header .menu__item:last-child a {
    font-weight: 300;
  }

  .top-menu .container-width {
    padding-left: 0;
    padding-right: 0;
    display: flex;
    flex-direction: column;
    height: 100%;
  }

  .top-menu .mobile--footer {
    margin-top: auto;
    padding: 0 21px 26px;
  }

  .top-menu .btn-callback {
    font-weight: 500;
    font-size: 14px;
    line-height: 39px;
    color: #fff;
    text-transform: uppercase;
    width: 100%;
    background: #ff0000;
    padding: 0 27px;
    margin-bottom: 24px;
    border-radius: 6px;
    display: block;
    text-align: center;
  }

  .title_mobile_menu_contacts {
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 18px;
    letter-spacing: 0;
    margin-bottom: 6px;
  }

  .top-menu .phonenumber {
    color: #000;
    text-align: center;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 18px;
    letter-spacing: 0;
    margin-top: 5px;
  }

  .top-menu .menu--header {
    display: block;
    padding: 0 20px 20px;
  }

  .hidden-form {
    border-bottom: 1px solid var(--secondary);
    margin-top: 10px;
    padding-bottom: 10px;
  }

  .mobile_wishlist.whishlist {
    position: relative;
    overflow: initial;
  }

  .mobile_wishlist.whishlist span {
    font-size: 12px;
    height: 15px;
    bottom: -2px;
    width: 15px;
    right: -2px;
  }

  .menu--header .menu__item:last-child {
    margin-left: 0;
    background: none;
  }

  .container-width {
    padding-left: 16px;
    padding-right: 16px;
  }

  .collections-banner {
    height: inherit;
  }

  .collections-image {
    max-width: 100%;
  }

  .collections-img {
    height: 100%;
  }

  .collections-texts {
    margin-top: 20px;
    gap: 10px;
  }

  .collections-subtitle {
    font-size: 18px;
  }

  .collections-text,
  .collections-text b {
    font-size: 14px;
  }

  .banner__text {
    gap: 4%;
  }

  .logo {
    min-width: 225px;
    margin: 0 auto;
  }

  .logo img {
    max-width: 100%;
  }

  .side-space-collection,
  .side-space {
    padding: 0 15px;
  }

  .collections {
    padding: 60px 15px 40px;
    gap: 25px;
    flex-direction: column;
  }

  .page-title {
    font-size: 32px;
  }

  .banner-title {
    font-size: 48px;
    line-height: 48px;
  }

  .banner-title-thin {
    margin-left: 121px;
  }

  .about,
  .about2 {
    padding: 40px 60px;
  }

  .info-button {
    padding: 20px 30px;
  }

  .info-block {
    max-width: 470px;
  }

  .card-title {
    font-size: 25px;
  }

  .product-info {
    font-size: 16px;
  }

  .product-container {
    gap: 40px;
  }

  .product-title {
    font-size: 30px;
  }

  .product-description {
    font-size: 18px;
  }

  .product-text-block {
    gap: 15px;
  }

  .product-text {
    font-size: 14px;
  }

  .article,
  .info {
    font-size: 14px;
  }

  .product {
    gap: 25px;
  }

  .products-grid {
    gap: 20px;
    grid-template-columns: repeat(2, minmax(300px, 1fr));
  }

  .product img {
    padding: 10px;
  }

  .cards-grid,
  .cards-container {
    gap: 20px;
  }

  .brand {
    gap: 50px;
  }

  .brand-block {
    display: block;
  }

  .brand-image {
    max-width: 100%;
  }

  .brand-text {
    margin-top: 30px;
  }

  .brand-block-title {
    font-size: 18px;
  }

  .brand-block-text:not(:last-child) {
    margin-bottom: 20px;
  }

  .callback-btn {
    width: 100%;
  }

  .callback-title {
    font-size: 22px;
  }

  .callback-form {
    margin-top: 40px;
  }
}

@media screen and (max-width: 1023px) {
  .cards-grid {
    grid-template-columns: repeat(2, minmax(307px, 1fr));
  }
}

@media screen and (max-width: 1000px) {
  .contacts-title {
    padding: 12px 0;
    font-size: 18px;
  }

  .contacts_controls {
    max-width: none;
    position: static;
    width: 100%;
    padding-bottom: 20px;
  }

  .contacts-container,
  .map-container {
    flex-direction: column;
    gap: 30px;
  }

  iframe {
    height: 540px;
  }

  .modal_dialog {
    width: 90%;
  }

  .modal_header,
  .modal_content {
    padding: 0 10px;
  }

  .contacts_modal .modal_header .header-modal {
    font-size: 18px;
    line-height: 32px;
    min-width: 80%;
    letter-spacing: -0.6px;
  }

  .contact_form .form_left {
    width: 40%;
  }

  .contact_form .form_right {
    width: 56%;
  }
}

@media (max-width: 990px) {
  .catalog-item {
    padding: 0 16px;
    flex-direction: column;
    align-items: center;
  }

  .collection-block-container {
    flex-direction: column;
    gap: 40px;
  }

  .image-block {
    margin: 0 auto;
  }

  .collection-block-image {
    max-height: 661px;
    border-radius: 6px;
    object-fit: contain;
  }

  .collection-info-block-container {
    max-width: 100%;
    align-items: center;
  }

  .collection-text-block {
    gap: 15px;
  }

  .collection-info-text {
    font-size: 16px;
  }

  .signature {
    width: 172px;
    margin-bottom: 24px;
  }

  a.main-button {
    margin-top: 4px;
    font-size: 14px;
    padding: 7px 25px;
  }

  .card__left {
    padding-right: 0;
    order: 2;
  }

  .card__right {
    padding-left: 0;
    padding-right: 0;
    order: 1;
    display: flex;
    justify-content: center;
  }

  .card__left img {
    display: none;
  }

  .card__right img {
    width: 79%;
    border-radius: 6px;
  }

  .collections-banner,
  .banner__item,
  .banner__item:before {
    min-height: inherit;
    height: 547px;
  }

  .banner__video {
    min-height: inherit;
    height: 100%;
  }

  .catalog-title {
    font-size: 24px;
    line-height: 29px;
    font-weight: 300;
    margin-top: 26px;
    margin-bottom: 11px;
  }

  .catalog-text {
    font-size: 16px;
    line-height: 22px;
    text-transform: none;
    margin: 0 auto 18px;
  }

  .catalog-btn {
    max-width: 350px;
    font-size: 16px;
    line-height: 22px;
  }

  .swiper .swiper-button-prev {
    top: 35%;
    left: 2%;
  }

  .swiper .swiper-button-next {
    top: 35%;
    right: 2%;
  }

  .about-container {
    display: block;
  }

  .about-container2 {
    display: flex;
  }

  .about-image,
  .about-image-bcg {
    display: none;
  }

  .info-button {
    margin-top: 50px;
  }

  .about-image-layout {
    z-index: -1;
    width: 30%;
  }

  .info-text {
    margin: 20px 0;
  }

  .content-right {
    justify-content: flex-end;
  }

  .show-all-btn {
    margin-top: 40px;
  }

  .offices-info {
    margin-top: 30px;
  }
}

@media (max-width: 800px) {
  .big_to_mobile {
    display: none;
  }

  .mobile_to_mobile {
    display: block;
    height: 100%;
  }
}

@media (max-width: 768px) {
  .footer {
    margin-bottom: 0 !important;
  }

  .block-space {
    margin: 60px 0;
  }

  .block-space:first-child {
    margin-top: 20px;
    margin-bottom: 60px;
  }

  .underline {
    width: 100px;
  }

  .page-title {
    font-size: 28px;
  }

  .collection-block-container {
    gap: 30px;
  }

  .collection-info-block {
    gap: 20px;
  }

  a.main-button {
    display: flex;
    justify-content: center;
    width: 100%;
  }

  .collection-prefix {
    font-size: 14px;
    margin-top: 7px;
  }

  .banner__text {
    padding: 0 10px;
    gap: 2%;
  }

  .info-title {
    font-size: 28px;
  }

  .info-subtitle {
    margin-top: 20px;
    font-size: 18px;
  }

  .info-text {
    margin: 15px 0;
  }

  .info-block {
    max-width: 550px;
    padding-left: 20px;
  }

  .info-block2 {
    padding-left: 0;
    padding-right: 20px;
  }

  .product-container {
    flex-direction: column;
    gap: 30px;
  }

  .image {
    object-fit: contain;
    height: 100%;
    max-height: 580px;
  }

  .product-info {
    font-size: 14px;
  }

  .product-title {
    font-size: 25px;
  }

  .product-description {
    font-size: 16px;
  }

  .product-text-block {
    gap: 10px;
  }

  .products-grid {
    margin-top: 30px;
    grid-template-columns: repeat(2, minmax(100px, 1fr));
  }

  .product {
    padding: 5px;
  }

  .product img {
    height: 270px;
  }

  .card-link {
    font-size: 14px;
  }

  .about,
  .about2 {
    padding: 40px;
  }

  .about::before {
    left: -50px;
  }

  .about::after {
    left: -35px;
  }

  .about2::before {
    right: -50px;
  }

  .about2::after {
    right: -35px;
  }

  .about-image-layout {
    width: 25%;
  }

  .info-button {
    margin: 50px auto 0;
    width: 100%;
  }

  .collections-texts {
    margin-top: 15px;
    gap: 5px;
  }

  .collections-subtitle {
    line-height: 150%;
  }

  .contacts_controls {
    height: auto;
  }

  .callback-title {
    font-size: 18px;
  }

  a.callback-phone,
  a.callback-email {
    font-size: 16px;
  }
}

@media (max-width: 679px) {
  .cards-grid {
    grid-template-columns: 1fr;
  }
}

@media screen and (max-width: 640px) {
  .contact_form .form_left {
    width: 100%;
  }

  .contact_form .form_right {
    width: 100%;
  }
}

@media (max-width: 500px) {
  .card-title {
    font-size: 22px;
  }

  .collections-subtitle {
    font-size: 16px;
  }

  .cards-container {
    margin-top: 20px;
  }
}

@media (max-width: 480px) {
  .about,
  .about2 {
    padding: 40px 30px;
  }

  .about-container2 {
    display: block;
  }

  .info-button {
    padding: 20px;
  }
}

@media (max-width: 375px) {
  .collections-banner,
  .banner__item {
    height: 540px;
    min-height: inherit;
  }

  .card-text {
    font-size: 22px;
  }

  .card-content {
    gap: 10px;
  }
}

@media (max-width: 360px) {
  .collections-banner,
  .banner__item {
    height: 520px;
    min-height: inherit;
  }
}

@media (max-width: 320px) {
  .logo {
    min-width: 164px;
  }
}

/* Fixed Buy Online Button */
.fixed-buy-button-wrapper {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 16px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.1);
}

.fixed-buy-button {
  display: block;
  width: 100%;
  padding: 12px 24px;
  background: #ff0000;
  color: #ffffff;
  text-align: center;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 20px rgba(255, 0, 0, 0.25);
}

.fixed-buy-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.6s;
}

.fixed-buy-button:hover {
  background: #e60000;
  color: #ffffff;
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(255, 0, 0, 0.35);
}

.fixed-buy-button:hover::before {
  left: 100%;
}

.fixed-buy-button:active {
  background: #cc0000;
  transform: translateY(0);
  box-shadow: 0 2px 15px rgba(255, 0, 0, 0.3);
}

.fixed-buy-button:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(255, 0, 0, 0.2);
}

/* Show on tablets and mobile devices up to 1025px */
@media (max-width: 1025px) {
  .fixed-buy-button-wrapper {
    display: block;
  }

  body {
    padding-bottom: 100px; /* Space for the fixed button */
  }

  /* Add margin to footer to prevent overlap */
  .footer {
    margin-bottom: 0px !important;
  }
}

@media (min-width: 1026px) {
  .fixed-buy-button-wrapper {
    display: none;
  }
}

/* Additional responsive adjustments */
@media (max-width: 480px) {
  .fixed-buy-button-wrapper {
    padding: 16px 12px;
  }

  .fixed-buy-button {
    padding: 16px 20px;
    font-size: 15px;
    border-radius: 40px;
  }

  body {
    padding-bottom: 90px;
  }
}

@media (max-width: 320px) {
  .fixed-buy-button {
    padding: 14px 18px;
    font-size: 14px;
    border-radius: 35px;
  }

  body {
    padding-bottom: 80px;
  }

  .footer {
    margin-bottom: 80px !important;
  }
}
