@charset "UTF-8";
#loader-wrappers {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: opacity 0.3s ease;
}

#loader {
  border: 8px solid #eee;
  border-top: 8px solid #874A3B;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@font-face {
  font-family: Futura;
  font-weight: 400;
  font-style: normal;
  font-display: swap;
  src: url("../font/Futura Book font.ttf") format("truetype");
}
@font-face {
  font-family: Futura;
  font-weight: 500;
  font-style: normal;
  font-display: swap;
  src: url("../font/Futura Medium bt.ttf") format("truetype");
}
@font-face {
  font-family: Futura;
  font-weight: 600;
  font-style: normal;
  font-display: swap;
  src: url("../font/Futura Bold font.ttf") format("truetype");
}
@font-face {
  font-family: Futura;
  font-weight: 700;
  font-style: normal;
  font-display: swap;
  src: url("../font/Futura Heavy font.ttf") format("truetype");
}
@font-face {
  font-family: Inter;
  font-weight: 100;
  font-style: normal;
  font-display: swap;
  src: url("../font/Inter-Thin.ttf") format("truetype");
}
@font-face {
  font-family: Inter;
  font-weight: 200;
  font-style: normal;
  font-display: swap;
  src: url("../font/Inter-ExtraLight.ttf") format("truetype");
}
@font-face {
  font-family: Inter;
  font-weight: 400;
  font-style: normal;
  font-display: swap;
  src: url("../font/Inter-Light.ttf") format("truetype");
}
@font-face {
  font-family: Inter;
  font-weight: 400;
  font-style: normal;
  font-display: swap;
  src: url("../font/Inter-Regular.ttf") format("truetype");
}
@font-face {
  font-family: Inter;
  font-weight: 500;
  font-style: normal;
  font-display: swap;
  src: url("../font/Inter-Medium.ttf") format("truetype");
}
@font-face {
  font-family: Inter;
  font-weight: 600;
  font-style: normal;
  font-display: swap;
  src: url("../font/Inter-SemiBold.ttf") format("truetype");
}
@font-face {
  font-family: Inter;
  font-weight: 700;
  font-style: normal;
  font-display: swap;
  src: url("../font/Inter-Bold.ttf") format("truetype");
}
@font-face {
  font-family: Inter;
  font-weight: 800;
  font-style: normal;
  font-display: swap;
  src: url("../font/Inter-ExtraBold.ttf") format("truetype");
}
@font-face {
  font-family: Inter;
  font-weight: 900;
  font-style: normal;
  font-display: swap;
  src: url("../font/Inter-Black.ttf") format("truetype");
}
@font-face {
  font-family: Montserrat;
  font-weight: 500;
  font-style: normal;
  font-display: swap;
  src: url("../font/Montserrat-Medium.ttf") format("truetype");
}
@font-face {
  font-family: Montserrat;
  font-weight: 600;
  font-style: normal;
  font-display: swap;
  src: url("../font/Montserrat-SemiBold.ttf") format("truetype");
}
@font-face {
  font-family: Montserrat;
  font-weight: 100;
  font-style: normal;
  font-display: swap;
  src: url("../font/Montserrat-Thin.ttf") format("truetype");
}
@font-face {
  font-family: Montserrat;
  font-weight: 400;
  font-style: normal;
  font-display: swap;
  src: url("../font/Montserrat-Regular.ttf") format("truetype");
}
@font-face {
  font-family: CormorantGaramond;
  font-weight: 400;
  font-style: normal;
  font-display: swap;
  src: url("../font/CormorantGaramond-Regular.ttf") format("truetype");
}
@font-face {
  font-family: Trueno;
  font-weight: 200;
  font-style: normal;
  font-display: swap;
  src: url("../font/TruenoLt.otf") format("opentype");
}
*,
*:before,
*:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  font-size: 15px;
}

body {
  overflow-x: hidden;
  background: #ffffff;
  margin: 0 auto;
  font-size: 16px;
  color: #423f3f;
  font-weight: 400;
  -webkit-font-feature-settings: "liga";
  -webkit-font-smoothing: antialiased;
}

#page-content {
  background-color: #dddddd;
}

button,
input,
select,
optgroup,
textarea {
  font-family: "Trueno", sans-serif;
  font-size: 14px;
}

button {
  cursor: pointer;
}

img,
video {
  max-width: 100%;
}

main {
  position: relative;
}

.home .main-header {
  position: fixed;
}

.main-header {
  position: sticky;
  left: 0;
  right: 0;
  top: 0;
  z-index: 101;
  color: #874A3B;
}
.main-header.mh-active .h-logo {
  opacity: 1;
}
.main-header.mh-active .i-menu span {
  display: none;
}
.main-header.mh-active .i-menu span:first-child {
  display: block;
  transform: rotate(47deg);
}
.main-header.mh-active .i-menu span:last-child {
  display: block;
  transform: rotate(-47deg);
}
.main-header.mhs-active .main-header-content {
  opacity: 0;
}
.main-header.mhs-active .search-nav-close {
  display: flex;
}
.main-header.mh-sticky .main-header-content {
  background: #ffffff;
  padding: 18px 45px;
}

.header-active .main-header-content {
  background: transparent;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  transition: background 0.4s ease, backdrop-filter 0.4s ease;
}
.header-active .main-header-content .h-logo img {
  content: url("../img/schossatelier-switzerland-orginal.png");
  transition: content 0.4s ease;
}
.header-active .main-header-content button > span {
  color: #874A3B;
  transition: content 0.4s ease;
}
.header-active .main-header-content button .i-menu span {
  background: #874A3B;
  transition: content 0.4s ease;
}
.header-active .main-header-content .h-menu-right .h-booking a img {
  content: url("../img/phone.png");
  transition: content 0.4s ease;
}
.header-active .main-header-content .h-menu-right .h-catalog a img {
  content: url("../img/location.png ");
  transition: content 0.4s ease;
}
.header-active .main-header-content .h-menu-right .navbar .language-switcher select {
  background: url(data:image/svg+xml;base64,PHN2ZyBmaWxsPSIjODc0QTNCIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAxMiAxMiI+PHBhdGggZD0iTTAgNGw2IDYgNi02eiIvPjwvc3ZnPg==) no-repeat right 5px center;
  background-size: 12px;
  background-color: transparent;
  color: #874A3B;
  transition: content 0.4s ease;
}

.main-header-content {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 45px;
  font-weight: 500;
  font-feature-settings: "liga";
  opacity: 1;
  z-index: 2;
  background: #ffffff;
}
.main-header-content button {
  font-size: 16px;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}
.main-header-content button > span {
  color: #874A3B;
  font-weight: 400;
  position: relative;
}
.main-header-content .h-logo {
  margin: 0;
  opacity: 1;
  transition: opacity ease 0.2s;
  z-index: 1;
}
.main-header-content .h-logo img {
  width: 130px;
  max-height: 79px;
  object-fit: contain;
  object-position: center center;
}
.main-header-content .h-menu {
  flex: 1;
  display: flex;
  align-items: center;
  position: relative;
}
.main-header-content .main-menu-button {
  border-radius: 0;
}
.main-header-content .h-menu-search-span {
  font-weight: 400;
  margin-right: 10px;
}
.main-header-content .h-menu-search-close {
  font-weight: 400;
}
.main-header-content .h-menu-search {
  margin-top: 1px;
  margin-left: 10px;
}
.main-header-content .h-menu-search i {
  margin-right: 5px;
}
.main-header-content .h-menu-right {
  position: relative;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.main-header-content .icon-shope {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}
.main-header-content .icon-shope .dashicons-cart {
  font-size: 24px;
}
.main-header-content .icon-shope a {
  text-decoration: none;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  position: relative;
  gap: 2px;
}
.main-header-content .icon-shope a .totalitems {
  border-radius: 50px;
  position: absolute;
  text-align: center;
  left: 25px;
  min-width: 20px;
  background-color: white;
  color: #874A3B;
  font-weight: 700;
  font-size: 15px;
  margin-bottom: 20px;
}
.main-header-content .h-cart {
  margin-top: -1px;
  margin-left: 10px;
  display: none !important;
}
.main-header-content .h-cart a {
  position: relative;
  color: #000000;
  text-decoration: none;
  position: relative;
  display: inline-block;
  min-width: 25px;
  text-align: center;
  font-size: 10px;
  line-height: 25px;
}
.main-header-content .h-cart i {
  position: absolute;
  left: 0;
  right: 0;
  top: -4px;
  bottom: 0;
}
.main-header-content .h-booking {
  margin: 0 5px;
}
.main-header-content .h-booking a {
  font-size: 14px;
  color: #423f3f;
  padding: 14px 2px;
  text-decoration: none;
  border-radius: 5px;
  display: inline-block;
  text-align: center;
  line-height: 1em;
  margin-right: 10px;
}
.main-header-content .h-booking a img {
  position: relative;
  height: 15px;
  bottom: -2px;
  width: auto;
  z-index: 1000;
}
.main-header-content .h-booking a:hover,
.main-header-content .h-booking a.active {
  position: relative;
}
.main-header-content .h-booking a:hover::after,
.main-header-content .h-booking a.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  /* Adjust this value to control the distance of the underline from the text */
  height: 2px;
  /* Adjust this value to control the thickness of the underline */
  background-color: #000000;
  /* Change this to your desired underline color */
}
.main-header-content .h-catalog {
  margin: 0 5px;
}
.main-header-content .h-catalog a {
  font-size: 14px;
  color: #423f3f;
  padding: 10px 2px;
  text-decoration: none;
  display: inline-block;
}
.main-header-content .h-catalog a img {
  position: relative;
  height: 15px;
  width: auto;
}
.main-header-content .h-catalog a:hover,
.main-header-content .h-catalog a.active {
  position: relative;
}
.main-header-content .h-catalog a:hover::after,
.main-header-content .h-catalog a.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  /* Adjust this value to control the distance of the underline from the text */
  height: 2px;
  /* Adjust this value to control the thickness of the underline */
  background-color: #000000;
  /* Change this to your desired underline color */
}
.main-header-content .h-catalog span {
  position: relative;
}

.checkout-header {
  display: none;
}

.ui-selectmenu-button.ui-button {
  width: 100%;
  font-family: "Trueno", sans-serif;
  font-size: 24px;
  background: #fff;
  border-radius: 16px;
  padding: 30px 15px 10px;
  margin-bottom: 15px;
  border: 1px solid #9c9c9c;
}
.ui-selectmenu-button.ui-button .ui-icon {
  display: block;
  width: 12px;
  height: 8px;
  background: url(../img/icons/select-arrow.png) no-repeat;
  margin-right: 14px;
  margin-top: -2px;
}
.ui-selectmenu-button.ui-button .ui-selectmenu-text {
  font-size: 18px;
  margin-right: 30px;
  font-weight: 800;
}

