@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Libre+Baskerville:ital@0;1&display=swap");
/* Typography
----------------------------------*/
@font-face {
  font-family: "Tungsten";
  src: url("../src/fonts/Tungsten-Semibold.woff2") format("woff2"), url("../src/fonts/Tungsten-Semibold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: "Tungsten";
  src: url("../src/fonts/Tungsten-Medium.woff2") format("woff2"), url("../src/fonts/Tungsten-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "Marion Regular";
  src: url("../src/fonts/Marion-Regular.woff2") format("woff2"), url("../src/fonts/Marion-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Marion Italic";
  src: url("../src/fonts/Marion-Italic.woff2") format("woff2"), url("../src/fonts/Marion-Italic.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Trend";
  src: url("../src/fonts/TrendRoughSlab-One.woff2") format("woff2"), url("../src/fonts/TrendRoughSlab-One.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

div,
section,
article,
aside,
main {
  position: relative;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  -webkit-margin-before: 0;
          margin-block-start: 0;
  -webkit-margin-after: 0;
          margin-block-end: 0;
}

ul,
ol {
  -webkit-margin-before: 0;
          margin-block-start: 0;
  -webkit-margin-after: 0;
          margin-block-end: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul[role=navigation],
ol[role=navigation] {
  list-style: none;
  padding: 0;
  margin: 0;
}
ul[role=navigation] li,
ol[role=navigation] li {
  padding: 0;
  margin: 0;
}

/* Set core root defaults */
html:focus-within {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.25;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img,
picture {
  max-width: 100%;
  display: block;
  height: auto;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Remove all animations, transitions and smooth scroll for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
*::before,
*::after {
    -webkit-animation-duration: 0.01ms !important;
            animation-duration: 0.01ms !important;
    -webkit-animation-iteration-count: 1 !important;
            animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
body,
button,
input,
select,
optgroup,
textarea {
  color: #1a1a1a;
  font-family: "Marion Regular", sans-serif;
}

::-moz-selection {
  background: #d13239;
  color: #fff;
  text-shadow: none;
}

::selection {
  background: #d13239;
  color: #fff;
  text-shadow: none;
}

a {
  color: #1a1a1a;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Tungsten", sans-serif;
  font-weight: 500;
}

h2.section-header {
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 3em;
  font-weight: 600;
}
@media screen and (min-width: 768px) {
  h2.section-header {
    font-size: 4em;
  }
}
@media screen and (min-width: 1280px) {
  h2.section-header {
    font-size: 5em;
  }
}

.section-title {
  color: #cb2127;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: clamp(1.8rem, 1.54rem + 1.29vw, 2.34rem);
}

.module-title {
  color: #2a5236;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: clamp(1.5rem, 1.29rem + 1.07vw, 1.95rem);
}

.copy {
  line-height: 1.5em;
}
.copy-1 {
  font-size: clamp(1.25rem, 1.07rem + 0.89vw, 1.63rem);
}
.copy-2 {
  font-size: clamp(1.04rem, 0.89rem + 0.74vw, 1.35rem);
}
.copy-3 {
  font-size: clamp(0.87rem, 0.74rem + 0.62vw, 1.13rem);
}

html {
  scroll-behavior: smooth;
}

body {
  background: #e8e8e5;
}

.wrapper {
  margin: 0 auto;
  max-width: 1200px;
  padding: 0 25px;
  transition: padding 0.2s ease-in;
}
@media screen and (min-width: 1250px) {
  .wrapper {
    padding: 0;
  }
}

section#main {
  min-height: 600px;
}

.grid {
  display: grid;
  gap: 0 2rem;
  grid-template-columns: minmax(0, auto) repeat(4, minmax(auto, 1fr)) minmax(0, auto);
}
@media screen and (min-width: 480px) {
  .grid {
    grid-template-columns: minmax(0, auto) repeat(8, minmax(auto, 1fr)) minmax(0, auto);
  }
}
@media screen and (min-width: 992px) {
  .grid {
    grid-template-columns: minmax(0, auto) repeat(12, minmax(0, 5.5rem)) minmax(0, auto);
  }
}
.grid > * {
  grid-column: 2/span 4;
}
@media screen and (min-width: 480px) {
  .grid > * {
    grid-column: 2/span 8;
  }
}
@media screen and (min-width: 992px) {
  .grid > * {
    grid-column: 2/span 12;
  }
}

.cover {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.noscroll {
  overflow: hidden;
}

.modal {
  display: none;
}
.modal.is-open {
  display: block;
}
.modal__overlay {
  position: fixed;
  inset: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  background: rgba(255, 255, 255, 0.85);
}
.modal__container {
  background-color: #fff;
  width: calc(100% - 4rem);
  max-width: 500px;
  max-height: 90vh;
  box-shadow: rgba(50, 50, 93, 0.2) 0px 30px 60px -12px, rgba(0, 0, 0, 0.15) 0px 18px 36px -18px;
}
.modal__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.modal__content {
  padding: 1.5rem;
  overflow-y: scroll;
}
@media screen and (min-width: 992px) {
  .modal__content {
    padding: 3rem;
  }
}
.modal__close {
  background: #000;
  color: #fff;
  border-radius: 50%;
  border: 0;
  position: absolute;
  top: -1rem;
  right: -1rem;
  width: 2rem;
  height: 2rem;
  z-index: 10;
}
.modal__close:before {
  content: "✕";
  font-size: clamp(0.72rem, 0.62rem + 0.52vw, 0.94rem);
}
.modal__close:hover {
  cursor: pointer;
}

@-webkit-keyframes mmfadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes mmfadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-webkit-keyframes mmfadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes mmfadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@-webkit-keyframes mmslideIn {
  from {
    transform: translateY(15%);
  }
  to {
    transform: translateY(0);
  }
}
@keyframes mmslideIn {
  from {
    transform: translateY(15%);
  }
  to {
    transform: translateY(0);
  }
}
@-webkit-keyframes mmslideOut {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-10%);
  }
}
@keyframes mmslideOut {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-10%);
  }
}
.micromodal-slide {
  display: none;
}
.micromodal-slide.is-open {
  display: block;
}
.micromodal-slide[aria-hidden=false] .modal__overlay {
  -webkit-animation: mmfadeIn 0.3s cubic-bezier(0, 0, 0.2, 1);
          animation: mmfadeIn 0.3s cubic-bezier(0, 0, 0.2, 1);
}
.micromodal-slide[aria-hidden=false] .modal__container {
  -webkit-animation: mmslideIn 0.3s cubic-bezier(0, 0, 0.2, 1);
          animation: mmslideIn 0.3s cubic-bezier(0, 0, 0.2, 1);
}
.micromodal-slide[aria-hidden=true] .modal__overlay {
  -webkit-animation: mmfadeOut 0.3s cubic-bezier(0, 0, 0.2, 1);
          animation: mmfadeOut 0.3s cubic-bezier(0, 0, 0.2, 1);
}
.micromodal-slide[aria-hidden=true] .modal__container {
  -webkit-animation: mmslideOut 0.3s cubic-bezier(0, 0, 0.2, 1);
          animation: mmslideOut 0.3s cubic-bezier(0, 0, 0.2, 1);
}
.micromodal-slide .modal__container,
.micromodal-slide .modal__overlay {
  will-change: transform;
}

.request-modal .modal__content {
  height: 531px;
}
.request-modal .logo {
  background: #2a5236;
  width: 5rem;
  height: 5rem;
  padding: 0.25rem;
  border-radius: 50%;
  margin: 0 auto;
  box-shadow: 0 0 1rem rgba(0, 0, 0, 0.15);
  transform: translateY(-2rem);
}
@media screen and (min-width: 768px) {
  .request-modal .logo {
    width: 6rem;
    height: 6rem;
    transform: translateY(-3rem);
  }
}
.request-modal iframe {
  width: 100%;
  height: 580px;
}
.request-modal .copy {
  margin-top: -1rem;
  line-height: 1.125em;
  text-align: center;
  padding: 0 1rem;
  font-family: "Tungsten", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.025em;
}
@media screen and (min-width: 992px) {
  .request-modal .copy {
    margin-top: -1.5rem;
    padding: 0 3rem;
  }
}
.request-modal .copy span.location {
  border-bottom: 3px solid #cb2127;
}

.overlay {
  width: 100%;
  height: 100%;
  background: #2a5236;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}
.overlay .close {
  display: block;
  width: 100%;
  max-width: 24px;
  position: absolute;
  top: 24px;
  right: 24px;
  z-index: 100000;
}

.tabs {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.tabs h4 {
  font-size: 1.5em;
  width: 100%;
  text-align: center;
  padding: 0 0 20px 0;
  font-family: "Marion Italic", sans-serif;
}
.tabs a {
  color: #fff;
  font-family: "Tungsten", sans-serif;
  font-size: 1.25em;
  display: block;
  margin: 0 10px;
  padding: 8px 20px 5px 20px;
  border-radius: 12px;
  border: 1px solid #fff;
}
@media screen and (min-width: 768px) {
  .tabs a {
    font-size: 1.5em;
    padding: 12px 30px 9px 30px;
  }
}
.tabs a.active, .tabs a:hover {
  background: #fff;
  color: #1a1a1a;
}

section#banner {
  background: #d13239;
  color: #fff;
  padding: 15px 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
section#banner .wrapper {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-wrap: wrap;
  max-width: 1200px;
}
@media screen and (min-width: 768px) {
  section#banner .wrapper {
    justify-content: center;
  }
}
section#banner .headline {
  padding: 0 0 10px 0;
}
@media screen and (min-width: 768px) {
  section#banner .headline {
    width: auto;
    padding: 0 20px 0 0;
    margin-left: auto;
  }
}
section#banner .headline h3 {
  text-transform: uppercase;
  font-size: 2rem;
  letter-spacing: 0.05em;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  section#banner .copy {
    width: auto;
    flex: 1;
    margin-bottom: auto;
  }
}
section#banner .copy p {
  font-size: 1em;
  line-height: 1.25em;
}
section#banner .copy p + p {
  padding-top: 15px;
}
section#banner .copy p a {
  color: #fff;
  text-decoration: underline;
}
section#banner.extended {
  padding: 50px 0;
}
section#banner.extended .wrapper {
  display: block;
  max-width: 1200px;
}
section#banner.extended .headline h3 {
  font-size: 2.5rem;
  font-weight: 600;
  padding-bottom: 5px;
}
section#banner.extended .headline h4 {
  font-size: 1.75rem;
  font-weight: 500;
}
section#banner.extended .copy {
  padding: 15px 0 25px 0;
}
section#banner.extended .copy p {
  font-size: 1.125rem;
}
section#banner.extended .cta a {
  display: inline-block;
  border: 1px solid #fff;
  font-family: "Tungsten", sans-serif;
  font-weight: 500;
  color: #fff;
  padding: 10px 20px 8px 20px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 1.375rem;
}
section#banner.extended .cta a:hover {
  background: #fff;
  color: #d13239;
}
section#banner.extended .notice {
  margin-top: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.5);
  padding-top: 25px;
}
@media screen and (min-width: 768px) {
  section#banner.extended .notice {
    display: flex;
    align-items: center;
    justify-content: flex-start;
  }
}
section#banner.extended .notice h5 {
  text-transform: uppercase;
  white-space: nowrap;
  font-size: 1.25rem;
  margin: 0 0 10px 0;
}
@media screen and (min-width: 768px) {
  section#banner.extended .notice h5 {
    margin: 0 20px 0 0;
    font-size: 2rem;
  }
}
section#banner.extended .notice p {
  font-size: 1rem;
}

