@import url(https://fonts.googleapis.com/css2?family=Titillium+Web:wght@300;400;600;700&display=swap);
@charset "UTF-8";
/* http://meyerweb.com/eric/tools/css/reset/
	 v2.0 | 20110126
	 License: none (public domain)
	 Changed from CSS to SASS
*/
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after, q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

@font-face {
  font-family: "ivy_moderegular";
  src: url("../assets/fonts/ivymode/ivymode-regular-webfont.woff2") format("woff2"), url("../assets/fonts/ivymode/ivymode-regular-webfont.woff") format("woff"), url("../assets/fonts/ivymode/ivymode-regular-webfont.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
html {
  font-family: "Titillium Web", sans-serif;
  font-weight: 400;
  font-size: 15px;
  min-width: 300px;
}

body {
  position: relative;
}

@keyframes pulse {
  0% {
    transform: translate3d(-1px, -1px, 0) scale(1);
    border-color: rgba(255, 255, 255, 0.6);
  }
  100% {
    transform: translate3d(-1px, -1px, 0) scale(1.75);
    opacity: 0;
  }
}
@keyframes creation_show {
  0% {
    display: none;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    filter: alpha(opacity=0);
    opacity: 0;
  }
  1% {
    display: table;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    filter: alpha(opacity=0);
    opacity: 0;
  }
  100% {
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    filter: alpha(opacity=100);
    opacity: 1;
  }
}
@keyframes creation_hide {
  0% {
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    filter: alpha(opacity=100);
    opacity: 1;
  }
  85% {
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    filter: alpha(opacity=100);
    opacity: 1;
  }
  100% {
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    filter: alpha(opacity=0);
    opacity: 0;
  }
}
/**
 * ----------------------------------------
 * animation fade-in-left
 * ----------------------------------------
 */
@keyframes fade-in-left {
  0% {
    transform: translateX(-50px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
.fade-in-left {
  animation: fade-in-left 0.6s cubic-bezier(0.39, 0.575, 0.565, 1) both;
}
@keyframes fade-in-left-far {
  0% {
    transform: translateX(-100px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
.fade-in-left-far {
  animation: fade-in-left-far 1s cubic-bezier(0.39, 0.575, 0.565, 1) both;
}

/**
 * ----------------------------------------
 * animation fade-in-right
 * ----------------------------------------
 */
@keyframes fade-in-right {
  0% {
    transform: translateX(50px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
.fade-in-right {
  animation: fade-in-right 0.6s cubic-bezier(0.39, 0.575, 0.565, 1) both;
}

/**
 * ----------------------------------------
 * animation fade-in-top
 * ----------------------------------------
 */
@keyframes fade-in-top {
  0% {
    transform: translateY(-50px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
.fade-in-top {
  animation: fade-in-top 0.6s cubic-bezier(0.39, 0.575, 0.565, 1) both;
}

/**
 * ----------------------------------------
 * animation fade-in-bottom
 * ----------------------------------------
 */
@keyframes fade-in-bottom {
  0% {
    transform: translateY(50px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
.fade-in-bottom {
  animation: fade-in-bottom 0.6s cubic-bezier(0.39, 0.575, 0.565, 1) both;
}

@keyframes scrollbar {
  0% {
    transform: translateY(-100%);
  }
  100% {
    transform: translateY(100%);
  }
}
@keyframes scrollbar-single {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(0%);
  }
}
@keyframes arrow {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(5px);
  }
  100% {
    transform: translateY(0);
  }
}
.hidden {
  display: none;
}

.sro, .screen-reader-text {
  position: absolute;
  top: -99999px;
  left: -99999px;
}

.clearfix:before,
.clearfix:after {
  content: " "; /* 1 */
  display: table; /* 2 */
}

.clearfix:after {
  clear: both;
}

select::-ms-expand {
  display: none;
}

.invisible {
  visibility: hidden;
}

a {
  text-decoration: none;
}

body {
  overflow-x: hidden;
}

@media screen and (max-width: 1023px) {
  .-nomobile {
    display: none !important;
  }
}

@media screen and (min-width: 1024px) {
  .-nodesktop {
    display: none !important;
  }
}

.product.has-default-attributes.has-children > .images {
  opacity: 1;
}

.darkbg.-padding, .lightbg.-padding, .halfbgsmall-right.-padding, .halfbgxsmall-right.-padding, .halfbg-right.-padding {
  padding: 4rem 0;
}
@media screen and (min-width: 1024px) {
  .darkbg.-padding, .lightbg.-padding, .halfbgsmall-right.-padding, .halfbgxsmall-right.-padding, .halfbg-right.-padding {
    padding: 7rem 0;
  }
}
.darkbg.-paddingtop, .lightbg.-paddingtop, .halfbgsmall-right.-paddingtop, .halfbgxsmall-right.-paddingtop, .halfbg-right.-paddingtop {
  padding: 4rem 0 0;
}
@media screen and (min-width: 1024px) {
  .darkbg.-paddingtop, .lightbg.-paddingtop, .halfbgsmall-right.-paddingtop, .halfbgxsmall-right.-paddingtop, .halfbg-right.-paddingtop {
    padding: 7rem 0 0;
  }
}
.darkbg.-paddingbottom, .lightbg.-paddingbottom, .halfbgsmall-right.-paddingbottom, .halfbgxsmall-right.-paddingbottom, .halfbg-right.-paddingbottom {
  padding: 0 0 4rem;
}
@media screen and (min-width: 1024px) {
  .darkbg.-paddingbottom, .lightbg.-paddingbottom, .halfbgsmall-right.-paddingbottom, .halfbgxsmall-right.-paddingbottom, .halfbg-right.-paddingbottom {
    padding: 0 0 7rem;
  }
}
.darkbg.-xbigpaddingtop, .lightbg.-xbigpaddingtop, .halfbgsmall-right.-xbigpaddingtop, .halfbgxsmall-right.-xbigpaddingtop, .halfbg-right.-xbigpaddingtop {
  padding-top: 7.5rem;
}
@media screen and (min-width: 1024px) {
  .darkbg.-xbigpaddingtop, .lightbg.-xbigpaddingtop, .halfbgsmall-right.-xbigpaddingtop, .halfbgxsmall-right.-xbigpaddingtop, .halfbg-right.-xbigpaddingtop {
    padding-top: 18rem;
  }
}
.darkbg.-xbigpaddingbottom, .lightbg.-xbigpaddingbottom, .halfbgsmall-right.-xbigpaddingbottom, .halfbgxsmall-right.-xbigpaddingbottom, .halfbg-right.-xbigpaddingbottom {
  padding-bottom: 15rem;
}
@media screen and (min-width: 1024px) {
  .darkbg.-xbigpaddingbottom, .lightbg.-xbigpaddingbottom, .halfbgsmall-right.-xbigpaddingbottom, .halfbgxsmall-right.-xbigpaddingbottom, .halfbg-right.-xbigpaddingbottom {
    padding-bottom: 33rem;
  }
}

.darkbg {
  background: #221f20;
  color: white;
}
.darkbg * {
  color: white;
}

.lightbg {
  background: rgba(218, 199, 184, 0.15);
}

.halfbg-left {
  position: relative;
}
.halfbg-left:before {
  content: "";
  width: 50%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
@media screen and (max-width: 767px) {
  .halfbg-left:before {
    width: 0;
  }
}
.halfbg-left.-light:before {
  background: rgba(218, 199, 184, 0.15);
}

.halfbg-right {
  position: relative;
  width: 100%;
}
.halfbg-right:before {
  content: "";
  width: 50%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
}
@media screen and (max-width: 767px) {
  .halfbg-right:before {
    width: 0;
  }
}
.halfbg-right.-white:before {
  background: white;
}
.halfbg-right.-negtopbefore:before {
  top: -270px;
}

.halfbgsmall-right {
  position: relative;
}
.halfbgsmall-right:before {
  content: "";
  width: 50%;
  height: 45%;
  position: absolute;
  top: 0;
  right: 0;
}
@media screen and (max-width: 767px) {
  .halfbgsmall-right:before {
    width: 0;
  }
}
.halfbgsmall-right.-light:before {
  background: rgba(218, 199, 184, 0.15);
}
.halfbgsmall-right.-bottom:before {
  top: auto;
  bottom: 0;
}

.halfbgxsmall-right {
  position: relative;
}
.halfbgxsmall-right:before {
  content: "";
  width: 50%;
  height: 185px;
  position: absolute;
  top: 0;
  right: 0;
}
@media screen and (max-width: 767px) {
  .halfbgxsmall-right:before {
    width: 0;
  }
}
.halfbgxsmall-right.-light:before {
  background: rgba(218, 199, 184, 0.15);
}
.halfbgxsmall-right.-bottom:before {
  top: auto;
  bottom: 0;
}

.bg25-dark {
  position: relative;
}
.bg25-dark:before {
  content: "";
  width: 45%;
  height: 100%;
  position: absolute;
  top: 0;
  background: #221f20;
}
@media screen and (max-width: 767px) {
  .bg25-dark:before {
    width: 0;
  }
}
.bg25-dark.-right:before {
  right: 0;
}
@media screen and (min-width: 1024px) {
  .bg25-dark.-roundarrows {
    margin-top: 535px;
  }
  .bg25-dark.-roundarrows:after {
    content: "";
    width: 40%;
    height: 150px;
    background: #221f20;
    position: absolute;
    top: -150px;
    right: 0;
  }
}

.bg25-light {
  position: relative;
}
.bg25-light:before {
  content: "";
  width: 45%;
  height: 100%;
  position: absolute;
  top: 0;
  background: #f9f7f4;
}
@media screen and (max-width: 767px) {
  .bg25-light:before {
    width: 0;
  }
}
.bg25-light.-left:before {
  left: 0;
}
@media screen and (min-width: 1024px) {
  .bg25-light.-roundarrows {
    margin-top: 535px;
  }
  .bg25-light.-roundarrows:after {
    content: "";
    width: 40%;
    height: 150px;
    background: #f9f7f4;
    position: absolute;
    top: -150px;
    right: 0;
  }
}
@media screen and (min-width: 1024px) {
  .bg25-light.-roundarrows.-left:after {
    left: 0;
  }
}

.big-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 0;
  height: 100vh;
  z-index: 501;
  transition: width 0.2s linear 0.2s;
  color: white !important;
  pointer-events: all;
}
.big-menu.-is-open {
  width: 100vw;
}
.big-menu.-is-open .menu-block {
  padding: 60px 40px 30px 40px;
  overflow-y: auto;
}
@media screen and (max-width: 767px) {
  .big-menu.-is-open .menu-block {
    width: 100%;
    right: 0;
  }
}
@media screen and (max-width: 1023px) {
  .big-menu.-is-open .menu-block {
    padding: 60px 40px 30px;
  }
}
@media screen and (min-width: 1024px) {
  .big-menu.-is-open .menu-block {
    width: 60vw;
    right: 40vw;
  }
}
@media screen and (min-width: 1424px) {
  .big-menu.-is-open .menu-block {
    padding: 30px 60px;
  }
}
.big-menu.-is-open .menu-block .right {
  opacity: 1;
}
.big-menu.-is-open .menu-block .right > * {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 0.6s;
}
.big-menu.-is-open .menu-block .left {
  opacity: 1;
}
.big-menu.-is-open .menu-block .left > * {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 0.6s;
}
@media screen and (min-width: 768px) {
  .big-menu.-is-open .image-block {
    width: 40vw;
    transition-delay: 0.2s;
  }
}
.big-menu.-is-open .image-block .image .logo {
  opacity: 1;
  transition-delay: 0.2s;
}
.big-menu.-is-open .image-block:before {
  transform: translateX(0);
}
.big-menu .menu-block {
  width: 0;
  height: 100vh;
  position: fixed;
  top: 120px;
  right: 0;
  z-index: 501;
  width: 0;
  height: calc(100% - 120px);
  overflow: hidden;
  transition: all 0.81s cubic-bezier(0.6, 0, 0.1, 1), height 0.001s linear 1s;
  display: flex;
  box-sizing: border-box;
  flex-direction: column-reverse;
}
@media screen and (min-width: 641px) {
  .big-menu .menu-block {
    flex-direction: row;
    align-items: flex-end;
  }
}
@media screen and (min-width: 768px) {
  .big-menu .menu-block {
    flex-direction: column-reverse;
  }
}
@media screen and (min-width: 1024px) {
  .big-menu .menu-block {
    flex-direction: row;
  }
}
.big-menu .menu-block > * {
  width: 100%;
}
@media screen and (min-width: 641px) {
  .big-menu .menu-block > * {
    width: 50%;
  }
}
@media screen and (min-width: 768px) {
  .big-menu .menu-block > * {
    width: 100%;
  }
}
.big-menu .menu-block .right {
  opacity: 0;
}
@media screen and (max-width: 640px) {
  .big-menu .menu-block .right {
    margin-bottom: 3rem;
  }
}
@media screen and (min-width: 641px) {
  .big-menu .menu-block .right {
    text-align: right;
  }
}
@media screen and (min-width: 768px) {
  .big-menu .menu-block .right {
    text-align: left;
    margin-bottom: 3rem;
  }
}
@media screen and (min-width: 1024px) {
  .big-menu .menu-block .right {
    margin-bottom: 0;
    text-align: right;
  }
}
.big-menu .menu-block .right > * {
  opacity: 0;
  transform: translateX(20px);
  transition: all 0.71s ease;
}
.big-menu .menu-block .right .main-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  margin-bottom: 4rem;
}
.big-menu .menu-block .right .main-menu .menu > .menu-item > a {
  display: -ms-flex;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  font-family: "ivy_moderegular";
  color: white;
  font-size: 2rem;
  padding: 1rem 0;
}
@media screen and (min-width: 641px) and (max-width: 768px) {
  .big-menu .menu-block .right .main-menu .menu > .menu-item > a {
    justify-content: flex-end;
  }
}
@media screen and (min-width: 1024px) {
  .big-menu .menu-block .right .main-menu .menu > .menu-item > a {
    justify-content: flex-end;
  }
}
.big-menu .menu-block .right .main-menu .menu > .menu-item > a:hover {
  color: #a78930;
}
.big-menu .menu-block .right .main-menu .menu > .menu-item.menu-item-has-children .chevron {
  width: 10px;
  height: 7px;
  display: -ms-flex;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  right: -1rem;
  transition: 0.3s ease;
}
.big-menu .menu-block .right .main-menu .menu > .menu-item.menu-item-has-children .chevron svg {
  width: 100%;
  fill: white;
  transition: 0.3s ease;
}
.big-menu .menu-block .right .main-menu .menu > .menu-item.menu-item-has-children .sub-menu {
  margin-bottom: 1rem;
  display: none;
}
.big-menu .menu-block .right .main-menu .menu > .menu-item.menu-item-has-children .sub-menu .menu-item a {
  color: white;
  display: -ms-flex;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  padding: 5px 0px;
  transition: 0.3s ease;
}
@media screen and (min-width: 641px) and (max-width: 768px) {
  .big-menu .menu-block .right .main-menu .menu > .menu-item.menu-item-has-children .sub-menu .menu-item a {
    justify-content: flex-end;
  }
}
@media screen and (min-width: 1024px) {
  .big-menu .menu-block .right .main-menu .menu > .menu-item.menu-item-has-children .sub-menu .menu-item a {
    justify-content: flex-end;
  }
}
.big-menu .menu-block .right .main-menu .menu > .menu-item.menu-item-has-children .sub-menu .menu-item a:hover {
  color: #a78930;
}
.big-menu .menu-block .right .main-menu .menu > .menu-item.menu-item-has-children.active .chevron {
  transform: rotate(180deg);
}
.big-menu .menu-block .right .main-menu .menu > .menu-item.menu-item-has-children.active .chevron svg {
  fill: #a78930;
}
.big-menu .menu-block .right .main-menu .menu > .menu-item.menu-item-has-children.active .sub-menu {
  display: block;
}
.big-menu .menu-block .right .small-menu {
  display: -ms-flex;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
}
@media screen and (min-width: 641px) {
  .big-menu .menu-block .right .small-menu {
    justify-content: flex-end;
  }
}
@media screen and (min-width: 768px) {
  .big-menu .menu-block .right .small-menu {
    justify-content: flex-start;
  }
}
@media screen and (min-width: 1024px) {
  .big-menu .menu-block .right .small-menu {
    justify-content: flex-end;
  }
}
.big-menu .menu-block .right .small-menu .menu-item a {
  color: white;
  text-transform: uppercase;
  display: -ms-flex;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  padding-left: 1.5rem;
}
.big-menu .menu-block .right .small-menu .menu-item a:after {
  content: "-";
  color: white;
  padding-left: 1.5rem;
}
.big-menu .menu-block .right .small-menu .menu-item a:hover {
  color: #a78930;
}
.big-menu .menu-block .right .small-menu .menu-item:first-child a {
  padding-left: 0;
}
.big-menu .menu-block .right .small-menu .menu-item:last-child a:after {
  display: none;
}
.big-menu .menu-block .left {
  opacity: 0;
}
.big-menu .menu-block .left > * {
  opacity: 0;
  transform: translateX(20px);
  transition: all 0.71s ease;
}
.big-menu .menu-block .left .block {
  margin-bottom: 2.7rem;
  line-height: 1.5;
}
.big-menu .menu-block .left .block .title {
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.big-menu .menu-block .left .block a {
  color: white;
}
.big-menu .menu-block .left .block a:hover {
  color: #a78930;
}
.big-menu .menu-block .left .socials {
  margin-top: 5rem;
}
.big-menu .menu-block .left .socials .link {
  transition: 0.3s ease;
  display: inline-block;
  margin-right: 0.6rem;
}
.big-menu .menu-block .left .socials .link svg {
  fill: white;
}
.big-menu .menu-block .left .socials .link:hover svg {
  fill: #a78930;
}
.big-menu .image-block {
  position: fixed;
  top: 0;
  right: 0;
  width: 0;
  height: 100vh;
  z-index: 500;
  transition: width 0.76s cubic-bezier(0.6, 0, 0.1, 1);
}
.big-menu .image-block:before {
  content: "";
  position: fixed;
  z-index: 1;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  transform: translateX(calc(100% + 0vh));
  transition: transform 0.81s cubic-bezier(0.6, 0, 0.1, 1);
  background: #221f20;
}
.big-menu .image-block .image {
  width: 100%;
  height: 100%;
  display: -ms-flex;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 4;
}
@media screen and (max-width: 767px) {
  .big-menu .image-block .image {
    display: none;
  }
}
.big-menu .image-block .image > img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}
.big-menu .image-block .image .logo {
  width: 75%;
  position: relative;
  max-width: 330px;
  transition: opacity 0.76s cubic-bezier(0.6, 0, 0.1, 1);
  opacity: 0;
}
.big-menu .image-block .image .logo img {
  width: 100%;
}

.woocommerce .woocommerce-breadcrumb, .woocommerce-breadcrumb {
  color: #a78930;
}
.woocommerce .woocommerce-breadcrumb a, .woocommerce-breadcrumb a {
  color: black;
  transition: 0.3s ease;
}
.woocommerce .woocommerce-breadcrumb a:hover, .woocommerce-breadcrumb a:hover {
  color: #a78930;
}
.woocommerce .woocommerce-breadcrumb .separator, .woocommerce-breadcrumb .separator {
  color: black;
  padding: 0 7px;
}

.caracs-container {
  display: -ms-flex;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 100%;
}
.caracs-container .carac {
  width: 100%;
  display: -ms-flex;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 3rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .caracs-container .carac {
    width: 48%;
  }
}
@media screen and (min-width: 1024px) {
  .caracs-container .carac {
    width: 24%;
  }
}
.caracs-container .carac .icon {
  width: 50px;
  height: 50px;
  display: -ms-flex;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
}
.caracs-container .carac .icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.caracs-container .carac .name {
  font-weight: bold;
  margin-bottom: 1rem;
  font-size: 1.2rem;
}
.caracs-container .carac .desc {
  font-size: 0.8rem;
  color: #9e9e9e;
}

.cta {
  text-align: center;
  background: none;
  color: #a78930;
  border: 1px solid #221f20;
  font-weight: 500;
  font-size: 0.9rem;
  text-transform: uppercase;
  width: 220px;
  box-sizing: border-box;
  padding: 1.2rem 1rem;
  transform: perspective(1px) translateZ(0);
  position: relative;
  transition: 0.3s ease;
  cursor: pointer;
  display: -ms-flex;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}
.cta .arrow {
  height: 16px;
  transition: 0.3s ease;
  margin-right: 20px;
}
.cta .arrow svg {
  stroke: #a78930;
  transition: 0.3s ease;
}
.cta span + .arrow {
  margin-right: 0;
  margin-left: 20px;
}
.cta.-bigpadding {
  padding: 1rem 4rem;
}
.cta.-smallpadding {
  padding: 1rem 2rem;
}
.cta:hover, .cta:focus {
  border: 1px solid #a78930;
}
.cta:hover .arrow, .cta:focus .arrow {
  transform: translateX(0.5rem);
}
.cta.-light {
  color: white;
  border: 1px solid #474734;
}
.cta.-light .arrow svg {
  stroke: white;
}
.cta.-light:hover, .cta.-light:focus {
  color: #a78930;
  border: 1px solid #a78930;
}
.cta.-light:hover .arrow svg, .cta.-light:focus .arrow svg {
  stroke: #a78930;
}
.cta.-bordercontrast {
  border: 1px solid #a78930;
}
.cta.-bordercontrast .arrow svg {
  stroke: #a78930;
}
.cta.-bordercontrast:hover, .cta.-bordercontrast:focus {
  color: #a78930;
  border: 1px solid #a78930;
}
.cta.-bordercontrast:hover .arrow svg, .cta.-bordercontrast:focus .arrow svg {
  stroke: #a78930;
}
.cta.-contrastbg {
  border: 1px solid #a78930;
  background: #a78930;
  color: white;
}
.cta.-contrastbg .arrow svg {
  stroke: white;
}
.cta.-contrastbg:hover, .cta.-contrastbg:focus {
  color: black;
  border: 1px solid #a78930;
}
.cta.-contrastbg:hover .arrow svg, .cta.-contrastbg:focus .arrow svg {
  stroke: black;
}

.cta-roundarrow {
  display: -ms-flex;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: black;
}
.cta-roundarrow .arrow {
  width: 40px;
  height: 40px;
  display: -ms-flex;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid black;
  border-radius: 100%;
  margin-right: 20px;
}
@media screen and (min-width: 1024px) {
  .cta-roundarrow .arrow {
    width: 60px;
    height: 60px;
  }
}
.cta-roundarrow .arrow svg {
  width: 15px;
}
.cta-roundarrow .text, .cta-roundarrow .arrow, .cta-roundarrow svg {
  transition: transform 0.4s ease;
}
.cta-roundarrow.-white {
  color: white;
}
.cta-roundarrow.-white .arrow {
  border: 1px solid white;
}
.cta-roundarrow.-white .arrow svg {
  fill: white;
}
.cta-roundarrow:hover .arrow {
  transform: translateX(1rem);
}
.cta-roundarrow:hover .arrow svg {
  transform: translateX(5px) scale(1.1);
}
.cta-roundarrow:hover .text {
  transform: translateX(0.5rem);
  transition-delay: 0.2s;
}

.cta-container {
  display: -ms-flex;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .cta-container.-row {
    flex-direction: row;
  }
}
.cta-container.-alignstart {
  justify-content: flex-start;
  align-items: flex-start;
}
.cta-container.-alignend {
  justify-content: flex-end;
  align-items: flex-end;
}
.cta-container.-bordertop {
  border-top: 1px solid #221f20;
  padding-top: 2rem;
}
@media screen and (min-width: 768px) {
  .cta-container.-bordertop {
    padding-top: 4rem;
  }
}
.cta-container.-borderbottom {
  border-bottom: 1px solid #e6e6e6;
  padding-bottom: 2rem;
}
@media screen and (min-width: 768px) {
  .cta-container.-borderbottom {
    padding-bottom: 4rem;
  }
}
.cta-container.-borderbottomcontrast {
  border-bottom: 1px solid #221f20;
  padding-bottom: 2rem;
}
@media screen and (min-width: 768px) {
  .cta-container.-borderbottomcontrast {
    padding-bottom: 4rem;
  }
}
.cta-container.-padding {
  padding: 2rem 0;
}
@media screen and (min-width: 768px) {
  .cta-container.-padding {
    padding: 4rem 0;
  }
}
.cta-container.-marginbottom {
  margin: 0;
  margin-bottom: 3rem;
}
@media screen and (min-width: 1024px) {
  .cta-container.-marginbottom {
    padding-bottom: 5rem;
  }
}
.cta-container.-margin {
  margin: 3rem auto;
}
@media screen and (min-width: 1024px) {
  .cta-container.-margin {
    padding: 5rem auto;
  }
}
.cta-container.-margintop {
  margin: 0;
  margin-top: 3rem;
}
.cta-container .cta {
  margin-bottom: 1rem;
}
@media screen and (min-width: 768px) {
  .cta-container .cta {
    margin-right: 1rem;
    margin-bottom: 0;
  }
}
.cta-container .cta:last-child {
  margin-bottom: 0;
  margin-right: 0;
}

.filters-container {
  width: 95%;
  max-width: 1500px;
  margin: 3rem auto;
  border-top: 1px solid #ececec;
  border-bottom: 1px solid #ececec;
  padding: 3rem 0 2rem;
  box-sizing: border-box;
  display: -ms-flex;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
@media screen and (min-width: 1024px) {
  .filters-container {
    margin: 5rem auto;
  }
}
.filters-container .filter {
  text-transform: uppercase;
  font-weight: bold;
  font-size: 1rem;
  letter-spacing: 2px;
  color: #a78930;
  margin-bottom: 1rem;
  width: 50%;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .filters-container .filter {
    width: 33%;
  }
}
@media screen and (min-width: 981px) {
  .filters-container .filter {
    width: 25%;
  }
}
@media screen and (min-width: 1224px) {
  .filters-container .filter {
    width: auto;
    margin: 0 1.2rem 1rem;
  }
}
.filters-container .filter:hover {
  color: black;
}

.footer-container {
  width: 90%;
  margin: 0 auto;
  max-width: 1340px;
  display: -ms-flex;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.footer-container .logo-container {
  width: 80%;
  max-width: 345px;
  margin-bottom: 3rem;
}
@media screen and (min-width: 1024px) {
  .footer-container .logo-container {
    margin-bottom: 3.5rem;
  }
}
.footer-container .logo-container img {
  width: 100%;
}
.footer-container .footer-nav {
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  width: 100%;
  margin-bottom: 2rem;
}
@media screen and (min-width: 1024px) {
  .footer-container .footer-nav {
    padding-bottom: 4rem;
    margin-bottom: 3rem;
  }
}
@media screen and (min-width: 1024px) {
  .footer-container .footer-nav .menu {
    display: -ms-flex;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
  }
}
@media screen and (min-width: 1024px) {
  .footer-container .footer-nav .menu > .menu-item > a:after {
    content: "";
    width: 2px;
    height: 2px;
    background: #a78930;
    position: relative;
    right: -10px;
  }
}
.footer-container .footer-nav .menu-item {
  display: -ms-flex;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.footer-container .footer-nav .menu-item a {
  color: white;
  padding: 10px 0;
  display: -ms-flex;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
  font-size: 0.9rem;
  transition: 0.3s ease;
}
@media screen and (min-width: 1024px) {
  .footer-container .footer-nav .menu-item a {
    padding: 0 10px;
  }
}
.footer-container .footer-nav .menu-item.menu-item-has-children {
  position: relative;
}
.footer-container .footer-nav .menu-item.menu-item-has-children .chevron {
  width: 10px;
  height: 7px;
  display: -ms-flex;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  right: -1rem;
  transition: 0.3s ease;
}
.footer-container .footer-nav .menu-item.menu-item-has-children .chevron svg {
  width: 100%;
  fill: white;
  transition: 0.3s ease;
}
@media screen and (min-width: 1024px) {
  .footer-container .footer-nav .menu-item.menu-item-has-children .chevron {
    right: -3px;
  }
}
.footer-container .footer-nav .menu-item.menu-item-has-children .sub-menu {
  display: none;
  padding-top: 1.2rem;
}
@media screen and (min-width: 1024px) {
  .footer-container .footer-nav .menu-item.menu-item-has-children .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 200px;
    background: #221f20;
  }
}
@media screen and (min-width: 1024px) {
  .footer-container .footer-nav .menu-item.menu-item-has-children .sub-menu .menu-item {
    align-items: flex-start;
  }
}
.footer-container .footer-nav .menu-item.menu-item-has-children .sub-menu .menu-item a {
  color: white;
  display: -ms-flex;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  padding: 5px 0px;
  transition: 0.3s ease;
}
@media screen and (min-width: 641px) and (max-width: 768px) {
  .footer-container .footer-nav .menu-item.menu-item-has-children .sub-menu .menu-item a {
    justify-content: flex-end;
  }
}
@media screen and (min-width: 1024px) {
  .footer-container .footer-nav .menu-item.menu-item-has-children .sub-menu .menu-item a {
    justify-content: flex-end;
    padding: 10px;
  }
}
.footer-container .footer-nav .menu-item.menu-item-has-children .sub-menu .menu-item a:hover {
  color: #a78930;
}
.footer-container .footer-nav .menu-item.menu-item-has-children.active .chevron {
  transform: rotate(180deg);
}
.footer-container .footer-nav .menu-item.menu-item-has-children.active .chevron svg {
  fill: #a78930;
}
.footer-container .footer-nav .menu-item.menu-item-has-children.active .sub-menu {
  display: block;
}
@media screen and (min-width: 1024px) {
  .footer-container .footer-nav .menu-item.menu-item-has-children:hover .chevron {
    transform: rotate(180deg);
  }
  .footer-container .footer-nav .menu-item.menu-item-has-children:hover .chevron svg {
    fill: #a78930;
  }
  .footer-container .footer-nav .menu-item.menu-item-has-children:hover .sub-menu {
    display: block;
  }
}
.footer-container .socials {
  display: -ms-flex;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
}
@media screen and (min-width: 1024px) {
  .footer-container .socials {
    margin-bottom: 3rem;
  }
}
.footer-container .socials .link {
  display: -ms-flex;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 4px;
  width: 50px;
  height: 50px;
}
.footer-container .socials .link svg {
  fill: white;
}
.footer-container .mentions {
  font-size: 0.9rem;
}
.footer-container .mentions .contrast {
  color: #a78930;
}
.footer-container .mentions .separator {
  color: #a78930;
  padding: 0 8px;
}
.footer-container .mentions .link.-white {
  color: white;
}
.footer-container .mentions .link.-white:hover {
  color: #a78930;
}
.footer-container .mentions .link.-contrast {
  color: #a78930;
}
.footer-container .mentions .link.-contrast:hover {
  color: white;
}

.header-container {
  width: 100%;
  position: fixed;
  z-index: 3;
  pointer-events: none;
  transition: transform 0.4s ease;
  top: 0;
  left: 0;
  color: white;
}
.header-container:after {
  top: 0;
  left: 0;
  width: 100%;
  content: "";
  position: absolute;
  z-index: -1;
  height: 110px;
  background-color: #fff;
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.4s ease, background-color 0.4s ease;
}
.header-container.dark:after {
  transform: none;
}
.header-container.dark .header-content {
  color: black;
}
.header-container.dark .header-content .nav-container .burger-container .burger-button .button span {
  background-color: black;
}
.header-container.dark .header-content .nav-container .lang-container .menu .menu-item a {
  color: black;
}
.header-container.dark .header-content .nav-container .lang-container .menu .menu-item.menu-item-has-children:hover > a {
  color: black;
}
.header-container.dark .header-content .nav-container .lang-container .menu .menu-item.menu-item-has-children .chevron svg {
  fill: black;
}
.header-container.dark .header-content .nav-container .logo-container {
  opacity: 1;
  transition: 0.3s ease;
}
.header-container.dark .header-content .nav-container .logo-container.hide {
  opacity: 0;
}
.header-container.dark .header-content .nav-container .logo-container > .logo svg {
  fill: black;
}
.header-container.dark .header-content .nav-container .header-buttons .header-button {
  color: black;
  border-color: #a78930;
}
.header-container.dark .header-content .nav-container .header-buttons .header-button .arrow svg {
  stroke: black;
}
.header-container .header-content {
  max-width: 90rem;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 3rem;
  color: white;
  pointer-events: all;
}
@media screen and (min-width: 1024px) {
  .header-container .header-content {
    padding-left: 4rem;
    padding-right: 4rem;
  }
}
.header-container .header-content .nav-container {
  display: -ms-flex;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  margin-left: -1rem;
  margin-right: -1rem;
  position: relative;
  z-index: 505;
  width: 100%;
}
@media screen and (min-width: 1024px) {
  .header-container .header-content .nav-container {
    justify-content: flex-start;
  }
}
.header-container .header-content .nav-container.start {
  justify-content: flex-start;
}
.header-container .header-content .nav-container.start .header-buttons {
  right: 43vw;
}
.header-container .header-content .nav-container > .item {
  margin-left: 1rem;
  margin-right: 1rem;
}
.header-container .header-content .nav-container .burger-container, .header-container .header-content .nav-container .lang-container {
  width: calc(16.66667% - 2rem);
}
@media screen and (min-width: 1024px) {
  .header-container .header-content .nav-container .burger-container, .header-container .header-content .nav-container .lang-container {
    width: calc(8.33333% - 2rem);
  }
}
.header-container .header-content .nav-container .burger-container .burger-button {
  width: 2rem;
  height: 2rem;
  display: -ms-flex;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.header-container .header-content .nav-container .burger-container .burger-button .button {
  width: 1.5rem;
  position: relative;
  display: -ms-flex;
  display: flex;
  flex-direction: column;
}
.header-container .header-content .nav-container .burger-container .burger-button .button span {
  width: 100%;
  height: 1px;
  background-color: white;
  margin-bottom: 0.5rem;
  transform-origin: left;
  transition: transform 0.4s ease, background-color 0.4s ease;
}
.header-container .header-content .nav-container .burger-container .burger-button .button span:last-child {
  margin-bottom: 0;
}
.header-container .header-content .nav-container .burger-container .burger-button .button.open span:first-child {
  transform: skewY(45deg) translateY(-3px);
}
.header-container .header-content .nav-container .burger-container .burger-button .button.open span:nth-child(2) {
  transform: scaleX(0);
}
.header-container .header-content .nav-container .burger-container .burger-button .button.open span:last-child {
  transform: skewY(-45deg) translateY(3px);
}
.header-container .header-content .nav-container .lang-container {
  margin-left: calc(8.33333% + 1rem);
  display: -ms-flex;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}
@media screen and (min-width: 1024px) {
  .header-container .header-content .nav-container .lang-container {
    order: 2;
    margin-left: 1rem;
  }
}
.header-container .header-content .nav-container .lang-container .menu .menu-item a {
  color: white;
}
.header-container .header-content .nav-container .lang-container .menu .menu-item:hover > a {
  color: #a78930;
}
.header-container .header-content .nav-container .lang-container .menu .menu-item.menu-item-has-children {
  position: relative;
}
.header-container .header-content .nav-container .lang-container .menu .menu-item.menu-item-has-children .sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  display: -ms-flex;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 0;
  display: none;
}
.header-container .header-content .nav-container .lang-container .menu .menu-item.menu-item-has-children .chevron {
  width: 8px;
  height: 4px;
  position: absolute;
  top: calc(50% - 2px);
  right: -10px;
  transition: 0.3s ease;
  background-size: contain;
  display: flex;
}
.header-container .header-content .nav-container .lang-container .menu .menu-item.menu-item-has-children .chevron svg {
  fill: white;
}
.header-container .header-content .nav-container .lang-container .menu .menu-item.menu-item-has-children:hover > a {
  color: white;
}
.header-container .header-content .nav-container .lang-container .menu .menu-item.menu-item-has-children:hover .sub-menu {
  display: -ms-flex;
  display: flex;
}
.header-container .header-content .nav-container .lang-container .menu .menu-item.menu-item-has-children:hover .chevron {
  transform: rotate(180deg);
}
.header-container .header-content .nav-container .logo-container {
  width: calc(60% - 2rem);
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  max-width: 360px;
  transition-delay: 0.6s;
  opacity: 1;
}
.header-container .header-content .nav-container .logo-container.hide {
  opacity: 0;
  width: 0;
  transition-delay: 0.2s;
}
.header-container .header-content .nav-container .logo-container > .logo {
  display: -ms-flex;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.header-container .header-content .nav-container .logo-container > .logo svg {
  fill: white;
  transition: 0.4s ease;
}
.header-container .header-content .nav-container .header-buttons {
  display: -ms-flex;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  position: fixed;
  top: 30px;
  right: 80px;
  transition: 0.81s cubic-bezier(0.6, 0, 0.1, 1);
  transition-delay: 0.2s;
}
@media screen and (max-width: 1223px) {
  .header-container .header-content .nav-container .header-buttons {
    display: none;
  }
}
.header-container .header-content .nav-container .header-buttons .header-button {
  height: 3rem;
  border: 1px solid hsla(0deg, 0%, 100%, 0.2);
  transition: border-color 0.4s ease;
  width: 130px;
  margin-left: 0;
  margin-right: 1rem;
  display: -ms-flex;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  color: white;
  box-sizing: border-box;
  padding-left: 1rem;
  padding-right: 1rem;
  text-transform: uppercase;
  font-size: 0.9rem;
  transition: 0.3s ease;
}
.header-container .header-content .nav-container .header-buttons .header-button.-first {
  margin-left: calc(10.66667% + 1rem);
}
.header-container .header-content .nav-container .header-buttons .header-button .arrow {
  height: 16px;
  transition: 0.3s ease;
}
.header-container .header-content .nav-container .header-buttons .header-button .arrow svg {
  stroke: white;
  transition: 0.3s ease;
}
.header-container .header-content .nav-container .header-buttons .header-button:hover {
  border-color: #a78930;
  color: #a78930;
}
.header-container .header-content .nav-container .header-buttons .header-button:hover .arrow {
  transform: translateX(0.5rem);
}
.header-container .header-content .nav-container .header-buttons .header-button:hover .arrow svg {
  stroke: #a78930;
}

.hero-container {
  width: 100%;
  height: 100vh;
  display: -ms-flex;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.hero-container.-small {
  height: 180px;
}
.hero-container.-medium {
  height: 425px;
}
.hero-container:before {
  content: "";
  width: 100%;
  height: 100px;
  background: rgb(0, 0, 0);
  background: linear-gradient(180deg, rgb(0, 0, 0) 0%, rgba(0, 0, 0, 0) 100%);
  position: absolute;
  top: 0;
  left: 0;
}
.hero-container:after {
  content: "";
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}
.hero-container img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  z-index: 1;
}
.hero-container .hero-content {
  text-align: center;
  font-family: "ivy_moderegular";
  color: white;
  font-size: 2rem;
  position: relative;
  z-index: 3;
  line-height: 1.3;
  transition-property: opacity, transform;
  transform: translateY(50px);
  opacity: 0;
}
.hero-container .hero-content.is-animate {
  transform: translateY(0);
  opacity: 1;
  transition-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition-duration: 0.6s;
}
.hero-container .hero-content strong {
  font-size: 3rem;
}
.hero-container .hero-content.-uppercase {
  text-transform: uppercase;
}

.image-full {
  width: 100%;
  height: 400px;
  overflow: hidden;
  background: #221f20;
  position: relative;
}
@media screen and (min-width: 1024px) {
  .image-full {
    height: 610px;
  }
}
.image-full > img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 0.4;
}
.image-full .logo-container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 10%;
  min-width: 150px;
  max-width: 200px;
}
.image-full .logo-container img {
  width: 100%;
}

.imagefull-text {
  display: -ms-flex;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 3.7rem 0;
}
.imagefull-text .title {
  color: white;
  font-size: 2rem;
  text-transform: uppercase;
}
.imagefull-text img {
  position: absolute;
  z-index: 0;
  width: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.image-links {
  display: -ms-flex;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .image-links {
    display: -ms-flex;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}
.image-links .link-container {
  overflow: hidden;
  position: relative;
  display: -ms-flex;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 285px;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .image-links .link-container {
    width: 49%;
  }
}
.image-links .link-container img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.3s ease;
}
.image-links .link-container .content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: -ms-flex;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  padding: 2rem 2.6rem 3rem;
  box-sizing: border-box;
}
.image-links .link-container .content .title p {
  text-transform: uppercase;
}
.image-links .link-container .content .title p:first-child {
  color: #a78930;
  font-size: 0.85rem;
  margin-bottom: 1.1rem;
  font-weight: bold;
  letter-spacing: 3px;
}
.image-links .link-container .content .title p strong {
  text-transform: uppercase;
  font-size: 2.5rem;
  font-family: "ivy_moderegular";
  letter-spacing: 5px;
}
.image-links .link-container .content .cta {
  color: black;
  font-weight: bold;
}
.image-links .link-container .content .cta:hover {
  color: #a78930;
}
.image-links .link-container .content.-light {
  color: white;
}
.image-links .link-container .content.-light .cta {
  color: white;
}
.image-links .link-container .link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}
.image-links .link-container:hover img {
  transform: scale(1.02);
}

.header-container.dark .menu-container {
  height: 0;
  margin-top: 0;
  padding: 0;
  border-bottom: 0;
  border-top: 0;
}
.header-container .menu-container {
  width: 100%;
  border-top: 1px solid hsla(0deg, 0%, 100%, 0.2);
  border-bottom: 1px solid hsla(0deg, 0%, 100%, 0.2);
  padding: 10px 0;
  margin-top: 50px;
  transition: all 0.61s ease;
}
@media screen and (max-width: 1223px) {
  .header-container .menu-container {
    display: none;
  }
}
.header-container .menu-container .menu {
  display: -ms-flex;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}
.header-container .menu-container .menu .menu-item {
  display: -ms-flex;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.header-container .menu-container .menu .menu-item a {
  color: white;
  padding: 5px 0;
  display: -ms-flex;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
  font-size: 0.9rem;
  transition: 0.3s ease;
}
.header-container .menu-container .menu .menu-item.menu-item-has-children {
  position: relative;
}
.header-container .menu-container .menu .menu-item.menu-item-has-children .chevron {
  width: 10px;
  height: 7px;
  position: absolute;
  display: -ms-flex;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  top: calc(50% - 3px);
  right: 0.5rem;
  transition: 0.3s ease;
}
.header-container .menu-container .menu .menu-item.menu-item-has-children .chevron svg {
  width: 100%;
  fill: white;
}
.header-container .menu-container .menu .menu-item.menu-item-has-children .sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  width: 180px;
  box-sizing: border-box;
  padding-top: 1.2rem;
  display: none;
}
.header-container .menu-container .menu .menu-item.menu-item-has-children .sub-menu .menu-item {
  display: -ms-flex;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}
.header-container .menu-container .menu .menu-item.menu-item-has-children .sub-menu .menu-item a {
  width: 100%;
  display: -ms-flex;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 10px 0 10px 1.5rem;
  border-bottom: 1px solid hsla(0deg, 0%, 100%, 0.2);
}
.header-container .menu-container .menu .menu-item.menu-item-has-children:hover .chevron {
  transform: rotate(180deg);
}
.header-container .menu-container .menu .menu-item.menu-item-has-children:hover .chevron svg {
  fill: #a78930;
}
.header-container .menu-container .menu .menu-item.menu-item-has-children:hover .sub-menu {
  display: block;
}
.header-container .menu-container .menu .menu-item:hover > a {
  color: #a78930;
}
.header-container .menu-container .menu > .menu-item:first-child a {
  padding-left: 0;
}
.header-container .menu-container .menu > .menu-item:last-child a {
  padding-right: 0;
  border-right: 0;
}
.header-container .menu-container .menu > .menu-item > a {
  padding: 0 1.5rem;
  border-right: 1px solid hsla(0deg, 0%, 100%, 0.2);
  width: 100%;
  box-sizing: border-box;
}

*.-negtop {
  position: relative;
  top: -3rem;
  margin-bottom: -3rem;
}
@media screen and (min-width: 1024px) {
  *.-negtop {
    top: -7rem;
    margin-bottom: -7rem;
  }
}
*.-bignegtop {
  position: relative;
  top: -200px;
  margin-bottom: -200px;
}
@media screen and (min-width: 1024px) {
  *.-bignegtop {
    top: -385px;
    margin-bottom: -385px;
  }
}

ul.products {
  margin-bottom: 3rem;
}
ul.products li.product {
  display: -ms-flex;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}
ul.products li.product > .woocommerce-loop-product__link {
  width: 100%;
  height: 250px;
  display: -ms-flex;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media screen and (min-width: 1124px) {
  ul.products li.product > .woocommerce-loop-product__link {
    height: 320px;
  }
}
ul.products li.product > .woocommerce-loop-product__link img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
ul.products li.product .content {
  background: white;
  padding-top: 1rem;
  transition: 0.3s ease;
  margin-top: -50px;
  position: relative;
  z-index: 2;
  transform: translateY(50px);
  display: -ms-flex;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  text-align: center;
}
ul.products li.product .content .woocommerce-LoopProduct-link {
  width: 100%;
}
ul.products li.product .content .price {
  font-weight: 700 !important;
  font-size: 1rem !important;
  margin-bottom: 0.8rem !important;
  color: black !important;
}
ul.products li.product .content .woocommerce-loop-product__title {
  color: #9e9e9e;
  font-size: 1rem;
  padding: 0;
  margin-bottom: 1rem;
}
ul.products li.product .content > .button.add_to_cart_button {
  background: black;
  color: white;
  font-weight: 300;
  text-transform: uppercase;
  border-radius: 0;
  transform: perspective(1px) translateZ(0);
  position: relative;
  transition-property: color;
  transition-duration: 0.3s;
  cursor: pointer;
  font-size: 0.8rem;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  ul.products li.product .content > .button.add_to_cart_button {
    font-size: 1rem;
  }
}
ul.products li.product .content > .button.add_to_cart_button:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: #a78930;
  transform: scaleY(0);
  transform-origin: 50%;
  transition-property: transform;
  transition-duration: 0.3s;
  transition-timing-function: ease-out;
}
ul.products li.product .content > .button.add_to_cart_button:focus:before, ul.products li.product .content > .button.add_to_cart_button:hover:before {
  transform: scaleY(1);
}
ul.products li.product:hover .content {
  transform: translateY(0px);
}

.room-page .base-price {
  margin-bottom: 3rem;
  color: #a78930;
  font-size: 1.8rem;
  text-transform: uppercase;
  letter-spacing: 10px;
}

.rooms-navigation {
  width: 100%;
  display: -ms-flex;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  padding-bottom: 3rem;
  border-bottom: 1px solid #e6e7e8;
}
@media screen and (min-width: 768px) {
  .rooms-navigation {
    padding-bottom: 7rem;
  }
}
.rooms-navigation .link {
  color: #a78930;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 1.3rem;
  padding-right: 1.4rem;
  display: -ms-flex;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  transition: 0.3s ease;
}
.rooms-navigation .link:after {
  content: "";
  width: 2px;
  height: 2px;
  border-radius: 100%;
  margin-left: 1.4rem;
  background: #221f20;
  display: inline-block;
}
.rooms-navigation .link:last-child {
  padding-right: 0;
}
.rooms-navigation .link:last-child:after {
  display: none;
}
.rooms-navigation .link:hover {
  color: #221f20;
}

.hero-container .search-vik {
  position: absolute;
  z-index: 4;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: 810px;
  margin: 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 100px;
  padding: 13px 10px;
  box-sizing: border-box;
}
.hero-container .search-vik #search-vik {
  display: -ms-flex;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}
.hero-container .search-vik #search-vik .vbmodhorsearchtotnights {
  display: none !important;
}
.hero-container .search-vik #search-vik .vbmodhorsearchmaindiv form {
  display: -ms-flex;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}
.hero-container .search-vik #search-vik .vbmodhorsearchmaindiv form > div {
  align-self: center;
}
.hero-container .search-vik #search-vik .item {
  border-right: 1px solid rgba(255, 255, 255, 0.7);
  position: relative;
}
.hero-container .search-vik #search-vik .item.-dates {
  width: 41%;
}
.hero-container .search-vik #search-vik .item.-guests {
  width: 100%;
}
.hero-container .search-vik #search-vik .item > span {
  color: white;
  font-size: 1.1rem;
}
.hero-container .search-vik #search-vik .item .dates-container {
  display: -ms-flex;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  font-family: "Titillium Web", sans-serif;
  font-size: 1.1rem;
}
.hero-container .search-vik #search-vik .item .dates-container .dates-separator {
  color: white;
}
.hero-container .search-vik #search-vik .item .dates-container .input-group input {
  -webkit-appearance: none !important;
     -moz-appearance: none !important;
          appearance: none !important;
  background: none;
  border: none;
  box-shadow: none;
  color: white;
  font-family: "Titillium Web", sans-serif;
  font-size: 1.1rem;
  text-align: center;
}
.hero-container .search-vik #search-vik .item .dates-container .input-group input::-moz-placeholder {
  color: white;
  opacity: 1;
}
.hero-container .search-vik #search-vik .item .dates-container .input-group input::placeholder {
  color: white;
  opacity: 1;
}
.hero-container .search-vik #search-vik .horsanumdiv {
  display: -ms-flex;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: white;
}
.hero-container .search-vik #search-vik .horsanumdiv .horsanumlb {
  margin: 0;
  margin-right: 0.5rem;
}
.hero-container .search-vik #search-vik .horsanumdiv select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: none;
  border: none;
  color: white;
  font-size: 1.1rem;
  font-family: "Titillium Web", sans-serif;
  height: auto;
  line-height: 1;
  padding: 5px;
  text-align: center;
  outline: none;
}
.hero-container .search-vik #search-vik .horsanumdiv select:focus {
  outline: none;
}
.hero-container .search-vik #search-vik .vbmodhorsearchrac {
  width: 28%;
  float: none;
}
.hero-container .search-vik #search-vik .vbmodhorsearchrac .item {
  width: 100%;
}
.hero-container .search-vik #search-vik .vbmodhorsearchbookdiv {
  float: none;
}
.hero-container .search-vik #search-vik .vbmodhorsearchbookdiv input {
  margin: 0;
  border-radius: 100px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: none;
  border: none;
  background: rgba(255, 255, 255, 0.2);
  color: white;
  padding: 1.5rem 3rem;
  transition: 0.3s ease;
}
.hero-container .search-vik #search-vik .vbmodhorsearchbookdiv input:hover {
  background: white;
  color: #221f20;
}