.ui-selectmenu-menu .ui-menu {
  border-radius: 15px;
  margin-top: 3px;
  padding: 10px;
  max-height: 300px;
}
.ui-selectmenu-menu .ui-state-active,
.ui-selectmenu-menu .ui-widget-content .ui-state-active,
.ui-selectmenu-menu .ui-widget-header .ui-state-active,
.ui-selectmenu-menu a.ui-button:active,
.ui-selectmenu-menu .ui-button:active,
.ui-selectmenu-menu .ui-button.ui-state-active:hover {
  background: linear-gradient(to right, rgba(255, 255, 255, 0.75), rgba(255, 255, 255, 0.75)) 0 0 no-repeat, linear-gradient(to right, var(--woc-product-category-color), var(--woc-product-category-color)) 0 0 no-repeat;
  color: #000;
  border: none;
  border-bottom: 1px solid #efefef;
  margin: 0;
}
.ui-selectmenu-menu .ui-menu-item-wrapper {
  border: none;
  border-bottom: 1px solid #efefef;
  margin: 0;
  font-size: 20px;
  padding: 8px;
}

.d-fc {
  display: flex;
  justify-content: center;
  align-items: center;
}

.i-search {
  display: inline-block;
  width: 20px;
  height: 20px;
  background: url(../img/icon-search.svg) center no-repeat;
}

.i-cart {
  display: inline-block;
  width: 25px;
  height: 25px;
  background: url(../img/icon-cart.svg) center no-repeat;
}

.i-menu {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: column;
  width: 25px;
  height: 12px;
}
.i-menu span {
  display: block;
  width: 15px;
  height: 1px;
  background: #874A3B;
  transition: transform ease 0.2s;
}
.i-menu span:first-child {
  transform-origin: left top;
}
.i-menu span:last-child {
  transform-origin: left bottom;
}

.top-nav-search {
  display: none;
  margin-bottom: 20px;
}
.top-nav-search button {
  font-size: 15px;
  background: none;
  border: none;
  padding: 0;
  margin-right: 15px;
  cursor: pointer;
}
.top-nav-search button i {
  margin-right: 12px;
}
.top-nav-search button > span {
  margin-top: 1px;
}

.top-nav {
  padding: 20px 0;
  border-bottom: 1px solid rgba(128, 128, 128, 0.368627451);
  opacity: 1;
  transition: opacity ease 0.2s;
}
.top-nav.fading {
  opacity: 0;
}
.top-nav .menu {
  margin: 0;
  list-style: none;
  padding-left: 0;
}
.top-nav .menu li {
  margin-bottom: 20px;
}
.top-nav .menu a {
  position: relative;
  display: inline-block;
  color: #808080;
  font-size: 22px;
  text-decoration: none;
  font-weight: 500;
  padding: 5px 0;
  border-bottom: 2px solid transparent;
  margin-right: 40px;
}
.top-nav .menu a:hover {
  color: #000000;
  border-color: #000000;
}
.top-nav .sub-menu {
  display: none;
  padding-left: 40px;
}
.top-nav .menu-item-has-children > a:after {
  position: absolute;
  top: 0;
  bottom: 0;
  margin-top: auto;
  margin-bottom: auto;
  content: "";
  width: 22px;
  height: 22px;
  display: inline-block;
  background-image: url("data:image/svg+xml,%3Csvg height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0-.25H24v24H0Z' transform='translate(0 0.25)' style='fill:none'%3E%3C/path%3E%3Cpolyline points='10 17.83 15.4 12.43 10 7.03' style='fill:none;stroke:%23808080;stroke-linecap:round;stroke-miterlimit:8;stroke-width:1.5px'%3E%3C/polyline%3E%3C/svg%3E");
  margin-left: 20px;
}
.top-nav .menu-item-has-children > a:hover:after {
  background-image: url("data:image/svg+xml,%3Csvg height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0-.25H24v24H0Z' transform='translate(0 0.25)' style='fill:none'%3E%3C/path%3E%3Cpolyline points='10 17.83 15.4 12.43 10 7.03' style='fill:none;stroke:%23212121;stroke-linecap:round;stroke-miterlimit:8;stroke-width:1.5px'%3E%3C/polyline%3E%3C/svg%3E");
}
.top-nav.submenu-active li a {
  display: none;
}
.top-nav.submenu-active .top-sub-nav {
  display: block;
}
.top-nav.submenu-active .submenu-item-active .sub-menu {
  display: block;
}
.top-nav.submenu-active .submenu-item-active .sub-menu li a {
  display: block;
}
.top-nav.submenu-active + .bottom-nav {
  display: none;
}

.bottom-nav {
  padding: 20px 0;
  opacity: 1;
  transition: opacity ease 0.2s;
}
.bottom-nav.fading {
  opacity: 0;
}
.bottom-nav .menu {
  margin: 10px 0 0;
  list-style: none;
  padding-left: 0;
}
.bottom-nav .menu a {
  color: #000000;
  font-size: 18px;
  text-decoration: none;
  font-weight: 400;
  padding: 5px 0;
  margin-bottom: 10px;
  display: inline-block;
}
.bottom-nav .menu a[href="#"] {
  cursor: auto;
  margin-bottom: 0;
  padding: 0;
}
.bottom-nav .faq {
  margin: 40px 0 0;
}
.bottom-nav .faq a {
  margin-bottom: 0;
}
.bottom-nav p {
  margin-top: 0;
  color: #000000;
}

.bottom-sub-nav {
  margin: 40px 0;
  text-align: center;
}
.bottom-sub-nav p {
  margin-bottom: 5px;
}
.bottom-sub-nav a {
  color: #423f3f;
}

.top-sub-nav {
  display: none;
}
.top-sub-nav button {
  border: none;
  background: none;
  position: relative;
  display: inline-block;
  color: #808080;
  font-size: 22px;
  text-decoration: none;
  font-weight: 500;
  padding: 5px 0;
  border-bottom: 2px solid transparent;
  margin-left: 40px;
  margin-bottom: 10px;
  cursor: pointer;
  border-radius: 0;
}
.top-sub-nav button:hover {
  color: #000000;
  border-color: #000000;
}
.top-sub-nav button:before {
  position: absolute;
  top: 0;
  left: -55px;
  bottom: 0;
  margin-top: auto;
  margin-bottom: auto;
  content: "";
  width: 22px;
  height: 22px;
  display: inline-block;
  background-image: url("data:image/svg+xml,%3Csvg height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0-.25H24v24H0Z' transform='translate(0 0.25)' style='fill:none'%3E%3C/path%3E%3Cpolyline points='14.4 7.03 9 12.43 14.4 17.83' style='fill:none;stroke:%23808080;stroke-linecap:round;stroke-miterlimit:8;stroke-width:1.5px'%3E%3C/polyline%3E%3C/svg%3E");
  margin-left: 20px;
}
.top-sub-nav button:hover:before {
  background-image: url("data:image/svg+xml,%3Csvg height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0-.25H24v24H0Z' transform='translate(0 0.25)' style='fill:none'%3E%3C/path%3E%3Cpolyline points='14.4 7.03 9 12.43 14.4 17.83' style='fill:none;stroke:%23212121;stroke-linecap:round;stroke-miterlimit:8;stroke-width:1.5px'%3E%3C/polyline%3E%3C/svg%3E");
}

.search-nav {
  position: fixed;
  left: -150%;
  top: 0;
  bottom: 0;
  width: 60vh;
  padding: 0 50px;
  background: #ffffff;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  opacity: 1;
  transition: opacity ease 0.2s;
  height: 100vh;
}
.search-nav.fading {
  opacity: 0;
}
.search-nav.sub-fading form {
  opacity: 0;
}
.search-nav.sub-fading hr {
  opacity: 0;
}
.search-nav.sub-fading hr {
  transform: scaleX(0);
}
.search-nav.sub-fading input[type=search] {
  opacity: 0;
}
.search-nav.sub-fading input[type=submit] {
  opacity: 0;
  transform: translateX(-110px);
}
.search-nav.sn-active {
  left: 0;
}
.search-nav form {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  padding: 10px 0;
  width: 100%;
  overflow: hidden;
}
.search-nav hr {
  border: none;
  border-bottom: 2px solid #000000;
  width: 100%;
  margin: 0;
  opacity: 1;
  transform: scaleX(1);
  transform-origin: left center;
  transition: transform ease 0.7s;
}
.search-nav input[type=search] {
  flex: 1;
  font-size: 18px;
  font-weight: 500;
  color: #000000;
  border: none;
  border-radius: 0;
  background: none;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  opacity: 1;
  transition: opacity ease 0.7s;
}
.search-nav input[type=search]:focus-visible {
  outline: none !important;
}
.search-nav input[type=search]::-webkit-search-cancel-button, .search-nav input[type=search]::-webkit-clear-button {
  display: none;
}
.search-nav input[type=submit] {
  background: none;
  border-radius: 0;
  border: none;
  width: 38px;
  background: url(../img/icon-arrow-right.svg) center no-repeat;
  background-size: 100%;
  color: transparent;
  cursor: pointer;
  transform: translateX(0);
  transition: transform ease 0.6s, opacity ease 0.6s;
}

.search-nav-close {
  display: none;
  align-items: center;
  justify-content: center;
  position: fixed;
  top: 10px;
  right: 10px;
  width: 44px;
  height: 44px;
  background: #ffffff;
  border-radius: 100%;
  border: none;
  color: #000000;
  padding: 0;
  cursor: pointer;
  z-index: 3;
}
.search-nav-close span {
  font-size: 31px;
  display: inline-block;
  margin-bottom: 5px;
}

.pswp .pswp__bg {
  background: rgba(0, 0, 0, 0.4);
}
.pswp .pswp__caption__center {
  text-align: center;
}

