/* Nomixa Font Family */
@font-face {
  font-family: "Nomixa";
  src: url("../font/Nomixa-Regular.otf") format("opentype");
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: "Nomixa";
  src: url("../font/Nomixa-Medium.otf") format("opentype");
  font-weight: 500;
  font-display: swap;
}
@font-face {
  font-family: "Nomixa";
  src: url("../font/Nomixa-Bold.otf") format("opentype");
  font-weight: 700;
  font-display: swap;
}
@font-face {
  font-family: "Nomixa";
  src: url("../font/Nomixa-Black.otf") format("opentype");
  font-weight: 900;
  font-display: swap;
}
/* Vintage Signature Font */
@font-face {
  font-family: "Vintage Signature";
  src: url("../font/Vintage-Signature.ttf") format("truetype");
  font-weight: 400;
  font-display: swap;
}
html {
  scroll-behavior: smooth;
}

body {
  font-family: "Nomixa", sans-serif;
}

.container {
  max-width: 1440px;
}

a {
  text-decoration: none;
  transition: 0.2s ease-in;
}
a:hover {
  text-decoration: none;
}

img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.wrapper {
  padding: 52px 0px;
}

.justify-center {
  justify-content: center;
}

.align-center {
  align-items: center;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 900;
  margin: 0;
}

h1 {
  font-size: 40px;
}

h2 {
  font-size: 32px;
}

h3 {
  font-size: 28px;
}

h4 {
  font-size: 24px;
}

h5 {
  font-size: 20px;
}

h6 {
  font-size: 18px;
}

@media screen and (max-width: 568px) {
  h1 {
    font-size: 32px;
  }
  h2 {
    font-size: 24px;
  }
  h3 {
    font-size: 20px;
  }
  h4 {
    font-size: 18px;
  }
  h5,
  h6 {
    font-size: 16px;
  }
}
.button__white {
  text-decoration: underline;
  font-weight: 700;
  font-size: 13px;
  color: #ffffff;
}
.button__white:hover {
  text-decoration: underline;
}
.button__white:hover {
  color: #988C63;
}
.button-solid__gold {
  background-color: #988C63;
  color: #1A1818;
  padding: 10px 20px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 13px;
}
.button-solid__gold:hover {
  background-color: rgb(241, 237, 227);
  color: #1A1818;
}

