@font-face {
  font-family: Muller;
  src: url(../fonts/MullerLight.woff);
  font-weight: 300;
}
@font-face {
  font-family: Muller;
  src: url(../fonts/MullerRegular.woff);
  font-weight: 400;
}
@font-face {
  font-family: Muller;
  src: url(../fonts/MullerMedium.woff);
  font-weight: 500;
}
* {
  margin: 0;
  padding: 0;
  outline: none;
  text-decoration: none;
  box-sizing: border-box;
  border-collapse: collapse;
}
body {
  font-family: Muller;
  font-weight: 300;
  overflow-x: hidden;
}
ul {
  padding-left: 17px;
}
.holder {
  max-width: 1295px;
  margin: 0 auto;
  padding: 0 15px;
  width: 100%;
}
.flex-container {
  display: flex;
}
.btn {
  user-select: none;
  white-space: nowrap;
  color: #fff;
  border: 2px solid #C8B58B;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
  padding: 10px 35px 7px;
  text-transform: uppercase;
  font-family: Muller;
  font-weight: 300;
  font-size: 16px;
  position: relative;
  background: transparent;
  z-index: 0;
}
.btn:before {
  content: '';
  left: 0;
  top: 0;
  height: 100%;
  background: #C8B58B;
  width: 100%;
  transition: all 0.3s ease;
  position: absolute;
  z-index: -1;
}
.btn:hover:before {
  width: 0%;
}
.btn.btn-stroke {
  color: #C8B58B;
}
.btn.btn-stroke:before {
  width: 0%;
}
.btn.btn-stroke:hover {
  color: #fff;
}
.btn.btn-stroke:hover:before {
  width: 100%;
}
h1,
h2,
h3,
h4 {
  font-family: 'Playfair Display', serif;
}
.dark-bg {
  backdrop-filter: blur(1px);
  position: fixed;
  top: 0;
  left: 0;
  background: #00000042;
  height: 100vh;
  width: 100vw;
  z-index: 9998;
  display: none;
}
.mobile-nav {
  position: fixed;
  left: 0;
  top: 0;
  padding: 30px;
  z-index: 9999;
  background: #fff;
  height: 100vh;
  box-shadow: 8px 0 10px 0px #0000001a;
  display: flex;
  flex-direction: column;
  align-items: center;
  transform: translateX(-400px);
  transition: all 0.3s ease;
  width: 250px;
}
.mobile-nav.active {
  transform: translateX(0px);
}
.mobile-nav div > ul {
  padding-left: 0;
}
.mobile-nav div > ul > li > a {
  font-weight: 500;
}
.mobile-nav ul {
  list-style: none;
}
.mobile-nav ul li a {
  color: #000;
  padding: 5px;
  display: block;
}
.mobile-nav ul li a svg {
  vertical-align: middle;
}
.mobile-nav img {
  margin-bottom: 30px;
}
header {
  padding-bottom: 20px;
  background: #fff;
  width: 100%;
  transition: transform .3s ease;
}
header.inner {
  margin-bottom: 20px;
  border-bottom: 1px solid #C8B58B;
}
header .burger {
  display: none;
  cursor: pointer;
  flex-direction: column;
  align-items: center;
}
header .burger span {
  background: #0000009e;
  width: 29px;
  height: 2px;
  margin-bottom: 5px;
  transition: all 0.2s ease-in-out;
}
header .burger span:last-child {
  margin: 0;
}
header .burger span:nth-child(2) {
  width: 21px;
}
header .burger.active span:nth-child(1) {
  transform: rotate(45deg) translateY(7px) translateX(2px);
}
header .burger.active span:nth-child(2) {
  display: none;
}
header .burger.active span:nth-child(3) {
  transform: rotate(-45deg) translateY(-5px);
}
header .flex-container {
  justify-content: space-between;
  align-items: flex-start;
  padding: 20px 0;
}
header .flex-container .item {
  width: 100%;
}
header .flex-container .item:nth-child(1) div:not(.burger) {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
}
header .flex-container .item:nth-child(1) div:not(.burger) span {
  margin-left: 10px;
  font-size: 14px;
}
header .flex-container .item:nth-child(1) div:not(.burger) span a {
  color: #000;
}
header .flex-container .item:nth-child(2) a {
  display: block;
  max-width: 150px;
  margin: 0 auto;
}
header .flex-container .item:nth-child(2) a img {
  width: 100%;
}
header .flex-container .item:nth-child(2) a svg {
  display: none;
}
header .flex-container .item:nth-child(3) {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  font-size: 16px;
  font-weight: 400;
  color: #000;
}
header .flex-container .item:nth-child(3) a {
  color: #000;
  margin-left: 30px;
  transition: all 0.2s ease;
}
header .flex-container .item:nth-child(3) a svg path {
  transition: all 0.2s ease;
}
header .flex-container .item:nth-child(3) a:hover {
  color: #C8B58B;
  cursor: pointer;
}
header .flex-container .item:nth-child(3) a:hover svg path {
  fill: #C8B58B;
}
nav {
  margin-top: 5px;
}
nav ul {
  list-style: none;
}
nav ul li a {
  color: #000;
  transition: all 0.2s ease;
  font-size: 16px;
  padding: 5px;
}
nav ul li a:hover {
  color: #C8B58B;
}
nav > ul {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 912px;
  margin: 0 auto;
}
nav > ul a svg {
  vertical-align: middle;
  transition: all 0.2s ease;
}
nav > ul a:hover svg {
  transform: rotate(180deg);
}
nav > ul a:hover svg path {
  fill: #C8B58B;
}
nav > ul li {
  position: relative;
}
nav > ul li ul {
  position: absolute;
  left: 0;
  top: 21px;
  background: #fff;
  border-top: 1px solid #C8B58B;
  padding: 5px;
  visibility: hidden;
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.3s ease;
  z-index: 99;
}
nav > ul li ul a {
  padding: 5px;
  display: block;
  white-space: nowrap;
}
nav > ul li:hover ul {
  visibility: visible;
  opacity: 1;
  transform: none;
}
.preloader {
  background: #fff;
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  /* display: none; */
}
.preloader-container {
  width: 130px;
  height: 130px;
  position: relative;
}
.preloader img:first-child {
  animation: preloader 7s linear infinite;
}
.preloader img:last-child {
  top: 19px;
  left: 19px;
  display: block;
  position: absolute;
}
@keyframes preloader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
section.home-banner {
  margin-bottom: 80px !important;
}
section.home-banner a {
  position: relative;
  display: flex !important;
  align-items: center;
  flex-direction: column;
}
section.home-banner a span {
  position: relative;
  left: 0;
  bottom: calc(100vh / 6);
  display: block;
  margin-bottom: -37px;
  padding: 13px 35px 10px;
}
section.home-banner img {
  width: 100%;
  height: calc(100vh - 176px);
  object-fit: cover;
  content-visibility: auto;
}
section.home-banner .slick-dots {
  bottom: 20px;
}
section.home-banner .slick-dots li button:before {
  border: 1px solid #fff;
  border-radius: 100%;
  opacity: 1;
  width: 14px;
  height: 14px;
  content: '';
}
section.home-banner .slick-dots li:hover button:before {
  background: #ffffff91;
}
section.home-banner .slick-dots li.slick-active button:before,
section.home-banner .slick-dots li.slick-active:hover button:before {
  opacity: 1;
  background: #fff;
}
section.banner-collection {
  margin-bottom: 120px;
}
section.banner-collection .holder {
  display: flex;
  flex-direction: column;
  align-items: center;
}
section.banner-collection img {
  width: 100%;
  content-visibility: auto;
}
section.banner-collection a {
  display: block;
  margin-top: -37px;
  transform: translateY(-50px);
}
section.catalog-slider-container {
  margin-bottom: 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
section.catalog-slider-container > .btn {
  display: block;
  margin-top: 50px;
}
section.catalog-slider-container .header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}
section.catalog-slider-container .header .title {
  font-size: 24px;
}
section.catalog-slider-container .header .navigation {
  display: flex;
  align-items: center;
}
section.catalog-slider-container .header .navigation svg {
  cursor: pointer;
}
section.catalog-slider-container .header .navigation svg:nth-child(1) {
  margin-right: 40px;
  transition: all 0.2s ease;
}
section.catalog-slider-container .header .navigation svg:nth-child(1) path {
  transition: all 0.2s ease;
}
section.catalog-slider-container .header .navigation svg:nth-child(1):hover {
  transform: translateX(-3px);
}
section.catalog-slider-container .header .navigation svg:nth-child(1):hover path {
  fill: #000;
}
section.catalog-slider-container .header .navigation svg:nth-child(2) {
  transition: all 0.2s ease;
}
section.catalog-slider-container .header .navigation svg:nth-child(2) path {
  fill: #C8B58B;
  transition: all 0.2s ease;
}
section.catalog-slider-container .header .navigation svg:nth-child(2) circle {
  fill: #fff;
  transition: all 0.2s ease;
}
section.catalog-slider-container .header .navigation svg:nth-child(2):hover {
  transform: translateX(3px);
}
section.catalog-slider-container .header .navigation svg:nth-child(2):hover path {
  fill: #000;
}
section.catalog-slider-container .header .navigation svg:nth-child(2):hover circle {
  fill: #C8B58B;
}
section.catalog-slider-container .catalog-slider {
  width: calc(100% + 14px);
  margin-left: -7px;
}
section.catalog-slider-container .slide {
  margin: 0 7px;
}
section.catalog-slider-container .slide > a:first-child {
  display: block;
  overflow: hidden;
  height: calc(100% - 126px);
  max-height: 459px;
}
section.catalog-slider-container .slide > a:first-child img {
  width: 100%;
  transition: all 1s ease;
  object-fit: cover;
  height: 100%;
  content-visibility: auto;
}
section.catalog-slider-container .slide > a:first-child:hover img {
  transform: scale(1.1);
}
section.catalog-slider-container .slide .info {
  display: flex;
  justify-content: space-between;
  padding: 15px;
  padding-bottom: 0;
}
section.catalog-slider-container .slide .info a {
  display: block;
  color: #000;
}
section.catalog-slider-container .slide .info a span {
  display: block;
}
section.catalog-slider-container .slide .info a span:nth-of-type(1) {
  font-size: 16px;
}
section.catalog-slider-container .slide .info a span:nth-of-type(2) {
  font-size: 20px;
  text-transform: uppercase;
  font-weight: 500;
  margin-top: 5px;
}
section.catalog-slider-container .slide .info a span:nth-of-type(3) {
  font-size: 18px;
  margin-top: 10px;
  font-weight: 400;
}
section.catalog-slider-container .slide .info svg {
  cursor: pointer;
  transition: all 0.2s ease;
}
section.catalog-slider-container .slide .info svg:hover {
  animation: pulse 0.5s linear forwards;
}
@keyframes pulse {
  0% {
    transform: scale(1.1);
  }
  50% {
    transform: scale(0.9);
  }
  100% {
    transform: scale(1.2);
  }
}
section.consultation {
  margin-bottom: 120px;
  background: url(../img/bg1.jpg) center / cover;
  background-attachment: fixed;
  height: 380px;
  display: flex;
  align-items: center;
}
section.consultation .title {
  font-weight: 500;
  font-size: 64px;
  color: #fff;
  text-align: center;
}
section.consultation form {
  justify-content: center;
  margin-top: 35px;
  display: flex;
}
section.consultation form input {
  margin-right: 10px;
  font-size: 16px;
  text-align: center;
  font-family: Muller;
  font-weight: 400;
  border: 0;
}
section.consultation form button {
  font-size: 16px;
  /* padding-bottom: 11px; */
}
section.collection-info {
  margin-bottom: 120px;
}
section.collection-info .holder {
  display: flex;
  align-items: center;
}
section.collection-info .holder img {
  width: 50%;
}
section.collection-info .holder .info {
  margin-left: 40px;
  padding-left: 75px;
  border-left: 1px solid #C8B58B;
}
section.collection-info .holder .info span {
  font-weight: 500;
  font-size: 20px;
  color: #C8B58B;
}
section.collection-info .holder .info .title {
  font-family: 'Playfair Display';
  font-size: 64px;
  margin-top: 10px;
  margin-bottom: 30px;
}
section.collection-info .holder .info p {
  font-size: 24px;
  margin-bottom: 50px;
  max-width: 400px;
  line-height: 31px;
}
section.collection-info .holder .info .btn {
  display: inline-block;
}
section.sale {
  background: url(../img/sale-bg.jpg) center top / cover;
  padding: 40px 0;
  margin-bottom: 120px;
}
section.sale .holder {
  display: flex;
  justify-content: flex-end;
}
section.sale .holder > div {
  text-align: center;
  width: 50%;
  min-width: 540px;
}
section.sale .holder > div .title {
  color: #fff;
  font-family: 'Playfair Display';
  font-size: 90px;
  margin-bottom: 30px;
}
section.sale .holder > div p {
  color: #fff;
  font-weight: 500;
  font-size: 48px;
  margin-bottom: 60px;
}
section.sale .holder > div .links {
  display: flex;
  justify-content: space-between;
}
section.sale .holder > div .links a {
  font-size: 16px;
  color: #000;
  border-bottom: 1px solid #000;
}
section.sale .holder > div .links a:hover {
  border-color: transparent;
}
section.bonus {
  background: url(../img/bg2.jpg) center top / cover;
  background-attachment: fixed;
  padding: 80px 0 100px;
  margin-bottom: 120px;
}
section.bonus .title {
  color: #fff;
  font-weight: 500;
  font-size: 36px;
  margin-bottom: 70px;
  text-align: center;
}
section.bonus .flex-container {
  justify-content: center;
}
section.bonus .flex-container .item {
  margin: 0 30px;
}
section.bonus .flex-container .item span {
  display: block;
  text-align: center;
  margin-top: 20px;
  color: #fff;
  font-weight: 500;
  font-size: 20px;
}
section.bonus .flex-container .item svg circle {
  transition: all 0.4s cubic-bezier(0.59, 0.01, 0.39, 1.76);
}
section.bonus .flex-container .item svg circle:first-child {
  transition: all 0.3s cubic-bezier(0.18, 0.95, 0.93, 0.56);
}
section.bonus .flex-container .item:hover svg circle {
  transform: scale(0.92) translate(8px, 8px);
}
section.home-page-video {
  margin-bottom: 120px;
  position: relative;
  z-index: 102;
  background: #fff;
  padding-top: 80px;
}
section.home-page-video .title {
  text-align: center;
  font-weight: 500;
  font-size: 36px;
  margin-bottom: 60px;
}
section.home-page-video iframe {
  width: 100%;
  display: block;
  margin: 0 auto;
  max-width: 1016px;
  height: 572px;
}
section.footer-form {
  margin-bottom: 120px;
}
section.footer-form .holder {
  display: flex;
}
section.footer-form .holder img {
  width: 50%;
}
section.footer-form .holder > div {
  width: 50%;
  background: #F2F2F2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
section.footer-form .holder > div .title {
  font-weight: 300;
  font-size: 36px;
  line-height: 47px;
  margin-bottom: 30px;
  min-width: 451px;
  text-align: center;
}
section.footer-form .holder > div form {
  min-width: 451px;
  display: flex;
  flex-direction: column;
}
section.footer-form .holder > div form input,
section.footer-form .holder > div form textarea {
  margin-bottom: 10px;
  resize: vertical;
  max-height: 230px;
  font-size: 16px;
  font-family: Muller;
  font-weight: 400;
  border: 0;
  padding: 13px 20px;
  border-bottom: 2px solid transparent;
  transition: all 0.3s ease;
}
section.footer-form .holder > div form input:focus,
section.footer-form .holder > div form textarea:focus {
  border-color: #C8B58B;
}
section.footer-form .holder > div form textarea {
  min-height: 120px;
}
section.footer-form .holder > div form .btn:hover {
  color: #C8B58B;
}
footer .header {
  background: #000;
  padding: 25px 0 30px;
}
footer .header .holder {
  display: flex;
  align-items: center;
}
footer .header .holder > div {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
footer .header .holder > div span {
  font-weight: 500;
  font-size: 20px;
  text-align: center;
  color: #C8B58B;
  margin-bottom: 25px;
}
footer .header .holder > div div {
  display: flex;
  align-items: center;
}
footer .header .holder > div div a {
  display: block;
  margin: 0 15px;
  transition: all 0.2s ease;
}
footer .header .holder > div div a:hover {
  filter: brightness(2);
}
footer .info {
  padding: 80px 0 60px;
}
footer .info .footer-accordeon {
  display: none;
  margin-bottom: 50px;
}
footer .info .footer-accordeon .item {
  margin-bottom: 15px;
  border-bottom: 1px solid #dadada;
  padding-bottom: 10px;
}
footer .info .footer-accordeon .item .nav {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}
footer .info .footer-accordeon .item .nav .title {
  font-weight: 500;
  font-size: 20px;
  margin-right: 5px;
  transition: all 0.2s ease;
}
footer .info .footer-accordeon .item .content {
  display: none;
}
footer .info .footer-accordeon .item .content a {
  font-weight: 300;
  font-size: 16px;
  color: #000;
  margin-bottom: 5px;
  display: block;
}
footer .info .footer-accordeon .item .content a:last-child {
  margin-bottom: 0;
}
footer .info .footer-accordeon .item .content a:hover {
  text-decoration: underline;
}
footer .info .footer-accordeon .item svg {
  transition: all 0.2s ease;
}
footer .info .footer-accordeon .item.active .title {
  color: #C8B58B;
}
footer .info .footer-accordeon .item.active svg {
  transform: rotate(180deg);
}
footer .info .footer-accordeon .item.active svg path {
  fill: #C8B58B;
}
footer .info .flex-container {
  justify-content: space-between;
  flex-wrap: wrap;
}
footer .info .flex-container .item {
  margin: 0 5px 20px;
}
footer .info .flex-container .item .title {
  font-weight: 500;
  font-size: 20px;
  margin-bottom: 25px;
}
footer .info .flex-container .item a,
footer .info .flex-container .item span {
  font-weight: 300;
  font-size: 16px;
  color: #000;
  margin-bottom: 23px;
  display: block;
  line-height: 21px;
}
footer .info .flex-container .item a:last-child,
footer .info .flex-container .item span:last-child {
  margin-bottom: 0;
}
footer .info .flex-container .item a:hover {
  text-decoration: underline;
}
footer .info .flex-container .item:nth-child(4) > div:first-child,
footer .info .flex-container .item:nth-child(5) > div:first-child {
  margin-bottom: 50px;
}
footer .footer {
  padding-bottom: 30px;
}
footer .footer .holder {
  display: flex;
  justify-content: space-between;
}
footer .footer .holder span,
footer .footer .holder a {
  font-weight: 300;
  font-size: 16px;
  color: #000;
}
.modalq-wrapper {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(5px);
  z-index: 9999;
  display: none;
}
.modalq-wrapper .modalq {
  display: none;
  position: relative;
}
.modalq-wrapper .modalq [modalq-close] {
  position: absolute;
  right: 0px;
  top: 0px;
  cursor: pointer;
  user-select: none;
}
.modalq-wrapper .modalq form {
  display: flex;
  flex-direction: column;
}
section.about-banner {
  background: url(../img/banner-about.jpg) center;
  background-size: cover;
  height: calc(100vh - 176px);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex-direction: column;
  margin-bottom: 80px;
  padding-top: 100px;
}
section.about-banner .title {
  font-size: 64px;
  font-family: Playfair Display;
  margin-bottom: 1px;
}
section.about-banner span {
  font-weight: 300;
  font-size: 24px;
  margin-bottom: 60px;
}
section.advantages {
  margin-bottom: 120px;
}
section.advantages .holder {
  display: flex;
  flex-direction: column;
  align-items: center;
}
section.advantages .holder .btn {
  margin-top: 50px;
  display: inline-block;
}
section.advantages .holder .btn:hover {
  color: #C8B58B;
}
section.advantages .holder > .title {
  font-weight: 500;
  font-size: 36px;
  margin-bottom: 60px;
  text-align: center;
}
section.advantages .flex-container .item {
  width: calc(100% / 3 - 30px);
  margin: 0 15px;
}
section.advantages .flex-container .item .title {
  text-align: center;
  font-weight: 500;
  font-size: 24px;
  max-width: 300px;
  margin: 0 auto;
}
section.advantages .flex-container .item span {
  display: block;
  width: 100px;
  background: #C8B58B;
  margin: 15px auto;
  height: 1px;
}
section.advantages .flex-container .item p {
  margin-bottom: 30px;
  line-height: 130%;
  font-size: 16px;
}
section.advantages .flex-container .item img {
  display: block;
  width: 100%;
}
section.complex-about {
  margin-bottom: 120px;
}
section.complex-about .holder {
  display: flex;
  flex-direction: column;
  align-items: center;
}
section.complex-about .holder > .title {
  font-weight: 500;
  font-size: 36px;
  margin-bottom: 60px;
  max-width: 780px;
  text-align: center;
}
section.complex-about .flex-container .item {
  width: calc(100% / 3 - 14px);
  margin: 0 7px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
section.complex-about .flex-container .item .title {
  text-align: center;
  font-weight: 500;
  font-size: 24px;
}
section.complex-about .flex-container .item img {
  display: block;
  width: 100%;
  margin-bottom: 30px;
}
section.complex-about .flex-container .item .btn {
  margin-bottom: 10px;
  min-width: 270px;
  text-align: center;
}
section.complex-about .flex-container .item .btn:last-child {
  margin-bottom: 0;
}
section.complex-about .flex-container .item .btn:hover {
  color: #C8B58B;
}
section.last-blog {
  margin-bottom: 120px;
}
section.last-blog .holder {
  display: flex;
  flex-direction: column;
  align-items: center;
}
section.last-blog .holder > .title {
  font-weight: 500;
  font-size: 36px;
  margin-bottom: 60px;
  text-align: center;
}
section.last-blog .flex-container .item {
  width: calc(100% / 3 - 14px);
  margin: 0 7px;
}
section.last-blog .flex-container .item a:first-child {
  display: block;
  overflow: hidden;
}
section.last-blog .flex-container .item a:first-child img {
  transition: all 5s ease;
  display: block;
  width: 100%;
}
section.last-blog .flex-container .item .title {
  font-size: 24px;
  margin-top: 30px;
  margin-bottom: 20px;
  display: block;
  color: #000;
}
section.last-blog .flex-container .item p {
  margin-bottom: 30px;
  line-height: 130%;
  font-size: 16px;
  margin-bottom: 20px;
}
section.last-blog .flex-container .item a:last-child {
  font-weight: 300;
  font-size: 16px;
  color: #C8B58B;
  border-bottom: 1px solid #C8B58B;
  transition: all 0.3s ease;
}
section.last-blog .flex-container .item a:last-child:hover {
  border-color: transparent;
}
section.last-blog .flex-container .item:hover a img {
  transform: scale(1.3);
}
section.socq-block {
  display: flex;
  margin-bottom: 120px;
}
section.socq-block img {
  width: 50%;
}
section.socq-block > div {
  text-align: center;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  background: url(../img/soq-bg2-about.jpg) center;
  background-size: cover;
  align-items: center;
  width: 50%;
}
section.socq-block > div .title {
  font-family: Playfair Display;
  font-size: 64px;
  color: #fff;
}
section.socq-block > div p {
  font-weight: 500;
  font-size: 24px;
  color: #fff;
  max-width: 600px;
  margin: 15px 0;
}
section.socq-block > div div {
  max-width: 500px;
  display: flex;
  justify-content: space-around;
  width: 100%;
}
section.socq-block > div div a {
  margin: 0 15px;
}
section.socq-block > div div a span {
  display: block;
  text-align: center;
  font-weight: 500;
  font-size: 20px;
  color: #C8B58B;
  margin-top: 20px;
}
section.footer-form.contacts .holder {
  background: transparent !important;
}
section.footer-form.contacts .holder > div:first-child {
  background: transparent;
  justify-content: space-between;
  align-items: flex-start;
}
section.footer-form.contacts .holder > div:first-child .title {
  font-family: Playfair Display;
  text-align: left;
  color: #C8B58B;
  font-size: 64px;
}
section.footer-form.contacts .holder > div:first-child .item {
  display: flex;
  align-items: center;
}
section.footer-form.contacts .holder > div:first-child .item div {
  padding-left: 15px;
  margin-left: 15px;
  border-left: 1px solid #C8B58B;
}
section.footer-form.contacts .holder > div:first-child .item div span {
  display: block;
  font-weight: 500;
  font-size: 24px;
  margin-bottom: 20px;
  text-align: left;
  max-height: 643px;
}
section.footer-form.contacts .holder > div:first-child .item div p {
  text-align: left;
}
section.footer-form.contacts .holder > div:first-child .item div p a {
  color: #000;
}
section.footer-form.contacts .holder > div:last-child {
  padding: 30px 80px;
}
section.footer-form.contacts .holder > div:last-child .title {
  text-align: left;
  margin-bottom: 20px;
}
section.footer-form.contacts .holder > div:last-child form {
  width: 100%;
}
section.footer-form.contacts .holder > div:last-child p {
  font-weight: 300;
  font-size: 16px;
  margin-bottom: 30px;
}


.cc-cookie-accept span {
  color: #000;
  text-shadow: none;
}
.cc-cookie-accept:hover span {
  color: #fff;
}

section.seo-text {
  padding: 50px 0;
}
section.seo-text * {
  font-family: Muller;
  font-size: 16px;
}
section.seo-text h1 {
  color: #C8B58B;
  text-align: center;
  font-family: Playfair Display;
  font-size: 36px;
  margin-bottom: 30px;
  font-weight: normal;
}
section.categotyes1 ~ section.seo-text h2 *,
section.categotyes1 ~ section.seo-text h3 *,
section.categotyes1 ~ section.seo-text h4 *,
section.categotyes1 ~ section.seo-text h5 *,
section.catalog-slider-container ~ section.seo-text h2 *,
section.catalog-slider-container ~ section.seo-text h3 *,
section.catalog-slider-container ~ section.seo-text h4 *,
section.catalog-slider-container ~ section.seo-text h5 * {
  margin-top: -10px;
}
section.categotyes1 ~ section.seo-text h2,
section.categotyes1 ~ section.seo-text h3,
section.categotyes1 ~ section.seo-text h4,
section.categotyes1 ~ section.seo-text h5,
section.categotyes1 ~ section.seo-text h2 *,
section.categotyes1 ~ section.seo-text h3 *,
section.categotyes1 ~ section.seo-text h4 *,
section.categotyes1 ~ section.seo-text h5 *,
section.catalog-slider-container ~ section.seo-text h2,
section.catalog-slider-container ~ section.seo-text h3,
section.catalog-slider-container ~ section.seo-text h4,
section.catalog-slider-container ~ section.seo-text h5,
section.catalog-slider-container ~ section.seo-text h2 *,
section.catalog-slider-container ~ section.seo-text h3 *,
section.catalog-slider-container ~ section.seo-text h4 *,
section.catalog-slider-container ~ section.seo-text h5 * {
  color: #000;
  text-align: left;
  font-size: 24px;
}
.cc-cookies:before {
  background: #000000b5 !important;
  opacity: 1 !important;
  backdrop-filter: blur(10px) !important;
}
section.categotyes1 h1 {
  color: #C8B58B;
  font-family: Playfair Display;
  font-weight: normal;
  font-size: 64px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
section.categotyes1 h1:after {
  content: '';
  background: #C8B58B;
  width: 80px;
  height: 1px;
  margin-top: 15px;
  margin-bottom: 35px;
}
section.seo-text img {
  max-width: 100%;
}
footer {
  margin-top: 0;
  padding-top: 0;
  background-color: #fff;
  border: 0;
  color: initial;
}
section.category-banner {
  height: 50vh;
  padding-top: 30px;
  position: relative;
  margin-bottom: 50px;
}
section.category-banner:before {
  content: '';
  position: absolute;
  background: rgba(0, 0, 0, 0.3);
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
}
section.category-banner .title {
  position: relative;
  margin-bottom: 30px;
  color: #fff;
}
section.category-banner span {
  color: #fff;
  position: relative;
  max-width: 707px;
  margin: 0 auto;
  line-height: 30px;
}
section.categotyes1 .flex-container {
  flex-wrap: wrap;
}
section.categotyes1 .flex-container .item {
  margin: 15px;
  width: calc(50% - 30px);
  margin-bottom: 80px;
}
section.categotyes1 .flex-container .item > a {
  display: block;
  overflow: hidden;
  height: calc(100% - 94px);
}
section.categotyes1 .flex-container .item > a img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 5s linear;
}
section.categotyes1 .flex-container .item:hover > a img {
  transform: scale(1.2);
}
section.categotyes1 .flex-container .item > div {
  margin-top: 20px;
  display: flex;
  justify-content: center;
}
section.categotyes1 .flex-container .item > div > span {
  border-right: 1px solid #C8B58B;
  margin-right: 10px;
  padding-right: 10px;
  display: flex;
  align-items: center;
  color: #C8B58B;
  font-family: Muller;
  font-weight: 300;
  font-size: 16px;
}
section.categotyes1 .flex-container .item > div a {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
section.categotyes1 .flex-container .item > div a span:nth-child(1) {
  color: #C8B58B;
  font-family: Muller;
  font-weight: 500;
  font-size: 20px;
  line-height: 130%;
}
section.categotyes1 .flex-container .item > div a span:nth-child(2) {
  color: #000;
  font-family: Playfair Display;
  font-weight: normal;
  font-size: 36px;
  line-height: 48px;
}

section.catalog-slider-container .flex-container {
  flex-wrap: wrap;
}
section.catalog-slider-container .holder {
  padding: 0 7.5px;
}
section.catalog-slider-container .flex-container .slide {
  width: calc(25% - 14px);
  margin-bottom: 30px;
}
section.catalog-slider-container .flex-container .slide.big {
  width: calc(50% - 14px);
}
section.catalog-slider-container .slide .info a p.newsale {
  background: #000;
  color: #fff;
  text-transform: uppercase;
  padding: 7px 12px 4px;
  margin-bottom: 12px;
  display: inline-block;
  line-height: 12px;
  font-family: Muller;
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 2px;
}
section.catalog-slider-container .slide .info {
  min-height: 126px;
}
.slick-slide {
  height: auto;
}
.catalog-slider .slick-track {
  display: flex;
}

.pagination>li>a, .pagination>li>span {
  position: relative;
  float: none;
  padding: 0;
  margin-left: 0;
  line-height: 100%;
  color: #676767;
  text-decoration: none;
  background-color: #fff;
  border: 0;
}
.pagination>.active>a, .pagination>.active>a:focus, .pagination>.active>a:hover, .pagination>.active>span, .pagination>.active>span:focus, .pagination>.active>span:hover {
  color: #C8B58B;
  background-color: transparent;
  border-color: transparent;
}
.pagination>li>a:focus, .pagination>li>a:hover, .pagination>li>span:focus, .pagination>li>span:hover {
  color: #676767;
  background-color: transparent;
  border-color: transparent;
}
.pagination {
  display: flex;
  align-items: center;
  width: 189px;
  margin: 0 auto;
  justify-content: flex-end;
}
.pagination>li {
  color: #C8B58B;
  font-family: Muller;
  font-weight: normal;
  font-size: 18px;
  margin: 3px;
}
.pagination>li>a, .pagination>li>span, .pagination>li svg {
  display: block;
}
.pagination>li.active span {
  color: #C8B58B;
}
.pagination>li.separator span {
  color: #C8B58B;
}
.pagination>li.all {

}
.pagination>li.arrow {
  padding-bottom: 3px;
  transition: all .3s ease;
}
.pagination>li.arrow1 {
  margin-right: 30px;
}
.pagination>li.arrow2 {
  margin-left: 30px;
}
.pagination>li.arrow1:hover {
  transform: translateX(-5px);
}
.pagination>li.arrow path,
.pagination>li.arrow circle {
  transition: all .3s ease;
}
.pagination>li.arrow:hover path {
  fill: #000;
}
.pagination>li.arrow2:hover circle {
  fill: #C8B58B;
}
.pagination>li.arrow2:hover {
  transform: translateX(5px);
}
.ui-widget-content {
  border-radius: 0px !important;
  border: 0 !important;
}
.ui-slider-horizontal {
  height: 6px !important;
}
.ui-slider-horizontal .ui-slider-handle {
  top: -13px;
  margin-left: -.6em;
  border-radius: 100% !important;
  width: 30px;
  height: 30px;
  cursor: pointer;
}

section.user-settings {
  margin-bottom: 80px;
}
section.user-settings .holder > div {
  display: flex;
  align-items: center;
}
section.user-settings .holder {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
section.user-settings ul.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
}
section.user-settings .filters .filter-toggle span {
  user-select: none;
}
section.user-settings .breadcrumbs li:after {
  content: '/';
  font-family: Muller;
  font-weight: 300;
  font-size: 16px;
  margin: 0 5px;
}
section.user-settings .breadcrumbs li:last-child:after {
  display: none;
}
section.user-settings .sorts select {
  font-family: Muller;
  font-weight: 300;
  font-size: 16px;
  border: 0;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background: url(/catalog/view/theme/default/img/arrow.svg) no-repeat right -4px;
  padding-right: 33px;
  cursor: pointer;
}
section.user-settings .breadcrumbs li a {
  font-family: Muller;
  font-weight: 300;
  color: #000;
  font-size: 16px;
  transition: all .3s ease;
  text-decoration: none;
}
section.user-settings .breadcrumbs li a:hover {
  color: #C8B58B;
}
section.user-settings .filters .filter-toggle {
  display: flex;
  align-items: center;
  cursor: pointer;
  margin-left: 60px;
}
section.user-settings .filters .filter-toggle span {
  font-family: Muller;
  font-weight: 300;
  color: #000;
  font-size: 16px;
}
section.user-settings .filters .filter-toggle svg {
  margin-left: 13px;
}
section.user-settings .filters .filter-toggle svg path:nth-child(1) {
  transition: all .3s ease;
  transform-origin: center;
}
section.user-settings .filters .filter-toggle.active svg path:nth-child(1) {
  transform: rotate(90deg);
}
section.user-settings .filters {
  position: relative;
}
section.user-settings .filter-container {
  display: none;
  position: absolute;
  right: -1px;
  top: 28px;
  z-index: 999;
  box-shadow: -2px 8px 7px #00000021;
  background-color: #fff;
  width: 475px;
  padding: 30px;
}
section.user-settings .filter-container .ui-widget-content {
  border: 0 !important;
}
section.user-settings .filter-container .ui-corner-all {
  border-radius: 0 !important;
}
section.user-settings .filter-container .ui-slider-horizontal .ui-slider-handle {
  border-radius: 100% !important;
  top: -13px;
  margin-left: -13px;
  width: 30px;
  height: 30px;
  cursor: pointer;
}
section.user-settings .filter-container .panel {
  margin-bottom: 0;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}
section.user-settings .filter-container .panel div.list-group-item {
  padding: 0;
  margin: 0;
  margin-bottom: 40px;
  border: 0;
}
section.user-settings .filter-container .panel div.list-group-item > div {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
section.user-settings .filter-container .checkbox {
  margin-top: 0;
  width: 50%;
}
section.user-settings .filter-container .checkbox label {
  padding: 0;
  display: flex;
  align-items: center;
  transition: all .3s ease;
}
section.user-settings .filter-container .btn-container {
  display: flex;
}
section.user-settings .filter-container .btn-container .btn {
  display: block;
  text-decoration: none;
  width: 50%;
  margin-left: 8px;
  padding: 10px 7px 7px;
  text-align: center;
}
section.user-settings .filter-container .btn-container .btn:first-child {
  margin-left: 0;
  border-color: #828282;
}
section.user-settings .filter-container .btn-container .btn:first-child:before {
  background: #828282;
}
section.user-settings .filter-container .btn-container .btn:hover {
  color: #C8B58B;
}
section.user-settings .filter-container .btn-container .btn:first-child:hover {
  color: #828282;
}
section.user-settings .filter-container .price-input-container {
  margin: 23px 0 40px;
  display: flex;
  justify-content: space-between;
}
section.user-settings .filter-container  .price-input-container span,
section.user-settings .filter-container  .price-input-container input {
  font-family: Muller;
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  color: #000;
  border: 0;
  box-shadow: none;
  text-align: center;
}
section.user-settings .filter-container label svg {
  width: 50px;
  margin-right: 10px;
}
section.user-settings .filter-container label span {
  color: #000;
  font-family: Muller;
  font-style: normal;
  font-weight: 300;
  font-size: 14px;
}
section.user-settings .filter-container .checkbox label:hover span {
  font-weight: bold;
}
section.user-settings .filter-container input[type="checkbox"] {
  appearance: none;
  border: 1px solid #000;
  margin: 0;
  margin-right: 15px;
  border-radius: 0;
  position: unset;
  width: 30px;
  height: 30px;
  display: block;
  outline: none !important;
  cursor: pointer;
}
section.user-settings .filter-container input[type="checkbox"]:checked ~ span {
  font-weight: bold;
}
section.user-settings .filter-container input[type="checkbox"]:checked {
  background: url(/catalog/view/theme/default/img/check.svg) no-repeat center;
}
section.user-settings .filter-container a.list-group-item {
  font-family: Muller;
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  padding: 0;
  margin-bottom: 20px;
  border: 0;
  color: #000;
  background: none !important;
  text-shadow: none !important;
}
.btn.btn-primary:hover,
.btn.btn-danger:hover,
.btn.btn-warning:hover,
.btn.btn-default:hover {
  color: #C8B58B;
}
.panel-footer {
  background: none;
  border: 0;
  border-radius: 0;
  padding: 0;
}
section.product-page {
}
section.product-page .holder {
  max-width: 1170px;
  display: flex;
  justify-content: space-between;
  position: relative;
}
section.product-page .images {
  height: auto;
}
section.product-page .images img {
  width: 100%;
  cursor: url(../img/cursor.png), pointer;
  display: block;
  margin-bottom: 15px;
  max-width: 520px;
}
section.product-page .images img:last-child {
  margin-bottom: 0;
}
section.product-page .info {
  height: 900px;
  max-width: 570px;
  width: 100%;
}
section.product-page .info h1 {
  font-family: Muller;
  font-weight: 500;
  font-size: 36px;
  color: #000;
  margin-top: 0;
  line-height: 100%;
  margin-bottom: 10px;
}
section.product-page .info div.sku {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}
section.product-page .info div.sku span:nth-child(1) {
  font-family: Muller;
  font-weight: 300;
  font-size: 16px;
  line-height: 16px;
  color: #828282;
  text-transform: uppercase;
}
section.product-page .info div.sku span:nth-child(2) {
  font-family: Muller;
  font-weight: 300;
  font-size: 16px;
  line-height: 16px;
  color: #000;
}
section.product-page .info .sticky {
  position: fixed;
  z-index: 101;
}
section.product-page .info .stop {
  position: relative;
  z-index: 101;
}
section.product-page .info {

}
section.product-page .info {

}
section.product-page .info {

}

body.fixed-header main {
  padding-top: calc(178px);
}
body.fixed-header-innder main {
  padding-top: calc(178px + 21px);
}
body.fixed-header-inner header,
body.fixed-header header {
  position: fixed;
  top: -178px;
  left: 0;
  z-index: 999;
  transform: translateY(58px);
  border-bottom: 1px solid #C8B58B;
}
section.catalog-slider-container .slide .info a p.newsale.gold {
  color: #C8B58B;
}
section.product-gallary {
  position: fixed;
  top: 58px;
  left: 0;
  width: 100vw;
  background: #fff;
  z-index: 999;
  height: calc(100vh - 58px);
  transition: all .3s ease;
  transform: translateY(calc(-110vh - 58px));
  opacity: 0;
  /* visibility: hidden; */
}
section.user-settings-product {
  margin-bottom: 15px
}
section.product-gallary .holder {
  max-width: 1170px;
  padding: 0;
  height: 100%;
  position: relative;
}
section.product-gallary .holder .containerq {
  height: 100%;
  overflow-y: auto;
}
section.product-gallary .holder .containerq img {
  width: 100%;
  min-height: 100%;
  object-fit: cover;
}
section.product-gallary .holder .nav {
  background: rgba(94, 94, 94, 0.4);
  display: flex;
  justify-content: center;
  position: absolute;
  bottom: 0;
  left: 0;
  width: calc(100% - 5px);
  transition: all .3s ease;
  transform: translateY(120px);
}
section.product-gallary .holder .nav img {
  display: block;
  width: 78px;
  height: 100px;
  object-fit: cover;
  cursor: pointer;
  margin: 10px;
  border: 1px solid transparent;
}
section.product-gallary .holder .nav img:hover,
section.product-gallary .holder .nav img.active {
  border-color: #C8B58B;
}
section.product-gallary .close {
  position: absolute;
  right: 20px;
  top: 20px;
  cursor: pointer;
  z-index: 99999;
  opacity: 1;
  background: rgba(94, 94, 94, 0.4);
  border-radius: 100%;
  padding: 10px;
  height: 40px;
}
section.product-gallary.active {
  transform: none;
  opacity: 1;
  visibility: visible;
}
section.product-gallary.active .holder .nav {
  transform: none;
}

@media(min-width: 770px) {
  body::-webkit-scrollbar,
  section.product-gallary .holder .containerq::-webkit-scrollbar {
    width: 5px;
    background-color: transparent;
  }
  section.product-gallary .holder .containerq::-webkit-scrollbar-thumb,
  body::-webkit-scrollbar-thumb {
    border-radius: 5px;
    background-color: #C8B58B;
  }
  section.product-gallary .holder .containerq::-webkit-scrollbar-track,
  body::-webkit-scrollbar-track {
    border: 0;
    background-color: #67676729;
    /* background-color: #fff; */
    /* background-color: #000; */
  }
}