.footer {
  background: #f2f1f1;
  color: #000000;
}
.footer h6 {
  font-size: 16px;
  font-weight: 600;
  margin: 0 0 19px;
  font-family: "CormorantGaramond", serif;
}
.footer a {
  font-size: 14px;
  font-weight: 400;
  color: #000000;
  text-decoration: none;
}
.footer a:visited {
  color: #000000;
}
.footer a:hover {
  color: #000000;
  text-decoration: underline;
}
.footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer li {
  margin-bottom: 20px;
}
.footer p {
  font-size: 13px;
  font-weight: 400;
  margin-bottom: 15px;
  font-family: "Trueno", sans-serif;
}
.footer .f-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 60px 140px 0;
}
.footer .f-section {
  width: 23%;
  padding: 0 20px;
  margin-bottom: 37px;
}
.footer .f-section img {
  margin-top: 1px;
}
.footer .f-about {
  text-align: center;
  border: 1px solid #808080;
  border-radius: 40px;
  padding: 40px 30px 25px;
  color: #808080;
}
.footer .f-about p {
  line-height: 1.8em;
  font-weight: 400;
}
.footer .f-about a {
  color: #808080;
}
.footer .f-center {
  text-align: center;
}
.footer .fs-social {
  width: 30%;
}
.footer .f-social {
  list-style: none;
  display: flex;
  padding: 0;
  margin: 0 0 25px;
  justify-content: center;
  color: #000000;
}
.footer .f-social li {
  opacity: 0.75;
  margin: 10px 14px;
  text-align: center;
  color: #000000;
}
.footer .f-social li a {
  display: block;
  width: 20px;
  height: 20px;
}
.footer .f-social li a svg,
.footer .f-social li a g {
  fill: #000000;
  max-width: 100%;
  max-height: 100%;
}
.footer .f-social li .facebook,
.footer .f-social li .youtube {
  position: relative;
  left: -1px;
}
.footer .fs-newsletter {
  flex: 0 1 350px;
}
.footer .fs-newsletter p {
  line-height: 1.55em;
}
.footer .fs-newsletter h6 {
  margin-bottom: 18px;
}
.footer .fs-text {
  margin-bottom: 31px;
}
.footer .fs-form {
  position: relative;
}
.footer .fs-form .fs-input {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid #423f3f;
  padding: 0.7em 0;
  color: #000000;
  border-radius: 0;
  font-size: 15px;
  font-weight: 500;
}
.footer .fs-form .fs-input:focus-visible {
  outline: none !important;
}
.footer .fs-form .fs-input::placeholder {
  color: #000000;
}
.footer .fs-form button {
  width: auto;
  height: auto;
  position: absolute;
  background: none;
  border: none;
  padding: 0;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  color: #000000;
  cursor: pointer;
}
.footer .fs-form button svg {
  height: 20px;
  width: 20px;
}
.footer .fs-form button svg,
.footer .fs-form button g {
  stroke: currentColor;
}
.footer .fc-bottom {
  padding: 50px 0;
}
.footer .fs-credit {
  margin: 0;
}
.footer .fs-credit p {
  font-size: 12.75px;
  margin: 100px 0 0;
  font-weight: 700;
}
.footer .fs-payment {
  text-align: right;
  margin: 220px 0 0;
  padding: 0 18px;
}
.footer .fs-payment svg {
  margin: 0 1.7px -11px;
  width: auto;
  height: 25px;
  fill: none;
}
.footer .f-bottom {
  padding: 30px 140px 60px;
  border-top: 1px solid #000000;
}
.footer .f-bottom p {
  margin: 0 0 10px;
}
.footer .fb-content {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}
.footer .fb-content ul {
  display: flex;
}
.footer .fb-content li {
  margin-left: 12px;
  margin-bottom: 10px;
}
.footer .fb-item {
  padding: 0 20px;
}
.footer .fb-image {
  margin-top: 40px;
  text-align: center;
}

.alert {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
}
.alert .alert-content {
  position: relative;
  width: 450px;
  height: auto;
  padding: 40px 30px 30px;
  background: #ffffff;
  color: #423f3f;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3019607843);
}
.alert .alert-title {
  font-size: 19px;
  line-height: 1.4;
  text-align: center;
  font-weight: 600;
  margin: 18px 0 0;
}
.alert .alert-close {
  position: absolute;
  right: 3px;
  top: 3px;
  width: 44px;
  height: 44px;
  padding: 7px;
  min-width: auto;
  background-color: transparent;
  border: none;
  box-shadow: none;
}
.alert .alert-close svg {
  stroke: #464654;
  stroke-width: 2px;
  width: 24px;
  height: 24px;
  vertical-align: middle;
}
.alert .alert-social {
  margin: 26px 0 7px;
  list-style: none;
  display: flex;
  padding: 0;
  justify-content: center;
  align-items: center;
}
.alert .alert-social li {
  opacity: 0.75;
  margin: 0 10px;
}
.alert .alert-social li a {
  display: block;
  width: 20px;
  height: 20px;
  text-align: center;
  color: #423f3f;
}
.alert .alert-social li a:hover {
  color: #000000;
}
.alert .alert-social li a .svg {
  width: 20px;
  height: 20px;
}
.alert .alert-social li a svg,
.alert .alert-social li a g {
  fill: currentColor;
  max-width: 100%;
  max-height: 100%;
}
.alert.zoho-booking-modal {
  z-index: 99;
  background: rgba(0, 0, 0, 0.4);
  display: block;
}
.alert.zoho-booking-modal h2 {
  text-align: center;
}
.alert.zoho-booking-modal .alert-content {
  width: 795px;
  padding: 20px;
  margin: 3rem auto;
  max-height: calc(100% - 6rem);
  height: 100%;
}
.alert.zoho-booking-modal .alert-content .appointment-iframe,
.alert.zoho-booking-modal .alert-content iframe {
  height: 100%;
}
.alert.zoho-booking-modal .alert-content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  height: 100%;
}
.alert.zoho-booking-modal .alert-content-iframe {
  height: 100%;
}

.overflow-hidden {
  overflow: hidden;
}

.content {
  padding: 0 90px;
}

.position-relative {
  position: relative;
}

