/* Set default variables */
/* Flexi page variables */
/* Buttons */
/* Traslate to CSS vars for Responsive */
:root {
  --primary: #ccad67;
  --secondary: #f3bbad;
  --xl: 0%;
  --lg: 0%;
  --md: 0%;
  --sm: 0%;
  --font_128: calc(8rem - var(--xl));
  --font_96: calc(6rem - var(--xl));
  --font_82: calc(5.125rem - var(--lg));
  --font_36: calc(2.25rem - var(--sm));
  --font_20: calc(1.25rem - var(--sm));
  --h1_size: calc(4.375rem - var(--xl));
  --h2_size: calc(3.75rem - var(--xl));
  --h3_size: calc(3.125rem - var(--lg));
  --h4_size: calc(2.5rem - var(--lg));
  --h5_size: calc(1.875rem - var(--md));
  --h6_size: calc(1.625rem - var(--md));
  --content_size: calc(1.25rem - var(--sm));
  --nav_size: calc(6rem - var(--sm));
  --button_size: calc(2.25rem - var(--sm));
  --bs-body-font-family: 'General Sans Regular', sans-serif;
  --bs-body-font-size: 1.25rem;
  --bs-body-font-weight: 400;
  --bs-body-line-height: 1.5em;
  --bs-body-color: #ccad67;
  --bs-body-bg: #ccad67;
  --bs-primary: #ccad67;
  --bs-secondary: #f3bbad;
  --wpforms-button-background-color-alt: transparent;
  --wpforms-button-background-color: transparent;
  --wpforms-button-text-color: #ccad67; }

* {
  margin: 0;
  padding: 0; }

html {
  font-size: 16px; }

body {
  font-size: var(--content_size);
  line-height: 1.5em;
  color: #ccad67;
  font-family: 'General Sans Regular', sans-serif;
  background: #fcebda;
  font-weight: 400;
  zoom: 1; }

#container {
  width: 100%;
  overflow: clip; }

#page-wrap, .container {
  max-width: 1920px;
  margin: 0px auto;
  padding: 0px; }

body.page-template-template_full-width #page-wrap {
  max-width: 100% !important; }

body.single .entry-content {
  padding-top: 40px;
  /* HEADER
----------------------------------------------------------- */ }

#nav .burger.show, #nav .close.show {
  top: 40px; }

body.admin-bar {
  /* MENUS
----------------------------------------------------------- */ }
  body.admin-bar #nav .burger.show, body.admin-bar #nav .close.show {
    top: 72px; }

body.home #nav {
  position: sticky; }

#nav.sticky {
  position: fixed;
  width: 100%;
  z-index: 9999; }

#nav {
  position: absolute;
  top: 0px;
  z-index: 999;
  width: 100vw;
  background-color: #fcebda; }
  #nav header.menu-open {
    width: 100vw;
    height: 100vh;
    position: absolute;
    top: 0px;
    left: 0px;
    z-index: 99999;
    overflow-y: hidden;
    overflow-x: hidden; }
  #nav .burger.show, #nav .close.show {
    display: flex;
    flex-direction: column;
    align-content: center;
    align-items: center;
    width: 100%;
    position: fixed;
    left: 0px; }
  #nav .burger, #nav .close {
    display: none; }
  #nav .burger, #nav .close {
    cursor: pointer;
    position: absolute;
    z-index: 99999;
    width: 60px;
    height: 50px;
    text-align: center;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition-duration: 0.3s;
    margin-top: 20px; }
    #nav .burger .btn-primary, #nav .close .btn-primary {
      background: #fcebda;
      width: 300px;
      padding-left: 20px !important;
      padding-right: 20px !important; }
      #nav .burger .btn-primary:hover, #nav .close .btn-primary:hover {
        background: #ccad67; }
  #nav .fade-menu li:nth-child(1) a {
    animation: fadein 1s 0.15s forwards ease; }
    #nav .fade-menu li:nth-child(2) a {
      animation: fadein 1s 0.3s forwards ease; }
    #nav .fade-menu li:nth-child(3) a {
      animation: fadein 1s 0.45s forwards ease; }
    #nav .fade-menu li:nth-child(4) a {
      animation: fadein 1s 0.6s forwards ease; }
    #nav .fade-menu li:nth-child(5) a {
      animation: fadein 1s 0.75s forwards ease; }
    #nav .fade-menu li:nth-child(6) a {
      animation: fadein 1s 0.9s forwards ease; }
    #nav .fade-menu li:nth-child(7) a {
      animation: fadein 1s 1.05s forwards ease; }
    #nav .fade-menu li:nth-child(8) a {
      animation: fadein 1s 1.2s forwards ease; }
    #nav .fade-menu li:nth-child(9) a {
      animation: fadein 1s 1.35s forwards ease; }
    #nav .fade-menu li:nth-child(10) a {
      animation: fadein 1s 1.5s forwards ease; }
    #nav .fade-menu li:nth-child(11) a {
      animation: fadein 1s 1.65s forwards ease; }
    #nav .fade-menu li:nth-child(12) a {
      animation: fadein 1s 1.8s forwards ease; }
    #nav .fade-menu li:nth-child(13) a {
      animation: fadein 1s 1.95s forwards ease; }
    #nav .fade-menu li:nth-child(14) a {
      animation: fadein 1s 2.1s forwards ease; }
    #nav .fade-menu li:nth-child(15) a {
      animation: fadein 1s 2.25s forwards ease; }

#nav .nav-link {
  position: relative;
  width: auto;
  margin: 0px auto;
  text-align: center; }
  #nav .nav-link:after {
    content: "";
    display: block;
    position: absolute;
    width: 100%;
    height: 4px;
    bottom: 10px;
    right: 0;
    background-color: #ccad67;
    visibility: hidden;
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transition: all 0.3s ease-in-out 0s;
    transition: all 0.5s ease-in-out; }
  #nav .nav-link:hover:after {
    color: #ccad67;
    visibility: visible;
    -webkit-transform: scaleX(1);
    transform: scaleX(1); }

#nav .menu__bg {
  width: 100vw;
  height: 100vh;
  position: absolute;
  top: 0px;
  left: 0px; }
  #nav .menu__bg .col-sq {
    width: 50vw;
    height: 50vh;
    position: relative; }
  #nav .menu__top-left {
    position: absolute;
    bottom: 20px;
    left: -150px;
    animation: menu_top_left 10s ease-in-out infinite; }
  #nav .menu__top-right {
    position: absolute;
    bottom: 20px;
    right: -150px;
    animation: menu_top_right 10s ease-in-out infinite; }
  #nav .menu__btm-left {
    position: absolute;
    top: 20px;
    left: -150px;
    animation: menu_btm_left 10s ease-in-out infinite; }
  #nav .menu__btm-right {
    position: absolute;
    top: 20px;
    right: -150px;
    animation: menu_btm_right 10s ease-in-out infinite; }

.mainNavigation {
  position: fixed;
  top: -200%;
  z-index: 5;
  height: 100vh;
  width: 100vw;
  overflow: hidden;
  /*
    background-image: url(../images/menu_bg.png);
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    */
  background-color: #fcebda;
  transition: 0.4s;
  -webkit-transition: 0.4s;
  -moz-transition: 0.4s;
  -ms-transition: 0.4s;
  -o-transition: 0.4s; }
  .mainNavigation .nav__menu {
    height: 75vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-top: 10%; }
  .mainNavigation .nav__menu ul {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    margin: 0px;
    padding: 0px; }
  .mainNavigation .nav__menu li a {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    color: #ccad67;
    font-family: 'TANEGRET', sans-serif;
    font-size: 8vh;
    opacity: 0;
    text-transform: uppercase; }
    .mainNavigation .nav__menu li a:hover {
      color: #ccad67 !important; }

.header.menu-open .mainNavigation {
  left: 0px;
  top: 0px; }

.header.menu-open .mainNavigation:before {
  position: fixed;
  content: "";
  top: 0;
  width: 100%;
  height: auto;
  z-index: 5; }

.mainNavigation ul {
  display: block;
  margin: 0;
  list-style-type: none;
  overflow: auto;
  columns: 1; }

.mainNavigation ul li {
  margin: 0px;
  padding: 0px;
  list-style-type: none;
  font-size: var(--menu_size);
  line-height: 1;
  color: #ccad67; }

.mainNavigation ul li a {
  position: relative;
  text-decoration: none;
  color: #ccad67;
  margin: 0px;
  padding: 0px;
  width: 100%;
  /* CONTENT
----------------------------------------------------------- */ }
  .mainNavigation ul li a:focus {
    color: #ccad67; }
  .mainNavigation ul li a:hover {
    color: #ccad67 !important;
    text-decoration: none !important; }

#page-wrap {
  padding: 0px 40px; }

.reposition {
  position: relative !important;
  z-index: 1 !important; }

#loader {
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  justify-content: space-between;
  position: fixed;
  z-index: 99999; }
  #loader .loader__bg {
    position: absolute;
    width: 100vw;
    height: 100vh;
    margin: 0 auto;
    animation: loader_bg 4s ease-out forwards;
    animation-delay: 1s; }
  #loader .loader__img {
    width: 100%;
    height: 100%;
    margin: 0 auto;
    background-image: url(../images/loader-2.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    display: none;
    animation: loader_flowers 5s ease-out forwards;
    animation-delay: 0s; }
  #loader .loader__logo {
    width: 100%;
    height: 100%;
    max-width: 730px;
    position: absolute;
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center; }
    #loader .loader__logo img {
      width: 100%; }

body.page-template-template_home .burger {
  position: relative; }

#home-page #header {
  padding: 5% 5% 5% 5%;
  position: relative;
  height: 97vh;
  width: 100vw; }
  #home-page #header .zoom {
    animation: header_image 3s ease-out forwards;
    animation-delay: 0s; }
  #home-page #header .header__image {
    border: 2px solid #ccad67;
    padding: 5px;
    width: 100%;
    height: 100%;
    overflow: hidden; }
    #home-page #header .header__image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      border: 4px solid #ccad67; }
    #home-page #header .header__fade {
      display: none;
      position: absolute;
      top: 0;
      left: 0;
      height: 100%;
      width: 100%;
      z-index: 99999; }
    #home-page #header .header__logo {
      position: absolute;
      top: 0px;
      left: 0px;
      height: 100%;
      width: 100%;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      z-index: 99999; }
    #home-page #header .header__logo path {
      fill: #ccad67;
      animation: header_logo 3s ease-out forwards;
      opacity: 0; }
  #home-page #cafe_menu {
    border-top: 2px solid #ccad67;
    border-bottom: 2px solid #ccad67;
    position: relative; }
  #home-page #cafe_menu .cafemenu__wrap {
    padding: 10% 18%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    border-right: 2px solid #ccad67; }
    #home-page #cafe_menu .cafemenu__heading {
      font-family: 'TANEGRET', sans-serif;
      font-size: var(--font_128);
      line-height: 120%;
      text-transform: uppercase; }
    #home-page #cafe_menu .cafemenu__bg {
      background-image: url(../images/cafe_menu_bg_solid.png);
      background-color: #cde4f1;
      background-position: center center;
      background-size: cover;
      background-repeat: no-repeat;
      display: flex;
      flex-direction: column;
      align-content: center;
      align-items: center;
      padding: 10% 5%;
      transition: all 0.5s ease;
      height: 100%; }
    #home-page #cafe_menu .cafemenu__bg:hover {
      background-image: url(../images/cafe_menu_bg.png); }
    #home-page #cafe_menu .cafemenu__btn {
      margin-top: -40px; }
    #home-page #cafe_menu .cafemenu__btn .btn-primary {
      background: #fcebda; }
      #home-page #cafe_menu .cafemenu__btn .btn-primary:hover {
        background: #cde4f1 !important;
        color: #ccad67 !important; }
  #home-page #book {
    padding: 5%;
    text-align: center;
    border-bottom: 2px solid #ccad67;
    position: relative;
    height: 100vh;
    overflow: hidden; }
  #home-page #book .book__heading {
    font-family: 'TANEGRET', sans-serif;
    font-size: var(--font_128);
    line-height: 120%;
    text-transform: uppercase; }
    #home-page #book .book__booking {
      padding: 0px 0px 40px 0px; }
    #home-page #book .book__bg {
      position: relative;
      top: 0px;
      left: 0px;
      z-index: 1; }
    #home-page #book .book__left {
      position: absolute;
      top: -150px;
      left: -200px;
      animation: float1 10s ease-in-out infinite; }
    #home-page #book .book__right {
      position: absolute;
      top: -300px;
      right: -400px;
      animation: float2 10s ease-in-out infinite;
      animation-delay: 5s; }
    #home-page #book .book__inner {
      position: relative;
      z-index: 3; }
  #home-page #events {
    background: #f3bbad;
    color: #79914b;
    border-bottom: 2px solid #ccad67; }
  #home-page #events .event-slider__item {
    padding: 5% 0px; }
    #home-page #events .event-slider__wrap {
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding: 5% 15%;
      height: 100%; }
    #home-page #events .event-slider__label {
      text-decoration-line: underline;
      text-transform: uppercase;
      padding-bottom: 20px; }
    #home-page #events .event-slider__heading {
      font-family: 'TANEGRET', sans-serif;
      font-size: var(--font_82);
      line-height: 120%;
      text-transform: uppercase; }
    #home-page #events .event-slider__content {
      padding: 0px 0px 40px 0px; }
    #home-page #events .event-slider__buttons {
      display: flex;
      justify-content: space-between; }
    #home-page #events .event-slider__btn {
      width: 48% !important; }
    #home-page #events .event-slider__btn .btn-secondary {
      display: block; }
    #home-page #events .event-slider__image {
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center; }
    #home-page #events .event-slider__image img {
      border-radius: 430.5px;
      border: 4px solid #79914b;
      width: 553px;
      height: 817px; }
    #home-page #events .event-slider__outer {
      border-radius: 430.5px;
      border: 2px solid #79914b;
      width: 571px;
      height: 835px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      margin: 0 auto; }
  #home-page #events .slick-dots {
    bottom: 40px; }
    #home-page #events .slick-dots li button {
      width: 15px;
      height: 15px;
      border: 1px solid #79914b;
      border-radius: 100%; }
    #home-page #events .slick-dots li button:before {
      font-size: 0px; }
    #home-page #events .slick-dots li.slick-active button {
      background: #79914b !important; }
    #home-page #events .slick-dots li:only-child {
      display: none; }
  #home-page #gift .bdr-r {
    border-right: 2px solid #ccad67;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center; }
  #home-page #gift .slick-dots {
    bottom: 30px; }
    #home-page #gift .slick-dots li button {
      width: 15px;
      height: 15px;
      border: 1px solid #fcebda;
      border-radius: 100%; }
    #home-page #gift .slick-dots li button:before {
      font-size: 0px; }
    #home-page #gift .slick-dots li.slick-active button {
      background: #fcebda !important; }
    #home-page #gift .slick-dots li:only-child {
      display: none; }
  #home-page #gift .gift__wrap {
    width: 100%;
    max-width: 620px;
    margin: 0 auto;
    padding: 10% 0px; }
    #home-page #gift .gift__heading {
      font-family: 'TANEGRET', sans-serif;
      font-size: var(--font_128);
      line-height: 120%;
      text-transform: uppercase; }
    #home-page #gift .gift__content {
      padding-bottom: 40px; }
    #home-page #gift .gift__slider {
      width: 100%;
      height: 100%;
      margin-bottom: -8px !important; }
    #home-page #gift .gift__slider .slick-list, #home-page #gift .gift__slider .slick-track, #home-page #gift .gift__slider .slick-slide {
      height: 100% !important; }
      #home-page #gift .gift__slider .slick-list div, #home-page #gift .gift__slider .slick-track div, #home-page #gift .gift__slider .slick-slide div {
        height: 100% !important; }
    #home-page #gift .gift__slide img {
      width: 100%;
      height: 100%;
      object-fit: cover; }
    #home-page #gift .gift__embed .woocommerce-product-gallery, #home-page #gift .gift__embed .woocommerce-notices-wrapper {
      display: none; }
    #home-page #gift .gift__embed .col-xl-6 {
      width: 100%; }
    #home-page #gift .gift__embed .summary {
      width: 100%; }
    #home-page #gift .gift__embed .product_title, #home-page #gift .gift__embed .product_meta {
      display: none; }
    #home-page #gift .gift__embed .gift-cards_form h3 {
      display: none; }
      #home-page #gift .gift__embed .gift-cards_form .gift-card-content-editor {
        display: none; }
      #home-page #gift .gift__embed .gift-cards_form button.single_add_to_cart_button {
        font-family: 'TANEGRET', sans-serif !important;
        font-size: var(--button_size) !important;
        line-height: var(--button_size) !important;
        padding: 20px 80px 8px 80px !important;
        text-align: center;
        display: inline-block;
        font-weight: 400;
        border-radius: 50px;
        text-transform: uppercase;
        background-image: none !important;
        text-shadow: none !important;
        box-shadow: none !important;
        /* Primary Button Style */
        background-color: transparent;
        border: 2px solid #ccad67;
        color: #ccad67;
        display: inline-block !important;
        background-image: none !important;
        text-shadow: none !important;
        box-shadow: none !important;
        zoom: 1; }
        #home-page #gift .gift__embed .gift-cards_form button.single_add_to_cart_button:hover {
          background-color: #ccad67;
          border: 2px solid #ccad67;
          color: #fcebda;
          transition: 0.5s ease;
          /* Secondary Button Style */ }
      #home-page #gift .gift__embed .gift-cards_form .gift_card_template_button {
        display: flex;
        flex-direction: row;
        justify-content: space-between; }
        #home-page #gift .gift__embed .gift-cards_form .gift_card_template_button .quantity {
          width: 200px;
          border: 2px solid #ccad67;
          border-radius: 50px; }
          #home-page #gift .gift__embed .gift-cards_form .gift_card_template_button .quantity button {
            height: 100%;
            width: 100%;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            padding: 10px 0px;
            margin: 10px 0px; }
          #home-page #gift .gift__embed .gift-cards_form .gift_card_template_button .quantity .input-group {
            position: relative;
            display: flex;
            flex-direction: row;
            margin: 0 auto;
            flex-wrap: nowrap; }
          #home-page #gift .gift__embed .gift-cards_form .gift_card_template_button .quantity .input-group-prepend {
            margin-left: 10px; }
          #home-page #gift .gift__embed .gift-cards_form .gift_card_template_button .quantity .input-group-append {
            margin-right: 10px; }
          #home-page #gift .gift__embed .gift-cards_form .gift_card_template_button .quantity .bootstrap-touchspin-down.btn-primary, #home-page #gift .gift__embed .gift-cards_form .gift_card_template_button .quantity .bootstrap-touchspin-up.btn-primary {
            background-color: transparent !important;
            border: none !important;
            font-size: calc(var(--button_size) + 20%) !important;
            width: auto !important;
            color: #ccad67 !important; }
          #home-page #gift .gift__embed .gift-cards_form .gift_card_template_button .quantity .input-text {
            font-family: 'TANEGRET', sans-serif !important;
            font-size: var(--button_size) !important;
            color: #ccad67 !important;
            height: 65px;
            padding-top: 15px !important; }
        #home-page #gift .gift-cards-list button {
          background: #fcebda;
          padding: 0px 40px;
          border-radius: 50px;
          border: 2px solid #ccad67;
          color: #ccad67; }
    #home-page #gift .gift-cards-list button.selected_button {
      background: #ccad67;
      padding: 0px 40px;
      border-radius: 50px;
      border: 2px solid #ccad67;
      color: #fcebda; }
  #home-page #media {
    border-top: 2px solid #ccad67;
    border-bottom: 2px solid #ccad67; }
  #home-page #media .image-cover {
    background-size: cover;
    background-position: center center;
    width: 100vw;
    height: 100vh; }
  #home-page #media .video-cover {
    width: 100vw;
    height: 100vh;
    overflow: hidden; }
    #home-page #media .video-cover video {
      object-fit: cover;
      width: 100vw;
      height: 100vh; }
  #home-page #media .image-inline, #home-page #media .video-inline {
    text-align: center;
    padding: 5%; }
  #home-page #media .video-inline {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto; }
  #home-page #about {
    padding: 5% 0px;
    border-bottom: 2px solid #ccad67; }
  #home-page #about .about__wrap {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 5% 10%;
    height: 100%; }
    #home-page #about .about__heading {
      font-family: 'TANEGRET', sans-serif;
      font-size: var(--font_128);
      line-height: 120%;
      text-transform: uppercase; }
    #home-page #about .about__content {
      padding: 0px 0px 40px 0px;
      text-transform: uppercase; }
    #home-page #about .about__image {
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center; }
    #home-page #about .about__image img {
      border-radius: 430.5px;
      border: 4px solid #ccad67;
      width: 553px;
      height: 817px; }
    #home-page #about .about__outer {
      border-radius: 430.5px;
      border: 2px solid #ccad67;
      width: 571px;
      height: 835px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      margin: 0 auto; }

