@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Palanquin:wght@100;200;300;400;500;600;700&display=swap");
:root {
  --c-white:#FFFFFF;
  --c-olive:#3D3935;
  --c-red:#841515;
}

html {
  font-size: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  scroll-behavior: smooth;
}

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

body {
  margin: 0;
  font-family: "Palanquin", sans-serif, arial;
  overflow-x: hidden;
  background: var(--c-white);
}
body.scrollY {
  overflow-y: hidden;
}

a {
  text-decoration: none;
  transition: 200ms ease-in-out;
  -webkit-transition-property: color, background-color, opacity;
  transition-property: color, background-color, opacity;
  -webkit-transition: 200ms ease-in-out;
  -moz-transition: 200ms ease-in-out;
  -ms-transition: 200ms ease-in-out;
  -o-transition: 200ms ease-in-out;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

a[href^=tel] {
  color: inherit; /* Inherit text color of parent element. */
  text-decoration: none; /* Remove underline. */
  /* Additional css propery: value; pairs here */
}

.container {
  width: 100%;
  max-width: 1560px;
  margin-inline: auto;
  padding: 0 20px;
}
@media (max-width: 768px) {
  .container {
    max-width: 100%;
    width: 100%;
    padding: 0 10px;
  }
}

.d-none {
  display: none;
}

.btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.btn__slider {
  color: var(--c-white);
  margin: 0 auto;
  padding: 10px;
}
.btn__slider span {
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 120%; /* 19.2px */
}
.btn__slider img {
  width: 30px;
  height: 30px;
}
.btn__main {
  color: var(--c-olive);
  margin: 0 auto;
  padding: 10px;
}
.btn__main span {
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 120%; /* 19.2px */
}
.btn__main img {
  width: 30px;
  height: 30px;
}
.btn__form {
  padding: 15px 50px;
  display: block;
  color: #3D3935;
  background: var(--c-white);
  border: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  color: #3D3935;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%; /* 19.2px */
  cursor: pointer;
  font-family: Palanquin;
}
.btn__second {
  height: 60px;
  padding: 0 50px;
  -webkit-box-shadow: none;
          box-shadow: none;
  border: none;
  background: var(--c-red);
  color: var(--c-white);
  cursor: pointer;
  font-family: Palanquin;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%; /* 19.2px */
}
.btn__img img {
  width: 20px;
  height: 20px;
}
.btn__center {
  margin-inline: auto;
}

.c--red {
  color: var(--c-red) !important;
}

.tooltip {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 9;
}
.tooltip__content {
  -webkit-box-shadow: 0 0 0 0 #fff;
          box-shadow: 0 0 0 0 #fff;
  -webkit-animation: pulsetooltip 2s infinite;
          animation: pulsetooltip 2s infinite;
  width: 24px;
  height: 24px;
  background: var(--c-white);
  position: absolute;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}
.tooltip__content:hover .tooltip__box__p {
  opacity: 1;
  visibility: visible;
  display: block;
}
.tooltip__box {
  padding: 20px;
}
.tooltip__box__p {
  min-width: 250px;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  opacity: 0;
  background: var(--c-white);
  padding: 20px;
  visibility: hidden;
  display: none;
}
.tooltip__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 15px;
}
.tooltip__title span {
  font-weight: 500;
  font-size: 1.125rem;
  color: var(--c-olive);
}
.tooltip__title p {
  font-size: 1rem;
  font-weight: 400;
  color: var(--c-olive);
}
.tooltip__price {
  font-weight: 500;
  font-size: 1.125rem;
  color: var(--c-olive);
  margin-bottom: 20px;
  margin-top: 10px;
}
.tooltip__btn {
  color: var(--c-olive);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-column-gap: 10px;
  -moz-column-gap: 10px;
  column-gap: 10px;
  padding: 10px 0;
}
.tooltip__btn img {
  width: 30px;
  height: 30px;
}
.tooltip__btn span {
  font-weight: 600;
  font-size: 1rem;
  color: var(--c-olive);
}
/*
.iframe{
  iframe{
    width: 100%;
    //height: calc(100vh - 140px);
    padding: 0 100px;
    @include breakpoint-down(medium) {
      padding: 0 20px;
    }
  }
}
*/
@-webkit-keyframes pulsetooltip {
  0% {
    -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
            box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
  }
  70% {
    -webkit-box-shadow: 0 0 0 10px rgba(255, 255, 255, 0);
            box-shadow: 0 0 0 10px rgba(255, 255, 255, 0);
  }
  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
            box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}
