@charset "UTF-8";
/*!
Theme Name: CityCenterDC 2023
Theme URI: https://www.citycenterdc.com/
Author: Openbox9 (Joe Tan)

DO NOT EDIT style.css DIRECTLY. 

Use style.scss.
*/
/*
Fonts
*/
/*
Colors
*/
/*
Responsive breakpoints
*/
/*
Animations
*/
/*
Misc
*/
:root {
  --font-base-size: 18px;
  --gutter: calc((100vw - 1760px) / 2);
  --gutter-left: calc((100vw - 1760px) / 2);
  --gutter-right: calc((100vw - 1760px) / 2);
  --scrollbarWidth: 0px;
  --viewportWidth: calc(100vw - var(--scrollbarWidth, 0));
  --block-margin: 64px;
}
@media screen and (max-width: 1942.0689655172px) {
  :root {
    --gutter-left: 4.6875vw;
    --gutter-right: 4.6875vw;
    --gutter: 4.6875vw;
  }
}
@media screen and (max-width: 1450px) {
  :root {
    --block-margin: 44.8px;
  }
}
@media screen and (max-width: 1200px) {
  :root {
    --block-margin: 38.4px;
  }
}
@media screen and (max-width: 1024px) {
  :root {
    --block-margin: 41.6px;
  }
}

