@charset "UTF-8";
/** Variables **/
/* sizes */
/* css vars */
:root {
  --colors-white: #fff;
  --colors-black: #231f20;
  --colors-squirrel: #afafaf;
  --colors-squirrel-dark: #4a4a4c;
  --colors-gold: #c5912c;
  --colors-gold-light: #eeb03b;
  --colors-gold-dark: #8c6212;
  --colors-green: #768786;
  --colors-green-05: #f0f5f5;
  --colors-green-10: #f1f2f2;
  --colors-green-15: #eff4f4;
  --colors-green-black: #4a4a4c;
  --colors-mauve: #a08380;
  --colors-mauve-light: #d9cdcc;
  --colors-white-opacity-95: rgba(255, 255, 255, 0.9490196078);
  --colors-white-opacity-75: rgba(255, 255, 255, 0.7019607843);
  --colors-white-opacity-50: rgba(255, 255, 255, 0.4588235294);
  --colors-white-opacity-35: rgba(255, 255, 255, 0.2784313725);
  --colors-white-opacity-15: rgba(255, 255, 255, 0.0901960784);
  --colors-green-opacity-50: rgba(118, 135, 134, 0.5333333333);
  --colors-black-opacity-50: rgba(0, 0, 0, 0.3137254902);
  --colors-black-opacity-35: rgba(0, 0, 0, 0.2078431373);
  --colors-black-opacity-15: rgba(0, 0, 0, 0.0823529412);
  --colors-light: var(--colors-green-light);
  --colors-dark: var(--colors-green-dark);
  --colors-accent: var(--colors-pink);
  --sizes-base: 17px;
  --sizes-content: 1450px;
  --sizes-break-mobile-small: 500px;
  --sizes-break-mobile: 800px;
  --sizes-break-desktop-small: 1000px;
  --sizes-break-twixt: 1100px;
  --sizes-break-desktop: 1300px;
  --sizes-site-padding: 5vw;
  --swiper-pagination-color: var(--colors-gold);
  --swiper-pagination-bullet-inactive-color: var(--colors-gold);
}

@font-face {
  font-family: "Great Day";
  src: url("fonts/Great-Day2021.eot");
  src: url("fonts/Great-Day2021.eot?#iefix") format("embedded-opentype"), url("fonts/Great-Day2021.woff2") format("woff2"), url("fonts/Great-Day2021.woff") format("woff"), url("fonts/Great-Day2021.ttf") format("truetype");
}
@font-face {
  font-family: "Burford Base";
  src: url("fonts/Burford-Base.eot");
  src: url("fonts/Burford-Base.eot?#iefix") format("embedded-opentype"), url("fonts/Burford-Base.woff2") format("woff2"), url("fonts/Burford-Base.woff") format("woff"), url("fonts/Burford-Base.ttf") format("truetype");
}
@font-face {
  font-family: "Genova";
  src: url("fonts/Genova.eot");
  src: url("fonts/Genova.eot?#iefix") format("embedded-opentype"), url("fonts/Genova.woff2") format("woff2"), url("fonts/Genova.woff") format("woff");
}
@font-face {
  font-family: "Genova Medium";
  src: url("fonts/Genova-Medium.eot");
  src: url("fonts/Genova-Medium.eot?#iefix") format("embedded-opentype"), url("fonts/Genova-Medium.woff2") format("woff2"), url("fonts/Genova-Medium.woff") format("woff"), url("fonts/Genova-Medium.ttf") format("truetype");
}
/** Bootstrap **/
/** Base Styles **/
/* resets */
* {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

nav ul {
  list-style: none;
}

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

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

input,
select {
  vertical-align: middle;
}

audio,
canvas,
video {
  display: inline-block;
  *display: inline;
  *zoom: 1;
}

audio:not([controls]) {
  display: none;
}

[hidden] {
  display: none;
}

/* Styling Placeholders */
/*
Usage:

.text-input {
    @include placeholder {
        color: rgba($white, .8);
    }
    color: $white; // Note: This declaration is now after the mixin.
}

/* Aspect Ratio Fallback For Older Browsers */
/*
Usage:

.square-box {
    @include aspect-ratio(1);
    background-color: $black; // Note: This declaration is now after the mixin.
}

.letterbox {
    @include aspect-ratio(16, 9);
    background-color: $black; // Note: This declaration is now after the mixin.
}
*/
/*
Usage:
*/
/* typography */
:root {
  --fonts-fenwick: "fenwick", sans-serif;
  --fonts-montserrat: "montserrat", sans-serif;
  --fonts-bebas: "bebas-neue", sans-serif;
  --fonts-great-day: "Great Day", serif;
  --fonts-burford: "Burford Base", serif;
  --fonts-genova: "Genova", sans-serif;
  --fonts-genova-med: "Genova Medium", sans-serif;
  --fonts-body: var(--fonts-genova);
  --fonts-heading: var(--fonts-great-day);
}

body {
  color: var(--color-black);
  font-family: var(--fonts-body);
  font-size: 17px;
  font-weight: 300;
  letter-spacing: 0.02em;
}

body * {
  -webkit-font-smoothing: antialiased;
}

h5, h4, h3, h2, h1 {
  font-family: var(--fonts-heading);
  font-weight: 300;
  line-height: 1.15;
  margin-bottom: 0;
}

h1 {
  font-size: clamp(2.5rem, 3.75vw, 5rem);
}

h2 {
  font-size: clamp(2.5rem, 3.75vw, 5rem);
}

h3 {
  font-size: clamp(1.5rem, 1.625vw, 1.75rem);
}

h4 {
  font-size: clamp(1.5rem, 1.625vw, 1.75rem);
}

h5 {
  font-size: clamp(1.5rem, 1.625vw, 1.75rem);
}

p {
  font-size: 17px;
  font-weight: 300;
  line-height: 1.25em;
  margin-bottom: 1em;
}

p:has(p ~ p) {
  margin-bottom: 0.5em;
}

b,
.bold,
.strong,
strong {
  font-family: var(--fonts-genova-med);
  font-weight: normal;
}

a,
a:visited {
  color: var(--colors-gold);
  font-weight: 300;
  text-decoration: none;
}

h1,
h2 {
  padding-bottom: 0.15em;
}

h1,
h2,
p,
ol,
ul,
a,
button,
input,
label,
textarea,
select,
detail,
summary,
strong,
b,
em,
i,
.cursive {
  -webkit-font-smoothing: antialiased;
}

/* Base */
* {
  box-sizing: border-box;
}

body {
  background-color: var(--colors-white);
  height: 100%;
  width: 100%;
}

#main {
  min-height: 75vh;
}

a,
a:link,
a:hover,
input[type=submit],
input[type=submit]:hover,
.transition,
.transition:hover {
  transition: all 0.3s ease;
}

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