#about-page #header {
  width: 100vw;
  height: 100vh;
  background-size: cover;
  background-repeat: no-repeat; }
  #about-page #header .container-fluid, #about-page #header .row {
    height: 100%; }
  #about-page #header .col-xl-12 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%; }
  #about-page #header .header__wrap {
    width: 922px;
    position: relative;
    margin: 0 auto; }
  #about-page #header .shape__subheading {
    text-transform: uppercase;
    text-align: center;
    padding: 28px 0px 40px 0px; }
    #about-page #header .shape__heading {
      font-family: 'TANEGRET', sans-serif;
      font-size: var(--font_82);
      line-height: 120%;
      text-transform: uppercase;
      text-align: center;
      padding-top: 20px; }
    #about-page #header .shape__content {
      text-align: center;
      line-height: 130%;
      padding-top: 20px;
      width: 100%;
      max-width: 620px;
      margin: 0 auto; }
    #about-page #header .shape__bg {
      position: relative;
      z-index: 2; }
    #about-page #header .shape__inner {
      position: absolute;
      z-index: 2;
      top: 0px;
      left: 0px;
      width: 100%;
      height: 85%;
      padding: 0px 40px; }
  #about-page #header .line {
    justify-content: center; }
  #about-page #intro {
    padding: 10% 5% 0% 5%; }
  #about-page #intro .intro__wrap {
    width: 100%;
    max-width: 620px;
    margin: 0 auto;
    text-align: center; }
    #about-page #intro .intro__subheading {
      text-transform: uppercase;
      color: #8cb3c4;
      padding-bottom: 20px; }
    #about-page #intro .intro__heading {
      font-family: 'TANEGRET', sans-serif;
      font-size: var(--font_82);
      line-height: 120%;
      text-transform: uppercase;
      color: #8cb3c4;
      padding-bottom: 20px; }
    #about-page #intro .intro__content {
      color: #8cb3c4;
      width: 100%;
      max-width: 460px;
      margin: 0 auto; }
  #about-page #intro .line {
    justify-content: center; }
  #about-page #about {
    padding: 5% 0px;
    border-bottom: 2px solid #ccad67; }
  #about-page #about .container {
    padding: 5% 5%; }
  #about-page #about .about__wrap {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 5% 10%;
    height: 100%; }
    #about-page #about .about__heading {
      font-family: 'TANEGRET', sans-serif;
      font-size: var(--font_128);
      line-height: 120%;
      text-transform: uppercase; }
    #about-page #about .about__content {
      width: 100%;
      max-width: 500px; }
    #about-page #about .about__image {
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center; }
    #about-page #about .about__image img {
      border-radius: 430.5px;
      border: 4px solid #ccad67;
      width: 553px;
      height: 817px; }
    #about-page #about .about__outer {
      border-radius: 430.5px;
      border: 2px solid #ccad67;
      width: 571px;
      height: 835px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      margin: 0 auto; }
  #about-page #about .container:nth-child(1n) {
    color: #8cb3c4; }
    #about-page #about .container:nth-child(1n) .about__image img {
      border: 4px solid #8cb3c4; }
    #about-page #about .container:nth-child(1n) .about__outer {
      border: 2px solid #8cb3c4; }
  #about-page #about .container:nth-child(2n) {
    color: #79914b; }
    #about-page #about .container:nth-child(2n) .about__image img {
      border: 4px solid #79914b; }
    #about-page #about .container:nth-child(2n) .about__outer {
      border: 2px solid #79914b; }
    #about-page #about .container:nth-child(2n) .row {
      flex-direction: row-reverse; }
  #about-page #about .container:nth-child(3n) {
    color: #ccad67; }
    #about-page #about .container:nth-child(3n) .about__image img {
      border: 4px solid #ccad67; }
    #about-page #about .container:nth-child(3n) .about__outer {
      border: 2px solid #ccad67; }

#home-page #contact-us, #about-page #contact-us {
  background: #f3bbad; }
  #home-page #contact-us .col-xl-6, #about-page #contact-us .col-xl-6 {
    padding: 8% 0px; }
    #home-page #contact-us .col-xl-6:first-child, #about-page #contact-us .col-xl-6:first-child {
      border-right: 2px solid #ccad67; }
  #home-page #contact-us .contact-us__wrap, #about-page #contact-us .contact-us__wrap {
    width: 654px;
    position: relative;
    margin: 0 auto; }
  #home-page #contact-us .shape__subheading, #about-page #contact-us .shape__subheading {
    text-transform: uppercase;
    text-align: center;
    padding: 28px 0px 40px 0px; }
    #home-page #contact-us .shape__heading, #about-page #contact-us .shape__heading {
      font-family: 'TANEGRET', sans-serif;
      font-size: var(--font_82);
      line-height: 120%;
      text-transform: uppercase;
      text-align: center; }
    #home-page #contact-us .shape__content, #about-page #contact-us .shape__content {
      text-transform: uppercase;
      text-align: center; }
    #home-page #contact-us .shape__bg, #about-page #contact-us .shape__bg {
      position: relative;
      z-index: 2; }
    #home-page #contact-us .shape__inner, #about-page #contact-us .shape__inner {
      position: absolute;
      z-index: 2;
      top: 0px;
      left: 0px;
      width: 100%;
      height: 85%; }
    #home-page #contact-us .shape__buttons, #about-page #contact-us .shape__buttons {
      width: 100%;
      display: flex;
      justify-content: center;
      margin-top: -40px;
      position: relative;
      z-index: 4; }
    #home-page #contact-us .shape__buttons a:first-child, #about-page #contact-us .shape__buttons a:first-child {
      margin-right: 20px; }
    #home-page #contact-us .shape__buttons .btn-primary, #about-page #contact-us .shape__buttons .btn-primary {
      background: #fcebda;
      font-family: 'General Sans Regular', sans-serif !important;
      font-size: var(--content_size) !important;
      padding: 10px 80px 8px 80px !important; }
      #home-page #contact-us .shape__buttons .btn-primary:hover, #about-page #contact-us .shape__buttons .btn-primary:hover {
        background: #ccad67;
        color: #fcebda !important; }
  #home-page #contact-us .line, #about-page #contact-us .line {
    justify-content: center; }

#contact-page #contact {
  width: 100vw;
  min-height: 100vh;
  height: 100%; }
  #contact-page #contact .container-fluid, #contact-page #contact .row, #contact-page #contact .col-xl-12 {
    min-height: 100vh;
    height: 100%; }
  #contact-page #contact .bgimg {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    border-right: 2px solid #ccad67; }
  #contact-page #contact .contact {
    height: 100%;
    min-height: 100vh; }
    #contact-page #contact .contact__wrap {
      padding: 5% 20px;
      width: 100%;
      max-width: 700px;
      margin: 0 auto; }
    #contact-page #contact .contact__heading {
      font-family: 'TANEGRET', sans-serif;
      font-size: var(--font_82);
      line-height: 120%;
      text-transform: uppercase; }
    #contact-page #contact .contact__form {
      width: 100%; }
  #contact-page #contact .flex {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center; }
  #contact-page #contact .wpforms-submit {
    height: 66px; }
  #contact-page input {
    height: 45px; }

#holding-page {
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  justify-content: space-between;
  position: fixed;
  background-color: #93261e;
  background-image: url(../images/Loader.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  z-index: 999999; }
  #holding-page .page-top {
    padding: 5%;
    width: 100%;
    height: 100%;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center; }
  #holding-page .holding__logo {
    width: 80%; }
    #holding-page .holding__logo img {
      width: 100%; }
  #holding-page .holding__contact {
    font-size: calc(var(--content_size) + 20%);
    text-align: center;
    padding-top: 40px; }
  #holding-page .holding__social {
    padding-top: 20px;
    font-size: 40px;
    text-align: center; }
  #holding-page .holding__coming {
    padding-bottom: 80px;
    font-size: calc(var(--content_size) + 50%); }
  #holding-page .marquee__inner {
    animation: marquee 90s linear infinite;
    -webkit-animation: marquee 90s linear infinite; }
    #holding-page .marquee__inner span {
      font-family: 'TANEGRET', sans-serif;
      font-style: normal;
      font-weight: 400;
      font-size: var(--h4_size);
      line-height: 150%;
      display: flex;
      align-items: center;
      text-transform: uppercase;
      padding: 0px !important; }

