@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap");
/* Overwrite Gutenberg Variables */
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap");
:root {
  --wp--style--global--content-size: 1200px;
}

/* Breakpoints */
/* Typography */
/* Color Palette */
/* Layout */
footer {
  align-items: center;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding: 1rem 0;
}
footer .logo {
  display: flex;
  justify-content: center;
}
@media only screen and (min-width: 1024px) {
  footer .logo {
    justify-content: flex-start;
  }
}
footer .logo img {
  max-height: 10rem;
  max-width: 16rem;
}
footer .hours {
  text-align: center;
}
@media only screen and (min-width: 1024px) {
  footer .hours {
    text-align: left;
  }
}
footer nav ul {
  display: flex;
  flex-direction: column;
  list-style-type: none;
  margin: 0;
  padding: 0;
}
@media only screen and (min-width: 1024px) {
  footer nav ul {
    flex-direction: row;
  }
}
footer nav ul li {
  margin: 1rem 0 0 0;
  text-align: center;
}
@media only screen and (min-width: 1024px) {
  footer nav ul li {
    margin: 0 0 0 2rem;
    text-align: left;
  }
}
footer .social-links {
  gap: 15px;
}
footer .social-links .social-logo {
  text-decoration: none;
  color: #f2e8cd;
  font-size: 2rem;
}

.header-wrapper {
  position: relative;
}

header {
  padding: 4rem 0;
}
@media only screen and (min-width: 1024px) {
  header {
    padding: 2rem 0;
  }
}
header nav {
  align-items: center;
  display: flex;
  justify-content: center;
}
header nav .logo {
  max-height: 10rem;
}
header nav .toggle-mobile-menu {
  background: none;
  border: none;
  display: flex;
  flex-direction: column;
  height: 1.25rem;
  justify-content: center;
  padding: 0;
  position: relative;
}
@media only screen and (min-width: 1024px) {
  header nav .toggle-mobile-menu {
    display: none;
  }
}
header nav .toggle-mobile-menu span {
  background-color: white;
  display: block;
  height: 0.25rem;
  opacity: 1;
  transition: opacity 0.2s ease-in-out;
  width: 1.75rem;
}
header nav .toggle-mobile-menu::before, header nav .toggle-mobile-menu::after {
  background-color: white;
  content: "";
  display: flex;
  height: 0.25rem;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  transition: transform 0.2s ease-in-out;
  width: 1.75rem;
}
header nav .toggle-mobile-menu::before {
  transform: translateY(calc(-50% - 0.5rem));
}
header nav .toggle-mobile-menu::after {
  transform: translateY(calc(-50% + 0.5rem));
}
header nav ul {
  display: none;
  list-style-type: none;
  margin: 0;
  padding: 1rem;
}
@media only screen and (min-width: 1024px) {
  header nav ul {
    align-items: center;
    display: flex;
    padding: 0;
  }
}
header nav ul li:not(:first-child) {
  margin: 1rem 0 0 0;
}
@media only screen and (min-width: 1024px) {
  header nav ul li:not(:first-child) {
    margin: 0 0 0 2rem;
  }
}
header nav ul li a {
  text-decoration: none;
}
header nav.active .toggle-mobile-menu span {
  opacity: 0;
}
header nav.active .toggle-mobile-menu::before {
  transform: translateY(-50%) rotate(45deg);
}
header nav.active .toggle-mobile-menu::after {
  transform: translateY(-50%) rotate(-45deg);
}
@media only screen and (max-width: 1023px) {
  header nav.active ul {
    bottom: 0;
    display: flex;
    flex-direction: column;
    left: 0;
    position: absolute;
    transform: translateY(100%);
    width: 100vw;
    z-index: 1000;
  }
}

/* Overwrite Gutenberg Variables */
:root {
  --wp--style--global--content-size: 1200px;
}

/* Breakpoints */
/* Typography */
/* Color Palette */
/* Layout */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
}

body.scroll-lock {
  overflow: hidden;
}

img {
  display: flex;
  max-width: 100%;
}

button,
input[type=submit],
label {
  cursor: pointer;
  font-size: 1rem;
}

i {
  display: flex;
}

.epic-button {
  border: 1px solid #f2e8cd;
  display: inline-block;
  font-family: "Playfair Display", serif;
  font-size: 20px;
  padding: 1rem 2rem;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
}
.epic-button.primary {
  background-color: #000000;
  color: #ffffff;
}
.epic-button.secondary {
  background-color: #f2e8cd;
  color: #000000;
}

.h100 {
  height: 100%;
}

.animate {
  transition-duration: 0.5s;
  transition-property: opacity, transform;
}
.animate.fade-in {
  opacity: 0;
}
.animate.fade-in.animated {
  opacity: 1;
}
.animate.fade-up {
  opacity: 0;
  transform: translateY(20px);
}
.animate.fade-up.animated {
  opacity: 1;
  transform: translateY(0);
}
.animate.fade-down {
  opacity: 0;
  transform: translateY(-20px);
}
.animate.fade-down.animated {
  opacity: 1;
  transform: translateY(0);
}
.animate.fade-left {
  opacity: 0;
  transform: translateX(20px);
}
.animate.fade-left.animated {
  opacity: 1;
  transform: translateX(0);
}
.animate.fade-right {
  opacity: 0;
  transform: translateX(-20px);
}
.animate.fade-right.animated {
  opacity: 1;
  transform: translateX(0);
}

.link-grid {
  width: 75%;
  margin: 0 auto;
  position: relative;
  top: -50px;
  padding: 15px !important;
  z-index: 9999;
}
.link-grid a {
  font-family: "Playfair Display", serif;
}