.cta .btn {
  display: inline-block;
  font-family: "Tungsten", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: clamp(1.04rem, 0.89rem + 0.74vw, 1.35rem);
  line-height: 1em;
  font-weight: 600;
  padding: 3px;
  background: #ffca38;
  color: #1a1a1a;
}
.cta .btn span {
  display: block;
  padding: 1rem 1rem 0.75rem 1rem;
  border: 1px solid #1a1a1a;
}
.cta .btn:hover {
  background: #fff;
  color: #2a5236;
}
.cta .btn:hover span {
  border-color: #2a5236;
}
.cta .btn.green {
  background: #2a5236;
  color: #fff;
}
.cta .btn.green span {
  border-color: #fff;
}
.cta .btn.green:hover {
  color: #2a5236;
  background: #fff;
}
.cta .btn.green:hover span {
  border-color: #2a5236;
}
.cta .btn.black {
  color: #ffca38;
  background: #000;
}
.cta .btn.black span {
  border-color: #ffca38;
}
.cta .btn.black:hover {
  color: #ffca38;
  background: #000;
}
.cta .btn.black:hover span {
  border-color: #ffca38;
}
.cta .underline {
  display: inline-block;
  color: #2a5236;
  font-weight: bold;
  font-size: clamp(1.25rem, 1.07rem + 0.89vw, 1.63rem);
  line-height: 1em;
  font-family: "Tungsten", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-bottom: 3px solid #cb2127;
}

.page-header .page-title {
  text-transform: uppercase;
  font-size: clamp(3.11rem, 2.67rem + 2.22vw, 4.625em);
  color: #d13239;
  font-weight: bold;
  letter-spacing: 0.05em;
}

/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}
.slick-list:focus {
  outline: none;
}
.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
}
.slick-track:before, .slick-track:after {
  content: "";
  display: table;
}
.slick-track:after {
  clear: both;
}
.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  min-height: 1px;
  display: none;
}
[dir=rtl] .slick-slide {
  float: right;
}
.slick-slide img {
  display: block;
}
.slick-slide.slick-loading img {
  display: none;
}
.slick-slide.dragging img {
  pointer-events: none;
}
.slick-initialized .slick-slide {
  display: block;
}
.slick-loading .slick-slide {
  visibility: hidden;
}
.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

/* Slider */
/* Icons */
/* Arrows */
.slick-prev,
.slick-next {
  position: absolute;
  display: block;
  height: 60px;
  width: 60px;
  line-height: 0px;
  font-size: 0px;
  cursor: pointer;
  background: transparent;
  color: transparent;
  top: 50%;
  transform: translate(0, -50%);
  padding: 0;
  border: none;
  z-index: 100;
  outline: none;
}
.slick-prev:hover, .slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
  outline: none;
  background: transparent;
  color: transparent;
}
.slick-prev:hover:before, .slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before {
  opacity: 1;
}
.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before {
  opacity: 0.4;
}
.slick-prev:before,
.slick-next:before {
  font-family: "slick";
  font-size: 20px;
  line-height: 1;
  color: white;
  opacity: 0.85;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slick-prev {
  left: 20px;
}
[dir=rtl] .slick-prev {
  left: auto;
  right: 20px;
}
@media screen and (min-width: 1280px) {
  .slick-prev {
    left: 40px;
  }
  [dir=rtl] .slick-prev {
    left: auto;
    right: 40px;
  }
}
.slick-prev:before {
  background: url(images/left-arrow.png) no-repeat 0 0;
  width: 60px;
  height: 60px;
  content: "";
  display: block;
}

.slick-next {
  right: 20px;
}
[dir=rtl] .slick-next {
  left: 20px;
  right: auto;
}
@media screen and (min-width: 1280px) {
  .slick-next {
    right: 40px;
  }
  [dir=rtl] .slick-next {
    left: 40px;
    right: auto;
  }
}
.slick-next:before {
  background: url(images/right-arrow.png) no-repeat 0 0;
  width: 60px;
  height: 60px;
  content: "";
  display: block;
}

/* Dots */
.slick-dots {
  position: absolute;
  bottom: 5px;
  list-style: none;
  display: block;
  text-align: center;
  padding: 0;
  margin: 0;
  width: 100%;
}
@media screen and (min-width: 480px) {
  .slick-dots {
    bottom: 15px;
  }
}
.slick-dots li {
  position: relative;
  display: inline-block;
  width: 12px;
  height: 12px;
  margin: 0 5px;
  padding: 0;
  cursor: pointer;
}
.slick-dots li button {
  border: 0;
  background: transparent;
  display: block;
  width: 12px;
  height: 12px;
  outline: none;
  line-height: 0px;
  font-size: 0px;
  color: transparent;
  padding: 5px;
  cursor: pointer;
}
.slick-dots li button:hover, .slick-dots li button:focus {
  outline: none;
}
.slick-dots li button:hover:before, .slick-dots li button:focus:before {
  opacity: 1;
}
.slick-dots li button:before {
  position: absolute;
  top: 0;
  left: 0;
  content: " ";
  width: 12px;
  height: 12px;
  border-radius: 50%;
  font-family: "slick";
  font-size: 6px;
  line-height: 20px;
  text-align: center;
  background-color: #fff;
  opacity: 0.4;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.slick-dots li.slick-active button:before {
  color: #fff;
  opacity: 0.85;
}

.site-header {
  padding: 1.5rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.site-header .logo a {
  display: block;
  width: 6rem;
  height: 6rem;
}
@media screen and (min-width: 1280px) {
  .site-header .logo a {
    width: 8rem;
    height: 8rem;
  }
}
.site-header .ctas {
  display: none;
}
@media screen and (min-width: 768px) {
  .site-header .ctas {
    display: flex;
    align-items: center;
    margin-left: auto;
    margin-right: 2rem;
  }
  .site-header .ctas .cta + .cta {
    margin-left: 1rem;
  }
}
.site-header .hamburger {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
@media screen and (min-width: 992px) {
  .site-header .hamburger {
    grid-column: 12/span 2;
  }
}
.site-header .hamburger a {
  display: block;
  width: 2rem;
  height: 26px;
  position: relative;
}
.site-header .hamburger a .patty {
  width: 2rem;
  height: 2px;
  background: #fff;
  margin-left: auto;
  transition: all 0.2s;
  position: relative;
  transform: translateY(10px);
}
.site-header .hamburger a .patty:after, .site-header .hamburger a .patty:before {
  content: "";
  display: block;
  width: 2rem;
  height: 2px;
  background: #fff;
  position: absolute;
  z-index: 1;
  transition: all 0.2s;
}
.site-header .hamburger a .patty:before {
  top: -8px;
}
.site-header .hamburger a .patty:after {
  top: 8px;
}

#page {
  transition: all 0.3s ease-in-out;
}

.site-nav {
  display: block;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1000;
  background: #2a5236;
  color: #fff;
  height: 100vh;
  width: 100%;
  transform: translateX(100%);
  transition: all 0.3s ease-in-out;
}
.site-nav a {
  color: #fff;
}
.site-nav .nav-wrapper {
  height: 100vh;
  padding: 2rem 3rem 3rem 3rem;
  width: 75%;
  overflow: scroll;
}
@media screen and (min-width: 768px) {
  .site-nav .nav-wrapper {
    width: 50%;
  }
}
@media screen and (min-width: 1280px) {
  .site-nav .nav-wrapper {
    width: 33.3333%;
    padding: 4rem 3rem;
  }
}
.site-nav .nav-wrapper .logo {
  max-width: 96px;
  padding: 0 0 1.5rem 0;
}
@media screen and (min-width: 768px) {
  .site-nav .nav-wrapper .logo {
    padding: 0 0 3rem 0;
  }
}
.site-nav .nav-wrapper .links {
  padding: 25px 0;
  border-top: 3px solid rgb(255, 255, 255);
  border-bottom: 3px solid rgb(255, 255, 255);
}
@media screen and (min-width: 768px) {
  .site-nav .nav-wrapper .links {
    padding: 50px 0;
  }
}
.site-nav .nav-wrapper .links a {
  display: block;
  font-family: "Tungsten", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 1.5em;
  font-weight: 600;
}
@media screen and (min-width: 768px) {
  .site-nav .nav-wrapper .links a {
    font-size: 1.75em;
  }
}
.site-nav .nav-wrapper .links a + a {
  margin-top: 10px;
}
.site-nav .nav-wrapper .links a:hover {
  color: #ffca38;
}
.site-nav .nav-wrapper .ctas {
  padding-top: 1.5rem;
}
@media screen and (min-width: 768px) {
  .site-nav .nav-wrapper .ctas {
    display: flex;
    align-items: center;
    margin-left: auto;
    margin-right: 2rem;
    padding-top: 3rem;
  }
}
.site-nav .nav-wrapper .ctas .cta + .cta {
  margin-top: 1rem;
}
@media screen and (min-width: 768px) {
  .site-nav .nav-wrapper .ctas .cta + .cta {
    margin-top: 0;
    margin-left: 1rem;
  }
}
.site-nav .nav-wrapper .ctas .green {
  border: 1px solid #fff;
}
.site-nav .nav-wrapper .social-nav {
  padding: 1.5rem 0 0 0;
  display: flex;
  flex-wrap: wrap;
}
@media screen and (min-width: 768px) {
  .site-nav .nav-wrapper .social-nav {
    margin: 3rem 0 0 0;
    border-top: 3px solid rgb(255, 255, 255);
    padding: 3rem 0 0 0;
  }
}
.site-nav .nav-wrapper .social-nav a {
  display: block;
}
.site-nav .nav-wrapper .social-nav a + a {
  margin-left: 1.5rem;
}
.site-nav .nav-wrapper .social-nav a img {
  width: 100%;
  max-width: 2rem;
}

body.nav-overlay-open {
  overflow: hidden;
}
body.nav-overlay-open .hamburger .bun .patty {
  background: none;
}
body.nav-overlay-open .hamburger .bun .patty:after {
  top: 0;
  transform: rotate(45deg);
}
body.nav-overlay-open .hamburger .bun .patty:before {
  top: 0;
  transform: rotate(-45deg);
}
body.nav-overlay-open .site-nav {
  transform: translateX(25%);
}
@media screen and (min-width: 768px) {
  body.nav-overlay-open .site-nav {
    transform: translateX(50%);
  }
}
@media screen and (min-width: 1280px) {
  body.nav-overlay-open .site-nav {
    transform: translateX(66.6667%);
  }
}
body.nav-overlay-open #page {
  transform: translateX(-75%);
}
@media screen and (min-width: 768px) {
  body.nav-overlay-open #page {
    transform: translateX(-50%);
  }
}
@media screen and (min-width: 1280px) {
  body.nav-overlay-open #page {
    transform: translateX(-33.3333%);
  }
}

footer {
  background: #2a5236;
  color: #fff;
  padding: 3rem 0;
}
footer a {
  color: #fff;
}
@media screen and (min-width: 768px) {
  footer .logo {
    grid-column: 2/span 2;
  }
}
footer .logo img {
  max-width: 6rem;
}
footer .links {
  padding: 1.5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  margin: 1.5rem 0;
}
@media screen and (min-width: 768px) {
  footer .links {
    padding: 0 0 3rem 0;
    border: none;
    margin: 0;
    -moz-columns: 2;
         columns: 2;
    -moz-column-gap: 2rem;
         column-gap: 2rem;
    grid-column: 4/span 6;
  }
}
footer .links a {
  display: block;
  font-family: "Tungsten", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: clamp(1.25rem, 1.07rem + 0.89vw, 1.63rem);
  font-weight: 600;
  -moz-column-break-inside: avoid;
       break-inside: avoid;
}
footer .links a + a {
  margin-top: 0.75rem;
}
footer .links a:hover {
  color: #ffca38;
}
footer .ctas {
  display: flex;
  align-items: center;
}
@media screen and (min-width: 992px) {
  footer .ctas {
    grid-column: 10/span 4;
    display: block;
  }
}
footer .ctas .cta + .cta {
  margin-left: 1rem;
}
@media screen and (min-width: 992px) {
  footer .ctas .cta + .cta {
    margin-left: 0;
    margin-top: 1rem;
  }
}
footer .ctas .cta .green {
  border: 1px solid #fff;
}
footer .social-nav {
  width: 100%;
  padding: 3rem 0 1.5rem 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
}
@media screen and (min-width: 768px) {
  footer .social-nav {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding: 1.5rem 0 0 0;
    justify-content: flex-start;
    margin-top: 3rem;
  }
}
footer .social-nav a {
  display: block;
  max-height: 1.5rem;
  max-width: 1.5rem;
}
footer .social-nav a + a {
  margin-left: 1.25rem;
}
footer .social-nav a img {
  width: 100%;
  height: 100%;
}
footer .social-nav .apps {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  padding: 1.5rem 0 0 0;
}
@media screen and (min-width: 768px) {
  footer .social-nav .apps {
    margin-left: auto;
    width: auto;
    padding: 0;
    justify-content: flex-end;
  }
}
footer .social-nav .apps a {
  max-width: 100%;
  max-height: none;
}
footer .social-nav .apps a.app-store {
  width: 144px;
  height: 48px;
}
footer .social-nav .apps a.google-play {
  width: 161px;
  height: 48px;
}