@font-face {
  font-family: hv-fitzgerald;
  src: url("fonts/HV_Fitzgerald_Bold_Italic.woff") format("woff"), url("fonts/HV_Fitzgerald_Bold_Italic.woff2") format("woff2"), url("fonts/HV_Fitzgerald_Bold_Italic.ttf") format("truetype"), url("fonts/HV_Fitzgerald_Bold_Italic.otf") format("opentype");
  font-weight: 700;
  font-style: italic;
}
@font-face {
  font-family: hv-fitzgerald;
  src: url("fonts/HV_Fitzgerald_Bold.woff") format("woff"), url("fonts/HV_Fitzgerald_Bold.woff2") format("woff2"), url("fonts/HV_Fitzgerald_Bold.ttf") format("truetype"), url("fonts/HV_Fitzgerald_Bold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: hv-fitzgerald;
  src: url("fonts/HV_Fitzgerald_Italic.woff") format("woff"), url("fonts/HV_Fitzgerald_Italic.woff2") format("woff2"), url("fonts/HV_Fitzgerald_Italic.ttf") format("truetype"), url("fonts/HV_Fitzgerald_Italic.otf") format("opentype");
  font-weight: 400;
  font-style: italic;
}
@font-face {
  font-family: hv-fitzgerald;
  src: url("fonts/HV_Fitzgerald_Regular.woff") format("woff"), url("fonts/HV_Fitzgerald_Regular.woff2") format("woff2"), url("fonts/HV_Fitzgerald_Regular.ttf") format("truetype"), url("fonts/HV_Fitzgerald_Regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
}
@keyframes loading {
  100% {
    background-position: 0px -570px;
  }
}
@keyframes loop {
  from {
    transform: translate(0%, 0%);
  }
  to {
    transform: translate(-50%, 0%);
  }
}
@keyframes pulse {
  0% {
    opacity: 1;
  }
  25% {
    opacity: 1;
  }
  50% {
    opacity: 0.2;
  }
  75% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
/*
Author: Joe Tan (joetan54@gmail.com)

Copyright (c) 2018 Joe Tan
THIS CODE MAY NOT BE REDISTRIBUTED WITHOUT EXPLICIT PERMISSION
*/
/*
@mixin icon-char($what) {
    @if map-has-key($icons, $what) {

        content: make-icon(map-get($icons, $what));
    }
    @else {
        content: '???';
    }

}
@mixin icon-font($what) {
    font-family: $font-icon;
    font-weight: normal;
    text-rendering: auto; 
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;    
    text-transform:none !important;
    @if map-has-key($icons, $what) {
        @include icon-char($what);
    }
}
*/
xmp {
  margin: 0 0 1em;
  background: yellow;
  color: #000;
  overflow: hidden;
  font-size: 10px;
}

img.sample {
  background: #00aaee;
}

html, body {
  margin: 0;
  padding: 0;
  font-family: neue-haas-grotesk-text, sans-serif;
  font-size: var(--font-base-size, 18px);
  font-weight: 400;
  line-height: 1.3888889;
  color: #4D4D4F;
  text-align: left;
  min-width: 320px;
  -webkit-font-smoothing: antialiased;
}

html {
  overflow-y: scroll;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  background: white;
}

body {
  margin: 0;
  padding: 0;
  background: white;
  overflow-anchor: none;
}
body.rtl {
  direction: rtl;
  unicode-bidi: embed;
  text-align: right;
}

strong, b {
  font-weight: 700;
}

em, i {
  font-style: italic;
}

em strong,
strong em {
  font-weight: 700;
  font-style: italic;
}

.hidden {
  display: block;
  position: absolute !important;
  top: -10000px !important;
  height: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  visibility: hidden !important;
}

.clear {
  clear: both;
}

.alignleft {
  float: left;
}

.alignright {
  float: right;
}

.entity {
  font-family: "Lucida Sans Unicode", "Arial Unicode MS", Arial, Helvetica, sans-serif;
}

.text-sans-serif {
  font-family: neue-haas-grotesk-text, sans-serif;
}

.text-serif {
  font-family: hv-fitzgerald, serif;
}

.text-headline {
  font-family: hv-fitzgerald, serif;
}

.text-cursive {
  font-family: cursive;
}

.text-uppercase {
  text-transform: uppercase;
}

.text-lowercase {
  text-transform: lowercase;
}

.text-capitalize {
  text-transform: capitalize;
}

.text-aligncenter,
.text-center {
  text-align: center;
}

.text-alignright,
.text-right {
  text-align: right;
}

.text-alignleft,
.text-left {
  text-align: left;
}

/*
.text-white         { color: $color-white;}
.text-black         { color: $color-black;}
.text-red           { color: $color-red;}
.text-green         { color: $color-green;}
.text-blue          { color: $color-blue;}
.text-light-blue    { color: $color-light-blue;}
.text-orange        { color: $color-orange;}
.text-yellow        { color: $color-yellow;}
.text-navy-blue     { color: $color-navy-blue;}
.text-teal          { color: $color-teal;}
.text-purple        { color: $color-purple;}
.text-gray          { color: $color-gray;}
.text-silver        { color: $color-silver;}
.text-dark-gray     { color: $color-dark-gray;}
*/
.text-nowrap {
  white-space: nowrap;
}

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

img[align=left],
img.alignleft {
  margin: 0 15px 15px 0;
}

img[align=right],
img.alignright {
  margin: 0 0 15px 15px;
}

img.aligncenter {
  display: block;
  margin: 0 auto 15px auto;
}

img.circle {
  border-radius: 50%;
}

img,
a > img {
  border: 0;
}

a {
  color: currentColor;
  transition: all 0.2s ease;
  -webkit-text-decoration: underline solid currentColor;
          text-decoration: underline solid currentColor;
  text-decoration-color: var(--link-text-decoration-color-initial, currentColor);
  text-decoration-thickness: 1.5px;
  text-underline-offset: 0.05em;
}
a:hover {
  text-decoration-color: var(--link-text-decoration-color-hover, transparent);
}
a.more {
  white-space: nowrap;
}

.has-link-hover-underline {
  --link-text-decoration-color-initial: transparent;
  --link-text-decoration-color-hover: currentColor;
}

iframe {
  max-width: 100%;
}
.fb_iframe_widget iframe {
  max-width: none;
}

.clickable {
  cursor: pointer;
}

.anchor:before {
  content: "";
  display: block;
  height: 120px;
  margin: -120px 0 0;
}

th, td {
  border: 0;
}

.toggle {
  cursor: pointer;
}

address {
  font-style: normal;
}
address a {
  text-decoration: none;
  display: inline-block;
}

@media screen and (min-width: 768px) {
  .mobile-only, .desktop-hide {
    display: none !important;
  }
}
@media screen and (max-width: 767px) {
  .mobile-hide, .desktop-only {
    display: none !important;
  }
}
.fb_iframe_widget,
.fb_iframe_widget > span {
  max-width: 100%;
  width: 100%;
}

#wpadminbar {
  z-index: 1101;
}

/*
Styles loaded into backend Gutenberg admin and front end
*/
.has-padding-top {
  padding-top: calc(var(--block-margin, 64px) * 1) !important;
}

.has-padding-bottom {
  padding-bottom: calc(var(--block-margin, 64px) * 1) !important;
}

.has-no-padding-top {
  padding-top: 0 !important;
}

.has-no-padding-bottom {
  padding-bottom: 0 !important;
}

.has-no-padding {
  padding: 0 !important;
}

.has-margin-top {
  margin-top: calc(var(--block-margin, 64px) * 1) !important;
}

.has-margin-bottom {
  margin-bottom: calc(var(--block-margin, 64px) * 1) !important;
}

.has-half-margin-top {
  margin-top: calc(var(--block-margin, 64px) * 0.5) !important;
}

.has-half-margin-bottom {
  margin-bottom: calc(var(--block-margin, 64px) * 0.5) !important;
}

.has-neg-margin-top {
  margin-top: calc(var(--block-margin, 64px) * -1) !important;
}

.has-neg-margin-bottom {
  margin-bottom: calc(var(--block-margin, 64px) * -1) !important;
}

.has-neg-half-margin-top {
  margin-top: calc(var(--block-margin, 64px) * -0.5) !important;
}

.has-neg-half-margin-bottom {
  margin-bottom: calc(var(--block-margin, 64px) * -0.5) !important;
}

.has-no-margin-top {
  margin-top: 0 !important;
}

.has-no-margin-bottom {
  margin-bottom: 0 !important;
}

.has-auto-margin-horizontal {
  margin-left: auto !important;
  margin-right: auto !important;
}

.has-max-width-400 {
  max-width: 400px;
}
.has-max-width-400.has-text-align-center {
  margin-left: auto;
  margin-right: auto;
}

.has-max-width-500 {
  max-width: 500px;
}
.has-max-width-500.has-text-align-center {
  margin-left: auto;
  margin-right: auto;
}

.has-max-width-600 {
  max-width: 600px;
}
.has-max-width-600.has-text-align-center {
  margin-left: auto;
  margin-right: auto;
}

.has-max-width-700 {
  max-width: 700px;
}
.has-max-width-700.has-text-align-center {
  margin-left: auto;
  margin-right: auto;
}

.has-max-width-800 {
  max-width: 800px;
}
.has-max-width-800.has-text-align-center {
  margin-left: auto;
  margin-right: auto;
}

.has-max-width-900 {
  max-width: 900px;
}
.has-max-width-900.has-text-align-center {
  margin-left: auto;
  margin-right: auto;
}

.has-max-width-1000 {
  max-width: 1000px;
}
.has-max-width-1000.has-text-align-center {
  margin-left: auto;
  margin-right: auto;
}

.has-max-width-1100 {
  max-width: 1100px;
}
.has-max-width-1100.has-text-align-center {
  margin-left: auto;
  margin-right: auto;
}

.has-max-width-1200 {
  max-width: 1200px;
}
.has-max-width-1200.has-text-align-center {
  margin-left: auto;
  margin-right: auto;
}

.has-black-color {
  --color: black;
}

.has-white-color {
  --color: white;
}

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

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

.query-posts {
  position: relative;
  width: 100%;
  box-sizing: border-box;
  --gap: 2rem;
  --column-gap: var(--gap);
  --row-gap: calc(var(--gap) * 2);
  --column-count: 1;
  --hentry-width: calc((100% / var(--column-count)) - ((var(--gap) * (var(--column-count) - 1)) / var(--column-count)));
  row-gap: var(--row-gap, var(--gap));
  -moz-column-gap: var(--column-gap, var(--gap));
       column-gap: var(--column-gap, var(--gap));
  justify-content: start;
  flex-wrap: wrap;
  grid-auto-flow: row;
  grid-template-columns: repeat(var(--column-count, 3), 1fr);
  margin-bottom: calc(var(--block-margin, 64px) * 1);
}
.query-posts.grid {
  --row-gap: var(--gap);
}
.query-posts:last-child {
  margin-bottom: 0;
}
.query-posts .no-results {
  margin: calc(var(--block-margin, 64px) * 0.5) auto;
  width: 100% !important;
  margin-left: 0 !important;
  text-align: center;
}
.query-posts .hentry.load-more {
  order: 100000;
}
.query-posts .hentry.empty.static {
  order: 10000 !important;
}
.query-posts .hentry:not(.wide) {
  width: auto;
}

.query-posts.one-across {
  --gap: calc(var(--block-margin, 64px) * 0.5);
  --column-count: 1;
  display: grid;
}

.query-posts.two-across {
  --gap: 4.75rem;
  --row-gap: 5.25rem;
  --column-count: 2;
  display: grid;
}
@media screen and (max-width: 1400px) {
  .query-posts.two-across {
    --gap: 4rem;
    --row-gap: 4.5rem ;
  }
}
@media screen and (max-width: 1024px) {
  .query-posts.two-across {
    --column-count: 1;
    --gap: 3.5rem;
    --row-gap: 4rem ;
  }
}

.query-posts.three-across {
  --gap: 1rem;
  --column-count: 3;
  display: grid;
}
.query-posts.three-across > .hentry:not(.promo-wide) {
  margin-bottom: 0;
}
@media screen and (max-width: 1200px) {
  .query-posts.three-across {
    --column-count: 2;
  }
}
@media screen and (max-width: 767px) {
  .query-posts.three-across {
    --column-count: 1;
  }
}
.query-posts.four-across {
  --gap: 1.38rem;
  --column-count: 4;
  --row-gap: calc(var(--block-margin, 64px) * 1);
  display: grid;
}
@media screen and (max-width: 1200px) {
  .query-posts.four-across {
    --column-count: 2;
  }
}
@media screen and (max-width: 1024px) {
  .query-posts.four-across {
    --column-count: 2;
  }
}
@media screen and (max-width: 767px) {
  .query-posts.four-across:not(.location) {
    --column-count: 1;
  }
}
.has-load-more.is-first-post-featured .query-posts.four-across > .hentry.excerpt:first-child {
  margin-bottom: calc(var(--block-margin, 64px) * 0.5);
}
@media screen and (min-width: 1201px) {
  .has-load-more.is-first-post-featured .query-posts.four-across {
    --row-gap: calc(var(--block-margin, 64px) * 2.5);
  }
}
@media screen and (max-width: 1200px) {
  .has-load-more.is-first-post-featured .query-posts.four-across {
    --row-gap: calc(var(--block-margin, 64px) * 2);
  }
}

.query-posts.five-across {
  --gap: 1rem;
  --column-count: 5;
  display: grid;
}
@media screen and (max-width: 1200px) {
  .query-posts.five-across {
    --column-count: 3;
  }
}
@media screen and (max-width: 1024px) {
  .query-posts.five-across {
    --column-count: 2;
  }
}
@media screen and (max-width: 767px) {
  .query-posts.five-across {
    --column-count: 1;
  }
}

.query-posts.six-across {
  --gap: 1rem;
  --column-count: 6;
  display: grid;
}
@media screen and (max-width: 1200px) {
  .query-posts.six-across {
    --column-count: 3;
  }
}
@media screen and (max-width: 1024px) {
  .query-posts.six-across {
    --column-count: 2;
  }
}
@media screen and (max-width: 767px) {
  .query-posts.six-across {
    --column-count: 1;
  }
}

.query-posts.location {
  --gap: 1rem;
  --row-gap: 1rem;
  --column-gap: 1rem;
}

.query-posts.search {
  --row-gap: calc(var(--block-margin, 64px) * 2);
}

.query-posts.has-grid-lines {
  --gap:calc(var(--block-margin, 64px) * 0.5);
  --column-gap: 0px;
  --row-gap: 0px;
  --border-color: #707070;
}
.query-posts.has-grid-lines .hentry {
  padding: var(--gap);
  border: 1px solid var(--border-color);
  border-top-width: 0;
  border-left-width: 0;
}
.query-posts.has-grid-lines .hentry .title {
  min-height: calc(var(--block-margin, 64px) * 1.5);
  margin-bottom: 0;
}
@media screen and (min-width: 1201px) {
  .query-posts.has-grid-lines.three-across .hentry:nth-child(1),
  .query-posts.has-grid-lines.three-across .hentry:nth-child(2),
  .query-posts.has-grid-lines.three-across .hentry:nth-child(3) {
    border-top-width: 1px;
  }
  .query-posts.has-grid-lines.three-across .hentry:nth-child(3n-2) {
    border-left-width: 1px;
  }
}
@media screen and (max-width: 1200px) and (min-width: 768px) {
  .query-posts.has-grid-lines.three-across .hentry:nth-child(1),
  .query-posts.has-grid-lines.three-across .hentry:nth-child(2) {
    border-top-width: 1px;
  }
  .query-posts.has-grid-lines.three-across .hentry:nth-child(2n-1) {
    border-left-width: 1px;
  }
}
@media screen and (max-width: 767px) {
  .query-posts.has-grid-lines.three-across .hentry:nth-child(1) {
    border-top-width: 1px;
  }
  .query-posts.has-grid-lines.three-across .hentry {
    border-left-width: 1px;
  }
}

input[type=submit],
input[type=button],
button,
.button,
.btn {
  position: relative;
  display: inline-block;
  margin: 0;
  font-family: neue-haas-grotesk-text, sans-serif;
  text-decoration: none;
  line-height: 1;
  cursor: pointer;
  -webkit-appearance: none;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  border-radius: 0px;
  text-decoration: none;
  background-color: black;
  color: white;
  font-weight: 400;
  border: 1px solid black;
  letter-spacing: 0;
  font-size: 0.9444444444rem;
  padding: 0.24rem 0.88rem;
  transition: all 0.2s linear;
  text-transform: uppercase;
}
input[type=submit].aligncenter, input[type=submit].center,
input[type=button].aligncenter,
input[type=button].center,
button.aligncenter,
button.center,
.button.aligncenter,
.button.center,
.btn.aligncenter,
.btn.center {
  display: block;
  max-width: 250px;
  margin: 0 auto 1em;
}
input[type=submit]:hover,
input[type=button]:hover,
button:hover,
.button:hover,
.btn:hover {
  text-decoration: none;
  background: black;
  color: white;
  border-color: black;
}
input[type=submit].loading:after,
input[type=button].loading:after,
button.loading:after,
.button.loading:after,
.btn.loading:after {
  position: absolute;
  right: -40px;
  top: 50%;
  margin: -15px 0 0 0;
  display: block;
  background: url(images/loading.png) no-repeat center top;
  width: 30px;
  height: 30px;
  content: " ";
  animation: loading 1s steps(19) infinite;
}
input[type=submit].done,
input[type=button].done,
button.done,
.button.done,
.btn.done {
  cursor: default;
  color: #555;
  border-color: #555;
}
input[type=submit].done:hover,
input[type=button].done:hover,
button.done:hover,
.button.done:hover,
.btn.done:hover {
  color: #555;
  background: none;
}

button.unstyled,
.button.unstyled {
  padding: 3px 5px;
  background: none;
  color: #363636;
  font-size: 100%;
  font-family: arial, sans-serif;
  background: #eee;
  border: 1px solid #ccc;
  border-radius: 3px;
}

button.unstyled:hover {
  background: #eeeeee;
}

input[type=text],
input[type=password],
input[type=email],
input[type=tel],
textarea {
  line-height: 1;
  margin: 0;
  padding: 0.5rem;
  border: 1px solid black;
  background: #fff;
  border-radius: 0;
  box-sizing: border-box;
  font-family: neue-haas-grotesk-text, sans-serif;
  font-size: 0.9444444444rem;
  font-weight: 400;
}

textarea {
  width: 100%;
}

.input.select {
  --input-icon-size: var(--icon-size, .8em);
  --input-padding: var(--padding, .5em);
  --input-font-size: var(--font-size, .833em);
  display: flex;
  align-items: center;
  position: relative;
  z-index: 1;
  padding: 0;
  background: black;
  color: white;
  box-sizing: border-box;
  cursor: pointer;
  font-size: 0.9444444444rem;
  font-weight: 400;
  line-height: 1;
}
.input.select .label {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 1em;
  position: relative;
  z-index: 6;
  box-sizing: border-box;
  padding: 0.24rem 0.5rem 0.24rem 0.75rem;
  text-transform: uppercase;
  border-radius: 0;
  background: var(--background-color, transparent) none;
  opacity: 1;
  transition: min-width 0.2s ease;
}
.input.select .label > .text {
  display: inline-block;
  min-width: 14.3em;
}
.input.select .label > .icon {
  position: relative;
  display: inline-block;
  margin: 0;
  color: var(--icon-color, inherit);
  transition: 0.2s ease;
  transform-origin: 50% 50%;
  font-size: 20px;
  width: 1em;
  height: 1em;
}
.input.select .label > .icon:before {
  display: block;
  content: " ";
  position: absolute;
  left: 25%;
  top: 10%;
  width: 50%;
  height: 50%;
  box-sizing: border-box;
  border: 1px solid currentColor;
  border-width: 0 0 1px 1px;
  transform-origin: 50% 50%;
  transform: rotate(-45deg);
}
.input.select.on .label > .icon {
  transform: rotate(180deg);
}
.input.select .options {
  display: block;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease, padding 0.2s ease;
  position: absolute;
  z-index: 5;
  top: 100%;
  left: 0;
  width: 100%;
  margin: 0;
  padding: 0 0 0.5em;
  box-sizing: border-box;
  background: black;
  color: white;
  font-weight: 400;
  line-height: 1;
  opacity: 0;
}
.input.select .options .optgroup {
  display: block;
  padding: 0.2em 0.8em;
  cursor: default;
  font-size: 0.8em;
  opacity: 0.6;
}
.input.select .options .option {
  position: relative;
  display: block;
  padding: 0.4em 0.8em;
  margin: 0;
  text-transform: uppercase;
  transition: background-color 0.2s ease;
}
.input.select .options .option.selected {
  font-weight: 700;
}
.input.select .options .option:last-child {
  margin-bottom: 0;
}
.input.select .options .option:hover {
  background-color: gray;
}
.input.select.on .options {
  max-height: -moz-fit-content;
  max-height: fit-content;
  opacity: 1;
  margin-top: -0.5em;
  padding-top: 0.5em;
}
.input.select select {
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  border: 0;
  background: 0;
  opacity: 0;
  visibility: hidden;
  cursor: pointer;
}
@media screen and (max-width: 600px) {
  .input.select select {
    z-index: 7;
    width: 100%;
    height: 100%;
    visibility: visible;
  }
  .input.select .options {
    display: none !important;
  }
}

.nf-form-cont {
  /*
          .nf-field-element select {

              --input-icon-size: var(--icon-size, .8em);
              --input-padding: var(--padding, .5em);
              --input-font-size: var(--font-size, .833em);

              display: flex;
              align-items: center;
              position: relative;
              z-index: 1;
              padding: 0;
              background: $color-black;
              color: $color-white;
              box-sizing: border-box;
              cursor: pointer;
              font-size: scale-size(17px, 17px);
              font-weight: 400;
              line-height: 1;
              font-family: $font-sans-serif;
              font-size: 0.94rem;
              border: none;
              padding: 0.4rem.85rem;
              text-transform: uppercase;
              appearance: none;

              option {
                  position: relative;
                  display: block;
                  padding: .4em .8em;
                  margin: 0;
                  text-transform: uppercase;
                  transition: background-color $hover-transition;

                  &.selected {
                      font-weight: 700;
                  }

                  &:hover {
                      background-color: $color-gray;
                  }
              }
          }
  */
}
.nf-form-cont .nf-form-fields-required {
  display: none;
}
.nf-form-cont .nf-field-element input::-moz-placeholder, .nf-form-cont .nf-field-element textarea::-moz-placeholder {
  text-transform: uppercase;
}
.nf-form-cont .nf-field-element input::placeholder,
.nf-form-cont .nf-field-element textarea::placeholder {
  text-transform: uppercase;
}
.nf-form-cont .submit-wrap .nf-field-element {
  display: flex;
  justify-content: center;
}
.nf-form-cont .submit-wrap .nf-field-element input[type=submit] {
  padding: 0.5rem 1.5rem;
}
.nf-form-cont input[type=text],
.nf-form-cont input[type=password],
.nf-form-cont input[type=email],
.nf-form-cont input[type=tel],
.nf-form-cont textarea {
  border: 0.5px solid black;
}
.nf-form-cont input[type=text],
.nf-form-cont input[type=password],
.nf-form-cont input[type=email],
.nf-form-cont input[type=tel],
.nf-form-cont .input.select .label {
  padding: 0.27rem 0.8rem;
}
.nf-form-cont .input.select .label {
  width: 100%;
}
.nf-form-cont .input.select .label > .text {
  min-width: 0;
}
.nf-form-cont textarea {
  padding: 0.6rem 1rem;
}
@media screen and (max-width: 767px) {
  .nf-form-cont .five-sixths,
  .nf-form-cont .four-sixths,
  .nf-form-cont .one-fourth,
  .nf-form-cont .one-half,
  .nf-form-cont .one-sixth,
  .nf-form-cont .one-third,
  .nf-form-cont .three-fourths,
  .nf-form-cont .three-sixths,
  .nf-form-cont .two-fourths,
  .nf-form-cont .two-sixths,
  .nf-form-cont .two-thirds {
    float: none !important;
    width: 100% !important;
    margin-left: 0 !important;
  }
}

.posts-nav {
  grid-area: posts-nav;
  clear: both;
  margin: calc(var(--block-margin, 64px) * 2.5) 0;
  white-space: nowrap;
}
.posts-nav.max-page-1 {
  display: none;
}
.posts-nav.no-ajax {
  visibility: visible;
}
.posts-nav.ajax-pager {
  visibility: visible;
  text-align: center;
}
.posts-nav:after {
  content: " ";
  display: block;
  clear: both;
}
.posts-nav ul {
  margin: 0;
  padding: 0;
  text-align: center;
}
.posts-nav ul li {
  display: inline-block;
  vertical-align: middle;
  margin: 0 5px 0 0;
  padding: 0;
  list-style: none;
  color: #aaa;
}
.posts-nav ul li.page_info {
  display: none;
}
.posts-nav ul li a {
  display: block;
  padding: 0.5em 0.7em;
  line-height: normal;
  text-decoration: none;
  border: 0;
}
.posts-nav ul li a:hover {
  color: white;
  background: gray;
}
.posts-nav ul li.active_page {
  color: white;
  background: black;
}
.posts-nav ul li.active_page a {
  padding: 0.5em 1em;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .query-posts.mobile-carousel + .posts-nav {
    display: none;
  }
}

.hentry {
  position: relative;
}

.hentry.empty {
  opacity: 0;
  visibility: hidden;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.hentry.location-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: calc(var(--block-margin, 64px) * 0.5);
  min-height: 7rem;
  border: 1px solid currentColor;
  text-align: center;
  color: black;
  transition: all 0.2s ease;
}
.hentry.location-logo a {
  display: block;
  max-width: 11rem;
  font-family: hv-fitzgerald, serif;
  font-weight: 700;
  line-height: 1;
  font-size: 2rem;
  text-decoration: none;
}
.hentry.location-logo img {
  display: block;
  width: auto;
  height: 80px;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: 50% 50%;
     object-position: 50% 50%;
}
.hentry.location-logo:hover {
  border-color: #7f7f7f;
  color: #7f7f7f;
}
.hentry.location-logo:hover img {
  opacity: 50%;
}
@media screen and (max-width: 767px) {
  .hentry.location-logo {
    min-height: 4rem;
  }
  .hentry.location-logo a {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 500px) {
  .hentry.location-logo {
    padding-left: 1rem;
    padding-right: 1rem;
    min-height: 3rem;
  }
  .hentry.location-logo img {
    height: 50px;
  }
  .hentry.location-logo a {
    font-size: 1rem;
  }
}

.hentry.excerpt {
  font-size: 0.8333333333rem;
}
.hentry.excerpt .title {
  grid-area: title;
  margin-top: 0.6em;
  margin-bottom: 0.95em;
  font-size: 1.1666666667rem;
  line-height: 0.95;
  letter-spacing: normal;
}
.hentry.excerpt .thumbnail {
  grid-area: image;
  position: relative;
  display: block;
  padding: 0 0 calc(1 / var(--aspect-ratio, 1) * 100%);
  margin: 0 0 0.5rem;
  background: #000;
}
.hentry.excerpt .thumbnail .img {
  background: black;
}
.hentry.excerpt .thumbnail img,
.hentry.excerpt .thumbnail .img {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: var(--focal-point, 50% 50%);
     object-position: var(--focal-point, 50% 50%);
}
.hentry.excerpt .meta,
.hentry.excerpt .date {
  display: block;
  font-size: 0.6111111111rem;
  font-family: neue-haas-grotesk-text, sans-serif;
  text-transform: uppercase;
  font-weight: 400;
  letter-spacing: 0.1em;
}
.hentry.excerpt .meta {
  grid-area: meta;
  color: black;
}
.hentry.excerpt .date {
  grid-area: date;
}
.hentry.excerpt .title {
  grid-area: title;
}
.hentry.excerpt .content {
  grid-area: excerpt;
  margin: 0 0 0.5em;
  color: #4D4D4F;
}
.hentry.excerpt .content p {
  line-height: 1.33;
  font-size: inherit;
}
.hentry.excerpt .more {
  margin: 1em 0 0;
  font-size: 1em;
}

.hentry.excerpt.location {
  --aspect-ratio: 1.47;
}
.hentry.excerpt.location .title {
  margin-top: 0.556rem;
  font-size: 1.235rem;
}

.hentry.excerpt.event {
  --aspect-ratio: 1.74;
}
.hentry.excerpt.event .title {
  margin-top: 0.5em;
  margin-bottom: 0.25em;
  font-size: 1.88rem;
  letter-spacing: -0.03em;
}
.hentry.excerpt.event .info {
  margin: 1rem 0 0;
  padding: 0.5em 0;
  border-top: 1px solid #000;
  border-bottom: 2px solid #000;
  display: grid;
  -moz-column-gap: calc(var(--block-margin, 64px) * 0.5);
       column-gap: calc(var(--block-margin, 64px) * 0.5);
  grid-template-areas: "date location" "extra location";
  grid-template-columns: 1fr 1fr;
}
.hentry.excerpt.event .info .block-date {
  grid-area: date;
}
.hentry.excerpt.event .info .block-date:before {
  content: "Time: ";
  text-transform: uppercase;
}
.hentry.excerpt.event .info .block-location {
  grid-area: location;
}
.hentry.excerpt.event .info .block-location:before {
  content: "Location: ";
  text-transform: uppercase;
}
.hentry.excerpt.event .info .block-extra {
  grid-area: extra;
}
@media screen and (max-width: 600px), (min-width: 768px) and (max-width: 1024px) {
  .hentry.excerpt.event .info {
    gap: 0;
    grid-template-columns: auto;
    grid-template-areas: "date" "extra" "location";
  }
  .hentry.excerpt.event .info .block-extra,
  .hentry.excerpt.event .info .block-location {
    margin-top: 0.5em;
  }
}

.is-first-post-featured .query-posts > .hentry.excerpt:first-child {
  --aspect-ratio: 2 !important;
  grid-column: span var(--column-count);
  display: grid;
  grid-template-columns: 1fr 1fr;
  -moz-column-gap: 1rem;
       column-gap: 1rem;
  row-gap: 0px;
  grid-template-rows: auto auto auto 1fr;
  grid-template-areas: "image image" "meta ." "title excerpt" "date excerpt";
  font-size: clamp(0.833rem, 1.095vw + 0.596rem, 1.667rem);
  font-family: hv-fitzgerald, serif;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
}
.is-first-post-featured .query-posts > .hentry.excerpt:first-child .title {
  margin: 0;
  font-size: clamp(1.667rem, 2.19vw + 1.192rem, 3.333rem);
  letter-spacing: -0.03em;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .is-first-post-featured .query-posts > .hentry.excerpt:first-child {
    grid-template-columns: auto;
    grid-template-areas: "image" "meta" "title" "excerpt" "date";
  }
}
.columns-4.per_page-6.no-load-more.is-first-post-featured .query-posts > .hentry.excerpt:first-child {
  --aspect-ratio: 1.33 !important;
  grid-column: span calc(var(--column-count) / 2);
  grid-template-columns: auto;
  grid-template-areas: "image" "meta" "title" "date";
}
.columns-4.per_page-6.no-load-more.is-first-post-featured .query-posts > .hentry.excerpt:first-child .content {
  display: none;
}

.hentry.type-press {
  box-sizing: border-box;
  display: grid;
  grid-template-columns: 49.3% auto;
  grid-template-areas: "image ." "image date" "image title" "image more" "image .";
  grid-template-rows: minmax(calc(var(--block-margin, 64px) * 1), 1fr) auto auto auto minmax(calc(var(--block-margin, 64px) * 1), 1fr);
  min-height: 547px;
  border: 1px solid black;
  border-width: 1px 0;
  text-align: center;
}
.hentry.type-press .thumbnail {
  position: relative;
  grid-area: image;
  display: block;
  background: black;
}
.hentry.type-press .thumbnail img {
  position: absolute;
  top: -1px;
  left: 0;
  width: 100%;
  height: calc(100% + 2px);
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: var(--focal-point, 50% 50%);
     object-position: var(--focal-point, 50% 50%);
}
.hentry.type-press .date {
  grid-area: date;
  font-size: 0.6111111111rem;
  font-family: neue-haas-grotesk-text, sans-serif;
  text-transform: uppercase;
  font-weight: 400;
  letter-spacing: 0.1em;
}
.hentry.type-press .title {
  grid-area: title;
  box-sizing: border-box;
  max-width: 570px;
  margin: 1rem auto;
  padding: 0 calc(var(--block-margin, 64px) * 1);
  font-size: clamp(1.167rem, 0.949vw + 0.961rem, 1.889rem);
  font-family: hv-fitzgerald, serif;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: black;
  text-transform: none;
}
.hentry.type-press .more {
  grid-area: more;
}
@media screen and (max-width: 1400px) {
  .hentry.type-press {
    min-height: 39.0714285714vw;
  }
}
@media screen and (max-width: 767px) {
  .hentry.type-press {
    grid-template-areas: "image" "date" "title" "more";
    grid-template-columns: auto;
    grid-template-rows: auto;
    border-top: 0;
    padding-bottom: calc(var(--block-margin, 64px) * 1);
    margin-bottom: 0;
    text-align: left;
  }
  .hentry.type-press .thumbnail {
    margin-bottom: calc(var(--block-margin, 64px) * 0.5);
    padding: 0 0 63%;
  }
  .hentry.type-press .thumbnail img {
    top: 0;
    height: 100%;
  }
  .hentry.type-press .title {
    margin-left: 0;
    padding-left: 0;
    max-width: none;
  }
}

@media screen and (min-width: 768px) {
  .is-first-post-featured .query-posts > .hentry.type-press:first-child {
    margin-bottom: calc(var(--block-margin, 64px) * 1.5);
    grid-column: span var(--column-count);
    grid-template-columns: auto;
    grid-template-rows: auto;
    grid-template-areas: "image" "title" "date" "more";
    text-align: left;
    border-bottom: 0;
  }
  .is-first-post-featured .query-posts > .hentry.type-press:first-child .thumbnail {
    padding: 0 0 48.67%;
  }
  .is-first-post-featured .query-posts > .hentry.type-press:first-child .thumbnail img {
    top: 0;
    height: 100%;
  }
  .is-first-post-featured .query-posts > .hentry.type-press:first-child .title {
    max-width: 870px;
    padding-left: 0;
    margin-left: 0;
    font-size: clamp(1.889rem, 0.803vw + 1.715rem, 2.5rem);
  }
  .is-first-post-featured .query-posts > .hentry.type-press:first-child .more {
    display: none;
  }
}

.hentry.excerpt.type-journal .title {
  font-size: 1.66rem;
  letter-spacing: -0.03em;
  text-transform: initial;
  margin-top: 0;
  margin-bottom: 0;
}
.hentry.excerpt.type-journal .meta {
  margin: 0 0 1.25em;
}
.hentry.excerpt.type-journal .date {
  margin: 1.1em 0 0;
  color: #4D4D4F;
}

p {
  font-size: clamp(0.833rem, 0.219vw + 0.786rem, 1rem);
  margin: 0 0 1em 0;
  margin-block-start: 0;
  margin-block-end: 1.2em;
  overflow-wrap: break-word;
  word-wrap: break-word;
}
@media screen and (max-width: 767px) {
  p {
    line-height: 1.33;
  }
}
p:last-child {
  margin-bottom: 0;
}

p.has-drop-cap:not(:focus)::first-letter {
  display: block;
  float: left;
  margin: 0.1em 0.05em 0 0;
  color: red;
  font-size: 3.5em;
  font-weight: 600;
  line-height: 0.7;
}

.is-layout-constrained p.has-text-align-center {
  margin-left: auto;
  margin-right: auto;
}
.page-blocks > p.has-text-align-center {
  max-width: 50em;
  margin-left: auto;
  margin-right: auto;
}

p.has-large-font-size,
p.has-x-large-font-size {
  line-height: 1.2;
}

p.is-style-intro {
  font-size: clamp(1.556rem, 0.438vw + 1.461rem, 1.889rem);
  font-family: hv-fitzgerald, serif;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: black;
}
p.is-style-intro.has-text-align-center {
  margin-left: auto;
  margin-right: auto;
  max-width: 48rem;
}

#header {
  --logo-width: 238px;
  position: fixed;
  z-index: 1001;
  top: 0;
  left: 0;
  width: 100%;
  margin: var(--wp-admin--admin-bar--height, 0px) 0 0;
  padding: calc(var(--block-margin, 64px) * 0.34) 4.6875vw calc(var(--block-margin, 64px) * 0.375) 4.6875vw;
  transition: margin 0.4s ease-in-out;
  box-sizing: border-box;
  background: white;
  border-bottom: 1px solid currentColor;
  display: grid;
  gap: calc(var(--block-margin, 64px) * 0.5);
  color: black;
  grid-template-columns: var(--logo-width) 3fr auto 1fr auto;
  grid-template-areas: "logo . nav . toggle";
  align-items: center;
}
body:not(.scrolled) #header {
  margin-top: calc(var(--wp-admin--admin-bar--height, 0px) + var(--alert-height, 0px));
}
body.scrolled #header {
  --alert-height:0px;
}
@media screen and (min-width: 1200px) {
  #header {
    padding-right: 56.25px;
  }
}
@media screen and (min-width: 1920px) {
  #header {
    padding-left: 90px;
  }
}
@media screen and (max-width: 1024px) {
  #header {
    --logo-width:190px;
    padding-top: 19.2px;
    padding-bottom: 19.2px;
  }
}
@media screen and (max-width: 767px) {
  #header {
    --logo-width:168px;
  }
}
#header ul, #header li {
  margin: 0;
  padding: 0;
  list-style: none;
}
#header li.search {
  --icon-size: .8rem;
}
#header li.search > a {
  display: flex;
  align-items: center;
}
#header li.search > a:after {
  content: " ";
  display: inline-block;
  padding: 0;
  margin: 0 0 0 0.35em;
  width: var(--icon-size);
  height: var(--icon-size);
  background: url(images/search.svg) no-repeat 50% 50%;
  background-size: contain;
  border: 0;
}
#header li.search form {
  position: relative;
  display: flex;
  align-items: center;
}
#header li.search form button {
  display: inline-block;
  padding: 0;
  margin: 0 0 0 0.35em;
  width: var(--icon-size);
  height: var(--icon-size);
  background: url(images/search.svg) no-repeat 50% 50%;
  background-size: contain;
  border: 0;
}
#header li.search form input {
  font-size: 1em;
  padding: 0;
  border: 0;
  outline: 0;
  color: black;
  width: 4.5em;
  transition: 0.2s ease;
  background: none;
}
#header li.search form .input {
  position: relative;
}
#header li.search form .input:after {
  content: " ";
  display: block;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 1px;
  background: currentcolor;
  opacity: 0;
  transition: 0.2s ease;
}
#header li.search form.on input {
  width: 15em;
}
#header li.search form.on .input:after {
  opacity: 1;
}
#header li.search form ::-webkit-input-placeholder {
  margin: 0;
  padding: 0;
  color: black;
  text-transform: uppercase;
  opacity: 1;
}
#header li.search form :-moz-placeholder {
  margin: 0;
  padding: 0;
  color: black;
  text-transform: uppercase;
  opacity: 1;
}
#header li.search form ::-moz-placeholder {
  margin: 0;
  padding: 0;
  color: black;
  text-transform: uppercase;
  opacity: 1;
}
#header li.search form :-ms-input-placeholder {
  margin: 0;
  padding: 0;
  color: black;
  text-transform: uppercase;
  opacity: 1;
}
#header .block-logo {
  grid-area: logo;
}
#header .block-logo a, #header .block-logo img {
  display: block;
}
#header .block-nav {
  grid-area: nav;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  font-size: 0.7em;
  text-transform: uppercase;
  /*.toggle {
      display:flex;
      align-items:center;
      .icon {
          margin-right:.5em;
          width:1em;
          height:.9em;
          background:url(images/search.svg) no-repeat 50% 50%;
          background-size:contain;
          &:before {display:none;}
      }
  }*/
}
#header .block-nav a {
  text-decoration: none;
}
#header .block-nav > ul {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
#header .block-nav > ul > li {
  margin: 0 calc(var(--block-margin, 64px) * 1.25) 0 0;
}
@media screen and (max-width: 767px) {
  #header {
    grid-template-columns: var(--logo-width) 1fr auto;
    grid-template-areas: "logo . toggle";
  }
  #header .block-nav {
    display: none;
  }
}
#header .block-toggle {
  grid-area: toggle;
  position: relative;
  z-index: 10;
  height: 100%;
}
#header .block-toggle .toggle.menu {
  --width: 35px;
  --height: 14px;
  --bar-thickness: 1px;
  --color: black;
  display: flex;
  position: relative;
  width: var(--width);
  height: 100%;
  align-items: center;
  color: var(--color);
  cursor: pointer;
  transition: 0.2s ease;
}
#header .block-toggle .toggle.menu .icon {
  display: block;
  position: relative;
  width: var(--width);
  height: var(--height);
  line-height: var(--height);
  text-align: center;
  transition: opacity 0.25s ease-in-out, transform 0.25s ease-in-out;
  transform: rotate(0deg);
  opacity: 1;
  margin-left: 0;
  border: var(--bar-thickness) solid var(--color);
  border-width: var(--bar-thickness) 0;
  box-sizing: border-box;
}
#header .block-toggle .toggle.menu .icon:before {
  content: " ";
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: var(--bar-thickness);
  background: var(--color);
  transform: translate(0, -50%);
}
#header .block-toggle .toggle.menu:before, #header .block-toggle .toggle.menu:after {
  content: " ";
  display: block;
  position: absolute;
  top: 50%;
  left: 10%;
  width: 60%;
  height: 1.5px;
  margin: calc(var(--bar-thickness) / -2) 0 0;
  transform-origin: 50% 50%;
  transition: opacity 0.25s ease-in-out, transform 0.25s ease-in-out;
  transform: rotate(0deg);
  opacity: 0;
  background: var(--color);
}
body.menu-on #header .block-toggle .toggle.menu:before, body.menu-on #header .block-toggle .toggle.menu:after {
  opacity: 1;
}
body.menu-on #header .block-toggle .toggle.menu:before {
  transform: rotate(-45deg);
}
body.menu-on #header .block-toggle .toggle.menu:after {
  transform: rotate(-135deg);
}
body.menu-on #header .block-toggle .toggle.menu .icon {
  opacity: 0;
  transform: rotate(-45deg);
}
#header .block-menu {
  --gap:.5rem;
  --menu-width: 380px;
  --menu-horizontal-padding: calc(var(--block-margin, 64px) * 0.5);
  display: block;
  position: absolute;
  box-sizing: border-box;
  background: white;
  top: 0;
  right: 0;
  width: 0;
  overflow: hidden;
  height: calc(100dvh - var(--wp-admin--admin-bar--height, 0px) - var(--alert-height, 0px));
  padding: var(--header-height, 110px) 0 calc(var(--block-margin, 64px) * 0.5) 0;
  font-family: hv-fitzgerald, serif;
  text-transform: uppercase;
  transition: width 0.25s ease-in-out, padding 0.25s ease-in-out, height 0.4s ease-in-out;
  font-size: 2.39rem;
  font-weight: 700;
  letter-spacing: -0.05em;
  line-height: 1;
}
@media screen and (max-width: 1200px) {
  #header .block-menu {
    --menu-horizontal-padding: 24px;
  }
}
@media screen and (max-width: 440px) {
  #header .block-menu {
    --menu-width:100vw;
    font-size: 2.25rem;
  }
}
#header .block-menu > ul {
  min-height: 100%;
  display: flex;
  flex-direction: column;
}
#header .block-menu > ul > li {
  width: 100%;
  margin: 0.43rem 0;
  transition: all 0.2s ease;
}
#header .block-menu > ul > li:first-child {
  margin-top: 0;
}
#header .block-menu > ul > li:last-child {
  margin-bottom: 0;
}
#header .block-menu > ul > li > a {
  display: block;
}
#header .block-menu > ul > li.has-bottom-border {
  margin-bottom: 0;
}
#header .block-menu > ul > li.has-bottom-border:after {
  content: " ";
  display: block;
  margin: 1.8rem 0 1rem;
  width: 100%;
  height: 1px;
  background: currentColor;
}
#header .block-menu > ul > li.search, #header .block-menu > ul > li.external {
  margin: 0.32rem 0;
  font-family: neue-haas-grotesk-text, sans-serif;
  font-weight: 400;
  letter-spacing: normal;
  font-size: 0.833rem;
}
#header .block-menu > ul > li.search {
  margin: 0.35rem 0 1.2rem;
}
@media screen and (min-width: 768px) {
  #header .block-menu > ul > li.search {
    display: none;
  }
}
#header .block-menu > ul > li.is-bottom-link {
  flex-grow: 1;
  display: flex;
  align-items: end;
  font-size: 1rem;
  letter-spacing: 0;
}
@media screen and (max-width: 767px) {
  #header .block-menu > ul > li.is-bottom-link.subscribe {
    justify-content: center;
    margin: calc(var(--block-margin, 64px) * 0.5) auto;
    font-family: neue-haas-grotesk-text, sans-serif;
    font-weight: 400;
    letter-spacing: normal;
    font-size: 0.94rem;
  }
  #header .block-menu > ul > li.is-bottom-link.subscribe a {
    padding: 1.2rem 0.88rem;
    color: black;
    background: rgba(255, 255, 255, 0.3);
    border: 1.5px solid black;
    text-align: center;
    width: 100%;
  }
  #header .block-menu > ul > li.is-bottom-link.subscribe a:hover {
    background-color: black;
    color: white;
    border-color: black;
  }
}
#header .block-mask {
  display: none;
  position: absolute;
  top: 0;
  right: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.2);
  opacity: 1;
}
body.menu-on #header .block-menu {
  width: var(--menu-width);
  padding-left: var(--menu-horizontal-padding);
  padding-right: var(--menu-horizontal-padding);
}