#custom-page #cta.brand1, #custom-page #accordion_split.brand1, #custom-page #split-column.brand1, #custom-page #marquee.brand1, #custom-page #testimonials.brand1, #custom-page #html.brand1, #custom-page #wysiwyg.brand1, #custom-page #spacer.brand1, #custom-page #specialties.brand1, #custom-page #header.brand1, #custom-page #banner.brand1 {
  background-color: #fcebda !important;
  color: #ccad67; }
  #custom-page #cta.brand1 h1, #custom-page #accordion_split.brand1 h1, #custom-page #split-column.brand1 h1, #custom-page #marquee.brand1 h1, #custom-page #testimonials.brand1 h1, #custom-page #html.brand1 h1, #custom-page #wysiwyg.brand1 h1, #custom-page #spacer.brand1 h1, #custom-page #specialties.brand1 h1, #custom-page #header.brand1 h1, #custom-page #banner.brand1 h1, #custom-page #cta.brand1 h2, #custom-page #accordion_split.brand1 h2, #custom-page #split-column.brand1 h2, #custom-page #marquee.brand1 h2, #custom-page #testimonials.brand1 h2, #custom-page #html.brand1 h2, #custom-page #wysiwyg.brand1 h2, #custom-page #spacer.brand1 h2, #custom-page #specialties.brand1 h2, #custom-page #header.brand1 h2, #custom-page #banner.brand1 h2, #custom-page #cta.brand1 h3, #custom-page #accordion_split.brand1 h3, #custom-page #split-column.brand1 h3, #custom-page #marquee.brand1 h3, #custom-page #testimonials.brand1 h3, #custom-page #html.brand1 h3, #custom-page #wysiwyg.brand1 h3, #custom-page #spacer.brand1 h3, #custom-page #specialties.brand1 h3, #custom-page #header.brand1 h3, #custom-page #banner.brand1 h3, #custom-page #cta.brand1 h4, #custom-page #accordion_split.brand1 h4, #custom-page #split-column.brand1 h4, #custom-page #marquee.brand1 h4, #custom-page #testimonials.brand1 h4, #custom-page #html.brand1 h4, #custom-page #wysiwyg.brand1 h4, #custom-page #spacer.brand1 h4, #custom-page #specialties.brand1 h4, #custom-page #header.brand1 h4, #custom-page #banner.brand1 h4, #custom-page #cta.brand1 h5, #custom-page #accordion_split.brand1 h5, #custom-page #split-column.brand1 h5, #custom-page #marquee.brand1 h5, #custom-page #testimonials.brand1 h5, #custom-page #html.brand1 h5, #custom-page #wysiwyg.brand1 h5, #custom-page #spacer.brand1 h5, #custom-page #specialties.brand1 h5, #custom-page #header.brand1 h5, #custom-page #banner.brand1 h5, #custom-page #cta.brand1 h6, #custom-page #accordion_split.brand1 h6, #custom-page #split-column.brand1 h6, #custom-page #marquee.brand1 h6, #custom-page #testimonials.brand1 h6, #custom-page #html.brand1 h6, #custom-page #wysiwyg.brand1 h6, #custom-page #spacer.brand1 h6, #custom-page #specialties.brand1 h6, #custom-page #header.brand1 h6, #custom-page #banner.brand1 h6, #custom-page #cta.brand1 p, #custom-page #accordion_split.brand1 p, #custom-page #split-column.brand1 p, #custom-page #marquee.brand1 p, #custom-page #testimonials.brand1 p, #custom-page #html.brand1 p, #custom-page #wysiwyg.brand1 p, #custom-page #spacer.brand1 p, #custom-page #specialties.brand1 p, #custom-page #header.brand1 p, #custom-page #banner.brand1 p {
    color: #ccad67 !important; }
  #custom-page #cta.brand1 .btn-primary, #custom-page #accordion_split.brand1 .btn-primary, #custom-page #split-column.brand1 .btn-primary, #custom-page #marquee.brand1 .btn-primary, #custom-page #testimonials.brand1 .btn-primary, #custom-page #html.brand1 .btn-primary, #custom-page #wysiwyg.brand1 .btn-primary, #custom-page #spacer.brand1 .btn-primary, #custom-page #specialties.brand1 .btn-primary, #custom-page #header.brand1 .btn-primary, #custom-page #banner.brand1 .btn-primary {
    background-color: transparent;
    border: 2px solid #ccad67;
    color: #ccad67; }
    #custom-page #cta.brand1 .btn-primary:hover, #custom-page #accordion_split.brand1 .btn-primary:hover, #custom-page #split-column.brand1 .btn-primary:hover, #custom-page #marquee.brand1 .btn-primary:hover, #custom-page #testimonials.brand1 .btn-primary:hover, #custom-page #html.brand1 .btn-primary:hover, #custom-page #wysiwyg.brand1 .btn-primary:hover, #custom-page #spacer.brand1 .btn-primary:hover, #custom-page #specialties.brand1 .btn-primary:hover, #custom-page #header.brand1 .btn-primary:hover, #custom-page #banner.brand1 .btn-primary:hover {
      background-color: #ccad67;
      border: 2px solid #ccad67;
      color: #fcebda; }
  #custom-page #cta.brand1 .service__link a, #custom-page #accordion_split.brand1 .service__link a, #custom-page #split-column.brand1 .service__link a, #custom-page #marquee.brand1 .service__link a, #custom-page #testimonials.brand1 .service__link a, #custom-page #html.brand1 .service__link a, #custom-page #wysiwyg.brand1 .service__link a, #custom-page #spacer.brand1 .service__link a, #custom-page #specialties.brand1 .service__link a, #custom-page #header.brand1 .service__link a, #custom-page #banner.brand1 .service__link a {
    color: #ccad67; }
  #custom-page #cta.brand1 .accordion, #custom-page #accordion_split.brand1 .accordion, #custom-page #split-column.brand1 .accordion, #custom-page #marquee.brand1 .accordion, #custom-page #testimonials.brand1 .accordion, #custom-page #html.brand1 .accordion, #custom-page #wysiwyg.brand1 .accordion, #custom-page #spacer.brand1 .accordion, #custom-page #specialties.brand1 .accordion, #custom-page #header.brand1 .accordion, #custom-page #banner.brand1 .accordion {
    border-bottom: 2px solid #ccad67; }
  #custom-page #cta.brand1 .accordion-body, #custom-page #accordion_split.brand1 .accordion-body, #custom-page #split-column.brand1 .accordion-body, #custom-page #marquee.brand1 .accordion-body, #custom-page #testimonials.brand1 .accordion-body, #custom-page #html.brand1 .accordion-body, #custom-page #wysiwyg.brand1 .accordion-body, #custom-page #spacer.brand1 .accordion-body, #custom-page #specialties.brand1 .accordion-body, #custom-page #header.brand1 .accordion-body, #custom-page #banner.brand1 .accordion-body {
    color: #ccad67; }
  #custom-page #cta.brand1 .accordion-button, #custom-page #accordion_split.brand1 .accordion-button, #custom-page #split-column.brand1 .accordion-button, #custom-page #marquee.brand1 .accordion-button, #custom-page #testimonials.brand1 .accordion-button, #custom-page #html.brand1 .accordion-button, #custom-page #wysiwyg.brand1 .accordion-button, #custom-page #spacer.brand1 .accordion-button, #custom-page #specialties.brand1 .accordion-button, #custom-page #header.brand1 .accordion-button, #custom-page #banner.brand1 .accordion-button {
    color: #ccad67;
    border-top: 2px solid #ccad67; }
  #custom-page #cta.brand1 .accordion-button:not(.collapsed), #custom-page #accordion_split.brand1 .accordion-button:not(.collapsed), #custom-page #split-column.brand1 .accordion-button:not(.collapsed), #custom-page #marquee.brand1 .accordion-button:not(.collapsed), #custom-page #testimonials.brand1 .accordion-button:not(.collapsed), #custom-page #html.brand1 .accordion-button:not(.collapsed), #custom-page #wysiwyg.brand1 .accordion-button:not(.collapsed), #custom-page #spacer.brand1 .accordion-button:not(.collapsed), #custom-page #specialties.brand1 .accordion-button:not(.collapsed), #custom-page #header.brand1 .accordion-button:not(.collapsed), #custom-page #banner.brand1 .accordion-button:not(.collapsed) {
    color: #ccad67; }
  #custom-page #cta.brand1 .accordion-button:focus, #custom-page #accordion_split.brand1 .accordion-button:focus, #custom-page #split-column.brand1 .accordion-button:focus, #custom-page #marquee.brand1 .accordion-button:focus, #custom-page #testimonials.brand1 .accordion-button:focus, #custom-page #html.brand1 .accordion-button:focus, #custom-page #wysiwyg.brand1 .accordion-button:focus, #custom-page #spacer.brand1 .accordion-button:focus, #custom-page #specialties.brand1 .accordion-button:focus, #custom-page #header.brand1 .accordion-button:focus, #custom-page #banner.brand1 .accordion-button:focus {
    border-top: 2px solid #ccad67; }
  #custom-page #cta.brand2, #custom-page #accordion_split.brand2, #custom-page #split-column.brand2, #custom-page #marquee.brand2, #custom-page #testimonials.brand2, #custom-page #html.brand2, #custom-page #wysiwyg.brand2, #custom-page #spacer.brand2, #custom-page #specialties.brand2, #custom-page #header.brand2, #custom-page #banner.brand2 {
    background-color: #ccad67 !important;
    color: #fcebda; }
  #custom-page #cta.brand2 h1, #custom-page #accordion_split.brand2 h1, #custom-page #split-column.brand2 h1, #custom-page #marquee.brand2 h1, #custom-page #testimonials.brand2 h1, #custom-page #html.brand2 h1, #custom-page #wysiwyg.brand2 h1, #custom-page #spacer.brand2 h1, #custom-page #specialties.brand2 h1, #custom-page #header.brand2 h1, #custom-page #banner.brand2 h1, #custom-page #cta.brand2 h2, #custom-page #accordion_split.brand2 h2, #custom-page #split-column.brand2 h2, #custom-page #marquee.brand2 h2, #custom-page #testimonials.brand2 h2, #custom-page #html.brand2 h2, #custom-page #wysiwyg.brand2 h2, #custom-page #spacer.brand2 h2, #custom-page #specialties.brand2 h2, #custom-page #header.brand2 h2, #custom-page #banner.brand2 h2, #custom-page #cta.brand2 h3, #custom-page #accordion_split.brand2 h3, #custom-page #split-column.brand2 h3, #custom-page #marquee.brand2 h3, #custom-page #testimonials.brand2 h3, #custom-page #html.brand2 h3, #custom-page #wysiwyg.brand2 h3, #custom-page #spacer.brand2 h3, #custom-page #specialties.brand2 h3, #custom-page #header.brand2 h3, #custom-page #banner.brand2 h3, #custom-page #cta.brand2 h4, #custom-page #accordion_split.brand2 h4, #custom-page #split-column.brand2 h4, #custom-page #marquee.brand2 h4, #custom-page #testimonials.brand2 h4, #custom-page #html.brand2 h4, #custom-page #wysiwyg.brand2 h4, #custom-page #spacer.brand2 h4, #custom-page #specialties.brand2 h4, #custom-page #header.brand2 h4, #custom-page #banner.brand2 h4, #custom-page #cta.brand2 h5, #custom-page #accordion_split.brand2 h5, #custom-page #split-column.brand2 h5, #custom-page #marquee.brand2 h5, #custom-page #testimonials.brand2 h5, #custom-page #html.brand2 h5, #custom-page #wysiwyg.brand2 h5, #custom-page #spacer.brand2 h5, #custom-page #specialties.brand2 h5, #custom-page #header.brand2 h5, #custom-page #banner.brand2 h5, #custom-page #cta.brand2 h6, #custom-page #accordion_split.brand2 h6, #custom-page #split-column.brand2 h6, #custom-page #marquee.brand2 h6, #custom-page #testimonials.brand2 h6, #custom-page #html.brand2 h6, #custom-page #wysiwyg.brand2 h6, #custom-page #spacer.brand2 h6, #custom-page #specialties.brand2 h6, #custom-page #header.brand2 h6, #custom-page #banner.brand2 h6, #custom-page #cta.brand2 p, #custom-page #accordion_split.brand2 p, #custom-page #split-column.brand2 p, #custom-page #marquee.brand2 p, #custom-page #testimonials.brand2 p, #custom-page #html.brand2 p, #custom-page #wysiwyg.brand2 p, #custom-page #spacer.brand2 p, #custom-page #specialties.brand2 p, #custom-page #header.brand2 p, #custom-page #banner.brand2 p {
    color: #fcebda !important; }
  #custom-page #cta.brand2 .btn-primary, #custom-page #accordion_split.brand2 .btn-primary, #custom-page #split-column.brand2 .btn-primary, #custom-page #marquee.brand2 .btn-primary, #custom-page #testimonials.brand2 .btn-primary, #custom-page #html.brand2 .btn-primary, #custom-page #wysiwyg.brand2 .btn-primary, #custom-page #spacer.brand2 .btn-primary, #custom-page #specialties.brand2 .btn-primary, #custom-page #header.brand2 .btn-primary, #custom-page #banner.brand2 .btn-primary {
    background-color: transparent;
    border: 2px solid #fcebda;
    color: #fcebda; }
    #custom-page #cta.brand2 .btn-primary:hover, #custom-page #accordion_split.brand2 .btn-primary:hover, #custom-page #split-column.brand2 .btn-primary:hover, #custom-page #marquee.brand2 .btn-primary:hover, #custom-page #testimonials.brand2 .btn-primary:hover, #custom-page #html.brand2 .btn-primary:hover, #custom-page #wysiwyg.brand2 .btn-primary:hover, #custom-page #spacer.brand2 .btn-primary:hover, #custom-page #specialties.brand2 .btn-primary:hover, #custom-page #header.brand2 .btn-primary:hover, #custom-page #banner.brand2 .btn-primary:hover {
      background-color: #fcebda;
      border: 2px solid #fcebda;
      color: #ccad67; }
  #custom-page #cta.brand2 .service__link a, #custom-page #accordion_split.brand2 .service__link a, #custom-page #split-column.brand2 .service__link a, #custom-page #marquee.brand2 .service__link a, #custom-page #testimonials.brand2 .service__link a, #custom-page #html.brand2 .service__link a, #custom-page #wysiwyg.brand2 .service__link a, #custom-page #spacer.brand2 .service__link a, #custom-page #specialties.brand2 .service__link a, #custom-page #header.brand2 .service__link a, #custom-page #banner.brand2 .service__link a {
    color: #fcebda; }
  #custom-page #cta.brand2 .accordion, #custom-page #accordion_split.brand2 .accordion, #custom-page #split-column.brand2 .accordion, #custom-page #marquee.brand2 .accordion, #custom-page #testimonials.brand2 .accordion, #custom-page #html.brand2 .accordion, #custom-page #wysiwyg.brand2 .accordion, #custom-page #spacer.brand2 .accordion, #custom-page #specialties.brand2 .accordion, #custom-page #header.brand2 .accordion, #custom-page #banner.brand2 .accordion {
    border-bottom: 2px solid #fcebda; }
  #custom-page #cta.brand2 .accordion-body, #custom-page #accordion_split.brand2 .accordion-body, #custom-page #split-column.brand2 .accordion-body, #custom-page #marquee.brand2 .accordion-body, #custom-page #testimonials.brand2 .accordion-body, #custom-page #html.brand2 .accordion-body, #custom-page #wysiwyg.brand2 .accordion-body, #custom-page #spacer.brand2 .accordion-body, #custom-page #specialties.brand2 .accordion-body, #custom-page #header.brand2 .accordion-body, #custom-page #banner.brand2 .accordion-body {
    color: #fcebda; }
  #custom-page #cta.brand2 .accordion-button, #custom-page #accordion_split.brand2 .accordion-button, #custom-page #split-column.brand2 .accordion-button, #custom-page #marquee.brand2 .accordion-button, #custom-page #testimonials.brand2 .accordion-button, #custom-page #html.brand2 .accordion-button, #custom-page #wysiwyg.brand2 .accordion-button, #custom-page #spacer.brand2 .accordion-button, #custom-page #specialties.brand2 .accordion-button, #custom-page #header.brand2 .accordion-button, #custom-page #banner.brand2 .accordion-button {
    color: #fcebda;
    border-top: 2px solid #fcebda; }
  #custom-page #cta.brand2 .accordion-button:not(.collapsed), #custom-page #accordion_split.brand2 .accordion-button:not(.collapsed), #custom-page #split-column.brand2 .accordion-button:not(.collapsed), #custom-page #marquee.brand2 .accordion-button:not(.collapsed), #custom-page #testimonials.brand2 .accordion-button:not(.collapsed), #custom-page #html.brand2 .accordion-button:not(.collapsed), #custom-page #wysiwyg.brand2 .accordion-button:not(.collapsed), #custom-page #spacer.brand2 .accordion-button:not(.collapsed), #custom-page #specialties.brand2 .accordion-button:not(.collapsed), #custom-page #header.brand2 .accordion-button:not(.collapsed), #custom-page #banner.brand2 .accordion-button:not(.collapsed) {
    color: #fcebda; }
  #custom-page #cta.brand2 .accordion-button:focus, #custom-page #accordion_split.brand2 .accordion-button:focus, #custom-page #split-column.brand2 .accordion-button:focus, #custom-page #marquee.brand2 .accordion-button:focus, #custom-page #testimonials.brand2 .accordion-button:focus, #custom-page #html.brand2 .accordion-button:focus, #custom-page #wysiwyg.brand2 .accordion-button:focus, #custom-page #spacer.brand2 .accordion-button:focus, #custom-page #specialties.brand2 .accordion-button:focus, #custom-page #header.brand2 .accordion-button:focus, #custom-page #banner.brand2 .accordion-button:focus {
    border-top: 2px solid #fcebda; }
  #custom-page #cta.brand3, #custom-page #accordion_split.brand3, #custom-page #split-column.brand3, #custom-page #marquee.brand3, #custom-page #testimonials.brand3, #custom-page #html.brand3, #custom-page #wysiwyg.brand3, #custom-page #spacer.brand3, #custom-page #specialties.brand3, #custom-page #header.brand3, #custom-page #banner.brand3 {
    background-color: #f3bbad !important;
    color: #79914b; }
  #custom-page #cta.brand3 h1, #custom-page #accordion_split.brand3 h1, #custom-page #split-column.brand3 h1, #custom-page #marquee.brand3 h1, #custom-page #testimonials.brand3 h1, #custom-page #html.brand3 h1, #custom-page #wysiwyg.brand3 h1, #custom-page #spacer.brand3 h1, #custom-page #specialties.brand3 h1, #custom-page #header.brand3 h1, #custom-page #banner.brand3 h1, #custom-page #cta.brand3 h2, #custom-page #accordion_split.brand3 h2, #custom-page #split-column.brand3 h2, #custom-page #marquee.brand3 h2, #custom-page #testimonials.brand3 h2, #custom-page #html.brand3 h2, #custom-page #wysiwyg.brand3 h2, #custom-page #spacer.brand3 h2, #custom-page #specialties.brand3 h2, #custom-page #header.brand3 h2, #custom-page #banner.brand3 h2, #custom-page #cta.brand3 h3, #custom-page #accordion_split.brand3 h3, #custom-page #split-column.brand3 h3, #custom-page #marquee.brand3 h3, #custom-page #testimonials.brand3 h3, #custom-page #html.brand3 h3, #custom-page #wysiwyg.brand3 h3, #custom-page #spacer.brand3 h3, #custom-page #specialties.brand3 h3, #custom-page #header.brand3 h3, #custom-page #banner.brand3 h3, #custom-page #cta.brand3 h4, #custom-page #accordion_split.brand3 h4, #custom-page #split-column.brand3 h4, #custom-page #marquee.brand3 h4, #custom-page #testimonials.brand3 h4, #custom-page #html.brand3 h4, #custom-page #wysiwyg.brand3 h4, #custom-page #spacer.brand3 h4, #custom-page #specialties.brand3 h4, #custom-page #header.brand3 h4, #custom-page #banner.brand3 h4, #custom-page #cta.brand3 h5, #custom-page #accordion_split.brand3 h5, #custom-page #split-column.brand3 h5, #custom-page #marquee.brand3 h5, #custom-page #testimonials.brand3 h5, #custom-page #html.brand3 h5, #custom-page #wysiwyg.brand3 h5, #custom-page #spacer.brand3 h5, #custom-page #specialties.brand3 h5, #custom-page #header.brand3 h5, #custom-page #banner.brand3 h5, #custom-page #cta.brand3 h6, #custom-page #accordion_split.brand3 h6, #custom-page #split-column.brand3 h6, #custom-page #marquee.brand3 h6, #custom-page #testimonials.brand3 h6, #custom-page #html.brand3 h6, #custom-page #wysiwyg.brand3 h6, #custom-page #spacer.brand3 h6, #custom-page #specialties.brand3 h6, #custom-page #header.brand3 h6, #custom-page #banner.brand3 h6, #custom-page #cta.brand3 p, #custom-page #accordion_split.brand3 p, #custom-page #split-column.brand3 p, #custom-page #marquee.brand3 p, #custom-page #testimonials.brand3 p, #custom-page #html.brand3 p, #custom-page #wysiwyg.brand3 p, #custom-page #spacer.brand3 p, #custom-page #specialties.brand3 p, #custom-page #header.brand3 p, #custom-page #banner.brand3 p {
    color: #79914b !important; }
  #custom-page #cta.brand3 .btn-primary, #custom-page #accordion_split.brand3 .btn-primary, #custom-page #split-column.brand3 .btn-primary, #custom-page #marquee.brand3 .btn-primary, #custom-page #testimonials.brand3 .btn-primary, #custom-page #html.brand3 .btn-primary, #custom-page #wysiwyg.brand3 .btn-primary, #custom-page #spacer.brand3 .btn-primary, #custom-page #specialties.brand3 .btn-primary, #custom-page #header.brand3 .btn-primary, #custom-page #banner.brand3 .btn-primary {
    background-color: transparent;
    border: 2px solid #79914b;
    color: #79914b; }
    #custom-page #cta.brand3 .btn-primary:hover, #custom-page #accordion_split.brand3 .btn-primary:hover, #custom-page #split-column.brand3 .btn-primary:hover, #custom-page #marquee.brand3 .btn-primary:hover, #custom-page #testimonials.brand3 .btn-primary:hover, #custom-page #html.brand3 .btn-primary:hover, #custom-page #wysiwyg.brand3 .btn-primary:hover, #custom-page #spacer.brand3 .btn-primary:hover, #custom-page #specialties.brand3 .btn-primary:hover, #custom-page #header.brand3 .btn-primary:hover, #custom-page #banner.brand3 .btn-primary:hover {
      background-color: #79914b;
      border: 2px solid #79914b;
      color: #f3bbad; }
  #custom-page #cta.brand3 .service__link a, #custom-page #accordion_split.brand3 .service__link a, #custom-page #split-column.brand3 .service__link a, #custom-page #marquee.brand3 .service__link a, #custom-page #testimonials.brand3 .service__link a, #custom-page #html.brand3 .service__link a, #custom-page #wysiwyg.brand3 .service__link a, #custom-page #spacer.brand3 .service__link a, #custom-page #specialties.brand3 .service__link a, #custom-page #header.brand3 .service__link a, #custom-page #banner.brand3 .service__link a {
    color: #79914b; }
  #custom-page #cta.brand3 .accordion, #custom-page #accordion_split.brand3 .accordion, #custom-page #split-column.brand3 .accordion, #custom-page #marquee.brand3 .accordion, #custom-page #testimonials.brand3 .accordion, #custom-page #html.brand3 .accordion, #custom-page #wysiwyg.brand3 .accordion, #custom-page #spacer.brand3 .accordion, #custom-page #specialties.brand3 .accordion, #custom-page #header.brand3 .accordion, #custom-page #banner.brand3 .accordion {
    border-bottom: 2px solid #79914b; }
  #custom-page #cta.brand3 .accordion-body, #custom-page #accordion_split.brand3 .accordion-body, #custom-page #split-column.brand3 .accordion-body, #custom-page #marquee.brand3 .accordion-body, #custom-page #testimonials.brand3 .accordion-body, #custom-page #html.brand3 .accordion-body, #custom-page #wysiwyg.brand3 .accordion-body, #custom-page #spacer.brand3 .accordion-body, #custom-page #specialties.brand3 .accordion-body, #custom-page #header.brand3 .accordion-body, #custom-page #banner.brand3 .accordion-body {
    color: #79914b; }
  #custom-page #cta.brand3 .accordion-button, #custom-page #accordion_split.brand3 .accordion-button, #custom-page #split-column.brand3 .accordion-button, #custom-page #marquee.brand3 .accordion-button, #custom-page #testimonials.brand3 .accordion-button, #custom-page #html.brand3 .accordion-button, #custom-page #wysiwyg.brand3 .accordion-button, #custom-page #spacer.brand3 .accordion-button, #custom-page #specialties.brand3 .accordion-button, #custom-page #header.brand3 .accordion-button, #custom-page #banner.brand3 .accordion-button {
    color: #79914b;
    border-top: 2px solid #79914b; }
  #custom-page #cta.brand3 .accordion-button:not(.collapsed), #custom-page #accordion_split.brand3 .accordion-button:not(.collapsed), #custom-page #split-column.brand3 .accordion-button:not(.collapsed), #custom-page #marquee.brand3 .accordion-button:not(.collapsed), #custom-page #testimonials.brand3 .accordion-button:not(.collapsed), #custom-page #html.brand3 .accordion-button:not(.collapsed), #custom-page #wysiwyg.brand3 .accordion-button:not(.collapsed), #custom-page #spacer.brand3 .accordion-button:not(.collapsed), #custom-page #specialties.brand3 .accordion-button:not(.collapsed), #custom-page #header.brand3 .accordion-button:not(.collapsed), #custom-page #banner.brand3 .accordion-button:not(.collapsed) {
    color: #79914b; }
  #custom-page #cta.brand3 .accordion-button:focus, #custom-page #accordion_split.brand3 .accordion-button:focus, #custom-page #split-column.brand3 .accordion-button:focus, #custom-page #marquee.brand3 .accordion-button:focus, #custom-page #testimonials.brand3 .accordion-button:focus, #custom-page #html.brand3 .accordion-button:focus, #custom-page #wysiwyg.brand3 .accordion-button:focus, #custom-page #spacer.brand3 .accordion-button:focus, #custom-page #specialties.brand3 .accordion-button:focus, #custom-page #header.brand3 .accordion-button:focus, #custom-page #banner.brand3 .accordion-button:focus {
    border-top: 2px solid #79914b; }
  #custom-page #header {
    padding: 5%; }
  #custom-page #header .header__heading {
    font-size: var(--h1_size);
    font-family: 'TANEGRET', sans-serif;
    line-height: 120%;
    padding: 0px;
    margin: 0px; }
    #custom-page #header .header__content {
      font-size: calc(var(--content_size) + 30%); }
    #custom-page #header .header__image {
      padding-top: 40px; }
  #custom-page #header .col-xl-6 {
    display: flex;
    flex-direction: column;
    justify-content: center; }
  #custom-page #banner-wrap {
    width: 100vw;
    position: relative; }
  #custom-page #banner-wrap .banner-image-bg {
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    width: 100vw; }
  #custom-page #banner-wrap .banner-video-bg {
    width: 100vw;
    overflow: hidden; }
    #custom-page #banner-wrap .banner-video-bg video {
      object-fit: cover;
      width: 100vw; }
  #custom-page #banner-wrap .banner-content {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100vw;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 40px 5%; }
  #custom-page #banner-wrap .banner-text {
    font-size: calc(var(--content_size) + 30%); }
  #custom-page #banner-wrap .banner-btn {
    margin-top: 40px; }
  #custom-page #split-column .split__image {
    width: 100%;
    height: 100%; }
    #custom-page #split-column .split__image img {
      width: 100%;
      height: 100%;
      object-fit: cover; }
    #custom-page #split-column .split__wrap {
      padding: 5% 10%;
      width: 100%;
      height: 100%;
      display: flex;
      flex-direction: column;
      justify-content: center; }
    #custom-page #split-column .split__heading {
      font-size: var(--h2_size);
      font-family: 'TANEGRET', sans-serif;
      line-height: 120%; }
    #custom-page #split-column .split__content {
      padding: 40px 0px; }
  #custom-page #split-column .container-fluid.right .row {
    flex-direction: row-reverse; }
  #custom-page #marquee {
    padding: 40px 0px; }
  #custom-page #marquee .marquee__inner {
    animation: marquee 30s linear infinite !important;
    -webkit-animation: marquee 30s linear infinite !important; }
    #custom-page #marquee .marquee__inner span {
      font-family: 'TANEGRET', sans-serif !important;
      font-size: var(--h3_size);
      line-height: 100%;
      text-transform: none !important;
      padding: 0 10px !important;
      min-height: 60px; }
  #custom-page #cta {
    padding: 5% 5%; }
  #custom-page #cta .container {
    width: 100%;
    max-width: 960px;
    margin: 0 auto; }
  #custom-page #cta .cta__heading {
    font-family: 'TANEGRET', sans-serif;
    font-size: var(--h2_size);
    line-height: 120%;
    text-align: center; }
    #custom-page #cta .cta__content {
      text-align: center;
      padding: 40px 0px; }
    #custom-page #cta .cta__button {
      text-align: center; }
  #custom-page #html {
    padding: 5% 5%; }
  #custom-page #html .container {
    width: 100%;
    max-width: 960px;
    margin: 0 auto; }
  #custom-page #html .html__heading {
    font-family: 'TANEGRET', sans-serif;
    font-size: var(--h2_size);
    line-height: 120%;
    text-align: center;
    padding-bottom: 20px;
    margin-bottom: 0px; }
    #custom-page #html .html__content {
      text-align: center;
      padding-bottom: 40px; }
  #custom-page #accordion_split.column-1 .accordion_split__wrap {
    width: 100%;
    max-width: 1023px;
    margin: 0 auto; }
    #custom-page #accordion_split.column-1 .accordion_split__heading {
      text-align: center; }
    #custom-page #accordion_split.column-1 .accordion_split__content {
      text-align: center; }
    #custom-page #accordion_split.column-1 .accordion_split__button {
      padding-top: 60px;
      text-align: center; }
  #custom-page #accordion_split.column-2 .accordion_split__wrap {
    width: 100%;
    max-width: 840px; }
  #custom-page #accordion_split {
    position: relative;
    z-index: 3;
    padding: 5% 5%; }
  #custom-page #accordion_split .accordion_split__heading {
    font-family: 'TANEGRET', sans-serif;
    font-size: var(--h2_size);
    line-height: 120%; }
    #custom-page #accordion_split .accordion_split__content {
      padding: 40px 0px; }
  #custom-page #accordion_split .service__link {
    padding: 20px 0px;
    text-transform: uppercase; }
  #custom-page #accordion_split .accordion-button, #custom-page #accordion_split .accordion-item, #custom-page #accordion_split .accordion-body {
    background-color: transparent !important; }
  #custom-page #testimonials {
    padding: 5% 20px; }
  #custom-page #testimonials .excimg .testimonial-slider__wrap {
    width: 100%;
    max-width: 1023px;
    margin: 0 auto;
    padding-left: 0px; }
  #custom-page #testimonials .testimonial-wrapper {
    max-width: 80%;
    margin: 0 auto; }
  #custom-page #testimonials .testimonial-section__heading {
    text-align: center;
    font-size: var(--h2_size);
    font-family: 'TANEGRET', sans-serif;
    padding-bottom: 40px;
    line-height: 120%; }
    #custom-page #testimonials .testimonial-section__content {
      text-align: center; }
  #custom-page #testimonials .testimonial-slider__item {
    text-align: center;
    padding: 0px; }
    #custom-page #testimonials .testimonial-slider__item .col-xl-6 {
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center; }
    #custom-page #testimonials .testimonial-slider__wrap {
      padding: 0px 0px 0px 5%; }
    #custom-page #testimonials .testimonial-slider__img {
      text-align: center;
      margin: 0 auto 0px auto;
      width: 100%; }
    #custom-page #testimonials .testimonial-slider__content {
      text-align: center;
      width: 100%;
      margin: 0px;
      padding: 0px 60px 40px 60px; }
    #custom-page #testimonials .testimonial-slider__heading {
      text-align: center;
      font-family: 'TANEGRET', sans-serif;
      font-size: var(--h4_size);
      padding-bottom: 40px;
      line-height: 110%; }
    #custom-page #testimonials .testimonial-slider__name {
      text-transform: uppercase;
      font-size: calc(var(--content_size) - 20%); }
  #custom-page #testimonials .slider-buttons {
    max-width: 49%;
    margin: 0;
    padding: 0px 0px 0px 10px;
    display: flex;
    justify-content: space-between; }
    #custom-page #testimonials .slider-buttons .previous i, #custom-page #testimonials .slider-buttons .next i {
      font-size: 40px; }
    #custom-page #testimonials .slider-buttons .previous {
      padding-right: 40px; }
  #custom-page #testimonials .slick-dots {
    position: relative !important; }
    #custom-page #testimonials .slick-dots li {
      list-style-type: none;
      margin: 0 25px;
      cursor: pointer;
      width: 10px;
      height: 10px;
      border: 1px solid #ccad67 !important;
      border-radius: 50%;
      -webkit-border-radius: 50%;
      -moz-border-radius: 50%;
      -ms-border-radius: 50%;
      -o-border-radius: 50%; }
    #custom-page #testimonials .slick-dots li:first-child {
      margin-left: 0; }
    #custom-page #testimonials .slick-dots li:last-child {
      margin-right: 0; }
    #custom-page #testimonials .slick-dots li.slick-active {
      background-color: #ccad67; }
    #custom-page #testimonials .slick-dots button {
      display: none !important; }
  #custom-page #media .image-cover {
    background-size: cover;
    background-position: center center;
    width: 100vw;
    height: 100vh; }
  #custom-page #media .video-cover {
    width: 100vw;
    height: 100vh;
    overflow: hidden; }
    #custom-page #media .video-cover video {
      object-fit: cover;
      width: 100vw;
      height: 100vh; }
  #custom-page #media .image-inline, #custom-page #media .video-inline {
    text-align: center;
    padding: 5%; }
  #custom-page #media .video-inline {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto; }
  #custom-page #wysiwyg {
    padding: 5%; }
  #custom-page #wysiwyg .container {
    width: 100%;
    max-width: 1250px;
    margin: 0 auto; }