body.page-template-home .site-header {
  position: absolute;
  z-index: 1000;
  width: 100%;
  top: 0;
  left: 0;
}
body.page-template-home .site-content .video-hero {
  background-color: #000;
  width: 100%;
  overflow: hidden;
}
body.page-template-home .site-content .video-hero .video {
  grid-column: 1/-1;
}
body.page-template-home .site-content .video-hero .video *::after {
  display: block;
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
}
body.page-template-home .site-content .video-hero .video-wrapper {
  aspect-ratio: 16/9;
}
body.page-template-home .site-content .video-hero .video-wrapper iframe {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
body.page-template-home .site-content .video-hero .down {
  display: block;
  width: 100%;
  position: absolute;
  bottom: 20px;
  left: 0;
  z-index: 10000;
  -webkit-animation: arrow-hover 0.8s ease-in;
          animation: arrow-hover 0.8s ease-in;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  transform: translate3d(0, 0, 0);
}
@-webkit-keyframes arrow-hover {
  0% {
    transform: translate3d(0, 0, 0);
  }
  25% {
    transform: translate3d(0, -5px, 0);
  }
  50% {
    transform: translate3d(0, 0, 0);
  }
  75% {
    transform: translate3d(0, 5px, 0);
  }
}
@keyframes arrow-hover {
  0% {
    transform: translate3d(0, 0, 0);
  }
  25% {
    transform: translate3d(0, -5px, 0);
  }
  50% {
    transform: translate3d(0, 0, 0);
  }
  75% {
    transform: translate3d(0, 5px, 0);
  }
}
body.page-template-home .site-content .video-hero .down img {
  width: 1.5rem;
  margin: 0 auto;
}
body.page-template-home .site-content .about {
  padding: 3rem 0 0 0;
  text-align: center;
}
@media screen and (min-width: 768px) {
  body.page-template-home .site-content .about {
    padding: 6rem 0 0 0;
  }
}
body.page-template-home .site-content .about .info {
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  padding-bottom: 3rem;
}
@media screen and (min-width: 768px) {
  body.page-template-home .site-content .about .info {
    padding-bottom: 6rem;
    grid-column: 3/span 6;
  }
}
@media screen and (min-width: 992px) {
  body.page-template-home .site-content .about .info {
    grid-column: 5/span 6;
  }
}
body.page-template-home .site-content .about h3 {
  color: #d13239;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 1.75rem;
  font-weight: bold;
  padding: 0 0 1.25rem 0;
}
body.page-template-home .site-content .about p {
  font-family: "Tungsten", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 1.5rem;
}
@media screen and (min-width: 768px) {
  body.page-template-home .site-content .about p {
    font-size: 2.75rem;
  }
}
body.page-template-home .site-content .locations {
  padding: 6rem 0;
  text-align: center;
}
body.page-template-home .site-content .locations .locations-grid {
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 20px;
  padding: 50px 0 0 0;
}
@media screen and (min-width: 480px) {
  body.page-template-home .site-content .locations .locations-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (min-width: 768px) {
  body.page-template-home .site-content .locations .locations-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
body.page-template-home .site-content .locations .locations-grid .location {
  height: 300px;
}
body.page-template-home .site-content .locations .locations-grid .location a {
  display: block;
  width: 100%;
  height: 100%;
}
body.page-template-home .site-content .locations .locations-grid .location a .info {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: rgba(0, 0, 0, 0.5);
  transition: background 0.3s ease-in-out;
}
body.page-template-home .site-content .locations .locations-grid .location a .info strong {
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-family: "Tungsten", sans-serif;
  font-size: 6rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
  transform: translateY(10px);
  width: 100%;
  display: block;
}
@media screen and (min-width: 992px) {
  body.page-template-home .site-content .locations .locations-grid .location a .info strong {
    font-size: 7rem;
  }
}
body.page-template-home .site-content .locations .locations-grid .location a .info em {
  width: 100%;
  display: block;
  color: #fff;
  padding: 5px 0 0 0;
  font-size: 1.25rem;
  font-family: "Marion Italic", sans-serif;
  font-style: normal;
}
@media screen and (min-width: 768px) {
  body.page-template-home .site-content .locations .locations-grid .location a .info em {
    font-size: 1.5rem;
  }
}
body.page-template-home .site-content .locations .locations-grid .location a .info .coming-soon {
  padding-top: 10px;
}
body.page-template-home .site-content .locations .locations-grid .location a .info .coming-soon h5 {
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 1.125rem;
  display: flex;
  align-items: center;
}
body.page-template-home .site-content .locations .locations-grid .location a .info .coming-soon h5:before, body.page-template-home .site-content .locations .locations-grid .location a .info .coming-soon h5:after {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  background: #ffca38;
  border-radius: 50%;
  opacity: 0.8;
}
body.page-template-home .site-content .locations .locations-grid .location a .info .coming-soon h5:before {
  order: 1;
}
body.page-template-home .site-content .locations .locations-grid .location a .info .coming-soon h5:after {
  order: 2;
  background: #d13239;
  transform: translateX(-2px);
}
body.page-template-home .site-content .locations .locations-grid .location a .info .coming-soon h5 .text {
  order: 3;
  padding-left: 8px;
}
body.page-template-home .site-content .locations .locations-grid .location a:hover .info {
  background: rgba(0, 0, 0, 0.25);
}
body.page-template-home .site-content .locations .locations-grid .location a img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}

body.page-template-locations .site-header {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
  width: 100%;
}
body.page-template-locations .hero .photo {
  grid-column: 1/-1;
  grid-row: 1;
  aspect-ratio: 4/3;
}
@media screen and (min-width: 768px) {
  body.page-template-locations .hero .photo {
    aspect-ratio: 16/9;
  }
}
body.page-template-locations .hero .photo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 992px) {
  body.page-template-locations .hero .photo {
    max-height: 750px;
    aspect-ratio: unset;
  }
}
body.page-template-locations .hero .photo::before {
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  position: absolute;
  inset: 0;
}
body.page-template-locations .hero .info {
  grid-row: 1;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  padding-bottom: 2rem;
}
body.page-template-locations .hero .events-header {
  display: inline-block;
  background: #cb2127;
  color: #fff;
  font-family: "Tungsten", sans-serif;
  text-transform: uppercase;
  font-size: clamp(0.87rem, 0.74rem + 0.62vw, 1.13rem);
  padding: 0.5rem 1rem 0.375rem 1rem;
  letter-spacing: 0.125em;
}
@media screen and (min-width: 992px) {
  body.page-template-locations .hero .events-header {
    font-size: clamp(1.25rem, 1.07rem + 0.89vw, 1.63rem);
    padding: 0.5rem 1rem 0.25rem 1rem;
  }
}
body.page-template-locations .hero .location-headline {
  color: #fff;
  font-size: clamp(6.22rem, 5.25rem + 4.44vw, 8.08rem);
  line-height: 1em;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
body.page-template-locations section.locations {
  padding: 6rem 0 6rem 0;
  text-align: center;
  gap: 2rem;
}
body.page-template-locations section.locations .location {
  height: 300px;
}
@media screen and (min-width: 480px) {
  body.page-template-locations section.locations .location {
    height: 240px;
    grid-column: span 4;
  }
  body.page-template-locations section.locations .location:nth-of-type(odd) {
    grid-column: 2/span 4;
  }
}
@media screen and (min-width: 768px) {
  body.page-template-locations section.locations .location {
    height: 300px;
  }
}
@media screen and (min-width: 992px) {
  body.page-template-locations section.locations .location {
    height: 360px;
  }
  body.page-template-locations section.locations .location:nth-of-type(odd) {
    grid-column: span 4;
  }
  body.page-template-locations section.locations .location:nth-child(3n+1) {
    grid-column: 2/span 4;
  }
}
body.page-template-locations section.locations .location a {
  display: block;
  width: 100%;
  height: 100%;
}
body.page-template-locations section.locations .location a .info {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: rgba(0, 0, 0, 0.5);
  transition: background 0.3s ease-in-out;
}
body.page-template-locations section.locations .location a .info strong {
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-family: "Tungsten", sans-serif;
  font-size: clamp(3.11rem, 2.67rem + 2.22vw, 4.625em);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
  transform: translateY(10px);
  width: 100%;
  display: block;
}
@media screen and (min-width: 768px) {
  body.page-template-locations section.locations .location a .info strong {
    font-size: clamp(5rem, 6.5rem + 3.33vw, 7rem);
  }
}
body.page-template-locations section.locations .location a .info em {
  width: 100%;
  display: block;
  color: #fff;
  padding: 5px 0 0 0;
  font-size: clamp(1.04rem, 0.89rem + 0.74vw, 1.35rem);
  font-family: "Marion Italic", sans-serif;
  font-style: normal;
}
body.page-template-locations section.locations .location a .info .established {
  display: block;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  padding-top: 0.25rem;
  font-size: clamp(0.72rem, 0.62rem + 0.52vw, 0.94rem);
}
body.page-template-locations section.locations .location a .info .coming-soon {
  padding-top: 10px;
}
body.page-template-locations section.locations .location a .info .coming-soon h5 {
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 1.125rem;
  display: flex;
  align-items: center;
}
body.page-template-locations section.locations .location a .info .coming-soon h5:before, body.page-template-locations section.locations .location a .info .coming-soon h5:after {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  background: #ffca38;
  border-radius: 50%;
  opacity: 0.8;
}
body.page-template-locations section.locations .location a .info .coming-soon h5:before {
  order: 1;
}
body.page-template-locations section.locations .location a .info .coming-soon h5:after {
  order: 2;
  background: #d13239;
  transform: translateX(-2px);
}
body.page-template-locations section.locations .location a .info .coming-soon h5 .text {
  order: 3;
  padding-left: 8px;
}
body.page-template-locations section.locations .location a:hover .info {
  background: rgba(0, 0, 0, 0.25);
}
body.page-template-locations section.locations .location a img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
body.page-template-locations .cta-section {
  padding: 0 0 6rem 0;
}
body.page-template-locations .cta-section .cta-wrapper {
  background: #ffca38;
  padding: 2rem 3rem;
  display: grid;
  gap: 2rem;
}
body.page-template-locations .cta-section .cta-wrapper::after {
  display: block;
  content: "";
  width: calc(100% - 10px);
  height: calc(100% - 10px);
  border: 1px solid #000;
  position: absolute;
  z-index: 0;
  top: 5px;
  left: 5px;
}
@media screen and (min-width: 992px) {
  body.page-template-locations .cta-section .cta-wrapper {
    padding: 3rem 4rem;
    grid-template-columns: 1.5fr 1fr;
    align-items: center;
  }
}
body.page-template-locations .cta-section .headline {
  padding-bottom: 0.5rem;
}
body.page-template-locations .cta-section .module-title {
  color: #000;
  line-height: 1em;
}
body.page-template-locations .cta-section .info {
  z-index: 1;
}
body.page-template-locations .cta-section .cta {
  z-index: 1;
}
@media screen and (min-width: 992px) {
  body.page-template-locations .cta-section .cta {
    text-align: right;
  }
}

@media screen and (min-width: 768px) {
  body.page-template-location .site-header .ctas {
    display: none;
  }
}
body.page-template-location section {
  scroll-margin-top: 4.5rem;
}
body.page-template-location .site-header {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
  width: 100%;
}
body.page-template-location .mobile-header-contact {
  padding-bottom: 25px;
}
@media screen and (min-width: 768px) {
  body.page-template-location .mobile-header-contact {
    display: none;
  }
}
body.page-template-location .mobile-header-contact h2 {
  text-transform: uppercase;
  letter-spacing: 0.075em;
  font-size: 2.25em;
  display: flex;
  align-items: center;
  width: 100%;
}
@media screen and (min-width: 1280px) {
  body.page-template-location .mobile-header-contact h2 {
    font-size: 3em;
  }
}
body.page-template-location .mobile-header-contact h2 .coming-soon {
  padding-top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  order: -1;
  margin-left: 0;
  margin-right: 10px;
}
body.page-template-location .mobile-header-contact h2 .coming-soon:before, body.page-template-location .mobile-header-contact h2 .coming-soon:after {
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  background: #ffca38;
  border-radius: 50%;
  opacity: 0.8;
}
body.page-template-location .mobile-header-contact h2 .coming-soon:after {
  background: #d13239;
  transform: translateX(-4px);
}
body.page-template-location .mobile-header-contact .info {
  padding: 10px 0 0 0;
}
body.page-template-location .mobile-header-contact .info p {
  font-size: 1em;
  line-height: 1.25em;
}
body.page-template-location .mobile-header-contact .info p + p {
  padding: 5px 0 0 0;
}
body.page-template-location .mobile-header-contact .info p a:hover {
  text-decoration: underline;
}
body.page-template-location .mobile-header-contact .utility-nav {
  padding: 20px 0 0 0;
  display: flex;
}
body.page-template-location .mobile-header-contact .utility-nav a {
  display: block;
  font-family: "Tungsten", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 1.25em;
  line-height: 1em;
  font-weight: 600;
  padding: 10px;
  margin: 0 0 15px 0;
  width: 100%;
  text-align: center;
  background: #ffca38;
  color: #1a1a1a;
}
body.page-template-location .mobile-header-contact .utility-nav a span {
  display: block;
  padding: 14px 22px 12px 22px;
  border: 1px solid #000;
}
@media screen and (min-width: 480px) {
  body.page-template-location .mobile-header-contact .utility-nav a {
    width: 47.5%;
    max-width: 200px;
    margin: 0;
  }
}
body.page-template-location .mobile-header-contact .utility-nav a + a {
  margin-left: 15px;
}
body.page-template-location .hero {
  color: #fff;
}
body.page-template-location .hero .photo {
  grid-column: 1/-1;
  grid-row: 1;
  aspect-ratio: 3/4;
}
@media screen and (min-width: 768px) {
  body.page-template-location .hero .photo {
    aspect-ratio: 16/9;
  }
}
@media screen and (min-width: 992px) {
  body.page-template-location .hero .photo {
    max-height: 750px;
    aspect-ratio: unset;
  }
}
body.page-template-location .hero .photo:after {
  display: block;
  content: "";
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background: rgba(0, 0, 0, 0.35);
}
body.page-template-location .hero .photo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
body.page-template-location .hero .info {
  grid-row: 1;
  z-index: 2;
  display: flex;
  align-items: center;
  text-align: center;
  justify-content: center;
}
body.page-template-location .hero .abbr {
  display: inline-block;
  background: #2a5236;
  color: #fff;
  font-family: "Tungsten", sans-serif;
  text-transform: uppercase;
  font-size: clamp(0.87rem, 0.74rem + 0.62vw, 1.13rem);
  padding: 0.5rem 1rem 0.375rem 1rem;
  letter-spacing: 0.125em;
  margin-bottom: 0.5rem;
}
@media screen and (min-width: 992px) {
  body.page-template-location .hero .abbr {
    font-size: clamp(1.8rem, 1.54rem + 1.29vw, 2.34rem);
    padding: 0.5rem 1rem 0.25rem 1rem;
  }
}
body.page-template-location .hero .location-headline {
  color: #fff;
  letter-spacing: 0.1em;
  line-height: 1em;
  font-weight: bold;
  text-transform: uppercase;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.65);
  font-size: clamp(3.11rem, 2.67rem + 2.22vw, 4.625em);
}
@media screen and (min-width: 768px) {
  body.page-template-location .hero .location-headline {
    font-size: clamp(6.22rem, 5.25rem + 4.44vw, 8.08rem);
  }
}
body.page-template-location .hero .copy {
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: bold;
  line-height: 1.5em;
  font-family: "Tungsten", sans-serif;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.65);
  font-size: clamp(1.5rem, 1.29rem + 1.07vw, 1.95rem);
}
body.page-template-location .hero .links {
  padding-top: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
body.page-template-location .hero .links .cta + .cta {
  margin-left: 1rem;
}
body.page-template-location .gallery {
  --swiper-navigation-size: 4.5rem;
  padding: 1rem 0;
}
body.page-template-location .gallery .image {
  aspect-ratio: 4/3;
}
body.page-template-location .gallery .image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
body.page-template-location .gallery .swiper-button-prev,
body.page-template-location .gallery .swiper-rtl .swiper-button-next {
  left: 2rem;
}
body.page-template-location .gallery .swiper-button-next,
body.page-template-location .gallery .swiper-rtl .swiper-button-prev {
  right: 2rem;
}
body.page-template-location section#location-nav {
  display: none;
}
@media screen and (min-width: 768px) {
  body.page-template-location section#location-nav {
    display: block;
    position: -webkit-sticky;
    position: sticky;
    background: #cb2127;
    top: 0;
    z-index: 1000;
    padding: 20px 0;
  }
}
body.page-template-location section#location-nav .links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  white-space: nowrap;
}
body.page-template-location section#location-nav .links:empty {
  padding: 0;
}
body.page-template-location section#location-nav a {
  display: block;
  margin: 0 20px;
  font-size: clamp(1.25rem, 1.07rem + 0.89vw, 1.63rem);
  font-family: "Tungsten", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #fff;
}
body.page-template-location section#location-nav a:hover {
  text-decoration: underline;
}
body.page-template-location section.template-section {
  padding: 3rem 0;
}
body.page-template-location section.template-section .wrapper {
  max-width: 960px;
}
body.page-template-location section.template-section h2.section-header {
  text-align: center;
  text-transform: uppercase;
}
body.page-template-location section.template-section + section.template-section {
  margin-top: 25px;
}
body.page-template-location section.template-section .cta {
  margin-top: 50px;
  text-align: center;
}
body.page-template-location section.template-section .cta a {
  display: inline-block;
  font-family: "Tungsten", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 1.5em;
  line-height: 1em;
  font-weight: 600;
  padding: 10px;
  text-align: center;
  background: #ffca38;
  color: #1a1a1a;
}
body.page-template-location section.template-section .cta a span {
  display: block;
  padding: 14px 22px 12px 22px;
  border: 1px solid #000;
}
body.page-template-location section.template-section .cta.cta--secondary a {
  font-size: 1.75em;
  background: #000;
  color: #fff;
  padding: 18px 32px 14px 32px;
}
body.page-template-location section.template-section .cta.cta--secondary a span {
  padding: 0;
  border: none;
}
body.page-template-location section.weekly-happenings {
  background: #2a5236;
  color: #fff;
  padding: 4rem 0;
}
body.page-template-location section.weekly-happenings .section-header {
  text-align: center;
  padding-bottom: 2rem;
}
body.page-template-location section.weekly-happenings .events {
  display: flex;
  justify-content: center;
  align-items: stretch;
  flex-wrap: wrap;
  padding: 0 0 50px 0;
}
body.page-template-location section.weekly-happenings .events .event {
  width: 100%;
  text-align: center;
  border: 3px solid #008445;
  padding: 30px 20px;
}
body.page-template-location section.weekly-happenings .events .event + .event {
  margin-top: 25px;
}
@media screen and (min-width: 768px) {
  body.page-template-location section.weekly-happenings .events .event {
    width: 30.8333%;
    margin: 0 1.25%;
  }
  body.page-template-location section.weekly-happenings .events .event + .event {
    margin-top: 0;
  }
}
body.page-template-location section.weekly-happenings .events .event .title {
  padding: 0 0 20px 0;
}
body.page-template-location section.weekly-happenings .events .event .title h3 {
  text-transform: uppercase;
  letter-spacing: 0.1em;
  line-height: 1em;
  font-size: clamp(2.16rem, 1.85rem + 1.54vw, 2.81rem);
}
body.page-template-location section.weekly-happenings .events .event .time {
  border-top: 3px solid #008445;
  border-bottom: 3px solid #008445;
  padding: 15px;
}
body.page-template-location section.weekly-happenings .events .event .time h4 {
  text-transform: uppercase;
  letter-spacing: 0.1em;
  line-height: 1.25em;
  font-size: clamp(1.04rem, 0.89rem + 0.74vw, 1.35rem);
}
body.page-template-location section.weekly-happenings .events .event .image {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}
body.page-template-location section.weekly-happenings .events .event .image img {
  max-width: 8rem;
}
body.page-template-location section.weekly-happenings .specials {
  border-top: 3px solid #008445;
  padding: 2rem 0 0 0;
  display: flex;
  justify-content: center;
  align-items: stretch;
  flex-wrap: wrap;
}
body.page-template-location section.weekly-happenings .specials .special {
  width: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
body.page-template-location section.weekly-happenings .specials .special + .special {
  margin-top: 50px;
}
@media screen and (min-width: 768px) {
  body.page-template-location section.weekly-happenings .specials .special {
    width: 47.5%;
  }
  body.page-template-location section.weekly-happenings .specials .special + .special {
    margin-top: 0;
  }
}
body.page-template-location section.weekly-happenings .specials .special .title {
  padding: 0;
}
body.page-template-location section.weekly-happenings .specials .special .title h3 {
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 1.5em;
  font-weight: 600;
  line-height: 1.25em;
}
@media screen and (min-width: 768px) {
  body.page-template-location section.weekly-happenings .specials .special .title h3 {
    font-size: 3em;
  }
}
body.page-template-location section.weekly-happenings .specials .special .time {
  padding: 0 0 5px 0;
}
body.page-template-location section.weekly-happenings .specials .special .time h4 {
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 2em;
  font-weight: 600;
  line-height: 1.25em;
}
@media screen and (min-width: 480px) {
  body.page-template-location section.weekly-happenings .specials .special .time h4 {
    font-size: 1.25em;
  }
}
@media screen and (min-width: 768px) {
  body.page-template-location section.weekly-happenings .specials .special .time h4 {
    font-size: 1.5em;
  }
}
body.page-template-location section.weekly-happenings .specials .special .details p {
  font-size: 1.25em;
  line-height: 1.25em;
}
body.page-template-location section.column-row {
  background: url(../../images/turf.jpg) no-repeat center center;
  background-size: cover;
  padding-bottom: 4rem;
}
body.page-template-location section.column-row .wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
}
body.page-template-location section.column-row .section-headline {
  width: 100%;
}
body.page-template-location section.column-row h2.section-header {
  font-weight: 600;
  line-height: 1em;
}
body.page-template-location section.column-row .image {
  aspect-ratio: 16/9;
  margin-bottom: 1rem;
}
body.page-template-location section.column-row .image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
body.page-template-location section.column-row .item {
  background: #fff;
  padding: 1.5rem;
  width: 100%;
  text-align: center;
}
@media screen and (min-width: 768px) {
  body.page-template-location section.column-row .item {
    width: calc(50% - 1rem);
  }
}
body.page-template-location section.column-row .item p {
  font-size: 1.125em;
  line-height: 1.5em;
}
body.page-template-location section.column-row .item h3 {
  padding: 1.5rem 0;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 2em;
}
body.page-template-location section.column-row .item .cta {
  margin-top: 0;
}
body.page-template-location section.content-rows {
  padding: 50px 0;
}
body.page-template-location section.content-rows .wrapper {
  max-width: 1200px;
}
body.page-template-location section.content-rows .game {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
body.page-template-location section.content-rows .game + .game {
  padding-top: 100px;
}
@media screen and (min-width: 768px) {
  body.page-template-location section.content-rows .game:nth-child(even) .photo {
    order: -1;
  }
}
body.page-template-location section.content-rows .game .info {
  width: 100%;
  padding-bottom: 25px;
}
@media screen and (min-width: 768px) {
  body.page-template-location section.content-rows .game .info {
    width: calc(40% - 25px);
    padding-bottom: 0;
  }
}
body.page-template-location section.content-rows .game .info .headline {
  padding: 0 0 10px 0;
  text-align: left;
}
body.page-template-location section.content-rows .game .info .headline h3 {
  color: #008445;
  text-transform: uppercase;
  font-size: 2.5em;
}
body.page-template-location section.content-rows .game .info .copy {
  font-size: 1.125em;
  line-height: 1.5;
  padding: 0;
}
@media screen and (min-width: 768px) {
  body.page-template-location section.content-rows .game .info .copy {
    font-size: 1.5em;
  }
}
body.page-template-location section.content-rows .game .info .copy a {
  text-decoration: underline;
  color: #d13239;
}
body.page-template-location section.content-rows .game .photo {
  width: 100%;
}
@media screen and (min-width: 768px) {
  body.page-template-location section.content-rows .game .photo {
    width: calc(60% - 25px);
  }
}
body.page-template-location .tap-list {
  background: #1a1a1a;
  color: #fff;
  padding: 4rem 2rem;
  height: 100vh;
  overflow: scroll;
}
@media screen and (min-width: 768px) {
  body.page-template-location .tap-list {
    padding: 8rem 2rem;
    height: 80vh;
  }
}
body.page-template-location .tap-list .section-header {
  text-align: center;
  padding-bottom: 4rem;
}
body.page-template-location .tap-list-grid {
  display: grid;
  gap: 3rem 6rem;
}
@media screen and (min-width: 992px) {
  body.page-template-location .tap-list-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 1fr;
  }
}
@media screen and (min-width: 1280px) {
  body.page-template-location .tap-list-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem 10rem;
  }
}
body.page-template-location .tap-list .item {
  display: grid;
  grid-template-columns: 3rem 1fr 10px;
  gap: 0 2rem;
}
body.page-template-location .tap-list .tap {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  border: 2px solid #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
body.page-template-location .tap-list .tap strong {
  font-family: "Tungsten", sans-serif;
  font-weight: 500;
  font-size: clamp(1.04rem, 0.89rem + 0.74vw, 1.35rem);
  transform: translateY(2px);
}
body.page-template-location .tap-list .logo {
  width: 3rem;
  height: 3rem;
  aspect-ratio: 1/1;
  margin-bottom: 0.5rem;
}
body.page-template-location .tap-list .logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
body.page-template-location .tap-list .logo img {
  border-radius: 50%;
}
body.page-template-location .tap-list h3.beer {
  font-size: clamp(1.5rem, 1.29rem + 1.07vw, 1.95rem);
  line-height: 1.125em;
}
@media screen and (min-width: 992px) {
  body.page-template-location .tap-list h3.beer {
    font-size: clamp(1.25rem, 1.07rem + 0.89vw, 1.63rem);
  }
}
@media screen and (min-width: 1440px) {
  body.page-template-location .tap-list h3.beer {
    font-size: clamp(1.5rem, 1.29rem + 1.07vw, 1.95rem);
  }
}
body.page-template-location .tap-list h4.style {
  text-transform: uppercase;
  font-size: clamp(1.04rem, 0.89rem + 0.74vw, 1.35rem);
  letter-spacing: 0.075em;
  color: #ffca38;
}
body.page-template-location .tap-list .details p span {
  display: block;
}
body.page-template-location .tap-list .details p span + span {
  padding: 10px 0 0 0;
}
@media screen and (min-width: 768px) {
  body.page-template-location .tap-list .details p span {
    display: inline-block;
  }
  body.page-template-location .tap-list .details p span + span {
    padding: 0 0 0 10px;
  }
}
body.page-template-location .tap-list .remaining .meter {
  display: block;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 4px;
  width: 10px;
  height: 75%;
  margin-top: auto;
}
@media screen and (min-width: 1280px) {
  body.page-template-location .tap-list .remaining .meter {
    height: 50%;
  }
}
body.page-template-location .tap-list .remaining .meter .amount {
  display: block;
  width: 100%;
  position: absolute;
  bottom: 0;
}
body.page-template-location .tap-list .powered-by {
  padding-top: 3rem;
}
body.page-template-location .tap-list .powered-by a {
  display: block;
  max-width: 18rem;
  margin: 0 auto;
}
body.page-template-location section.template-section.locations {
  padding: 100px 0;
  text-align: center;
}
body.page-template-location section.template-section.locations .locations-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 50px 0 0 0;
}
body.page-template-location section.template-section.locations .locations-wrapper .location {
  width: 100%;
  margin: 0 0 25px 0;
}
@media screen and (min-width: 480px) {
  body.page-template-location section.template-section.locations .locations-wrapper .location {
    width: 47.5%;
  }
}
@media screen and (min-width: 768px) {
  body.page-template-location section.template-section.locations .locations-wrapper .location {
    width: 30.3333%;
  }
}
body.page-template-location section.template-section.locations .locations-wrapper .location a {
  display: block;
  width: 100%;
  height: 100%;
}
body.page-template-location section.template-section.locations .locations-wrapper .location a .info {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: rgba(0, 0, 0, 0.5);
  transition: background 0.3s ease-in-out;
}
body.page-template-location section.template-section.locations .locations-wrapper .location a .info strong {
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-family: "Tungsten", sans-serif;
  font-size: 8em;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
  transform: translateY(10px);
  width: 100%;
  display: block;
}
body.page-template-location section.template-section.locations .locations-wrapper .location a .info em {
  width: 100%;
  display: block;
  color: #fff;
  padding: 5px 0 0 0;
  font-size: 1.5em;
  font-family: "Marion Italic", sans-serif;
  font-style: normal;
}
body.page-template-location section.template-section.locations .locations-wrapper .location a:hover .info {
  background: rgba(0, 0, 0, 0.25);
}
body.page-template-location section.template-section.locations .locations-wrapper .location a img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
body.page-template-location section.food {
  padding: 0 !important;
  display: grid;
  align-items: center;
  justify-content: center;
  background: #ffca38;
}
body.page-template-location section.food .background-image {
  grid-row: 1;
  grid-column: 1;
  z-index: 1;
  aspect-ratio: 1/1;
}
body.page-template-location section.food .background-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 768px) {
  body.page-template-location section.food .background-image {
    aspect-ratio: 4/3;
  }
}
@media screen and (min-width: 992px) {
  body.page-template-location section.food .background-image {
    aspect-ratio: 16/9;
  }
}
@media screen and (min-width: 1920px) {
  body.page-template-location section.food .background-image {
    aspect-ratio: unset;
    width: 100%;
  }
  body.page-template-location section.food .background-image img {
    -o-object-fit: unset;
       object-fit: unset;
  }
}
body.page-template-location section.food .info {
  grid-row: 1;
  grid-column: 1;
  z-index: 2;
  background: rgba(255, 255, 255, 0.85);
  padding: 2rem;
  width: 100%;
  max-width: 30rem;
  margin: 0 auto;
  z-index: 100;
  text-align: center;
}
@media screen and (min-width: 992px) {
  body.page-template-location section.food .info {
    padding: 4rem 2.25rem;
  }
}
body.page-template-location section.food .info h2.section-header {
  padding: 0 0 1rem 0;
}
body.page-template-location section.food .info p {
  font-size: clamp(1.125rem, 1.2vw, 1.125rem);
  line-height: 1.5em;
}
body.page-template-location section.food .info p + p {
  padding-top: 1rem;
}
body.page-template-location section.food .info p a {
  text-decoration: underline;
}
body.page-template-location section.food .info .hours {
  padding: 3rem 0 0 0;
}
body.page-template-location section.food .info .hours h4 {
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
  font-size: 1.5rem;
  padding: 0 0 0.25rem 0;
}
body.page-template-location section.food .info .cta a + a {
  margin-left: 10px;
}
body.page-template-location section.group-events {
  background: #000;
}
body.page-template-location section.group-events h2.section-header {
  color: #fff;
  padding-bottom: 25px;
}
body.page-template-location section.group-events .info {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
  padding: 0 0 75px 0;
  color: #fff;
}
body.page-template-location section.group-events .info p {
  font-size: 1.125em;
  line-height: 1.5em;
}
body.page-template-location section.group-events .brochure {
  text-align: center;
}
body.page-template-location section.group-events .brochure a {
  display: inline-block;
  font-family: "Tungsten", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 2.5em;
  font-weight: 600;
  color: #fff;
  text-decoration: underline;
}
body.page-template-location section.group-events .brochure a:hover {
  text-decoration: underline;
}
body.page-template-location section.left-aligned-text {
  padding: 100px 0;
}
body.page-template-location section.left-aligned-text .wrapper {
  max-width: 1200px;
}
body.page-template-location section.left-aligned-text .copy {
  padding: 25px 0 0;
  max-width: 720px;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  body.page-template-location section.left-aligned-text .copy {
    padding: 100px 0 0;
  }
}
body.page-template-location section.left-aligned-text .copy p {
  font-size: 1.125em;
  line-height: 1.5;
}
body.page-template-location section.left-aligned-text .copy p + p {
  padding: 25px 0 0;
}
@media screen and (min-width: 768px) {
  body.page-template-location section.left-aligned-text .copy p {
    font-size: 1.5em;
  }
}
body.page-template-location section.centered-text {
  text-align: center;
  padding: 100px 0;
}
body.page-template-location section.centered-text p {
  font-size: 1.25em;
  line-height: 1.5;
}
body.page-template-location section.centered-text a {
  color: #00833C;
}
body.page-template-location section.press {
  padding: 100px 0;
}
body.page-template-location section.press .clip {
  text-align: center;
  max-width: 480px;
  margin: 0 auto;
}
body.page-template-location section.press .clip + .clip {
  padding-top: 50px;
}
body.page-template-location section.press .clip h4 {
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: bold;
  font-size: 1.5em;
  color: #008445;
}
body.page-template-location section.press .clip h3 {
  font-family: "Marion Regular", sans-serif;
  font-size: 1.5em;
  line-height: 1.25em;
}
body.page-template-location section.press .clip h3 a:hover {
  text-decoration: underline;
}
body.page-template-location section#contact {
  margin: 0;
}
body.page-template-location section#contact .wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
body.page-template-location section#contact h2.section-header {
  width: 100%;
  padding-bottom: 25px;
}
body.page-template-location section#contact .info {
  width: 100%;
}
@media screen and (min-width: 768px) {
  body.page-template-location section#contact .info {
    width: 47.5%;
  }
}
body.page-template-location section#contact .detail + .detail {
  padding: 50px 0 0 0;
}
body.page-template-location section#contact .detail h3 {
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 2em;
  padding: 0 0 5px 0;
}
body.page-template-location section#contact .detail p {
  font-size: 1.125em;
  line-height: 1.5em;
}
body.page-template-location section#contact .detail p a {
  text-decoration: underline;
}
body.page-template-location section#contact .map {
  width: 100%;
  padding: 50px 0 0 0;
}
body.page-template-location section#contact .map iframe {
  height: 400px;
  width: 100%;
}
@media screen and (min-width: 768px) {
  body.page-template-location section#contact .map {
    width: 47.5%;
    padding: 0;
    overflow: hidden;
  }
  body.page-template-location section#contact .map iframe {
    height: 500px;
  }
}