#bottom {
  margin: calc(var(--block-margin, 64px) * 0.5) var(--gutter-right) calc(var(--block-margin, 64px) * 1) var(--gutter-left);
  padding: calc(var(--block-margin, 64px) * 1) 0 0;
  border-top: 1px solid currentColor;
  display: grid;
  grid-template-columns: 1fr minmax(auto, 512px) 1fr;
  grid-template-areas: ". main .";
  text-align: center;
}
#bottom .block-main {
  grid-area: main;
}
#bottom .block-main h2 {
  border-top: 0;
  margin-top: 0;
  padding-top: 0;
  border-bottom: 0;
  margin-bottom: 0.5em;
}
#bottom form {
  color: black;
}
#bottom form .fields {
  display: flex;
  justify-content: center;
  gap: 1em;
}
#bottom form input[type=email] {
  font-size: 17px;
  width: 255px;
  text-align: left;
}
#bottom form .message {
  display: none;
  margin-top: 1em;
}
#bottom form .message.on {
  display: block;
}
#bottom form .message.error {
  color: red;
}
@media screen and (max-width: 600px) {
  #bottom form .fields {
    flex-direction: column;
  }
  #bottom form .fields input[type=email] {
    width: 100%;
  }
  #bottom form .fields button {
    padding: 0.65em 0.5em;
  }
}
#bottom .social-links {
  color: black;
}
#bottom .social-links ul, #bottom .social-links li {
  margin: 0;
  padding: 0;
  list-style: none;
}
#bottom .social-links ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  margin: calc(var(--block-margin, 64px) * 0.5) 0;
}
#bottom .social-links ul li a {
  --size: 2em;
  display: inline-block;
  width: var(--size);
  height: var(--size);
  line-height: var(--size);
  font-size: 26px;
  text-align: center;
}

#footer {
  --logo-width: 315px;
  --gap: 1em;
  position: relative;
  margin: calc(var(--block-margin, 64px) * 1) var(--gutter-right) 0 var(--gutter-left);
  padding: calc(var(--block-margin, 64px) * 0.5) 0;
  display: grid;
  grid-template-columns: var(--logo-width) 1fr auto auto;
  grid-template-areas: "logo . nav links" "copy copy nav links";
  -moz-column-gap: var(--gap);
       column-gap: var(--gap);
  font-size: 0.667em;
  border-top: 1px solid currentColor;
}
#footer .block-logo {
  grid-area: logo;
}
#footer .block-nav,
#footer .block-links {
  letter-spacing: 0.015em;
  line-height: 0.83rem;
}
#footer .block-nav {
  grid-area: nav;
}
#footer .block-nav ul {
  -moz-column-count: 2;
       column-count: 2;
  gap: var(--gap);
}
#footer .block-nav ul li {
  -moz-column-break-inside: avoid;
       break-inside: avoid;
}
#footer .block-nav a {
  max-width: 120px;
}
#footer .block-links {
  grid-area: links;
}
#footer .block-copyright {
  grid-area: copy;
  max-width: 45em;
  align-self: end;
  padding: calc(var(--block-margin, 64px) * 0.5) 0 0;
  color: #a2a2a2;
}
#footer .nav {
  font-weight: 500;
  text-transform: uppercase;
}
#footer .nav ul, #footer .nav li {
  margin: 0;
  padding: 0;
  list-style: none;
}
#footer .nav ul li {
  margin-bottom: var(--gap);
}
@media screen and (min-width: 1200px) {
  #footer .nav ul li {
    min-width: 12em;
  }
}
#footer .nav ul li:first-child {
  margin-top: 0;
}
#footer .nav a {
  display: block;
  line-height: 1.25;
  color: black;
}
@media screen and (max-width: 1024px) {
  #footer {
    grid-template-columns: auto auto;
    grid-template-areas: "nav links" "logo logo" "copy copy";
  }
  #footer .block-logo {
    max-width: 200px;
    margin-top: calc(var(--block-margin, 64px) * 1);
  }
  #footer .block-copyright {
    padding-top: 1em;
  }
}

.theme-block {
  --block-margin-multiplier: 1;
  position: relative;
  margin-top: calc(var(--block-margin, 64px) * var(--block-margin-multiplier));
  margin-bottom: calc(var(--block-margin, 64px) * var(--block-margin-multiplier));
}
.theme-block:first-child {
  margin-top: 0;
}
.theme-block:last-child {
  margin-bottom: 0;
}
.page-blocks > .theme-block.is-style-full-width, .page-blocks > .theme-block.full-width {
  margin-left: calc(var(--gutter-left-override, var(--gutter-left)) * -1);
  margin-right: calc(var(--gutter-right-override, var(--gutter-right)) * -1);
}
.page-blocks > .theme-block.is-style-full-width > .wrap, .page-blocks > .theme-block.full-width > .wrap {
  max-width: 1760px;
  margin: 0 auto;
}
@media screen and (max-width: 1942.0689655172px) {
  .page-blocks > .theme-block.is-style-full-width > .wrap, .page-blocks > .theme-block.full-width > .wrap {
    margin: 0 4.6875%;
  }
}
#wrap > .theme-block.has-background {
  margin-top: 0;
  margin-bottom: 0;
}

body.has-js .appear-on-scroll:not(.sticky) {
  opacity: 0;
}
body.has-js .appear-on-scroll:not(.sticky).appear-init {
  transform: translate(0px, 32px);
  transition: opacity 0.4s ease-in-out, transform 0.4s ease-in-out;
}
body.has-js .appear-on-scroll:not(.sticky).appeared {
  opacity: 1;
  transform: translate(0px, 0px);
}
body.has-js .appear-on-scroll.sticky {
  opacity: 0;
}
body.has-js .appear-on-scroll.sticky.appear-init {
  transition: opacity 0.4s ease-in-out;
}
body.has-js .appear-on-scroll.sticky.appeared {
  opacity: 1;
}
body.no-js .appear-on-scroll, body.disable-appear-on-scroll .appear-on-scroll {
  opacity: 1;
  transform: none;
}

.site-skip-nav {
  position: fixed;
  z-index: 1101;
  top: 0;
  left: 0;
  padding: 5px 15px;
  margin-top: var(--wp-admin--admin-bar--height, 0px);
  background: #E55A25;
  color: white;
  transform: translate(-100%, -100%);
}
.site-skip-nav:focus {
  transform: translate(0%, 0%);
}

#wrap {
  position: relative;
  z-index: 10;
  padding: calc(var(--header-height, 90px) + var(--alert-height, 0px)) 0 0 0;
}

.main-content {
  position: relative;
  z-index: 10;
  margin: 0 0 calc(var(--block-margin, 64px) * 0.5);
  padding: 0;
  background: var(--background-color, none);
  color: var(--color, inherit);
}
body.has-transparent-header .main-content {
  margin-top: calc(var(--header-height, 90px) * -1);
}
.main-content > .layout {
  position: relative;
  display: grid;
  grid-template-columns: [start] var(--gutter-left) minmax(0, 1fr) var(--gutter-right) [end];
  grid-template-areas: "title title title" ". back ." "hero hero hero" ". featured ." ". blocks ." ". posts ." ". pager ." ". bottom .";
  padding: 0;
}
.main-content .block-hero {
  grid-area: hero;
  margin-bottom: calc(var(--block-margin, 64px) * 2.5);
}
@media screen and (max-width: 1024px) {
  .main-content .block-hero {
    margin-bottom: calc(var(--block-margin, 64px) * 2);
  }
}
.main-content .block-pager {
  grid-area: pager;
  margin: calc(var(--block-margin, 64px) * 2) 0;
}
.main-content .block-search-results {
  grid-area: back;
  padding: calc(var(--block-margin, 64px) * 0.5) 0;
  font-size: 1.1666666667rem;
  font-family: hv-fitzgerald, serif;
  font-weight: bold;
  text-align: center;
  color: black;
  text-transform: uppercase;
}
.main-content .block-back {
  grid-area: back;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  grid-template-areas: "back date .";
  align-items: center;
  line-height: 1;
  font-family: hv-fitzgerald, serif;
  font-size: clamp(0.756rem, 0.248vw + 0.702rem, 0.944rem);
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  color: black;
}
.main-content .block-back a {
  grid-area: back;
  display: inline-block;
  padding: calc(var(--block-margin, 64px) * 0.5) calc(var(--block-margin, 64px) * 1) calc(var(--block-margin, 64px) * 0.5) 0;
}
.main-content .block-back .date {
  grid-area: date;
  text-align: center;
  font-size: clamp(1.167rem, 0.438vw + 1.072rem, 1.5rem);
}
@media screen and (max-width: 767px) {
  .main-content .block-back {
    grid-template-columns: auto;
    grid-template-areas: "back date";
  }
  .main-content .block-back .date {
    text-align: right;
    font-size: clamp(0.756rem, 0.248vw + 0.702rem, 0.944rem);
  }
}
.main-content .page-blocks {
  position: relative;
  grid-area: blocks;
}
.main-content .block-featured-image {
  grid-area: featured;
  position: relative;
  z-index: 1;
  margin: 0 0 calc(var(--block-margin, 64px) * 0.5) 0;
  /*
  @media screen and (min-width:1920px) {
      width:1920px;
      margin-right:0;
      left:50%;
      margin-left: 1920px * -.5;
  }
  */
}
body.section-landing .main-content .block-featured-image {
  margin-left: calc(var(--gutter-left) * -1);
  margin-right: calc(var(--gutter-right) * -1);
}
.main-content .block-featured-image > .image {
  display: block;
  position: relative;
  height: 860px;
}
.main-content .block-featured-image > .image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: var(--focal-point, 50% 50%);
     object-position: var(--focal-point, 50% 50%);
}
@media screen and (min-width: 1920px) {
  .main-content .block-featured-image > .image {
    height: 44.7916666667vw;
  }
}
@media screen and (max-width: 1400px) {
  .main-content .block-featured-image > .image {
    height: 61.4285714286vw;
  }
}
.main-content .block-title + .block-featured-image,
.main-content .block-back + .block-featured-image {
  border-bottom: 1px solid currentColor;
  padding-bottom: calc(var(--block-margin, 64px) * 0.5);
}
.main-content > .layout > .block-title {
  grid-area: title;
  display: grid;
  grid-template-columns: auto;
  grid-template-areas: "title" "back";
  text-align: center;
  border-bottom: 1px solid currentColor;
  align-items: center;
  grid-template-columns: 1fr auto 1fr;
  grid-template-areas: "back title next";
  gap: 1rem;
}
.main-content > .layout > .block-title h1 {
  grid-area: title;
  padding: calc(var(--block-margin, 64px) * 0.5) 0;
  flex-grow: 1;
  margin-bottom: 0;
}
body:not(.top-level-page) .main-content > .layout > .block-title h1 {
  font-size: clamp(1.778rem, 3.358vw + 1.05rem, 4.333rem);
}
.main-content > .layout > .block-title a {
  text-decoration: none;
}
.main-content > .layout > .block-title a:hover {
  text-decoration: underline;
}
.main-content > .layout > .block-title .back,
.main-content > .layout > .block-title .next {
  grid-area: back;
  line-height: 1;
  font-family: hv-fitzgerald, serif;
  font-size: 0.9444444444rem;
  font-weight: 700;
  text-transform: uppercase;
  color: black;
}
.main-content > .layout > .block-title .back {
  text-align: left;
}
.main-content > .layout > .block-title .next {
  text-align: right;
}
.main-content .query-posts {
  grid-area: posts;
  position: relative;
  z-index: 1;
}
.main-content .block-form {
  grid-area: posts;
  margin: calc(var(--block-margin, 64px) * 2.5) 0;
  border-top: 1px solid currentColor;
  padding-top: calc(var(--block-margin, 64px) * 0.5);
  color: black;
}
.main-content .block-bottom {
  grid-area: bottom;
}
.main-content .page-blocks + .block-bottom {
  margin-top: calc(var(--block-margin, 64px) * 2.5);
}
@media screen and (max-width: 767px) {
  .main-content .page-blocks + .block-bottom {
    margin-top: calc(var(--block-margin, 64px) * 1);
  }
}
.main-content .block-related {
  grid-area: related;
  margin-bottom: calc(var(--block-margin, 64px) * 2.5);
}