body.postid-348 {
  /* FOOTER
----------------------------------------------------------- */ }
  body.postid-348 .gift-cards-list {
    padding-top: 60px; }
  body.postid-348 .gift-cards-list h3 {
    display: none; }
  body.postid-348 .gift-cards_form h3 {
    display: none; }
  body.postid-348 .gift-card-content-editor {
    display: none; }
  body.postid-348 .ywgc-main-form-preview-container {
    display: none; }

#footer-wrap {
  /* GENERIC STYLES
----------------------------------------------------------- */ }
  #footer-wrap #footer {
    background-color: transparent;
    background-image: url(../images/footer_bg.svg);
    background-repeat: repeat-x;
    margin-top: -30px;
    position: relative;
    z-index: 9;
    height: 95px; }
  #footer-wrap #footer .footer__logo {
    text-align: center; }
  #footer-wrap #copyright {
    padding: 20px 20px;
    font-size: calc(var(--content_size) - 20%);
    background: transparent;
    color: #ccad67;
    margin-top: -65px;
    position: relative;
    z-index: 10; }

.show_desktop {
  display: block; }

.show_mobile {
  display: none; }

.grecaptcha-badge {
  display: none !important; }

img {
  border: 0;
  max-width: 100%;
  height: auto;
  width: auto\9; }

.clear {
  clear: both !important; }