main.south-lake-union section#hero .main-image h1 {
  font-size: clamp(2rem, 12vw, 10rem);
}

@media screen and (min-width: 1280px) {
  main.bellingham section#hero .main-image h1 {
    font-size: 12em;
  }
}

@media screen and (min-width: 1280px) {
  main.tacoma section#hero .main-image h1 {
    font-size: 10rem;
  }
}

body.page-template-events-index .site-header {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
  width: 100%;
}
body.page-template-events-index .hero .photo {
  grid-column: 1/-1;
  grid-row: 1;
  aspect-ratio: 4/3;
}
@media screen and (min-width: 768px) {
  body.page-template-events-index .hero .photo {
    aspect-ratio: 16/9;
  }
}
body.page-template-events-index .hero .photo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 992px) {
  body.page-template-events-index .hero .photo {
    max-height: 750px;
    aspect-ratio: unset;
  }
}
body.page-template-events-index .hero .photo::before {
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  position: absolute;
  inset: 0;
}
body.page-template-events-index .hero .info {
  grid-row: 1;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  padding-bottom: 2rem;
}
body.page-template-events-index .hero .events-header {
  display: inline-block;
  background: #cb2127;
  color: #fff;
  font-family: "Tungsten", sans-serif;
  text-transform: uppercase;
  font-size: clamp(0.87rem, 0.74rem + 0.62vw, 1.13rem);
  padding: 0.5rem 1rem 0.375rem 1rem;
  letter-spacing: 0.125em;
}
@media screen and (min-width: 992px) {
  body.page-template-events-index .hero .events-header {
    font-size: clamp(1.25rem, 1.07rem + 0.89vw, 1.63rem);
    padding: 0.5rem 1rem 0.25rem 1rem;
  }
}
body.page-template-events-index .hero .location-headline {
  color: #fff;
  font-size: clamp(6.22rem, 5.25rem + 4.44vw, 8.08rem);
  line-height: 1em;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 992px) {
  body.page-template-events-index .hero .photo {
    max-height: 480px;
  }
}
body.page-template-events-index .hero .location-headline {
  font-size: clamp(4rem, 4.5rem + 3vw, 5.25rem);
}
@media screen and (min-width: 992px) {
  body.page-template-events-index .hero .location-headline {
    font-size: clamp(5rem, 6.5rem + 3.33vw, 7rem);
  }
}
body.page-template-events-index .about {
  padding: 6rem 0 1.5rem 0;
}
body.page-template-events-index .about .info {
  text-align: center;
}
@media screen and (min-width: 992px) {
  body.page-template-events-index .about .info {
    grid-column: 4/span 8;
  }
}
body.page-template-events-index .about .headline {
  padding-bottom: 1rem;
}
body.page-template-events-index .locations {
  padding: 6rem 0;
  gap: 4rem 2rem;
}
@media screen and (min-width: 480px) {
  body.page-template-events-index .locations .location {
    grid-column: span 4;
  }
  body.page-template-events-index .locations .location:nth-of-type(odd) {
    grid-column: 2/span 4;
  }
}
@media screen and (min-width: 992px) {
  body.page-template-events-index .locations .location:nth-of-type(odd) {
    grid-column: span 4;
  }
  body.page-template-events-index .locations .location:nth-child(3n+1) {
    grid-column: 2/span 4;
  }
}
body.page-template-events-index .locations .location a {
  display: block;
}
body.page-template-events-index .locations .photo {
  aspect-ratio: 1/1;
  max-width: 16rem;
  margin: 0 auto;
}
body.page-template-events-index .locations .photo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
body.page-template-events-index .locations .photo img {
  border-radius: 50%;
}
body.page-template-events-index .locations .info {
  text-align: center;
}
body.page-template-events-index .locations .abbr {
  transform: translateY(-1.5rem);
  display: inline-block;
  background: #cb2127;
  color: #fff;
  font-family: "Tungsten", sans-serif;
  text-transform: uppercase;
  font-size: clamp(1.25rem, 1.07rem + 0.89vw, 1.63rem);
  padding: 0.5rem 1rem 0.375rem 1rem;
  letter-spacing: 0.125em;
}
@media screen and (min-width: 992px) {
  body.page-template-events-index .locations .abbr {
    font-size: clamp(1.8rem, 1.54rem + 1.29vw, 2.34rem);
    padding: 0.5rem 1.25rem 0.25rem 1.25rem;
  }
}
body.page-template-events-index .locations .event-link {
  text-align: center;
}
body.page-template-events-index .locations .event-link a {
  display: inline-block;
  font-size: clamp(1.04rem, 0.89rem + 0.74vw, 1.35rem);
  font-family: "Marion Italic", sans-serif;
  border-bottom: 3px solid #008445;
  transition: all 400ms ease;
}
body.page-template-events-index .locations .event-link a:hover {
  border-bottom-color: #cb2127;
}