.block-header {
  padding: 24px 0;
  top: 0;
  left: 0;
  right: 0;
  height: 88px;
  z-index: 20;
  background-color: #ffffff;
}
.block-header-logo a {
  display: block;
  max-width: 200px;
}
.block-header__menu {
  text-transform: uppercase;
  display: flex;
  justify-content: center;
}
.block-header__menu ul {
  list-style-type: none;
  display: flex;
  margin: 0;
  padding: 0;
}
.block-header__menu ul li {
  position: relative;
  padding: 0 16px;
}
.block-header__menu ul li a {
  color: #1A1818;
}
.block-header__menu ul li a:hover {
  color: #988C63;
}
.block-header__menu ul li:hover::after {
  transform: scaleY(-1);
}
.block-header__menu ul li:hover .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translate(0, 0);
}
.block-header__menu ul li.menu-item-has-children::after {
  content: "";
  width: 9px;
  height: 6px;
  background-image: url("../img/menu-arrow.svg");
  background-repeat: no-repeat;
  position: absolute;
  top: 6px;
  right: 0;
  transition: 0.2s ease-in;
}
.block-header__menu ul li .sub-menu {
  background-color: #ffffff;
  position: absolute;
  top: 25px;
  left: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  padding: 0;
  opacity: 0;
  visibility: hidden;
  transform: translate(0, 25%);
  transition: 0.2s ease-in;
  z-index: 10;
  padding: 16px 0;
  min-width: 275px;
}
.block-header__menu ul li .sub-menu li {
  margin: 4px 0px;
}
.block-header-wrapper {
  text-transform: uppercase;
  display: flex;
}
.block-header-wrapper-search {
  display: flex;
  align-items: center;
  margin-right: 16px;
}
.block-header-wrapper-search-form {
  display: flex;
  align-items: center;
  border: 1px solid #1A1818;
  border-radius: 999px;
}
.block-header-wrapper-search-form-input {
  margin: 0 5px;
  border: none;
  width: 90%;
}
.block-header-wrapper-search-form-input:focus {
  outline: none;
}
.block-header-wrapper-search-form-button {
  border: none;
  background-color: #414042;
  width: 40px;
  height: 40px;
  color: #ffffff;
  border-radius: 999px;
  position: relative;
}
.block-header-wrapper-search-form-button i {
  padding-top: 4px;
}
.block-header-wrapper-language {
  position: relative;
}
.block-header-wrapper-language-current {
  background-color: #414042;
  width: 40px;
  height: 40px;
  color: #ffffff;
  border-radius: 999px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.block-header-wrapper-language-current > div {
  margin-top: 4px;
}
.block-header-wrapper-language-current a {
  color: #ffffff;
}
.block-header-wrapper-language-current:hover a {
  color: #988C63;
}
.block-header-wrapper-language-current:hover + .theme-header-wrapper-language-swap {
  opacity: 1;
  visibility: visible;
  transform: translate(0, 0);
}
.block-header-wrapper-language-swap {
  position: absolute;
  padding-top: 24px;
  top: 20px;
  left: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  z-index: 10;
  transform: translate(0, 100%);
  visibility: hidden;
  opacity: 0;
  transition: 0.2s ease-in;
}
.block-header-wrapper-language-swap:hover {
  opacity: 1;
  visibility: visible;
  transform: translate(0, 0);
}
.block-header-wrapper-language-swap a {
  background-color: #414042;
  width: 40px;
  height: 40px;
  margin: 1.5px 0;
  padding-top: 2px;
  color: #ffffff;
  border-radius: 999px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.block-header-wrapper-language-swap a:hover {
  color: #988C63;
}
.block-header-quote {
  font-size: 18px;
  margin: 0;
  padding-right: 16px;
}

.block-hero {
  height: 84vh;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 50% 50%;
  position: relative;
  border-bottom: 4px solid #988C63;
}
.block-hero-card {
  position: absolute;
  right: 0;
  top: 20vh;
  width: 576px;
  padding: 16px 100px 16px 32px;
  color: #ffffff;
  text-transform: uppercase;
  background-color: #988C63;
}

.block-product-range__items {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
}
.block-product-range__item {
  text-align: center;
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  padding: 30px 20px;
  transition: all 0.3s ease;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.block-product-range__image {
  width: 240px;
  height: 240px;
}
.block-product-range__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.block-product-range__item-title {
  color: #1A1818;
  font-size: 1rem;
  font-weight: 400;
  margin: 0;
  text-transform: capitalize;
}

.block-banner .container {
  display: flex;
}

.theme-shopable {
  padding: 50px 0 180px 0;
}
.theme-shopable h2 {
  text-align: center;
  padding-bottom: 80px;
}
.theme-shopable-single-block {
  padding-bottom: 100px;
}
.theme-shopable-double-block {
  padding: 100px 0 50px 0;
}
.theme-shopable-double-block .theme-shopable-wrapper-side-content-image img {
  height: 600px;
}
.theme-shopable-grid {
  margin: 0 -15px 0 -15px;
}
.theme-shopable-grid-sizer {
  width: 50%;
}
.theme-shopable-grid-item {
  float: left;
  width: 50%;
  padding: 0 16px;
}
.theme-shopable-wrapper {
  display: flex;
  justify-content: space-between;
}
.theme-shopable-wrapper-side-content {
  box-shadow: 0px 10px 40px rgba(158, 150, 143, 0.47);
  margin-bottom: 30px;
  position: relative;
}
.theme-shopable-wrapper-side-content-points-point {
  display: flex;
  align-items: center;
  position: absolute;
  cursor: pointer;
  z-index: 10;
  transition: 0.2s cubic-bezier(0.65, 0.05, 0.36, 1);
  top: 0;
  left: 0;
}
.theme-shopable-wrapper-side-content-points-point:hover {
  z-index: 20;
}
.theme-shopable-wrapper-side-content-points-point:hover .theme-shopable-wrapper-side-content-points-point-image {
  background-color: #1f2b7c;
}
.theme-shopable-wrapper-side-content-points-point:hover .theme-shopable-wrapper-side-content-points-point-product {
  opacity: 1;
  scale: 1;
  visibility: visible;
  margin: 0;
}
.theme-shopable-wrapper-side-content-points-point:hover.theme-shopable-wrapper-side-content-points-point {
  padding: 20px;
  margin: -20px 0 0 -20px;
}
.theme-shopable-wrapper-side-content-points-point-image {
  padding: 5px;
  background-color: #BCBFAF;
  display: inline-flex;
}
.theme-shopable-wrapper-side-content-points-point-image img {
  width: 26px;
  height: 26px;
  filter: invert(100%) sepia(100%) saturate(2%) hue-rotate(302deg) brightness(103%) contrast(101%);
}
.theme-shopable-wrapper-side-content-points-point-product {
  position: absolute;
  background-color: #BCBFAF;
  padding: 25px 22px 22px 18px;
  visibility: hidden;
  scale: 1.02;
  opacity: 0;
  margin: 0 0 15px 5px;
}
.theme-shopable-wrapper-side-content-points-point-product-errow {
  text-align: right;
}
.theme-shopable-wrapper-side-content-points-point-product-errow img {
  rotate: 180deg;
  transform: scaleX(-1);
  filter: invert(22%) sepia(61%) saturate(1752%) hue-rotate(195deg) brightness(102%) contrast(102%);
  width: 12px;
  position: absolute;
  top: 7.5px;
  right: 8px;
}
.theme-shopable-wrapper-side-content-points-point-product-content {
  display: flex;
  align-items: center;
}
.theme-shopable-wrapper-side-content-points-point-product-content-left {
  margin-right: 13px;
  height: 80px;
  transition: 0.2s cubic-bezier(0.65, 0.05, 0.36, 1);
}
.theme-shopable-wrapper-side-content-points-point-product-content-left img {
  height: 100%;
  width: 80px;
  -o-object-fit: contain;
     object-fit: contain;
}
.theme-shopable-wrapper-side-content-points-point-product-content-right-title {
  padding-bottom: 4px;
  margin: 7.5px 0 11px 0;
  width: 185px;
  color: #1f2b7c;
  border-bottom: 2px solid #1f2b7c;
  font-weight: 900;
  display: inline-flex;
  line-height: 1.2;
  word-break: break-word;
}
.theme-shopable-wrapper-side-content-points-point-product-content-right-title.no-undeline {
  padding: 0;
  border-bottom: none;
  margin: 0;
}
.theme-shopable-wrapper-side-content-points-point-product-content-right-text {
  overflow-y: hidden;
  height: 38px;
  font-size: 12px;
  color: #1A1818;
}
.theme-shopable-wrapper-side-content-points-point-product_position-right-top {
  transform: translateY(calc(50% - 18px)) translateX(55px);
}
.theme-shopable-wrapper-side-content-points-point-product_position-right-bottom {
  transform: translateY(calc(-50% + 18px)) translateX(55px);
}
.theme-shopable-wrapper-side-content-points-point-product_position-left-top {
  transform: translateY(calc(50% - 18px)) translateX(-100%) translateX(-13px);
}
.theme-shopable-wrapper-side-content-points-point-product_position-left-bottom {
  transform: translateY(calc(-50% + 18px)) translateX(-100%) translateX(-13px);
}
.theme-shopable-wrapper-side-content-points-point-product_position-center-top {
  transform: translateX(-50%) translateY(-30px);
  left: 50%;
  bottom: 50%;
}
.theme-shopable-wrapper-side-content-points-point-product_position-center-bottom {
  transform: translateX(-50%) translateY(30px);
  left: 50%;
  top: 50%;
}
.theme-shopable-wrapper-side-content-points-point-product:hover .theme-shopable-wrapper-side-content-points-point-product-content-left {
  scale: 1.08;
}

.theme-cta {
  position: relative;
  padding: 134px 0 115px 0;
  background-color: #ffffff;
  font-size: 18px;
  overflow: auto;
}
.theme-cta::after {
  content: "";
  position: absolute;
  background-image: url(../img/white-curved-lines.svg);
  top: 0;
  right: 0;
  width: 586px;
  height: 414px;
  background-repeat: no-repeat;
  filter: invert(20%) sepia(80%) saturate(1908%) hue-rotate(202deg) brightness(94%) contrast(95%);
}
.theme-cta-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 10;
}
.theme-cta-wrapper h1 {
  color: #978E68;
  text-align: center;
  font-weight: 400;
}
.theme-cta-wrapper-content {
  text-align: center;
  padding: 15px 0 32px 0;
}
.theme-cta-wrapper-cards {
  display: flex;
}
.theme-cta-wrapper-cards-left {
  margin-right: 32px;
  width: 430px;
}
.theme-cta-wrapper-cards-left-title {
  font-size: 15px;
  background-color: #978E68;
  color: #ffffff;
  text-align: center;
  padding: 12px 0;
  text-transform: uppercase;
}
.theme-cta-wrapper-cards-left-link {
  background-color: #f4f3ef;
  color: #978E68;
  display: flex;
  justify-content: center;
  padding: 20px 0px;
}
.theme-cta-wrapper-cards-right {
  width: 430px;
}
.theme-cta-wrapper-cards-right-title {
  font-size: 15px;
  background-color: #978E68;
  color: #ffffff;
  text-align: center;
  padding: 12px 0;
  text-transform: uppercase;
}
.theme-cta-wrapper-cards-right-link {
  background-color: #f4f3ef;
  color: #978E68;
  display: flex;
  justify-content: center;
  padding: 20px 0px;
}
.theme-cta-wrapper-cards a {
  color: #978E68;
  font-size: 22px;
  text-decoration: none;
  position: relative;
  display: flex;
  align-items: center;
}
.theme-cta-wrapper-cards a:hover {
  text-decoration: underline;
}

.theme-footer {
  background-color: #f4f3ef;
  color: #221F20;
  font-size: 18px;
}
.theme-footer .container:first-of-type {
  content: "";
}
.theme-footer a {
  color: #221F20;
}
.theme-footer a:hover {
  color: #ffffff;
}
.theme-footer-top .row {
  row-gap: 30px;
}
.theme-footer-top-content-logo {
  width: 145px;
  display: block;
}
.theme-footer-top-content-quote {
  font-size: 16px;
  padding: 34px 0 20px 0;
  max-width: 260px;
}
.theme-footer-top-content-socials a {
  margin-right: 12px;
  display: inline-flex;
}
.theme-footer-top-content-socials a:last-of-type {
  margin: 0;
}
.theme-footer-top-content-socials a i {
  padding: 10px;
  background-color: #DBD8D2;
  color: #1A1818;
  border-radius: 999px;
  text-align: center;
  width: 38px;
}
.theme-footer-top-content-socials a:hover {
  scale: 1.1;
}
.theme-footer-top-menu-title {
  font-size: 28px;
  font-weight: 900;
  padding: 12px 0 28px 0;
}
.theme-footer-top-menu-links ul {
  list-style: none;
}
.theme-footer-top-menu-links-assortiment {
  display: flex;
  flex-wrap: wrap;
}
.theme-footer-top-menu-links-assortiment-link {
  line-height: 2;
  width: 33.33%;
}
.theme-footer-top-menu-contact {
  line-height: 2;
}
.theme-footer-top-menu-contact p {
  margin: 0;
}

@media screen and (max-width: 992px) {
  .block-footer__grid {
    flex-wrap: wrap;
  }
  .block-footer__grid-item {
    width: 50%;
    padding: 16px 0;
  }
}
@media screen and (max-width: 568px) {
  .block-footer__grid-item {
    width: 100%;
  }
  .block-footer__bottom-wrapper {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    flex-wrap: nowrap;
    height: unset;
  }
  .block-footer__bottom-terms, .block-footer__bottom-privacy, .block-footer__bottom-cookie {
    border-color: transparent;
    margin: 4px 0;
  }
}/*# sourceMappingURL=style.css.map */