@media only screen and (min-width: 1024px) {
  .learn-more {
    margin-top: -90px;
    padding-top: 100px !important;
  }
}

.mx-3 {
  margin-left: 1rem !important;
  margin-right: 1rem !important;
}

iframe {
  height: 300px;
}
@media only screen and (min-width: 782px) {
  iframe {
    height: 700px;
  }
}

.landing-img {
  height: 300px;
}
@media only screen and (min-width: 782px) {
  .landing-img {
    height: 700px;
  }
}
.landing-img img {
  height: 100%;
  width: 100%;
}

.border-black {
  border-color: #000000;
}

.border-top-to-left {
  border-top: 1px solid;
}
@media only screen and (min-width: 992px) {
  .border-top-to-left {
    border-left: 1px solid;
    border-top: none;
  }
}

.max-width-300 {
  max-width: 300px !important;
}

/* Overwrite Gutenberg Variables */
:root {
  --wp--style--global--content-size: 1200px;
}

/* Breakpoints */
/* Typography */
/* Color Palette */
/* Layout */
.wp-block-columns {
  position: relative;
}

.wp-block-group {
  max-width: 100% !important;
  overflow: hidden;
  margin: 0 auto;
}
.wp-block-group.reverse-columns-mobile > .wp-block-columns .wp-block-column:first-child {
  order: 1;
}
@media only screen and (min-width: 782px) {
  .wp-block-group.reverse-columns-mobile > .wp-block-columns .wp-block-column:first-child {
    order: initial;
  }
}

.wp-block-group__inner-container,
.content {
  max-width: none;
  margin: 0 auto;
}

.content-padding,
.wp-block-group {
  padding: 3rem 1rem;
}
@media only screen and (min-width: 782px) {
  .content-padding,
  .wp-block-group {
    padding: 6rem 2rem;
  }
}

.content-padding-x {
  padding: 0 1rem;
}
@media only screen and (min-width: 782px) {
  .content-padding-x {
    padding: 0 2rem;
  }
}

.content-padding-y {
  padding: 3rem 0;
}
@media only screen and (min-width: 782px) {
  .content-padding-y {
    padding: 6rem 0;
  }
}

.wp-block-columns {
  margin: 0;
}
.wp-block-columns + .wp-block-columns {
  margin-top: 6rem;
}

.wp-block-cover {
  padding: 0;
}

.frame {
  margin: 0 auto;
  max-width: var(--wp--style--global--content-size);
}

.has-white-background-color {
  background-color: #ffffff;
}

.has-black-background-color {
  background-color: #000000;
}

/* Overwrite Gutenberg Variables */
:root {
  --wp--style--global--content-size: 1200px;
}

/* Breakpoints */
/* Typography */
/* Color Palette */
/* Layout */
body {
  font-family: "Montserrat", sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
li,
a,
button {
  margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Playfair Display", serif;
  font-style: normal;
  font-weight: 400 !important;
}

h1,
.h1 {
  font-size: 60px !important;
}
@media only screen and (min-width: 782px) {
  h1,
  .h1 {
    font-size: 60px !important;
  }
}
@media only screen and (min-width: 1024px) {
  h1,
  .h1 {
    font-size: 80px !important;
  }
}

h2,
.h2 {
  font-size: 40px !important;
}
@media only screen and (min-width: 782px) {
  h2,
  .h2 {
    font-size: 40px;
  }
}
@media only screen and (min-width: 1024px) {
  h2,
  .h2 {
    font-size: 40px !important;
  }
}

h3,
.h3 {
  font-size: max(4vw, 1.5rem);
}
@media only screen and (min-width: 782px) {
  h3,
  .h3 {
    font-size: 2rem;
  }
}
@media only screen and (min-width: 1024px) {
  h3,
  .h3 {
    font-size: 2.5rem;
  }
}

h4,
.h4 {
  font-size: max(3vw, 1.25rem);
}
@media only screen and (min-width: 782px) {
  h4,
  .h4 {
    font-size: 1.25rem;
  }
}
@media only screen and (min-width: 1024px) {
  h4,
  .h4 {
    font-size: 1.5rem;
  }
}

h5,
.h5 {
  font-size: 1rem;
  line-height: 1.5;
}
@media only screen and (min-width: 782px) {
  h5,
  .h5 {
    font-size: 1rem;
  }
}
@media only screen and (min-width: 1024px) {
  h5,
  .h5 {
    font-size: 1rem;
  }
}

p,
li,
a,
button {
  font-family: "Montserrat", sans-serif;
  font-size: 1.1rem;
  font-style: normal;
  font-weight: 400;
}
@media only screen and (min-width: 782px) {
  p,
  li,
  a,
  button {
    font-size: 1.1rem;
  }
}
@media only screen and (min-width: 1024px) {
  p,
  li,
  a,
  button {
    font-size: 1.1rem;
  }
}

p {
  line-height: 1.7;
}

.text-left {
  text-align: left;
}
.text-center {
  text-align: center;
}
.text-right {
  text-align: right;
}

.epic-heading + .epic-accordions, .epic-heading + .epic-form, .epic-heading + .epic-gallery, .epic-heading + .epic-paragraph, .epic-heading + .wp-block-columns {
  margin-top: 2rem;
}

.epic-paragraph + .epic-button-wrapper, .epic-paragraph + .epic-accordions, .epic-paragraph + .epic-form, .epic-paragraph + .epic-gallery, .epic-paragraph + .epic-heading {
  margin-top: 2rem;
}

.epic-paragraph > a {
  text-decoration: none;
  color: inherit;
}