body.page-template-events-single .site-header {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
  width: 100%;
}
body.page-template-events-single .hero .photo {
  grid-column: 1/-1;
  grid-row: 1;
  aspect-ratio: 4/3;
}
@media screen and (min-width: 768px) {
  body.page-template-events-single .hero .photo {
    aspect-ratio: 16/9;
  }
}
body.page-template-events-single .hero .photo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 992px) {
  body.page-template-events-single .hero .photo {
    max-height: 750px;
    aspect-ratio: unset;
  }
}
body.page-template-events-single .hero .info {
  grid-row: 1;
  z-index: 2;
  display: flex;
  align-items: flex-end;
}
body.page-template-events-single .hero .events-header {
  display: inline-block;
  background: #cb2127;
  color: #fff;
  font-family: "Tungsten", sans-serif;
  text-transform: uppercase;
  font-size: clamp(0.87rem, 0.74rem + 0.62vw, 1.13rem);
  padding: 0.5rem 1rem 0.375rem 1rem;
  letter-spacing: 0.125em;
}
@media screen and (min-width: 992px) {
  body.page-template-events-single .hero .events-header {
    font-size: clamp(1.25rem, 1.07rem + 0.89vw, 1.63rem);
    padding: 0.5rem 1rem 0.25rem 1rem;
  }
}
body.page-template-events-single .hero .location-headline {
  color: #fff;
  font-size: clamp(6.22rem, 5.25rem + 4.44vw, 8.08rem);
  line-height: 1em;
  font-weight: bold;
}
@media screen and (min-width: 992px) {
  body.page-template-events-single .hero .location-headline {
    font-size: clamp(12.22rem, 10.5rem + 8.88vw, 16.08rem);
  }
}
body.page-template-events-single .details {
  background: #fff;
}
body.page-template-events-single .details .info {
  padding: 4rem 0;
}
@media screen and (min-width: 768px) {
  body.page-template-events-single .details .info {
    grid-column: 2/span 5;
  }
}
@media screen and (min-width: 992px) {
  body.page-template-events-single .details .info {
    grid-column: 2/span 7;
  }
}
@media screen and (min-width: 1280px) {
  body.page-template-events-single .details .info {
    grid-column: 3/span 5;
  }
}
body.page-template-events-single .details .info .copy-1 {
  font-family: "Marion Italic", sans-serif;
  padding: 1rem 0;
}
body.page-template-events-single .details .events-teaser-headline {
  color: #2a5236;
  text-transform: uppercase;
  font-size: clamp(3.11rem, 2.67rem + 2.22vw, 4.625em);
  line-height: 1em;
  font-weight: bold;
}
body.page-template-events-single .details .events-teaser-headline:after {
  content: ".";
  color: #cb2127;
}
body.page-template-events-single .details .location {
  margin-top: 3rem;
  border-top: 3px solid #2a5236;
  padding-top: 3rem;
}
body.page-template-events-single .details .location .copy {
  padding: 2rem 0;
}
body.page-template-events-single .details .location-teaser-headline {
  color: #cb2127;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: bold;
  font-size: clamp(1.25rem, 1.07rem + 0.89vw, 1.63rem);
  line-height: 1em;
}
body.page-template-events-single .details .photos {
  grid-column: 1/-1;
  display: flex;
}
@media screen and (min-width: 768px) {
  body.page-template-events-single .details .photos {
    display: block;
    grid-column: 7/-1;
  }
}
@media screen and (min-width: 992px) {
  body.page-template-events-single .details .photos {
    grid-column: 10/span 4;
    transform: translateY(-3rem);
  }
}
@media screen and (min-width: 1280px) {
  body.page-template-events-single .details .photos {
    grid-column: 9/span 4;
  }
}
@media screen and (min-width: 768px) {
  body.page-template-events-single .details .photos .photo + .photo {
    margin-top: 1rem;
  }
}
body.page-template-events-single .contact {
  padding: 4rem 0;
}
@media screen and (min-width: 768px) {
  body.page-template-events-single .contact .photo {
    grid-column: 2/span 6;
  }
}
@media screen and (min-width: 992px) {
  body.page-template-events-single .contact .photo {
    grid-column: 2/span 4;
  }
}
body.page-template-events-single .contact .photo img {
  width: 100%;
}
body.page-template-events-single .contact .col + .col {
  padding-top: 3rem;
}
@media screen and (min-width: 768px) {
  body.page-template-events-single .contact .col + .col {
    padding-top: 0;
  }
}
body.page-template-events-single .contact .vital + .vital {
  padding-top: 3rem;
}
body.page-template-events-single .contact .info {
  padding-top: 2rem;
}
@media screen and (min-width: 768px) {
  body.page-template-events-single .contact .info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 2rem;
  }
}
@media screen and (min-width: 992px) {
  body.page-template-events-single .contact .info {
    grid-column: 6/span 8;
  }
}
body.page-template-events-single .contact .info .section-header {
  padding-bottom: 2rem;
  grid-column: 1/-1;
}

