* {
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
  background-color: #FAFAFA;
}

:root {
  --gold-primary: rgb(255, 210, 109);
  --gold-secondary: rgb(255, 183, 74);
  --blue-primary: rgb(55, 74, 107);
  --blue-secondary: rgb(76, 117, 187);
  --beige-primary: rgb(249, 245, 234);
  --beige-secondary: rgb(236, 226, 201);
  --border-gold: 10px solid rgb(255, 210, 109);
  --border-blue: 10px solid rgb(55, 74, 107);
  --border-beige: 10px solid rgb(236, 226, 201);
}

button,
img,
a,
span,
svg,
input,
a,
textarea,
header,
.mobile-menu-block,
.custom-checkbox+label::before {
  transition: 0.2s;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
}

img {
  max-width: 100%;
}

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

header {
  background-color: var(--blue-primary);
  position: sticky;
  top: 0;
  z-index: 2;
}

.mod-breadcrumbs__wrapper {
  background-color: #f5f5f5;
  border-radius: 10px;
}

.mod-breadcrumbs__wrapper li {
  font-size: 14px;
}

.page-header {
  margin-bottom: 28px;
}

.mod-list.nav {
  width: 100%;
}

.mod-list.nav li {
  margin-right: 40px;
}

.mod-list.nav li:last-child {
  margin-right: 0;
}

.mod-list.nav li a, .phone {
  text-decoration: none;
  color: var(--gold-primary);
  font-family: "Open Sans", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 25px;
  letter-spacing: 0%;
  text-align: left;
  text-transform: uppercase;
}

.phone svg {
  fill: var(--gold-primary);
  margin-right: 6px;
}

.mod-list.nav li a:hover, .phone:hover {
  color: var(--gold-secondary);
}

.phone:hover svg {
  fill: var(--gold-secondary);
}

.form-group {
  margin-bottom: 14px;
}

.list-unstyled {
  display: flex;
  justify-content: space-between;
}

.list-unstyled li a {
  text-decoration: none;
  font-size: 14px;
}

.button {
  display: block;
  width: 100%;
  font-size: clamp(14px, 4vw, 16px);
  border: none;
  border-radius: 100px;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
}

.button.main-button {
  padding: 10px 30px 10px 30px;
  color: var(--blue-primary);
  background: var(--gold-primary);
}

.button.secondary-button {
  padding: 26px 30px 26px 30px;
  color: var(--gold-primary);
  background: var(--blue-primary);
}

.button:hover {
  color: var(--blue-secondary);
  background: var(--gold-secondary);
}

.button.main-button:focus {
  box-shadow: 0 0 0 3px rgb(255 210 109 / 35%);
}

.button.secondary-button:focus {
  box-shadow: 0 0 0 3px rgba(111, 109, 255, 0.35);
}

.button.secondary-button {
  color: var(--gold-primary);
  background: var(--blue-primary);
}

.button.secondary-button:hover {
  color: var(--gold-secondary);
  background: var(--blue-secondary);
}

.button.secondary-button:focus {
  box-shadow: 0 0 0 3px rgb(55 74 107 / 35%);
}

.modal-overlay,
.request-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(38, 62, 82, 0.80);
  overflow: auto;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 4
}

.cross {
  cursor: pointer;
}

.cross:hover {
  fill: var(--gold-secondary)
}

.modal-section {
  display: flex;
  width: 100%;
  height: 100%;
}

.modal-content {
  display: block;
  margin: auto;
  height: auto;
  border-radius: 0;
  max-width: 580px;
  background: var(--beige-primary);
}

.modal-body {
  padding: 0 4px 22px 4px;
}

.modal-header h5 {
  color: var(--blue-primary);
  font-size: clamp(22px, 4vw, 28px);
  font-style: normal;
  font-weight: 600;
  line-height: 120%;
}

.modal-header span {
  color: var(--gray-primary);
  font-size: clamp(14px, 4vw, 16px);
  font-style: normal;
  font-weight: 500;
  line-height: 130%;
}