@keyframes pulsetooltip {
  0% {
    -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
            box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
  }
  70% {
    -webkit-box-shadow: 0 0 0 10px rgba(255, 255, 255, 0);
            box-shadow: 0 0 0 10px rgba(255, 255, 255, 0);
  }
  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
            box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}
.iframe-container iframe {
  height: 2260px;
  width: 100%;
  display: block;
}
@media screen and (max-width: 1470px) {
  .iframe-container iframe {
    height: 3040px;
  }
}
@media screen and (max-width: 1220px) {
  .iframe-container iframe {
    height: 3800px;
  }
}
@media (max-width: 768px) {
  .iframe-container iframe {
    height: 14410px;
  }
}

.ajx-loading::before {
  content: "";
  border-radius: 100%;
  width: 100px;
  height: 100px;
  z-index: 9999999;
  animation: 0.2s ease 0.5s normal forwards 1 show;
  opacity: 0;
  border: 1px solid rgba(0, 0, 0, 0.2);
  position: fixed;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
  right: 0;
  margin: 0 auto;
  -webkit-animation: 0.2s ease 0.5s normal forwards 1 show;
}
.ajx-loading::after {
  content: "";
  background: rgba(255, 255, 255, 0.8) url(/wp-content/uploads/2024/06/preload.gif) center center no-repeat;
  width: 100%;
  height: 100%;
  position: fixed;
  background-size: 100px 100px;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
  right: 0;
  margin: 0 auto;
  z-index: 9999998;
  animation: 1s ease 0.2s normal forwards 1 show;
  opacity: 0;
  -webkit-animation: 1s ease 0.2s normal forwards 1 show;
}

@-webkit-keyframes show {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes show {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.wp-block-gallery, .wp-block-image {
  width: 100% !important;
  margin-bottom: 60px;
}
@media (max-width: 768px) {
  .wp-block-gallery, .wp-block-image {
    margin-bottom: 20px !important;
  }
}

.wp-block-gallery .wp-block-image {
  width: auto !important;
}

.wp-block-gallery {
  gap: 20px !important;
}
@media (max-width: 768px) {
  .wp-block-gallery {
    gap: 3px !important;
  }
}

.iframe {
  display: block;
  min-height: 650px !important;
}
.iframe iframe {
  height: 100vh !important;
  border: 0 !important;
  padding: 0 !important;
  margin: 0 !important;
}

.productMain__related .relatedSlider-nav {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.productMain__related .relatedSlider-nav .rightNav {
  position: absolute;
  z-index: 999;
  top: 50%;
  right: 0;
  -webkit-transform: translate(0, -50%);
      -ms-transform: translate(0, -50%);
          transform: translate(0, -50%);
}
.productMain__related .relatedSlider-nav .leftNav {
  position: absolute;
  z-index: 999;
  top: 50%;
  left: 0;
  -webkit-transform: translate(0, -50%);
      -ms-transform: translate(0, -50%);
          transform: translate(0, -50%);
}

.show-more-btn {
  color: #3D3935;
}

.gm-style-iw-chr {
  display: none !important;
}

.main {
  width: 100%;
  display: block;
  height: 100%;
  padding: 32px;
  background: #fff;
}
@media (max-width: 768px) {
  .main {
    padding: 24px;
  }
}

.comingsoon {
  width: 100%;
  height: 100%;
  background: url("../img/background.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top center;
  position: relative;
  background-color: #fff;
}
.comingsoon a {
  display: block;
  height: 83px;
  position: absolute;
  top: 54%;
  left: calc(50% - 125px);
}
.comingsoon a img {
  height: 83px;
  width: 253px;
}
.comingsoon .logo {
  position: absolute;
  bottom: 40px;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
      -ms-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
}
.comingsoon .logo img {
  width: 72px;
  height: 57px;
}
.comingsoon .second-logo {
  position: absolute;
  top: 64px;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
      -ms-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
}
.comingsoon .second-logo img {
  width: 80px;
}
@media (max-width: 768px) {
  .comingsoon a {
    height: 71px;
  }
  .comingsoon a img {
    height: 71px;
  }
  .comingsoon .logo {
    bottom: 32px;
  }
  .comingsoon .second-logo {
    top: 32px;
  }
}

html, body {
  height: 100%;
  width: 100%;
}