.section-media {
  position: relative;
  height: 70vh;
}
.section-media .sm-media {
  position: absolute;
  object-fit: cover;
  object-position: 50% 50%;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.section-media .sm-content {
  position: relative;
  width: 100%;
  height: 70vh;
  background: rgba(0, 0, 0, 0.4);
  padding: 70px 90px;
}
.section-media .sm-text {
  position: absolute;
  bottom: 2vh;
  left: 50px;
  margin: 50px;
  width: 700px;
}
.section-media h2 {
  font-size: 40px;
  color: #FFFFFF;
  margin: 0 0 20px;
  line-height: 1.25em;
  font-weight: 600;
}
.section-media h3 {
  margin-top: 30px;
  color: #FFFFFF;
  line-height: 1.25em;
  font-weight: 400;
}
.section-media p {
  color: #FFFFFF;
  margin: 0 0 20px;
  line-height: 1.5em;
  font-weight: 500;
  padding-bottom: 20px;
}
.section-media .ms-link {
  display: inline-block;
  color: #FFFFFF;
  text-decoration: none;
  font-size: 16px;
  font-weight: 400;
  padding: 10.5px 30px;
  cursor: pointer;
  min-width: 130px;
  background: #a0312e;
  text-align: center;
}
.section-media .ms-link:hover {
  background-color: #de8d8a;
}
.section-media .ms-link-primary {
  font-size: 22.5px;
}
.section-media .ms-arrow {
  width: 30px;
  height: 30px;
  position: absolute;
  left: 150%;
  margin-left: 30px;
  margin-top: 20px;
}
.section-media .ms-arrow path {
  display: none;
}

.section-media-one {
  position: relative;
  height: 70vh;
}
.section-media-one .sm-content {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 100;
}
.section-media-one .sm-content .bg-color {
  position: absolute;
  width: 100%;
  height: 70vh;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 100;
}
.section-media-one .sm-content .ss-slides {
  overflow: hidden;
  width: 100%;
  height: 70%;
  /* Mengisisecara penuh */
}
.section-media-one .sm-content .ss-slides .ss-slide-one {
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  object-fit: cover;
  object-position: center;
  width: 100%;
  height: 100%;
}
.section-media-one .sm-content .ss-slides .ss-slide-one.active {
  opacity: 2;
}
.section-media-one .sm-content .ss-slides .ss-slide-one .ss-img-one {
  width: 100%;
  height: 100%;
}
.section-media-one .sm-content .ss-slides .ss-slide-one .ss-img-one img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.section-media-one .sm-text {
  position: absolute;
  bottom: 2vh;
  left: 50px;
  margin: 50px;
  width: 600px;
  font-family: "Trueno", sans-serif;
  /* Pastikan variabel Sass ini telah didefinisikan */
  color: #FFFFFF;
  /* Pastikan variabel Sass ini telah didefinisikan */
}
.section-media-one .sm-text h2 {
  font-size: 41px;
  margin: 0 0 20px;
  line-height: 1.25em;
  font-weight: 600;
}
.section-media-one .sm-text h3 {
  font-weight: 400;
  line-height: 1.25em;
}
.section-media-one .sm-text p {
  margin: 0 0 20px;
  line-height: 1.5em;
  font-weight: 500;
}
.section-media-one .sm-text .ms-links .ms-link {
  display: inline-block;
  color: #FFFFFF;
  text-decoration: none;
  font-size: 16px;
  font-weight: 400;
  padding: 10.5px 30px;
  cursor: pointer;
  min-width: 130px;
  background: #a0312e;
}
.section-media-one .sm-text .ms-links .ms-link:hover {
  background-color: #de8d8a;
}

@keyframes arrowbounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(10px);
  }
}
article.page .entry-header.has-post-thumbnail {
  position: relative;
  height: calc(100vh - 96px);
}
article.page .entry-header.has-post-thumbnail.half-height {
  height: 450px;
}
article.page .entry-header.has-post-thumbnail.half-height .post-thumbnail {
  background-position: center;
}
article.page .entry-header.has-post-thumbnail .entry-title {
  font-size: 70px;
  font-weight: 400;
  margin: 0;
  position: absolute;
  bottom: 17%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  color: #ffffff !important;
}
article.page .entry-title {
  font-size: 60px;
  font-weight: 600;
  line-height: 1.25em;
  color: #423f3f;
  text-align: center;
  margin-bottom: 0;
}
article.page .post-thumbnail {
  width: 100%;
  height: 100%;
  line-height: 0;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center top;
}
article.page .post-thumbnail.show-bg-overlay:after {
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.14);
  position: absolute;
  z-index: 1;
  pointer-events: none;
}
article.page .title-overlay {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
}
article.page .title-overlay:after {
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.14);
  position: absolute;
  z-index: 1;
  pointer-events: none;
}
article.page .title-overlay.hide-bg-overlay:after {
  background: none;
}
article.page a {
  color: #b79987;
}
article.page p {
  margin-bottom: inherit;
}
article.page h2 {
  font-size: 47px;
  font-weight: 400;
  margin-top: 0;
  margin-bottom: 0.5em;
  color: inherit;
  letter-spacing: -0.01em;
  line-height: 1.25em;
}
article.page h2:after {
  content: "";
  display: block;
  margin: 0.25em auto 0;
  width: 0;
  border-top: 3px solid #423f3f;
  transition: width 1.2s cubic-bezier(0.13, 0.88, 0.62, 1) 0.7s;
}
article.page h2.no-line:after {
  display: none;
}
article.page h2.--visible:after {
  width: 36px;
}
article.page h3 {
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1em;
}
article.page h4 {
  font-size: 1.4rem;
  font-weight: 600;
  margin: 0;
  line-height: 1.4;
}
article.page .entry-content {
  padding-top: 50px;
  padding-bottom: 50px;
  margin: 0;
}
article.page .entry-content.full-width {
  padding-left: 0;
  padding-right: 0;
}
article.page .entry-content.full-height {
  padding-top: 0;
  padding-bottom: 0;
}
article.page .section-container {
  padding-top: 50px;
  padding-bottom: 50px;
  padding-left: 70px;
  padding-right: 70px;
}
article.page .wp-block-cover,
article.page .featured-collection {
  margin-left: -70px;
  margin-right: -70px;
}
article.page .featured-collection {
  padding-top: 100px;
  padding-bottom: 100px;
  padding-left: 70px;
  padding-right: 70px;
}
article.page .featured-collection h3 {
  margin: 0;
  color: currentColor;
  font-size: 1.7rem;
}
article.page .featured-collection .view-all-link {
  font-size: 1.1em;
  white-space: nowrap;
}
article.page .featured-collection .view-all-link a {
  color: #423f3f;
  text-decoration: none;
}
article.page.has-post-thumbnail .entry-content {
  padding-top: 100px;
}
article.page .wc-block-components-product-name {
  font-size: 15px;
  color: #423f3f;
  text-decoration: none;
  font-weight: 500;
}
article.page .has-small-font-size {
  font-size: 0.875rem !important;
  line-height: 1.5;
  margin-top: 0;
  margin-bottom: 0.5em;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
article.page h1.wp-block-heading {
  font-size: 66px;
  margin-top: 0;
  margin-bottom: 0.5em;
  letter-spacing: -0.01em;
  font-weight: 600;
  line-height: 1.25em;
}
article.page h1.wp-block-heading:after {
  content: "";
  display: block;
  margin: 0.25em 0 0;
  width: 0;
  border-top: 3px solid #423f3f;
  transition: width 1.2s cubic-bezier(0.13, 0.88, 0.62, 1) 0.7s;
}
article.page h1.wp-block-heading.has-text-align-center:after {
  margin: 0.25em auto 0;
}
article.page h1.wp-block-heading.no-line:after {
  display: none;
}
article.page h1.wp-block-heading.--visible:after {
  width: 36px;
}
article.page .p-bottom-0 {
  padding-bottom: 0 !important;
}
article.page .faq-sidebar {
  position: relative;
  width: 220px;
  left: calc(50% - 448px);
}
article.page .faq-sidebar h3 {
  text-align: left;
  font-size: 15px;
  margin-bottom: 1em;
}
article.page .faq-sidebar strong {
  font-weight: 600;
}
article.page .faq-sidebar .faq-sidebar__inner {
  position: sticky;
  top: 145px;
}
article.page .faq-sidebar .faq-sidebar__inner p {
  margin: 0;
  margin-bottom: 0.75em;
}
article.page .faq-sidebar .faq-sidebar__inner p:first-child {
  margin-bottom: 1em;
}
article.page .faq-sidebar .faq-sidebar__inner a {
  text-decoration: none;
  color: #423f3f;
  opacity: 0.5;
  transition: opacity 0.4s;
}
article.page .faq-sidebar .faq-sidebar__inner a.--active {
  opacity: 1;
}
article.page .wp-block-pb-accordion-item {
  border-bottom: 1px solid #ddd;
}
article.page .c-accordion__title--button {
  overflow: hidden;
}
article.page .c-accordion__title {
  font-weight: 500;
  padding-top: 20px;
  padding-bottom: 20px;
}
article.page .c-accordion__title:before {
  content: "";
  position: absolute;
  top: calc(50% - 1px);
  right: 0;
  width: 12px;
  height: 2px;
  background-color: currentColor;
  transition: 0.3s ease;
  transition-property: transform, opacity;
  transform: rotate(-90deg);
}
article.page .c-accordion__title:after {
  content: "";
  position: absolute;
  top: calc(50% - 1px);
  right: 0;
  width: 12px;
  height: 2px;
  background-color: currentColor;
  transition: 0.3s ease;
  transition-property: transform, opacity;
  transform: none;
  color: inherit;
}
article.page .is-open > .c-accordion__title:before {
  transform: rotate(90deg);
  opacity: 0;
}
article.page .is-open > .c-accordion__title:after {
  transform: rotate(180deg);
}
article.page .c-accordion__content {
  padding-bottom: 20px;
}
article.page .inline-mini-form {
  width: 400px;
  display: block;
  margin: 1em auto 0;
  position: relative;
  background-color: transparent;
  white-space: nowrap;
  overflow: hidden;
}
article.page .inline-mini-form input {
  outline: 0;
  margin-bottom: 0;
  padding: 0.5em 0;
  width: 100%;
  transition: color 2s;
  transition-delay: 0.2s;
  font-size: 20px;
  line-height: 1.6em;
  border: none;
  background: transparent;
  min-height: 32px;
}
article.page .inline-mini-form:after {
  content: "";
  display: inline-block;
  height: 2px;
  width: 100%;
  background-color: currentColor;
  position: absolute;
  bottom: 0;
  left: 0;
  transition: width 1s cubic-bezier(0, 0.14, 0.19, 1), background-color 0.5s cubic-bezier(0, 0.14, 0.19, 1);
}
article.page .inline-mini-form button {
  position: absolute;
  right: -35px;
  height: 100%;
  width: 44px;
  top: 0;
  padding: 0;
  transition: opacity 0.9s, visibility 0.9s, transform 0.6s cubic-bezier(0, 0.14, 0.19, 1);
  transition-delay: 0.6s;
  transform: translate3d(-30px, 0, 0);
  background: transparent;
  color: currentColor;
  margin: -1px -1px -1px 0;
  border: none;
  line-height: 1.25em;
  vertical-align: top;
  font-weight: 400;
}
article.page .inline-mini-form button svg {
  height: 25px;
  width: 25px;
  overflow: hidden;
}
article.page .inline-mini-form button svg > g {
  stroke: currentColor;
}
article.page .faq-container--large {
  margin-left: -19%;
}
article.page .faq-container--large h3 {
  padding-top: 70px;
  margin-top: 0;
  margin-bottom: 20px;
}
article.page .hidden {
  display: none;
}
article.page .featured-collection {
  margin-bottom: -20px;
}
article.page .collection-header-text {
  margin-top: -50px;
}
article.page .sessel-title {
  font-size: 66px;
}
article.page .grayscale-hover .wp-block-column:hover {
  filter: grayscale(100%);
}
article.page .column-center-typogr-no-margin {
  align-items: center !important;
}
article.page .column-center-typogr-no-margin h2 {
  margin-bottom: 0;
}
article.page .column-center-typogr-no-margin p {
  margin-top: 0;
}

.central {
  padding-bottom: 50px;
  margin: 0 auto;
  width: 850px;
  max-width: 100%;
}
.central h2 {
  color: #000000;
}

.rte:before {
  content: "";
  display: table;
}
.rte:after {
  content: "";
  display: table;
  clear: both;
}

.section-spacing {
  padding-top: 100px;
  padding-bottom: 100px;
}

.error-404 {
  padding: 50px;
  width: 850px;
  max-width: 100%;
  margin: 0 auto;
  text-align: center;
}
.error-404 h2 {
  font-size: 3rem;
  font-weight: 600;
  margin-top: 0;
  margin-bottom: 0.75em;
  color: #000000;
  line-height: 1.25em;
}
.error-404 h2:after {
  content: "";
  display: block;
  margin: 0.25em auto 0;
  width: 0;
  border-top: 3px solid #423f3f;
  transition: width 1.2s cubic-bezier(0.13, 0.88, 0.62, 1) 0.7s;
}
.error-404 h2.--visible:after {
  width: 36px;
}
.error-404 a {
  color: #b79987;
  border-bottom: 1px solid #b79987;
  text-decoration: none;
}
.error-404 p {
  margin-bottom: 0;
}

body.search main {
  padding-top: 50px;
  padding-bottom: 70px;
}
body.search .form-search {
  margin: 0 auto;
  width: 850px;
  max-width: 100%;
  padding: 0 70px;
}
body.search .form-search input[type=search] {
  width: 100%;
  font-size: 20px;
  font-weight: 500;
  color: #000000;
  border: none;
  border-radius: 0;
  background: none;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  border-bottom: 2px solid #000000;
  padding: 10px 0;
  margin: 0 auto;
}
body.search .form-search input[type=search]:focus-visible {
  outline: none !important;
}
body.search .form-search input[type=search]::-webkit-search-cancel-button, body.search .form-search input[type=search]::-webkit-clear-button {
  display: none;
}
body.search .form-search input[type=submit] {
  position: absolute;
  right: -6px;
  width: 44px;
  height: 100%;
  background: none;
  border-radius: 0;
  border: none;
  width: 44px;
  background: url(../img/icon-arrow-right.svg) center no-repeat;
  background-size: 25px;
  color: transparent;
  cursor: pointer;
}
body.search .form-search-content {
  position: relative;
  width: 400px;
  margin: 15px auto 0;
}
body.search .search-content {
  padding: 30px 70px 0;
  display: flex;
}
body.search .sc-noresult {
  margin-top: 48px;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 15px;
}
body.search .sc-noresult p {
  font-size: 18.75px;
  font-weight: 600;
  margin: 0;
}
body.search .search-filter {
  flex-basis: 240px;
  margin-top: 20px;
  flex: 0 0 240px;
  font-size: 15px;
  font-weight: 500;
}
body.search .search-filter .sf-section {
  position: relative;
  overflow: hidden;
  border-top: 1px solid #ddd;
}
body.search .search-filter .sf-section:first-child {
  border-top: none;
}
body.search .search-filter .sf-nav {
  display: none;
}
body.search .search-filter .sf-content {
  transition: height 0.3s ease, opacity 0.3s ease;
}
body.search .search-filter .sf-inside {
  padding-bottom: 20px;
}
body.search .search-filter .sf-label {
  position: relative;
  padding: 20px 30px;
  padding-left: 0;
  cursor: pointer;
  background: #ffffff;
}
body.search .search-filter .sf-label:before {
  transform: rotate(90deg);
  opacity: 0;
}
body.search .search-filter .sf-label:before, body.search .search-filter .sf-label:after {
  content: "";
  position: absolute;
  top: calc(50% - 2px);
  right: 0;
  width: 11px;
  height: 1px;
  background-color: currentColor;
  transform: rotate(0);
  transition: 0.3s ease;
  transition-property: transform, opacity;
  height: 2px;
}
body.search .search-filter .sf-active .sf-label:before {
  transform: rotate(-90deg);
  opacity: 1;
}
body.search .search-filter .sf-active .sf-label:after {
  transform: rotate(-180deg);
}
body.search .search-filter .sf-active .sf-content {
  height: 0 !important;
  opacity: 0;
}
body.search .search-filter .sf-checkbox {
  position: relative;
  display: flex;
  align-items: center;
  margin-bottom: 7px;
  cursor: pointer;
}
body.search .search-filter .sf-checkbox input {
  opacity: 0;
  width: 1px;
  height: 1px;
}
body.search .search-filter .sf-checkbox input:checked ~ .sfc-icon:after {
  opacity: 1;
}
body.search .search-filter .sf-checkbox .sfc-icon {
  position: relative;
  display: inline-block;
  width: 20px;
  height: 20px;
  border-radius: 20px;
  left: 0;
  top: 0;
  background-color: #eee;
}
body.search .search-filter .sf-checkbox .sfc-icon:after {
  content: "";
  position: absolute;
  left: 8px;
  top: 4px;
  width: 5px;
  height: 10px;
  border: solid #222;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg) scale(0.9);
  transition: opacity 0.4s, transform 0.4s;
  opacity: 0;
}
body.search .search-filter .sf-checkbox .sfc-text {
  padding-left: 9px;
  flex: 1;
}
body.search .search-filter .sf-checkbox:hover .sfc-icon:after {
  opacity: 0.5;
}
body.search .search-filter .sf-price {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
body.search .search-filter .sf-price .sfp-sep {
  position: relative;
}
body.search .search-filter .sf-price .sfp-sep:before {
  content: "";
  position: absolute;
  width: 8px;
  background-color: currentColor;
  height: 1px;
  display: inline-block;
  left: 50%;
  top: 50%;
  transform: translate(-50%) translateY(-50%);
}
body.search .search-filter .sf-price .sfp-input {
  border: 1px solid #d0cfcf;
  display: flex;
  align-items: center;
  font-size: 15px;
  font-weight: 500;
  padding-left: 18px;
  width: calc(50% - 12px);
}
body.search .search-filter .sf-price .sfp-input span {
  margin-right: 4px;
}
body.search .search-filter .sf-price .sfp-input input {
  width: 100%;
  font-size: 15px;
  font-weight: 500;
  padding: 12px 12px 12px 0;
  border: none !important;
  box-shadow: none !important;
  outline: none !important;
  line-height: 1em;
}
body.search .search-filter .sf-price-slider {
  padding: 0 15px 10px;
  margin: 30px 0 0;
}
body.search .search-filter .sf-price-slider .ui-slider {
  height: 2px;
  background: #e6e6e6;
  border-radius: 2px;
  border: none;
  position: relative;
}
body.search .search-filter .sf-price-slider .ui-slider-range {
  position: absolute;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  border: none;
}
body.search .search-filter .sf-price-slider .ui-slider-handle {
  position: absolute;
  top: -8px;
  content: "";
  display: block;
  width: 18px;
  height: 18px;
  margin-left: -9px;
  background: #ffffff;
  border: 1px solid currentColor;
  border-radius: 18px;
  cursor: pointer;
  transition: 0.15s transform ease-out;
  outline: none !important;
}
body.search .search-filter .sf-price-slider .ui-slider-handle:hover {
  transform: scale(1.1);
}
body.search .search-result {
  margin-left: 50px;
  flex: 1;
}
body.search .search-result .sr-filter {
  display: flex;
  align-items: center;
  margin-top: 40px;
}
body.search .search-result .sr-filter .srf-item {
  background-color: #eee;
  padding: 6px 12px;
  transition: opacity 0.3s;
  opacity: 0.8;
  font-size: 14px;
  line-height: 14px;
  margin-right: 5px;
  margin-bottom: 7px;
  color: #333;
  cursor: pointer;
}
body.search .search-result .sr-filter .srf-item:after {
  content: "×";
  font-weight: 700;
  padding: 0 0 0 7px;
}
body.search .search-result .sr-filter .srf-clear {
  background: none;
  text-decoration: underline;
}
body.search .search-result .sr-filter .srf-clear:after {
  display: none;
}
body.search .search-result .sr-content {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -10px;
}
body.search .search-result .sr-item {
  padding: 0 10px;
  width: 33.3%;
  margin-top: 40px;
  position: relative;
}
body.search .search-result .sr-item:hover .sr-checkout {
  opacity: 1;
}
body.search .search-result .sr-link {
  margin-top: 15px;
}
body.search .search-result .sr-link a {
  color: #b79987;
  text-decoration: none;
  border-bottom: 1px solid currentColor;
}
body.search .search-result .sr-link:hover a {
  color: #000000;
}
body.search .search-result a {
  text-decoration: none;
}
body.search .search-result .sr-text {
  color: #423f3f;
}
body.search .search-result .sr-checkout {
  position: absolute;
  bottom: 0;
  border-radius: 5px;
  text-align: center;
  display: block;
  background-color: #ffffff;
  color: #000000;
  border: 1px solid #000000;
  width: calc(100% - 20px);
  height: auto;
  padding: 14px 30px;
  line-height: 1.25em;
  font-size: 15px;
  font-weight: 500;
  opacity: 0;
  transition: opacity 0.3s, color 0.3s, background-color 0.3s, border-color 0.3s, transform 0.3s;
}
body.search .search-result .sr-checkout:hover {
  color: #ffffff;
  background: #000000;
}
body.search .search-result .sr-image {
  position: relative;
  padding-top: 75%;
  margin-bottom: 12px;
}
body.search .search-result .sr-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
body.search .search-result .sr-noresult {
  margin-top: 50px;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 15px;
  text-align: center;
}
body.search .search-result .sr-noresult p {
  font-size: 18.75px;
  font-weight: 600;
  margin: 0;
}

.page-form {
  max-width: 1200px;
  margin: 0 auto;
  padding: 30px;
}
.page-form h1 {
  font-size: 42px;
  font-weight: 400;
  margin: 0;
  color: #000000;
}
.page-form label {
  cursor: pointer;
}
.page-form p {
  margin: 0 0 10px;
}
.page-form .form-content {
  margin-top: 20px;
}
.page-form .fc-input {
  flex: 1;
  padding: 0 5px;
}
.page-form .fc-input input {
  width: 100%;
  border: 1px solid #d9d9d9;
  border-radius: 5px;
  font-size: 15px;
  line-height: 1.25em;
  padding: 12px 10px;
  color: #333333;
  background: none;
}
.page-form .fc-input input:focus-visible {
  border-color: #197bbd;
  outline: 1px solid #197bbd;
}
.page-form .fc-group {
  display: flex;
  align-items: center;
  font-size: 15px;
  margin-bottom: 20px;
}
.page-form .fc-group-half {
  margin-left: -5px;
  margin-right: -5px;
}
.page-form .fc-radio {
  margin-right: 10px;
  display: flex;
  align-items: center;
}
.page-form .fc-radio label {
  margin-left: 5px;
}
.page-form .fc-radio input {
  cursor: pointer;
}
.page-form .fc-textarea {
  width: 100%;
}
.page-form .fc-textarea textarea {
  width: 100%;
  border: 1px solid #d9d9d9;
  border-radius: 5px;
  font-size: 15px;
  line-height: 1.25em;
  padding: 12px 10px;
  color: #333333;
  background: none;
  resize: vertical;
}
.page-form .fc-textarea textarea:focus-visible {
  border-color: #197bbd;
  outline: 1px solid #197bbd;
}
.page-form .fc-checkbox input {
  cursor: pointer;
}
.page-form .fc-tnc,
.page-form .fc-info {
  font-size: 16px;
  font-weight: 400;
}
.page-form .fc-button button {
  background-color: #000000;
  color: #ffffff;
  height: auto;
  width: auto;
  padding: 14px 30px;
  line-height: 1.25em;
  font-size: 15px;
  font-weight: 500;
  border-radius: 5px;
}

.site-subpage {
  color: #000000;
}
.site-subpage article.page .entry-header.has-post-thumbnail {
  height: auto;
}
.site-subpage article.page .entry-header.has-post-thumbnail img {
  width: 100%;
}
.site-subpage article.page h2 {
  margin-bottom: 72px;
}
.site-subpage article.page h2::after {
  display: none !important;
}
.site-subpage article.page h2,
.site-subpage article.page h3 {
  font-size: 56px;
  font-weight: 800;
  color: #000000;
  line-height: 1em;
  letter-spacing: 0.2px;
}
.site-subpage article.page h3 {
  margin: 0;
}
.site-subpage article.page h4 {
  font-weight: 800;
  font-size: 24px;
  margin: 25px 0 10px;
}
.site-subpage article.page a {
  color: #ffffff;
}
.site-subpage .wp-block-group.has-background {
  padding: 100px 0px;
  padding-bottom: 1px;
}
.site-subpage .wp-block-group.has-background .wp-block-columns {
  padding: 0px;
}
.site-subpage .wp-block-columns {
  padding-left: 0px;
  padding-right: 0px;
  padding-top: 80px;
  gap: 30px;
}
.site-subpage .subpage-wrapper {
  width: 100%;
  max-width: 1700px;
  margin: 0 auto;
}
.site-subpage .subpage-text {
  padding-right: 20px;
}
.site-subpage .subpage-text p {
  text-align: left;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.5em !important;
}
.site-subpage .wp-container-1.wp-container-1 {
  margin-top: 200px;
}
.site-subpage .subpage-column p {
  text-align: left;
  font-size: 16px;
  font-weight: 400;
}

article.page .subpage-catalog {
  padding-top: 50px;
  margin-left: -20px;
  margin-right: -20px;
}
article.page .subpage-catalog h1.wp-block-heading {
  color: #000000;
  margin: 40px 0;
  line-height: 1.2em;
}
article.page .subpage-catalog p {
  line-height: 1.8em;
  font-weight: 400;
}
article.page .subpage-catalog .wp-block-button__link {
  padding: 13px;
  min-width: 247px;
}
article.page .subpage-catalog .heateor_sss_sharing_ul {
  margin-left: 5px !important;
}
article.page .subpage-catalog .heateor_sss_sharing_ul a {
  width: 43px;
  height: 43px;
  display: inline-block;
  background-size: contain;
  margin: 0 8px;
}
article.page .subpage-catalog .heateor_sss_sharing_ul .heateor_sss_facebook {
  background: url(../img/icons/fb-icon.png) no-repeat center !important;
}
article.page .subpage-catalog .heateor_sss_sharing_ul .heateor_sss_button_twitter {
  background: url(../img/icons/twitter-icon.png) no-repeat center !important;
}
article.page .subpage-catalog .heateor_sss_sharing_ul .heateor_sss_button_linkedin {
  background: url(../img/icons/linkedin-icon.png) no-repeat center !important;
}
article.page .subpage-catalog .heateor_sss_sharing_ul span {
  display: none !important;
}

.site-form {
  margin: 0 auto;
}
.site-form article.page {
  overflow-x: hidden;
  padding-top: 50px;
}
.site-form article.page .entry-header {
  padding: 0 30px;
}
.site-form article.page .entry-header .entry-title {
  position: initial;
  transform: none;
  font-size: 46px;
  font-weight: 600;
  margin-top: 0;
  margin-bottom: 0.5em;
  color: currentColor !important;
  text-align: center;
  letter-spacing: -0.01em;
  line-height: 1.25em;
}
.site-form article.page .entry-header .entry-title:after {
  content: "";
  display: block;
  margin: 0.25em auto 0;
  width: 0;
  border-top: 3px solid #423f3f;
  transition: width 1.2s cubic-bezier(0.13, 0.88, 0.62, 1) 0.7s;
}
.site-form article.page .entry-header .entry-title.--visible:after {
  width: 36px;
}
.site-form article.page .entry-content {
  padding-top: 30px;
}
.site-form article.page h2 {
  font-size: 32px;
  font-weight: 400;
  margin: 0 0 20px;
  color: inherit;
  letter-spacing: -0.01em;
  line-height: 1.25em;
}
.site-form article.page h2:after {
  display: none;
}
.site-form article.page p {
  font-size: 16px;
  font-weight: 400;
  margin: 0 0 20px;
}
.site-form article.page.has-post-thumbnail .post-thumbnail {
  width: auto;
  height: auto;
  max-width: 50%;
  padding: 0 15px;
}
.site-form article.page.has-post-thumbnail .entry-content {
  padding-top: 30px;
  display: flex;
  margin: 0 -15px;
}
.site-form article.page.has-post-thumbnail .entry-content-wrapper {
  flex: 1;
  padding: 0 15px;
}
.site-form .forminator-ui.forminator-design--default {
  font-size: 15px;
}
.site-form .forminator-ui.forminator-design--default .forminator-radio {
  font-size: 15px !important;
  color: #423f3f;
}
.site-form .forminator-ui.forminator-design--default .forminator-radio .forminator-radio-bullet {
  border-color: #d9d9d9 !important;
  background-color: #ffffff !important;
  font-size: 15px;
}
.site-form .forminator-ui.forminator-design--default .forminator-radio .forminator-radio-bullet:before {
  background-color: #423f3f !important;
}
.site-form .forminator-ui.forminator-design--default .forminator-radio input:checked + .forminator-radio-bullet {
  border-color: #197bbd !important;
  background-color: #ffffff !important;
}
.site-form .forminator-ui.forminator-design--default .forminator-radio input:checked + .forminator-radio-bullet:before {
  background-color: #197bbd !important;
}
.site-form .forminator-ui.forminator-design--default .forminator-input,
.site-form .forminator-ui.forminator-design--default .forminator-textarea {
  background-color: #ffffff !important;
  border: 1px solid #d9d9d9 !important;
  border-radius: 5px !important;
  color: #423f3f !important;
  font-size: 15px !important;
}
.site-form .forminator-ui.forminator-design--default .forminator-input:hover, .site-form .forminator-ui.forminator-design--default .forminator-input:focus, .site-form .forminator-ui.forminator-design--default .forminator-input:active,
.site-form .forminator-ui.forminator-design--default .forminator-textarea:hover,
.site-form .forminator-ui.forminator-design--default .forminator-textarea:focus,
.site-form .forminator-ui.forminator-design--default .forminator-textarea:active {
  background-color: #ffffff !important;
  border: 1px solid #d9d9d9 !important;
  color: #423f3f !important;
}
.site-form .forminator-ui.forminator-design--default .forminator-input:focus-visible,
.site-form .forminator-ui.forminator-design--default .forminator-textarea:focus-visible {
  border-color: #197bbd !important;
  outline: 1px solid #197bbd !important;
}
.site-form .forminator-ui.forminator-design--default .forminator-checkbox {
  font-size: 15px;
  align-items: flex-start !important;
}
.site-form .forminator-ui.forminator-design--default .forminator-checkbox .forminator-checkbox-box {
  background-color: #ffffff !important;
  border-color: #d9d9d9 !important;
  color: #423f3f !important;
  border-radius: 4px !important;
}
.site-form .forminator-ui.forminator-design--default .forminator-checkbox .forminator-checkbox-label {
  color: #423f3f !important;
  font-size: 15px;
}
.site-form .forminator-ui.forminator-design--default .forminator-checkbox input:checked + .forminator-checkbox-box {
  border-color: #197bbd !important;
  background-color: #197bbd !important;
}
.site-form .forminator-ui.forminator-design--default .forminator-checkbox input:checked + .forminator-checkbox-box::before {
  color: #ffffff !important;
}
.site-form .forminator-ui.forminator-design--default .forminator-button-submit {
  background-color: #000000 !important;
  color: #ffffff !important;
  height: auto;
  width: auto;
  padding: 14px 30px !important;
  line-height: 1.25em;
  font-size: 15px !important;
  font-weight: 500;
  border-radius: 5px !important;
  box-shadow: none !important;
}
.site-form .forminator-ui.forminator-design--default .forminator-button-submit:hover, .site-form .forminator-ui.forminator-design--default .forminator-button-submit:focus, .site-form .forminator-ui.forminator-design--default .forminator-button-submit:active {
  background-color: #423f3f !important;
  color: #ffffff !important;
}
.site-form .forminator-ui.forminator-design--default .forminator-has_error .forminator-input,
.site-form .forminator-ui.forminator-design--default .forminator-has_error .forminator-textarea {
  border-color: #e32c2b !important;
  outline: 1px solid #e32c2b !important;
}
.site-form .forminator-ui.forminator-design--default .forminator-error-message {
  padding: 0 !important;
  background: none !important;
  color: #e32c2b !important;
  font-size: 14px !important;
}
.site-form .forminator-ui.forminator-design--default p {
  font-size: 15px;
}
.site-form .forminator-ui.forminator-design--default.forminator-ui.forminator-custom-form:not(.forminator-size--small)[data-grid=open] .forminator-row {
  margin-left: -10px;
  margin-right: -10px;
}
.site-form .forminator-ui.forminator-design--default.forminator-ui.forminator-custom-form:not(.forminator-size--small)[data-grid=open] .forminator-col {
  padding: 0 10px;
}
.site-form .et-db #et-boc .et_pb_module .forminator-ui.forminator-custom-form:not(.forminator-size--small)[data-grid=open] .forminator-row:not(:last-child),
.site-form .forminator-ui.forminator-custom-form:not(.forminator-size--small)[data-grid=open] .forminator-row:not(:last-child) {
  margin-bottom: 20px;
}

.site-collections article.page .entry-content {
  padding: 0;
}
.site-collections ul.products {
  margin: 0;
}
.site-collections ul.products::after, .site-collections ul.products::before {
  display: none;
}
.site-collections ul.products li.product-category {
  float: none !important;
  position: relative;
  height: calc(100vh - 96px);
  width: 100% !important;
  margin: 0 !important;
}
.site-collections ul.products a {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.site-collections ul.products a:before {
  content: " ";
  position: absolute;
  z-index: 2;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  box-shadow: inset 0 0 rgba(0, 0, 0, 0.1411764706);
  transition: background 0.4s ease-out;
  z-index: 2;
}
.site-collections ul.products img {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100% !important;
  object-fit: cover;
  object-position: 50% 50%;
  margin: 0;
}
.site-collections ul.products h2.woocommerce-loop-category__title {
  position: absolute;
  z-index: 3;
  top: 50%;
  transform: translateY(calc(-50% + 40px));
  left: 0;
  right: 0;
  color: #ffffff;
  font-size: 60px !important;
  font-weight: 600;
  text-align: center;
  transition: transform 0.5s;
}
.site-collections ul.products h2.woocommerce-loop-category__title mark {
  display: block;
  font-size: 0;
  height: 0;
  visibility: hidden;
}
.site-collections ul.products h2.woocommerce-loop-category__title::after {
  display: block;
  width: 250px;
  content: "Ansehen";
  margin: auto;
  border: 1px solid white;
  font-size: 22px;
  background: none;
  font-weight: 400;
  border-radius: 90px;
  padding: 10px 22px;
  line-height: 1.6em;
  min-width: 250px;
}

.reading-width {
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
}
.reading-width:before {
  content: "";
  display: table;
}
.reading-width:after {
  content: "";
  display: table;
  clear: both;
}

.wp-block-image img {
  width: 100%;
}

.table-schedule {
  margin-bottom: 0;
}
.table-schedule table {
  margin-bottom: 0;
}
.table-schedule td {
  border: 0;
  padding: 0;
}

.no-text-decoration {
  text-decoration: none;
}
.no-text-decoration a {
  text-decoration: none;
}

.mt-0 {
  margin-top: 0;
}

.btn-gray a {
  background: #e8e4df;
  font-size: 14px;
  color: #423f3f !important;
  padding: 14px 12px;
  text-decoration: none;
  border-radius: 5px;
  display: inline-block;
  text-align: center !important;
  line-height: 1em;
}

.true-size-on-mobile {
  display: none;
}

.mobile-view {
  display: none;
}

@media (max-width: 1590px) {
  .section-service .content .ss-content .ss-slide-container .ss-img img {
    height: 450px;
  }
  .service-container {
    padding: 0 50px;
  }
  .section-service_three .content .ss-content .ss-item .ss-text h3 {
    font-size: 18px;
  }
}
@media (max-width: 1400px) {
  .content {
    padding: 0 70px;
  }
  .main-header-content .h-menu-search {
    left: auto;
    position: relative;
  }
  #menu-menu-custom {
    display: none !important;
  }
  .section-media .sm-text {
    width: auto;
  }
  .section-media .sm-text .ms-arrow {
    display: none;
  }
  .section-service .content .ss-content .ss-slide-container .ss-img img {
    height: 400px;
  }
  .section-service_three .content .ss-content .ss-item .ss-text h3 {
    font-size: 17px;
  }
  .section-service_three .content .ss-content .ss-item .ms-link .ss-item-link {
    font-size: large;
  }
}
@media (min-width: 1441px) {
  article.page .wp-block-cover,
  article.page .featured-collection {
    margin-left: -90px;
    margin-right: -90px;
  }
  .site-subpage .wp-block-columns {
    padding-left: 90px;
    padding-right: 90px;
  }
  body.search .form-search {
    padding: 0 90px;
  }
  body.search .search-content {
    padding: 30px 90px 0;
  }
  body.search .search-result .sr-filter {
    margin-top: 60px;
  }
}
@media (max-width: 1290px) {
  .section-media .sm-text {
    width: 40%;
  }
  .section-media .sm-text .ms-arrow {
    display: none;
  }
  .section-service_three .content .ss-content .ss-item .ss-text h3 {
    font-size: 14px;
  }
  .section-service_three .content .ss-content .ss-item .ms-link .ss-item-link {
    font-size: small;
  }
}
@media (max-width: 1290px) {
  .main-header-content .h-cart {
    margin-left: 5px;
  }
  .main-header-content .h-menu {
    width: auto;
  }
  .main-header-content .h-menu li a {
    font-size: 10px;
  }
  .language-switcher select {
    font-size: 11px;
  }
  body.search .search-result .sr-item {
    width: 50%;
  }
  .site-form article.page.has-post-thumbnail .entry-content {
    flex-direction: column;
  }
  .site-form article.page.has-post-thumbnail .post-thumbnail {
    max-width: 100%;
    margin-bottom: 30px;
    text-align: center;
  }
  .section-service_slider .ss-slide-middle img {
    height: 100;
    width: 100;
  }
  .section-media .sm-text {
    margin-top: 30px;
    width: 50%;
  }
  .section-media-one .sm-text {
    margin-top: 30px;
    width: 50%;
  }
  .section-media .ms-arrow {
    margin-left: -250px;
  }
  .section-service {
    padding: 50px 0;
  }
  .section-service .content {
    padding: 0 30px;
  }
  .section-service .content .ss-content .ss-slide-container .ss-item {
    flex: 0 0 50%;
  }
  .section-service .content .ss-content .ss-slide-container .ss-img img {
    height: 500px;
  }
}
@media (max-width: 992px) {
  .main-header-content button {
    font-size: 14px;
  }
  .section-media h2 {
    font-size: 28px;
  }
  .section-media-one .sm-text h2 {
    font-size: 28px;
  }
  body.search .search-filter {
    flex: 0 0 170px;
  }
  .section-service .content .ss-content .ss-slide-container .ss-img img {
    height: 400px;
  }
}
@media (max-width: 768px) {
  .main-header-content {
    padding: 20px 15px;
  }
  .main-header-content .h-menu-right .h-booking {
    display: none;
  }
  .main-header-content .h-menu-right .h-catalog {
    display: none;
  }
  .top-nav {
    margin-top: 50px;
  }
  #menu-menu-custom li {
    display: none;
  }
  .footer {
    padding: 30px;
  }
  .footer .f-content {
    flex-wrap: wrap;
  }
  .footer .f-section {
    width: 50%;
    padding: 0px 0px;
  }
  .footer .fs-newsletter {
    flex: 1;
  }
  .content {
    padding: 0 30px;
  }
  .section-media .sm-content {
    padding: 20px;
  }
  .section-media .sm-content .sm-text {
    margin-top: 100px;
    padding: 20px;
    width: 70%;
  }
  .section-media-one .sm-content .sm-text {
    margin-top: 100px;
    padding: 20px;
    width: 70%;
  }
  .section-service {
    padding: 50px 0;
  }
  .section-service .ss-content {
    flex-wrap: wrap;
  }
  .section-service .ss-content .ss-item {
    flex: 0 0 100% !important;
  }
  .section-service .ss-item {
    flex: auto;
    width: 100%;
  }
  .section-service_slider {
    padding: 50px 0;
  }
  .section-service_slider .ss-slide-container {
    padding: 0 20px;
  }
  .section-service_slider .ss-slide {
    margin-bottom: 20px;
  }
  .section-service_slider .ss-slide-middle img {
    width: 200px;
    height: 200px;
  }
  .section-service_slider .ss-heading {
    margin-bottom: 20px;
  }
  .section-service_slider .ss-heading h2 {
    font-size: 24px;
  }
  .section-service_slider .ss-text {
    font-size: 14px;
  }
  .section-service_two .ss-content {
    padding: 30px 0;
  }
  .section-service_two .ss-item {
    padding: 0;
  }
  .section-service_two .ss-img img {
    width: 500px;
  }
  .section-service_two .ms-link-service .ms-link {
    font-size: 14px;
    padding: 10.5px 30px;
  }
  .section-service_two .ms-link-primary {
    font-size: 20px;
  }
  .section-service_three .content .ss-content .ss-item .ms-link .ss-item-link {
    padding: 10.5px 30px;
    font-size: x-small;
    height: 100%;
  }
  .section-service_three .content .ss-content .ss-item .ss-text h3 {
    font-size: small;
  }
  .section-service_three .ss-content {
    padding: 5% 0px;
  }
  .section-service_three .ss-content .ss-item {
    width: calc(50% - 10px);
  }
  .section-service_three .ss-content .ss-item .ss-text {
    padding: 0 20px;
  }
  .section-service_three .ss-content .ss-item .ss-text h3 {
    font-size: 22px;
  }
  .section-service_three .ss-content .ss-item .ss-img img {
    max-width: 100%;
  }
  .section-service_three .ss-content .ss-item .ms-link .ss-item-link {
    font-size: 14px;
    height: 100%;
  }
  body.search .form-search {
    padding: 0 20px;
  }
  body.search .form-search input[type=search] {
    font-size: 15px;
    padding: 7.5px 0;
  }
  body.search .form-search-content {
    width: 70%;
  }
  body.search .search-content {
    padding: 30px 20px 0;
  }
  body.search .search-filter {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #ffffff;
    z-index: 2;
  }
  body.search .search-filter .sf-wrapper {
    display: none;
    padding: 20px;
  }
  body.search .search-filter .sf-nav {
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
  }
  body.search .search-filter .sf-nav button {
    -webkit-appearance: none;
    display: inline-block;
    background-color: #fff;
    color: #000;
    border: 1px solid #212121;
    height: 65px;
    width: 100%;
    padding: 18px 30px;
    line-height: 1.25em;
    vertical-align: top;
    font-size: 15px;
    font-weight: 400;
    transition: opacity 0.3s, color 0.3s, background-color 0.3s, border-color 0.3s, transform 0.3s;
    border-radius: 0;
  }
  body.search .search-filter .sf-nav .sfn-close {
    display: none;
  }
  body.search .sfn-active {
    top: 70px;
  }
  body.search .sfn-active .sf-wrapper {
    display: block;
  }
  body.search .sfn-active .sf-nav .sfn-open {
    display: none;
  }
  body.search .sfn-active .sf-nav .sfn-close {
    display: block;
  }
  body.search .search-result {
    margin-left: 0;
  }
  body.search .search-result .sr-filter {
    margin-top: 0;
  }
  body.search .search-result .sr-item {
    margin-top: 20px;
  }
  .post-hide-mobile {
    display: none;
  }
  .true-size-on-mobile {
    display: block;
    width: 100%;
  }
  .mobile-height-auto {
    height: auto !important;
  }
  .desktop-view {
    display: none;
  }
  .mobile-view {
    display: block;
  }
  .section-service .content .ss-content .ss-slide-container .ss-img img {
    height: 500px;
  }
  .main-nav {
    height: 100vh;
  }
  .main-nav .place-dis {
    display: block !important;
    margin-bottom: 10px;
  }
  .main-nav .place-dis .icon-place {
    display: flex;
    align-items: start;
    justify-content: center;
    box-shadow: rgba(117, 41, 33, 0.1) 0px 4px 16px, rgba(94, 38, 38, 0.1) 0px 8px 24px, rgba(109, 34, 34, 0.1) 0px 16px 56px;
  }
  .main-nav .place-dis .icon-place .h-booking {
    height: 50px;
    width: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
  }
  .main-nav .place-dis .icon-place .h-booking span {
    font-weight: 600 !important;
  }
  .main-nav .place-dis .icon-place .h-booking a img {
    height: 20px;
    width: 20px;
    transform: rotate(25deg);
    transition: transform 0.3s ease;
  }
  .main-nav .place-dis .icon-place .h-booking:hover {
    background-color: #f0f0f0;
  }
  .main-nav .place-dis .icon-place .h-booking:hover span {
    font-weight: 700 !important;
  }
  .main-nav .place-dis .icon-place .h-booking:hover a img {
    height: 25px;
    width: 25px;
  }
  .main-nav .place-dis .icon-place .h-catalog {
    width: 100vh;
    height: 50px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    justify-content: center;
    cursor: pointer;
  }
  .main-nav .place-dis .icon-place .h-catalog span {
    font-weight: 600 !important;
  }
  .main-nav .place-dis .icon-place .h-catalog a img {
    height: 20px;
    width: 20px;
  }
  .main-nav .place-dis .icon-place .h-catalog:hover {
    background-color: #f0f0f0;
  }
  .main-nav .place-dis .icon-place .h-catalog:hover span {
    font-weight: 700 !important;
  }
  .main-nav .place-dis .icon-place .h-catalog:hover a img {
    height: 25px;
    width: 25px;
  }
}
@media (max-width: 576px) {
  .main-header-content {
    padding: 10px !important;
  }
  .main-header-content button > span {
    display: none;
  }
  .main-header-content .h-logo {
    margin-top: 0 !important;
    width: 150px;
  }
  .main-header-content .h-cart {
    display: none;
  }
  .main-header-content .h-menu-right {
    flex-direction: row;
    right: 0;
    text-align: center;
  }
  .main-header-content .h-booking {
    margin: 0 10px;
  }
  .main-header-content .main-menu-button {
    margin-left: 18px;
  }
  #main-menu-search {
    display: none;
  }
  .top-nav .menu li {
    margin-bottom: 0;
  }
  .top-nav .sub-menu {
    padding-left: 30px;
  }
  .top-sub-nav button {
    margin-left: 30px;
  }
  .top-nav-search {
    display: block;
  }
  .search-nav {
    padding: 0 20px;
    width: 100%;
  }
  .footer {
    background-color: #f2f1f1;
  }
  .footer .f-content {
    padding: 0px 0px;
  }
  .footer .fb-item {
    padding: 0px 0px;
  }
  .footer .f-section {
    width: 100%;
    margin-bottom: 10px;
  }
  .footer .f-section h6 {
    cursor: pointer;
    position: relative;
  }
  .footer .f-section h6::after {
    content: "+";
    position: absolute;
    right: 10px;
    top: 0;
    font-weight: bold;
  }
  .footer .f-section.open h6::after {
    content: "-";
  }
  .footer .f-section p,
  .footer .f-section ul,
  .footer .f-section .menu,
  .footer .f-section .menu-menu-footer-company-container {
    display: none;
  }
  .footer .f-section.open p, .footer .f-section.open ul, .footer .f-section.open .menu, .footer .f-section.open .menu-menu-footer-company-container {
    display: block;
  }
  .footer .fc-bottom {
    flex-direction: column-reverse;
  }
  .footer .fs-payment {
    text-align: left;
  }
  .footer .f-bottom {
    padding: 30px 0px;
  }
  .footer .fb-content {
    flex-direction: column;
  }
  .footer .fb-content li {
    margin-left: 0px;
  }
  .footer .fb-content ul {
    flex-direction: column;
  }
  .content {
    padding: 0 20px;
  }
  article.page .entry-header.has-post-thumbnail {
    height: calc(100vh - 85px);
  }
  article.page .entry-header.has-post-thumbnail.half-height {
    height: 400px;
  }
  article.page .entry-header.has-post-thumbnail .entry-title {
    font-size: 42px;
    font-weight: 600;
    letter-spacing: 1px;
    width: 80%;
    bottom: 35%;
    word-break: break-word;
  }
  article.page .entry-title {
    font-size: 1.9em;
  }
  article.page .entry-content {
    padding-top: 50px;
    padding-left: 20px;
    padding-right: 20px;
  }
  article.page .wp-block-cover,
  article.page .featured-collection {
    margin-left: -20px;
    margin-right: -20px;
  }
  article.page .featured-collection {
    padding-top: 50px;
    padding-bottom: 50px;
    padding-left: 20px;
    padding-right: 20px;
  }
  article.page .featured-collection .view-all-link {
    font-size: 1em;
  }
  article.page h2 {
    font-size: 2.375rem;
    font-weight: 400;
  }
  article.page h4 {
    font-size: 1.125rem;
    font-weight: 500;
  }
  article.page h1.wp-block-heading {
    font-size: 2.375rem;
    font-weight: 400;
  }
  article.page .inline-mini-form {
    width: 70%;
  }
  article.page .inline-mini-form input {
    font-size: 15px;
  }
  article.page .faq-sidebar {
    display: none;
  }
  article.page .faq-container--large {
    margin-left: 0;
  }
  .site-subpage .subpage-text {
    padding: 0;
  }
  .error-404 {
    padding: 20px 30px;
  }
  .error-404 h2 {
    font-weight: 400;
    margin-bottom: -0.25em;
    font-size: 2.375rem;
  }
  .error-404 h2:after {
    display: none;
  }
  .site-form article.page .entry-header .entry-title {
    font-size: 2.375rem;
    font-weight: 400;
  }
  .site-subpage {
    color: #000000;
  }
  .site-subpage .wp-block-group.has-background,
  .site-subpage .wp-block-columns {
    padding-left: 20px;
    padding-right: 20px;
  }
  .alert.zoho-booking-modal .alert-content {
    width: 100%;
    height: 100%;
    margin: 0;
    max-height: 100%;
  }
  .section-service .content .ss-content .ss-slide-container .ss-img img {
    height: 350px;
  }
  .section-media {
    height: 50vh;
    padding: 0px 0px;
  }
  .section-media .sm-content {
    padding: 20px;
    height: 50vh;
  }
  .section-media .sm-content .sm-text {
    margin-top: 100px;
    padding: 20px;
    width: 90%;
    margin: 0px;
    bottom: 0px;
    left: 0px;
  }
  .section-media .sm-content .sm-text h3 {
    font-size: 17px;
  }
  .section-media .sm-content .sm-text h2 {
    font-size: 25px;
  }
  .section-media .sm-content .sm-text p {
    font-size: 12px;
  }
  .section-media .sm-content .sm-text a {
    font-size: 12px;
  }
  .section-media-one {
    height: 50vh;
    padding: 0 0;
  }
  .section-media-one .sm-content {
    padding: 10px;
    height: 50vh;
  }
  .section-media-one .sm-content .bg-color {
    height: 50vh;
    left: 0;
    top: 0;
  }
  .section-media-one .sm-content .sm-text {
    margin-top: 100px;
    width: 90%;
    margin: 0px;
    bottom: 0px;
    left: 0px;
    padding: 20px;
  }
  .section-media-one .sm-content .sm-text h3 {
    font-size: 17px;
  }
  .section-media-one .sm-content .sm-text h2 {
    font-size: 25px;
  }
  .section-media-one .sm-content .sm-text p {
    font-size: 12px;
  }
  .section-media-one .sm-content .sm-text .ms-links .ms-link {
    font-size: 12px;
  }
  .section-service_slider .ss-slide-middle img {
    width: 100px;
    height: 100px;
  }
  .section-service_slider .ss-slide .ss-text h3 {
    font-size: medium;
  }
  .section-service_two {
    padding: 20px 0;
  }
  .section-service_three .content .ss-content .ss-item .ss-text h3 {
    font-size: x-small;
  }
  .section-service_three .content .ss-content .ss-item .ss-text .ms-link a {
    font-size: xx-small;
  }
  .section-service_three .content .ss-content .ss-item .ms-link .ss-item-link {
    font-size: xx-small;
  }
  .section-service_three .content .ss-content .ss-item .ms-link .ss-item-link {
    padding: 5px 3px;
    height: 100%;
  }
}
.menu-menu-custom-container {
  width: 100%;
}