.success,
.error {
  display: none;
  width: 100%;
  text-align: center;
  padding: 12px;
  font-size: 18px;
  color: white
}

.success {
  background: #49d94f
}

.error {
  background: #F44336
}

.modal-header {
  border: none;
  padding: 14px 16px 0 16px;
}

.ajax-form label {
  display: block;
  font-size: 14px;
  margin-bottom: 4px
}

.ajax-form input {
  display: block;
  width: 100%;
  padding: 26px;
  background: var(--beige-secondary);
  border: none;
  border-radius: 50px;
}

.ajax-form input::placeholder {
  color: var(--blue-primary);
  font-family: 'Open Sans', sans-serif;
  font-size: clamp(12px, 4vw, 14px);
  font-weight: 400;
  line-height: 19px;
}

.ajax-form input:focus {
  box-shadow: 0 0 0 3px rgb(55 74 107 / 35%);
  outline: none;
}

.ajax-form input[readonly] {
  background: var(--beige-primary);
  color: rgb(156, 151, 130);
  border: 1px solid var(--beige-secondary);
}

.ajax-form input[readonly]:focus {
  box-shadow: none;
}

#recaptcha_1,
#recaptcha_2 {
  width: fit-content;
  margin: auto
}

.confidentiality span {
  flex: 0 0 auto;
  width: 90%;
  margin-left: 8px;
  font-weight: 500;
  font-size: 14px;
  color: #333
}

.confidentiality a {
  color: #333;
  text-decoration: none;
  border-bottom: 1px dashed
}

.confidentiality a:hover {
  color: var(--blue-hover) !important;
  border-bottom: 1px dashed var(--blue-hover) !important
}

.confidentiality input {
  width: 15px
}

.custom-checkbox {
  position: absolute;
  z-index: -1;
  opacity: 0
}

.custom-checkbox+label {
  display: inline-flex;
  align-items: center;
  user-select: none;
  cursor: pointer
}

.custom-checkbox+label::before {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  flex-grow: 0;
  border: 1px solid #3e79f7;
  margin-right: .5em;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 50% 50%
}

.custom-checkbox:checked+label::before {
  border-color: #3ba5e2;
  background-color: #b1e5f9;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%233b3ee2' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26 2.974 7.25 8 2.193z'/%3e%3c/svg%3e")
}

#ajax-form-modal .custom-checkbox:not(:disabled):not(:checked)+label:hover::before {
  border-color: #5392db
}

.custom-checkbox:not(:disabled):active+label::before {
  background-color: #7daafd;
  border-color: #4669c9
}

.custom-checkbox:focus+label::before {
  box-shadow: 0 0 0 .2rem rgba(0, 140, 255, .25)
}

.custom-checkbox:focus:not(:checked)+label::before {
  border-color: #3b89d3
}