.page-title {
  color: #ccad67 !important; }

.alignleft {
  position: relative;
  float: left;
  padding-right: 40px; }

.alignright {
  position: relative;
  float: right;
  padding-left: 40px; }

p {
  margin: 0 0 25px; }

p:empty {
  display: none; }

legend {
  text-transform: uppercase; }

a {
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  text-decoration: none;
  outline: none;
  color: #ccad67; }
  a:hover {
    color: #ccad67; }

.section_wrap {
  padding: 40px 0px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2); }

.stick {
  position: sticky;
  top: 0px;
  z-index: -1;
  /* 404 page */ }

.error404 .wrapper {
  padding: 10% 0px 5% 0px; }
  .error404 h1 {
    text-align: center; }
  .error404 .entry-content {
    text-align: center;
    padding-top: 3%; }

body.page-template-default #page-wrap {
  width: 100%;
  max-width: 1920px;
  padding: 40px;
  margin: 0px auto; }

.reveal-text {
  visibility: hidden; }

.line {
  position: relative;
  overflow: hidden;
  display: flex;
  /* ANIMATION / TRANSITIONS
----------------------------------------------------------- */ }
  .line .word {
    position: relative;
    top: 10px; }

.reveal {
  position: relative;
  transform: translateY(0px);
  opacity: 0;
  transition: 1s all ease; }

.reveal.active {
  transform: translateY(0);
  opacity: 1; }

.reveal-top {
  animation: fadein 2s ease-in; }

.fadein {
  animation: fadein 2s ease-in; }

.fadeout {
  animation: fadeout 2s ease-out; }

.fadein-menu {
  animation: fadein 1s ease-in; }

.fadeout-menu {
  animation: fadeout 1s ease-out; }

.marquee__inner {
  animation: marquee 90s linear infinite;
  -webkit-animation: marquee 90s linear infinite; }
  .marquee__inner span {
    font-family: 'TANEGRET', sans-serif;
    font-style: normal;
    font-weight: 400;
    line-height: 100%;
    display: flex;
    align-items: center; }

.marquee {
  width: 100%;
  overflow: hidden;
  pointer-events: none; }
  .marquee__inner {
    width: fit-content;
    display: flex;
    position: relative;
    animation-play-state: running;
    opacity: 1;
    transition-duration: 0.4s;
    transform: translate3d(calc(-25% + 20vw), 0, 0);
    -webkit-transform: translate3d(calc(-25% + 20vw), 0, 0);
    -moz-transform: translate3d(calc(-25% + 20vw), 0, 0);
    -ms-transform: translate3d(calc(-25% + 20vw), 0, 0);
    -o-transform: translate3d(calc(-25% + 20vw), 0, 0);
    transition: opacity 0.1s;
    -webkit-transition: opacity 0.1s;
    -moz-transition: opacity 0.1s;
    -ms-transition: opacity 0.1s;
    -o-transition: opacity 0.1s; }
  .marquee__inner span {
    white-space: nowrap;
    padding: 0 1vw; }

@keyframes marquee {
  0% {
    transform: translate3d(calc(-25% + 20vw), 0, 0);
    -webkit-transform: translate3d(calc(-25% + 20vw), 0, 0);
    -moz-transform: translate3d(calc(-25% + 20vw), 0, 0);
    -ms-transform: translate3d(calc(-25% + 20vw), 0, 0);
    -o-transform: translate3d(calc(-25% + 20vw), 0, 0); }

  100% {
    transform: translate3d(calc(-50% + 20vw), 0, 0);
    -webkit-transform: translate3d(calc(-50% + 20vw), 0, 0);
    -moz-transform: translate3d(calc(-50% + 20vw), 0, 0);
    -ms-transform: translate3d(calc(-50% + 20vw), 0, 0);
    -o-transform: translate3d(calc(-50% + 20vw), 0, 0); } }

@keyframes -webkit-marquee {
  0% {
    transform: translate3d(calc(-25% + 20vw), 0, 0);
    -webkit-transform: translate3d(calc(-25% + 20vw), 0, 0);
    -moz-transform: translate3d(calc(-25% + 20vw), 0, 0);
    -ms-transform: translate3d(calc(-25% + 20vw), 0, 0);
    -o-transform: translate3d(calc(-25% + 20vw), 0, 0); }

  100% {
    transform: translate3d(calc(-50% + 20vw), 0, 0);
    -webkit-transform: translate3d(calc(-50% + 20vw), 0, 0);
    -moz-transform: translate3d(calc(-50% + 20vw), 0, 0);
    -ms-transform: translate3d(calc(-50% + 20vw), 0, 0);
    -o-transform: translate3d(calc(-50% + 20vw), 0, 0); } }

@keyframes fadein {
  /* Firefox < 16 */
  from {
    opacity: 0; }

  to {
    opacity: 1; } }

@-moz-keyframes fadein {
  /* Safari, Chrome and Opera > 12.1 */
  from {
    opacity: 0; }

  to {
    opacity: 1; } }

@-webkit-keyframes fadein {
  /* Internet Explorer */
  from {
    opacity: 0; }

  to {
    opacity: 1; } }

@-ms-keyframes fadein {
  /* Opera < 12.1 */
  from {
    opacity: 0; }

  to {
    opacity: 1; } }

@-o-keyframes fadein {
  from {
    opacity: 0; }

  to {
    opacity: 1; } }

@keyframes fadeout {
  /* Firefox < 16 */
  from {
    opacity: 1; }

  to {
    opacity: 0; } }

@-moz-keyframes fadeout {
  /* Safari, Chrome and Opera > 12.1 */
  from {
    opacity: 1; }

  to {
    opacity: 0; } }

@-webkit-keyframes fadeout {
  /* Internet Explorer */
  from {
    opacity: 1; }

  to {
    opacity: 0; } }

@-ms-keyframes fadeout {
  /* Opera < 12.1 */
  from {
    opacity: 1; }

  to {
    opacity: 0; } }

@-o-keyframes fadeout {
  from {
    opacity: 1; }

  to {
    opacity: 0; } }

@keyframes rotate {
  from {
    transform: rotate(0deg); }

  to {
    transform: rotate(360deg); } }

@keyframes float1 {
  0% {
    transform: rotate(0deg); }

  50% {
    transform: rotate(1deg); }

  100% {
    transform: rotate(0deg); } }

@keyframes float2 {
  0% {
    transform: rotate(0deg); }

  50% {
    transform: rotate(-1deg); }

  100% {
    transform: rotate(0deg); } }

@keyframes loader_flowers {
  0% {
    background-size: 110% 100%;
    opacity: 1; }

  100% {
    background-size: 250% 250%;
    opacity: 0; } }

@keyframes loader_bg {
  0% {
    background-color: #93261e;
    opacity: 1; }

  100% {
    background-color: transparent;
    opacity: 0; } }

@keyframes header_logo {
  0% {
    fill: #ccad67;
    opacity: 1; }

  80% {
    fill: #ccad67;
    opacity: 1; }

  100% {
    fill: #fcebda;
    opacity: 1; } }

@keyframes header_image {
  0% {
    transform: scale(2); }

  100% {
    transform: scale(1); } }

@keyframes menu_top_left {
  0% {
    transform: rotate(0deg); }

  50% {
    transform: rotate(1deg); }

  100% {
    transform: rotate(0deg); } }

@keyframes menu_top_right {
  0% {
    transform: rotate(0deg); }

  50% {
    transform: rotate(-1deg); }

  100% {
    transform: rotate(0deg); } }

@keyframes menu_btm_left {
  0% {
    transform: rotate(0deg); }

  50% {
    transform: rotate(1deg); }

  100% {
    transform: rotate(0deg); } }

@keyframes menu_btm_right {
  0% {
    transform: rotate(0deg); }

  50% {
    transform: rotate(-1deg); }

  100% {
    transform: rotate(0deg); } }

.zoom_menu {
  animation: zoom_menu 2s ease-out forwards; }

@keyframes zoom_menu {
  /* HEADINGS
----------------------------------------------------------- */
  0% {
    transform: scale(1);
    opacity: 1; }

  100% {
    transform: scale(5);
    opacity: 0; } }

h1, h2, h3, h4, h5, h6 {
  margin: 0 0 20px;
  color: #ccad67;
  line-height: 1.5em;
  font-weight: 400;
  font-family: 'TANEGRET', sans-serif; }

h1 a, h1 a:hover, h2 a, h2 a:hover, h3 a, h3 a:hover, h4 a, h4 a:hover, h5 a, h5 a:hover, h6 a, h6 a:hover {
  color: #ccad67;
  line-height: 1.5em;
  font-weight: 400;
  text-decoration: none; }

h1, .h1 {
  font-size: var(--h1_size); }

h2, .h2 {
  font-size: var(--h2_size); }

h3, .h3 {
  font-size: var(--h3_size); }

h4 {
  font-size: var(--h4_size); }

h5 {
  font-size: var(--h5_size); }

h6 {
  font-size: var(--h6_size);
  /* FORMS
----------------------------------------------------------- */ }

input[type=text], input[type=email], input[type=tel], input[type=number], input[type=password], textarea {
  background-color: #fcebda !important;
  border-radius: 0px !important;
  color: #ccad67 !important;
  font-size: var(--content_size) !important;
  border: none !important;
  border-bottom: 1px solid #ccad67 !important;
  padding: 5px 0px !important;
  /*
DEFINE VARIABLES
MAIN LAYOUT
HEADER
MENUS
CONTENT
FOOTER
GENERIC STYLES
ANIMATION
HEADINGS
FORMS
BUTTONS
LISTS
ACCORDION
WPFORMS
WOOCOMMERCE
BLOG
BOOTSTRAP
*/
  /* DEFINE VARIABLES
----------------------------------------------------------- */
  /* See variables.scss */
  /* MAIN LAYOUT
----------------------------------------------------------- */ }
  input[type=text]::placeholder, input[type=email]::placeholder, input[type=tel]::placeholder, input[type=number]::placeholder, input[type=password]::placeholder, textarea::placeholder {
    color: #ccad67 !important; }
  input[type=text]::placeholder, input[type=email]::placeholder, input[type=tel]::placeholder, input[type=number]::placeholder, input[type=password]::placeholder, textarea::placeholder {
    opacity: 1 !important; }
  input[type=text]:focus, input[type=email]:focus, input[type=tel]:focus, input[type=number]:focus, input[type=password]:focus, textarea:focus {
    outline: none !important;
    box-shadow: none !important; }

input[type=radio] {
  background: #fcebda !important;
  border-color: #ccad67 !important;
  border-width: 2px;
  width: 20px;
  height: 20px; }
  input[type=radio]:checked {
    background: #ccad67 !important;
    border-color: #ccad67 !important; }
  input[type=radio]:checked:after {
    content: "";
    background: #ccad67;
    position: relative;
    display: flex;
    border-radius: 50px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    border: 3px solid #fcebda; }
  input[type=radio]:focus {
    box-shadow: none !important;
    outline: none !important; }

input[type=checkbox] {
  background: #fcebda !important;
  border-color: #ccad67 !important;
  border-width: 2px;
  width: 20px;
  height: 20px; }
  input[type=checkbox]:checked {
    background: #fcebda !important;
    border-color: #ccad67 !important; }
  input[type=checkbox]:checked:after {
    content: "\f00c";
    font-family: 'Font Awesome 5 Pro';
    font-size: 14px;
    color: #ccad67;
    position: relative;
    display: flex;
    font-weight: 600;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: -6px; }
  input[type=checkbox]:focus {
    box-shadow: none !important;
    outline: none !important; }

.form-control {
  font-size: var(--content_size) !important; }
  .form-control:focus {
    box-shadow: none !important;
    outline: none !important; }

button[type=submit] {
  font-family: 'TANEGRET', sans-serif !important;
  font-size: var(--button_size) !important;
  line-height: var(--button_size) !important;
  padding: 20px 80px 8px 80px !important;
  text-align: center;
  display: inline-block;
  font-weight: 400;
  border-radius: 50px;
  text-transform: uppercase;
  background-image: none !important;
  text-shadow: none !important;
  box-shadow: none !important;
  /* Primary Button Style */
  background-color: transparent;
  border: 2px solid #ccad67;
  color: #ccad67;
  display: inline-block !important;
  background-image: none !important;
  text-shadow: none !important;
  box-shadow: none !important;
  /* Wocommerce Buttons */ }
  button[type=submit]:hover {
    background-color: #ccad67;
    border: 2px solid #ccad67;
    color: #fcebda;
    transition: 0.5s ease;
    /* Secondary Button Style */ }

select {
  background-color: #fcebda !important;
  border-radius: 0px !important;
  color: #ccad67 !important;
  font-size: var(--content_size) !important;
  border: none !important;
  border-bottom: 1px solid #ccad67 !important;
  padding: 5px 0px !important;
  /*
DEFINE VARIABLES
MAIN LAYOUT
HEADER
MENUS
CONTENT
FOOTER
GENERIC STYLES
ANIMATION
HEADINGS
FORMS
BUTTONS
LISTS
ACCORDION
WPFORMS
WOOCOMMERCE
BLOG
BOOTSTRAP
*/
  /* DEFINE VARIABLES
----------------------------------------------------------- */
  /* See variables.scss */
  /* MAIN LAYOUT
----------------------------------------------------------- */
  border-bottom: 1px solid #f3bbad !important;
  padding: 5px 0px !important; }
  select::placeholder {
    color: #ccad67 !important; }
  select option {
    font-size: var(--content_size) !important; }
  select optgroup {
    font-size: var(--content_size) !important; }
  select:focus {
    box-shadow: none !important;
    outline: none !important; }

.select2-container--default .select2-selection--single {
  background: none !important;
  border: none !important;
  border-radius: 0px !important; }

.select2-selection__rendered {
  background-color: #fcebda !important;
  border-radius: 0px !important;
  color: #ccad67 !important;
  font-size: var(--content_size) !important;
  border: none !important;
  border-bottom: 1px solid #ccad67 !important;
  padding: 5px 0px !important;
  /*
DEFINE VARIABLES
MAIN LAYOUT
HEADER
MENUS
CONTENT
FOOTER
GENERIC STYLES
ANIMATION
HEADINGS
FORMS
BUTTONS
LISTS
ACCORDION
WPFORMS
WOOCOMMERCE
BLOG
BOOTSTRAP
*/
  /* DEFINE VARIABLES
----------------------------------------------------------- */
  /* See variables.scss */
  /* MAIN LAYOUT
----------------------------------------------------------- */
  border-bottom: 1px solid #f3bbad !important;
  padding: 5px 0px !important; }
  .select2-selection__rendered::placeholder {
    color: #ccad67 !important; }
  .select2-selection__rendered:focus {
    box-shadow: none !important;
    outline: none !important; }

.select2-results__option, .select2-container--default .select2-results__option[data-selected=true], .select2-search--dropdown {
  background-color: #ccad67;
  /* BUTTONS
----------------------------------------------------------- */ }

.button, .readmore a, .btn-primary, .btn-default {
  font-family: 'TANEGRET', sans-serif !important;
  font-size: var(--button_size) !important;
  line-height: var(--button_size) !important;
  padding: 20px 80px 8px 80px !important;
  text-align: center;
  display: inline-block;
  font-weight: 400;
  border-radius: 50px;
  text-transform: uppercase;
  background-image: none !important;
  text-shadow: none !important;
  box-shadow: none !important;
  /* Primary Button Style */
  background-color: transparent;
  border: 2px solid #ccad67;
  color: #ccad67; }

.button:hover, .readmore a:hover, .btn-default:hover, .btn-primary:hover, .btn-primary:active, .btn-primary:focus, .btn-primary:focus-within, .btn-primary:focus-visible {
  font-family: 'TANEGRET', sans-serif !important;
  font-size: var(--button_size) !important;
  line-height: var(--button_size) !important;
  padding: 20px 80px 8px 80px !important;
  text-align: center;
  display: inline-block;
  font-weight: 400;
  border-radius: 50px;
  text-transform: uppercase;
  background-image: none !important;
  text-shadow: none !important;
  box-shadow: none !important;
  /* Primary Button Style */
  background-color: #ccad67;
  border: 2px solid #ccad67;
  color: #fcebda;
  transition: 0.5s ease;
  /* Secondary Button Style */
  text-decoration: none;
  outline: none; }

.btn-secondary {
  font-family: 'TANEGRET', sans-serif !important;
  font-size: var(--button_size) !important;
  line-height: var(--button_size) !important;
  padding: 20px 80px 8px 80px !important;
  text-align: center;
  display: inline-block;
  font-weight: 400;
  border-radius: 50px;
  text-transform: uppercase;
  background-image: none !important;
  text-shadow: none !important;
  box-shadow: none !important;
  /* Primary Button Style */
  background-color: transparent;
  border: 2px solid #79914b;
  color: #79914b; }

.btn-secondary:hover, .btn-secondary:active, .btn-secondary:focus, .btn-secondary:focus-within, .btn-secondary:focus-visible {
  font-family: 'TANEGRET', sans-serif !important;
  font-size: var(--button_size) !important;
  line-height: var(--button_size) !important;
  padding: 20px 80px 8px 80px !important;
  text-align: center;
  display: inline-block;
  font-weight: 400;
  border-radius: 50px;
  text-transform: uppercase;
  background-image: none !important;
  text-shadow: none !important;
  box-shadow: none !important;
  /* Primary Button Style */
  background-color: #79914b;
  border: 2px solid #79914b;
  color: #f3bbad;
  transition: 0.5s ease;
  /* WPForms Buttons */
  text-decoration: none;
  outline: none;
  /* LISTS
----------------------------------------------------------- */ }

.entry-content ol, .entry-content ul {
  margin-left: 20px; }

.entry-content ol li, .entry-content ul li {
  margin-bottom: 5px; }

ol, ul {
  margin-left: 20px;
  /* ACCORDION
----------------------------------------------------------- */ }

.accordion {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  border-bottom: 2px solid #ccad67; }

.accordion-item {
  border: none;
  border-radius: 0px;
  background-color: transparent; }

.accordion-header {
  font-size: var(--content_size) !important; }

.accordion-body {
  background-color: transparent;
  color: #ccad67;
  font-size: var(--content_size);
  padding: 15px 0px !important; }

.accordion-button {
  background-color: transparent;
  color: #ccad67;
  font-size: var(--content_size);
  border-top: 2px solid #ccad67;
  font-family: 'General Sans Regular', sans-serif;
  padding: 15px 0px !important; }

.accordion-button:not(.collapsed) {
  background-color: transparent;
  color: #ccad67;
  box-shadow: none !important; }

.accordion-button:focus {
  border: none;
  border-top: 2px solid #ccad67;
  box-shadow: none !important; }

.accordion-button.collapsed::after {
  background-image: none !important;
  font-family: 'Font Awesome 5 Pro';
  content: "\f107";
  font-size: 30px;
  font-weight: 300 !important;
  width: auto;
  height: auto; }

.accordion-button:not(.collapsed)::after {
  background-image: none !important;
  font-family: 'Font Awesome 5 Pro';
  content: "\f106";
  font-size: 30px;
  font-weight: 300 !important;
  width: auto;
  height: auto;
  transform: rotate(359deg); }

.accordion-item:first-of-type .accordion-button {
  border-top-left-radius: 0px;
  border-top-right-radius: 0px; }

.accordion-item:first-of-type > .accordion-header .accordion-button {
  border-top-left-radius: 0px;
  border-top-right-radius: 0px;
  /* WPFORMS
----------------------------------------------------------- */ }

.wpforms-container-full .wpforms-form input.wpforms-field-large, .wpforms-container-full .wpforms-form input.wpforms-field-medium, .wpforms-container-full .wpforms-form input.wpforms-field-small {
  background-color: #fcebda !important;
  border-radius: 0px !important;
  color: #ccad67 !important;
  font-size: var(--content_size) !important;
  border: none !important;
  border-bottom: 1px solid #ccad67 !important;
  padding: 5px 0px !important;
  /*
DEFINE VARIABLES
MAIN LAYOUT
HEADER
MENUS
CONTENT
FOOTER
GENERIC STYLES
ANIMATION
HEADINGS
FORMS
BUTTONS
LISTS
ACCORDION
WPFORMS
WOOCOMMERCE
BLOG
BOOTSTRAP
*/
  /* DEFINE VARIABLES
----------------------------------------------------------- */
  /* See variables.scss */
  /* MAIN LAYOUT
----------------------------------------------------------- */ }
  .wpforms-container-full .wpforms-form input.wpforms-field-large::placeholder, .wpforms-container-full .wpforms-form input.wpforms-field-medium::placeholder, .wpforms-container-full .wpforms-form input.wpforms-field-small::placeholder {
    color: #ccad67 !important; }
  .wpforms-container-full .wpforms-form textarea.wpforms-field-large, .wpforms-container-full .wpforms-form textarea.wpforms-field-medium, .wpforms-container-full .wpforms-form textarea.wpforms-field-small {
    background-color: #fcebda !important;
    border-radius: 0px !important;
    color: #ccad67 !important;
    font-size: var(--content_size) !important;
    border: none !important;
    border-bottom: 1px solid #ccad67 !important;
    padding: 5px 0px !important;
    /*
DEFINE VARIABLES
MAIN LAYOUT
HEADER
MENUS
CONTENT
FOOTER
GENERIC STYLES
ANIMATION
HEADINGS
FORMS
BUTTONS
LISTS
ACCORDION
WPFORMS
WOOCOMMERCE
BLOG
BOOTSTRAP
*/
    /* DEFINE VARIABLES
----------------------------------------------------------- */
    /* See variables.scss */
    /* MAIN LAYOUT
----------------------------------------------------------- */ }
  .wpforms-container-full .wpforms-form textarea.wpforms-field-large::placeholder, .wpforms-container-full .wpforms-form textarea.wpforms-field-medium::placeholder, .wpforms-container-full .wpforms-form textarea.wpforms-field-small::placeholder {
    color: #ccad67 !important; }
  .wpforms-container-full .wpforms-form input[type=submit], .wpforms-container-full .wpforms-form button[type=submit] {
    font-family: 'TANEGRET', sans-serif !important;
    font-size: var(--button_size) !important;
    line-height: var(--button_size) !important;
    padding: 20px 80px 8px 80px !important;
    text-align: center;
    display: inline-block;
    font-weight: 400;
    border-radius: 50px;
    text-transform: uppercase;
    background-image: none !important;
    text-shadow: none !important;
    box-shadow: none !important;
    /* Primary Button Style */
    background-color: transparent;
    border: 2px solid #ccad67;
    color: #ccad67;
    display: inline-block !important;
    background-image: none !important;
    text-shadow: none !important;
    box-shadow: none !important;
    /* Wocommerce Buttons */ }
  .wpforms-container-full .wpforms-form input[type=submit]:hover, .wpforms-container-full .wpforms-form button[type=submit]:hover {
    background-color: #ccad67;
    border: 2px solid #ccad67;
    color: #fcebda;
    transition: 0.5s ease;
    /* Secondary Button Style */ }
  .wpforms-container-full .wpforms-form .wpforms-field-label {
    font-size: var(--content_size) !important; }
  .wpforms-container-full .wpforms-form .wpforms-field-label-inline {
    font-size: var(--content_size) !important; }
  .wpforms-container-full .wpforms-form .wpforms-field-sublabel {
    font-size: 13px; }
  .wpforms-container-full .wpforms-form .wpforms-field-description {
    font-size: 13px; }
  .wpforms-container-full .wpforms-form label.wpforms-error {
    color: #900;
    font-size: 12px; }

div.wpforms-container-full .wpforms-form .wpforms-field.wpforms-field-select-style-modern .choices .choices__inner {
  background: none !important;
  border: none !important;
  border-radius: 0px !important;
  border-bottom: 2px solid #ccad67 !important; }
  div.wpforms-container-full .wpforms-form .wpforms-field.wpforms-field-select-style-modern .choices .choices__inner .choices__list--single {
    background: none !important; }
  div.wpforms-container-full .wpforms-form .wpforms-field.wpforms-field-select-style-modern .choices .choices__inner .choices__list--single .choices__item--selectable {
    color: #ccad67 !important;
    opacity: 1 !important;
    text-transform: uppercase;
    font-size: var(--font_24) !important; }
  div.wpforms-container-full .wpforms-form .wpforms-field.wpforms-field-select-style-modern .choices .choices__inner .choices__list--single .choices__item--selectable:focus {
    box-shadow: none !important;
    outline: none !important; }

div.wpforms-container-full .wpforms-form .wpforms-field.wpforms-field-select-style-modern .choices.is-open .choices__list--dropdown {
  border: none !important;
  box-shadow: none !important;
  outline: none !important;
  background-color: #fcebda !important;
  color: #ccad67 !important;
  font-size: var(--font_24) !important; }
  div.wpforms-container-full .wpforms-form .wpforms-field.wpforms-field-select-style-modern .choices.is-open .choices__list--dropdown .choices__item--selectable.is-highlighted {
    background-color: #ccad67 !important;
    color: #fcebda !important; }

div.wpforms-container-full .wpforms-form .wpforms-field.wpforms-field-select-style-modern .choices.is-open:before {
  border: none !important; }

div.wpforms-container-full .wpforms-form .wpforms-field.wpforms-field-select-style-modern .choices.is-focused .choices__inner, div.wpforms-container-full .wpforms-form .wpforms-field.wpforms-field-select-style-modern .choices.is-open .choices__inner, div.wpforms-container-full .wpforms-form .wpforms-field.wpforms-field-select-style-modern .choices.is-open .choices__list--dropdown {
  border: none !important;
  box-shadow: none !important;
  outline: none !important; }

.wpforms-confirmation-container-full, div[submit-success] > .wpforms-confirmation-container-full:not(.wpforms-redirection-message) {
  background: transparent !important;
  border: none !important; }

.wpforms-confirmation-container-full, div[submit-success] > .wpforms-confirmation-container-full {
  color: unset !important; }

.wpforms-submit-container {
  text-align: center; }
  .wpforms-submit-container button.button {
    font-family: 'TANEGRET', sans-serif !important;
    font-size: var(--button_size) !important;
    line-height: var(--button_size) !important;
    padding: 20px 80px 8px 80px !important;
    text-align: center;
    display: inline-block;
    font-weight: 400;
    border-radius: 50px;
    text-transform: uppercase;
    background-image: none !important;
    text-shadow: none !important;
    box-shadow: none !important;
    /* Primary Button Style */
    background-color: transparent;
    border: 2px solid #ccad67;
    color: #ccad67;
    display: inline-block !important;
    background-image: none !important;
    text-shadow: none !important;
    box-shadow: none !important;
    /* Wocommerce Buttons */
    background-color: transparent;
    border: 2px solid #ccad67;
    color: #ccad67; }
  .wpforms-submit-container button.button:hover {
    background-color: #ccad67;
    border: 2px solid #ccad67;
    color: #fcebda;
    transition: 0.5s ease;
    /* Secondary Button Style */ }
  .wpforms-submit-container button.button:hover {
    background-color: #ccad67;
    border: 2px solid #ccad67;
    color: #fcebda;
    transition: 0.5s ease;
    /* Secondary Button Style */ }

div.wpforms-container-full input[type=submit]:not(:hover):not(:active), div.wpforms-container-full button[type=submit]:not(:hover):not(:active), div.wpforms-container-full .wpforms-page-button:not(:hover):not(:active), .wp-core-ui div.wpforms-container-full input[type=submit]:not(:hover):not(:active), .wp-core-ui div.wpforms-container-full button[type=submit]:not(:hover):not(:active), .wp-core-ui div.wpforms-container-full .wpforms-page-button:not(:hover):not(:active) {
  background: transparent !important;
  color: #ccad67 !important; }

.wpforms-container-full .wpforms-form input[type=submit]:hover, .wpforms-container-full .wpforms-form button[type=submit]:hover, div.wpforms-container-full input[type=submit]:hover, div.wpforms-container-full input[type=submit]:active, div.wpforms-container-full button[type=submit]:hover, div.wpforms-container-full button[type=submit]:active, div.wpforms-container-full .wpforms-page-button:hover, div.wpforms-container-full .wpforms-page-button:active, .wp-core-ui div.wpforms-container-full input[type=submit]:hover, .wp-core-ui div.wpforms-container-full input[type=submit]:active, .wp-core-ui div.wpforms-container-full button[type=submit]:hover, .wp-core-ui div.wpforms-container-full button[type=submit]:active, .wp-core-ui div.wpforms-container-full .wpforms-page-button:hover, .wp-core-ui div.wpforms-container-full .wpforms-page-button:active {
  background: #ccad67 !important;
  color: #fcebda !important;
  /* WOOCOMMERCE
----------------------------------------------------------- */
  /* See woocommerce.scss */
  /* BLOG
----------------------------------------------------------- */ }

.blog-list__item {
  margin-bottom: 20px; }
  .blog-list__image {
    width: 100%; }
  .blog-list__wrap {
    padding: 10px; }
  .blog-list__title {
    margin-bottom: 10px;
    line-height: 120% !important; }
  .blog-list__title a {
    line-height: 120% !important; }
  .blog-list__excerpt {
    padding: 20px 0px 40px 0px; }
  .blog-list__link {
    text-align: left; }

.blog__title {
  margin-bottom: 0px;
  line-height: 120% !important;
  padding-bottom: 40px; }
  .blog__content {
    padding-bottom: 40px; }

body.blog #page-wrap {
  padding-top: 5%;
  padding-bottom: 5%; }

body.single-post #page-wrap {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 40px; }

#pagination {
  margin: 20px;
  text-align: center;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  /* BOOTSTRAP
----------------------------------------------------------- */ }

.pagination .page-link {
  color: #ccad67 !important;
  background-color: #fcebda !important;
  border: none !important; }
  .pagination .page-link:hover {
    color: #ccad67 !important;
    background-color: #fcebda !important;
    border: none !important; }
  .pagination .page-item.active .page-link {
    color: #ccad67 !important;
    background-color: #fcebda !important;
    border: none !important; }

.card {
  background-color: #fcebda !important;
  border: 1px solid #ccad67 !important; }
  .card .card-title {
    font-size: var(--h4_size) !important; }
  .card .card-text {
    font-size: var(--content_size) !important; }

table.table, table.table-striped {
  --bs-table-bg: transparent;
  --bs-table-accent-bg: transparent;
  --bs-table-striped-color: #ccad67 !important;
  --bs-table-striped-bg: #fcebda !important;
  --bs-table-active-color: #fcebda !important;
  --bs-table-active-bg: #ccad67 !important;
  --bs-table-hover-color: #fcebda !important;
  --bs-table-hover-bg: #ccad67 !important;
  --bs-table-bg-type: #fcebda !important;
  color: #ccad67;
  border-color: #ccad67; }

.table > :not(caption) > * > * {
  color: #ccad67;
  /* Generic */ }

.added_to_cart {
  margin-left: 20px !important; }

.stock {
  color: #f3bbad !important; }

.onsale {
  display: none; }

.woocommerce-error, .woocommerce-info, .woocommerce-message {
  border-top-color: #fcebda !important;
  background: #ccad67 !important;
  color: #fcebda !important;
  margin-top: 20px; }
  .woocommerce-error:before, .woocommerce-info:before, .woocommerce-message:before {
    color: #fcebda !important; }
  .woocommerce-error a, .woocommerce-info a, .woocommerce-message a {
    color: #fcebda !important; }

.checkout-heading {
  padding-top: 8% !important; }

.return-to-shop a.button {
  font-family: 'TANEGRET', sans-serif !important;
  font-size: var(--button_size) !important;
  line-height: var(--button_size) !important;
  padding: 20px 80px 8px 80px !important;
  text-align: center;
  display: inline-block;
  font-weight: 400;
  border-radius: 50px;
  text-transform: uppercase;
  background-image: none !important;
  text-shadow: none !important;
  box-shadow: none !important;
  /* Primary Button Style */
  background-color: transparent;
  border: 2px solid #ccad67;
  color: #ccad67;
  display: inline-block !important;
  background-image: none !important;
  text-shadow: none !important;
  box-shadow: none !important;
  zoom: 1;
  /* Input Fields */ }
  .return-to-shop a.button:hover {
    background-color: #ccad67;
    border: 2px solid #ccad67;
    color: #fcebda;
    transition: 0.5s ease;
    /* Secondary Button Style */ }

body.woocommerce-page .button, body.woocommerce-page a.button, body.woocommerce-page button.button {
  font-family: 'TANEGRET', sans-serif !important;
  font-size: var(--button_size) !important;
  line-height: var(--button_size) !important;
  padding: 20px 80px 8px 80px !important;
  text-align: center;
  display: inline-block;
  font-weight: 400;
  border-radius: 50px;
  text-transform: uppercase;
  background-image: none !important;
  text-shadow: none !important;
  box-shadow: none !important;
  /* Primary Button Style */
  background-color: transparent;
  border: 2px solid #ccad67;
  color: #ccad67;
  display: inline-block !important;
  background-image: none !important;
  text-shadow: none !important;
  box-shadow: none !important;
  zoom: 1;
  /* Input Fields */ }
  body.woocommerce-page .button:hover, body.woocommerce-page a.button:hover, body.woocommerce-page button.button:hover {
    background-color: #ccad67;
    border: 2px solid #ccad67;
    color: #fcebda;
    transition: 0.5s ease;
    /* Secondary Button Style */ }

.ywgc_enter_code {
  background-color: #fcebda;
  color: #ccad67; }
  .ywgc_enter_code:hover {
    background-color: #fcebda;
    color: #ccad67; }
  .ywgc_enter_code .ywgc_apply_gift_card_button {
    background-color: #fcebda !important;
    color: #ccad67 !important; }
  .ywgc_enter_code .ywgc_apply_gift_card_button:hover {
    background-color: #ccad67 !important;
    color: #fcebda !important; }

.woocommerce ul.products li.product .product__image img {
  margin-bottom: 10px; }
  .woocommerce ul.products li.product h2.woocommerce-loop-product__title {
    font-size: var(--content_size);
    padding: 0px;
    margin-bottom: 10px; }
  .woocommerce ul.products li.product .price {
    margin-bottom: 10px;
    color: #ccad67 !important; }
  .woocommerce ul.products li.product .price bdi {
    color: #ccad67 !important; }
  .woocommerce ul.products li.product .price .woocommerce-Price-amount.amount {
    color: #ccad67 !important; }
  .woocommerce ul.products li.product .price .woocommerce-Price-currencySymbol {
    color: #ccad67 !important; }
  .woocommerce ul.products li.product a.button {
    margin-top: 5px; }

.woocommerce .quantity {
  /*
    .bootstrap-touchspin-down.btn-primary,
    .bootstrap-touchspin-up.btn-primary {
        font-size: var(--content_size) !important;
        line-height: var(--content_size) !important;
        padding: 10px 5px !important;
        border-radius: 0px !important;
        background-color: $primary !important;
        border: none !important;
        color: $secondary !important;
    }
    input[type=number] {
        font-size: var(--content_size) !important;
        line-height: var(--content_size) !important;
        border-bottom: 0px !important;
        padding: 5px 5px !important;
        text-align: center !important;
        width: 40px;
        -moz-appearance: textfield;
        -webkit-appearance: none;
    }
    input[type=number]::-webkit-outer-spin-button,
    input[type=number]::-webkit-inner-spin-button {
        -webkit-appearance: none;
        margin: 0;
    }
        */
  margin-right: 20px !important;
  border: 2px solid #ccad67;
  border-radius: 50px;
  width: 200px;
  /* SHOP */ }
  .woocommerce .quantity .qty {
    width: 100px !important; }
  .woocommerce .quantity button {
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 10px 0px;
    margin: 10px 0px; }
  .woocommerce .quantity .input-group {
    position: relative;
    display: flex;
    flex-direction: row;
    margin: 0 auto;
    flex-wrap: nowrap;
    height: 65px; }
  .woocommerce .quantity .input-group-prepend {
    margin-left: 10px; }
  .woocommerce .quantity .input-group-append {
    margin-right: 10px; }
  .woocommerce .quantity .bootstrap-touchspin-down.btn-primary, .woocommerce .quantity .bootstrap-touchspin-up.btn-primary {
    background-color: transparent !important;
    border: none !important;
    font-size: calc(var(--button_size) + 20%) !important;
    width: auto !important;
    color: #ccad67 !important;
    padding: 0px 10px !important; }
  .woocommerce .quantity .input-text {
    font-family: 'TANEGRET', sans-serif !important;
    font-size: var(--button_size) !important;
    color: #ccad67 !important;
    padding-top: 15px !important;
    border-bottom: none !important;
    background: transparent !important; }

body.woocommerce-shop ul.products li.product a.add_to_cart_button, body.woocommerce-shop ul.products li.product .button {
  font-family: 'TANEGRET', sans-serif !important;
  font-size: var(--button_size) !important;
  line-height: var(--button_size) !important;
  padding: 20px 80px 8px 80px !important;
  text-align: center;
  display: inline-block;
  font-weight: 400;
  border-radius: 50px;
  text-transform: uppercase;
  background-image: none !important;
  text-shadow: none !important;
  box-shadow: none !important;
  /* Primary Button Style */
  background-color: transparent;
  border: 2px solid #ccad67;
  color: #ccad67;
  display: inline-block !important;
  background-image: none !important;
  text-shadow: none !important;
  box-shadow: none !important;
  zoom: 1;
  /* Input Fields */ }
  body.woocommerce-shop ul.products li.product a.add_to_cart_button:hover, body.woocommerce-shop ul.products li.product .button:hover {
    background-color: #ccad67;
    border: 2px solid #ccad67;
    color: #fcebda;
    transition: 0.5s ease;
    /* Secondary Button Style */ }

body.woocommerce-cart, body.woocommerce-checkout {
  /* Archive */ }
  body.woocommerce-cart #wrap, body.woocommerce-checkout #wrap {
    padding: 40px !important; }
  body.woocommerce-cart #page-wrap, body.woocommerce-checkout #page-wrap {
    width: 100%;
    max-width: 80%;
    margin: 0 auto;
    padding: 0px; }
  body.woocommerce-cart .checkout-heading, body.woocommerce-checkout .checkout-heading {
    text-align: center;
    padding: 0px 0px 40px 0px; }

body.post-type-archive-product, body.tax-product_cat, body.tax-product_tag {
  /* SINGLE PRODUCT */ }
  body.post-type-archive-product #wrap, body.tax-product_cat #wrap, body.tax-product_tag #wrap {
    width: 100%;
    max-width: 80%;
    margin: 0 auto;
    padding: 40px; }
  body.post-type-archive-product .woocommerce-ordering, body.tax-product_cat .woocommerce-ordering, body.tax-product_tag .woocommerce-ordering, body.post-type-archive-product .woocommerce-result-count, body.tax-product_cat .woocommerce-result-count, body.tax-product_tag .woocommerce-result-count {
    display: none; }
  body.post-type-archive-product .woocommerce-loop-product__title, body.tax-product_cat .woocommerce-loop-product__title, body.tax-product_tag .woocommerce-loop-product__title {
    font-size: var(--font_36) !important;
    margin-bottom: 0px !important; }
  body.post-type-archive-product .page-title, body.tax-product_cat .page-title, body.tax-product_tag .page-title {
    font-size: var(--font_128);
    line-height: 150px;
    text-transform: uppercase;
    text-align: center;
    padding-top: 140px; }
  body.post-type-archive-product ul.products li.product a.add_to_cart_button, body.tax-product_cat ul.products li.product a.add_to_cart_button, body.tax-product_tag ul.products li.product a.add_to_cart_button, body.post-type-archive-product ul.products li.product .button, body.tax-product_cat ul.products li.product .button, body.tax-product_tag ul.products li.product .button {
    padding-left: 20px !important;
    padding-right: 20px !important;
    display: block !important; }
  body.post-type-archive-product select.orderby, body.tax-product_cat select.orderby, body.tax-product_tag select.orderby {
    border: 1px solid #f3bbad !important;
    padding: 5px 10px !important; }

body.single-product #wrap {
  width: 100%;
  max-width: 80%;
  margin: 0 auto;
  padding: 140px 40px 40px 40px; }
  body.single-product div.product div.images, body.single-product div.summary {
    float: none !important;
    width: 100% !important; }
  body.single-product .summary {
    padding: 0px 40px; }
  body.single-product .summary h1.product_title {
    font-size: var(--h3_size); }
  body.single-product .price {
    color: #ccad67 !important; }
  body.single-product .price bdi {
    color: #ccad67 !important; }
  body.single-product .price .woocommerce-Price-amount.amount {
    color: #ccad67 !important; }
  body.single-product .price .woocommerce-Price-currencySymbol {
    color: #ccad67 !important; }
  body.single-product button.single_add_to_cart_button, body.single-product button.button {
    font-family: 'TANEGRET', sans-serif !important;
    font-size: var(--button_size) !important;
    line-height: var(--button_size) !important;
    padding: 20px 80px 8px 80px !important;
    text-align: center;
    display: inline-block;
    font-weight: 400;
    border-radius: 50px;
    text-transform: uppercase;
    background-image: none !important;
    text-shadow: none !important;
    box-shadow: none !important;
    /* Primary Button Style */
    background-color: transparent;
    border: 2px solid #ccad67;
    color: #ccad67;
    display: inline-block !important;
    background-image: none !important;
    text-shadow: none !important;
    box-shadow: none !important;
    zoom: 1; }
  body.single-product button.single_add_to_cart_button:hover, body.single-product button.button:hover {
    background-color: #ccad67;
    border: 2px solid #ccad67;
    color: #fcebda;
    transition: 0.5s ease;
    /* Secondary Button Style */ }
  body.single-product ul.tabs {
    display: none; }
  body.single-product .variations .form-control {
    margin-bottom: 20px; }
  body.single-product .product_meta {
    display: none; }
  body.single-product .gift-cards-list button {
    background: #fcebda;
    padding: 0px 40px;
    border-radius: 50px;
    border: 2px solid #ccad67;
    color: #ccad67; }
  body.single-product .gift-cards-list button.selected_button {
    background: #ccad67;
    padding: 0px 40px;
    border-radius: 50px;
    border: 2px solid #ccad67;
    color: #fcebda; }

.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button.alt {
  font-family: 'TANEGRET', sans-serif !important;
  font-size: var(--button_size) !important;
  line-height: var(--button_size) !important;
  padding: 20px 80px 8px 80px !important;
  text-align: center;
  display: inline-block;
  font-weight: 400;
  border-radius: 50px;
  text-transform: uppercase;
  background-image: none !important;
  text-shadow: none !important;
  box-shadow: none !important;
  /* Primary Button Style */
  background-color: transparent;
  border: 2px solid #ccad67;
  color: #ccad67;
  display: inline-block !important;
  background-image: none !important;
  text-shadow: none !important;
  box-shadow: none !important;
  zoom: 1;
  /* CART */ }
  .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button.alt:hover {
    background-color: #ccad67;
    border: 2px solid #ccad67;
    color: #fcebda;
    transition: 0.5s ease;
    /* Secondary Button Style */ }

body.woocommerce-cart {
  /* CHECKOUT */ }
  body.woocommerce-cart #content {
    padding-bottom: 5%; }
  body.woocommerce-cart .woocommerce-cart-form {
    position: relative;
    float: left;
    width: 65%; }
  body.woocommerce-cart .table {
    --bs-table-striped-color: #ccad67 !important; }
  body.woocommerce-cart .table-striped > tbody > tr:nth-of-type(odd) > * {
    --bs-table-accent-bg: transparent !important; }
  body.woocommerce-cart table.shop_table {
    border: none !important; }
  body.woocommerce-cart table.shop_table thead th, body.woocommerce-cart table.shop_table tbody td {
    color: #ccad67; }
  body.woocommerce-cart table.shop_table th {
    text-transform: uppercase; }
  body.woocommerce-cart table.shop_table td.actions {
    border-bottom: none !important;
    padding: 10px 0px !important; }
  body.woocommerce-cart table.shop_table thead .product-remove {
    width: 20px;
    text-align: center; }
  body.woocommerce-cart table.shop_table thead .product-price {
    width: 15%;
    text-align: center; }
  body.woocommerce-cart table.shop_table thead .product-quantity {
    width: 15%;
    text-align: center; }
  body.woocommerce-cart table.shop_table thead .product-subtotal {
    width: 15%;
    text-align: center; }
  body.woocommerce-cart table.shop_table tbody .product-remove {
    width: 20px;
    text-align: center; }
  body.woocommerce-cart table.shop_table tbody .product-thumbnail, body.woocommerce-cart table.shop_table tbody .product-thumbnail img {
    width: 150px !important; }
  body.woocommerce-cart table.shop_table tbody .product-price {
    width: 15%;
    text-align: center; }
  body.woocommerce-cart table.shop_table tbody .product-subtotal {
    width: 15%;
    text-align: center; }
  body.woocommerce-cart table.shop_table tbody .product-remove a {
    color: #ccad67 !important; }
  body.woocommerce-cart .product-quantity .quantity {
    width: 150px;
    margin: 0px auto !important;
    border: 2px solid #ccad67;
    border-radius: 50px; }
  body.woocommerce-cart .product-quantity .quantity .input-group {
    position: relative;
    display: flex;
    flex-direction: row;
    max-width: 100px;
    margin: 0 auto;
    flex-wrap: nowrap; }
  body.woocommerce-cart .product-quantity .quantity input[type=number] {
    width: auto !important;
    margin: 0px; }
  body.woocommerce-cart .product-quantity .quantity .bootstrap-touchspin-down.btn-primary, body.woocommerce-cart .product-quantity .quantity .bootstrap-touchspin-up.btn-primary {
    background-color: transparent !important;
    border: none !important;
    font-size: calc(var(--content_size) + 20%) !important;
    width: auto !important; }
  body.woocommerce-cart .product-quantity input.qty {
    border-bottom: none !important; }
  body.woocommerce-cart .coupon {
    width: 50%; }
  body.woocommerce-cart .coupon .input-text {
    width: 55% !important; }
  body.woocommerce-cart .cart-collaterals h2 {
    font-size: var(--h4_size) !important;
    display: none; }
  body.woocommerce-cart .cart-collaterals .cart-subtotal th, body.woocommerce-cart .cart-collaterals .cart-subtotal td {
    color: #ccad67 !important; }
  body.woocommerce-cart .cart-collaterals .order-total th, body.woocommerce-cart .cart-collaterals .order-total td {
    color: #ccad67 !important;
    border-top: none !important; }
  body.woocommerce-cart .cart-collaterals .cart_totals {
    width: 100%; }
  body.woocommerce-cart .cart-collaterals {
    position: relative;
    float: right;
    width: 30%; }
  body.woocommerce-cart .cart-collaterals .cart_totals {
    background: #ccad67 !important;
    color: #fcebda !important;
    padding: 0px 20px; }
  body.woocommerce-cart .cart-collaterals .cart_totals th, body.woocommerce-cart .cart-collaterals .cart_totals td, body.woocommerce-cart .cart-collaterals .cart_totals h2, body.woocommerce-cart .cart-collaterals .cart_totals p {
    color: #fcebda !important; }
  body.woocommerce-cart .cart-collaterals .table.table {
    --bs-table-striped-bg: transparent !important; }
  body.woocommerce-cart .wc-proceed-to-checkout {
    text-align: center; }
  body.woocommerce-cart .wc-proceed-to-checkout a.checkout-button, body.woocommerce-cart .wc-proceed-to-checkout a.button {
    font-family: 'TANEGRET', sans-serif !important;
    font-size: var(--button_size) !important;
    line-height: var(--button_size) !important;
    padding: 20px 80px 8px 80px !important;
    text-align: center;
    display: inline-block;
    font-weight: 400;
    border-radius: 50px;
    text-transform: uppercase;
    background-image: none !important;
    text-shadow: none !important;
    box-shadow: none !important;
    /* Primary Button Style */
    background-color: transparent;
    border: 2px solid #ccad67;
    color: #ccad67;
    display: inline-block !important;
    background-image: none !important;
    text-shadow: none !important;
    box-shadow: none !important;
    zoom: 1;
    background: #fcebda !important;
    color: #ccad67 !important; }
  body.woocommerce-cart .wc-proceed-to-checkout a.checkout-button:hover, body.woocommerce-cart .wc-proceed-to-checkout a.button:hover {
    background-color: #ccad67;
    border: 2px solid #ccad67;
    color: #fcebda;
    transition: 0.5s ease;
    /* Secondary Button Style */ }
  body.woocommerce-cart .cart_totals table.table, body.woocommerce-cart .cart_totals table.table-striped {
    --bs-table-bg-type: #ccad67 !important; }
  body.woocommerce-cart .coupon .button, body.woocommerce-cart .actions .button {
    padding: 8px 20px 0px 20px !important;
    font-size: calc(var(--button_size) - 70%) !important; }
  body.woocommerce-cart .woocommerce .quantity .input-group {
    height: 45px !important;
    margin: 0px;
    width: 100%;
    max-width: 100%; }
  body.woocommerce-cart .woocommerce .quantity .bootstrap-touchspin-down.btn-primary, body.woocommerce-cart .woocommerce .quantity .bootstrap-touchspin-up.btn-primary {
    font-size: calc(var(--button_size) - 50%) !important; }
  body.woocommerce-cart .woocommerce .quantity .input-text {
    height: 45px;
    font-size: var(--content_size) !important;
    font-family: 'General Sans Regular', sans-serif !important;
    padding: 0px 0px !important; }
  body.woocommerce-cart .wc-proceed-to-checkout a.button {
    padding: 20px 20px 8px 20px !important;
    display: block !important; }

body.woocommerce-checkout {
  /* MY ACCOUNT */ }
  body.woocommerce-checkout .woocommerce {
    padding-bottom: 5%; }
  body.woocommerce-checkout .woocommerce-additional-fields h3 {
    display: none; }
  body.woocommerce-checkout form.checkout {
    clear: both;
    padding-bottom: 60px; }
  body.woocommerce-checkout #customer_details {
    width: 60%;
    position: relative;
    float: left;
    display: flex;
    flex-direction: column; }
  body.woocommerce-checkout #customer_details .col-1, body.woocommerce-checkout #customer_details .col-2 {
    width: 100%; }
  body.woocommerce-checkout #order_review {
    width: 35%;
    position: relative;
    /*
        margin-left: 5%;
        width: 40%;
        display: flex;
        flex-direction: column;
        */
    float: right;
    background: #ccad67 !important;
    color: #fcebda !important; }
  body.woocommerce-checkout #ship-to-different-address, body.woocommerce-checkout #ship-to-different-address label span {
    font-family: var(--font-body) !important;
    font-size: var(--content_size) !important; }
  body.woocommerce-checkout h3 {
    font-size: 2rem; }
  body.woocommerce-checkout h3#order_review_heading {
    display: none !important; }
  body.woocommerce-checkout .table-responsive #your_order_heading {
    display: none !important; }
  body.woocommerce-checkout #your_order_heading {
    color: #fcebda !important;
    padding-left: 20px; }
  body.woocommerce-checkout #add_payment_method #payment, body.woocommerce-checkout .woocommerce-cart #payment, body.woocommerce-checkout .woocommerce-checkout #payment {
    background: #ccad67 !important; }
  body.woocommerce-checkout .woocommerce form .form-row label {
    display: none; }
  body.woocommerce-checkout .woocommerce-input-wrapper, body.woocommerce-checkout input.form-control, body.woocommerce-checkout .select2-selection__rendered, body.woocommerce-checkout p.form-row {
    height: 50px !important; }
  body.woocommerce-checkout input.form-control {
    padding: 5px 0px !important;
    margin: 0px !important;
    line-height: 100% !important; }
  body.woocommerce-checkout p.form-row {
    margin: 0px !important;
    padding: 0px !important; }
  body.woocommerce-checkout .select2-selection__rendered {
    margin: 0px !important;
    padding: 5px 0px !important;
    line-height: 36px !important; }
  body.woocommerce-checkout .select2-results__option, body.woocommerce-checkout .select2-container--default .select2-results__option[data-selected=true], body.woocommerce-checkout .select2-search--dropdown {
    background-color: #fcebda !important;
    color: #ccad67 !important; }
  body.woocommerce-checkout #billing_first_name_field, body.woocommerce-checkout #billing_address_1_field, body.woocommerce-checkout #billing_city_field, body.woocommerce-checkout #billing_postcode_field, body.woocommerce-checkout #billing_email_field, body.woocommerce-checkout #shipping_first_name_field, body.woocommerce-checkout #shipping_address_1_field, body.woocommerce-checkout #shipping_city_field, body.woocommerce-checkout #shipping_postcode_field, body.woocommerce-checkout #shipping_email_field, body.woocommerce-checkout .form-row-first {
    clear: none;
    float: left;
    width: 47%; }
  body.woocommerce-checkout #billing_last_name_field, body.woocommerce-checkout #billing_address_2_field, body.woocommerce-checkout #billing_state_field, body.woocommerce-checkout #billing_country_field, body.woocommerce-checkout #billing_phone_field, body.woocommerce-checkout #shipping_last_name_field, body.woocommerce-checkout #shipping_address_2_field, body.woocommerce-checkout #shipping_state_field, body.woocommerce-checkout #shipping_country_field, body.woocommerce-checkout #shipping_phone_field, body.woocommerce-checkout .form-row-last {
    clear: none;
    float: right;
    width: 47%; }
  body.woocommerce-checkout .woocommerce-shipping-fields {
    padding-top: 20px;
    padding-bottom: 40px; }
  body.woocommerce-checkout .woocommerce-shipping-fields input[type=checkbox]:checked:after {
    display: none; }
  body.woocommerce-checkout #payment .woocommerce-info {
    line-height: 120%; }
  body.woocommerce-checkout #add_payment_method #payment ul.payment_methods, body.woocommerce-checkout .woocommerce-cart #payment ul.payment_methods, body.woocommerce-checkout .woocommerce-checkout #payment ul.payment_methods {
    border-bottom: none !important; }
  body.woocommerce-checkout button#place_order {
    float: none !important;
    margin: 0 auto !important;
    display: flex !important;
    font-family: 'TANEGRET', sans-serif !important;
    font-size: var(--button_size) !important;
    line-height: var(--button_size) !important;
    padding: 20px 80px 8px 80px !important;
    text-align: center;
    display: inline-block;
    font-weight: 400;
    border-radius: 50px;
    text-transform: uppercase;
    background-image: none !important;
    text-shadow: none !important;
    box-shadow: none !important;
    /* Primary Button Style */
    background-color: transparent;
    border: 2px solid #ccad67;
    color: #ccad67;
    display: inline-block !important;
    background-image: none !important;
    text-shadow: none !important;
    box-shadow: none !important;
    zoom: 1;
    background: #fcebda !important;
    color: #ccad67 !important; }
  body.woocommerce-checkout button#place_order:hover {
    background-color: #ccad67;
    border: 2px solid #ccad67;
    color: #fcebda;
    transition: 0.5s ease;
    /* Secondary Button Style */ }
  body.woocommerce-checkout .woocommerce-privacy-policy-text a {
    color: #fcebda !important; }

body.woocommerce-account .woocommerce {
  display: flex;
  flex-direction: row;
  padding: 5vw 0px;
  width: 100%;
  max-width: 1320px;
  margin: 0 auto; }
  body.woocommerce-account .woocommerce-MyAccount-navigation {
    width: 30%; }
  body.woocommerce-account .woocommerce-MyAccount-navigation li {
    list-style: none;
    border-bottom: 1px solid #f3bbad;
    padding: 3px 10px 10px 0px; }
  body.woocommerce-account .woocommerce-MyAccount-navigation li:last-child {
    border-bottom: none; }
  body.woocommerce-account .woocommerce-MyAccount-content {
    width: 70%;
    padding: 0px 40px; }
  body.woocommerce-account .woocommerce-MyAccount-content .col-1, body.woocommerce-account .woocommerce-MyAccount-content .col-2 {
    width: 100%; }
  body.woocommerce-account .woocommerce-MyAccount-content h3 {
    font-size: var(--h4_size) !important; }

body.woocommerce-account:not(.logged-in) .woocommerce {
  display: flex;
  flex-direction: column !important; }
  body.woocommerce-account:not(.logged-in) h2 {
    text-align: center; }
  body.woocommerce-account:not(.logged-in) .woocommerce-form-login.login {
    padding-top: 20px;
    width: 100%;
    max-width: 800px;
    margin: 0 auto; }
  body.woocommerce-account:not(.logged-in) .woocommerce-form-login.login .woocommerce-form-login__submit {
    width: 40%;
    float: right; }

.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit.disabled, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit:disabled, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit:disabled[disabled], .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button.disabled, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button:disabled, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button:disabled[disabled], .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button.disabled, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button:disabled, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button:disabled[disabled], .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button.disabled, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button:disabled, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button:disabled[disabled], :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce #respond input#submit.disabled, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce #respond input#submit:disabled, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce #respond input#submit:disabled[disabled], :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce a.button.disabled, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce a.button:disabled, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce a.button:disabled[disabled], :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce button.button.disabled, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce button.button:disabled, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce button.button:disabled[disabled], :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce input.button.disabled, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce input.button:disabled, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce input.button:disabled[disabled] {
  color: #ccad67;
  /*xxl applies to x-large devices (large desktops, less than 1400px) */ }

@media (max-width: 1400px) {
  /* xl applies to large devices (desktops, less than 1200px) */
    :root {
      --xl: 100%;
      --lg: 80%;
      --md: 35%;
      --sm: 15%; }
    body.woocommerce-cart .woocommerce-cart-form {
      width: 100%; }
      body.woocommerce-cart .cart-collaterals {
        width: 100%; }
      body.woocommerce-cart .cart-collaterals h2 {
        display: none; }
    #home-page #contact-us, #about-page #contact-us {
      padding-bottom: 40px; }
      #home-page #contact-us .col-xl-6, #about-page #contact-us .col-xl-6 {
        padding: 40px 0px;
        width: 100%; }
      #home-page #contact-us .col-xl-6:first-child, #about-page #contact-us .col-xl-6:first-child {
        border-right: none !important; }
      #home-page #contact-us .shape__inner, #about-page #contact-us .shape__inner {
        padding: 0px 40px; }
    .btn-primary, .btn-secondary {
      padding: 20px 40px 8px 40px !important; }
    #about-page #about .container {
      padding: 5% 20px !important; }
      #about-page #about .about__outer {
        zoom: 0.8 !important; }
        #about-page #about .about__wrap {
          padding: 40px !important; } }

@media (max-width: 1200px) {
  /* lg applies to medium devices (tablets, less than 992px) */
    :root {
      --xl: 120%;
      --lg: 100%;
      --md: 60%;
      --sm: 20%; }
    body.woocommerce-cart #page-wrap, body.woocommerce-checkout #page-wrap {
      max-width: 100%; }
    body.post-type-archive-product #wrap, body.tax-product_cat #wrap, body.tax-product_tag #wrap {
      max-width: 100%; }
    body.single-product #wrap {
      max-width: 100%; }
      body.single-product .summary {
        padding: 0px; }
    #nav .mainNavigation .nav__menu {
      margin-top: 17% !important;
      height: 70vh; }
      #nav .mainNavigation li a {
        font-size: 4rem !important; }
      #nav .menu__top-left {
        left: -70%; }
      #nav .menu__top-right {
        right: -70%; }
      #nav .menu__btm-left {
        left: -70%; }
      #nav .menu__btm-right {
        right: -70%; }
      #nav .nav-link:after {
        bottom: 4px; }
    #home-page #cafe_menu .cafemenu__wrap {
      padding: 10% 40px; }
      #home-page #book .book__left {
        top: -5vh;
        left: -24vw; }
        #home-page #book .book__left img {
          zoom: 0.6; }
        #home-page #book .book__right {
          top: -5vh;
          right: -24vw; }
        #home-page #book .book__right img {
          zoom: 0.6; }
        #home-page #book .book__booking {
          padding: 0px; }
      #home-page #events .event-slider__item {
        padding: 40px; }
        #home-page #events .event-slider__wrap {
          padding: 5% 5% 5% 0%; }
        #home-page #events .event-slider__outer {
          zoom: 0.8; }
      #home-page #gift .gift__wrap {
        padding: 40px 50px; }
        #home-page #gift .gift__embed .gift-cards_form .gift_card_template_button {
          flex-direction: column;
          align-items: center; }
        #home-page #gift .gift__embed .gift-cards_form .gift_card_template_button .quantity .input-text {
          text-align: center; }
        #home-page #gift .gift__embed .quantity {
          margin-bottom: 10px; }
      #home-page #about .about__wrap {
        padding: 5% 0% 5% 5%; }
        #home-page #about .about__outer {
          zoom: 0.8; }
    #about-page #about .col-xl-6 {
      width: 100%; }
      #about-page #about .about__outer {
        zoom: 0.6 !important; }
        #about-page #about .about__heading {
          text-align: center;
          padding-top: 20px; }
        #about-page #about .about__content {
          text-align: center;
          margin: 0 auto; } }