#menu-menu-custom {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: flex-start;
  align-items: center !important;
  /* Align the menu items to the left */
}

#menu-menu-custom li {
  margin: 0 10px;
  width: max-content;
  /* Add some space between the menu items */
}

#menu-menu-custom li a {
  text-decoration: none;
  color: #000000;
  /* Change this to your desired text color */
  padding: 10px 15px;
  display: block;
  position: relative;
  width: max-content;
}

#menu-menu-custom li a:hover,
#menu-menu-custom li a.active {
  position: relative;
}

#menu-menu-custom li a:hover::after,
#menu-menu-custom li a.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  /* Adjust this value to control the distance of the underline from the text */
  height: 2px;
  /* Adjust this value to control the thickness of the underline */
  background-color: #000000;
  /* Change this to your desired underline color */
}

.language-switcher select {
  -webkit-appearance: none;
  /* Safari dan Chrome */
  -moz-appearance: none;
  /* Firefox */
  appearance: none;
  padding: 5px 30px 5px 10px;
  /* Padding untuk memastikan teks dan ikon tidak tumpang tindih */
  font-size: 16px;
  border: none;
  border-radius: 5px;
  background-color: #ffffff;
  color: #874A3B;
  cursor: pointer;
  background: url(data:image/svg+xml;base64,PHN2ZyBmaWxsPSIjODc0QTNCIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAxMiAxMiI+PHBhdGggZD0iTTAgNGw2IDYgNi02eiIvPjwvc3ZnPg==) no-repeat right 11px center;
  background-size: 17px;
}