.main-content.page .block-featured-image {
  grid-area: hero;
  border-bottom: 0;
  padding-bottom: 0;
  margin-bottom: calc(var(--block-margin, 64px) * 1);
}

body.page-press-news .main-content.page > .layout, .main-content.journal > .layout, .main-content.post > .layout, .main-content.press > .layout, .main-content.event > .layout {
  grid-template-areas: ". title ." ". back ." "hero hero hero" ". featured ." ". blocks ." ". posts ." ". bottom .";
}

.main-content.journal .block-featured-image {
  border-bottom: 0;
  padding-bottom: 0;
  margin-bottom: calc(var(--block-margin, 64px) * 0.5);
}
@media screen and (max-width: 767px) {
  .main-content.journal .wp-block-group.is-style-heading-content {
    margin-top: calc(var(--block-margin, 64px) * 0.5);
  }
}

.main-content.post > .layout > .block-title h1,
.main-content.event > .layout > .block-title h1 {
  text-transform: none;
}

@media screen and (min-width: 1025px) {
  .main-content.event .page-blocks > p {
    max-width: 66%;
  }
}

.main-content.press .block-featured-image {
  border-bottom: 0;
  padding-bottom: 0;
  margin-bottom: calc(var(--block-margin, 64px) * 1);
}
.main-content.press .page-blocks {
  max-width: 47rem;
  margin-left: auto;
  margin-right: auto;
}

.main-content.location > .layout {
  grid-template-columns: [start] var(--gutter-left) 1fr 1fr minmax(0, 2fr) var(--gutter-right) [end];
  grid-template-areas: "title title    title    title    title" ". featured featured featured ." ". logo     logo     logo     ." ". asides   hours    blocks   ." ". pager    pager    pager    ." ". related  related  related  ." ". bottom   bottom   bottom   .";
}
.main-content.location .block-title {
  padding-left: var(--gutter-left);
  padding-right: var(--gutter-left);
}
.main-content.location .block-featured-image {
  margin-left: calc(var(--gutter-left) * -1);
  margin-right: calc(var(--gutter-right) * -1);
  margin-bottom: calc(var(--block-margin, 64px) * 1);
  border-bottom: 0;
  padding-bottom: 0;
}
.main-content.location .block-logo {
  grid-area: logo;
  margin: 0 0 calc(var(--block-margin, 64px) * 1.5);
}
.main-content.location .block-logo img {
  display: block;
  width: 50%;
  max-width: 360px;
  max-height: 150px;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: 0 100%;
     object-position: 0 100%;
}
.main-content.location .block-asides, .main-content.location .block-asides p,
.main-content.location .block-hours,
.main-content.location .block-hours p,
.main-content.location .page-blocks,
.main-content.location .page-blocks p {
  font-family: hv-fitzgerald, serif;
  font-weight: 700;
  font-size: clamp(1.511rem, 0.496vw + 1.404rem, 1.889rem);
  line-height: 1;
  color: black;
  letter-spacing: -0.03em;
}
.main-content.location .subtitle {
  margin-bottom: 0.5rem;
}
.main-content.location .block-asides {
  grid-area: asides;
  margin-right: calc(var(--block-margin, 64px) * 0.75);
}
.main-content.location .block-asides p {
  transition: all 0.2s ease;
}
.main-content.location .block-asides .social {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.25rem;
  row-gap: 0.5em;
  margin-left: -0.25em;
}
.main-content.location .block-asides .social .icon {
  padding: 0 0.5em;
  text-align: center;
  font-size: 0.8em;
}
.main-content.location .block-hours {
  grid-area: hours;
  margin-right: calc(var(--block-margin, 64px) * 0.75);
}
.main-content.location .block-pager {
  grid-area: pager;
  margin: calc(var(--block-margin, 64px) * 3) auto;
  max-width: 1200px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  grid-template-areas: "prev back next";
  justify-content: center;
  gap: calc(var(--block-margin, 64px) * 1.5);
  line-height: 1;
  color: black;
}
.main-content.location .block-pager span.nav {
  color: transparent;
}
.main-content.location .block-pager .nav {
  --padding: 1rem;
  position: relative;
  border: 1px solid currentColor;
  padding: var(--padding);
  text-decoration: none;
}
.main-content.location .block-pager .nav .label {
  position: absolute;
  display: block;
  left: var(--padding);
  right: var(--padding);
  font-size: clamp(0.756rem, 0.248vw + 0.702rem, 0.944rem);
  font-weight: 700;
  font-family: hv-fitzgerald, serif;
  text-transform: uppercase;
}
.main-content.location .block-pager .nav .name {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin: 0 auto;
  padding: calc(var(--padding) / 2) 0;
  height: 80px;
  width: 65%;
  font-family: hv-fitzgerald, serif;
  font-weight: 700;
  line-height: 1;
  font-size: clamp(1.511rem, 0.496vw + 1.404rem, 1.889rem);
}
.main-content.location .block-pager .nav .name img {
  display: block;
  max-height: 100%;
  max-width: 100%;
  width: auto;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: 50% 50%;
     object-position: 50% 50%;
}
.main-content.location .block-pager .nav:hover .label {
  text-decoration: underline;
}
.main-content.location .block-pager .nav.next {
  grid-area: next;
}
.main-content.location .block-pager .nav.next .label {
  text-align: left;
  left: var(--padding);
}
.main-content.location .block-pager .nav.previous {
  grid-area: prev;
}
.main-content.location .block-pager .nav.previous .label {
  text-align: right;
  right: var(--padding);
}
.main-content.location .block-pager .nav.back {
  grid-area: back;
  padding-left: 2rem;
  padding-right: 2rem;
  padding-bottom: 1rem;
}
.main-content.location .block-pager .nav.back .label {
  position: relative;
  left: auto;
  right: auto;
  text-align: center;
  margin-bottom: var(--padding);
}
.main-content.location .block-pager .nav.back .icon {
  display: flex;
  flex-wrap: wrap;
  position: relative;
  gap: 10px;
  width: 53px;
  margin: 0 auto;
}
.main-content.location .block-pager .nav.back .icon i {
  display: block;
  width: 11px;
  height: 11px;
  background: currentColor;
}
@media screen and (max-width: 1200px) {
  .main-content.location .block-pager {
    gap: calc(var(--block-margin, 64px) * 0.5);
  }
  .main-content.location .block-pager .nav {
    --padding: .5rem;
  }
  .main-content.location .block-pager .nav.back {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
@media screen and (max-width: 767px) {
  .main-content.location .block-pager {
    grid-template-columns: 1fr 1fr;
    grid-template-areas: "prev next" "back back";
  }
  .main-content.location .block-pager .nav .name {
    width: 75%;
    font-size: 0.9444444444rem;
  }
  .main-content.location .block-pager .nav.back {
    max-width: 60px;
    margin: 0 auto;
  }
}
.main-content.location .block-related {
  grid-area: related;
  margin-bottom: calc(var(--block-margin, 64px) * 2.5);
}
.main-content.location .block-related .subtitle {
  margin-bottom: calc(var(--block-margin, 64px) * 0.5);
}
@media screen and (max-width: 1200px) {
  .main-content.location > .layout {
    grid-template-columns: [start] var(--gutter-left) 1fr 1fr var(--gutter-right) [end];
    grid-template-areas: "title title    title    title" ". featured featured ." ". logo     logo     ." ". asides   hours    ." ". blocks   blocks   ." ". pager    pager    ." ". related  related  ." ". bottom   bottom   .";
  }
  .main-content.location .block-hours {
    margin-right: 0;
  }
  .main-content.location .page-blocks {
    margin-top: calc(var(--block-margin, 64px) * 0.75);
  }
}
@media screen and (max-width: 640px) {
  .main-content.location > .layout {
    grid-template-areas: "title title    title    title" ". featured featured ." ". logo     logo     ." ". asides   asides   ." ". hours    hours    ." ". blocks   blocks   ." ". pager    pager    ." ". related  related  ." ". bottom   bottom   .";
  }
  .main-content.location .block-asides,
  .main-content.location .block-hours {
    margin-right: 0;
    margin-bottom: 1em;
  }
}

#posts-filter {
  position: relative;
  z-index: 10;
  margin: 0 0 calc(var(--block-margin, 64px) * 0.5);
}
#posts-filter.no-filters {
  margin-bottom: 0;
}
#posts-filter .filters {
  display: flex;
  align-items: stretch;
  justify-content: end;
  flex-wrap: wrap;
  gap: clamp(1rem, 0.511vw + 0.889rem, 1.389rem);
}
#posts-filter button {
  box-sizing: border-box;
  width: clamp(5.556rem, 1.46vw + 5.239rem, 6.667rem);
  padding-left: 0;
  padding-right: 0;
}
#posts-filter .input.search {
  box-sizing: border-box;
  border: 1px solid currentColor;
  display: flex;
  align-items: center;
  width: clamp(11.111rem, 14.599vw + 7.948rem, 22.222rem);
}
#posts-filter .input.search input {
  flex-grow: 1;
  width: 100%;
  border: 0;
  padding-top: 0.24rem;
  padding-bottom: 0.24rem;
}
#posts-filter .input.search .icon {
  margin: 0 0.5rem;
  width: 1em;
  height: 1em;
  background: url(images/search.svg) no-repeat 50% 50%;
  background-size: contain;
}
#posts-filter .input.search .icon:before {
  display: none;
}
@media screen and (max-width: 800px) {
  #posts-filter .filters {
    gap: 0.5rem;
  }
  #posts-filter .input.select {
    width: 100%;
    order: 1;
  }
  #posts-filter .input.select .label {
    width: 100%;
  }
  #posts-filter .input.select .label > .text {
    min-width: 5em;
    display: inline-block;
    padding: 0.19em 0;
  }
  #posts-filter .input.search {
    flex-grow: 1;
  }
  #posts-filter .input.search input {
    width: 175px;
  }
}

body.theme .page-blocks > .has-background + .has-background {
  margin-top: calc(calc(var(--block-margin, 64px) * -1) - 1px);
}

body.error404 .main-content .page-blocks {
  padding-top: 20vh;
  padding-bottom: 20vh;
  text-align: center;
}

.section-directory .wp-block-theme-blocks-hero-slide > .block-content {
  max-width: 95%;
  width: 46rem;
}

.slick-slider .slick-list {
  position: relative;
  overflow: hidden;
}
.slick-slider .slick-track {
  display: flex;
  align-items: flex-start;
}
.slick-slider .slick-track:after {
  content: " ";
  display: block;
  clear: both;
}
.slick-slider .slick-slide {
  display: block;
  white-space: normal;
}

.slick-arrow {
  position: relative;
  z-index: 10000;
  cursor: pointer;
  /*
  --arrow-size: 40px;
  margin:0;
  font-size:30px;
  color: var(--color, $color-black);
  width:var(--arrow-size);
  height:var(--arrow-size);
  line-height: var(--arrow-size);
  transition: background-color $hover-transition, transform $hover-transition, margin $hover-transition;
  text-align:center;
  */
}
.slick-arrow .icon {
  transition: all 0.2s ease;
}
.slick-arrow.next:hover .icon.arrow-right {
  transform: translate(3px, 0);
}
.slick-arrow.prev:hover .icon.arrow-left {
  transform: translate(-3px, 0);
}
.slick-arrow.slick-disabled {
  cursor: default;
  opacity: 0.1;
}
.slick-arrow.slick-hidden {
  display: none !important;
}

.slick-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75em;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
  list-style: none;
  text-align: center;
}
.slick-dots li {
  display: inline-block;
}
.slick-dots li button {
  display: block;
  border: 0;
  padding: 0;
  margin: 0;
  width: 12px;
  height: 12px;
  background: rgba(255, 255, 255, 0.6);
  text-indent: -10000px;
  overflow: hidden;
  cursor: pointer;
  border-radius: 50%;
}
.slick-dots li.slick-active button {
  background: white;
}

#share-tab {
  --icon-size: 40px;
}
#share-tab ul {
  list-style: none;
}
#share-tab ul li::before {
  content: none;
}
#share-tab ul, #share-tab li {
  position: relative;
  margin: 0;
  padding: 0;
  list-style: none;
}
#share-tab ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: inline-flex;
  justify-content: center;
  gap: 1rem;
}
#share-tab ul li a {
  display: block;
  width: var(--icon-size);
  height: var(--icon-size);
  line-height: var(--icon-size);
  font-size: calc(var(--icon-size) * 0.6);
  text-align: center;
  background: var(--color);
  color: var(--background-color);
  border-radius: 50%;
  transition: background-color 0.2s ease, color 0.25s ease-in-out;
}
#share-tab ul li a:hover {
  background: #77E8C5;
}

#cookie-mask {
  position: fixed;
  z-index: 999999;
  bottom: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.6);
}

#cookie-notice {
  box-sizing: border-box;
  position: fixed;
  z-index: 1000000;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 2em;
  background: white;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1em;
  align-items: center;
  font-size: 0.8em;
}
#cookie-notice .block-content {
  line-height: 1.2;
}
#cookie-notice .block-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5em;
}
#cookie-notice button {
  font-size: 0.8em;
}
@media screen and (max-width: 1024px) {
  #cookie-notice {
    display: block;
  }
  #cookie-notice .block-content {
    margin-bottom: 1em;
  }
}

body.cookie-notice-on #wrap {
  filter: grayscale(1);
}

#alert {
  z-index: 1002;
  box-sizing: border-box;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  margin: var(--wp-admin--admin-bar--height, 0px) 0 0;
  padding: 0 calc(var(--block-margin, 64px) * 1);
  background: #E55A25;
  color: white;
  transition: transform 0.4s ease-in-out;
  transform: translate(0%, 0%);
}
body.scrolled #alert {
  transform: translate(0, -100%);
}
body.scrolled.admin-bar #alert {
  transform: translate(0, calc(-100% - var(--wp-admin--admin-bar--height, 0px)));
}
#alert .block-title {
  display: block;
  text-decoration: none;
  position: relative;
  z-index: 1011;
  padding: 0.9em 0;
  margin: 0;
  border: 0;
  text-align: center;
  line-height: 1.2;
  font-size: 1.25em;
  background: inherit;
  color: inherit;
}
@media screen and (max-width: 767px) {
  #alert .block-title {
    font-size: 1rem;
  }
}
#alert.has-content .block-title {
  cursor: pointer;
}
#alert .block-content {
  --gutter-left: calc((100vw - 1024px) / 2);
  --gutter-right: calc((100vw - 1024px) / 2);
  position: absolute;
  z-index: 1007;
  top: 0%;
  left: 0;
  width: 100%;
  padding: 2em var(--gutter-right) 2em var(--gutter-left);
  box-sizing: border-box;
  background: #E55A25;
  color: white;
  transform: translate(0, -100%);
  opacity: 0;
  transition: transform 0.25s ease-in-out, opacity 0.25s ease-in-out;
}
@media screen and (max-width: 1129.9310344828px) {
  #alert .block-content {
    --gutter-left: 4.6875vw;
    --gutter-right: 4.6875vw;
  }
}
#alert .block-close {
  background: url(images/arrow-alert.svg) no-repeat 50% 50%;
  --icon-size: 30px;
  position: absolute;
  z-index: 1012;
  display: inline-block;
  text-decoration: none;
  top: 50%;
  right: 1em;
  width: var(--icon-size);
  height: var(--icon-size);
  margin-top: calc(var(--icon-size) * -0.5);
  transition: transform 0.25s ease-in-out, opacity 0.25s ease-in-out;
  cursor: pointer;
}
#alert .block-close .icon {
  display: block;
  font-size: calc(var(--icon-size) * 0.8);
  line-height: var(--icon-size);
  text-align: center;
}
body.alert-on #alert .block-content {
  transform: translate(0, 0);
  opacity: 1;
  top: 100%;
}
body.alert-on #alert .block-close {
  opacity: 1;
  transform: rotate(90deg);
}
body.scrolled #alert .block-content {
  transform: translate(0, -100%);
}
#alert h1,
#alert h2,
#alert h3,
#alert h4,
#alert h5,
#alert h6,
#alert .heading {
  color: white;
}

.wp-block-theme-blocks-hero {
  --block-height: calc(100vh - var(--wp-admin--admin-bar--height, 0px) - var(--header-height) - var(--page-title-height, 0px));
  --border-width: 2px;
  position: relative;
  height: var(--block-height);
  margin-top: 0;
  margin-bottom: calc(var(--block-margin, 64px) * 2.5);
  background: black;
  color: white;
}
.wp-block-theme-blocks-hero .wp-block-buttons {
  color: inherit;
}
.wp-block-theme-blocks-hero .wp-block-buttons .wp-block-button > .wp-block-button__link {
  padding-left: clamp(0.667rem, 1.168vw + 0.414rem, 1.556rem);
  padding-right: clamp(0.667rem, 1.168vw + 0.414rem, 1.556rem);
  font-size: clamp(0.833rem, 0.146vw + 0.802rem, 0.944rem);
}
.wp-block-theme-blocks-hero .slick-dots {
  position: absolute;
  bottom: calc(var(--block-margin, 64px) * 1);
  z-index: 2;
  left: 0;
  width: 100%;
}
.wp-block-theme-blocks-hero .block-slides {
  position: relative;
  background: black;
}
.wp-block-theme-blocks-hero .block-nav {
  position: absolute;
  z-index: 11;
  top: 0;
  height: 100%;
  width: calc(var(--block-height) / 2);
  box-sizing: border-box;
  padding: calc(var(--block-margin, 64px) * 1);
  display: flex;
  align-items: center;
  font-family: hv-fitzgerald, serif;
  text-transform: uppercase;
  font-weight: 700;
  cursor: pointer;
  overflow: hidden;
}
.wp-block-theme-blocks-hero .block-nav:before {
  display: block;
  content: " ";
  position: absolute;
  top: 50%;
  width: var(--circle-size, var(--block-height));
  height: var(--circle-size, var(--block-height));
  box-sizing: border-box;
  border: var(--border-width) solid currentColor;
  border-radius: 50%;
  background: transparent;
  translate: 0 -50%;
}
.wp-block-theme-blocks-hero .block-nav.prev {
  left: 0;
  justify-content: start;
}
.wp-block-theme-blocks-hero .block-nav.prev:before {
  right: 100%;
  transform: translate(40%, 0);
}
.wp-block-theme-blocks-hero .block-nav.next {
  right: 0;
  justify-content: end;
}
.wp-block-theme-blocks-hero .block-nav.next:before {
  left: 100%;
  transform: translate(-40%, 0);
}
.wp-block-theme-blocks-hero .block-nav .label {
  transition: all 0.2s ease;
  -webkit-text-decoration: underline solid currentColor;
          text-decoration: underline solid currentColor;
  text-decoration-color: transparent;
  text-decoration-thickness: 1.5px;
  text-underline-offset: 0.05em;
}
.wp-block-theme-blocks-hero .block-nav:hover .label {
  text-decoration-color: currentColor;
}
@media screen and (max-width: 1280px) {
  .wp-block-theme-blocks-hero .block-nav {
    padding: calc(var(--block-margin, 64px) * 0.5);
    width: calc(var(--block-height) * 0.2);
    --circle-size: calc(var(--block-height) * 1.45);
  }
  .wp-block-theme-blocks-hero .block-nav.prev:before {
    right: 0;
    transform: none;
  }
  .wp-block-theme-blocks-hero .block-nav.next:before {
    left: 0;
    transform: none;
  }
}
@media screen and (max-width: 1024px) {
  .wp-block-theme-blocks-hero .block-nav .label {
    width: 1.5rem;
    height: 2rem;
    background: no-repeat;
    background-size: contain;
    text-indent: -1000px;
    overflow: hidden;
  }
  .wp-block-theme-blocks-hero .block-nav.prev .label {
    margin-left: 1em;
    background-image: url(images/arrow-left-white.svg);
    background-position: 0% 50%;
  }
  .wp-block-theme-blocks-hero .block-nav.next .label {
    margin-right: 1em;
    background-image: url(images/arrow-right-white.svg);
    background-position: 100% 50%;
  }
}
@media screen and (max-width: 767px) {
  .wp-block-theme-blocks-hero {
    --block-height: 55vh;
    --border-width:1px;
    margin-bottom: calc(var(--block-margin, 64px) * 1.5);
  }
}
@media screen and (max-width: 500px) {
  .wp-block-theme-blocks-hero .block-nav {
    padding: calc(var(--block-margin, 64px) * 0.25);
  }
}