.custom-checkbox:disabled+label::before {
  background-color: #eaefe9
}
.banner-section-bg {
  background: var(--blue-primary);
}
.banner-section h1 {
  color: var(--gold-primary);
  font-family: 'Playfair Display', sans-serif;
  font-size: clamp(32px, 5vw, 60px);
  font-weight: 400;
  line-height: 120%;
  letter-spacing: -2%;
  text-align: left;
  text-transform: uppercase;
}
h2 {
  font-size: clamp(26px, 5vw, 50px);
  color: var(--blue-primary);
  font-family: 'Playfair Display', sans-serif;
  font-weight: 400;
  text-transform: uppercase;
}
.main-page .main-content {
  display: none;
}
.banner-section h2 {
  color: var(--gold-primary);
  font-size: clamp(18px, 5vw, 20px);
  font-weight: 300;
  line-height: 140%;
  letter-spacing: 0%;
  text-align: left;
  max-width: 540px;
}
h2.gold-text {
  color: var(--gold-primary);
}
.banner-section img {
  border: var(--border-gold);
  contain-intrinsic-block-size: auto 100px;
  border-radius: 277.5px 277.5px 0px 0px;
}
.mobile-menu-block {
  position: fixed;
  right: -100%;
  top: 0;
  height: 100%;
  width: 95%;
  background: white;
  padding: 32px;
  box-shadow: -4px 4px 20px rgb(0 0 0 / 5%);
  z-index: 2;
  visibility: hidden;
}
.mobile-menu-block.menu-open {
  right: 0;
  visibility: visible;
}
.mobile-menu-block h5 {
  margin-bottom: 18px;
  text-transform: uppercase;
}
.mobile-menu-block .mod-list.nav {
  flex-direction: column;
}
.mobile-menu-block .mod-list.nav li {
  margin-bottom: 12px;
}
.mobile-menu-block .mod-list.nav li:last-child {
  margin-bottom: 18px;
}
.mobile-menu-block .mod-list.nav li a {
  color: var(--blue-primary);
}
.mobile-menu-block .phone {
  color: var(--blue-primary);
}
.mobile-menu-block .phone svg {
  fill: var(--blue-primary);
}
.about-card__body {
  background: var(--beige-secondary);
  border-radius: 35px;
  padding: 60px 28px 22px 28px;
}
.about-card__image {
  max-width: 104px;
  margin: 0 auto -40px auto;
}
.mod-custom h3.about-card__heading {
  color: var(--blue-primary);
  font-family: 'Inter', sans-serif;
  font-size: clamp(15px, 5vw, 16px);
  font-weight: 500;
  line-height: 19px;
  letter-spacing: 0%;
  margin-bottom: 5px;
}
.about-card__text {
  color: var(--blue-primary);
  font-family: 'Inter', sans-serif;
  font-size: clamp(12px, 5vw, 14px);
  font-weight: 400;
  line-height: 17px;
  letter-spacing: -2%;
  text-align: left;
}
.beige-block {
  background: var(--beige-primary);
}
.blue-block {
  background: var(--blue-primary);
}
.mod-custom h3 {
  color: var(--gold-primary);
  font-family: 'Playfair Display', sans-serif;
  font-size: clamp(22px, 4vw, 30px);
  font-weight: 400;
  line-height: 40px;
  letter-spacing: 0%;
  text-transform: uppercase;
}
.product-card {
  display: block;
  background: var(--beige-primary);
  padding: 24px 19px 5px 19px;
  text-decoration: none;
  height: 100%;
}
.product-card:hover {
  background: var(--beige-secondary);
}
.product-card:hover img {
  transform: scale(1.05);
}
.product-card picture {
  border-radius: 144.5px 144.5px 0px 0px;
  display: block;
  overflow: hidden;
}
.product-card img {
  border-radius: 144.5px 144.5px 0px 0px;
  width: 100%;
  object-fit: cover;
}
h5.product-title {
  color: var(--blue-primary);
  font-family: 'Open Sans', sans-serif;
  font-size: clamp(14px, 4vw, 16px);
  font-weight: 400;
  line-height: 22px;
  letter-spacing: -2%;
  text-align: left;
  margin: 20px 0 10px 0;
}
h6.product-description {
  color: var(--blue-primary);
  font-family: 'Open Sans', sans-serif;
  font-size: clamp(12px, 4vw, 14px);
  font-weight: 300;
  line-height: 19px;
  letter-spacing: -2%;
  text-align: left;
  margin-bottom: 24px;
  height: 56px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}