/* Utility Classes */
.no-select {
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.h100 {
  height: 100%;
}

.rel {
  position: relative;
}

section.center-content .section-inner-wrapper,
section .center-content {
  text-align: center;
}

section.flex-center-content .section-inner-wrapper,
section .flex-center-content {
  align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.breathless label.gfield_label,
.breathless {
  font-family: var(--fonts-body);
  letter-spacing: 0.2em;
  line-height: 2;
  font-size: 1.15rem;
}
@media (max-width: 1000px) {
  .breathless label.gfield_label,
  .breathless {
    letter-spacing: 0.15em;
    font-size: 1rem;
  }
}

.breathless-medium {
  font-family: var(--fonts-body);
  letter-spacing: 0.1em;
  line-height: 2;
  font-size: 1.15rem;
}

.parallax-background-image {
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
@media (max-width: 800px) {
  .parallax-background-image {
    background-attachment: scroll;
  }
}

.monogram-swoop-bg {
  background: top right/90% no-repeat url(img/ritz-graphic-monogram-cropped.svg);
}

.flex-col,
.text-spread {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.text-spread.tight {
  gap: 0.5rem;
}

.text-spread.medium {
  gap: 1.5rem;
}

.text-spread.wide {
  gap: 2.5rem;
}

/* to be clear, \/ this \/ breaks the content for sighted users with js turned off */
.fade-in {
  opacity: 0;
}

/** Components **/
/* section wrappers */
.sections {
  /* mauve/pink */
}
.sections section .section-inner-wrapper {
  max-width: var(--sizes-content);
  margin: auto;
  padding: var(--sizes-site-padding);
  position: relative;
}
.sections .section-intro .intro-text {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.sections .section-intro .intro-text .heading {
  margin-bottom: 0;
}
.sections .section-intro .intro-text .text {
  margin: 2rem auto 0;
}
@media (min-width: 800px) {
  .sections .section-intro .intro-text .text {
    width: 80%;
  }
}
.sections .section-intro .intro-text .text > * {
  line-height: 2;
}
.sections .section-intro .intro-text .button {
  margin-top: 1.5rem;
}
.sections .section-inquire .section-inner-wrapper {
  display: flex;
  flex-direction: column;
  gap: 3vw;
  padding-bottom: 8vw;
  padding-top: 3vw;
}
.sections .section-inquire .section-inner-wrapper p {
  margin-bottom: 0;
}
.sections .section-inquire .section-inner-wrapper a {
  margin: auto;
}
.sections .section-venues.slider {
  text-align: center;
}
.sections .section-venues.slider .section-inner-wrapper {
  padding: 15vw 5vw;
}
.sections .section-venues.slider .section-inner-wrapper h2 {
  margin-bottom: 0;
}
.sections .section-venues.slider .section-inner-wrapper .beaded-divider-svg {
  margin: 0.5vw auto 4vw;
}
.sections .section-venues.slider .section-inner-wrapper .venue {
  opacity: 0 !important;
}
.sections .section-venues.slider .section-inner-wrapper .venue:hover {
  cursor: grab;
}
.sections .section-venues.slider .section-inner-wrapper .venue .swiper-slide-image {
  height: 40cqw;
  width: 60cqw;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 1;
}
@media (max-width: 800px) {
  .sections .section-venues.slider .section-inner-wrapper .venue .swiper-slide-image {
    height: 50cqw;
    width: 70cqw;
  }
}
.sections .section-venues.slider .section-inner-wrapper .venue .venue-details {
  padding: 2rem 0 3rem;
  opacity: 0;
  transition: opacity 0.1s ease-in;
  letter-spacing: 0.18em;
}
.sections .section-venues.slider .section-inner-wrapper .venue .venue-details h3 {
  font-family: var(--fonts-body);
  font-size: 1.1em;
  text-transform: uppercase;
}
.sections .section-venues.slider .section-inner-wrapper .venue .venue-details p {
  max-width: 30ch;
  margin: auto;
  margin-bottom: 1em;
}
.sections .section-venues.slider .section-inner-wrapper .venue.swiper-slide-prev,
.sections .section-venues.slider .section-inner-wrapper .venue.swiper-slide-next {
  opacity: 0.8 !important;
}
.sections .section-venues.slider .section-inner-wrapper .venue.swiper-slide-active {
  opacity: 1 !important;
}
.sections .section-venues.slider .section-inner-wrapper .venue.swiper-slide-active .venue-details {
  opacity: 1;
}
.sections .section-venues.slider .section-inner-wrapper .button {
  margin-top: 1vw;
  padding-left: 1.5em;
  padding-right: 1.5em;
}
.sections .section-venues .beaded-divider-svg {
  margin-top: 0;
  margin-bottom: 0;
}
.sections .section-venues .venue-details a {
  padding: 0.25em 0.5em 0.25em 0.7em;
}
.sections .section-venues .venue-details a:hover {
  background: rgba(197, 145, 44, 0.2784313725);
}
.sections .section-testimonials .section-inner-wrapper .testimonials-wrapper-outer {
  align-items: center;
  container-type: inline-size;
  max-width: 100%;
  padding: 15vw 15vw 4rem;
  margin-bottom: 8vw;
  position: relative;
}
.sections .section-testimonials .section-inner-wrapper .testimonials-wrapper-outer.light-bg {
  background: var(--colors-white-opacity-95);
  color: var(--colors-green-black);
  margin-bottom: 0;
  padding: 8vw 8vw 4vw 8vw;
}
.sections .section-testimonials .section-inner-wrapper .testimonials-wrapper {
  --swiper-navigation-size: 44px;
  --swiper-navigation-top-offset: 0%;
  --swiper-navigation-sides-offset: 0px;
  --swiper-navigation-color: transparent;
}
.sections .section-testimonials .section-inner-wrapper .testimonials-wrapper .swiper-button-next,
.sections .section-testimonials .section-inner-wrapper .testimonials-wrapper .swiper-button-prev {
  height: 100%;
  width: 16%;
}
@media (max-width: 999px) {
  .sections .section-testimonials .section-inner-wrapper .testimonials-wrapper .swiper-button-next,
  .sections .section-testimonials .section-inner-wrapper .testimonials-wrapper .swiper-button-prev {
    display: none;
  }
}
@media (min-width: 1000px) {
  .sections .section-testimonials .section-inner-wrapper .testimonials-wrapper .swiper-button-next,
  .sections .section-testimonials .section-inner-wrapper .testimonials-wrapper .swiper-button-prev {
    display: block;
  }
}
.sections .section-testimonials .section-inner-wrapper .testimonials-wrapper .content p {
  font-family: var(--fonts-burford);
  line-height: 2;
}
.sections .section-testimonials .section-inner-wrapper .testimonials-wrapper .name {
  font-family: var(--fonts-heading);
  font-size: 2rem;
}
.sections .section-testimonials .section-inner-wrapper .testimonials-wrapper article {
  text-align: center;
  line-height: 2em;
  font-family: var(--fonts-burford);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  min-width: 100cqw;
}
.sections .section-testimonials .section-inner-wrapper .testimonials-wrapper article .great {
  font-family: var(--fonts-great-day);
  color: var(--colors-gold);
}
.sections .section-testimonials .section-inner-wrapper .testimonials-wrapper article .content {
  margin: auto;
  position: relative;
}
.sections .section-testimonials .section-inner-wrapper .testimonials-wrapper article .content p {
  line-height: 2;
}
.sections .section-testimonials .section-inner-wrapper .testimonials-wrapper article .content span.great {
  display: inline-block;
  line-height: auto;
  height: 1em;
  width: 1.5em;
  background-position: top center;
}
.sections .section-testimonials .section-inner-wrapper .testimonials-wrapper article .content span.start {
  background: top center/contain no-repeat url("img/ritz-icon-curly-quote-start.svg");
  margin-right: 0.5rem;
}
.sections .section-testimonials .section-inner-wrapper .testimonials-wrapper article .content span.end {
  background: top center/contain no-repeat url("img/ritz-icon-curly-quote-end.svg");
  margin-left: 0.5rem;
}
.sections .section-testimonials .section-inner-wrapper .testimonials-wrapper article .name {
  font-family: var(--fonts-great-day);
  font-size: 1.5em;
  text-transform: initial;
  margin-left: 20vw;
}
.sections .section-testimonials .section-inner-wrapper .swiper-pagination {
  margin-bottom: 1vw;
}
.sections .section-cards .cards .card {
  align-items: center;
  container-type: inline-size;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  text-align: center;
}
.sections .section-cards .cards .card .front,
.sections .section-cards .cards .card .drawer {
  align-items: center;
  bottom: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  left: 0;
  position: absolute;
  top: 0;
  right: 0;
}
.sections .section-cards .cards .card .front .title,
.sections .section-cards .cards .card .drawer .title {
  color: var(--colors-white);
  font-family: var(--fonts-body);
  font-weight: 300;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.sections .section-cards .cards .card .front .contents,
.sections .section-cards .cards .card .drawer .contents {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  height: 100%;
  justify-content: center;
  padding: 8cqw;
  width: 100%;
}
.sections .section-cards .cards .card .front .contents a,
.sections .section-cards .cards .card .drawer .contents a {
  color: var(--colors-white);
  line-height: 2;
}
.sections .section-cards .cards .card .front .contents .arrow-right-svg,
.sections .section-cards .cards .card .drawer .contents .arrow-right-svg {
  margin: 0 auto;
}
@media (max-width: 800px) {
  .sections .section-cards .cards .card .front {
    z-index: -1;
  }
  .sections .section-cards .cards .card .front h3 {
    display: none;
  }
}
.sections .section-cards .cards .card .drawer {
  bottom: 0;
  height: 100%;
  position: absolute;
  transform-origin: bottom;
  width: 100%;
}
@media (min-width: 801px) {
  .sections .section-cards .cards .card .drawer {
    background-color: var(--colors-green-opacity-50);
  }
}
.sections .section-pinwheel .pinwheel {
  -moz-column-gap: 2cqw;
  column-gap: 2cqw;
  min-height: 75vh;
  container-type: inline-size;
  container-name: boxes;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: repeat(12, 4cqw);
  height: 100%;
  max-width: 100cqw;
  position: relative;
  row-gap: 1.5cqw;
}
.sections .section-pinwheel .pinwheel .blade .arrow-right-svg {
  margin: 0;
}
.sections .section-pinwheel .pinwheel .blade:first-of-type {
  grid-area: 1/3/8/7;
}
.sections .section-pinwheel .pinwheel .blade:nth-of-type(2) {
  grid-area: 1/7/6/13;
}
.sections .section-pinwheel .pinwheel .blade:nth-of-type(3) {
  grid-area: 6/7/13/11;
}
.sections .section-pinwheel .pinwheel .blade:last-of-type {
  grid-area: 8/1/13/7;
}
@media (max-width: 1000px) {
  .sections .section-pinwheel .pinwheel .blade:first-of-type {
    grid-area: 1/2/9/7;
  }
  .sections .section-pinwheel .pinwheel .blade:nth-of-type(2) {
    grid-area: 1/7/5/13;
  }
  .sections .section-pinwheel .pinwheel .blade:nth-of-type(3) {
    grid-area: 5/7/13/12;
  }
  .sections .section-pinwheel .pinwheel .blade:last-of-type {
    grid-area: 9/1/13/7;
  }
}
@media (max-width: 800px) {
  .sections .section-pinwheel .pinwheel {
    gap: 1rem;
  }
  .sections .section-pinwheel .pinwheel .blade:first-of-type {
    grid-area: 1/1/9/7;
  }
  .sections .section-pinwheel .pinwheel .blade:nth-of-type(2) {
    grid-area: 1/7/5/13;
  }
  .sections .section-pinwheel .pinwheel .blade:nth-of-type(3) {
    grid-area: 5/7/13/13;
  }
  .sections .section-pinwheel .pinwheel .blade:last-of-type {
    grid-area: 9/1/13/7;
  }
}
@media (max-width: 640px) {
  .sections .section-pinwheel .pinwheel {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  .sections .section-pinwheel .pinwheel .blade {
    height: 120vw;
  }
}
.sections section.section-cta .section-inner-wrapper {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.sections section.section-cta .section-inner-wrapper .subheading {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 0;
}
.sections section.section-cta .section-inner-wrapper .button {
  margin-top: 2rem;
}
.sections section.parallax-background-image {
  position: relative;
}
.sections section.parallax-background-image .section-inner-wrapper {
  background-color: var(--colors-black-opacity-50);
  color: var(--colors-white);
  max-width: unset;
  padding-bottom: 12vw;
  padding-top: 12vw;
  text-align: center;
}
@media (max-width: 800px) {
  .sections section.parallax-background-image .section-inner-wrapper {
    background-color: rgba(0, 0, 0, 0.5921568627);
  }
}
.sections section.parallax-background-image .section-inner-wrapper .text {
  color: var(--colors-white);
  line-height: 1.5;
  margin: auto;
  text-align: center;
  width: 80%;
}
@media (max-width: 800px) {
  .sections section.parallax-background-image .section-inner-wrapper .text {
    width: 100%;
  }
}
.sections section.parallax-background-image .section-inner-wrapper .text * {
  line-height: 1.75;
}
.sections section.parallax-background-image .section-inner-wrapper .text ul {
  display: flex;
  flex-direction: column;
  gap: 1em;
  list-style-type: none;
  margin: auto;
  max-width: -moz-fit-content;
  max-width: fit-content;
  padding-bottom: 1.5rem;
  text-align: left;
}
.sections section.parallax-background-image .section-inner-wrapper .text ul li {
  align-items: center;
  display: flex;
  gap: 1em;
  position: relative;
}
.sections section.parallax-background-image .section-inner-wrapper .text ul li::before {
  border: 1px solid;
  content: "";
  display: block;
  height: 1.25em;
  width: 1.25em;
}
.sections section.parallax-background-image .section-inner-wrapper .text ul li::after {
  background: center/auto no-repeat url(/wp-content/themes/fount-rc/img/ritz-icon-checkmark.svg);
  border-radius: 0;
  content: "";
  display: block;
  height: 2em;
  left: -0.2em;
  position: absolute;
  top: -0.3em;
  transform: rotate(0);
  width: 2em;
}
.sections section.parallax-background-image .caption {
  position: absolute;
  color: var(--colors-gold);
  right: 1em;
  bottom: 1em;
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 0.2em;
}
.sections section.parallax-background-image .caption:hover {
  border-bottom: 1px solid;
}
.sections section.section-two-columns .section-inner-wrapper {
  background-color: var(--colors-mauve-light);
  margin: 0 8vw;
  padding: 2rem;
}
.sections section.section-two-columns .section-inner-wrapper .columns-wrapper {
  align-items: center;
  container-type: inline-size;
  display: flex;
  gap: 2rem;
  padding: 4vw;
  position: relative;
}
@media (max-width: 800px) {
  .sections section.section-two-columns .section-inner-wrapper .columns-wrapper {
    flex-direction: column;
  }
}
.sections section.section-two-columns .section-inner-wrapper .columns-wrapper .left,
.sections section.section-two-columns .section-inner-wrapper .columns-wrapper .right {
  container-type: inline-size;
}
.sections section.section-two-columns .section-inner-wrapper .columns-wrapper .left {
  flex: 1;
}
@media (max-width: 800px) {
  .sections section.section-two-columns .section-inner-wrapper .columns-wrapper .left {
    width: 100%;
  }
}
.sections section.section-two-columns .section-inner-wrapper .columns-wrapper .right {
  flex: 1.25;
}
@media (max-width: 800px) {
  .sections section.section-two-columns .section-inner-wrapper .columns-wrapper .right {
    display: flex;
    justify-content: center;
    flex: 1;
    width: 100%;
  }
}
.sections section.section-two-columns .section-inner-wrapper .columns-wrapper .heading {
  font-family: var(--fonts-body);
  font-size: clamp(1rem, 5cqw, 2rem);
  letter-spacing: 0.2em;
  line-height: 1.5;
  text-align: center;
  text-transform: uppercase;
}
.sections section.section-two-columns .section-inner-wrapper .columns-wrapper .subheading {
  display: block;
  font-family: var(--fonts-heading);
  font-size: clamp(2rem, 10cqw, 4rem);
  margin-top: 5cqw;
  text-align: center;
}
.sections section.section-two-columns .section-inner-wrapper .columns-wrapper .text {
  font-family: var(--fonts-burford);
  font-size: clamp(1.25rem, 2cqw, 1.5rem);
  letter-spacing: 0.25em;
  text-transform: uppercase;
}
.sections section.section-two-columns .section-inner-wrapper .columns-wrapper .text ul {
  display: flex;
  flex-direction: column;
  gap: 6cqw;
  padding-left: 1.5rem;
}
.sections section.section-two-columns .section-inner-wrapper .columns-wrapper .wysiwyg {
  font-family: var(--fonts-body);
  text-transform: initial;
  letter-spacing: 0.15em;
}
.sections section.section-two-columns .section-inner-wrapper .columns-wrapper .border-anim {
  background: var(--colors-gold);
  display: block;
  position: absolute;
}
.sections section.section-two-columns .section-inner-wrapper .columns-wrapper .border-anim.top {
  height: 2px;
  left: 0;
  top: 0;
  width: 100%;
}
.sections section.section-two-columns .section-inner-wrapper .columns-wrapper .border-anim.right {
  height: 100%;
  right: 0;
  top: 0;
  width: 2px;
}
.sections section.section-two-columns .section-inner-wrapper .columns-wrapper .border-anim.bottom {
  bottom: 0;
  height: 2px;
  left: 0;
  width: 100%;
}
.sections section.section-two-columns .section-inner-wrapper .columns-wrapper .border-anim.left {
  height: 100%;
  left: 0;
  top: 0;
  width: 2px;
}
.sections section.section-two-columns .section-inner-wrapper .columns-wrapper.one-col .right.wysiwyg {
  font-family: var(--fonts-body);
  min-width: 100%;
  text-align: center;
  text-transform: initial;
}
.sections section.section-two-columns .section-inner-wrapper .columns-wrapper.one-col .right.wysiwyg p {
  line-height: 2;
}
.sections section.section-box-rows-intro .section-inner-wrapper {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.sections section.section-box-rows .section-inner-wrapper .box-rows .box-row {
  align-items: center;
  container-type: inline-size;
  display: flex;
  flex-direction: column;
  gap: 4vw;
  margin-bottom: 2rem;
  max-width: 100%;
}
@media (max-width: 800px) {
  .sections section.section-box-rows .section-inner-wrapper .box-rows .box-row {
    margin-bottom: 4rem;
  }
}
.sections section.section-box-rows .section-inner-wrapper .box-rows .box-row .text {
  font-size: 0.9rem;
  text-align: center;
}
.sections section.section-box-rows .section-inner-wrapper .box-rows .box-row .text .heading {
  font-family: var(--fonts-body);
  font-size: clamp(1rem, 2cqw, 1.5rem);
  letter-spacing: 0.25em;
  line-height: 1.15;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 1rem;
}
.sections section.section-box-rows .section-inner-wrapper .box-rows .box-row .text:has(ul),
.sections section.section-box-rows .section-inner-wrapper .box-rows .box-row .text:has(.heading) {
  text-align: left;
}
.sections section.section-box-rows .section-inner-wrapper .box-rows .box-row .text:has(ul) ul,
.sections section.section-box-rows .section-inner-wrapper .box-rows .box-row .text:has(.heading) ul {
  padding-left: 2em;
}
.sections section.section-box-rows .section-inner-wrapper .box-rows .box-row .image {
  container-type: inline-size;
  width: 100cqw;
}
.sections section.section-box-rows .section-inner-wrapper .box-rows .box-row .image img {
  display: inline-block;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.sections section.section-box-rows .section-inner-wrapper .box-rows .box-row .image.square img {
  height: 100cqw;
  width: 100cqw;
}
.sections section.section-box-rows .section-inner-wrapper .box-rows .box-row .image.six-seven img {
  height: 117cqw;
  width: 100cqw;
}
.sections section.section-box-rows .section-inner-wrapper .box-rows .box-row .image.six-nine img {
  height: 150cqw;
  width: 100cqw;
}
@media (min-width: 800px) {
  .sections section.section-box-rows .section-inner-wrapper .box-rows .box-row {
    flex-direction: row;
  }
  .sections section.section-box-rows .section-inner-wrapper .box-rows .box-row:nth-child(odd) {
    flex-direction: row-reverse;
  }
  .sections section.section-box-rows .section-inner-wrapper .box-rows .box-row:nth-child(even) .image {
    text-align: right;
  }
  .sections section.section-box-rows .section-inner-wrapper .box-rows .box-row .text {
    flex: 1;
  }
  .sections section.section-box-rows .section-inner-wrapper .box-rows .box-row .image {
    flex: 1;
  }
}
.sections section.section-box-rows .section-inner-wrapper .box-rows .box-row .breathless p {
  line-height: 2;
}
.sections .section-inquire-form .section-inner-wrapper {
  display: flex;
  gap: 2vw;
  padding-top: 0;
}
@media (max-width: 1000px) {
  .sections .section-inquire-form .section-inner-wrapper {
    flex-direction: column;
    gap: 5vw;
  }
}
@media (min-width: 1000px) {
  .sections .section-inquire-form .section-inner-wrapper .left {
    max-width: 50%;
  }
}
.sections .section-inquire-form .section-inner-wrapper .left img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}
@media (max-width: 1000px) {
  .sections .section-inquire-form .section-inner-wrapper .left img {
    height: 75vw;
    width: 100vw;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.sections .section-inquire-form .section-inner-wrapper .right {
  display: flex;
  flex-direction: column;
  gap: 1vw;
  text-align: center;
}
.sections .section-inquire-form .section-inner-wrapper .right > .heading {
  overflow: hidden;
}
.sections .section-inquire-form .section-inner-wrapper .right h2 {
  margin-bottom: 0.35em;
  text-align: center;
}
.sections .section-inquire-form .section-inner-wrapper .right .text {
  margin-bottom: 0;
}
.sections .section-inquire-form .section-inner-wrapper .right .text,
.sections .section-inquire-form .section-inner-wrapper .right .breathless label.gfield_label {
  font-size: 0.8rem;
}
.sections .section-inquire-form .section-inner-wrapper .right .gform_wrapper {
  margin-top: 1.5vw;
}
.sections .section-inquire-form .section-inner-wrapper .right .gform-body {
  text-align: initial;
}
.sections .section-inquire-form .section-inner-wrapper .right ::-moz-placeholder {
  color: transparent;
}
.sections .section-inquire-form .section-inner-wrapper .right ::placeholder {
  color: transparent;
}
.sections section.section-faq .section-inner-wrapper .faq-wrapper {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.sections section.section-faq .section-inner-wrapper .faq-wrapper .beaded-divider-svg {
  margin-bottom: 3rem;
}
.sections section.section-faq .section-inner-wrapper .faq-wrapper .faq {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.sections section.section-faq .section-inner-wrapper .faq-wrapper .faq-pair-wrapper {
  background-color: var(--colors-green-10);
  border: 1px solid var(--colors-gold);
  padding: 1.5rem;
  text-align: initial;
}
.sections section.section-faq .section-inner-wrapper .faq-wrapper .faq-pair-wrapper .faq-pair {
  letter-spacing: 0.1em;
}
.sections section.section-faq .section-inner-wrapper .faq-wrapper .faq-pair-wrapper .faq-pair summary {
  align-items: center;
  display: flex;
  justify-content: space-between;
  list-style-type: none;
  font-family: var(--fonts-genova-med);
}
.sections section.section-faq .section-inner-wrapper .faq-wrapper .faq-pair-wrapper .faq-pair summary:hover {
  cursor: pointer;
}
.sections section.section-faq .section-inner-wrapper .faq-wrapper .faq-pair-wrapper .faq-pair summary::after {
  color: var(--colors-gold);
  content: "• • •";
  display: inline-block;
  font-size: 2rem;
}
.sections section.section-faq .section-inner-wrapper .faq-wrapper .faq-pair-wrapper .faq-pair .answer {
  padding-top: 1rem;
}
.sections section.section-outro .section-inner-wrapper {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.sections section.section-outro .section-inner-wrapper p {
  margin-bottom: 0;
}
.sections section.section-outro .section-inner-wrapper .button {
  margin: auto;
}

/* Gravity Forms */
.center-content:has(.gform_wrapper) {
  display: flex;
  justify-content: center;
  text-align: initial;
  width: 100%;
}

.gform-theme--foundation .gform_footer {
  --gf-local-bg-color: transparent;
  --gf-ctrl-btn-color-hover-primary: var(--colors-black-opacity-35);
}

.gform-theme--foundation .gform_footer input[type=submit].gform_button.button:hover {
  background: var(--colors-black-opacity-35);
  color: var(--colors-green-black) !important;
}

.gform-theme.gform-theme--framework.gform_wrapper .button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)):hover,
.gform-theme.gform-theme--framework.gform_wrapper .gform-theme-button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)):hover {
  background: var(--colors-black-opacity-35) !important;
}

.gform-body {
  --gf-ctrl-btn-bg-color-hover-primary: var(--colors-gold);
}
.gform-body input[disabled=disabled] {
  background-color: var(--colors-green-05);
  opacity: 0.5;
}
.gform-body input {
  opacity: 1;
}
.gform-body input[type=submit] {
  cursor: pointer;
  color: var(--colors-green-black);
}
.gform-body select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 100 100' preserveAspectRatio='none'%3E%3Cpolygon points='50,75 0,0 100,0' style='%4a4a4c;' /%3E%3C/svg%3E") !important;
  background-position: calc(100% - 0.5rem) 60% !important;
  background-size: 0.85rem !important;
  background-repeat: no-repeat;
}
.gform-body .gform_fields .gfield .ginput_container_fileupload .gform_button_select_files {
  color: var(--colors-green-black) !important;
  background-color: transparent !important;
  border-radius: 0 !important;
}
.gform-body .gform_fields .gfield .ginput_container_fileupload .gform_button_select_files:hover {
  background-color: var(--colors-black-opacity-35) !important;
}
.gform-body #field_4_119 .gfield_description,
.gform-body #field_4_118 .gfield_description {
  font-size: 1rem;
  font-family: var(--fonts-genova-med);
  color: red;
}
.gform-body #input_4_116 {
  cursor: none;
  opacity: 0.5;
  pointer-events: none;
}
.gform-body #input_4_116:hover {
  cursor: none;
}

.gform-theme--framework .gfield_list_group_item::before,
.gform-theme--framework .gform-field-label:where(:not([class*=gform-field-label--type-])) {
  line-height: 1 !important;
}

.gform-body input,
.gform-body textarea,
input,
textarea,
select {
  background-color: var(--colors-green-05);
  border: 1px solid;
  border-color: var(--colors-gold) !important;
  border-radius: 0 !important;
}

.gfield_required.gfield_required_text {
  letter-spacing: 0.15em;
  font-size: 0.8rem;
  color: var(--colors-green-black);
}

.gform_button.button {
  padding: 0.75rem 1.5rem 0.63rem !important;
}

h3.gf_progressbar_title {
  font-size: 1rem !important;
  font-family: var(--fonts-body);
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.gf_progressbar_blue {
  background-color: var(--colors-green-05) !important;
}

.gf_progressbar_percentage.percentbar_blue {
  background-color: var(--colors-gold) !important;
}

/* navigation menus: general rules for using the print-nav function wherever */
ul.nav-items {
  list-style-type: none;
  padding-left: 0;
}
ul.nav-items a {
  display: block;
  line-height: 1;
}

.navigation {
  align-items: stretch;
  background-color: var(--colors-green-15);
  display: flex;
  min-height: 100vh;
}
@media (max-width: 800px) {
  .navigation {
    flex-direction: column-reverse;
  }
}
.navigation .nav-bg-image {
  display: none;
}
.navigation .logo-wrapper,
.navigation .secondary-wrapper,
.navigation .primary-wrapper,
.navigation .contents-wrapper {
  align-items: stretch;
  display: flex;
  flex: 1;
  flex-direction: column;
  justify-content: center;
}
.navigation .contents-wrapper {
  padding: 4vw;
}
.navigation .contents-wrapper img {
  max-width: 100%;
}
.navigation .logo-wrapper {
  background-color: var(--colors-white);
  flex: 2;
}
.navigation .logo-wrapper img {
  display: block;
  margin-right: auto;
  margin-left: auto;
}
@media (max-width: 800px) {
  .navigation .logo-wrapper {
    background-color: var(--colors-green-05);
    max-height: 200px;
    padding: 10vw;
    padding-top: 0;
    padding-bottom: 20vw;
  }
  .navigation .logo-wrapper img {
    margin: auto;
    max-width: 200px;
  }
}
.navigation .secondary-wrapper .contents-wrapper {
  gap: 2rem;
  padding-right: 2vw;
  padding-left: 6vw;
}
@media (max-width: 800px) {
  .navigation .secondary-wrapper .contents-wrapper {
    text-align: center;
    padding: 5vw;
    padding-bottom: 10vw;
  }
}
.navigation .secondary-wrapper .nav-items {
  width: 100%;
}
.navigation .secondary-wrapper .nav-items a {
  color: var(--colors-green);
  display: inline-block;
  padding: 0.5em 0;
  position: relative;
}
.navigation .secondary-wrapper .nav-items a::after {
  content: "";
  display: block;
  background-color: var(--colors-green);
  opacity: 0;
  width: 4px;
  height: 4px;
  border-radius: 100%;
  bottom: 50%;
  right: 1rem;
  position: absolute;
  transition: opacity 0.4s ease, right 0.3s ease;
}
.navigation .secondary-wrapper .nav-items a:hover::after {
  opacity: 1;
  right: -0.5em;
}
.navigation .secondary-wrapper .line-drawn {
  margin-left: 0;
  margin-right: auto;
  max-width: 200px;
}
@media (max-width: 800px) {
  .navigation .secondary-wrapper .line-drawn {
    margin-left: auto;
  }
}
.navigation .secondary-wrapper .phone {
  align-items: center;
  color: var(--colors-green);
  display: flex;
}
@media (max-width: 800px) {
  .navigation .secondary-wrapper .phone {
    justify-content: center;
  }
}
.navigation .secondary-wrapper .phone svg {
  max-height: 2em;
}
@media (max-width: 800px) {
  .navigation .secondary-wrapper .social-links {
    justify-content: center;
  }
}
@media (max-width: 800px) {
  .navigation .secondary-wrapper .searchform {
    margin-top: 1rem;
  }
}
.navigation .secondary-wrapper .searchform > div {
  background: var(--colors-white);
  border: 1px solid var(--colors-green);
  border-radius: 0.25em;
}
.navigation .secondary-wrapper .searchform input {
  border-radius: 0 !important;
  padding: 0.5rem 0.75rem;
  border: none !important;
}
.navigation .secondary-wrapper .searchform input[type=text] {
  background: 0.25rem center/auto 75% no-repeat url(img/ritz-icon-search.svg);
  flex: 1;
  min-width: 10ch;
  width: 10vw;
}
.navigation .secondary-wrapper .searchform input[type=text]:active,
.navigation .secondary-wrapper .searchform input[type=text]:focus {
  background: transparent;
}
.navigation .secondary-wrapper .searchform input[type=text]:hover ~ input[type=submit],
.navigation .secondary-wrapper .searchform input[type=text]:active ~ input[type=submit],
.navigation .secondary-wrapper .searchform input[type=text]:focus ~ input[type=submit] {
  background: var(--colors-green);
  color: var(--colors-white);
}
.navigation .secondary-wrapper .searchform input[type=submit] {
  color: var(--colors-green);
  background: unset;
}
.navigation .primary-wrapper {
  flex: 1.25;
}
.navigation .primary-wrapper .contents-wrapper {
  padding-left: 0;
}
@media (max-width: 800px) {
  .navigation .primary-wrapper .contents-wrapper {
    padding: 5vw;
    padding-top: 30vw;
  }
}
.navigation .primary-wrapper .nav-items {
  width: 100%;
}
.navigation .primary-wrapper .nav-items > li {
  font-family: var(--fonts-body);
  text-align: right;
  text-transform: uppercase;
}
@media (max-width: 800px) {
  .navigation .primary-wrapper .nav-items > li {
    text-align: center;
  }
}
.navigation .primary-wrapper .nav-items > li a {
  color: var(--colors-green);
  display: inline-block;
  font-size: 1.25rem;
  letter-spacing: 0.2em;
  margin-bottom: 1em;
  padding: 0.5em 0;
  position: relative;
}
.navigation .primary-wrapper .nav-items > li a::after,
.navigation .primary-wrapper .nav-items > li a::before {
  background-color: var(--colors-green);
  content: "";
  display: block;
  font-size: inherit;
  position: absolute;
  opacity: 0;
}
.navigation .primary-wrapper .nav-items > li a::after {
  left: 100%;
  transition: left 0.4s ease-in-out, opacity 0.5s ease-out;
}
.navigation .primary-wrapper .nav-items > li a::before {
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s ease-in-out, opacity 0.5s ease-out;
}
.navigation .primary-wrapper .nav-items > li a:hover::after {
  opacity: 1;
  width: 6px;
  height: 6px;
  border-radius: 100%;
  bottom: 3px;
  left: -10px;
}
.navigation .primary-wrapper .nav-items > li a:hover::before {
  opacity: 1;
  width: 100%;
  bottom: 0.25em;
  height: 2px;
  position: absolute;
  transform: scaleX(1);
}

/* buttons */
.buttons {
  display: flex;
  align-items: center;
}
@media (max-width: 650px) {
  .buttons {
    flex-direction: column;
    gap: 2rem;
  }
}
.buttons.center {
  justify-content: center;
}
.buttons.left {
  justify-content: left;
}
.buttons.right {
  justify-content: right;
}
.buttons.stack {
  flex-direction: column;
  row-gap: 1rem;
}
.buttons.spread {
  -moz-column-gap: 1rem;
       column-gap: 1rem;
}
.buttons.spread-small {
  -moz-column-gap: 0.75rem;
       column-gap: 0.75rem;
}
.buttons.spread-med {
  -moz-column-gap: 1rem;
       column-gap: 1rem;
}
.buttons.spread-large {
  -moz-column-gap: 3rem;
       column-gap: 3rem;
}

button:not(.slick-dots button):not(.img-button),
input.button,
input.gform_button.button,
.button {
  border: 2px solid var(--colors-gold) !important;
  border-radius: 0 !important;
  cursor: pointer !important;
  display: inline-block !important;
  font-size: 0.9rem !important;
  font-family: var(--fonts-body);
  letter-spacing: 0.15rem !important;
  max-width: -moz-fit-content;
  max-width: fit-content;
  position: relative;
  padding: 0.7em 1.5em 0.6em;
  text-align: center;
  text-transform: uppercase !important;
  transition: background-color 0.2s ease-in !important;
}

button.img-button {
  border: 0 !important;
  cursor: pointer;
}

.button.hover-light {
  color: var(--colors-white) !important;
}

.button.hover-dark {
  color: var(--colors-green-black) !important;
}

button:not(.slick-dots button):not(.img-button):hover,
.button.hover-dark:hover {
  background-color: var(--colors-black-opacity-35) !important;
}

.button.hover-light:hover {
  background: var(--colors-white-opacity-75) !important;
}

.button.inquire-button {
  margin: auto;
  overflow: hidden;
  padding-left: 3rem;
  padding-right: 3rem;
  --width: 90%;
  --rotation: -30deg;
  --x: -90%;
}

.button.inquire-button::after {
  background-color: var(--colors-black-opacity-15);
  content: "";
  display: block;
  height: 100px;
  position: absolute;
  right: var(--x);
  top: -100%;
  transform: rotate(var(--rotation));
  transform-origin: center center;
  width: var(--width);
}

.button.inquire-button.hover-light::after {
  background-color: var(--colors-white-opacity-15);
}

.button.portfolio-link-button {
  margin: 0 auto;
}

.sections .section-intro .intro-text .buttons {
  gap: 1rem;
}

.sections .section-intro .intro-text .button {
  margin-top: 0;
}

/*

Usage:

<div class=""buttons">
    <a href="#" class="button">
    <a href="#" class="button">
</div>

*/
/* svg */
svg .fill-gold {
  fill: var(--colors-gold);
}
svg .stroke-gold {
  stroke: var(--colors-gold);
}
svg .fill-white {
  fill: var(--colors-white);
}
svg .fill-green {
  fill: var(--colors-green);
}
svg .fill-green-black {
  fill: var(--colors-green-black);
}
svg .fill-green-10 {
  fill: var(--colors-green-10);
}
svg .fill-none {
  fill: none;
}
svg .fill-sq-dark {
  fill: var(--colors-squirrel-dark);
}
svg .stroke-sq-dark {
  stroke: var(--colors-squirrel-dark);
}

.beaded-divider-svg {
  display: block;
  margin: auto;
  max-width: 150px;
}

.arrow-right-svg {
  display: block;
  max-width: 75px;
  margin: auto;
}

/* flickity */
section .flickity-page-dots .dot {
  background: var(--colors-gold);
  color: var(--colors-gold);
}

section .flickity-prev-next-button .flickity-button-icon {
  fill: var(--colors-gold);
}

/* miscellaneous components */
.social-links {
  align-items: stretch;
  display: flex;
  font-size: 1.5rem;
  gap: 1.25rem;
  width: 100%;
}
.social-links a {
  min-width: 1em;
  display: block;
}

.phone {
  align-items: center;
  color: var(--colors-green);
  display: flex;
  width: 100%;
}
.phone svg {
  max-height: 2em;
}

.searchform > div {
  display: flex;
  gap: 0.5rem;
  position: relative;
}
.searchform input {
  border-radius: 0 !important;
  padding: 0.5rem 0.75rem;
}
.searchform input[type=submit] {
  background-color: var(--colors-gold);
  color: var(--colors-white);
  cursor: pointer;
  line-height: 1;
  padding: 0.5em 0.75em;
  text-align: center;
  text-transform: uppercase !important;
  font-size: 0.9rem !important;
  letter-spacing: 0.15rem !important;
}
.searchform label {
  position: absolute;
  right: 5px;
  top: 5px;
  z-index: -1;
}

/** Layouts **/
/* header */
body > header {
  position: fixed;
  top: 0;
  right: 0;
  visibility: hidden;
}

body nav button.menu-close {
  position: absolute;
  top: 3vw;
  right: 5vw;
  z-index: 10;
  width: 3vw;
}

@media (max-width: 800px) {
  body nav button.menu-close {
    top: 10vw;
    right: 10vw;
    width: 10vw;
  }
}
.fixed-menu-bar {
  align-items: center;
  background-color: rgba(255, 255, 255, 0.7490196078);
  box-sizing: border-box;
  display: flex;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  position: fixed;
  width: 100%;
  max-width: 100vw;
  z-index: 10;
  opacity: 0;
  top: 0;
  transition: background-color 0.3s ease;
}
@media (max-width: 800px) {
  .fixed-menu-bar {
    background-color: var(--colors-white);
  }
}
.fixed-menu-bar .logo {
  width: 75px;
}
.fixed-menu-bar button {
  border-width: 2px;
  color: var(--colors-green-black) !important;
}
.fixed-menu-bar:hover {
  background-color: #fff;
}

body.admin-bar .fixed-menu-bar {
  top: 32px;
}

/* hero */
body:has(.section-hero.light-bg-img) .open-close-menu .hamburger line {
  stroke: var(--colors-green-black);
}

body {
  --icon-size: clamp(4rem, 7vw, 8rem);
}

.section-hero {
  display: flex;
  overflow-x: hidden;
  position: relative;
  height: 75vh;
  min-height: 600px;
  /* https://gist.github.com/tyidnet/4564bb5db8c1a612d3b5c44820277a4b */
}
.section-hero.height-medium {
  height: 75vh;
}
.section-hero.height-short {
  min-height: 400px;
  height: 55vh;
}
.section-hero .hero-slides-container {
  height: 100%;
  width: 100%;
  position: absolute;
  z-index: 1;
}
.section-hero .hero-slides-container .hero-slide {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.section-hero .hero-slides-container .hero-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.section-hero .section-inner-wrapper {
  align-items: center;
  display: flex;
  justify-content: center;
  width: 100%;
  z-index: 3;
}
.section-hero .hero-menu-bar {
  align-items: center;
  container-type: inline-size;
  display: flex;
  min-height: 5vw;
  justify-content: space-between;
  overflow: hidden;
  padding: 7vw 5vw 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 10;
}
@media (min-width: 800px) {
  .section-hero .hero-menu-bar {
    padding: 2.5vw 5vw 0;
  }
}
.section-hero .hero-menu-bar a.monogram:hover,
.section-hero .hero-menu-bar a.monogram svg:hover,
.section-hero .hero-menu-bar .hamburger-menu-open:hover .hamburger-menu-open svg:hover {
  cursor: pointer;
}
.section-hero .hero-menu-bar a.monogram,
.section-hero .hero-menu-bar .hero-menu-open {
  align-items: center;
  display: flex;
}
@media (min-width: 1000px) {
  .section-hero .hero-menu-bar a.monogram,
  .section-hero .hero-menu-bar a.monogram svg {
    height: 5vw;
    width: 6vw;
  }
}
@media (max-width: 1000px) {
  .section-hero .hero-menu-bar a.monogram,
  .section-hero .hero-menu-bar a.monogram svg {
    height: 11vw;
    width: 12vw;
  }
}
@media (max-width: 800px) {
  .section-hero .hero-menu-bar a.monogram,
  .section-hero .hero-menu-bar a.monogram svg {
    height: 17vw;
    width: 18vw;
  }
}
.section-hero .hero-menu-bar .hero-menu-open,
.section-hero .hero-menu-bar .hero-menu-open svg {
  transition: all 0.3s ease;
}
@media (min-width: 1000px) {
  .section-hero .hero-menu-bar .hero-menu-open,
  .section-hero .hero-menu-bar .hero-menu-open svg {
    height: 4vw;
    width: 4vw;
  }
}
@media (max-width: 1000px) {
  .section-hero .hero-menu-bar .hero-menu-open,
  .section-hero .hero-menu-bar .hero-menu-open svg {
    height: 8vw;
    width: 8vw;
  }
}
@media (max-width: 800px) {
  .section-hero .hero-menu-bar .hero-menu-open,
  .section-hero .hero-menu-bar .hero-menu-open svg {
    height: 12vw;
    width: 12vw;
  }
}
.section-hero .hero-text {
  color: var(--colors-white);
  font-size: 2rem;
  letter-spacing: 0.2em;
  opacity: 0;
  text-align: center;
  text-transform: uppercase;
}
.section-hero.light-bg-img::after {
  background-color: var(--colors-white-opacity-35);
  content: "";
  display: block;
  height: 100%;
  position: absolute;
  width: 100%;
  z-index: 2;
}
.section-hero.light-bg-img a.monogram svg path,
.section-hero.light-bg-img a.monogram svg rect,
.section-hero.light-bg-img a.monogram svg polygon {
  fill: var(--colors-green-black);
}
.section-hero.light-bg-img .hero-text {
  color: var(--colors-green-black);
}
.section-hero.dark-bg-img::after {
  background-color: var(--colors-black-opacity-35);
  content: "";
  display: block;
  height: 100%;
  position: absolute;
  width: 100%;
  z-index: 2;
}
.section-hero .video-wrapper {
  height: 100%;
  position: absolute;
  overflow: hidden;
  width: 100vw;
  z-index: 2;
}
.section-hero .video-wrapper img {
  -o-object-fit: cover;
     object-fit: cover;
}
.section-hero .video-wrapper img,
.section-hero .video-wrapper iframe,
.section-hero .video-wrapper video {
  box-sizing: border-box;
  width: 177.77777778vh;
  height: 56.25vw;
  min-width: 100%;
  min-height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* footer */
footer {
  background-color: var(--colors-green);
  color: var(--colors-white);
  line-height: 1.25;
}
footer .footer-inner-wrapper {
  margin: auto;
  max-width: var(--sizes-content);
  padding: 4vw var(--sizes-site-padding) 3vw;
}
footer .footer-inner-wrapper h2 {
  color: var(--colors-white);
  line-height: 1;
  margin-bottom: 0.5rem;
  display: inline-block;
}
footer .footer-inner-wrapper div.line {
  border-bottom: 2px solid var(--colors-gold);
  margin-bottom: 1.5rem;
}
footer .footer-inner-wrapper a {
  color: var(--colors-white);
}
footer .footer-inner-wrapper span {
  display: block;
}
footer .footer-inner-wrapper .footer-columns {
  display: flex;
  margin-bottom: 6vw;
}
@media (max-width: 800px) {
  footer .footer-inner-wrapper .footer-columns {
    flex-direction: column;
    gap: 2rem;
  }
}
footer .footer-inner-wrapper .footer-columns .left {
  display: flex;
  flex: 1.75;
  gap: 3rem;
}
@media (max-width: 800px) {
  footer .footer-inner-wrapper .footer-columns .left {
    flex-direction: column;
  }
}
footer .footer-inner-wrapper .footer-columns .left .nav-items {
  font-family: var(--fonts-burford);
  letter-spacing: 0.25em;
  text-transform: uppercase;
}
footer .footer-inner-wrapper .footer-columns .left .nav-items a {
  color: var(--colors-white);
  padding: 0.15em 0;
}
@media (max-width: 800px) {
  footer .footer-inner-wrapper .footer-columns .left .nav-items a {
    padding: 0.5em;
    text-align: center;
  }
}
footer .footer-inner-wrapper .footer-columns .right {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 0.25em;
}
footer .footer-inner-wrapper .footer-columns .right .searchform {
  margin-bottom: 1rem;
}
footer .footer-inner-wrapper .footer-columns .right .searchform input[type=text] {
  flex: 1;
}
footer .footer-inner-wrapper .footer-columns .right span {
  display: inline-block;
  font-size: 0.9rem;
  letter-spacing: 0.2em;
}
@media (max-width: 800px) {
  footer .footer-inner-wrapper .footer-columns .right span {
    text-align: center;
  }
}
@media (max-width: 800px) {
  footer .footer-inner-wrapper .footer-columns .right .footer-address {
    text-align: center;
  }
}
footer .footer-inner-wrapper .footer-columns .right .footer-address p {
  font-size: 0.9rem;
  margin-bottom: 0;
}
footer .footer-inner-wrapper .footer-columns .right .social-links {
  font-size: 0.9rem;
  gap: 1em;
}
@media (max-width: 800px) {
  footer .footer-inner-wrapper .footer-columns .right .social-links {
    font-size: 1rem;
    gap: 2rem;
    justify-content: center;
    margin-top: 1rem;
  }
}
footer .footer-inner-wrapper .logo-logomark {
  display: block;
  margin-left: auto;
  margin-right: 0;
  max-width: 250px;
}
@media (max-width: 800px) {
  footer .footer-inner-wrapper .logo-logomark {
    margin-left: auto;
    margin-right: auto;
    margin-top: 3rem;
  }
}

/* PAGE: home */
.home .sections .section-hero {
  height: 100vh;
  max-height: 900px;
  overflow-x: hidden;
}
.home .sections .section-hero .logo-hero-white {
  width: 50vw;
  max-width: 50vw;
}
@media (max-width: 800px) {
  .home .sections .section-hero .logo-hero-white {
    width: 80vw;
    max-width: 80vw;
  }
}
.home .sections .section-hero .logo-hero-white .year,
.home .sections .section-hero .logo-hero-white .est,
.home .sections .section-hero .logo-hero-white .rc-group,
.home .sections .section-hero .logo-hero-white .expect-group {
  opacity: 0;
}
.home .sections .section-hero .hero-menu-bar {
  justify-content: right;
}
.home .sections .section-hero .hero-menu-bar a.monogram {
  display: none !important;
}
.home .sections .section-hero .dark-bg-img::after {
  background-color: transparent;
}
.home .sections .section-cards {
  height: 100%;
  max-width: 100%;
  padding: 8vw 0;
  text-align: center;
}
.home .sections .section-cards .beaded-divider-svg {
  margin: 2vw auto 3vw;
}
.home .sections .section-cards .text {
  margin: 0 auto 6vw;
  width: 75%;
}
@media (max-width: 800px) {
  .home .sections .section-cards .text {
    width: 100%;
  }
}
.home .sections .section-two-btn-cta .section-inner-wrapper .buttons {
  gap: 5vw;
  justify-content: center;
  margin-top: 3rem;
}
.home .sections .section-gallery-link .section-inner-wrapper {
  gap: 4vw;
}
.home .sections .section-gallery-link .section-inner-wrapper .subheading {
  display: block;
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  padding-bottom: 2rem;
  text-transform: uppercase;
}
.home .sections .section-gallery-link .section-inner-wrapper h2 {
  font-size: 3rem;
  line-height: 1.15;
  max-width: 28ch;
}
.home .sections .section-testimonials-carousel .section-inner-wrapper {
  padding: 0;
}
.home .sections .section-testimonials-carousel .section-inner-wrapper article {
  background-color: var(--colors-white);
}

/* /venues/ */
.page-venues .sections section.section-intro .section-inner-wrapper {
  display: flex;
  flex-direction: column;
  gap: 5vw;
}
.page-venues .sections section.section-intro .section-inner-wrapper .graphic-logo-icon-dark {
  max-width: 350px;
  margin: auto;
}
.page-venues .sections section.section-intro .section-inner-wrapper .intro-text h1 {
  margin-bottom: 2rem;
}
.page-venues .sections section.section-intro .section-inner-wrapper .intro-text p {
  line-height: 1.75;
  margin: auto;
  max-width: 900px;
  text-align: center;
}
.page-venues .sections section.section-venues {
  display: flex;
  justify-content: center;
}
.page-venues .sections section.section-venues .section-inner-wrapper .cards {
  gap: 5vw;
  display: grid;
  grid-template-columns: 30vw 30vw;
  grid-auto-rows: 40vw;
  margin: auto;
  text-align: center;
}
@media (max-width: 800px) {
  .page-venues .sections section.section-venues .section-inner-wrapper .cards {
    grid-template-columns: 40vw 40vw;
    grid-auto-rows: 50vw;
  }
  .page-venues .sections section.section-venues .section-inner-wrapper .cards h3 {
    font-size: 1rem;
  }
}
@media (max-width: 500px) {
  .page-venues .sections section.section-venues .section-inner-wrapper .cards {
    grid-template-columns: 80vw;
    grid-auto-rows: 100vw;
  }
  .page-venues .sections section.section-venues .section-inner-wrapper .cards h3 {
    font-size: 1.5rem;
  }
}
.page-venues .sections section.section-venues .section-inner-wrapper article img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/* /portfolios/ */
.page-portfolios .sections section.section-intro .section-inner-wrapper {
  display: flex;
  flex-direction: column;
  gap: 5vw;
}
.page-portfolios .sections section.section-intro .section-inner-wrapper .graphic-logo-icon-dark {
  max-width: 350px;
  margin: auto;
}
.page-portfolios .sections section.section-intro .section-inner-wrapper .intro-text h1 {
  margin-bottom: 2rem;
}
.page-portfolios .sections section.section-intro .section-inner-wrapper .intro-text p {
  line-height: 1.75;
  margin: auto;
  max-width: 900px;
  text-align: center;
}
.page-portfolios .sections section.section-portfolios {
  display: flex;
  justify-content: center;
}
.page-portfolios .sections section.section-portfolios .cards {
  gap: 5vw;
  display: grid;
  grid-template-columns: 30vw 30vw;
  grid-auto-rows: 40vw;
  margin: auto;
  text-align: center;
}
@media (max-width: 800px) {
  .page-portfolios .sections section.section-portfolios .cards {
    grid-template-columns: 40vw 40vw;
    grid-auto-rows: 50vw;
  }
  .page-portfolios .sections section.section-portfolios .cards h3 {
    font-size: 1rem;
  }
}
@media (max-width: 500px) {
  .page-portfolios .sections section.section-portfolios .cards {
    grid-template-columns: 80vw;
    grid-auto-rows: 100vw;
  }
  .page-portfolios .sections section.section-portfolios .cards h3 {
    font-size: 1.5rem;
  }
}
.page-portfolios .sections section.section-portfolios article img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

/* PAGE: /employment/ */
.page-employment .sections ul {
  padding-left: 2em;
}
.page-employment .sections ul li {
  margin-bottom: 0.5em;
}
.page-employment .sections p {
  line-height: 1.5;
}
.page-employment .sections .section-hero {
  background-position: top center !important;
}
.page-employment .sections .section-intro .heading {
  line-height: 1.25;
  margin: 3rem auto 4rem;
  max-width: 40ch;
}
.page-employment .sections .section-intro .beaded-divider-svg {
  margin: 6rem auto 0;
}
@media (max-width: 800px) {
  .page-employment .sections .section-intro .beaded-divider-svg {
    margin: 6rem auto 3rem;
  }
}
.page-employment .sections .section-jobs .section-inner-wrapper {
  padding-top: 0;
}
.page-employment .sections .section-jobs .jobs {
  margin-bottom: 4rem;
}
.page-employment .sections .section-jobs .job {
  margin-top: 0;
  padding-top: 6rem;
}
.page-employment .sections .section-jobs .job .description div.word {
  line-height: 1.5;
}
.page-employment .sections .section-jobs .job .description .br {
  padding-bottom: 1em;
}
.page-employment .sections .section-jobs .job .description span.p.hide.hidden,
.page-employment .sections .section-jobs .job .description .br.hidden {
  display: none;
  padding-bottom: 0;
}
.page-employment .sections .section-jobs .job .description:has(.br.hidden) ~ .apply-job {
  margin-top: 1rem;
}
.page-employment .sections .section-jobs h2 {
  color: var(--colors-gold);
  margin-bottom: 0.5rem;
}
.page-employment .sections .section-jobs .read-more,
.page-employment .sections .section-jobs .read-less {
  border: none !important;
  color: var(--colors-gold);
  display: none;
  letter-spacing: 0.2em;
  margin-left: 0.15em;
  padding: 0;
  text-transform: unset !important;
}
.page-employment .sections .section-jobs .read-more:hover,
.page-employment .sections .section-jobs .read-less:hover {
  cursor: pointer;
}
.page-employment .sections .section-jobs .description {
  font-kerning: none;
  text-rendering: optimizeSpeed;
}
.page-employment .sections .section-jobs .description-screen-reader-only:not(:focus):not(:active) {
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}
.page-employment .sections .section-jobs .beaded-divider-svg {
  margin: 6rem auto 3rem;
}

/* SINGLE venue */
.sections.venue section.section-details .section-inner-wrapper {
  align-items: stretch;
  display: flex;
  justify-content: center;
  gap: 4vw;
}
@media (max-width: 1000px) {
  .sections.venue section.section-details .section-inner-wrapper {
    gap: 8vw;
    flex-direction: column;
  }
}
.sections.venue section.section-details .section-inner-wrapper .description {
  background: var(--colors-green-15);
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 2vw;
  padding: 5vw 4vw 3vw 4vw;
  text-align: center;
  align-items: center;
  justify-content: center;
}
.sections.venue section.section-details .section-inner-wrapper .description .venue-title {
  font-family: var(--fonts-body);
  font-size: 1.15rem;
  letter-spacing: 0.25em;
  line-height: 1;
  margin-bottom: 0;
  text-transform: uppercase;
}
.sections.venue section.section-details .section-inner-wrapper .description .description-text p {
  font-size: 0.9rem;
  letter-spacing: 0.2em;
  line-height: 2;
}
.sections.venue section.section-details .section-inner-wrapper .description .beaded-divider-svg {
  margin-top: 0;
  margin-bottom: 0;
}
.sections.venue section.section-details .section-inner-wrapper .details {
  border: 2px solid var(--colors-gold);
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 1rem;
  padding: 2rem;
}
.sections.venue section.section-details .section-inner-wrapper .details h2 {
  line-height: 1;
  margin-bottom: 0;
  text-align: center;
}
.sections.venue section.section-details .section-inner-wrapper .details ul {
  display: flex;
  flex-direction: column;
  font-size: 0.9rem;
  gap: 1rem;
  line-height: 2;
  list-style-type: none;
  margin-top: 2rem;
  padding-left: 0;
}
.sections.venue section.section-details .section-inner-wrapper .details ul span {
  font-family: var(--fonts-genova-med);
}
.sections.venue section.section-details .section-inner-wrapper .details ul li:last-of-type {
  margin-top: 4rem;
}
.sections.venue section.section-details .section-inner-wrapper .details ul li p:only-of-type {
  display: inline;
  font-size: 0.9rem;
}
.sections.venue section.section-details .section-inner-wrapper .details ul li ul {
  display: block;
  list-style: initial;
  margin-top: 0;
  padding-left: 2rem;
}
.sections.venue section.section-details .section-inner-wrapper .details ul li ul li:last-of-type {
  margin-top: 0;
}
.sections.venue section.section-portfolio .section-inner-wrapper {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  text-align: center;
}
.sections.venue section.section-portfolio .section-inner-wrapper .portfolio-link {
  display: block;
  margin-top: 1rem;
  overflow: hidden;
  position: relative;
}
.sections.venue section.section-portfolio .section-inner-wrapper .portfolio-link img {
  width: 100cqw;
  height: 60cqw;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 20s ease;
}
.sections.venue section.section-portfolio .section-inner-wrapper .portfolio-link img:hover {
  transform: scale(1.2);
}

/* SINGLE portfolio */
.sections.portfolio .section-list-intro .section-inner-wrapper .intro-text {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.sections.portfolio .buttons {
  display: flex;
  gap: 4rem;
  justify-content: center;
  margin-bottom: 2rem;
}
.sections.portfolio .buttons > * {
  display: block;
  margin: unset;
}
.sections.portfolio .portfolio-wrapper {
  -moz-columns: 350px;
       columns: 350px;
}
.sections.portfolio .portfolio-wrapper img {
  display: block;
  max-width: 100%;
  transform-style: preserve-3d;
  transition: transform 1.2s;
  will-change: transform;
}
.sections.portfolio .portfolio-wrapper [lightbox-toggle] {
  margin-bottom: 1rem;
  overflow: hidden;
}
.sections.portfolio .portfolio-wrapper [lightbox-toggle]:hover {
  cursor: zoom-in;
  box-shadow: 0 0 1rem var(--colors-black-opacity-15);
}
.sections.portfolio .portfolio-wrapper [lightbox-toggle]:hover img {
  transform: scale(1.075);
}
.sections.portfolio .c-lightbox {
  align-items: center;
  background-color: rgba(0, 0, 0, 0.85);
  bottom: 0;
  color: var(--colors-gold);
  display: flex;
  flex-direction: column;
  height: 100vh;
  justify-content: center;
  left: 0;
  letter-spacing: 0.25em;
  opacity: 0;
  pointer-events: none;
  position: fixed;
  right: 0;
  top: 0;
  transition: opacity 0.3s;
  width: 100vw;
  z-index: 11;
}
.sections.portfolio .c-lightbox.open {
  opacity: 1;
  pointer-events: all;
}
.sections.portfolio .c-lightbox.open img {
  cursor: grab;
}
.sections.portfolio .c-lightbox.open img:active {
  cursor: grabbing;
}
.sections.portfolio .c-lightbox .container {
  width: 100%;
  height: 100%;
}
.sections.portfolio .c-lightbox .close {
  z-index: 15;
  position: absolute;
  cursor: pointer;
  top: 5vw;
  right: 5vw;
  font-size: 30px;
  padding: 20px;
  color: var(--colors-gold);
}
.sections.portfolio .c-lightbox .swiper-container {
  width: 100%;
  height: 100%;
}
.sections.portfolio .c-lightbox .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
}
.sections.portfolio .c-lightbox .swiper-pagination {
  color: var(--colors-gold);
}
.sections.portfolio .c-lightbox .swiper-button-next,
.sections.portfolio .c-lightbox .swiper-button-prev {
  color: var(--colors-gold);
}
.sections.portfolio .c-lightbox .swiper-button-next:after,
.sections.portfolio .c-lightbox .swiper-button-prev:after {
  font-size: 30px;
}
.sections.portfolio .c-lightbox img {
  width: auto;
  height: auto;
  max-height: 80vh;
  max-width: 80vw;
}

/* OTHER PAGES */
/* default subpage*/
.page-default-template .sections section {
  margin-top: 4rem !important;
}

.page-default .sections .section-inquire-form {
  margin-top: 4rem;
}

/* PAGE: /corporate-events/ */
.page-corporate-events .sections .section-inquire-form {
  margin-top: 4rem;
}

/* PAGE: /faq/ */
.page-faq .sections .section-faq .faq.beaded:first-of-type .text {
  margin-top: 1rem;
}
.page-faq .sections .section-faq .faq.beaded .text {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 4rem;
  margin-top: 4rem;
}
.page-faq .sections .section-faq .text {
  margin-top: 4rem;
}
.page-faq .sections .section-faq .beaded-divider-svg {
  margin-top: 1rem;
  margin-bottom: 2rem;
}

/* PAGE: /weddings/ */
.page-weddings .sections section.parallax-background-image:not(.section-testimonials) .section-inner-wrapper {
  padding-bottom: 18vw;
  padding-top: 18vw;
}
.page-weddings .sections section.section-box-rows .section-inner-wrapper .box-rows .box-row .image img {
  width: auto;
}
@media (max-width: 799px) {
  .page-weddings .sections section.section-box-rows .section-inner-wrapper .box-rows .box-row .image {
    text-align: center;
  }
}
@media (min-width: 800px) {
  .page-weddings .sections section.section-box-rows .section-inner-wrapper .box-rows .box-row {
    flex-direction: row;
  }
  .page-weddings .sections section.section-box-rows .section-inner-wrapper .box-rows .box-row:nth-child(odd) {
    flex-direction: row-reverse;
  }
  .page-weddings .sections section.section-box-rows .section-inner-wrapper .box-rows .box-row:nth-child(even) .image {
    text-align: right;
  }
}
.page-weddings .sections section.section-testimonials .section-inner-wrapper {
  background-color: transparent;
}

/* PAGE: /about/ */
.page-about .sections .section-two-columns {
  width: 100%;
  margin-left: 0;
  margin-right: 0;
  margin-top: 2rem;
}
.page-about .sections .section-two-columns .section-inner-wrapper {
  margin: 8vw 8vw;
}
.page-about .sections .section-two-columns .section-inner-wrapper .columns-wrapper .subheading {
  font-size: clamp(2rem, 8.5cqw, 4rem);
}
.page-about .sections .section-two-columns .section-inner-wrapper .columns-wrapper .text {
  font-family: var(--fonts-body) !important;
  text-transform: initial;
}
.page-about .sections .section-two-columns .section-inner-wrapper .left .beaded-divider-svg {
  margin-top: 1.5rem;
}
.page-about .sections .section-cta .section-inner-wrapper .heading {
  margin-bottom: 6vw;
}
.page-about .sections .section-cta .section-inner-wrapper p {
  margin-bottom: 4vw;
  text-transform: initial;
}
.page-about .sections .section-team-photo .section-inner-wrapper {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.page-about .sections .section-team-photo .section-inner-wrapper .beaded-divider-svg {
  margin-bottom: 1rem;
}
.page-about .sections .section-team-photo .section-inner-wrapper .text {
  margin: auto;
  width: 90%;
}
.page-about .sections .section-team-photo .section-inner-wrapper .text p {
  line-height: 2;
}
.page-about .sections .section-team-photo .section-inner-wrapper .image {
  max-width: 70%;
  margin: auto;
  margin-top: 4rem;
}

.page-search .sections .section-intro .section-inner-wrapper {
  padding-bottom: 0;
}
.page-search .sections .section-results .section-inner-wrapper {
  padding-top: 1rem;
  text-align: center;
}
.page-search .sections .section-results .section-inner-wrapper h3 {
  font-size: 1.5rem;
  font-family: var(--fonts-body);
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}
.page-search .sections .section-results .section-inner-wrapper h3 a {
  display: inline-block;
  padding: 0.5em 0.75em;
}
.page-search .sections .section-results .section-inner-wrapper h3 a:hover {
  background-color: rgba(197, 145, 44, 0.2784313725);
}

.page-confirmation .sections .contact-confirmation h1 {
  font-family: var(--fonts-genova);
  font-size: 1.4rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.page-confirmation .sections .contact-confirmation .intro-text .text {
  margin-top: 0;
}

/* PAGE: misc */
.page-special-events .sections .section-inquire-form {
  margin-top: 5vw;
}

.page-corporate-events .section-cta.parallax-background-image .heading,
.page-about .section-cta.parallax-background-image .heading,
.page-special-events .section-cta.parallax-background-image .heading {
  margin-bottom: 2rem;
}

.page-corporate-events .section-cta.parallax-background-image .text > *,
.page-about .section-cta.parallax-background-image .text > *,
.page-special-events .section-cta.parallax-background-image .text > * {
  font-size: 1.3rem;
  text-transform: capitalize;
}

.page-contact .section-inquire-form,
.page-template-default .section-inquire-form {
  margin-top: 4rem;
}

.page-subpage .section-two-columns .section-inner-wrapper,
.page-corporate .section-two-columns .section-inner-wrapper {
  margin-bottom: 8vw !important;
}

.page-venues .sections section.section-venues .section-inner-wrapper article img,
.page-portfolios .sections section.section-portfolios article img {
  position: absolute;
}

.page-venues .sections .section-cards .cards .card .front .contents,
.page-portfolios .sections .section-cards .cards .card .front .contents {
  z-index: 2;
  padding: 8cqw;
}

@media (min-width: 799px) {
  .page-venues .sections .section-cards .cards .card .front .contents,
  .page-portfolios .sections .section-cards .cards .card .front .contents {
    display: none;
  }
}
.page-corporate-events .section-cta.parallax-background-image .text > *,
.page-about .section-cta.parallax-background-image .text > *,
.page-special-events .section-cta.parallax-background-image .text > * {
  text-transform: initial;
}

/** TEST NEW EXTENSION **//*# sourceMappingURL=style.css.map */