.wp-block-theme-blocks-hero-slide {
  position: relative;
  height: var(--block-height);
  overflow: hidden;
}
.wp-block-theme-blocks-hero-slide > .block-images {
  display: flex;
  align-items: stretch;
  height: var(--block-height);
}
.wp-block-theme-blocks-hero-slide > .block-images .image {
  position: relative;
  display: block;
  margin: 0;
  height: 100%;
  flex-grow: 1;
  flex-basis: 100%;
  background: rgba(0, 0, 0, 0.5);
}
.wp-block-theme-blocks-hero-slide > .block-images .image img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: var(--focal-point, 50% 50%);
     object-position: var(--focal-point, 50% 50%);
}
.wp-block-theme-blocks-hero-slide > .block-content {
  position: absolute;
  z-index: 10;
  top: 50%;
  left: 50%;
  max-width: 50%;
  width: 35rem;
  transform: translate(-50%, -50%);
  text-align: center;
}
.wp-block-theme-blocks-hero-slide > .block-content h1, .wp-block-theme-blocks-hero-slide > .block-content h2, .wp-block-theme-blocks-hero-slide > .block-content h3 {
  color: inherit;
}
.wp-block-theme-blocks-hero-slide > .block-content h1 {
  font-size: clamp(2rem, 3.358vw + 1.273rem, 4.556rem);
  line-height: 0.9;
  letter-spacing: -0.05em;
  margin-bottom: 2rem;
}
@media screen and (max-width: 767px) {
  .wp-block-theme-blocks-hero-slide > .block-content h1 {
    line-height: 1;
  }
}
.wp-block-theme-blocks-hero-slide video {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  width: auto;
  height: auto;
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%);
}
.wp-block-theme-blocks-hero-slide.is-style-single-image > .block-images .image.right {
  display: none;
}

.wp-block-theme-blocks-card {
  display: block;
}

.hentry.card {
  font-size: 0.8333333333rem;
}
.hentry.card .subtitle {
  font-size: 0.6111111111rem;
  font-family: neue-haas-grotesk-text, sans-serif;
  text-transform: uppercase;
  font-weight: 400;
}
.hentry.card:not(.is-style-rounded) .title {
  margin-top: 0.6em;
  margin-bottom: 0.95em;
  font-size: 1.1666666667rem;
  line-height: 0.95;
  letter-spacing: normal;
}
.hentry.card.is-style-rounded .title {
  font-size: clamp(2rem, 1.752vw + 1.62rem, 3.333rem);
}
.hentry.card .thumbnail {
  position: relative;
  display: block;
  padding: 0 0 calc(1 / var(--aspect-ratio, 1) * 100%);
  margin: 0 0 0.5555555556rem;
}
.hentry.card .thumbnail .img {
  background: black;
}
.hentry.card .thumbnail img,
.hentry.card .thumbnail .img {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: var(--focal-point, 50% 50%);
     object-position: var(--focal-point, 50% 50%);
}
.hentry.card .content p {
  max-width: 17rem;
  font-size: inherit;
}
.hentry.card.is-style-rounded {
  text-align: center;
}
.hentry.card.is-style-rounded .subtitle {
  display: none;
  position: absolute;
  width: 100%;
  margin-top: -2em;
}
.hentry.card.is-style-rounded .thumbnail {
  margin-bottom: calc(var(--block-margin, 64px) * 1);
}
.hentry.card.is-style-rounded .thumbnail img {
  border-radius: 1024px;
}
.hentry.card.is-style-rounded .content p {
  margin-left: auto;
  margin-right: auto;
}
.hentry.card.is-style-rounded:after {
  content: " ";
  display: block;
  margin: calc(var(--block-margin, 64px) * 0.5) auto 0;
  width: 26px;
  height: 15px;
  background: url(images/arrow-right.svg) no-repeat 50% 50%;
  background-size: contain;
}

.wp-block-theme-blocks-cards {
  margin: calc(var(--block-margin, 64px) * 1) auto;
}
.wp-block-theme-blocks-cards:first-child {
  margin-top: 0;
}
.wp-block-theme-blocks-cards:last-child {
  margin-bottom: 0;
}
h1 + .wp-block-theme-blocks-cards, h2 + .wp-block-theme-blocks-cards, h3 + .wp-block-theme-blocks-cards {
  margin-top: 0;
}
.wp-block-theme-blocks-cards .query-posts {
  display: grid;
  grid-auto-flow: row;
  grid-template-columns: repeat(var(--column-count, 3), 1fr);
  grid-template-rows: auto;
  margin-top: 0;
  margin-bottom: 0;
}
.wp-block-theme-blocks-cards .query-posts.two-rows {
  grid-template-rows: auto 1fr;
}
.wp-block-theme-blocks-cards .query-posts.three-rows {
  grid-template-rows: auto auto 1fr;
}
.wp-block-theme-blocks-cards .query-posts.four-rows {
  grid-template-rows: auto auto auto 1fr;
}
.wp-block-theme-blocks-cards .query-posts > .hentry {
  width: auto;
}
.wp-block-theme-blocks-cards .query-posts > .hentry.has-column-span {
  grid-column: span var(--column-span);
}
.wp-block-theme-blocks-cards .query-posts > .hentry.has-row-span {
  grid-row: span var(--row-span);
}
.wp-block-theme-blocks-cards .query-posts > .hentry.has-column-span {
  --hentry-width-column-span: calc(var(--hentry-width) * var(--column-span, 1) + ((var(--column-span, 1) - 1) * var(--column-gap, var(--gap))));
}
@media screen and (max-width: 1400px) {
  .wp-block-theme-blocks-cards.is-style-scrollable {
    overflow: auto;
  }
  .wp-block-theme-blocks-cards.is-style-scrollable .query-posts {
    width: 1268.75px;
    overflow: hidden;
  }
  .wp-block-theme-blocks-cards.is-style-scrollable .query-posts.one-across {
    --column-count:1;
  }
  .wp-block-theme-blocks-cards.is-style-scrollable .query-posts.two-across {
    --column-count:2;
  }
  .wp-block-theme-blocks-cards.is-style-scrollable .query-posts.three-across {
    --column-count:3;
  }
  .wp-block-theme-blocks-cards.is-style-scrollable .query-posts.four-across {
    --column-count:4;
  }
  .wp-block-theme-blocks-cards.is-style-scrollable .query-posts.five-across {
    --column-count:5;
  }
  .wp-block-theme-blocks-cards.is-style-scrollable .query-posts.six-across {
    --column-count:6;
  }
  .wp-block-theme-blocks-cards.is-style-scrollable .simplebar-track {
    position: relative;
    margin: 0;
  }
  .wp-block-theme-blocks-cards.is-style-scrollable .simplebar-track.simplebar-horizontal {
    height: 5px;
  }
  .wp-block-theme-blocks-cards.is-style-scrollable .simplebar-track .simplebar-scrollbar {
    opacity: 0;
    transition: opacity 0.2s ease;
  }
  .wp-block-theme-blocks-cards.is-style-scrollable .simplebar-track .simplebar-scrollbar.simplebar-visible {
    opacity: 1;
  }
  .wp-block-theme-blocks-cards.is-style-scrollable .simplebar-track .simplebar-scrollbar:before {
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    border-radius: 0;
    opacity: 1;
  }
}
@media screen and (min-width: 1201px) {
  .wp-block-theme-blocks-cards.is-style-carousel .query-posts.one-across {
    --column-count:1;
  }
  .wp-block-theme-blocks-cards.is-style-carousel .query-posts.two-across {
    --column-count:2;
  }
  .wp-block-theme-blocks-cards.is-style-carousel .query-posts.three-across {
    --column-count:3;
  }
  .wp-block-theme-blocks-cards.is-style-carousel .query-posts.four-across {
    --column-count:4;
  }
  .wp-block-theme-blocks-cards.is-style-carousel .query-posts.five-across {
    --column-count:5;
  }
  .wp-block-theme-blocks-cards.is-style-carousel .query-posts.six-across {
    --column-count:6;
  }
}
@media screen and (max-width: 1200px) {
  .wp-block-theme-blocks-cards.is-style-carousel .query-posts {
    display: flex;
  }
  .wp-block-theme-blocks-cards.is-style-carousel .query-posts.one-across .slick-list, .wp-block-theme-blocks-cards.is-style-carousel .query-posts.two-across .slick-list, .wp-block-theme-blocks-cards.is-style-carousel .query-posts.three-across .slick-list {
    max-width: 345px;
    margin-left: auto;
    margin-right: auto;
  }
  .wp-block-theme-blocks-cards.is-style-carousel .query-posts .hentry {
    margin: 0 calc(var(--block-margin, 64px) * 0.5);
  }
  .wp-block-theme-blocks-cards.is-style-carousel .block-dots {
    position: relative;
    z-index: 10;
    margin: calc(var(--block-margin, 64px) * 0.5) 0 0;
  }
  .wp-block-theme-blocks-cards.is-style-carousel:not(.has-rounded-cards) .block-dots li button {
    background: #eeeeee;
  }
  .wp-block-theme-blocks-cards.is-style-carousel:not(.has-rounded-cards) .block-dots li.slick-active button {
    background: black;
  }
  .wp-block-theme-blocks-cards.is-style-carousel.has-rounded-cards {
    --thumbnail-height: calc((345px - calc(var(--block-margin, 64px) * 1)) * 1.333);
    display: grid;
    grid-template-areas: "posts" "posts";
    grid-template-columns: minmax(0, 1fr);
    grid-template-rows: [start] var(--thumbnail-height) [end] auto;
  }
  .wp-block-theme-blocks-cards.is-style-carousel.has-rounded-cards .query-posts {
    grid-area: posts;
  }
  .wp-block-theme-blocks-cards.is-style-carousel.has-rounded-cards .block-dots {
    grid-column: 1/2;
    grid-row: start/end;
    align-self: end;
    padding: 0 0 1rem;
  }
}
@media screen and (max-width: 400px) {
  .wp-block-theme-blocks-cards.is-style-carousel.has-rounded-cards {
    --thumbnail-height: calc((100vw - var(--gutter-left) - var(--gutter-right)) * 1.333);
  }
  .wp-block-theme-blocks-cards.is-style-carousel.has-rounded-cards .block-dots {
    padding: 0 0 1rem;
  }
  .wp-block-theme-blocks-cards.is-style-carousel.has-rounded-cards .query-posts .hentry {
    margin: 0;
  }
}

.page-blocks > .wp-block-theme-blocks-cards.is-style-wider-width:last-child {
  margin-bottom: calc(var(--main-content-padding-bottom) * -1);
}
.page-blocks > .wp-block-theme-blocks-cards.is-style-wider-width:last-child > .query-posts {
  margin-bottom: var(--gap, calc(var(--block-margin, 64px) * 0.5));
}

.wp-block-theme-blocks-grid {
  --column-count: 3;
  --gap:0;
  --grid-block-width: calc(100% / var(--column-count));
  border-top: 1px solid currentColor;
}
.wp-block-theme-blocks-grid > .layout {
  display: flex;
  justify-content: start;
  flex-wrap: wrap;
}
.wp-block-theme-blocks-grid > .layout > .grid-block {
  margin: 0;
  width: var(--grid-block-width);
}
.wp-block-theme-blocks-grid .grid-block {
  box-sizing: border-box;
  padding: 0.5rem;
  display: grid;
  grid-template-columns: 1fr 48%;
  grid-template-rows: auto 1fr;
  grid-template-areas: "title image" "content image";
  border-bottom: 1px solid currentColor;
  border-right: 1px solid currentColor;
}
.wp-block-theme-blocks-grid .grid-block .title {
  grid-area: title;
  margin-bottom: calc(var(--block-margin, 64px) * 0.5);
  font-family: hv-fitzgerald, serif;
  font-weight: 700;
  font-size: clamp(1.956rem, 0.642vw + 1.816rem, 2.444rem);
  line-height: 1;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  color: black;
}
.wp-block-theme-blocks-grid .grid-block .content {
  box-sizing: border-box;
  grid-area: content;
  padding: 0 1rem calc(var(--block-margin, 64px) * 0.5) 0;
  font-size: clamp(0.667rem, 0.219vw + 0.619rem, 0.833rem);
}
.wp-block-theme-blocks-grid .grid-block .content h3 {
  font-size: 1.1666666667rem;
  letter-spacing: normal;
}
.wp-block-theme-blocks-grid .grid-block .content p {
  font-size: inherit;
}
.wp-block-theme-blocks-grid .grid-block .image {
  grid-area: image;
  position: relative;
  padding: 0 0 133%;
  background: rgba(0, 0, 0, 0.1);
}
.wp-block-theme-blocks-grid .grid-block .image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 50% 50%;
     object-position: 50% 50%;
}
.wp-block-theme-blocks-grid .grid-block.is-style-introduction {
  display: block;
}
.wp-block-theme-blocks-grid .grid-block.is-style-introduction .image {
  display: none;
}
.wp-block-theme-blocks-grid .grid-block.is-style-introduction .title {
  font-size: clamp(3.467rem, 1.139vw + 3.22rem, 4.333rem);
  margin-bottom: 0.5rem;
  letter-spacing: -0.06em;
}
@media screen and (min-width: 1201px) {
  .wp-block-theme-blocks-grid > .layout > .grid-block:nth-child(3n-2) {
    padding-left: 0;
  }
  .wp-block-theme-blocks-grid > .layout > .grid-block:nth-child(3n) {
    border-right: 0;
    padding-right: 0;
  }
}
@media screen and (max-width: 1200px) and (min-width: 768px) {
  .wp-block-theme-blocks-grid {
    --column-count: 2;
  }
  .wp-block-theme-blocks-grid > .layout > .grid-block:nth-child(2n-1) {
    padding-left: 0;
  }
  .wp-block-theme-blocks-grid > .layout > .grid-block:nth-child(2n) {
    border-right: 0;
    padding-right: 0;
  }
}
@media screen and (max-width: 767px) {
  .wp-block-theme-blocks-grid {
    --column-count: 1;
  }
  .wp-block-theme-blocks-grid > .layout > .grid-block {
    border-right: 0;
    padding-right: 0;
    padding-left: 0;
  }
}

.wp-block-theme-blocks-posts {
  position: relative;
}
.wp-block-theme-blocks-posts .query-posts {
  width: 100%;
}

.theme-block.wp-block-theme-blocks-posts {
  margin-bottom: calc(var(--block-margin, 64px) * 0.75);
  margin-top: calc(var(--block-margin, 64px) * 0.6);
}

.wp-block-theme-blocks-retailer {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-areas: "title title title" ".     image ." "hours image info" ".     image .";
  gap: calc(var(--block-margin, 64px) * 0.5);
  text-align: center;
  font-family: hv-fitzgerald, serif;
  font-weight: 700;
  font-size: clamp(1.167rem, 0.949vw + 0.961rem, 1.889rem);
  line-height: 1;
  letter-spacing: -0.03em;
  align-items: center;
  margin: calc(var(--block-margin, 64px) * 1) 0;
  color: black;
}
.wp-block-theme-blocks-retailer p {
  font-size: inherit;
}
.wp-block-theme-blocks-retailer .block-name {
  grid-area: title;
  border-bottom: 0;
  padding-bottom: 0;
  margin-bottom: 0;
}
@media screen and (max-width: 1024px) {
  .wp-block-theme-blocks-retailer .block-name {
    padding: calc(var(--block-margin, 64px) * 0.5) 0;
  }
}
.wp-block-theme-blocks-retailer .block-hours {
  grid-area: hours;
}
.wp-block-theme-blocks-retailer .block-image {
  grid-area: image;
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
}
.wp-block-theme-blocks-retailer .block-image img {
  position: relative;
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: var(--focal-point, 50% 50%);
     object-position: var(--focal-point, 50% 50%);
}
.wp-block-theme-blocks-retailer .block-info {
  grid-area: info;
}
.wp-block-theme-blocks-retailer .block-info .social {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.25rem;
  row-gap: 0.5em;
  margin-left: -0.25em;
}
.wp-block-theme-blocks-retailer .block-info .social .icon {
  padding: 0 0.5em;
  text-align: center;
  font-size: 0.8em;
}
@media screen and (max-width: 1024px) {
  .wp-block-theme-blocks-retailer {
    grid-template-columns: repeat(2, 1fr);
    grid-template-areas: "title title" "image image" ". ." "hours info";
    align-items: start;
  }
}
@media screen and (max-width: 600px) {
  .wp-block-theme-blocks-retailer {
    grid-template-columns: auto;
    grid-template-areas: "title" "image" "." "hours" "info";
  }
}

.wp-block-theme-blocks-media-text {
  display: grid;
  gap: calc(var(--block-margin, 64px) * 0.5);
  margin: calc(var(--block-margin, 64px) * 1) 0 calc(var(--block-margin, 64px) * 2);
  padding: calc(var(--block-margin, 64px) * 0.5) 0 0;
  border-top: 1px solid currentColor;
}
.wp-block-theme-blocks-media-text:first-child, .is-style-section-heading + .wp-block-theme-blocks-media-text {
  border-top: 0;
  padding-top: 0;
  margin-top: 0;
}
.wp-block-theme-blocks-media-text .block-embed {
  grid-area: embed;
}
.wp-block-theme-blocks-media-text .block-content {
  grid-area: content;
}
.wp-block-theme-blocks-media-text .block-content p:not(.is-style-intro) {
  max-width: 425px;
}
@media screen and (min-width: 768px) {
  .wp-block-theme-blocks-media-text {
    grid-template-columns: var(--left-column, 1fr) var(--right-column, 1fr);
    grid-template-areas: "content embed";
  }
  .wp-block-theme-blocks-media-text.is-style-content-right {
    grid-template-areas: "embed content";
  }
}
@media screen and (max-width: 767px) {
  .wp-block-theme-blocks-media-text {
    grid-template-columns: auto;
    grid-template-areas: "embed" "content";
    margin: calc(var(--block-margin, 64px) * 1) 0;
  }
}