.product-price {
  background: var(--gold-primary);
  color: var(--blue-primary);
  width: fit-content;
  padding: 5px 10px;
  border-radius: 100px;
  margin-bottom: 43px;
  font-family: 'Open Sans', sans-serif;
  font-size: clamp(12px, 4vw, 14px);
  font-weight: 400;
  line-height: 19px;
  letter-spacing: -2%;
  text-align: left;
}
.button-product {
  color: var(--blue-primary);
  font-family: 'Open Sans', sans-serif;
  font-size: clamp(14px, 4vw, 16px);
  font-weight: 400;
  line-height: 22px;
  letter-spacing: 0%;
  text-align: left;
  text-decoration-line: underline;
  text-transform: uppercase;
  border: none;
  display: block;
  background: var(--beige-primary);
  width: 100%;
  padding: 19px 19px 19px 19px;
  margin-top: auto;
}
.button-product:hover {
  color: var(--gold-secondary);
  background: var(--beige-secondary);
}
.mySwiperProducts {
  padding-bottom: 36px !important;
}
.mySwiperProducts .swiper-pagination.swiper-pagination-clickable.swiper-pagination-bullets.swiper-pagination-horizontal {
  bottom: 0;
}
.mySwiperProducts .swiper-pagination.swiper-pagination-clickable.swiper-pagination-bullets.swiper-pagination-horizontal span {
  background: var(--gold-primary);
}
.swiper-slide.wow.fadeInUpBig {
  height: auto !important;
}
#productPhoto {
  border: var(--border-gold);
  border-radius: 200px;
  height: 300px;
  max-width: 300px;
  width: 100%;
  object-fit: cover;
  object-position: center;
}
.master-block img {
  max-width: 340px;
  display: block;
  margin: auto;
  border-radius: 170px;
  border: var(--border-blue);
}
.master-block__body {
  max-width: 372px;
  margin: auto;
  margin-top: 40px;
  text-align: center;
  background: var(--beige-secondary);
  padding: 26px;
  border-radius: 100px;
}
.master-block__body h4 {
  color: var(--blue-primary);
  font-family: 'Inter', sans-serif;
  font-size: clamp(12px, 4vw, 14px);
  font-weight: 400;
  line-height: 17px;
}
.master-block__body h5 {
  color: var(--blue-primary);
  font-family: 'Inter', sans-serif;
  font-size: clamp(14px, 4vw, 16px);
  font-weight: 500;
  line-height: 19px;
}
.text-block p {
  color: var(--beige-primary);
  font-family: 'Open Sans', sans-serif;
  font-size: clamp(16px, 5vw, 18px);
  font-weight: 400;
  line-height: 140%;
  letter-spacing: 0%;
  text-align: center;
  max-width: 737px;
  margin: 0 auto;
}
.mod-form img {
  max-width: 402px;
  border: var(--border-beige);
  border-radius: 300px;
}
footer h2 {
  color: var(--gold-primary);
  max-width: 710px;
  text-align: center;
  margin: 0 auto 30px auto;
}
footer p {
  color: var(--gold-primary);
  max-width: 530px;
  margin: auto;
  text-align: center;
}
.footer-social {
  display: block;
  margin: 30px auto 0 auto;
  width: fit-content;
}
.footer-social svg {
  fill: var(--gold-primary);
}
.footer-social:hover svg {
  fill: var(--gold-secondary);
}
.webmaster-logo {
  margin-top: 80px;
}
span.field-entry.opisanie-tovara {
  display: block;
  margin-bottom: 18px;
}
span.field-entry.tsena {
  display: block;
  width: fit-content;
  margin-left: auto;
}
span.field-entry.knopka {
  display: block;
  width: fit-content;
  margin-top: 12px;
  margin-left: auto;
}
span.field-entry.tsena .field-value {
  color: var(--blue-primary);
  font-size: clamp(16px, 5vw, 18px);
  font-weight: 600;
}
span.field-entry.tsena .field-value:after {
  content: '₽';
}
.gallery-block {
  display: flex;
  flex-wrap: wrap;
}
#main-photo {
  flex: 0 0 auto;
  width: 100%;
  padding: 10px;
}
#main-photo img {
  width: 100%;
  object-fit: cover;
}
.field-entry.foto-1,
.field-entry.foto-2,
.field-entry.foto-3,
.field-entry.foto-4,
.field-entry.foto-5,
.field-entry.foto-6,
.field-entry.foto-7,
.field-entry.foto-8,
.field-entry.foto-9 {
  flex: 0 0 25%;
  width: 25%;
  padding: 10px;
}
.field-entry img {
  object-fit: cover;
  cursor: pointer;
}