@media (max-width: 991.98px) {
  /* md applies to small devices (landscape phones, less than 768px) */
    #nav {
      z-index: 999999; }
    #home-page #header .header__logo svg {
      width: 70%; }
      #home-page #header .zoom {
        animation: header_image 1.5s ease-out forwards;
        animation-delay: 0s; }
    #about-page #header .header__wrap {
      width: 95%; }
      #about-page #header .shape__inner {
        padding: 0px 40px;
        top: 40px; }
        #about-page #header .shape__bg {
          display: flex;
          flex-direction: column;
          align-items: center; }
          #about-page #header .shape__bg svg {
            width: 100%; } }

@media (max-width: 767.98px) {
  :root {
    --xl: 300%;
    --lg: 100%;
    --md: 60%;
    --sm: 10%; }

  .show_desktop {
    display: none !important; }

  .show_mobile {
    display: block !important; }

  #home-page #header {
    height: 70vh !important; }
    #home-page #header .header__logo svg {
      width: 70%; }
    #home-page #cafe_menu .cafemenu__wrap {
      border-right: none; }
    #home-page #book .book__left {
      top: -5vh;
      left: -43vw; }
      #home-page #book .book__left img {
        zoom: 0.6; }
      #home-page #book .book__right {
        top: -5vh;
        right: -43vw; }
      #home-page #book .book__right img {
        zoom: 0.6; }
      #home-page #book .book__booking {
        padding: 0px; }
    #home-page #events .event-slider__item .row {
      flex-direction: column-reverse; }
      #home-page #events .event-slider__outer {
        zoom: 0.6; }
    #home-page #gift .gift__wrap {
      padding: 40px 50px;
      max-width: 100%; }
      #home-page #gift .gift__heading br {
        display: none; }
    #home-page #gift .gift_card_template_button {
      margin-top: 20px; }
    #home-page #gift .row {
      display: flex;
      flex-direction: column-reverse; }

  #about-page #header .shape__inner {
    padding: 0px 40px;
    top: 13% !important; }
    #about-page #header .shape__subheading {
      padding: 28px 0px 20px 0px; }
    #about-page #header .shape__heading {
      padding-top: 10px; }
    #about-page #header .shape__content {
      padding-top: 0px; }

  #contact-page #contact {
    height: 100%;
    min-height: 100%; }
    #contact-page #contact .bgimg {
      min-height: 50vh; }
    #contact-page #contact .contact__wrap {
      padding: 40px; }

  #nav .mainNavigation .nav__menu {
    margin-top: 17% !important;
    height: 85vh; }
    #nav .mainNavigation li a {
      font-size: 4rem !important; }
    #nav .menu__top-left {
      display: none !important; }
    #nav .menu__top-right {
      display: none !important; }
    #nav .menu__btm-left {
      display: none !important; }
    #nav .menu__btm-right {
      display: none !important; }

  #copyright {
    padding-top: 80px !important; }
    #copyright .text-start, #copyright .text-end {
      text-align: center !important; }

  #page-wrap {
    padding: 20px !important;
    /* Woocommerce */ }

  ul.products {
    padding: 20px !important; }

  .woocommerce .products ul, .woocommerce ul.products {
    padding: 20px 0px !important; }

  body.woocommerce-cart #wrap, body.woocommerce-checkout #wrap {
    padding: 20px !important; }
    body.woocommerce-cart #page-wrap, body.woocommerce-checkout #page-wrap {
      padding: 0px !important; }
    body.woocommerce-cart .checkout-heading, body.woocommerce-checkout .checkout-heading {
      padding-top: 10% !important;
      margin-bottom: 0px;
      font-size: 60px !important; }

  body.post-type-archive-product #wrap, body.tax-product_cat #wrap, body.tax-product_tag #wrap {
    padding: 20px !important; }

  body.single-product {
    /* Cart */ }
    body.single-product #wrap {
      padding: 20px !important; }

  body.woocommerce-cart {
    /* Checkout */ }
    body.woocommerce-cart table.shop_table thead .product-price {
      width: 100% !important; }
    body.woocommerce-cart table.shop_table thead .product-quantity {
      width: 100% !important; }
    body.woocommerce-cart table.shop_table thead .product-subtotal {
      width: 100% !important; }
    body.woocommerce-cart table.shop_table tbody .product-thumbnail, body.woocommerce-cart table.shop_table tbody .product-thumbnail img {
      width: 50px !important; }
    body.woocommerce-cart table.shop_table tbody .product-price {
      width: 100% !important; }
    body.woocommerce-cart table.shop_table tbody .product-subtotal {
      width: 100% !important; }
    body.woocommerce-cart table.shop_table tbody .product-name a {
      display: flex;
      width: 100%;
      text-align: left; }
    body.woocommerce-cart table.shop_table_responsive tr td {
      padding: 5px 0px; }
    body.woocommerce-cart .cart_item {
      border-bottom: 2px solid var(--primary) !important; }
    body.woocommerce-cart .cart_item td {
      border: none !important; }
    body.woocommerce-cart .cart_item td.product-quantity {
      display: flex !important;
      flex-direction: row !important;
      justify-content: space-between !important; }
    body.woocommerce-cart .cart_item .quantity {
      width: 100px;
      margin-right: 0px !important; }
    body.woocommerce-cart .cart_item .quantity .input-group {
      width: 100px; }
    body.woocommerce-cart .cart_item .bootstrap-touchspin-down.btn-primary, body.woocommerce-cart .cart_item .bootstrap-touchspin-up.btn-primary {
      padding: 0px 5px !important; }
    body.woocommerce-cart .cart_item input[type=number] {
      padding: 0px 5px !important; }
    body.woocommerce-cart table.shop_table_responsive tr:nth-child(2n) td {
      background: none !important; }
    body.woocommerce-cart .coupon {
      width: 100%; }
    body.woocommerce-cart .coupon button.button {
      width: 100% !important; }
    body.woocommerce-cart .coupon .input-text {
      width: 100% !important;
      padding: 10px 0px !important;
      margin: 0px 0px 20px 0px !important; }
    body.woocommerce-cart button.button {
      font-size: var(--button_size) !important;
      zoom: 0.8;
      padding: 10px 20px !important;
      border-width: 4px !important; }
    body.woocommerce-cart a.checkout-button {
      zoom: 1;
      padding: 10px 50px !important; }
    body.woocommerce-cart .wc-proceed-to-checkout {
      text-align: center; }

  body.woocommerce-checkout .woocommerce {
    padding-bottom: 40px; }
    body.woocommerce-checkout form.checkout {
      display: flex;
      flex-direction: column; }
    body.woocommerce-checkout #customer_details {
      width: 100%;
      display: flex;
      flex-direction: column; }
    body.woocommerce-checkout #order_review {
      margin-left: 0px;
      margin-top: 40px;
      width: 100%;
      display: flex;
      flex-direction: column; }
    body.woocommerce-checkout button#place_order {
      flex-direction: column;
      align-content: center;
      flex-wrap: wrap; }
    body.woocommerce-checkout #billing_first_name_field, body.woocommerce-checkout #billing_address_1_field, body.woocommerce-checkout #billing_city_field, body.woocommerce-checkout #billing_postcode_field, body.woocommerce-checkout #billing_email_field, body.woocommerce-checkout #shipping_first_name_field, body.woocommerce-checkout #shipping_address_1_field, body.woocommerce-checkout #shipping_city_field, body.woocommerce-checkout #shipping_postcode_field, body.woocommerce-checkout #shipping_email_field, body.woocommerce-checkout #billing_last_name_field, body.woocommerce-checkout #billing_address_2_field, body.woocommerce-checkout #billing_state_field, body.woocommerce-checkout #billing_country_field, body.woocommerce-checkout #billing_phone_field, body.woocommerce-checkout #shipping_last_name_field, body.woocommerce-checkout #shipping_address_2_field, body.woocommerce-checkout #shipping_state_field, body.woocommerce-checkout #shipping_country_field, body.woocommerce-checkout #shipping_phone_field, body.woocommerce-checkout .form-row-last, body.woocommerce-checkout .form-row-first {
      clear: both;
      float: none !important;
      width: 100% !important; } }