.wp-block-theme-blocks-carousel {
  position: relative;
}
.wp-block-theme-blocks-carousel > .layout {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  grid-template-rows: auto;
  grid-template-areas: "slides" "captions" "dots";
}
.wp-block-theme-blocks-carousel .block-captions,
.wp-block-theme-blocks-carousel .block-page {
  font-style: normal;
  font-family: neue-haas-grotesk-text, sans-serif;
  font-size: clamp(0.889rem, 0.146vw + 0.857rem, 1rem);
  letter-spacing: 0.1em;
  line-height: 1.1;
  margin: 0.5rem 0 0 0;
}
.wp-block-theme-blocks-carousel .block-captions {
  grid-area: captions;
  padding: 0 4em 0 0;
}
.wp-block-theme-blocks-carousel .block-page {
  grid-area: captions;
  text-align: right;
}
.wp-block-theme-blocks-carousel .block-nav {
  position: absolute;
  grid-area: slides;
  box-sizing: border-box;
  height: 100%;
  z-index: 1;
  padding: calc(var(--block-margin, 64px) * 1);
  color: rgba(255, 255, 255, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: color 0.2s ease;
}
.wp-block-theme-blocks-carousel .block-nav .icon {
  font-size: 40px;
  transition: transform 0.2s ease;
  transform: translate(0, 0);
}
.wp-block-theme-blocks-carousel .block-nav.prev {
  left: 0;
}
.wp-block-theme-blocks-carousel .block-nav.prev:hover {
  color: white;
}
.wp-block-theme-blocks-carousel .block-nav.prev:hover .icon {
  transform: translate(-3px, 0);
}
.wp-block-theme-blocks-carousel .block-nav.next {
  right: 0;
}
.wp-block-theme-blocks-carousel .block-nav.next:hover {
  color: white;
}
.wp-block-theme-blocks-carousel .block-nav.next:hover .icon {
  transform: translate(3px, 0);
}
.wp-block-theme-blocks-carousel .block-slides {
  position: relative;
  z-index: 1;
  grid-area: slides;
  padding: 0;
}
.wp-block-theme-blocks-carousel .slide {
  position: relative;
  width: 100%;
}
.wp-block-theme-blocks-carousel .slide > .layout {
  margin-left: auto;
  margin-right: auto;
}
.wp-block-theme-blocks-carousel .slide > .layout p {
  margin-bottom: 0.5em;
}
.wp-block-theme-blocks-carousel .slide > .layout p.is-style-default {
  color: #0A42FD;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.wp-block-theme-blocks-carousel .slide > .layout .theme-block {
  margin-top: 0;
  margin-bottom: 0;
}
.wp-block-theme-blocks-carousel .slide > .layout .theme-block + .theme-block {
  margin-top: calc(var(--block-margin, 64px) * 0.5);
}
.wp-block-theme-blocks-carousel .slide .wp-block-embed,
.wp-block-theme-blocks-carousel .slide .wp-block-image {
  width: 100%;
}
.wp-block-theme-blocks-carousel .slide .wp-block-embed figcaption,
.wp-block-theme-blocks-carousel .slide .wp-block-image figcaption {
  display: none;
}
.wp-block-theme-blocks-carousel .block-dots {
  grid-area: slides;
  position: relative;
  display: flex;
  align-self: end;
  justify-content: center;
  z-index: 10;
  margin: 0 auto calc(var(--block-margin, 64px) * 1);
}
@media screen and (max-width: 767px) {
  .wp-block-theme-blocks-carousel .block-slides {
    padding-left: 0;
    padding-right: 0;
  }
  .wp-block-theme-blocks-carousel .block-nav {
    display: none !important;
    position: absolute;
    top: 50%;
    transform: translate(0, -50%);
    background: transparent;
    padding: 2em 0.5em;
  }
  .wp-block-theme-blocks-carousel .block-nav.prev {
    left: 0;
  }
  .wp-block-theme-blocks-carousel .block-nav.next {
    right: 0;
  }
}

.wp-block-theme-blocks-retailers {
  position: relative;
}
.wp-block-theme-blocks-retailers .query-posts {
  width: 100%;
}

.theme-block.wp-block-theme-blocks-retailers {
  margin-bottom: calc(var(--block-margin, 64px) * 0.5);
  margin-top: calc(var(--block-margin, 64px) * 0.5);
}

.wp-block-theme-blocks-retailers-list:last-child {
  margin-bottom: calc(var(--block-margin, 64px) * 1);
}
.wp-block-theme-blocks-retailers-list ul, .wp-block-theme-blocks-retailers-list li {
  margin: 0;
  padding: 0;
  list-style: none;
}
.wp-block-theme-blocks-retailers-list .block-retailers {
  text-transform: uppercase;
  --gap: calc(var(--block-margin, 64px) * 0.5);
  font-size: clamp(0.722rem, 0.584vw + 0.596rem, 1.167rem);
  line-height: 1.24;
  display: grid;
  gap: var(--gap);
  row-gap: calc(var(--gap) * 1.5);
  grid-template-rows: auto 1fr;
  grid-template-columns: repeat(6, 1fr);
  grid-template-areas: "retail retail retail retail dining experience" "retail retail retail retail dining hospitality";
  color: black;
}
.wp-block-theme-blocks-retailers-list .block-retailers > li {
  grid-area: var(--grid-area);
}
.wp-block-theme-blocks-retailers-list .block-retailers > li > strong {
  display: block;
  margin: 0 0 1em;
}
.wp-block-theme-blocks-retailers-list .block-retailers > li > ul {
  gap: var(--gap);
  row-gap: calc(var(--gap) * 1.5);
}
.wp-block-theme-blocks-retailers-list .block-retailers > li > ul > li {
  margin: 0 0 1.5rem;
  -moz-column-break-inside: avoid;
       break-inside: avoid;
}
@media screen and (max-width: 1024px) {
  .wp-block-theme-blocks-retailers-list .block-retailers > li > ul > li {
    margin: 0 0 0.5rem;
  }
}
.wp-block-theme-blocks-retailers-list .block-retailers > li > ul > li:last-child {
  margin-bottom: 0;
}
.wp-block-theme-blocks-retailers-list .block-retailers > li.term-retail > ul {
  -moz-column-count: 4;
       column-count: 4;
}
@media screen and (max-width: 1400px) {
  .wp-block-theme-blocks-retailers-list .block-retailers {
    grid-template-columns: repeat(5, 1fr);
    grid-template-areas: "retail retail retail dining experience" "retail retail retail dining hospitality";
  }
  .wp-block-theme-blocks-retailers-list .block-retailers > li.term-retail > ul {
    -moz-column-count: 3;
         column-count: 3;
  }
}
@media screen and (max-width: 1024px) {
  .wp-block-theme-blocks-retailers-list .block-retailers {
    grid-template-columns: repeat(4, 1fr);
    grid-template-areas: "retail retail dining experience" "retail retail dining hospitality";
  }
  .wp-block-theme-blocks-retailers-list .block-retailers > li.term-retail > ul {
    -moz-column-count: 2;
         column-count: 2;
  }
}
@media screen and (max-width: 767px) {
  .wp-block-theme-blocks-retailers-list .block-retailers {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto auto 1fr;
    grid-template-areas: "retail retail" "dining experience" "dining hospitality";
  }
  .wp-block-theme-blocks-retailers-list .block-retailers > li.term-retail > ul {
    -moz-column-count: 2;
         column-count: 2;
  }
}

.wp-block-theme-blocks-event-info {
  margin: calc(var(--block-margin, 64px) * 1) 0 1em;
  font-size: clamp(1.511rem, 0.496vw + 1.404rem, 1.889rem);
  font-family: hv-fitzgerald, serif;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: black;
}

.wp-block-theme-blocks-profile-quote {
  --layout-image-width: minmax(auto, 47rem);
  margin: calc(var(--block-margin, 64px) * 0.5) 0 calc(var(--block-margin, 64px) * 1);
  display: grid;
  grid-template-columns: 1fr var(--layout-image-width) 1fr;
  grid-template-areas: "title title title" ".     image content";
}
@media screen and (min-width: 1201px) {
  .wp-block-theme-blocks-profile-quote.is-style-quote-left {
    grid-template-areas: "title title title" "content image .";
  }
}
.wp-block-theme-blocks-profile-quote .block-image {
  position: relative;
  grid-area: image;
  align-self: start;
  padding: 0 calc(var(--block-margin, 64px) * 1);
}
.wp-block-theme-blocks-profile-quote .block-image .image {
  position: relative;
  margin: 0 auto;
  padding: 0 0 calc(1 / var(--aspect-ratio, 0.75) * 100%);
}
.wp-block-theme-blocks-profile-quote .block-image .image .img, .wp-block-theme-blocks-profile-quote .block-image .image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: var(--focal-point, 50% 50%);
     object-position: var(--focal-point, 50% 50%);
  border-radius: 1024px;
}
.wp-block-theme-blocks-profile-quote .block-image .image .img {
  background: #000;
}
.wp-block-theme-blocks-profile-quote .block-title {
  grid-area: title;
  text-align: center;
}
.wp-block-theme-blocks-profile-quote .block-content {
  grid-area: content;
  align-self: center;
}
@media screen and (max-width: 1600px) {
  .wp-block-theme-blocks-profile-quote {
    --layout-image-width: 30rem;
  }
}
@media screen and (max-width: 1200px) {
  .wp-block-theme-blocks-profile-quote {
    grid-template-areas: "title title title" ". image ." "content content content";
  }
  .wp-block-theme-blocks-profile-quote .block-content {
    margin: calc(var(--block-margin, 64px) * 1) auto 0;
    max-width: 40rem;
    text-align: center;
  }
}
@media screen and (max-width: 600px) {
  .wp-block-theme-blocks-profile-quote {
    grid-template-columns: auto;
    grid-template-areas: "title" "image" "content";
  }
}

.wp-block-theme-blocks-map {
  --gap: calc(var(--block-margin, 64px) * 0.5);
  display: grid;
  gap: var(--gap);
  grid-template-columns: 1fr 3fr;
  grid-template-areas: "content embed";
  border-top: 1px solid black;
  padding: calc(var(--block-margin, 64px) * 0.5) 0 0;
  margin: calc(var(--block-margin, 64px) * 2) 0 calc(var(--block-margin, 64px) * 1);
}
.wp-block-theme-blocks-map:first-child {
  margin-top: 0;
  border-top: 0;
  padding-top: 0;
}
.wp-block-theme-blocks-map:last-child {
  margin-bottom: 0;
}
.wp-block-theme-blocks-map .block-content {
  grid-area: content;
  transition: all 0.2s ease;
}
.wp-block-theme-blocks-map .block-content p {
  font-family: hv-fitzgerald, serif;
  font-weight: 700;
  font-size: clamp(1.167rem, 0.949vw + 0.961rem, 1.889rem);
  line-height: 1;
  letter-spacing: -0.03em;
}
.wp-block-theme-blocks-map .block-content h2.wp-block-heading {
  margin-bottom: 2rem;
}
@media screen and (max-width: 767px) {
  .wp-block-theme-blocks-map .block-content h2.wp-block-heading {
    text-align: center;
  }
}
.wp-block-theme-blocks-map .block-content .heading.h5 {
  letter-spacing: 0.1em;
}
.wp-block-theme-blocks-map .block-embed {
  position: relative;
  grid-area: embed;
  background: #f4f4f4;
  min-height: 535px;
}
.wp-block-theme-blocks-map .block-marker {
  --size: 40px;
  display: block;
  position: absolute;
  width: var(--size);
  height: var(--size);
  transform: translate(-50%, -100%);
  background: url(images/marker.svg) no-repeat 50% 100%;
  background-size: contain;
}
@media screen and (max-width: 1024px) {
  .wp-block-theme-blocks-map {
    grid-template-areas: "content" "embed";
    grid-template-columns: auto;
    grid-template-rows: auto 30vh;
  }
  .wp-block-theme-blocks-map .block-embed {
    min-height: 0;
    margin-left: calc(var(--gutter-left) * -1);
    margin-right: calc(var(--gutter-right) * -1);
  }
  .wp-block-theme-blocks-map .block-content {
    -moz-column-count: 2;
         column-count: 2;
  }
  .wp-block-theme-blocks-map h2 {
    -moz-column-span: all;
         column-span: all;
    padding-bottom: calc(var(--block-margin, 64px) * 0.5);
    border-bottom: 1px solid currentColor;
    text-align: center;
  }
  .wp-block-theme-blocks-map .heading.h6 {
    margin-top: 0;
  }
  .wp-block-theme-blocks-map p {
    margin-block-end: 1.5em;
  }
  .wp-block-theme-blocks-map .wp-block-buttons {
    -moz-column-span: all;
         column-span: all;
    margin-top: calc(var(--block-margin, 64px) * 0.5);
  }
}

.wp-block-theme-blocks-events {
  position: relative;
}
.wp-block-theme-blocks-events .query-posts {
  width: 100%;
}

.theme-block.wp-block-theme-blocks-events {
  margin-bottom: calc(var(--block-margin, 64px) * 0.75);
  margin-top: calc(var(--block-margin, 64px) * 0.6);
}
.theme-block.wp-block-theme-blocks-events #posts-filter {
  margin-bottom: 5em;
}

.wp-block-theme-blocks-retailers-map {
  --default-marker-color: black;
  --marker-size: 18px;
  display: grid;
  grid-template-columns: 1fr 3fr;
  gap: 1rem;
  grid-template-areas: "filter map" "retailers map";
}
.wp-block-theme-blocks-retailers-map .block-filter {
  grid-area: filter;
  z-index: 10;
}
.wp-block-theme-blocks-retailers-map .block-retailers {
  grid-area: retailers;
  height: 570px;
  overflow: auto;
  line-height: 1;
}
.wp-block-theme-blocks-retailers-map .block-retailers ul {
  display: flex;
  flex-direction: column;
  gap: 1em;
  margin: 0;
  padding: 0;
  list-style: none;
}
.wp-block-theme-blocks-retailers-map .block-retailers li {
  position: relative;
  display: block;
  width: 100%;
  padding-left: 1.7em;
  box-sizing: border-box;
  cursor: pointer;
}
.wp-block-theme-blocks-retailers-map .block-retailers li:before {
  display: block;
  content: " ";
  position: absolute;
  top: 0;
  left: 0;
  width: var(--marker-size);
  height: var(--marker-size);
  background: var(--highlight-color, var(--default-marker-color));
  border-radius: 50%;
}
.wp-block-theme-blocks-retailers-map .block-retailers li.category-retail, .wp-block-theme-blocks-retailers-map .block-retailers li.category-shopping {
  --highlight-color: #E55A25;
}
.wp-block-theme-blocks-retailers-map .block-retailers li.category-dining {
  --highlight-color: #77E8C5;
}
.wp-block-theme-blocks-retailers-map .block-retailers li.category-hospitality {
  --highlight-color: #FF80D8;
}
.wp-block-theme-blocks-retailers-map .block-retailers li.category-experience {
  --highlight-color: #0A42FD;
}
.wp-block-theme-blocks-retailers-map .block-retailers li.off {
  display: none;
}
.wp-block-theme-blocks-retailers-map .block-retailers li .infowindow {
  display: none;
}
.wp-block-theme-blocks-retailers-map .block-retailers .simplebar-track {
  margin: 0;
}
.wp-block-theme-blocks-retailers-map .block-retailers .simplebar-track.simplebar-vertical {
  width: 5px;
}
.wp-block-theme-blocks-retailers-map .block-retailers .simplebar-track .simplebar-scrollbar {
  opacity: 0;
  transition: opacity 0.2s ease;
}
.wp-block-theme-blocks-retailers-map .block-retailers .simplebar-track .simplebar-scrollbar.simplebar-visible {
  opacity: 1;
}
.wp-block-theme-blocks-retailers-map .block-retailers .simplebar-track .simplebar-scrollbar:before {
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  border-radius: 0;
  opacity: 1;
}
.wp-block-theme-blocks-retailers-map .block-embed {
  grid-area: map;
  position: relative;
  background: #f4f4f4;
}
@media screen and (max-width: 767px) {
  .wp-block-theme-blocks-retailers-map {
    grid-template-columns: auto;
    grid-template-areas: "filter" "map";
  }
  .wp-block-theme-blocks-retailers-map .block-retailers {
    display: none;
    max-height: 25vh;
    height: auto;
  }
  .wp-block-theme-blocks-retailers-map .block-embed {
    height: 50vh;
    min-height: 580px;
  }
}
.wp-block-theme-blocks-retailers-map .input.select .label, .wp-block-theme-blocks-retailers-map .input.select .text {
  flex-grow: 1;
}
.wp-block-theme-blocks-retailers-map .input.select .label.has-value,
.wp-block-theme-blocks-retailers-map .input.select .option {
  padding-left: 2.5em;
}
.wp-block-theme-blocks-retailers-map .input.select .label.has-value:before,
.wp-block-theme-blocks-retailers-map .input.select .option:before {
  display: block;
  content: " ";
  position: absolute;
  top: 50%;
  left: 0.8em;
  width: var(--marker-size);
  height: var(--marker-size);
  margin-top: calc(var(--marker-size) / -2);
  background: var(--highlight-color, var(--default-marker-color));
  border-radius: 50%;
}
.wp-block-theme-blocks-retailers-map .input.select .label.has-value[data-value=retail], .wp-block-theme-blocks-retailers-map .input.select .label.has-value[data-value=shopping],
.wp-block-theme-blocks-retailers-map .input.select .option[data-value=retail],
.wp-block-theme-blocks-retailers-map .input.select .option[data-value=shopping] {
  --highlight-color: #E55A25;
}
.wp-block-theme-blocks-retailers-map .input.select .label.has-value[data-value=dining],
.wp-block-theme-blocks-retailers-map .input.select .option[data-value=dining] {
  --highlight-color: #77E8C5;
}
.wp-block-theme-blocks-retailers-map .input.select .label.has-value[data-value=hospitality],
.wp-block-theme-blocks-retailers-map .input.select .option[data-value=hospitality] {
  --highlight-color: #FF80D8;
}
.wp-block-theme-blocks-retailers-map .input.select .label.has-value[data-value=experience],
.wp-block-theme-blocks-retailers-map .input.select .option[data-value=experience] {
  --highlight-color: #0A42FD;
}
.wp-block-theme-blocks-retailers-map .block-marker {
  --info-window-left: calc(var(--marker-size) + calc(var(--block-margin, 64px) * 0.3));
  --border-color: #777;
  position: absolute;
}
.wp-block-theme-blocks-retailers-map .block-marker.category-retail, .wp-block-theme-blocks-retailers-map .block-marker.category-shopping {
  --highlight-color: #E55A25;
}
.wp-block-theme-blocks-retailers-map .block-marker.category-dining {
  --highlight-color: #77E8C5;
}
.wp-block-theme-blocks-retailers-map .block-marker.category-hospitality {
  --highlight-color: #FF80D8;
}
.wp-block-theme-blocks-retailers-map .block-marker.category-experience {
  --highlight-color: #0A42FD;
}
.wp-block-theme-blocks-retailers-map .block-marker .dot {
  position: absolute;
  width: var(--marker-size);
  height: var(--marker-size);
  margin-top: calc(var(--marker-size) / -2);
  margin-left: calc(var(--marker-size) / -2);
  background: var(--highlight-color, var(--default-marker-color));
  border-radius: 50%;
  cursor: pointer;
  transition: 0.2s ease;
}
.wp-block-theme-blocks-retailers-map .block-marker .dot:after {
  content: " ";
  display: none;
  position: absolute;
  left: 100%;
  margin: 0 0 0 2px;
  top: calc(var(--marker-size) / 2 - 0.5px);
  height: 1px;
  width: var(--info-window-left);
  background: var(--border-color);
}
.wp-block-theme-blocks-retailers-map .block-marker .infowindow {
  display: none;
  box-sizing: border-box;
  position: absolute;
  top: calc(var(--block-margin, 64px) * -1);
  left: var(--info-window-left);
  width: 275px;
}
.wp-block-theme-blocks-retailers-map .block-marker.on .infowindow {
  display: block;
}
.wp-block-theme-blocks-retailers-map .block-marker.on .dot:after {
  display: block;
}
.wp-block-theme-blocks-retailers-map .block-marker.off .dot {
  filter: contrast(10%);
}
.wp-block-theme-blocks-retailers-map .infowindow {
  --padding: 0.5555555556rem;
  padding: var(--padding);
  background: white;
  border: 1px solid var(--border-color);
  font-size: 0.8333333333rem;
}
.wp-block-theme-blocks-retailers-map .infowindow a:not(.website) {
  -webkit-text-decoration: underline solid transparent;
          text-decoration: underline solid transparent;
}
.wp-block-theme-blocks-retailers-map .infowindow a:not(.website):hover {
  -webkit-text-decoration: underline solid currentColor;
          text-decoration: underline solid currentColor;
}
.wp-block-theme-blocks-retailers-map .infowindow .thumbnail {
  position: relative;
  display: block;
  padding: 0 0 66%;
  margin: 0;
  background: #000;
}
.wp-block-theme-blocks-retailers-map .infowindow .thumbnail .img {
  background: black;
}
.wp-block-theme-blocks-retailers-map .infowindow .thumbnail img,
.wp-block-theme-blocks-retailers-map .infowindow .thumbnail .img {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: var(--focal-point, 50% 50%);
     object-position: var(--focal-point, 50% 50%);
}
.wp-block-theme-blocks-retailers-map .infowindow .title {
  font-size: 1.1666666667rem;
  text-decoration: none;
  padding: var(--padding) 0;
  margin: 0 0 var(--padding);
  border-bottom: 1px solid currentColor;
}
.wp-block-theme-blocks-retailers-map .infowindow .social {
  display: flex;
  gap: 0.5em;
}
.wp-block-theme-blocks-retailers-map .infowindow .more {
  display: block;
  margin: var(--padding) 0 0 auto;
  width: 26px;
  height: 16px;
  background: url(images/arrow-right.svg) no-repeat 100% 100%;
  background-size: contain;
}
.wp-block-theme-blocks-retailers-map .infowindow p {
  margin-bottom: 0.5em;
}