/* Untuk Safari */
@media not all and (min-resolution: 0.001dpcm) {
  @supports (-webkit-appearance: none) and (stroke-color: transparent) {
    .language-switcher select {
      background-position: right 10px center;
    }
  }
}
/* Ensure the header stays fixed at the top */
.main-header {
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  /* Ensure it stays on top of other elements */
  transition: transform 0.6s ease-in-out;
  /* Increased transition duration for smoother effect */
}

/* Add padding to the body to account for the fixed header height */
body {
  padding-top: 70px;
  /* Adjust this value to the height of your header */
  overflow-x: hidden !important;
}

.main-nav {
  border-top: 1px solid #000;
  display: none;
  opacity: 0;
  transition: opacity ease 0.4s;
  overflow-y: auto;
  position: fixed;
  width: 100%;
  z-index: 1000;
}
.main-nav .place-dis {
  display: none;
}
.main-nav.fading {
  opacity: 0;
}
.main-nav ul {
  margin: 0;
  padding: 0;
}
.main-nav li {
  list-style: none;
}
.main-nav.mn-active {
  display: block;
  background-color: #ffffff;
  opacity: 1;
}
.main-nav.mn-active .head-menu-mobile {
  display: none;
}
.main-nav.mn-active .head-menu {
  padding: 60px 20px 20px;
  overflow-y: auto;
}
.main-nav.mn-active .head-menu .menu-new-menu-container .menu {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-around;
}
.main-nav.mn-active .head-menu .menu-new-menu-container .menu .menu-item {
  position: relative;
}
.main-nav.mn-active .head-menu .menu-new-menu-container .menu .menu-item > a {
  display: block;
  color: #000000;
  text-decoration: none;
  font-size: 18px;
  font-weight: 700;
  padding: 10px;
  transition: background-color 0.3s ease;
  font-family: "CormorantGaramond", serif;
}
.main-nav.mn-active .head-menu .menu-new-menu-container .menu .menu-item > a .menu-desc {
  margin: 0px;
}
.main-nav.mn-active .head-menu .menu-new-menu-container .menu .menu-item .sub-menu {
  list-style: none;
  padding: 0;
}
.main-nav.mn-active .head-menu .menu-new-menu-container .menu .menu-item .sub-menu .menu-item > a {
  display: block;
  padding: 5px 10px;
  text-align: left;
  font-family: "Trueno", sans-serif;
  font-weight: 200;
}
.main-nav.mn-active .head-menu .menu-new-menu-container .menu .menu-item .sub-menu .menu-item > a .menu-desc {
  position: relative;
  display: inline-block;
  font-size: 14px;
  font-weight: 300;
  color: #000;
  transition: color 0.3s ease;
  margin: 0px;
}
.main-nav.mn-active .head-menu .menu-new-menu-container .menu .menu-item .sub-menu .menu-item > a .menu-desc::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background-color: #874A3B;
  transition: width 0.3s ease;
}
.main-nav.mn-active .head-menu .menu-new-menu-container .menu .menu-item .sub-menu .menu-item > a:hover .menu-desc::after {
  width: 100%;
}