body.page-template-leagues .site-header {
  background: #2a5236;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 3rem;
}
@media screen and (min-width: 992px) {
  body.page-template-leagues .site-header {
    margin-bottom: 6rem;
  }
}
body.page-template-leagues section#main {
  padding-bottom: 100px;
}
body.page-template-leagues .headline {
  text-align: center;
  padding: 0 0 50px 0;
}
body.page-template-leagues .headline h1 {
  text-align: center;
  text-transform: uppercase;
  font-size: 3em;
  color: #000;
  font-weight: bold;
  letter-spacing: 0.1em;
  line-height: 0.875em;
}
@media screen and (min-width: 768px) {
  body.page-template-leagues .headline h1 {
    font-size: 4em;
  }
}
@media screen and (min-width: 992px) {
  body.page-template-leagues .headline h1 {
    font-size: 6em;
  }
}
body.page-template-leagues .events {
  max-width: 840px;
  margin: 0 auto;
  padding: 50px 0 0 0;
}
body.page-template-leagues .events .event {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
body.page-template-leagues .events .event + .event {
  padding-top: 75px;
}
@media screen and (min-width: 768px) {
  body.page-template-leagues .events .event + .event {
    padding-top: 125px;
  }
}
body.page-template-leagues .events .event .image {
  width: 100%;
  padding-bottom: 20px;
}
@media screen and (min-width: 768px) {
  body.page-template-leagues .events .event .image {
    width: 33.3333%;
    padding-bottom: 0;
  }
}
body.page-template-leagues .events .event .info {
  width: 100%;
}
@media screen and (min-width: 768px) {
  body.page-template-leagues .events .event .info {
    width: 60%;
  }
}
body.page-template-leagues .events .event .info h4.date {
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 1.25em;
  padding: 0 0 5px 0;
}
body.page-template-leagues .events .event .info h3 {
  font-size: 2.5em;
  color: #008445;
  padding: 0 0 10px 0;
}
body.page-template-leagues .events .event .info h4.location {
  font-family: "Marion Italic", sans-serif;
  font-size: 1.25em;
}
body.page-template-leagues .events .event .info .description {
  padding: 25px 0;
}
body.page-template-leagues .events .event .info .description p {
  font-size: 1.125em;
  line-height: 1.25em;
}
body.page-template-leagues .events .event .info .description p + p {
  padding-top: 10px;
}
body.page-template-leagues .events .event .info .description p a {
  color: #d13239;
  text-decoration: underline;
}
body.page-template-leagues .events .event .info .cta a {
  display: inline-block;
  color: #fff;
  background: #d13239;
  padding: 10px 20px 8px 20px;
  font-family: "Tungsten", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 1.5em;
}

body.page-template-about .site-header {
  background: #2a5236;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 3rem;
}
@media screen and (min-width: 992px) {
  body.page-template-about .site-header {
    margin-bottom: 6rem;
  }
}
body.page-template-about .section-header {
  text-align: center;
  text-transform: uppercase;
  font-size: 3em;
  color: #000;
  font-weight: bold;
  letter-spacing: 0.1em;
  line-height: 0.875;
}
@media screen and (min-width: 768px) {
  body.page-template-about .section-header {
    font-size: 4em;
  }
}
@media screen and (min-width: 992px) {
  body.page-template-about .section-header {
    font-size: 12em;
  }
}
body.page-template-about section.about {
  padding-bottom: 6rem;
}
@media screen and (min-width: 992px) {
  body.page-template-about section.about {
    padding: 0 0 12rem 0;
  }
}
body.page-template-about section.about .headline {
  text-align: center;
  padding: 0 0 3rem;
}
body.page-template-about section.about .copy {
  padding: 25px 0 0;
}
@media screen and (min-width: 768px) {
  body.page-template-about section.about .copy {
    padding: 6rem 0 0;
    grid-column: 3/span 6;
  }
}
@media screen and (min-width: 992px) {
  body.page-template-about section.about .copy {
    grid-column: 4/span 8;
  }
}
body.page-template-about section.about .copy p {
  font-size: 1.125rem;
  line-height: 1.5;
}
body.page-template-about section.about .copy p + p {
  padding: 1.5rem 0 0 0;
}
@media screen and (min-width: 768px) {
  body.page-template-about section.about .copy p {
    font-size: 1.5rem;
  }
}
body.page-template-about section.games .section-header {
  text-align: center;
  padding: 0 0 3rem;
}
body.page-template-about section.games .section-header h2 {
  text-align: center;
  text-transform: uppercase;
  font-size: 3rem;
  color: #000;
  font-weight: bold;
  letter-spacing: 0.1em;
  line-height: 0.875em;
}
@media screen and (min-width: 768px) {
  body.page-template-about section.games .section-header h2 {
    font-size: 4rem;
  }
}
@media screen and (min-width: 992px) {
  body.page-template-about section.games .section-header h2 {
    font-size: 12rem;
  }
}
body.page-template-about section.games .game {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
body.page-template-about section.games .game + .game {
  padding-top: 100px;
}
@media screen and (min-width: 768px) {
  body.page-template-about section.games .game:nth-child(even) .photo {
    order: -1;
  }
}
body.page-template-about section.games .game .info {
  width: 100%;
  padding-bottom: 25px;
}
@media screen and (min-width: 768px) {
  body.page-template-about section.games .game .info {
    width: calc(40% - 25px);
    padding-bottom: 0;
  }
}
body.page-template-about section.games .game .info .headline {
  padding: 0 0 10px 0;
  text-align: left;
}
body.page-template-about section.games .game .info .headline h3 {
  color: #008445;
  text-transform: uppercase;
  font-size: 2.5em;
}
body.page-template-about section.games .game .info .copy {
  font-size: 1.125em;
  line-height: 1.5;
  padding: 0;
}
@media screen and (min-width: 768px) {
  body.page-template-about section.games .game .info .copy {
    font-size: 1.5em;
  }
}
body.page-template-about section.games .game .info .copy a {
  text-decoration: underline;
  color: #d13239;
}
body.page-template-about section.games .game .photo {
  width: 100%;
}
@media screen and (min-width: 768px) {
  body.page-template-about section.games .game .photo {
    width: calc(60% - 25px);
  }
}
body.page-template-about section.press {
  padding: 6rem 0;
}
@media screen and (min-width: 992px) {
  body.page-template-about section.press {
    padding: 12rem 0 8rem 0;
  }
}
body.page-template-about section.press .section-header {
  padding-bottom: 2rem;
}
body.page-template-about section.press .clip {
  text-align: center;
  max-width: 480px;
  margin: 0 auto;
}
body.page-template-about section.press .clip + .clip {
  padding-top: 50px;
}
body.page-template-about section.press .clip h4 {
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: bold;
  font-size: 1.5em;
  color: #008445;
}
body.page-template-about section.press .clip h3 {
  font-family: "Marion Regular", sans-serif;
  font-size: 1.5em;
  line-height: 1.25em;
}
body.page-template-about section.press .clip h3 a:hover {
  text-decoration: underline;
}

body.page-template-membership .site-header {
  background: #2a5236;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 3rem;
}
@media screen and (min-width: 992px) {
  body.page-template-membership .site-header {
    margin-bottom: 6rem;
  }
}
body.page-template-membership section#main {
  padding: 50px 0 100px 0;
}
@media screen and (min-width: 992px) {
  body.page-template-membership section#main {
    padding-top: 0;
  }
}
body.page-template-membership section#main .membership {
  text-align: center;
}
body.page-template-membership section#main .membership + .membership {
  padding-top: 100px;
  border-top: 1px solid #fff;
  margin-top: 100px;
}
body.page-template-membership section#main .membership-header .headline h2 {
  color: #008445;
  font-size: 3em;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