.wp-block-theme-blocks-q-a {
  margin: 1rem auto;
}
.wp-block-theme-blocks-q-a + .wp-block-theme-blocks-q-a {
  margin-top: 1.5rem;
}
.wp-block-theme-blocks-q-a.has-layout-center {
  max-width: 845px;
}
.wp-block-theme-blocks-q-a .block-question,
.wp-block-theme-blocks-q-a .block-answer {
  position: relative;
  padding-left: 1.25em;
}
.wp-block-theme-blocks-q-a .block-question:before,
.wp-block-theme-blocks-q-a .block-answer:before {
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
  color: black;
}
.wp-block-theme-blocks-q-a .block-question:before {
  content: "Q:";
}
.wp-block-theme-blocks-q-a .block-answer {
  margin-top: 1rem;
}
.wp-block-theme-blocks-q-a .block-answer:before {
  content: "A:";
}

h1,
h2,
h3,
h4,
h5,
h6,
.heading {
  position: relative;
  margin: 0 0 1rem 0;
  padding: 0;
  clear: both;
  font-family: hv-fitzgerald, serif;
  font-weight: 700;
  font-style: normal;
  line-height: 1;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  -webkit-font-smoothing: antialiased;
  color: black;
}
h1 em,
h2 em,
h3 em,
h4 em,
h5 em,
h6 em,
.heading em {
  text-transform: none;
}
h1.inline,
h2.inline,
h3.inline,
h4.inline,
h5.inline,
h6.inline,
.heading.inline {
  display: inline;
  margin-right: 1em;
}
h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a,
.heading a {
  display: block;
  text-decoration: none;
  color: inherit;
  transition: color 0.2s ease;
}
h1 a:hover,
h2 a:hover,
h3 a:hover,
h4 a:hover,
h5 a:hover,
h6 a:hover,
.heading a:hover {
  text-decoration: none;
  color: #4D4D4F;
}
h1:first-child,
h2:first-child,
h3:first-child,
h4:first-child,
h5:first-child,
h6:first-child,
.heading:first-child {
  margin-top: 0;
}
h1:not(.is-style-section-heading):last-child,
h2:not(.is-style-section-heading):last-child,
h3:not(.is-style-section-heading):last-child,
h4:not(.is-style-section-heading):last-child,
h5:not(.is-style-section-heading):last-child,
h6:not(.is-style-section-heading):last-child,
.heading:not(.is-style-section-heading):last-child {
  margin-bottom: 0;
}
h1.has-text-align-center,
h2.has-text-align-center,
h3.has-text-align-center,
h4.has-text-align-center,
h5.has-text-align-center,
h6.has-text-align-center,
.heading.has-text-align-center {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
}
h1 + .theme-block.is-style-content-width, h1 + .theme-block.is-style-full-width, h1 + .theme-block.wp-block-image,
h2 + .theme-block.is-style-content-width,
h2 + .theme-block.is-style-full-width,
h2 + .theme-block.wp-block-image,
h3 + .theme-block.is-style-content-width,
h3 + .theme-block.is-style-full-width,
h3 + .theme-block.wp-block-image,
h4 + .theme-block.is-style-content-width,
h4 + .theme-block.is-style-full-width,
h4 + .theme-block.wp-block-image,
h5 + .theme-block.is-style-content-width,
h5 + .theme-block.is-style-full-width,
h5 + .theme-block.wp-block-image,
h6 + .theme-block.is-style-content-width,
h6 + .theme-block.is-style-full-width,
h6 + .theme-block.wp-block-image,
.heading + .theme-block.is-style-content-width,
.heading + .theme-block.is-style-full-width,
.heading + .theme-block.wp-block-image {
  margin-top: 1.75em;
}
h1.has-subheading:before,
h2.has-subheading:before,
h3.has-subheading:before,
h4.has-subheading:before,
h5.has-subheading:before,
h6.has-subheading:before,
.heading.has-subheading:before {
  content: var(--subheading);
  position: relative;
  display: block;
  margin: 0 0 calc(var(--block-margin, 64px) * 2.5);
  text-transform: none;
  font-size: clamp(1.2rem, 0.394vw + 1.115rem, 1.5rem);
  font-weight: 700;
  letter-spacing: normal;
}
@media screen and (max-width: 767px) {
  h1.has-subheading:before,
  h2.has-subheading:before,
  h3.has-subheading:before,
  h4.has-subheading:before,
  h5.has-subheading:before,
  h6.has-subheading:before,
  .heading.has-subheading:before {
    margin: 0 0 calc(var(--block-margin, 64px) * 1);
  }
}
h1.has-subheading.is-style-section-heading:before,
h2.has-subheading.is-style-section-heading:before,
h3.has-subheading.is-style-section-heading:before,
h4.has-subheading.is-style-section-heading:before,
h5.has-subheading.is-style-section-heading:before,
h6.has-subheading.is-style-section-heading:before,
.heading.has-subheading.is-style-section-heading:before {
  left: 50%;
  translate: -50% 0;
}

.h1,
h1 {
  font-size: clamp(3.333rem, 4.307vw + 2.4rem, 6.611rem);
  line-height: 0.8;
  letter-spacing: -0.065em;
}

.h2,
h2 {
  font-size: clamp(1.944rem, 3.139vw + 1.264rem, 4.333rem);
  line-height: 0.8;
  letter-spacing: -0.05em;
  margin-bottom: 1.75rem;
}

.h3,
h3 {
  font-size: clamp(1.167rem, 2.117vw + 0.708rem, 2.778rem);
}

.h4,
h4 {
  margin-bottom: 0.3em;
  font-size: clamp(1rem, 0.219vw + 0.953rem, 1.167rem);
}

.h5,
h5 {
  margin-bottom: 0.5rem;
  font-size: clamp(0.778rem, 0.292vw + 0.715rem, 1rem);
  font-family: neue-haas-grotesk-text, sans-serif;
  text-transform: uppercase;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: #000;
}

.h6,
h6 {
  margin-bottom: 1em;
  font-size: 0.6111111111rem;
  font-family: neue-haas-grotesk-text, sans-serif;
  font-weight: 400;
  letter-spacing: 0.1em;
}

@media screen and (max-width: 767px) {
  h1,
  .h1,
  h1.page-title,
  h1.block-title,
  h2.heading,
  h2.block-title,
  h2 {
    line-height: 1;
    letter-spacing: -0.05em;
  }
}
[class*=wp-block]:not(.wp-block-separator, .is-style-section-heading) + h1:not(.is-style-section-heading), [class*=wp-block]:not(.wp-block-separator, .is-style-section-heading) + h2:not(.is-style-section-heading),
[class*=theme-block] + h1:not(.is-style-section-heading),
[class*=theme-block] + h2:not(.is-style-section-heading),
p + h1:not(.is-style-section-heading),
p + h2:not(.is-style-section-heading),
ol + h1:not(.is-style-section-heading),
ol + h2:not(.is-style-section-heading),
ul + h1:not(.is-style-section-heading),
ul + h2:not(.is-style-section-heading) {
  margin-top: calc(var(--block-margin, 64px) * 1);
}

[class*=wp-block]:not(.wp-block-separator, .wp-block-heading) + h3,
[class*=theme-block] + h3,
p + h3,
ol + h3,
ul + h3 {
  margin-top: calc(var(--block-margin, 64px) * 1);
}

[class*=wp-block] + h4, [class*=wp-block] + h5, [class*=wp-block] + .h5, [class*=wp-block] + h6, [class*=wp-block] + .h6,
[class*=theme-block] + h4,
[class*=theme-block] + h5,
[class*=theme-block] + .h5,
[class*=theme-block] + h6,
[class*=theme-block] + .h6,
p + h4,
p + h5,
p + .h5,
p + h6,
p + .h6,
ol + h4,
ol + h5,
ol + .h5,
ol + h6,
ol + .h6,
ul + h4,
ul + h5,
ul + .h5,
ul + h6,
ul + .h6 {
  margin-top: calc(var(--block-margin, 64px) * 0.4);
}

.is-style-expandable {
  --highlight-color: #0A42FD;
  cursor: pointer;
  position: relative;
  padding-left: 1.2em;
}
.is-style-expandable:hover {
  color: var(--highlight-color);
}
.is-style-expandable:before {
  position: absolute;
  display: inline-block;
  left: 0;
  top: 0.1em;
  width: 1.5em;
  height: 1.5em;
  line-height: 1.5em;
  font-size: 0.6em;
  text-align: center;
  margin: 0.1em 0.2em 0 0;
  border-radius: 50%;
  transition: all 0.2s ease;
  font-family: "Font Awesome 6 Free";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  font-weight: 900;
  text-transform: none;
  content: "\f061";
  color: white;
  background: var(--highlight-color);
}
h3.is-style-expandable:before {
  top: 0.17em;
}

h4.is-style-expandable:before {
  top: 0.2em;
}

h5.is-style-expandable:before {
  top: 0.2em;
}

h6.is-style-expandable:before {
  top: 0.2em;
}

.is-style-expandable:focus {
  outline: none;
  text-decoration: underline;
}
.is-style-expandable.opened:before {
  transform: rotate(90deg);
  background-color: var(--highlight-color);
}
@media screen and (min-width: 768px) {
  body.theme .is-style-expandable.mobile-expand {
    cursor: default;
    padding-top: 0;
    border-top: 0;
  }
  body.theme .is-style-expandable.mobile-expand:before {
    display: none;
  }
  body.theme .is-style-expandable.mobile-expand + .expand-content {
    display: block !important;
  }
}
@media screen and (max-width: 767px) {
  body.theme .is-style-expandable.mobile-expand {
    border-top: 1px solid rgba(0, 0, 0, 0.3);
    padding-top: 2rem;
  }
  body.theme .is-style-expandable.mobile-expand:before {
    margin-top: 2rem;
  }
}

.expand-content {
  display: none;
  margin: 0;
  padding-bottom: 1.5em;
}
.expand-content + .is-style-expandable {
  margin-top: 1em;
}

h1.is-style-arrow > a,
h2.is-style-arrow > a,
h3.is-style-arrow > a,
h4.is-style-arrow > a,
h5.is-style-arrow > a,
h6.is-style-arrow > a,
.heading.is-style-arrow > a {
  color: red;
}
h1.is-style-arrow .icon,
h2.is-style-arrow .icon,
h3.is-style-arrow .icon,
h4.is-style-arrow .icon,
h5.is-style-arrow .icon,
h6.is-style-arrow .icon,
.heading.is-style-arrow .icon {
  display: inline-block;
  margin: 0 0 0 0.5rem;
  width: 0.8em;
  height: 0.7em;
  stroke: currentColor;
  stroke-width: 8;
  transition: all 0.2s ease;
}
h1.is-style-arrow a:hover .icon,
h2.is-style-arrow a:hover .icon,
h3.is-style-arrow a:hover .icon,
h4.is-style-arrow a:hover .icon,
h5.is-style-arrow a:hover .icon,
h6.is-style-arrow a:hover .icon,
.heading.is-style-arrow a:hover .icon {
  transform: translate(5px, 0);
}

h1.is-style-hero,
h2.is-style-hero,
h3.is-style-hero {
  font-size: clamp(1.667rem, 9.854vw + -0.468rem, 9.167rem);
  max-width: 10em;
  margin: 0 auto calc(var(--block-margin, 64px) * 2.5);
  line-height: 0.9;
  text-align: center;
}
@media screen and (max-width: 767px) {
  h1.is-style-hero,
  h2.is-style-hero,
  h3.is-style-hero {
    line-height: 1;
    margin: 0 auto calc(var(--block-margin, 64px) * 2);
  }
}

h1.is-style-section-heading,
h2.is-style-section-heading,
h3.is-style-section-heading {
  padding: calc(var(--block-margin, 64px) * 0.5) 0;
  margin-top: calc(var(--block-margin, 64px) * 2.5);
  margin-bottom: calc(var(--block-margin, 64px) * 0.5);
  border-top: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
}
@media screen and (max-width: 767px) {
  h1.is-style-section-heading,
  h2.is-style-section-heading,
  h3.is-style-section-heading {
    text-align: center;
  }
}
body.front-page h1.is-style-section-heading.is-front-page-larger,
body.front-page h2.is-style-section-heading.is-front-page-larger,
body.front-page h3.is-style-section-heading.is-front-page-larger {
  font-size: clamp(1.944rem, 6.131vw + 0.616rem, 6.611rem);
}
h1.is-style-section-heading:first-child,
h2.is-style-section-heading:first-child,
h3.is-style-section-heading:first-child {
  margin-top: 0;
}
h1.is-style-section-heading:not(.has-text-align-left, .has-text-align-right),
h2.is-style-section-heading:not(.has-text-align-left, .has-text-align-right),
h3.is-style-section-heading:not(.has-text-align-left, .has-text-align-right) {
  text-align: center;
}
@media screen and (max-width: 1024px) {
  h1.is-style-section-heading,
  h2.is-style-section-heading,
  h3.is-style-section-heading {
    padding: calc(var(--block-margin, 64px) * 0.25) 0;
  }
}

h5.is-style-section-heading,
.h5.is-style-section-heading {
  margin-top: calc(var(--block-margin, 64px) * 3);
  padding-bottom: 0.5em;
  margin-bottom: calc(var(--block-margin, 64px) * 0.5);
  border-bottom: 1px solid currentColor;
}
@media screen and (max-width: 1024px) {
  h5.is-style-section-heading,
  .h5.is-style-section-heading {
    margin-top: calc(var(--block-margin, 64px) * 2.5);
  }
}
h5.is-style-section-heading:first-child, h5.is-style-section-heading + .theme-block,
.h5.is-style-section-heading:first-child,
.h5.is-style-section-heading + .theme-block {
  margin-top: 0;
}

.is-style-guide {
  position: relative;
  margin-left: calc(var(--gutter-left) * -1);
  margin-right: calc(var(--gutter-right) * -1);
  padding: calc(var(--block-margin, 64px) * 0.5) var(--gutter-right) calc(var(--block-margin, 64px) * 0.5) var(--gutter-left);
  background: #eee;
  font-size: 2rem;
}

.wp-block-buttons {
  margin-bottom: 1em;
  gap: 1rem;
  color: black;
  /*    @media screen and (max-width:$mobile-breakpoint) {                        
          >.wp-block-button,
          >.wp-block-button.wp-block-button {
              &:last-child {
                  margin-left: auto;
                  margin-right: auto;
              }
          }
      }
  */
}
.wp-block-buttons:last-child {
  margin-bottom: 0;
}
.wp-block-buttons > .wp-block-button:last-child,
.wp-block-buttons > .wp-block-button.wp-block-button:last-child {
  margin-right: 0;
}
.wp-block-buttons.is-content-justification-center {
  display: flex;
}
.wp-block-buttons.is-content-justification-center > .wp-block-button {
  margin-right: 0.5em;
  margin-left: 0.5em;
}
.wp-block-buttons.has-background {
  padding: 1em;
  border-radius: 1em;
}
.wp-block-theme-blocks-posts + .wp-block-buttons {
  margin-top: calc(var(--block-margin, 64px) * 2.5);
  margin-bottom: calc(var(--block-margin, 64px) * 2.5);
}

.wp-block-button {
  position: relative;
  display: inline-block;
  line-height: 1;
}
.wp-block-button > .wp-block-button__link {
  position: relative;
  display: inline-flex;
  align-items: center;
  margin: 0;
  border: 0;
  font-family: neue-haas-grotesk-text, sans-serif;
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 1;
  opacity: 1;
  text-transform: uppercase;
  transition: 0.2s ease;
  -webkit-font-smoothing: antialiased;
  border-radius: 0px;
  font-weight: 400;
  font-size: 0.9444444444rem;
  text-align: left;
  text-decoration: none;
}
.wp-block-button > .wp-block-button__link .icon.is-prepended-icon {
  margin: 0 0.5em 0 0;
}
.wp-block-button > .wp-block-button__link:visited {
  color: inherit;
}
.wp-block-button.has-icon > .wp-block-button__link:after, .wp-block-button.has-no-icon > .wp-block-button__link:after {
  display: none;
}
.wp-block-button:not(.is-style-text) > .wp-block-button__link {
  --shift: .7em;
  --padding-x: 0.88rem;
  --padding-y: 0.5rem;
  padding: var(--padding-y) var(--padding-x);
  color: var(--color, inherit);
  background: rgba(255, 255, 255, 0.3);
  border: 1px solid var(--color, currentColor);
  text-align: center;
}
.wp-block-button:not(.is-style-text) > .wp-block-button__link .label {
  position: relative;
  z-index: 1;
}
.wp-block-button:not(.is-style-text) > .wp-block-button__link:hover {
  background-color: black;
  color: white;
  border-color: black;
}
.wp-block-button.is-style-filled > .wp-block-button__link {
  background-color: black;
  color: white;
  border: 1px solid black;
}
.wp-block-button.is-style-filled > .wp-block-button__link:hover {
  color: black;
  background-color: white;
}
.wp-block-button.is-style-text {
  --icon-size: 1.25em;
}
.wp-block-button.is-style-text > .wp-block-button__link {
  padding: 0.5em 0;
  background: none;
  color: inherit;
  border: 0;
  text-transform: uppercase;
  font-family: hv-fitzgerald, serif;
  font-weight: 700;
  letter-spacing: normal;
}
.wp-block-button.is-style-text > .wp-block-button__link > .label {
  transition: 0.2s ease;
  -webkit-text-decoration: underline solid transparent;
          text-decoration: underline solid transparent;
  text-decoration-color: var(--button-text-decoration-color-initial, transparent);
  text-decoration-thickness: 1.5px;
  text-underline-offset: 0.05em;
}
.wp-block-button.is-style-text > .wp-block-button__link > .label:hover {
  text-decoration-color: var(--button-text-decoration-color-hover, currentColor);
}
.wp-block-button.is-style-text > .wp-block-button__link:hover {
  --button-text-decoration-color-hover: currentColor;
}
.wp-block-button.no-arrow > .wp-block-button__link .icon.css-arrow {
  display: none;
}
.wp-block-button.loading:after {
  position: absolute;
  right: -40px;
  top: 50%;
  margin: -15px 0 0 0;
  display: block;
  background: url(images/loading.png) no-repeat center top;
  width: 30px;
  height: 30px;
  content: " ";
  animation: loading 1s steps(19) infinite;
}
.wp-block-button.done {
  opacity: 0.5;
}
.wp-block-button.done > .wp-block-button__link {
  --grayed: rgba(100,100,100,.5);
  cursor: default;
  color: var(--grayed);
  border-color: var(--grayed);
  background-color: transparent;
}
.wp-block-button.done > .wp-block-button__link:hover {
  border-color: var(--grayed);
  color: var(--grayed);
  background-color: transparent;
}