@media (max-width: 725px) {
  /* sm applies to x-small devices (portrait phones, less than 576px) */
    #about-page #header .header__wrap {
      background: #fcebda;
      border: 2px solid #ccad67;
      border-radius: 50px;
      padding: 0px 20px; }
      #about-page #header .shape__bg {
        display: none; }
        #about-page #header .shape__bg svg {
          width: 0px;
          height: 0px; }
        #about-page #header .shape__inner {
          position: relative !important;
          top: 0px !important;
          padding: 20px;
          height: 100% !important; }
        #about-page #header .shape__subheading {
          padding: 20px 0px 20px 0px; }
        #about-page #header .shape__content {
          padding: 20px 0px 20px 0px; } }

@media (max-width: 575.98px) {
  #home-page #header {
    height: 70vh !important; }
    #home-page #book {
      padding-top: 40px;
      padding-bottom: 40px;
      height: 100%; }
      #home-page #book .book__left {
        display: none; }
        #home-page #book .book__right {
          display: none; }
        #home-page #book .book__booking {
          padding: 0px; }
    #home-page #gift .quantity {
      zoom: 0.8;
      border: 3px solid #ccad67 !important; }
    #home-page #about .about__wrap {
      padding: 40px; }
      #home-page #about .about__outer {
        zoom: 0.6; }

  #home-page #contact-us .contact-us__wrap, #about-page #contact-us .contact-us__wrap {
    width: 90% !important; }
    #home-page #contact-us .shape__inner, #about-page #contact-us .shape__inner {
      padding: 0px 40px;
      top: 40px; }
      #home-page #contact-us .shape__bg, #about-page #contact-us .shape__bg {
        display: flex;
        flex-direction: column;
        align-items: center; }
      #home-page #contact-us .shape__bg svg, #about-page #contact-us .shape__bg svg {
        width: 100%; }
      #home-page #contact-us .shape__buttons, #about-page #contact-us .shape__buttons {
        margin-top: -75px; }
      #home-page #contact-us .shape__buttons .btn-primary, #about-page #contact-us .shape__buttons .btn-primary {
        padding: 10px 40px 8px 40px !important; }

  .woocommerce ul.products li {
    width: 100% !important; }

  #wpadminbar {
    display: none;
    visibility: hidden;
    height: 0px !important;
    top: 0px; }

  #nav .burger.show, #nav .close.show {
    top: 20px; }

  body.admin-bar {
    top: -46px;
    position: relative; }
    body.admin-bar #nav .burger.show, body.admin-bar #nav .close.show {
      top: 20px; }

  body.home #nav .burger.show, body.home #nav .close.show {
    top: 0px; }

  #home-page #header {
    padding: 10% 5% 5% 5%; }

  #nav .mainNavigation .nav__menu {
    margin-top: 20vh !important;
    height: 80vh; }
    #nav .mainNavigation ul {
      justify-content: flex-start;
      align-items: center; }
    #nav .mainNavigation li {
      line-height: 200%;
      padding: 2vh 0px; }
    #nav .mainNavigation li a {
      font-size: 4vh !important;
      width: 100% !important; }
    #nav .burger .btn-primary, #nav .close .btn-primary {
      width: 80%; }
    #nav .nav-link:after {
      height: 2px; } }