@media screen and (min-width: 480px) {
  body.page-template-membership section#main .membership-header .headline h2 {
    font-size: 4em;
  }
}
@media screen and (min-width: 992px) {
  body.page-template-membership section#main .membership-header .headline h2 {
    font-size: 5em;
    line-height: 0.875em;
    padding-bottom: 10px;
  }
}
body.page-template-membership section#main .membership-header .sub-headline h3 {
  color: #d13239;
  font-size: 1.5em;
}
@media screen and (min-width: 480px) {
  body.page-template-membership section#main .membership-header .sub-headline h3 {
    font-size: 2em;
  }
}
body.page-template-membership section#main .membership-header .photo {
  margin: 25px 0;
  aspect-ratio: 4/3;
}
body.page-template-membership section#main .membership-header .photo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
body.page-template-membership section#main .membership-header .deck ul {
  padding-top: 1rem;
  text-align: left;
}
body.page-template-membership section#main .membership-header .cost {
  padding-top: 50px;
}
body.page-template-membership section#main .membership-header .cost h4 {
  text-transform: uppercase;
  color: #d13239;
  font-size: 1.5rem;
  padding-bottom: 5px;
}
@media screen and (min-width: 992px) {
  body.page-template-membership section#main .membership-header .cost h4 {
    font-size: 1.75rem;
  }
}
body.page-template-membership section#main .membership-header .cost h2 {
  font-size: 3rem;
  color: #008445;
  text-transform: uppercase;
}
@media screen and (min-width: 992px) {
  body.page-template-membership section#main .membership-header .cost h2 {
    font-size: 5rem;
  }
}
body.page-template-membership section#main .membership-header .cost h2 span {
  font-size: 1.5rem;
  display: block;
  text-transform: none;
  color: #1a1a1a;
}
@media screen and (min-width: 992px) {
  body.page-template-membership section#main .membership-header .cost h2 span {
    font-size: 2rem;
  }
}
body.page-template-membership section#main .membership-details {
  padding-top: 50px;
}
body.page-template-membership section#main .membership-details p {
  font-size: 1.125em;
  line-height: 1.25em;
}
@media screen and (min-width: 992px) {
  body.page-template-membership section#main .membership-details p {
    font-size: 1.25em;
    line-height: 1.5em;
  }
}
body.page-template-membership section#main .membership-details p a {
  color: #d13239;
  text-decoration: underline;
}
body.page-template-membership section#main .membership-details .apps {
  display: flex;
  width: 100%;
  padding-top: 25px;
  justify-content: center;
}
body.page-template-membership section#main .membership-details .apps a {
  display: block;
}
body.page-template-membership section#main .membership-details .apps a + a {
  margin-left: 10px;
}
body.page-template-membership section#main .membership-details .apps a img {
  max-height: 48px;
}
@media screen and (min-width: 768px) {
  body.page-template-membership section#main .wrapper {
    display: flex;
    justify-content: space-between;
  }
  body.page-template-membership section#main .membership {
    width: 50%;
  }
  body.page-template-membership section#main .membership + .membership {
    padding-top: 0;
    margin-top: 0;
    border-top: none;
  }
  body.page-template-membership section#main .membership.beer-club {
    order: -1;
    padding-right: 50px;
  }
  body.page-template-membership section#main .membership.beer-club .membership-details {
    padding-top: 25px;
  }
  body.page-template-membership section#main .membership.flatstick-membership {
    border-left: 1px solid #fff;
    padding-left: 50px;
  }
}

body.page-template-faqs .site-header {
  background: #2a5236;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 3rem;
}
@media screen and (min-width: 992px) {
  body.page-template-faqs .site-header {
    margin-bottom: 6rem;
  }
}
body.page-template-faqs section#main {
  padding-bottom: 100px;
}
body.page-template-faqs section#main .wrapper {
  max-width: 640px;
}
body.page-template-faqs section.question-group + section.question-group {
  padding-top: 100px;
}
body.page-template-faqs h1.page-title {
  color: #000;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 5em;
  font-weight: bold;
  padding-bottom: 50px;
}
body.page-template-faqs h2.section-title {
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 2.5em;
  font-weight: bold;
  padding-bottom: 20px;
}
body.page-template-faqs .question + .question {
  padding-top: 50px;
}
body.page-template-faqs .question h3 {
  font-size: 2.5em;
  line-height: 1.25em;
  font-weight: bold;
  color: #008445;
  padding-bottom: 5px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
body.page-template-faqs .question p {
  font-size: 1.25em;
  line-height: 1.25em;
}
body.page-template-faqs .question p + p {
  padding-top: 20px;
}
body.page-template-faqs .question p a {
  text-decoration: underline;
  color: #008445;
}

body.page-template-contact .site-header {
  background: #2a5236;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 3rem;
}
@media screen and (min-width: 992px) {
  body.page-template-contact .site-header {
    margin-bottom: 6rem;
  }
}
body.page-template-contact section#main {
  text-align: center;
  padding-bottom: 100px;
}
body.page-template-contact section#main h1.page-title {
  color: #000;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 5em;
  font-weight: bold;
  padding-bottom: 50px;
}
body.page-template-contact section#main .locations {
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 100px;
}
@media screen and (min-width: 480px) {
  body.page-template-contact section#main .locations {
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (min-width: 768px) {
  body.page-template-contact section#main .locations {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
body.page-template-contact section#main .locations .location h2 {
  font-size: 3.5em;
}
body.page-template-contact section#main .locations .location h2 a {
  color: #008445;
}
body.page-template-contact section#main .locations .location .image {
  margin: 10px 0 0 0;
  aspect-ratio: 4/3;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
}
body.page-template-contact section#main .locations .location .image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
body.page-template-contact section#main .locations .location .info {
  text-align: left;
  background: #fff;
  padding: 40px 25px;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
}
body.page-template-contact section#main .locations .location .info .detail + .detail {
  padding: 30px 0 0 0;
}
body.page-template-contact section#main .locations .location .info .detail h3 {
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 1.25em;
  padding: 0 0 3px 0;
}
body.page-template-contact section#main .locations .location .info .detail p {
  font-size: 1em;
  line-height: 1.375em;
}
body.page-template-contact section#main .locations .location .info .detail p a {
  text-decoration: underline;
}