.section-container {
  width: 90%;
  max-width: none;
  max-width: 1070px;
  margin: 0 auto;
  display: -ms-flex;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  position: relative;
  z-index: 2;
}
.section-container.-bordertop {
  border-top: 1px solid #a78930;
  padding-top: 3rem;
}
@media screen and (min-width: 1024px) {
  .section-container.-bordertop {
    padding-top: 5rem;
  }
}
.section-container.-alignend {
  justify-content: flex-end;
  align-items: flex-end;
}
.section-container.-full {
  width: 100%;
  max-width: 100%;
}
.section-container.-small {
  max-width: 650px;
}
.section-container.-smaller {
  max-width: 965px;
}
.section-container.-medium {
  max-width: 740px;
}
.section-container.-large {
  max-width: 1150px;
}
.section-container.-xlarge {
  max-width: 1260px;
}
.section-container.-xxlarge {
  max-width: 1320px;
}
.section-container.-center {
  align-items: center;
  text-align: center;
}
.section-container.-margin {
  margin: 3rem auto;
}
@media screen and (min-width: 1024px) {
  .section-container.-margin {
    margin: 5rem auto;
  }
}
.section-container.-margintop {
  margin-top: 3rem;
}
@media screen and (min-width: 1024px) {
  .section-container.-margintop {
    margin-top: 5rem;
  }
}
.section-container.-bigmargintop {
  margin-top: 7rem;
}
@media screen and (min-width: 1024px) {
  .section-container.-bigmargintop {
    margin-top: 12rem;
  }
}
.section-container.-marginbottom {
  margin-bottom: 3rem;
}
@media screen and (min-width: 1024px) {
  .section-container.-marginbottom {
    margin-bottom: 5rem;
  }
}
.section-container.-bigmarginbottom {
  margin-bottom: 5rem;
}
@media screen and (min-width: 1024px) {
  .section-container.-bigmarginbottom {
    margin-bottom: 7rem;
  }
}
@media screen and (min-width: 1024px) {
  .section-container.-negmargintop {
    margin-top: -7rem;
  }
}
@media screen and (min-width: 1024px) {
  .section-container.-negmargintopsmall {
    margin-top: -3rem;
  }
}
@media screen and (min-width: 768px) {
  .section-container .section-content.-small {
    width: 75%;
  }
}
.section-container .section-content.-alignright {
  margin-right: 0;
  margin-left: auto;
}
@media screen and (min-width: 768px) {
  .section-container .section-content.-width35 {
    width: 60%;
  }
}
.section-container .section-content.-whitebg {
  background: white;
}
.section-container .section-content.-marginbottom {
  margin-bottom: 3rem;
}
@media screen and (min-width: 1024px) {
  .section-container .section-content.-marginbottom {
    margin-bottom: 5rem;
  }
}
.section-container .section-content.-negtop {
  position: relative;
}
@media screen and (min-width: 1024px) {
  .section-container .section-content.-negtop {
    top: -150px;
    margin-bottom: -150px;
  }
}
.section-container .section-content.-negtophalf {
  position: relative;
}
@media screen and (min-width: 1024px) {
  .section-container .section-content.-negtophalf {
    top: -270px;
    margin-bottom: -270px;
  }
}
.section-container .section-content.-padding {
  padding: 4rem 0;
}
@media screen and (min-width: 1024px) {
  .section-container .section-content.-padding {
    padding: 8rem 0;
  }
}
.section-container .section-content.-paddingtop {
  padding-top: 4rem;
}
@media screen and (min-width: 1024px) {
  .section-container .section-content.-paddingtop {
    padding-top: 8rem;
  }
}
.section-container .section-content.-margin {
  margin: 3rem 0;
}
@media screen and (min-width: 1024px) {
  .section-container .section-content.-margin {
    margin: 5rem 0;
  }
}
.section-container .section-content.-row {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .section-container .section-content.-row {
    display: -ms-flex;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}
@media screen and (min-width: 768px) {
  .section-container .section-content.-row.-width35 {
    width: 62%;
  }
}
@media screen and (min-width: 768px) {
  .section-container .section-content.-row.-stretch {
    align-items: stretch;
  }
}
@media screen and (min-width: 768px) {
  .section-container .section-content.-row.-aligntop {
    align-items: flex-start;
  }
}
@media screen and (min-width: 768px) {
  .section-container .section-content.-row.-alignbottom {
    align-items: flex-end;
  }
}
@media screen and (min-width: 768px) {
  .section-container .section-content.-row.-justifyend {
    justify-content: flex-end;
  }
}
@media screen and (min-width: 768px) {
  .section-container .section-content.-row.-center {
    justify-content: center;
  }
}
.section-container .section-content.-row .left, .section-container .section-content.-row .right {
  width: 100%;
  position: relative;
}
@media screen and (min-width: 768px) {
  .section-container .section-content.-row .left, .section-container .section-content.-row .right {
    width: 48%;
  }
}
@media screen and (min-width: 768px) {
  .section-container .section-content.-row .left.-xsmall, .section-container .section-content.-row .right.-xsmall {
    width: 31%;
  }
}
@media screen and (min-width: 768px) {
  .section-container .section-content.-row .left.-small, .section-container .section-content.-row .right.-small {
    width: 40%;
  }
}
@media screen and (min-width: 768px) {
  .section-container .section-content.-row .left.-medium, .section-container .section-content.-row .right.-medium {
    width: 44%;
  }
}
@media screen and (min-width: 768px) {
  .section-container .section-content.-row .left.-half, .section-container .section-content.-row .right.-half {
    width: 50%;
  }
}
@media screen and (min-width: 768px) {
  .section-container .section-content.-row .left.-l55, .section-container .section-content.-row .right.-l55 {
    width: 55%;
  }
}
@media screen and (min-width: 768px) {
  .section-container .section-content.-row .left.-large, .section-container .section-content.-row .right.-large {
    width: 56%;
  }
}
@media screen and (min-width: 768px) {
  .section-container .section-content.-row .left.-xlarge, .section-container .section-content.-row .right.-xlarge {
    width: 65%;
  }
}
@media screen and (min-width: 768px) {
  .section-container .section-content.-row .left.-xxlarge, .section-container .section-content.-row .right.-xxlarge {
    width: 67%;
  }
}
@media screen and (min-width: 768px) {
  .section-container .section-content.-row .left.-margintop, .section-container .section-content.-row .right.-margintop {
    margin-top: 150px;
  }
}
@media screen and (min-width: 768px) {
  .section-container .section-content.-row .left.-paddingtop, .section-container .section-content.-row .right.-paddingtop {
    padding-top: 110px;
  }
}
@media screen and (min-width: 768px) {
  .section-container .section-content.-row .left.-paddingleft, .section-container .section-content.-row .right.-paddingleft {
    padding-left: 120px;
    box-sizing: border-box;
  }
}
@media screen and (min-width: 768px) {
  .section-container .section-content.-row .left.-marginbottom, .section-container .section-content.-row .right.-marginbottom {
    margin-bottom: 4rem;
  }
}
@media screen and (min-width: 768px) {
  .section-container .section-content.-row .left.-bigmarginbottom, .section-container .section-content.-row .right.-bigmarginbottom {
    margin-bottom: 7rem;
  }
}
.section-container .section-content.-row .left.-paddingright, .section-container .section-content.-row .right.-paddingright {
  box-sizing: border-box;
}
@media screen and (min-width: 768px) {
  .section-container .section-content.-row .left.-paddingright, .section-container .section-content.-row .right.-paddingright {
    padding-right: 3rem;
  }
}
@media screen and (min-width: 1200px) {
  .section-container .section-content.-row .left.-paddingright, .section-container .section-content.-row .right.-paddingright {
    padding-right: 5rem;
  }
}
.section-container .section-content.-row .left {
  margin-bottom: 3rem;
}
@media screen and (min-width: 768px) {
  .section-container .section-content.-row .left {
    margin-bottom: 0;
  }
}
@media screen and (min-width: 768px) {
  .section-container .section-content.-row .right.-alignright {
    display: -ms-flex;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
  }
}
.section-container .wp-content + .cta {
  margin-top: 2rem;
}
@media screen and (min-width: 1024px) {
  .section-container .wp-content + .cta {
    margin-top: 3rem;
  }
}

.single-product img {
  opacity: 1 !important;
}
.single-product .left .woocommerce-product-gallery {
  height: 400px;
  overflow: hidden;
  opacity: 1 !important;
}
@media screen and (min-width: 1024px) {
  .single-product .left .woocommerce-product-gallery {
    height: 590px;
  }
}
.single-product .left .woocommerce-product-gallery__wrapper {
  width: 100%;
  height: 100%;
}
.single-product .left .woocommerce-product-gallery__image {
  width: 100%;
  height: 100%;
}
.single-product .left .woocommerce-product-gallery__image a {
  display: -ms-flex;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}
.single-product .left .woocommerce-product-gallery__image a img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.single-product .right .price {
  font-weight: bold;
  color: #a78930;
  font-size: 1.5rem;
  margin-bottom: 2rem;
}
.single-product .right .product_title {
  font-family: "ivy_moderegular";
  color: black;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  text-transform: uppercase;
}
.single-product .right .wp-content {
  margin-bottom: 2.2rem;
}
.single-product .right .nyp {
  margin-bottom: 2.2rem;
}
.single-product .right .nyp label {
  display: none;
}
.single-product .right .nyp .nyp-input {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: none;
  border: none;
  border: 1px solid #a78930;
  text-transform: uppercase;
  text-align: center;
  font-size: 0.9rem;
  padding: 1rem 10px;
  transition: 0.3s ease;
  font-family: "Titillium Web", sans-serif;
  width: 150px;
  border-radius: 0;
}
@media screen and (min-width: 1024px) {
  .single-product .right .nyp .nyp-input {
    width: 200px;
  }
}
.single-product .right .nyp .nyp-input::-moz-placeholder {
  color: grey;
}
.single-product .right .nyp .nyp-input::placeholder {
  color: grey;
}
.single-product .right .nyp .nyp-input:focus {
  border: 1px solid black;
  outline: none;
}
.single-product .right .buttons-container {
  display: -ms-flex;
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  justify-content: flex-start;
}
.single-product .right .buttons-container .quantity-wrapper {
  display: -ms-flex;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}
.single-product .right .buttons-container .quantity-wrapper .label {
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}
.single-product .right .buttons-container .quantity-wrapper .quantity-input {
  display: -ms-flex;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  width: 140px;
  height: 53px;
  background: #e9e9e9;
}
.single-product .right .buttons-container .quantity-wrapper .quantity-input .add, .single-product .right .buttons-container .quantity-wrapper .quantity-input .remove {
  font-size: 2rem;
  display: -ms-flex;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 53px;
  width: 45px;
  transition: 0.3s ease;
  margin-top: -5px;
  cursor: pointer;
}
.single-product .right .buttons-container .quantity-wrapper .quantity-input .add:focus, .single-product .right .buttons-container .quantity-wrapper .quantity-input .remove:focus {
  outline: none;
}
.single-product .right .buttons-container .quantity-wrapper .quantity-input .add:hover, .single-product .right .buttons-container .quantity-wrapper .quantity-input .remove:hover {
  color: #a78930;
}
.single-product .right .buttons-container .quantity-wrapper .quantity-input .quantity {
  /* Chrome, Safari, Edge, Opera */
  /* Firefox */
}
.single-product .right .buttons-container .quantity-wrapper .quantity-input .quantity input {
  -webkit-appearance: none;
  margin: 0;
  background: none;
  border: none;
  width: 50px;
  height: 53px;
  display: -ms-flex;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.single-product .right .buttons-container .quantity-wrapper .quantity-input .quantity input:focus {
  outline: none;
}
.single-product .right .buttons-container .quantity-wrapper .quantity-input .quantity input::-webkit-outer-spin-button,
.single-product .right .buttons-container .quantity-wrapper .quantity-input .quantity input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.single-product .right .buttons-container .quantity-wrapper .quantity-input .quantity input[type=number] {
  -moz-appearance: textfield;
}
.single-product .right .buttons-container button {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: none;
  border: none;
  border-radius: 0;
  background: black;
  color: white;
  text-align: center;
  width: 180px;
  height: 53px;
  display: -ms-flex;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-left: 1rem;
}
@media screen and (min-width: 1024px) {
  .single-product .right .buttons-container button {
    width: 225px;
  }
}

.section-image {
  width: 100%;
  display: -ms-flex;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.section-image.-middleheight {
  height: 400px;
}
@media screen and (min-width: 768px) {
  .section-image.-middleheight {
    height: 640px;
  }
}
.section-image.-top {
  position: relative;
}
@media screen and (min-width: 768px) {
  .section-image.-top {
    top: 5rem;
  }
}
@media screen and (min-width: 1024px) {
  .section-image.-top {
    top: 11rem;
  }
}
.section-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.section-title {
  font-family: "ivy_moderegular";
  font-size: 2rem;
}
@media screen and (min-width: 1024px) {
  .section-title {
    font-size: 2.6rem;
  }
}
.section-title h2 strong {
  color: #a78930;
}
.section-title .surtitre {
  text-transform: uppercase;
  color: #a78930;
  font-size: 0.8rem;
  margin-bottom: 3rem;
  letter-spacing: 3px;
}
.section-title.-marginbottom {
  margin-bottom: 2rem;
}
.section-title.-uppercase {
  text-transform: uppercase;
}

.section-rooms, .section-stays {
  position: relative;
  overflow: visible !important;
}
.section-rooms .slider-rooms-container, .section-stays .slider-rooms-container {
  margin-bottom: 3rem;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .section-rooms .slider-rooms-container, .section-stays .slider-rooms-container {
    overflow: hidden;
    width: 90%;
  }
}
@media screen and (min-width: 1024px) {
  .section-rooms .slider-rooms-container, .section-stays .slider-rooms-container {
    margin-bottom: 4.5rem;
  }
}
@media screen and (min-width: 1440px) {
  .section-rooms .slider-rooms-container, .section-stays .slider-rooms-container {
    margin-bottom: 6rem;
  }
}
@media screen and (min-width: 768px) {
  .section-rooms .slider-rooms-container .swiper-slide, .section-stays .slider-rooms-container .swiper-slide {
    margin-right: 7.13%;
    width: 41.10429% !important;
  }
}
.section-rooms .slider-rooms-container .swiper-slide .image-container, .section-stays .slider-rooms-container .swiper-slide .image-container {
  width: 100%;
  height: 20rem;
  overflow: hidden;
  margin-bottom: 2rem;
  display: -ms-flex;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media screen and (min-width: 1024px) {
  .section-rooms .slider-rooms-container .swiper-slide .image-container, .section-stays .slider-rooms-container .swiper-slide .image-container {
    height: 20rem;
  }
}
.section-rooms .slider-rooms-container .swiper-slide .image-container img, .section-stays .slider-rooms-container .swiper-slide .image-container img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.section-rooms .slider-rooms-container .swiper-slide .slide-title, .section-stays .slider-rooms-container .swiper-slide .slide-title {
  display: -ms-flex;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  font-family: "ivy_moderegular";
  font-size: 1.4rem;
  margin-bottom: 2rem;
}
.section-rooms .slider-rooms-container .swiper-slide .slide-title .name, .section-stays .slider-rooms-container .swiper-slide .slide-title .name {
  width: 80%;
}
.section-rooms .slider-rooms-container .swiper-slide .slide-title .name.-small, .section-stays .slider-rooms-container .swiper-slide .slide-title .name.-small {
  width: 50%;
}
.section-rooms .slider-rooms-container .swiper-slide .slide-title .name.-all, .section-stays .slider-rooms-container .swiper-slide .slide-title .name.-all {
  width: 100%;
}
.section-rooms .slider-rooms-container .swiper-slide .slide-title .name h3, .section-stays .slider-rooms-container .swiper-slide .slide-title .name h3 {
  font-size: 1rem;
  text-transform: none;
}
.section-rooms .slider-rooms-container .swiper-slide .slide-title .name h3 strong, .section-stays .slider-rooms-container .swiper-slide .slide-title .name h3 strong {
  font-size: 1.4rem;
  text-transform: uppercase;
  display: block;
  margin-top: 1rem;
}
.section-rooms .slider-rooms-container .swiper-slide .slide-title .price, .section-stays .slider-rooms-container .swiper-slide .slide-title .price {
  color: #a78930;
  text-align: right;
  width: 20%;
}
.section-rooms .slider-rooms-container .swiper-slide .slide-title .price.-big, .section-stays .slider-rooms-container .swiper-slide .slide-title .price.-big {
  width: 45%;
}
.section-rooms .slider-rooms-container .swiper-slide .slide-desc, .section-stays .slider-rooms-container .swiper-slide .slide-desc {
  margin-bottom: 2rem;
}
.section-rooms .slider-rooms-container .slider-nav, .section-stays .slider-rooms-container .slider-nav {
  display: flex !important;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 35%;
  right: 1rem;
  z-index: 1;
  transform: translateY(-50%);
  width: 7.5rem;
  height: 4rem;
  border-radius: 6.25rem;
  background-color: white;
}
@media screen and (min-width: 1024px) {
  .section-rooms .slider-rooms-container .slider-nav, .section-stays .slider-rooms-container .slider-nav {
    right: 5.5rem;
    top: 20rem;
  }
}
.section-rooms .slider-rooms-container .slider-nav .prev-button, .section-rooms .slider-rooms-container .slider-nav .next-button, .section-stays .slider-rooms-container .slider-nav .prev-button, .section-stays .slider-rooms-container .slider-nav .next-button {
  transition: 0.3s ease;
  cursor: pointer;
}
.section-rooms .slider-rooms-container .slider-nav .prev-button .arrow, .section-rooms .slider-rooms-container .slider-nav .next-button .arrow, .section-stays .slider-rooms-container .slider-nav .prev-button .arrow, .section-stays .slider-rooms-container .slider-nav .next-button .arrow {
  display: block;
  width: 23px;
  height: 17px;
}
.section-rooms .slider-rooms-container .slider-nav .prev-button .arrow svg, .section-rooms .slider-rooms-container .slider-nav .next-button .arrow svg, .section-stays .slider-rooms-container .slider-nav .prev-button .arrow svg, .section-stays .slider-rooms-container .slider-nav .next-button .arrow svg {
  fill: #a78930;
  transition: 0.3s ease;
}
.section-rooms .slider-rooms-container .slider-nav .prev-button, .section-stays .slider-rooms-container .slider-nav .prev-button {
  margin-right: 1.4rem;
}
.section-rooms .slider-rooms-container .slider-nav .prev-button:hover, .section-stays .slider-rooms-container .slider-nav .prev-button:hover {
  transform: translateX(-5px);
}
.section-rooms .slider-rooms-container .slider-nav .next-button:hover, .section-stays .slider-rooms-container .slider-nav .next-button:hover {
  transform: translateX(5px);
}
.section-rooms .slider-rooms-container .slider-nav .swiper-button-disabled:hover, .section-stays .slider-rooms-container .slider-nav .swiper-button-disabled:hover {
  transform: translateX(0px);
}
.section-rooms .slider-rooms-container .slider-nav .swiper-button-disabled .arrow svg, .section-stays .slider-rooms-container .slider-nav .swiper-button-disabled .arrow svg {
  fill: rgba(34, 31, 32, 0.5);
}
.section-rooms .progress-pagination, .section-stays .progress-pagination {
  position: relative;
  height: 1px;
  background: #e6e7e8;
  margin-bottom: 2rem;
}
.section-rooms .progress-pagination .swiper-pagination-progressbar-fill, .section-stays .progress-pagination .swiper-pagination-progressbar-fill {
  background: #a78930;
}

.slider-intro-container {
  width: 100%;
  position: relative;
  top: -3rem;
}
@media screen and (min-width: 1024px) {
  .slider-intro-container {
    top: -7rem;
  }
}
.slider-intro-container .slider-intro {
  width: 86%;
  max-width: 930px;
  margin: 0 auto;
  overflow: hidden;
  max-height: 520px;
}
.slider-intro-container .slider-intro .swiper-slide {
  width: 100%;
  display: -ms-flex;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.slider-intro-container .slider-intro .swiper-slide img {
  display: -ms-flex;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.slider-intro-container .swiper-button-prev, .slider-intro-container .swiper-button-next {
  position: absolute;
  top: 50%;
  width: 40px;
  height: 40px;
  transition: 0.3s ease;
  border-radius: 100%;
  background: #f8f8f8;
  cursor: pointer;
}
@media screen and (min-width: 1024px) {
  .slider-intro-container .swiper-button-prev, .slider-intro-container .swiper-button-next {
    width: 64px;
    height: 64px;
  }
}
.slider-intro-container .swiper-button-prev:after, .slider-intro-container .swiper-button-next:after {
  content: "";
}
.slider-intro-container .swiper-button-prev:before, .slider-intro-container .swiper-button-next:before {
  content: "";
  width: 41px;
  height: 41px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}
@media screen and (min-width: 1024px) {
  .slider-intro-container .swiper-button-prev:before, .slider-intro-container .swiper-button-next:before {
    width: 64px;
    height: 64px;
  }
}
.slider-intro-container .swiper-button-prev:focus, .slider-intro-container .swiper-button-next:focus {
  outline: none;
}
.slider-intro-container .swiper-button-prev {
  left: 0;
}
.slider-intro-container .swiper-button-prev:before {
  background: url("../assets/images/chevron-contrast-left.png") center no-repeat;
  background-size: 12px;
}
@media screen and (min-width: 1024px) {
  .slider-intro-container .swiper-button-prev:before {
    background-size: 18px;
  }
}
.slider-intro-container .swiper-button-prev:hover {
  transform: translateX(-10px);
}
.slider-intro-container .swiper-button-next {
  right: 0;
}
.slider-intro-container .swiper-button-next:before {
  background: url("../assets/images/chevron-contrast-right.png") center no-repeat;
  background-size: 12px;
}
@media screen and (min-width: 1024px) {
  .slider-intro-container .swiper-button-next:before {
    background-size: 18px;
  }
}
.slider-intro-container .swiper-button-next:hover {
  transform: translateX(10px);
}

@media screen and (min-width: 1024px) {
  .roundarrows-container {
    position: absolute;
    top: -535px;
  }
}

.image-roundarrows {
  width: 100%;
  position: relative;
  overflow: hidden;
}
@media screen and (min-width: 1024px) {
  .image-roundarrows {
    height: 535px;
  }
}
.image-roundarrows img {
  width: 100%;
}
.image-roundarrows .navigation {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  display: -ms-flex;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-end;
  z-index: 1;
}
@media screen and (min-width: 1024px) {
  .image-roundarrows .navigation {
    right: 21%;
  }
}
.image-roundarrows .navigation .prev-image, .image-roundarrows .navigation .next-image {
  position: relative;
  width: 55px;
  height: 55px;
  background: white;
  border-radius: 100%;
  display: -ms-flex;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: 0.3s ease;
  cursor: pointer;
}
.image-roundarrows .navigation .prev-image svg, .image-roundarrows .navigation .next-image svg {
  fill: #a78930;
  width: 20px;
}
.image-roundarrows .navigation .prev-image {
  margin-right: 5px;
}
.image-roundarrows .navigation .prev-image:hover {
  transform: translateX(-5px);
}
.image-roundarrows .navigation .next-image:hover {
  transform: translateX(5px);
}

.slider-roundarrows {
  width: 100%;
  position: relative;
  overflow: hidden;
}
@media screen and (min-width: 1024px) {
  .slider-roundarrows {
    height: 535px;
  }
}
.slider-roundarrows .swiper-slide {
  display: -ms-flex;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.slider-roundarrows .swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.slider-roundarrows .navigation {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  display: -ms-flex;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-end;
  z-index: 1;
}
@media screen and (min-width: 1024px) {
  .slider-roundarrows .navigation {
    right: 21%;
  }
}
.slider-roundarrows .navigation .prev-image, .slider-roundarrows .navigation .next-image {
  position: relative;
  width: 55px;
  height: 55px;
  background: white;
  border-radius: 100%;
  display: -ms-flex;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: 0.3s ease;
  cursor: pointer;
}
.slider-roundarrows .navigation .prev-image svg, .slider-roundarrows .navigation .next-image svg {
  fill: #a78930;
  width: 20px;
}
.slider-roundarrows .navigation .prev-image {
  margin-right: 5px;
}
.slider-roundarrows .navigation .prev-image:hover {
  transform: translateX(-5px);
}
.slider-roundarrows .navigation .next-image:hover {
  transform: translateX(5px);
}

.small-slider {
  width: 100%;
  overflow: hidden;
  height: 400px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .small-slider {
    height: 520px;
  }
}
.small-slider .swiper-slide {
  display: -ms-flex;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.small-slider .swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.small-slider .nav {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  display: -ms-flex;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-end;
  z-index: 2;
}
.small-slider .nav .prev-slide, .small-slider .nav .next-slide {
  display: -ms-flex;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 55px;
  height: 55px;
  border: 1px solid white;
  background: rgba(0, 0, 0, 0.5);
  transition: 0.3s ease;
  cursor: pointer;
}
.small-slider .nav .prev-slide:focus, .small-slider .nav .next-slide:focus {
  outline: none;
}
.small-slider .nav .prev-slide .arrow, .small-slider .nav .next-slide .arrow {
  width: 20px;
  height: auto;
}
.small-slider .nav .prev-slide:hover, .small-slider .nav .next-slide:hover {
  background: black;
}

.soins-slider {
  overflow: hidden;
}

.wp-content {
  font-weight: 300;
  position: relative;
}
.wp-content.-justify {
  text-align: justify;
  word-wrap: break-word;
  overflow-wrap: break-word;
  -webkit-hyphens: auto;
  hyphens: auto;
}
.wp-content.-reverse {
  color: white;
}
.wp-content.-xsmall {
  max-width: 610px;
}
.wp-content.-nomarginleft {
  margin-left: 0;
}
@media screen and (min-width: 768px) {
  .wp-content.-small {
    width: 90%;
    margin: 0 auto;
    max-width: 800px;
  }
}
@media screen and (min-width: 1440px) {
  .wp-content.-small {
    width: 80%;
    margin: 0 auto;
  }
}
@media screen and (min-width: 768px) {
  .wp-content.-marginleft {
    margin-left: 95px;
  }
}
.wp-content.-marginbottom {
  margin-bottom: 3rem;
}
.wp-content.-bigmarginbottom {
  margin-bottom: 3rem;
}
@media screen and (min-width: 768px) {
  .wp-content.-bigmarginbottom {
    margin-bottom: 5rem;
  }
}
.wp-content.-marginbottomsmall {
  margin-bottom: 1.5rem;
}
.wp-content .more {
  font-size: 0.9rem;
  font-weight: bold;
  color: #a78930;
  padding-left: 0.5rem;
}
.wp-content p {
  line-height: 1.5;
  margin-bottom: 1.5em;
}
.wp-content p:last-child {
  margin-bottom: 0;
}
.wp-content strong {
  font-weight: 500;
}
.wp-content em {
  font-style: italic;
}
.wp-content a {
  color: #221f20;
  font-weight: 500;
  transition: 0.3s ease;
}
.wp-content a:hover {
  color: #a78930;
}
.wp-content h2 {
  font-size: 2em;
  font-weight: 800;
  margin-bottom: 1em;
}
.wp-content h3 {
  font-size: 1.2em;
  font-weight: 800;
  margin-bottom: 1em;
  margin-top: 2rem;
}
.wp-content table {
  border: 1px solid rgba(0, 0, 0, 0.3);
  margin-bottom: 2rem;
}
.wp-content table td,
.wp-content table th {
  border: 1px solid rgba(0, 0, 0, 0.3);
  padding: 0.5em;
}
.wp-content ul {
  margin-bottom: 1.5rem;
}
.wp-content ul li {
  line-height: 1.6rem;
  position: relative;
  padding-left: 1rem;
}
.wp-content ul li:before {
  content: "•";
  color: #a78930;
  padding-right: 5px;
  position: absolute;
  top: 0;
  left: 0;
}
.wp-content ol {
  margin-bottom: 1.5rem;
}
.wp-content ol li {
  line-height: 1.6rem;
}
.wp-content ol li:before {
  content: ">";
  color: #a78930;
  padding-right: 5px;
}