.theme-block.wp-block-theme-blocks-cards + .wp-block-buttons {
  margin-top: calc(var(--block-margin, 64px) * -0.5);
}

.wp-block-columns {
  position: relative;
  margin-top: calc(var(--block-margin, 64px) * 0.5);
  margin-bottom: calc(var(--block-margin, 64px) * 0.5);
}
.wp-block-columns:first-child {
  margin-top: 0;
}
.wp-block-columns:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 781px) {
  .wp-block-columns {
    display: block;
  }
  .wp-block-columns .wp-block-column {
    margin-left: auto;
    margin-right: auto;
  }
}
.wp-block-columns > .wp-block-column {
  position: relative;
}
.wp-block-columns.is-layout-flex {
  display: flex;
  gap: calc(var(--block-margin, 64px) * 0.5);
}
@media screen and (max-width: 767px) {
  .wp-block-columns.is-layout-flex {
    gap: calc(var(--block-margin, 64px) * 1);
  }
}

.wp-block-columns.is-style-two-up {
  max-width: calc(1142px + var(--block-margin, 64px) * 0.5);
  margin-left: auto;
  margin-right: auto;
  margin-bottom: calc(var(--block-margin, 64px) * 2.5);
}
@media screen and (max-width: 767px) {
  .wp-block-columns.is-style-two-up {
    margin-bottom: revert;
  }
}

/*
.wp-block-columns.mobile-carousel {

    @media screen and (max-width:$mobile-breakpoint) {
        .wp-block-column.slick-slide {
            margin-left:0;
        }

        .slick-list {
            position:relative;
            left:50%;
            width:100vw;
            margin-left:-50vw;
        }

        .slick-slide {
            padding: ($gutter * 100vw);
        }
    }
}
*/
/*
.wp-block-columns.is-style-separators {
    .wp-block-column:not(:first-child) {
        &:before {
            content: ' ';
            display: block;
            position: absolute;
            top:0;
            left: ($block-margin * -1);
            width: 1px;
            height: 100%;
            background-color: currentColor;
            opacity:.1;
        }
    }

    @media screen and (max-width: 781px) {
        .wp-block-column {
            //flex-basis: 100%!important;
            margin-left: 0;
        }
        .wp-block-column:not(:first-child) {
            &:before {
                display: none;
            }
        }
    }
}

.wp-block-columns.is-style-stats {
    margin-top:block-margin(1);
    > .wp-block-column {
        padding-top:1em;
        border-top:1px solid currentColor;
    }
}

@media screen and (max-width:$mobile-breakpoint) {
    .is-content-centered {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;

        > * {
            text-align: center;
        }
    }

    .wp-block-columns.is-layout-flex {
        margin-top: 4rem;
        gap: 4em;
    }
}

*/
.wp-block-image {
  --block-margin-multiplier: 1;
  position: relative;
  overflow: hidden;
  border-radius: 0px;
}
.wp-block-image.is-resized img {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 50% 50%;
     object-position: 50% 50%;
}
.wp-block-image.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.wp-block-image .image {
  position: relative;
  display: block;
}
.wp-block-image img {
  display: block;
  margin: 0 auto;
  width: 100%;
  border-radius: inherit;
}
.wp-block-image figcaption {
  display: block;
  margin: calc(var(--block-margin, 64px) * 0.5) 0 0.2rem;
  padding: 0;
  text-align: center;
  font-style: normal;
  font-weight: 700;
  font-family: hv-fitzgerald, serif;
  font-size: clamp(0.933rem, 0.307vw + 0.867rem, 1.167rem);
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: black;
}
.wp-block-image.has-aspect-ratio .image {
  padding: 0 0 calc(1 / var(--aspect-ratio, 1) * 100%);
}
.wp-block-image.has-aspect-ratio img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: var(--focal-point, 50% 50%);
     object-position: var(--focal-point, 50% 50%);
}
@media screen and (max-width: 600px) {
  .wp-block-image.alignleft, .wp-block-image.alignright {
    margin-left: auto;
    margin-right: auto;
    float: none;
  }
}
.wp-block-image.hide-caption figcaption {
  display: none;
}

.wp-block-group {
  position: relative;
  margin-top: calc(var(--block-margin, 64px) * 0.5);
  margin-bottom: calc(var(--block-margin, 64px) * 0.5);
}
.wp-block-group:first-child {
  margin-top: 0;
}
.wp-block-group:last-child {
  margin-bottom: 0;
}
.wp-block-separator + .wp-block-group {
  margin-top: calc(var(--block-margin, 64px) * 0.5);
}

.wp-block-group.has-background {
  position: relative;
  padding: calc(var(--block-margin, 64px) * 0.5);
}

.wp-block-group.is-style-full-width {
  padding-left: var(--gutter-left);
  padding-right: var(--gutter-right);
}
.wp-block-group.is-style-full-width.has-background {
  padding-top: calc(var(--block-margin, 64px) * 1.5);
  padding-bottom: calc(var(--block-margin, 64px) * 1.5);
}
.wp-block-group.is-style-full-width:last-child {
  margin-bottom: calc(var(--padding-bottom, 0) * -1);
}

@media screen and (min-width: 768px) {
  .wp-block-group.content-two-columns {
    -moz-column-count: 2;
         column-count: 2;
    -moz-column-gap: 2rem;
         column-gap: 2rem;
  }
}

.wp-block-group.is-style-heading-content {
  position: relative;
  --column-gap: calc(var(--block-margin, 64px) * 0.5);
}
.wp-block-group.is-style-heading-content:first-child {
  margin-top: calc(var(--block-margin, 64px) * 0.5);
}
@media screen and (min-width: 768px) {
  .wp-block-group.is-style-heading-content {
    padding-left: calc(50% + var(--column-gap) / 2);
  }
  .wp-block-group.is-style-heading-content > h1, .wp-block-group.is-style-heading-content h2, .wp-block-group.is-style-heading-content h3, .wp-block-group.is-style-heading-content .pull-left {
    position: absolute;
    left: 0;
    width: calc(50% - calc(var(--block-margin, 64px) * 1));
    margin-top: 0;
  }
  .wp-block-group.is-style-heading-content > .wp-block-separator {
    margin-left: calc(-100% - var(--column-gap));
    width: auto;
  }
}

/*
.wp-block-group.is-style-read-more {
    --max-height: none;
    margin-top:0;
    margin-bottom:block-margin(1);
    &:last-child {
        margin-bottom:0;
    }
    > .inner {
        position:relative;
        max-height: 300px;
        overflow:hidden;
        transition: max-height $appear-transition;
        &:after {
            content:' ';
            position:absolute;
            bottom:0;
            left:0;
            width:100%;
            height:100px;
            background: linear-gradient(0deg, var(--background-color, rgba($color-white, 1)), rgba($color-white, 0));
            opacity:1;
            transition: opacity $appear-transition;
        }
    }
    > a.read-more {
        display:inline-block;
        margin:1em 0 0;
        text-decoration:none;
        font-size:.9em;
        font-weight:500;
        color: var(--color, navy);
        &:before {
            display:inline-block;
            font-size: 15px;
            margin:0 0.6em 0 0;
            width:1.4em;
            height:1.4em;
            line-height:1.4em;
            text-align:center;
            border-radius:50%;
            color: $color-white;
            background:$color-navy;
            @include icon-font('arrow-right');
            transition: all $hover-transition;
            transform: translate(0px, 0);
        }
        &:hover {
            &:before {
                transform: translate(3px, 0);
            }
        }
    }
    &.read-more-on {
        > .inner {
            max-height:var(--max-height, none);
            &:after {
                opacity:0;
            }
        }
        > .read-more {
            display:none;
        }
        &.done {
            > .inner {
                overflow:visible !important;
                transition:none !important;
                max-height:none !important;
                &:after {
                    display:none;
                }
            }
        }
    }
}
*/
/*
.wp-block-group.logos {
    margin-top:block-margin(.5);
    margin-bottom:block-margin(.5);
    .wp-block-image {
        width:150px;
        margin: 1em;
        figcaption {
            display:none;
        }
        img {
            margin: 0 auto;
        }
    }
}
*/
.wp-block-quote {
  position: relative;
  margin: calc(var(--block-margin, 64px) * 1) 0;
  padding: 0;
  border: 0;
  font-size: clamp(1.511rem, 0.496vw + 1.404rem, 1.889rem);
  font-family: hv-fitzgerald, serif;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: black;
}
.wp-block-quote:first-child {
  margin-top: 0;
}
.wp-block-quote:last-child {
  margin-bottom: 0;
}
.wp-block-quote.has-text-align-center {
  max-width: 1024px;
  margin-left: auto;
  margin-right: auto;
}
.wp-block-quote.has-text-align-left {
  max-width: 1024px;
}
.wp-block-quote.has-text-align-right {
  max-width: 1024px;
  margin-left: auto;
}
.wp-block-quote p {
  margin: 0;
  font-size: inherit;
  line-height: inherit;
}
.wp-block-quote p + p {
  margin-top: 0.5rem;
}
.wp-block-quote cite {
  display: block;
  padding-top: 0.6em;
  font-size: 1rem;
  font-style: normal;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: normal;
}
.wp-block-quote cite:before {
  content: "–";
  margin: 0 0.25em 0 0;
}

.wp-block-embed {
  position: relative;
  margin: calc(var(--block-margin, 64px) * 2.5) 0;
  padding: 0;
}
.wp-block-embed:first-child {
  margin-top: 0;
}
.wp-block-embed:last-child {
  margin-top: 0;
}
.wp-block-heading.is-style-hero + .wp-block-embed {
  margin-top: calc(var(--block-margin, 64px) * -1.5);
}

.wp-block-embed.is-type-video {
  background: #000;
}
.page-blocks > .wp-block-embed.is-type-video {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.wp-block-embed.is-type-video > .wp-block-embed__wrapper {
  position: relative;
  padding: 0 0 calc(1 / var(--aspect-ratio, 1.77) * 100%);
}
.wp-block-embed.is-type-video > .wp-block-embed__wrapper:before {
  content: " ";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: var(--header-border-radius);
  background: rgba(0, 0, 0, 0.5);
}
.wp-block-embed.is-type-video > .wp-block-embed__wrapper > iframe,
.wp-block-embed.is-type-video > .wp-block-embed__wrapper > .media-embed,
.wp-block-embed.is-type-video > .wp-block-embed__wrapper > .media-embed > iframe {
  position: absolute;
  z-index: 5;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.wp-block-embed.is-type-video.has-preview-poster > .wp-block-embed__wrapper:after {
  left: 50%;
  top: 50%;
  margin: -15px 0 0 -15px;
  background: url(images/loading-white.png) no-repeat center top;
  width: 30px;
  height: 30px;
  animation: loading 1s steps(19) infinite;
}
.wp-block-embed.is-type-video.has-preview-poster > .wp-block-embed__wrapper > a.embed {
  --icon-size: clamp(2.222rem, 1.46vw + 1.906rem, 3.333rem);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.wp-block-embed.is-type-video.has-preview-poster > .wp-block-embed__wrapper > a.embed img {
  display: block;
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 50% 50%;
     object-position: 50% 50%;
  border-radius: var(--header-border-radius);
  opacity: 1;
  transition: opacity 0.2s ease;
}
.wp-block-embed.is-type-video.has-preview-poster > .wp-block-embed__wrapper > a.embed:before, .wp-block-embed.is-type-video.has-preview-poster > .wp-block-embed__wrapper > a.embed:after {
  display: block;
  content: " ";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: 0.2s ease;
}
.wp-block-embed.is-type-video.has-preview-poster > .wp-block-embed__wrapper > a.embed:before {
  z-index: 3;
  width: var(--icon-size);
  height: var(--icon-size);
  background: rgba(255, 255, 255, 0.52);
  border-radius: 50%;
  border: 1px solid white;
}
.wp-block-embed.is-type-video.has-preview-poster > .wp-block-embed__wrapper > a.embed:after {
  z-index: 4;
  margin-left: 0.45%;
  display: block;
  height: calc(var(--icon-size) * 0.4);
  width: calc(var(--icon-size) * 0.316);
  background: white;
  -webkit-clip-path: polygon(0% 0%, 100% 50%, 0% 100%);
          clip-path: polygon(0% 0%, 100% 50%, 0% 100%);
}
.wp-block-embed.is-type-video.has-preview-poster > .wp-block-embed__wrapper > a.embed:hover {
  --icon-size:clamp(2.5rem, 1.825vw + 2.105rem, 3.889rem);
}
.wp-block-embed.is-type-video.has-preview-poster > .wp-block-embed__wrapper > a.embed:hover:after {
  background-color: black;
}
.wp-block-embed.is-type-video.has-preview-poster > .wp-block-embed__wrapper > a.embed:hover:before {
  background-color: white;
  border-color: black;
}
.wp-block-embed.is-type-video.has-preview-poster.media-loaded > .wp-block-embed__wrapper:after {
  content: " ";
  display: block;
  position: absolute;
}
.wp-block-embed.is-type-video.has-preview-poster.media-loaded > .wp-block-embed__wrapper:before, .wp-block-embed.is-type-video.has-preview-poster.media-loaded > .wp-block-embed__wrapper:after {
  z-index: 2;
}
.wp-block-embed.is-type-video.has-preview-poster.media-loaded > .wp-block-embed__wrapper > a.embed img {
  opacity: 0.25;
}
.wp-block-embed.is-type-video.has-preview-poster.media-loaded > .wp-block-embed__wrapper > a.embed:after {
  display: none;
}
.wp-block-embed.is-type-video.has-preview-poster > figcaption {
  margin: 0;
  position: absolute;
  bottom: 1em;
  left: 1em;
  z-index: 1;
  font-size: 0.8em;
  line-height: 1.3;
}

.wp-block-separator {
  margin: calc(var(--block-margin, 64px) * 1.5) auto calc(var(--block-margin, 64px) * 0.5);
  width: 100%;
  border: 1px solid black;
  border-width: 1px 0 0;
  height: 0;
}
.wp-block-separator.has-small-margin {
  margin: calc(var(--block-margin, 64px) * 0.75) auto;
}
.wp-block-separator:first-child {
  margin-top: 0;
}

h1 + .wp-block-separator, h2 + .wp-block-separator, h3 + .wp-block-separator, h4 + .wp-block-separator, h5 + .wp-block-separator, h6 + .wp-block-separator {
  margin-top: calc(var(--block-margin, 64px) * 0.5);
}

p:not(.is-style-intro) + .wp-block-separator {
  margin-top: calc(var(--block-margin, 64px) * 1);
}

ul.is-style-formatted, ol.is-style-formatted {
  padding: 0;
  margin: 1em 0;
  list-style: none;
  line-height: 1.5;
}
ul.is-style-formatted:first-child, ol.is-style-formatted:first-child {
  margin-top: 0;
}
ul.is-style-formatted:last-child, ol.is-style-formatted:last-child {
  margin-bottom: 0;
}
ul.is-style-formatted > li, ol.is-style-formatted > li {
  position: relative;
  padding: 1.5em 0 1.5em 3em;
  border-bottom: 1px solid currentColor;
}
ul.is-style-formatted > li:first-child, ol.is-style-formatted > li:first-child {
  border-top: 1px solid currentColor;
}
ul.is-style-formatted > li.last, ol.is-style-formatted > li.last {
  padding: 1.6em 0 1.5em 3em;
}
ul.is-style-formatted > li:before, ol.is-style-formatted > li:before {
  content: "";
  display: block;
  position: absolute;
  top: 32%;
  left: 0.9em;
  width: 1.7em;
  height: 1.7em;
  line-height: 1.7;
  background: black;
  color: white;
  border-radius: 50%;
  text-align: center;
  font-size: 0.8em;
}
@media screen and (max-width: 767px) {
  ul.is-style-formatted > li:before, ol.is-style-formatted > li:before {
    font-size: 1.1em;
    left: 0.4em;
  }
}
h1 + ul.is-style-formatted, h2 + ul.is-style-formatted, h3 + ul.is-style-formatted, h4 + ul.is-style-formatted, h5 + ul.is-style-formatted, h6 + ul.is-style-formatted, h1 + ol.is-style-formatted, h2 + ol.is-style-formatted, h3 + ol.is-style-formatted, h4 + ol.is-style-formatted, h5 + ol.is-style-formatted, h6 + ol.is-style-formatted {
  margin-top: 0;
}

ol.is-style-formatted > li:nth-child(1):before {
  content: "1";
}
ol.is-style-formatted > li:nth-child(2):before {
  content: "2";
}
ol.is-style-formatted > li:nth-child(3):before {
  content: "3";
}
ol.is-style-formatted > li:nth-child(4):before {
  content: "4";
}
ol.is-style-formatted > li:nth-child(5):before {
  content: "5";
}
ol.is-style-formatted > li:nth-child(6):before {
  content: "6";
}
ol.is-style-formatted > li:nth-child(7):before {
  content: "7";
}
ol.is-style-formatted > li:nth-child(8):before {
  content: "8";
}
ol.is-style-formatted > li:nth-child(9):before {
  content: "9";
}
ol.is-style-formatted > li:nth-child(10):before {
  content: "10";
}

.wp-block-table.is-style-pricing table tr td, .wp-block-table.is-style-pricing table tr th {
  border: 0;
  vertical-align: top;
}
.wp-block-table.is-style-pricing table tr td {
  padding: 0 0 0.2em;
}
.wp-block-table.is-style-pricing table tr td:first-child {
  color: black;
  min-width: 10.5em;
  white-space: nowrap;
  padding-right: calc(var(--block-margin, 64px) * 0.5);
  text-transform: uppercase;
}
.wp-block-table.is-style-pricing table tr td:last-child {
  width: 90%;
}

.wp-block-table:not(.is-style-pricing) table {
  font-size: clamp(0.833rem, 0.219vw + 0.786rem, 1rem);
}/*# sourceMappingURL=style.css.map */