body.page-template-book-a-tee-time .site-header {
  background: #2a5236;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 3rem;
}
@media screen and (min-width: 992px) {
  body.page-template-book-a-tee-time .site-header {
    margin-bottom: 6rem;
  }
}
body.page-template-book-a-tee-time .page-header {
  text-align: center;
}
body.page-template-book-a-tee-time .locations {
  padding: 6rem 0;
  gap: 4rem 2rem;
}
@media screen and (min-width: 480px) {
  body.page-template-book-a-tee-time .locations .location {
    grid-column: span 4;
  }
  body.page-template-book-a-tee-time .locations .location:nth-of-type(odd) {
    grid-column: 2/span 4;
  }
}
@media screen and (min-width: 992px) {
  body.page-template-book-a-tee-time .locations .location:nth-of-type(odd) {
    grid-column: span 4;
  }
  body.page-template-book-a-tee-time .locations .location:nth-child(3n+1) {
    grid-column: 2/span 4;
  }
}
body.page-template-book-a-tee-time .locations .location a {
  display: block;
}
body.page-template-book-a-tee-time .locations .photo {
  aspect-ratio: 1/1;
  max-width: 16rem;
  margin: 0 auto;
}
body.page-template-book-a-tee-time .locations .photo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
body.page-template-book-a-tee-time .locations .photo img {
  border-radius: 50%;
}
body.page-template-book-a-tee-time .locations .info {
  text-align: center;
}
body.page-template-book-a-tee-time .locations .abbr {
  transform: translateY(-1.5rem);
  display: inline-block;
  background: #cb2127;
  color: #fff;
  font-family: "Tungsten", sans-serif;
  text-transform: uppercase;
  font-size: clamp(1.25rem, 1.07rem + 0.89vw, 1.63rem);
  padding: 0.5rem 1rem 0.375rem 1rem;
  letter-spacing: 0.125em;
}
@media screen and (min-width: 992px) {
  body.page-template-book-a-tee-time .locations .abbr {
    font-size: clamp(1.8rem, 1.54rem + 1.29vw, 2.34rem);
    padding: 0.5rem 1.25rem 0.25rem 1.25rem;
  }
}
body.page-template-book-a-tee-time .locations .event-link {
  text-align: center;
}
body.page-template-book-a-tee-time .locations .event-link a {
  display: inline-block;
  font-size: clamp(1.04rem, 0.89rem + 0.74vw, 1.35rem);
  font-family: "Marion Italic", sans-serif;
  border-bottom: 3px solid #008445;
  transition: all 400ms ease;
}
body.page-template-book-a-tee-time .locations .event-link a:hover {
  border-bottom-color: #cb2127;
}

body.page-template-plan-an-event .site-header {
  background: #2a5236;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 3rem;
}
@media screen and (min-width: 992px) {
  body.page-template-plan-an-event .site-header {
    margin-bottom: 6rem;
  }
}
@media screen and (min-width: 768px) {
  body.page-template-plan-an-event section.main {
    min-height: 60vh;
  }
}
body.page-template-plan-an-event section.main .header {
  text-align: center;
  padding: 0 0 20px 0;
}
body.page-template-plan-an-event section.main .header h2 {
  font-size: 3em;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #2a5236;
}
@media screen and (min-width: 768px) {
  body.page-template-plan-an-event section.main .header h2 {
    font-size: 5em;
  }
}
body.page-template-plan-an-event section.main .tabs {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
body.page-template-plan-an-event section.main .tabs h4 {
  font-size: 1.5em;
  width: 100%;
  text-align: center;
  padding: 0 0 20px 0;
  font-family: "Marion Italic", sans-serif;
  color: #2a5236;
}
body.page-template-plan-an-event section.main .tabs a {
  color: #2a5236;
  font-family: "Tungsten", sans-serif;
  font-size: 1.25em;
  display: block;
  margin: 0 10px;
  padding: 8px 20px 5px 20px;
  border-radius: 12px;
  border: 1px solid #2a5236;
}
@media screen and (min-width: 768px) {
  body.page-template-plan-an-event section.main .tabs a {
    font-size: 1.75em;
    padding: 12px 30px 9px 30px;
  }
}
body.page-template-plan-an-event section.main .tabs a.active, body.page-template-plan-an-event section.main .tabs a:hover {
  background: #2a5236;
  color: #fff;
}
body.page-template-plan-an-event section.main #notice {
  padding: 2rem 0 6rem 0;
  color: #1a1a1a;
  margin: 0 auto;
  max-width: 600px;
  text-align: center;
}
body.page-template-plan-an-event section.main #notice h3 {
  font-size: 1.5em;
  line-height: 1.25em;
  font-family: "Tungsten", sans-serif;
}
@media screen and (min-width: 768px) {
  body.page-template-plan-an-event section.main #notice h3 {
    font-size: 2em;
  }
}
body.page-template-plan-an-event section.main #notice p {
  font-size: 1.125em;
  line-height: 1.25em;
  font-family: "Marion Regular", sans-serif;
}
body.page-template-plan-an-event section.main .form {
  padding-bottom: 50px;
}
body.page-template-plan-an-event section.main .form h3 {
  text-align: center;
  font-size: 3em;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0 0 25px 0;
}
body.page-template-plan-an-event section.main .form.event-form .form-wrapper {
  max-width: 325px;
  width: 100%;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  body.page-template-plan-an-event section.main .form.event-form .form-wrapper {
    max-width: 100%;
  }
}
body.page-template-plan-an-event section.main .form.event-form .form-wrapper iframe {
  width: 1px;
  min-width: 100%;
  *width: 100%;
  height: 800px;
}
body.page-template-plan-an-event section.main .form.event-form .form-wrapper a {
  display: block;
  margin: 0 auto;
  width: 100%;
  max-width: 204px;
}

body.page-template-sunday-fundraise .site-header {
  background: #2a5236;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 3rem;
}
@media screen and (min-width: 992px) {
  body.page-template-sunday-fundraise .site-header {
    margin-bottom: 6rem;
  }
}
body.page-template-sunday-fundraise .main .headline {
  text-align: center;
  padding: 0 0 50px 0;
}
body.page-template-sunday-fundraise .main .headline h1 {
  text-align: center;
  text-transform: uppercase;
  font-size: 3em;
  color: #d13239;
  font-weight: bold;
  letter-spacing: 0.1em;
  line-height: 0.875em;
}
@media screen and (min-width: 768px) {
  body.page-template-sunday-fundraise .main .headline h1 {
    font-size: 4em;
  }
}
@media screen and (min-width: 992px) {
  body.page-template-sunday-fundraise .main .headline h1 {
    font-size: 6em;
  }
}
body.page-template-sunday-fundraise .main .intro.copy {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
body.page-template-sunday-fundraise .main .intro.copy p {
  font-size: 1.5em;
  line-height: 1.25em;
}
body.page-template-sunday-fundraise .main .total {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding-top: 50px;
}
body.page-template-sunday-fundraise .main .total .graphic,
body.page-template-sunday-fundraise .main .total .details {
  width: 100%;
}
@media screen and (min-width: 768px) {
  body.page-template-sunday-fundraise .main .total .graphic,
body.page-template-sunday-fundraise .main .total .details {
    width: calc(50% - 25px);
  }
}
@media screen and (min-width: 768px) {
  body.page-template-sunday-fundraise .main .total .graphic img {
    margin-left: auto;
  }
}
body.page-template-sunday-fundraise .main .total .details h3 {
  font-size: 2em;
  line-height: 1em;
  color: #d13239;
}
@media screen and (min-width: 768px) {
  body.page-template-sunday-fundraise .main .total .details h3 {
    font-size: 3em;
  }
}
@media screen and (min-width: 992px) {
  body.page-template-sunday-fundraise .main .total .details h3 {
    font-size: 4em;
  }
}
body.page-template-sunday-fundraise .main .total .details h3 span.amount {
  color: #008445;
  font-size: 1.5em;
  display: block;
  padding-top: 20px;
}
body.page-template-sunday-fundraise .charities {
  background: #fff;
  padding: 3rem 0;
}
@media screen and (min-width: 768px) {
  body.page-template-sunday-fundraise .charities {
    padding: 6rem 0;
  }
}
body.page-template-sunday-fundraise .charities .section-header {
  text-align: center;
  padding-bottom: 3rem;
}
body.page-template-sunday-fundraise .charities .section-header h2 {
  color: #008445;
  font-size: 2.5em;
}
@media screen and (min-width: 768px) {
  body.page-template-sunday-fundraise .charities .section-header h2 {
    font-size: 3.5em;
  }
}
body.page-template-sunday-fundraise .charities .section-header .copy {
  padding-top: 10px;
}
body.page-template-sunday-fundraise .charities .charities-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 50px;
  max-width: 720px;
  margin: 0 auto;
}
@media screen and (min-width: 480px) {
  body.page-template-sunday-fundraise .charities .charities-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (min-width: 768px) {
  body.page-template-sunday-fundraise .charities .charities-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
body.page-template-sunday-fundraise .charities .charities-grid .item {
  max-width: 150px;
  margin: 0 auto;
}
body.page-template-sunday-fundraise .charities .charities-grid .item .location-header {
  padding-bottom: 10px;
  text-align: center;
}
body.page-template-sunday-fundraise .charities .charities-grid .item .location-header h5 {
  font-size: 1.5em;
  letter-spacing: 0.05em;
  color: #d13239;
  border-bottom: 2px solid;
  display: inline-block;
}
body.page-template-sunday-fundraise .charities .charities-grid .item a {
  display: block;
}
body.page-template-sunday-fundraise .partner {
  padding: 3rem 0;
}
@media screen and (min-width: 768px) {
  body.page-template-sunday-fundraise .partner {
    padding: 6rem 0;
  }
}
body.page-template-sunday-fundraise .partner .section-header {
  text-align: center;
  padding-bottom: 25px;
  max-width: 640px;
  margin: 0 auto;
}
body.page-template-sunday-fundraise .partner .section-header h2 {
  color: #008445;
  font-size: 2.5em;
}
@media screen and (min-width: 768px) {
  body.page-template-sunday-fundraise .partner .section-header h2 {
    font-size: 3.5em;
  }
}
body.page-template-sunday-fundraise .partner .photo {
  max-width: 640px;
  margin: 0 auto;
}
body.page-template-sunday-fundraise .partner .details {
  text-align: center;
  padding-top: 25px;
  max-width: 640px;
  margin: 0 auto;
}
body.page-template-sunday-fundraise .partner .details p {
  font-size: 1.25em;
  line-height: 1.5em;
}
body.page-template-sunday-fundraise .partner .details p + p {
  padding-top: 20px;
}
body.page-template-sunday-fundraise .partner .partner-form {
  max-width: 480px;
  margin: 0 auto;
}
body.page-template-sunday-fundraise .partner .partner-form div.wpforms-container-full .wpforms-form label.wpforms-error {
  display: block;
  padding-top: 5px;
}
body.page-template-sunday-fundraise .partner .partner-form div.wpforms-container-full .wpforms-form button[type=submit] {
  display: block;
  font-family: "Tungsten", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 1.25em;
  line-height: 1em;
  font-weight: 600;
  padding: 10px;
  width: 100%;
  max-width: 160px;
  text-align: center;
  background: #ffca38;
  color: #1a1a1a;
}
body.page-template-sunday-fundraise .partner .note {
  max-width: 480px;
  margin: auto;
  padding: 50px 0 25px 0;
  text-align: center;
}
body.page-template-sunday-fundraise .partner .note p {
  font-style: italic;
}
body.page-template-sunday-fundraise .partner .note p a {
  color: #d13239;
  text-decoration: underline;
}

body.page-template-default .site-header {
  background: #2a5236;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 3rem;
}
@media screen and (min-width: 992px) {
  body.page-template-default .site-header {
    margin-bottom: 6rem;
  }
}
body.page-template-default section.generic {
  padding-bottom: 100px;
}
body.page-template-default section.generic .wrapper {
  max-width: 800px;
}
body.page-template-default section.generic section.page-header {
  padding-bottom: 25px;
}
body.page-template-default section.generic section.page-header h1 {
  font-size: 2em;
  text-transform: uppercase;
  font-weight: bold;
  color: #008445;
}
@media screen and (min-width: 768px) {
  body.page-template-default section.generic section.page-header h1 {
    font-size: 3em;
  }
}
body.page-template-default section.generic section.page-body h3 {
  font-family: "Tungsten", sans-serif;
  color: #008445;
  font-size: 1.75em;
  padding-bottom: 10px;
}
body.page-template-default section.generic section.page-body p {
  font-size: 1.125em;
  line-height: 1.125em;
  margin-bottom: 25px;
}
@media screen and (min-width: 768px) {
  body.page-template-default section.generic section.page-body p {
    font-size: 1.25em;
  }
}
body.page-template-default section.generic section.page-body a {
  color: #d13239;
  text-decoration: underline;
}