@media (max-width: 400px) {
  :root {
    --xl: 350%;
    --lg: 200%;
    --md: 60%;
    --sm: 10%; }

  .btn-primary, .btn-secondary {
    padding: 20px 40px 8px 40px !important;
    font-size: calc(var(--button_size) - 40%) !important; }
    .btn-primary:hover, .btn-secondary:hover {
      padding: 20px 40px 8px 40px !important;
      font-size: calc(var(--button_size) - 40%) !important; }

  #home-page #cafe_menu .cafemenu__wrap {
    padding: 10% 20px !important; }
    #home-page #book {
      padding: 40px 20px !important; }
    #home-page #events .event-slider__item {
      padding: 40px 20px !important; }
      #home-page #events .event-slider__wrap {
        padding: 40px 0px !important; }
      #home-page #events .event-slider__outer {
        zoom: 0.6; }
      #home-page #events .event-slider__buttons {
        display: flex;
        justify-content: space-between;
        flex-direction: column;
        align-content: center;
        align-items: center; }
      #home-page #events .event-slider__btn {
        margin-bottom: 10px; }
    #home-page #gift .gift__wrap {
      padding: 40px 30px; }
      #home-page #gift .gift__embed .gift-cards_form button.single_add_to_cart_button {
        padding: 20px 40px 8px 40px !important; }
    #home-page #about .about__wrap {
      padding: 40px 20px !important; }
      #home-page #about .about__outer {
        zoom: 0.6; }

  #about-page #header .header__wrap {
    margin-top: 60px; }
    #about-page #about .line {
      justify-content: center; }
      #about-page #about .about__wrap {
        padding: 40px 0px !important; }

  #home-page #contact-us .col-xl-6, #about-page #contact-us .col-xl-6 {
    padding: 20px 0px !important; }
    #home-page #contact-us .contact-us__wrap, #about-page #contact-us .contact-us__wrap {
      background: #fcebda;
      border: 2px solid #ccad67;
      border-radius: 50px;
      padding: 0px 20px; }
    #home-page #contact-us .shape__bg, #about-page #contact-us .shape__bg {
      display: none; }
      #home-page #contact-us .shape__bg svg, #about-page #contact-us .shape__bg svg {
        width: 0px;
        height: 0px; }
      #home-page #contact-us .shape__inner, #about-page #contact-us .shape__inner {
        position: relative !important;
        top: 0px;
        padding: 0px 20px; }
      #home-page #contact-us .shape__subheading, #about-page #contact-us .shape__subheading {
        padding: 20px 0px 20px 0px; }
      #home-page #contact-us .shape__buttons, #about-page #contact-us .shape__buttons {
        margin-top: 0px !important;
        padding: 20px 0px; }
    #home-page #contact-us .block_follow .shape__buttons, #about-page #contact-us .block_follow .shape__buttons {
      display: flex;
      flex-direction: column;
      align-items: center; }
      #home-page #contact-us .block_follow .shape__buttons a:first-child, #about-page #contact-us .block_follow .shape__buttons a:first-child {
        margin-right: 0px !important; }
      #home-page #contact-us .block_follow .shape__buttons .btn-primary, #about-page #contact-us .block_follow .shape__buttons .btn-primary {
        margin-bottom: 10px !important; }

  #contact-page #contact .wpforms-container .wpforms-field.wpforms-five-sixths, #contact-page #contact .wpforms-container .wpforms-field.wpforms-four-sixths, #contact-page #contact .wpforms-container .wpforms-field.wpforms-four-fifths, #contact-page #contact .wpforms-container .wpforms-field.wpforms-one-fifth, #contact-page #contact .wpforms-container .wpforms-field.wpforms-one-fourth, #contact-page #contact .wpforms-container .wpforms-field.wpforms-one-half, #contact-page #contact .wpforms-container .wpforms-field.wpforms-one-sixth, #contact-page #contact .wpforms-container .wpforms-field.wpforms-one-third, #contact-page #contact .wpforms-container .wpforms-field.wpforms-three-fourths, #contact-page #contact .wpforms-container .wpforms-field.wpforms-three-fifths, #contact-page #contact .wpforms-container .wpforms-field.wpforms-three-sixths, #contact-page #contact .wpforms-container .wpforms-field.wpforms-two-fourths, #contact-page #contact .wpforms-container .wpforms-field.wpforms-two-fifths, #contact-page #contact .wpforms-container .wpforms-field.wpforms-two-sixths, #contact-page #contact .wpforms-container .wpforms-field.wpforms-two-thirds {
    float: none !important;
    width: 100% !important;
    margin-left: 0px !important; } }