@media (max-width: 768px) {
  #main-nav.mn-active {
    overflow-y: auto;
  }
  #main-nav.mn-active .head-menu {
    display: none !important;
    padding: 0 20px 20px;
    flex-direction: column;
    justify-content: start !important;
    height: calc(100vh - 80px);
    overflow-y: auto;
  }
  #main-nav.mn-active .head-menu .menu-new-menu-container {
    position: relative;
    height: 100vh;
    overflow: hidden;
  }
  #main-nav.mn-active .head-menu .menu-new-menu-container .menu {
    list-style: none;
    padding: 0;
    margin: 0;
    flex-direction: column;
  }
  #main-nav.mn-active .head-menu .menu-new-menu-container .menu > .menu-item {
    display: block;
    border-bottom: 1px solid #eee;
  }
  #main-nav.mn-active .head-menu .menu-new-menu-container .menu > .menu-item .sub-menu {
    display: none;
  }
  #main-nav.mn-active .head-menu .menu-new-menu-container .menu > .menu-item > a {
    display: block;
    padding: 15px 20px;
    font-size: 16px;
    color: #333;
    text-decoration: none;
  }
  #main-nav.mn-active .head-menu .menu-new-menu-container .menu > .menu-item > a:hover {
    background: #f5f5f5;
  }
  #main-nav.mn-active .head-menu .menu-new-menu-container .menu > .menu-item > a p.menu-desc {
    margin: 0;
  }
  #main-nav.mn-active .head-menu-mobile {
    display: block;
  }
  #main-nav.mn-active .head-menu-mobile .mobile-menu {
    position: relative;
    list-style: none;
    padding: 0;
    margin: 0;
  }
  #main-nav.mn-active .head-menu-mobile .mobile-menu > li {
    position: relative;
    border-bottom: 1px solid #eee;
  }
  #main-nav.mn-active .head-menu-mobile .mobile-menu > li > a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 7px 20px;
    text-decoration: none;
    color: #000000;
    font-size: 16px;
  }
  #main-nav.mn-active .head-menu-mobile .mobile-menu > li > a p {
    font-family: "CormorantGaramond", serif;
    font-size: 20px;
    margin: 0px;
    font-weight: 600;
  }
  #main-nav.mn-active .head-menu-mobile .mobile-menu > li.menu-item-has-children > a::after {
    content: "";
    float: right;
    margin-left: 10px;
    width: 12px;
    height: 12px;
    background: url("../img/arrow.png") no-repeat center;
    background-size: contain;
  }
  #main-nav.mn-active .head-menu-mobile .mobile-menu .sub-menu {
    position: fixed;
    top: 116px;
    left: 100%;
    width: 100%;
    height: 100vh;
    background: #fff;
    display: flex;
    flex-direction: column;
    z-index: 999;
    padding-top: 0px;
    transition: left 0.3s ease-in-out;
    overflow-y: auto;
    list-style: none;
    margin: 0;
    padding-left: 0;
  }
  #main-nav.mn-active .head-menu-mobile .mobile-menu .sub-menu .back-item {
    background: #f5f5f5;
    font-weight: 600;
  }
  #main-nav.mn-active .head-menu-mobile .mobile-menu .sub-menu .back-item a {
    display: block;
    color: #000000;
    text-decoration: none;
    font-family: "CormorantGaramond", serif;
    font-size: 20px;
  }
  #main-nav.mn-active .head-menu-mobile .mobile-menu .sub-menu li {
    border-bottom: 1px solid #eee;
  }
  #main-nav.mn-active .head-menu-mobile .mobile-menu .sub-menu li a {
    padding: 7px 20px;
    display: block;
    text-decoration: none;
    color: #333;
    font-family: "Trueno", sans-serif;
  }
  #main-nav.mn-active .head-menu-mobile .mobile-menu .sub-menu li a .menu-desc {
    margin: 0px;
  }
  #main-nav.mn-active .head-menu-mobile .mobile-menu li.open > .sub-menu {
    left: 0;
  }
}
body.no-scroll {
  overflow: hidden;
}

/*# sourceMappingURL=style.css.map */
