@charset "UTF-8";
.header-button, .wp-element-button,
.btn {
  font-family: var(--heading-font-family);
  font-size: var(--body-font-size-1);
  padding: 8px 12px;
  transition: var(--transition);
}

#venue-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-m-l);
}
@media only screen and (max-width: 1023px) {
  #venue-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (max-width: 639px) {
  #venue-grid {
    grid-template-columns: 1fr;
  }
}

#venue-grid .venue-item .image, #venue-list-sidebar .image {
  position: relative;
  width: 100%;
  padding-top: 100%;
  overflow: hidden;
}
#venue-grid .venue-item .image img, #venue-list-sidebar .image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.filter-tag, #clear-filters {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.filter-tag:hover .close-icon:before, #clear-filters:hover .close-icon:before {
  transform: rotate(135deg);
}
.filter-tag:hover .close-icon:after, #clear-filters:hover .close-icon:after {
  transform: rotate(45deg);
}

input[type=text],
input[type=email],
textarea {
  font-family: var(--body-font-family);
  font-size: var(--body-font-size-0) !important;
  font-weight: 500;
  line-height: 1;
  border: 1px solid var(--color-blue);
  color: var(--color-blue);
  border-radius: 0;
  padding: 8px 12px !important;
}
input[type=text]::placeholder,
input[type=email]::placeholder,
textarea::placeholder {
  font-family: var(--heading-font-family);
  font-size: var(--body-font-size-1);
  font-weight: 400;
  text-transform: uppercase;
  line-height: 1;
  font-size: var(--body-font-size-1) !important;
  color: var(--color-blue);
}
input[type=text]:focus::placeholder,
input[type=email]:focus::placeholder,
textarea:focus::placeholder {
  color: transparent;
}
input[type=text]:focus-visible,
input[type=email]:focus-visible,
textarea:focus-visible {
  outline: none;
  border: 1px solid var(--color-blue);
}

[data-name=add] {
  color: var(--color-white);
  background: var(--color-blue);
  border: 1px solid var(--color-blue);
  border-radius: 0;
  cursor: pointer;
  padding: 8px 12px;
}
[data-name=add]:hover {
  background: var(--color-white);
  border: 1px solid var(--color-blue);
  color: var(--color-blue);
}

[type=submit] {
  color: var(--color-blue);
  background: transparent;
  border: 1px solid var(--color-blue);
  border-radius: 0;
  cursor: pointer;
  padding: 8px 12px;
}
[type=submit]:hover {
  background: var(--color-white);
  border: 1px solid var(--color-blue);
  color: var(--color-blue);
}

[data-name=add],
[type=submit] {
  font-family: var(--heading-font-family);
  font-size: var(--body-font-size-1);
  font-weight: 400;
  text-transform: uppercase;
  line-height: 1;
  text-align: center;
}

h1,
h2,
h3,
h4,
h5 {
  margin: 0;
}

h1 {
  font-family: "Druk Wide", sans-serif;
  font-size: var(--heading-font-size-1);
  text-transform: uppercase;
  line-height: 1.1;
}
@media only screen and (max-width: 389px) {
  h1 {
    font-size: 25px;
  }
}

h4 {
  font-size: min(var(--heading-font-size-4), 32px);
  text-transform: uppercase;
  line-height: 1;
}

h5 {
  font-family: var(--heading-font-family);
  font-size: min(var(--body-font-size-2), 25px);
  font-weight: 400;
  text-transform: uppercase;
  line-height: 1;
}

h6 {
  font-family: var(--heading-font-family);
  font-size: min(var(--body-font-size-1), 20px);
  font-weight: 400;
  text-transform: uppercase;
  line-height: 1;
}

p {
  font-family: var(--body-font-family);
  font-size: min(var(--body-font-size-0), 18px);
  line-height: 1.5;
  margin: 0;
  padding: 0.45em 0;
}

h2.wp-block-heading {
  font-family: "Druk Wide", sans-serif;
  font-size: var(--heading-font-size-3);
  text-transform: uppercase;
  line-height: 1.1;
}

h3.wp-block-heading {
  font-family: "Druk Wide", sans-serif;
  font-size: var(--heading-font-size-3);
  text-transform: uppercase;
  line-height: 1.1;
}

h4.wp-block-heading {
  font-family: "Druk Wide", sans-serif;
  font-size: var(--heading-font-size-4);
  text-transform: uppercase;
  line-height: 1.1;
}

#clear-filters {
  font-family: var(--body-font-family);
  font-size: min(var(--body-font-size-0), 18px);
  line-height: 1.5;
}

.link,
.decade {
  font-family: var(--heading-font-family);
  line-height: 1;
}

.venue-title {
  font-family: "Druk Wide", sans-serif;
  font-size: var(--heading-font-size-2);
  text-transform: uppercase;
  line-height: 1.1;
}

.entry-title,
.page-title {
  font-family: "Druk Wide", sans-serif;
  font-size: var(--heading-font-size-2);
  text-transform: uppercase;
  line-height: 1.1;
  color: var(--color-blue);
}

blockquote {
  margin: 0;
}
blockquote p,
blockquote strong {
  font-family: "Druk Wide", sans-serif;
  font-size: var(--heading-font-size-3);
  text-transform: uppercase;
  line-height: 1.1;
  text-align: start;
  color: var(--color-black);
  max-width: 750px;
  margin: 0 auto;
}

#footer {
  position: relative;
  width: 100vw !important;
  left: 50% !important;
  right: 50% !important;
  margin-left: -50vw !important;
  margin-right: -50vw !important;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  overflow: hidden;
  background: var(--color-white);
  padding-top: var(--space-xl);
}
@media only screen and (max-width: 767px) {
  #footer {
    height: 100%;
  }
}
#footer .site-info a {
  position: relative;
  display: inline-block;
}
#footer .site-info a::after {
  content: "";
  position: absolute;
  bottom: 0;
  height: 1px;
  background-color: var(--color-blue);
  transition: width 0.3s ease, left 0.3s ease;
  left: 50%;
  width: 0;
}
#footer .site-info a:hover::after {
  left: 0;
  width: 100%;
}
#footer h1 {
  font-family: "Druk Wide", sans-serif;
  font-size: var(--body-font-size-2);
  text-transform: uppercase;
  line-height: 1.1;
  padding-bottom: var(--space-m);
  color: var(--color-blue);
}
#footer .logo {
  position: relative;
  display: flex;
  justify-content: center;
  overflow: visible;
  height: 100%;
  justify-items: end;
  align-items: center;
}
#footer .logo a {
  z-index: 1;
}
@media only screen and (max-width: 767px) {
  #footer .logo {
    position: relative;
  }
}
#footer .logo img {
  max-width: 300px;
  max-height: 300px;
}
@media only screen and (max-width: 767px) {
  #footer .logo img {
    max-width: 150px;
    max-height: 150px;
  }
}
#footer .logo::after {
  content: "";
  display: block;
  background-image: url(../images/curve.svg);
  width: 105vw;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  left: -20px;
  right: -20px;
  top: 0;
  pointer-events: none;
}
@media only screen and (max-width: 767px) {
  #footer .logo::after {
    background-size: contain;
  }
}

.footer-contact {
  display: flex;
  text-align: center;
  gap: 40px;
  padding: 0 0 40px 0;
  column-gap: var(--space-m);
  padding-left: var(--container-px);
  padding-right: var(--container-px);
}
.footer-contact > div {
  flex: 1;
  width: 100%;
}
@media only screen and (min-width: 768px) {
  .footer-contact {
    justify-content: center;
    align-items: start;
  }
}
@media only screen and (max-width: 767px) {
  .footer-contact {
    flex-direction: column;
    padding-top: 20px;
  }
  .footer-contact .footer-social {
    order: -1;
  }
  .footer-contact .partners {
    order: 0;
  }
  .footer-contact .mailing-list {
    order: 1;
  }
}

.site-info {
  display: flex;
  justify-content: center;
  gap: var(--space-s);
  padding: 24px 0;
  border-top: 1px solid var(--color-blue);
  color: var(--color-blue);
}
@media only screen and (max-width: 767px) {
  .site-info {
    flex-direction: column;
    text-align: center;
    gap: var(--space-xs);
  }
}
.site-info a:hover {
  opacity: 0.5;
}

.partner-logos {
  display: flex;
  column-gap: var(--space-m);
  justify-content: center;
}

.partner-logo img {
  width: 113px;
  height: 113px;
  object-fit: contain;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
}

.footer-social {
  flex: 1;
  display: flex;
  align-items: center;
  flex-direction: column;
  row-gap: 57px;
}
@media only screen and (max-width: 767px) {
  .footer-social {
    row-gap: 40px;
  }
}
.footer-social .social-icons a {
  background: var(--color-blue);
  padding: 4px;
  border-radius: 7px;
}
.footer-social .social-icons a:hover {
  opacity: 0.5;
}
.footer-social .social-icons a::after {
  content: "";
  display: block;
  width: 25px;
  height: 25px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.footer-social .instagram::after {
  background-image: url("../images/instagram.svg");
}
.footer-social .facebook::after {
  background-image: url("../images/facebook.svg");
}

.site-header {
  display: flex;
  justify-content: space-between;
  padding: 16px var(--container-px);
  position: fixed;
  left: 0;
  width: 100%;
  height: 80px;
  z-index: 1000;
  box-sizing: border-box;
}
@media only screen and (max-width: 1023px) {
  .site-header {
    flex-direction: row-reverse;
  }
}
@media only screen and (max-width: 1023px) {
  .site-header .logo {
    position: absolute;
    top: 55%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
}

body.admin-bar .site-header {
  top: 32px;
}
@media only screen and (max-width: 1023px) {
  body.admin-bar .site-header.fixed-top.scrolled {
    top: 0;
  }
}

body:not(.admin-bar) .site-header {
  top: 0;
}

.site-title {
  margin: 0;
  padding: 0;
}

header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.entry-header,
.page-header {
  margin: 160px 0 var(--space-xl) 0;
  justify-content: center;
  max-width: 1082px;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.entry-header:has(.page-title-prefix),
.page-header:has(.page-title-prefix) {
  display: flex;
  flex-direction: column;
}

.page-title-prefix {
  display: none;
  padding-bottom: var(--space-m-l);
  color: var(--color-blue);
}

.logo img {
  object-fit: contain;
  max-width: fit-content;
  width: auto;
  max-height: 60px;
}

.fixed-top {
  z-index: 999;
  background: transparent;
  transition: background 0.3s ease;
}
.fixed-top.scrolled {
  background: var(--color-pink);
}
.fixed-top.scrolled .header-button {
  color: var(--color-blue);
  background: transparent;
  border: 1px solid var(--color-blue);
  border-radius: 0;
  cursor: pointer;
  padding: 8px 12px;
}
.fixed-top.scrolled .header-button:hover {
  background: var(--color-blue);
  border: 1px solid var(--color-blue);
  color: var(--color-white);
}
.fixed-top.scrolled .menu a {
  color: var(--color-blue);
}

.hero-section {
  background-size: cover;
  background-position: center;
  text-align: center;
}
.hero-section img {
  max-width: 270px;
}
@media only screen and (min-width: 1024px) {
  .hero-section img {
    max-width: 290px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
  }
}
.hero-section .overlay {
  max-width: 800px;
  margin: 0 auto;
  color: var(--color-white);
  align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: end;
  padding-bottom: 40px;
  height: 100vh;
  gap: var(--space-l);
}
@media only screen and (max-width: 1023px) {
  .hero-section .overlay {
    padding: var(--container-px) var(--container-px) 40px;
    justify-content: center;
  }
}
.hero-section p {
  max-width: 500px;
  font-size: var(--body-font-size-2);
  line-height: 1.4;
}

.hero,
.venue-hero {
  display: flex;
  justify-content: center;
  text-align: center;
}
.hero h1,
.venue-hero h1 {
  padding: 40px 0;
}
.hero h4,
.hero h5,
.venue-hero h4,
.venue-hero h5 {
  font-family: var(--heading-font-family);
}
.hero img,
.venue-hero img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero .content,
.venue-hero .content {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  min-height: 100vh;
  min-height: 100svh;
  color: var(--color-yellow);
  z-index: 1;
}
@media only screen and (max-width: 1535px) {
  .hero .content,
  .venue-hero .content {
    max-width: 1200px;
  }
}

.hero-venue-tags {
  display: flex;
  justify-content: center;
  position: absolute;
  bottom: 50px;
  left: 50%;
  transform: translateX(-50%);
  gap: var(--space-s);
}
@media only screen and (max-width: 1023px) {
  .hero-venue-tags {
    display: none;
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%;
  }
}

.mobile-venue-tags {
  display: flex;
  justify-content: center;
  flex-direction: row;
  flex-wrap: wrap;
  gap: var(--space-s);
  width: 100%;
  padding-top: 32px;
}
@media only screen and (min-width: 1024px) {
  .mobile-venue-tags {
    display: none;
  }
}

.venue-tag {
  background: var(--color-yellow);
  color: var(--color-black);
  padding: 8px 20px 4px 20px;
  border-radius: 14px;
  white-space: nowrap;
  font-family: var(--heading-font-family);
  font-size: var(--body-font-size-0);
}

.home .site-header:not(.scrolled) .logo img,
.single-venues .site-header:not(.scrolled) .logo img,
.page-template-about .site-header:not(.scrolled) .logo img {
  filter: brightness(0) invert(1);
}
.home .site-header:not(.scrolled) .menu a,
.single-venues .site-header:not(.scrolled) .menu a,
.page-template-about .site-header:not(.scrolled) .menu a {
  position: relative;
  display: inline-block;
}
.home .site-header:not(.scrolled) .menu a::after,
.single-venues .site-header:not(.scrolled) .menu a::after,
.page-template-about .site-header:not(.scrolled) .menu a::after {
  content: "";
  position: absolute;
  bottom: 0;
  height: 1px;
  background-color: var(--color-white);
  transition: width 0.3s ease, left 0.3s ease;
  left: 50%;
  width: 0;
}
.home .site-header:not(.scrolled) .menu a:hover::after,
.single-venues .site-header:not(.scrolled) .menu a:hover::after,
.page-template-about .site-header:not(.scrolled) .menu a:hover::after {
  left: 0;
  width: 100%;
}
@media only screen and (min-width: 1024px) {
  .home .site-header:not(.scrolled) .menu a,
  .single-venues .site-header:not(.scrolled) .menu a,
  .page-template-about .site-header:not(.scrolled) .menu a {
    color: var(--color-white);
  }
}
.home .site-header:not(.scrolled) .menu .current-menu-item a::after,
.single-venues .site-header:not(.scrolled) .menu .current-menu-item a::after,
.page-template-about .site-header:not(.scrolled) .menu .current-menu-item a::after {
  background-color: var(--color-white);
}
.home .site-header:not(.scrolled) .menu-toggle:after,
.home .site-header:not(.scrolled) .menu-toggle::before,
.single-venues .site-header:not(.scrolled) .menu-toggle:after,
.single-venues .site-header:not(.scrolled) .menu-toggle::before,
.page-template-about .site-header:not(.scrolled) .menu-toggle:after,
.page-template-about .site-header:not(.scrolled) .menu-toggle::before {
  background-color: var(--color-white);
}
.home .header-button,
.single-venues .header-button,
.page-template-about .header-button {
  color: var(--color-white);
  background: transparent;
  border: 1px solid var(--color-white);
  border-radius: 0;
  cursor: pointer;
  padding: 8px 12px;
}
.home .header-button:hover,
.single-venues .header-button:hover,
.page-template-about .header-button:hover {
  background: var(--color-white);
  border: 1px solid var(--color-white);
  color: var(--color-blue);
}

.about-hero__title {
  max-width: 750px;
}

:root {
  --heading-font-size-1-min: 28px;
  --heading-font-size-1-max: 92px;
  --heading-font-size-1: calc(28px + (92 - 28) * (100vw - 320px) / (1440 - 320));
  --heading-font-size-2-min: 25px;
  --heading-font-size-2-max: 70px;
  --heading-font-size-2: calc(25px + (70 - 25) * (100vw - 320px) / (1440 - 320));
  --heading-font-size-3-min: 21px;
  --heading-font-size-3-max: 50px;
  --heading-font-size-3: calc(21px + (50 - 21) * (100vw - 320px) / (1440 - 320));
  --heading-font-size-4-min: 20px;
  --heading-font-size-4-max: 32px;
  --heading-font-size-4: calc(20px + (32 - 20) * (100vw - 320px) / (1440 - 320));
  --heading-font-size-5-min: 20px;
  --heading-font-size-5-max: 25px;
  --heading-font-size-5: calc(20px + (25 - 20) * (100vw - 320px) / (1440 - 320));
}

:root {
  --body-font-size--1-min: 13px;
  --body-font-size--1-max: 15px;
  --body-font-size--1: calc(13px + (15 - 13) * (100vw - 320px) / (1440 - 320));
  --body-font-size-0-min: 15px;
  --body-font-size-0-max: 18px;
  --body-font-size-0: calc(15px + (18 - 15) * (100vw - 320px) / (1440 - 320));
  --body-font-size-1-min: 16px;
  --body-font-size-1-max: 20px;
  --body-font-size-1: calc(16px + (20 - 16) * (100vw - 320px) / (1440 - 320));
  --body-font-size-2-min: 18px;
  --body-font-size-2-max: 25px;
  --body-font-size-2: calc(18px + (25 - 18) * (100vw - 320px) / (1440 - 320));
}

:root {
  --eyebrow-font-size-0-min: 15px;
  --eyebrow-font-size-0-max: 18px;
  --eyebrow-font-size-0: calc(15px + (18 - 15) * (100vw - 320px) / (1440 - 320));
  --eyebrow-font-size-1-min: 16px;
  --eyebrow-font-size-1-max: 20px;
  --eyebrow-font-size-1: calc(16px + (20 - 16) * (100vw - 320px) / (1440 - 320));
  --eyebrow-font-size-2-min: 18px;
  --eyebrow-font-size-2-max: 25px;
  --eyebrow-font-size-2: calc(18px + (25 - 18) * (100vw - 320px) / (1440 - 320));
}

:root {
  --space-5xs-min: 0px;
  --space-5xs-max: 2px;
  --space-5xs: calc(0px + (2 - 0) * (100vw - 320px) / (1440 - 320));
  --space-4xs-min: 2px;
  --space-4xs-max: 4px;
  --space-4xs: calc(2px + (4 - 2) * (100vw - 320px) / (1440 - 320));
  --space-3xs-min: 3px;
  --space-3xs-max: 6px;
  --space-3xs: calc(3px + (6 - 3) * (100vw - 320px) / (1440 - 320));
  --space-2xs-min: 4px;
  --space-2xs-max: 8px;
  --space-2xs: calc(4px + (8 - 4) * (100vw - 320px) / (1440 - 320));
  --space-xs-min: 8px;
  --space-xs-max: 16px;
  --space-xs: calc(8px + (16 - 8) * (100vw - 320px) / (1440 - 320));
  --space-xs-s-min: 10px;
  --space-xs-s-max: 20px;
  --space-xs-s: calc(10px + (20 - 10) * (100vw - 320px) / (1440 - 320));
  --space-s-min: 12px;
  --space-s-max: 24px;
  --space-s: calc(12px + (24 - 12) * (100vw - 320px) / (1440 - 320));
  --space-s-m-min: 15px;
  --space-s-m-max: 30px;
  --space-s-m: calc(15px + (30 - 15) * (100vw - 320px) / (1440 - 320));
  --space-m-min: 17px;
  --space-m-max: 32px;
  --space-m: calc(17px + (32 - 17) * (100vw - 320px) / (1440 - 320));
  --space-m-l-min: 20px;
  --space-m-l-max: 40px;
  --space-m-l: calc(20px + (40 - 20) * (100vw - 320px) / (1440 - 320));
  --space-l-min: 24px;
  --space-l-max: 48px;
  --space-l: calc(24px + (48 - 24) * (100vw - 320px) / (1440 - 320));
  --space-xl-min: 32px;
  --space-xl-max: 64px;
  --space-xl: calc(32px + (64 - 32) * (100vw - 320px) / (1440 - 320));
  --space-2xl-min: 40px;
  --space-2xl-max: 80px;
  --space-2xl: calc(40px + (80 - 40) * (100vw - 320px) / (1440 - 320));
  --space-3xl-min: 50px;
  --space-3xl-max: 100px;
  --space-3xl: calc(50px + (100 - 50) * (100vw - 320px) / (1440 - 320));
  --space-4xl-min: 70px;
  --space-4xl-max: 140px;
  --space-4xl: calc(70px + (140 - 70) * (100vw - 320px) / (1440 - 320));
}

:root {
  --color-white: #ffffff;
  --color-black: #000000;
  --color-blue: #001fff;
  --color-light-blue: #dceffb;
  --color-pink: #ebc8de;
  --color-yellow: #ffff00;
  --color-orange: #f6d5b5;
  --color-green: #aff9d8;
  --color-cream: #fcdfc5;
  --color-coral: #d57167;
}

:root {
  --container-px: var(--space-m);
  --container-width: 1440px;
  --heading-font-family: "Bebas Neue", sans-serif;
  --body-font-family: "Satoshi", sans-serif;
  --transition: 0.3s all cubic-bezier(0.42, 0, 0.58, 1);
  --wp--preset--font-size--small: var(--heading-font-size-5);
  --wp--preset--font-size--medium: var(--heading-font-size-4);
  --wp--preset--font-size--large: var(--heading-font-size-3);
  --wp--preset--font-size--x-large: var(--heading-font-size-2);
}

body {
  font-family: var(--body-font-family);
  font-size: var(--body-font-size-0);
  font-weight: 500;
  line-height: 1.5;
  color: var(--color-black);
  margin: 0;
  overscroll-behavior: none;
}

html {
  margin-top: 0 !important;
}

*,
::before,
::after {
  box-sizing: border-box;
}

ul {
  list-style-type: none;
  margin: 0px;
  padding: 0px;
}

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

.address {
  max-width: 300px;
  align-self: center;
}
@media only screen and (max-width: 1023px) {
  .address {
    max-width: 200px;
  }
}

.no-transform {
  text-transform: none !important;
}

.visually-hidden {
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  white-space: nowrap;
}

.page-content,
.entry-content {
  padding-top: calc(var(--space-l) - 3px);
  display: grid;
}
.page-content p,
.page-content .wp-block-heading,
.entry-content p,
.entry-content .wp-block-heading {
  max-width: 750px;
  margin: 0 auto;
}

.entry-content {
  gap: var(--space-xs-s);
}
.entry-content .wp-block-details:last-of-type {
  margin-bottom: var(--space-m);
}
.entry-content .wp-block-media-text {
  margin-top: var(--space-m);
  margin-bottom: var(--space-m);
}
.entry-content > h1.wp-block-heading:not(:has(div)),
.entry-content > h2.wp-block-heading:not(:has(div)),
.entry-content > h3.wp-block-heading:not(:has(div)),
.entry-content > h4.wp-block-heading:not(:has(div)),
.entry-content > h5.wp-block-heading:not(:has(div)),
.entry-content > h6.wp-block-heading:not(:has(div)) {
  padding-top: var(--space-xs-s);
  padding-bottom: var(--space-xs-s);
}

.page-content {
  gap: var(--space-m-l);
}

.featured-slider + .full-bleed-content-block,
.full-bleed-content-block + .featured-slider,
.full-bleed-content-block + .full-bleed-content-block {
  margin-top: calc(-1 * var(--space-m-l));
}

.container {
  max-width: var(--container-width, 1440px);
  margin: 0 auto;
  padding-left: var(--container-px);
  padding-right: var(--container-px);
}

.image img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

body.background-blue {
  background-color: var(--color-light-blue);
}
body.background-blue header {
  color: var(--color-pink);
}
body.background-blue .venue-hero .image::before, body.background-blue .venue-hero .image::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}
body.background-blue .venue-hero .image::before {
  background-color: #eeeeee;
  mix-blend-mode: multiply;
  opacity: 0.7;
}
body.background-blue .venue-hero .image::after {
  background-color: #001fff;
  mix-blend-mode: screen;
  opacity: 0.5;
}
body.background-blue .venue-hero .image img {
  display: block;
  filter: grayscale(100%) contrast(1) brightness(0.6);
  z-index: 0;
}
body.background-blue .splide__slide .image::before, body.background-blue .splide__slide .image::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}
body.background-blue .splide__slide .image::before {
  background-color: #eeeeee;
  mix-blend-mode: multiply;
  opacity: 0.7;
}
body.background-blue .splide__slide .image::after {
  background-color: #001fff;
  mix-blend-mode: screen;
  opacity: 0.5;
}
body.background-blue .splide__slide .image img {
  display: block;
  filter: grayscale(100%) contrast(1) brightness(0.6);
  z-index: 0;
}
body.background-blue .splide__slide .image {
  position: relative;
}

body.background-coral {
  background-color: var(--color-orange);
}
body.background-coral header {
  color: var(--color-pink);
}
body.background-coral .venue-hero .image::before, body.background-coral .venue-hero .image::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}
body.background-coral .venue-hero .image::before {
  background-color: #eeead0;
  mix-blend-mode: multiply;
  opacity: 0.7;
}
body.background-coral .venue-hero .image::after {
  background-color: #ca3d33;
  mix-blend-mode: screen;
  opacity: 0.5;
}
body.background-coral .venue-hero .image img {
  display: block;
  filter: grayscale(100%) contrast(1) brightness(0.6);
  z-index: 0;
}
body.background-coral .splide__slide .image::before, body.background-coral .splide__slide .image::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}
body.background-coral .splide__slide .image::before {
  background-color: #eeead0;
  mix-blend-mode: multiply;
  opacity: 0.7;
}
body.background-coral .splide__slide .image::after {
  background-color: #ca3d33;
  mix-blend-mode: screen;
  opacity: 0.5;
}
body.background-coral .splide__slide .image img {
  display: block;
  filter: grayscale(100%) contrast(1) brightness(0.6);
  z-index: 0;
}
body.background-coral .splide__slide .image {
  position: relative;
}

body.background-green {
  background-color: var(--color-green);
}
body.background-green header {
  color: var(--color-pink);
}
body.background-green .venue-hero .image::before, body.background-green .venue-hero .image::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}
body.background-green .venue-hero .image::before {
  background-color: #9bc0b1;
  mix-blend-mode: multiply;
  opacity: 0.7;
}
body.background-green .venue-hero .image::after {
  background-color: #49af82;
  mix-blend-mode: screen;
  opacity: 0.5;
}
body.background-green .venue-hero .image img {
  display: block;
  filter: grayscale(100%) contrast(1) brightness(0.6);
  z-index: 0;
}
body.background-green .splide__slide .image::before, body.background-green .splide__slide .image::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}
body.background-green .splide__slide .image::before {
  background-color: #9bc0b1;
  mix-blend-mode: multiply;
  opacity: 0.7;
}
body.background-green .splide__slide .image::after {
  background-color: #49af82;
  mix-blend-mode: screen;
  opacity: 0.5;
}
body.background-green .splide__slide .image img {
  display: block;
  filter: grayscale(100%) contrast(1) brightness(0.6);
  z-index: 0;
}
body.background-green .splide__slide .image {
  position: relative;
}

.main-navigation ul {
  list-style-type: none;
  padding: 0;
  display: flex;
  gap: 24px;
}

.menu a {
  position: relative;
  display: inline-block;
}
.menu a::after {
  content: "";
  position: absolute;
  bottom: 0;
  height: 1px;
  background-color: var(--color-blue);
  transition: width 0.3s ease, left 0.3s ease;
  left: 50%;
  width: 0;
}
.menu a:hover::after {
  left: 0;
  width: 100%;
}
.menu .current-menu-item a {
  position: relative;
  display: inline-block;
}
.menu .current-menu-item a::after {
  content: "";
  position: absolute;
  bottom: 0;
  height: 1px;
  background-color: var(--color-blue);
  transition: width 0.3s ease, left 0.3s ease;
  left: 0;
  width: 100%;
}
.menu .current-menu-item a:hover::after {
  left: 50%;
  width: 0;
}

li a {
  font-size: 18px;
  color: var(--color-blue);
}
@media only screen and (max-width: 1023px) {
  li a {
    font-size: 20px;
    color: var(--color-white);
  }
}

@media only screen and (max-width: 1023px) {
  #primary-menu.menu {
    flex-direction: column;
    justify-content: center;
    justify-items: center;
    align-items: center;
  }
}
a {
  transition: var(--transition);
  text-decoration: none;
  color: var(--color-blue);
}
a:focus, a:focus-visible {
  outline-offset: unset;
  outline: none;
}

#splash-screen {
  position: fixed;
  inset: 0;
  background-color: var(--color-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 1;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}
#splash-screen.fade-out {
  opacity: 0;
  visibility: hidden;
}

.splash-logo img {
  max-width: 290px;
  height: auto;
  animation: fadeIn 1s ease;
  filter: brightness(0) invert(1);
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
.header-button {
  color: var(--color-blue);
  background: transparent;
  border: 1px solid var(--color-blue);
  border-radius: 0;
  cursor: pointer;
  padding: 8px 12px;
}
.header-button:hover {
  background: var(--color-white);
  border: 1px solid var(--color-blue);
  color: var(--color-blue);
}

.wp-element-button,
.btn {
  color: var(--color-pink);
  background: transparent;
  border: 1px solid var(--color-blue);
  border-radius: 0;
  cursor: pointer;
  padding: 8px 12px;
}
.wp-element-button:hover,
.btn:hover {
  background: var(--color-white);
  border: 1px solid var(--color-blue);
  color: var(--color-pink);
}
.wp-element-button,
.btn {
  display: inline-block;
  width: fit-content;
  margin: 0 auto;
}

.hero-button {
  color: var(--color-white);
  background: transparent;
  border: 1px solid var(--color-white);
  border-radius: 0;
  cursor: pointer;
  padding: 8px 12px;
}
.hero-button:hover {
  background: var(--color-white);
  border: 1px solid var(--color-blue);
  color: var(--color-blue);
}

.entry-content .wp-block-buttons {
  max-width: 750px;
  margin: var(--space-m-l) auto 0;
}

.wp-block-buttons {
  margin-top: var(--space-m-l);
}

.wp-block-button .wp-element-button {
  color: var(--color-black);
  background: transparent;
  border: 1px solid var(--color-black);
  border-radius: 0;
  cursor: pointer;
  padding: 8px 12px;
}
.wp-block-button .wp-element-button:hover {
  background: var(--color-white);
  border: 1px solid var(--color-blue);
  color: var(--color-blue);
}

.dropdown {
  background: var(--color-pink);
  color: var(--color-blue);
  padding: 8px 20px;
  border: none;
  border-radius: 14px;
  cursor: pointer;
  transition: var(--transition);
}
.dropdown:hover {
  background: var(--color-white);
}
.dropdown {
  position: relative;
}
.dropdown .selected {
  display: flex;
  position: relative;
}
.dropdown .selected .icon::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 10px;
  height: 10px;
  border-left: 2px solid var(--color-blue);
  border-bottom: 2px solid var(--color-blue);
  border-radius: 1px;
  transform: translateY(-70%) rotate(-45deg);
  transition: transform 0.3s;
}
.dropdown .selected .icon {
  min-width: 50px;
}
.dropdown.active .selected .icon::after {
  transform: translateY(-50%) rotate(135deg);
}
.dropdown.active {
  background: var(--color-white);
  border-radius: 14px;
}
.dropdown.active .options {
  max-height: none;
  height: auto;
  padding-block: 16px;
  opacity: 1;
  gap: 8px;
}

.options {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  display: flex;
  flex-direction: column;
  transition: max-height 0.3s cubic-bezier(0.42, 0, 0.58, 1), opacity 0.3s;
}
.options .option {
  position: relative;
  cursor: pointer;
  opacity: 0.5;
  transition: var(--transition);
  gap: 10px;
  font-size: var(--body-font-size--1);
}
.options .option:hover, .options .option.active {
  opacity: 1;
}
.options .option:hover .tick-icon::before, .options .option.active .tick-icon::before {
  opacity: 1;
}

.option {
  display: flex;
  align-items: center;
  flex-direction: row-reverse;
  justify-content: start;
  line-height: 1.2;
}

.tick-icon::before {
  content: "";
  position: absolute;
  top: 2px;
  left: 3px;
  width: 9px;
  height: 6px;
  border-left: 2px solid var(--color-blue);
  border-bottom: 2px solid var(--color-blue);
  border-radius: 1px;
  transform: translateY(30%) rotate(-45deg);
}
.tick-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 17px;
  height: 17px;
  border: 1px solid var(--color-blue);
  border-radius: 4px;
  position: relative;
  padding: 7px;
}
.tick-icon::before {
  opacity: 0;
}

.filter-toggles {
  display: inline-flex;
  gap: var(--space-s);
  flex: 0 0 auto;
}
@media only screen and (max-width: 1023px) {
  .filter-toggles {
    justify-content: space-between;
  }
}

#clear-filters {
  background: var(--color-blue);
  color: var(--color-white);
  padding: 8px 20px;
  border: none;
  border-radius: 14px;
  cursor: pointer;
  transition: var(--transition);
}
#clear-filters:hover {
  background: var(--color-blue);
}
#clear-filters {
  white-space: nowrap;
  text-align: start;
  position: relative;
}
#clear-filters .close-icon {
  display: block;
  width: 15px;
  height: auto;
  transform: translate(50%, -50%);
}
#clear-filters .close-icon:before, #clear-filters .close-icon:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--color-white);
  border-radius: 1px;
  transform-origin: center;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
#clear-filters .close-icon:before {
  transform: rotate(45deg);
}
#clear-filters .close-icon:after {
  transform: rotate(-45deg);
}

.venue-filters {
  display: inline-flex;
  white-space: nowrap;
  gap: var(--space-s);
  width: 100%;
  margin: 0 0 var(--space-l) 0;
}
@media only screen and (max-width: 1023px) {
  .venue-filters {
    flex-direction: column;
  }
}
.venue-filters .dropdown {
  position: relative;
  white-space: nowrap;
  flex: 1 0 auto;
}
.venue-filters .dropdown.active {
  background: var(--color-white);
  border-radius: 14px 14px 0 0;
}
.venue-filters .dropdown.active .selected::after {
  transform: translateY(-70%) rotate(-45deg);
}
.venue-filters .dropdown.active .options {
  max-height: none;
  height: auto;
  opacity: 1;
  padding: 16px 20px;
}
.venue-filters .options {
  position: absolute;
  top: calc(100% - 1px);
  left: 0;
  width: 100%;
  background: var(--color-white);
  border-radius: 0 0 23px 23px;
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  display: flex;
  flex-direction: column;
  transition: max-height 0.3s cubic-bezier(0.42, 0, 0.58, 1), opacity 0.3s;
  z-index: 10;
}
.venue-filters .options .option {
  white-space: break-spaces;
}
.venue-filters .options .option::before {
  margin-top: 4px;
}
.venue-filters .options .option:hover, .venue-filters .options .option.active {
  opacity: 1;
}

.venue-dropdowns {
  display: inline-flex;
  flex-wrap: nowrap;
  width: 100%;
  gap: var(--space-s);
}
@media only screen and (max-width: 1023px) {
  .venue-dropdowns {
    flex-wrap: wrap;
    flex-direction: column;
  }
}

.record-level-icon {
  width: 22px;
  height: 22px;
  display: block;
  background-size: contain;
  background-repeat: no-repeat;
}

.venue-tags {
  justify-content: start;
  gap: 10px;
}
@media only screen and (max-width: 1023px) {
  .venue-tags {
    flex-direction: column;
  }
}

.filter-tag {
  background: var(--color-pink);
  color: var(--color-blue);
  padding: 10px 24px;
  border: none;
  border-radius: 14px;
  cursor: pointer;
  transition: var(--transition);
  width: auto;
  position: relative;
}
.filter-tag .close-icon {
  display: block;
  width: 15px;
  height: auto;
  transform: translate(50%, -50%);
}
.filter-tag .close-icon:before, .filter-tag .close-icon:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--color-blue);
  border-radius: 1px;
  transform-origin: center;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.filter-tag .close-icon:before {
  transform: rotate(45deg);
}
.filter-tag .close-icon:after {
  transform: rotate(-45deg);
}

.view-toggle {
  background: var(--color-blue);
  color: var(--color-white);
  padding: 8px 20px;
  border: none;
  border-radius: 14px;
  cursor: pointer;
  transition: var(--transition);
}
.view-toggle:hover {
  background: var(--color-blue);
}

.view-toggle {
  display: flex;
  gap: 10px;
  align-items: center;
}
.view-toggle .toggle-tag {
  cursor: pointer;
  transition: var(--transition);
  opacity: 0.5;
}
.view-toggle .toggle-tag img {
  width: 20px;
  height: 20px;
  display: block;
}
.view-toggle .toggle-tag:hover, .view-toggle .toggle-tag.active {
  opacity: 1;
}
.view-toggle .toggle-tag:hover img, .view-toggle .toggle-tag.active img {
  filter: brightness(0) invert(1);
}

form.enquiry-form {
  max-width: 750px;
  margin: 0 auto;
  display: grid;
  gap: 12px;
  padding: var(--space-xl) 0;
}
form.enquiry-form input[type=checkbox],
form.enquiry-form input[type=checkbox i] {
  width: 17px;
  height: 17px;
  border-radius: 0px !important;
  border-color: var(--color-blue) !important;
}
form.enquiry-form button[type=submit] {
  background: transparent;
  color: var(--color-blue);
  transition: var(--transition);
  cursor: pointer;
  border: 1px solid var(--color-blue);
  border-radius: 0;
  font-family: var(--heading-font-family);
  font-size: var(--body-font-size-1) !important;
  font-weight: 400;
  text-transform: uppercase;
  line-height: 1;
  padding: 8px 12px;
  width: fit-content;
  margin: 0 auto;
}
form.enquiry-form button[type=submit]:hover {
  background: var(--color-blue);
  color: var(--color-white);
}
form.enquiry-form label.privacy-check {
  color: var(--color-blue);
}
form.enquiry-form label.privacy-check a {
  position: relative;
  display: inline-block;
}
form.enquiry-form label.privacy-check a::after {
  content: "";
  position: absolute;
  bottom: 0;
  height: 1px;
  background-color: var(--color-blue);
  transition: width 0.3s ease, left 0.3s ease;
  left: 0;
  width: 100%;
}
form.enquiry-form label.privacy-check a:hover::after {
  left: 50%;
  width: 0;
}
form.enquiry-form h3 {
  font-family: "Druk Wide", sans-serif;
  font-size: var(--heading-font-size-3);
  text-transform: uppercase;
  line-height: 1.1;
  padding-bottom: var(--space-m);
  color: var(--color-blue);
  text-align: center;
}

#mc_embed_signup {
  max-width: 350px;
}

#mc_embed_shell {
  margin: 0 auto;
  position: relative;
  max-width: 350px;
}

#mc_embed_signup form {
  margin: 0 !important;
}

#mc_embed_signup input {
  border: 1px solid var(--color-blue) !important;
  -webkit-border-radius: 0 !important;
  -moz-border-radius: 0 !important;
  border-radius: 0 !important;
}

#mc_embed_signup .mc-field-group input {
  text-indent: 0 !important;
}

#mc_embed_signup .mc-field-group {
  width: 100% !important;
}

#mc_embed_signup .mc-field-group input:focus-visible {
  outline: none !important;
}

#mc_embed_signup .button {
  font-family: var(--heading-font-family);
  font-size: var(--body-font-size-1) !important;
  font-weight: 400;
  text-transform: uppercase;
  line-height: 1;
  padding: 0 12px !important;
  background-color: var(--color-blue) !important;
  height: 38px !important;
  line-height: 0 !important;
  margin: 0 !important;
}

#mc_embed_signup .button:hover {
  background-color: white !important;
  border: 1px solid var(--color-blue) !important;
  color: var(--color-blue) !important;
}

#mc_embed_signup .foot {
  display: flex !important;
  justify-content: center;
  width: 100% !important;
}

.form-success-message p {
  text-align: center;
  color: var(--color-blue);
}

.full-bleed-content-block h5 {
  font-size: var(--body-font-size-1);
  text-transform: uppercase;
}

.full-bleed-content-block h2 {
  font-family: "Druk Wide", sans-serif;
  font-size: var(--heading-font-size-2);
  text-transform: uppercase;
  line-height: 1.1;
  margin: 0;
}

.full-bleed-content-block p {
  font-size: var(--body-font-size-2);
}

.mapboxgl-popup-content {
  padding: 0 !important;
  width: 100%;
  max-width: 100%;
  border-radius: 15px;
  overflow: hidden;
  position: relative;
}
.mapboxgl-popup-content p,
.mapboxgl-popup-content a {
  font-size: var(--body-font-size-0);
}
.mapboxgl-popup-content .image::before, .mapboxgl-popup-content .image::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}
.mapboxgl-popup-content .image::before {
  background-color: #eeeeee;
  mix-blend-mode: multiply;
  opacity: 0.7;
}
.mapboxgl-popup-content .image::after {
  background-color: #001fff;
  mix-blend-mode: screen;
  opacity: 0.5;
}
.mapboxgl-popup-content .image img {
  display: block;
  filter: grayscale(100%) contrast(1) brightness(0.6);
  z-index: 0;
}
.mapboxgl-popup-content .image {
  aspect-ratio: 1/1;
  width: 100%;
  overflow: hidden;
  border-radius: 8px;
}
.mapboxgl-popup-content .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.mapboxgl-popup-content h5 {
  font-family: "Druk Wide", sans-serif;
  text-transform: uppercase;
}
.mapboxgl-popup-content .content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  color: var(--color-white);
  box-sizing: border-box;
  top: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  padding: 1rem;
  text-align: center;
  z-index: 1;
}
.mapboxgl-popup-content .content * {
  color: var(--color-yellow);
  line-height: 1;
  margin: 0;
}

.mapboxgl-popup-anchor-top .mapboxgl-popup-tip,
.mapboxgl-popup-anchor-bottom .mapboxgl-popup-tip {
  border-bottom-color: var(--color-blue) !important;
  border-top-color: var(--color-blue) !important;
}

.mapboxgl-popup-anchor-left .mapboxgl-popup-tip,
.mapboxgl-popup-anchor-right .mapboxgl-popup-tip {
  border-right-color: var(--color-blue) !important;
  border-left-color: var(--color-blue) !important;
}

.mapboxgl-popup-close-button {
  display: none !important;
}

.mapboxgl-marker {
  z-index: 0 !important;
  width: 18px;
  height: 18px;
}

#sidebar {
  width: 333px;
  overflow-y: auto;
  padding: 130px var(--space-m) var(--space-m);
  background: var(--color-green);
  box-shadow: 9px 8px 9px 0px rgba(0, 0, 0, 0.1490196078);
  z-index: 99;
  display: flex;
  flex-direction: column;
  gap: var(--space-xs-s);
}
#sidebar .dropdown .selected::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 10px;
  height: 10px;
  border-left: 2px solid var(--color-blue);
  border-bottom: 2px solid var(--color-blue);
  border-radius: 1px;
  transform: translateY(-70%) rotate(-45deg);
  transition: transform 0.3s;
}
#sidebar .dropdown.active .selected::after {
  transform: translateY(-50%) rotate(135deg);
}
#sidebar #clear-filters {
  display: none;
}
#sidebar #clear-filters .close-icon {
  height: 4px;
}
#sidebar input {
  border: none;
  padding: 8px 20px;
  width: 100%;
  border-radius: 14px;
}
#sidebar input#search {
  width: 100%;
  background-color: var(--color-blue);
  background-image: url('data:image/svg+xml;utf8,<svg fill="%23fff" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M10 2a8 8 0 105.293 14.293l4.853 4.854 1.414-1.414-4.854-4.853A8 8 0 0010 2zm0 2a6 6 0 110 12A6 6 0 0110 4z"/></svg>');
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 20px 20px;
  outline: none;
  font-family: var(--body-font-family);
  font-weight: 500 !important;
  line-height: 1.5;
  color: var(--color-white);
  text-transform: none !important;
  padding: 8px 20px !important;
}
#sidebar input#search::placeholder {
  color: var(--color-white);
  font-family: var(--body-font-family);
  font-size: var(--body-font-size-0) !important;
  text-transform: none !important;
  font-weight: 500 !important;
  line-height: 1;
}

@media only screen and (max-width: 1023px) {
  #sidebar {
    position: fixed;
    top: 0;
    left: 0;
    width: 90vw;
    max-width: 400px;
    height: 100%;
    transform: translateX(-100%);
    transition: transform 0.4s ease;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    padding: 120px 20px 20px;
  }
  #sidebar.open {
    transform: translateX(0);
  }
}
#sidebar-toggle {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 100;
  background: var(--color-blue);
  border-radius: 14px;
  cursor: pointer;
  font-size: 18px;
  width: 45px;
  height: 45px;
  border: none;
  display: flex;
  justify-content: center;
  align-items: center;
}
#sidebar-toggle .icon::before {
  content: "";
  display: block;
  width: 25px;
  height: 25px;
  background-size: 25px;
  background-image: url("../images/filter-icon.svg");
  background-repeat: no-repeat;
  position: relative;
}
#sidebar-toggle.open .icon {
  position: relative;
  display: inline;
}
#sidebar-toggle.open .icon::before, #sidebar-toggle.open .icon::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 24px;
  height: 3px;
  background-color: var(--color-white);
  transform-origin: center;
}
#sidebar-toggle.open .icon::before {
  transform: translate(-50%, -50%) rotate(45deg);
}
#sidebar-toggle.open .icon::after {
  transform: translate(-50%, -50%) rotate(135deg);
}
@media only screen and (min-width: 1024px) {
  #sidebar-toggle {
    display: none;
  }
}

#venue-list-sidebar {
  display: none;
  gap: 20px;
}
#venue-list-sidebar .venue-item {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  cursor: pointer;
}
#venue-list-sidebar .image img {
  filter: grayscale(1) brightness(0.4);
}
#venue-list-sidebar h5 {
  font-family: "Druk Wide", sans-serif;
  font-size: var(--body-font-size-1);
  text-transform: uppercase;
}
@media only screen and (max-width: 1023px) {
  #venue-list-sidebar h5 {
    font-size: var(--body-font-size-2);
  }
}
#venue-list-sidebar a {
  color: var(--color-white);
}
#venue-list-sidebar .content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  color: var(--color-white);
  box-sizing: border-box;
  top: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  align-items: center;
  max-width: 300px;
  margin: 0 auto;
  text-align: center;
  padding: 20px;
}

body.menu-open {
  overflow: hidden;
  position: fixed;
  width: 100%;
}

@media only screen and (max-width: 1023px) {
  .main-navigation .menu {
    display: none;
  }
  .main-navigation.toggled .menu {
    display: block;
  }
}

@media only screen and (min-width: 1024px) {
  .menu-toggle {
    display: none;
  }
}
@media only screen and (max-width: 1023px) {
  .menu-toggle {
    position: absolute;
    width: 2rem;
    text-indent: -9999px;
    z-index: 9999;
    background: transparent;
    border: none;
    transform: translate(-50%, -50%);
    right: 0;
  }
  .menu-toggle:after, .menu-toggle::before {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--color-blue);
    transition: transform 0.3s ease, opacity 0.3s ease;
  }
  .menu-toggle::before {
    transform: rotate(0deg);
  }
  .menu-toggle::after {
    transform: rotate(0);
    top: -3px;
  }
}
.main-navigation.toggled .menu-toggle::before {
  background-color: var(--color-white);
  transform: rotate(45deg);
}
.main-navigation.toggled .menu-toggle::after {
  background-color: var(--color-white);
  transform: rotate(-45deg);
  top: 50%;
}
.main-navigation.toggled .menu-menu-1-container {
  position: fixed;
  left: 0;
  right: 0;
  background: var(--color-blue);
  height: 100vh;
  top: 0;
  z-index: 999;
}
.main-navigation.toggled .menu-menu-1-container ul {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.main-navigation.toggled .menu li {
  opacity: 0;
  animation: fadeUp 0.6s ease-out forwards;
  text-align: center;
  padding-bottom: 12px;
}
.main-navigation.toggled .menu li:nth-child(2) {
  animation-delay: 0.2s;
}
.main-navigation.toggled .menu li:nth-child(3) {
  animation-delay: 0.4s;
}
.main-navigation.toggled .menu li:nth-child(4) {
  animation-delay: 0.6s;
}
.main-navigation.toggled .menu li:nth-child(5) {
  animation-delay: 0.8s;
}

.featured-slider .splide {
  position: relative;
  width: 100vw !important;
  left: 50% !important;
  right: 50% !important;
  margin-left: -50vw !important;
  margin-right: -50vw !important;
  position: relative;
  padding: 64px 0;
  overflow: hidden;
}
.featured-slider .splide h5 {
  text-align: center;
  margin-bottom: 32px;
}

.featured-slider .splide__list {
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: nowrap;
  backface-visibility: hidden;
}

.featured-slider .splide__slide:not(.is-active) {
  pointer-events: none;
}
.featured-slider .splide__slide:not(.is-active) .content {
  margin: 40px;
  position: relative;
}
@media only screen and (max-width: 1023px) {
  .featured-slider .splide__slide:not(.is-active) .content {
    margin: 20px;
  }
}
.featured-slider .splide__slide:not(.is-active) .overlay {
  display: none;
}

.featured-slider .splide__slide.is-active {
  pointer-events: auto;
}
.featured-slider .splide__slide.is-active .overlay {
  display: grid;
}
.featured-slider .splide__slide.is-active .image::before, .featured-slider .splide__slide.is-active .image::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}
.featured-slider .splide__slide.is-active .image::before {
  background-color: #eeeeee;
  mix-blend-mode: multiply;
  opacity: 0.7;
}
.featured-slider .splide__slide.is-active .image::after {
  background-color: #001fff;
  mix-blend-mode: screen;
  opacity: 0.5;
}
.featured-slider .splide__slide.is-active .image img {
  display: block;
  filter: grayscale(100%) contrast(1) brightness(0.6);
  z-index: 0;
}
.featured-slider .splide__slide.is-active .image::before, .featured-slider .splide__slide.is-active .image::after {
  transition: var(--transition);
  opacity: 0;
}
.featured-slider .splide__slide.is-active:hover a .image::before {
  opacity: 0.7;
}
.featured-slider .splide__slide.is-active:hover a .image::after {
  opacity: 0.5;
}
.featured-slider .splide__slide.is-active:hover a .overlay {
  color: var(--color-yellow);
}

.featured-slider .splide__slide {
  flex: 0 0 auto;
  aspect-ratio: 1/1;
  transition: opacity 0.6s cubic-bezier(0.49, 0.11, 0.24, 1);
  transform-origin: center center;
  will-change: transform;
  overflow: hidden;
  border-radius: 15px;
  width: 38% !important;
  margin: 0;
}
@media only screen and (max-width: 1023px) {
  .featured-slider .splide__slide {
    width: 80% !important;
  }
}
.featured-slider .splide__slide.is-active .image {
  position: relative;
}
.featured-slider .splide__slide .image img {
  transform: none;
  border-radius: 15px;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  aspect-ratio: 1/1;
  filter: grayscale(1);
}
.featured-slider .splide__slide .overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  color: var(--color-white);
}
.featured-slider .splide__slide .overlay h3 {
  font-family: "Druk Wide", sans-serif;
  font-size: var(--heading-font-size-3);
  text-transform: uppercase;
  line-height: 1.1;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  max-width: 300px;
  margin: 0 auto;
}
.featured-slider .splide__slide .overlay h5 {
  position: absolute;
  top: 40px;
  width: 100%;
  z-index: 2;
}
@media only screen and (max-width: 1023px) {
  .featured-slider .splide__slide .overlay h5 {
    top: 25px;
  }
}

.featured-slider .splide__arrows {
  position: absolute;
  left: 50%;
  bottom: 40px;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
  justify-content: center;
  align-items: center;
}

.splide__arrow {
  width: 49px;
  height: 49px;
  padding: 0;
  border: 0;
  background: var(--color-white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 50;
  border-radius: 50%;
  transition: var(--transition);
  cursor: pointer;
}
.splide__arrow svg {
  display: none !important;
}
.splide__arrow:hover {
  background: var(--color-blue);
}
.splide__arrow:hover.splide__arrow--next::before, .splide__arrow:hover.splide__arrow--prev::before {
  filter: brightness(0) invert(1);
}

.splide__arrow--prev::before,
.splide__arrow--next::before {
  content: "";
  display: block;
  width: 23px;
  height: 23px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.splide__arrow--prev::before {
  background-image: url("../images/slide-prev.svg");
  margin-right: 3px;
}

.splide__arrow--next::before {
  background-image: url("../images/slide-next.svg");
  margin-left: 3px;
}

.splide__sr {
  position: absolute !important;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  border: 0;
  white-space: nowrap;
  display: none !important;
}

.fancybox-slider .image::before {
  display: none;
}

.fancybox__container {
  z-index: 9999 !important;
}

.venue-submission-form {
  background: var(--color-white);
  padding-top: var(--space-xl);
  padding-bottom: var(--space-xl);
}

.venue-form {
  max-width: 750px;
  margin: 0 auto;
  padding-top: var(--space-xl);
}
.venue-form h3 {
  font-family: "Druk Wide", sans-serif;
  font-size: min(var(--heading-font-size-3), 50px);
  text-transform: uppercase;
  line-height: 1.1;
  color: var(--color-blue);
  text-align: center;
}
.venue-form #message.updated {
  color: var(--color-blue);
}
.venue-form #message.updated p {
  text-align: center;
  margin-top: 20px;
}

.file-icon {
  max-width: 50px;
}

.acf-field.acf-field-text .acf-label label, .acf-field.acf-field-textarea .acf-label label, .acf-field.acf-field-file .acf-label label {
  display: none;
}

.acf-file-uploader p {
  display: flex;
  flex-direction: column;
  gap: 16px;
  color: var(--color-blue);
}

.acf-field .acf-label label {
  color: var(--color-blue);
  font-size: var(--body-font-size--1);
}

.acf-field .acf-label {
  margin: 0;
}

.acf-field.acf-field-true-false {
  display: flex;
  flex-direction: row-reverse;
  justify-content: start;
  gap: 16px;
}

.select2-container.-acf {
  z-index: 100 !important;
}

input[type=file] {
  padding: 0;
  width: 100%;
}

input[type=file]::file-selector-button,
input[type=file]::-webkit-file-upload-button {
  font-family: var(--heading-font-family);
  font-size: var(--body-font-size-1) !important;
  font-weight: 400;
  text-transform: uppercase;
  line-height: 1;
  background-color: var(--color-blue);
  color: var(--color-white);
  border: 1px solid var(--blue);
  padding: 8px 12px;
  border-radius: 0;
  cursor: pointer;
  width: 100%;
}

input[type=file]::file-selector-button:hover,
input[type=file]::-webkit-file-upload-button:hover {
  background-color: lightgray;
  border: 1px solid var(--blue);
  color: var(--color-blue);
  cursor: pointer;
}

label[for=acf-field_69170418632c1] {
  display: none !important;
}

.acf-form .acf-form-submit {
  margin-top: var(--space-m);
  text-align: center;
}
.acf-form .acf-field.acf-field-number {
  display: none;
}

#acf-field_68fa5c2524419 {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  width: 8px;
  height: 8px;
  border: 1px solid var(--color-blue);
  border-radius: 0;
  cursor: pointer;
  position: relative;
  padding: 8px;
  margin-top: 5px;
}

#acf-field_68fa5c2524419:checked {
  background-color: var(--color-blue);
  border-color: var(--color-blue);
}

#acf-field_68fa5c2524419:checked::after {
  content: "";
  position: absolute;
  top: 2px;
  left: 3px;
  width: 10px;
  height: 6px;
  border-left: 2px solid var(--color-white);
  border-bottom: 2px solid var(--color-white);
  transform: translateY(30%) rotate(-45deg);
}

.select2-container--default .select2-selection--single .select2-selection__placeholder,
.select2-container.-acf .select2-selection {
  border-color: var(--color-blue) !important;
}

.select2-container.-acf .select2-selection:hover {
  background: var(--color-blue);
  transition: var(--transition);
}
.select2-container.-acf .select2-selection:hover .acf-selection {
  color: #fff !important;
}

.select2-container.-acf .select2- selection {
  padding: 8px 12px;
}

.select2-container--default .select2-selection--single .select2-selection__rendered,
.select2-container--default .select2-selection--single .select2-selection__placeholder {
  color: var(--color-blue) !important;
  font-family: var(--heading-font-family);
  font-size: var(--body-font-size-1) !important;
  font-weight: 400;
  text-transform: uppercase;
  line-height: 1;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
  text-align: center !important;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
  padding-top: 3px;
}

.select2-container--default .select2-selection--single {
  background-color: #fff;
  border: 1px solid var(--color-blue) !important;
  border-radius: 0 !important;
}

.select2-dropdown {
  border: 1px solid var(--color-blue) !important;
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
  background-color: var(--color-blue) !important;
}

.select2-dropdown .select2-results__option {
  color: var(--color-blue) !important;
}

.select2-container--default .select2-search--dropdown .select2-search__field {
  border: 1px solid var(--color-blue) !important;
  border-radius: 0 !important;
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
  color: white !important;
}

.select2-container .select2-selection--single {
  height: 37px !important;
}

.select2-selection__arrow {
  display: none !important;
}

.venue-submissions {
  background: var(--color-white);
  padding-top: var(--space-xl);
  padding-bottom: var(--space-xl);
}

.media-submissions-list {
  max-width: 750px;
  margin: 0 auto var(--space-xl) auto;
  padding-bottom: var(--space-xl);
}
.media-submissions-list .entry {
  color: var(--color-blue);
  font-size: var(--body-font-size-1);
}
.media-submissions-list .name {
  padding-top: 25px;
}
.media-submissions-list .name::before {
  content: "— ";
}

.venue-submission-content h5 {
  text-align: center;
  color: var(--color-blue);
  padding-bottom: var(--space-m);
}

#media-submissions-slider.splide {
  position: relative;
}
#media-submissions-slider .splide__list {
  display: grid;
  grid-template-columns: 1fr;
}
#media-submissions-slider .splide__slide {
  grid-row: 1 !important;
  grid-column: 1;
  transform: none !important;
  opacity: 0;
  pointer-events: none;
}
#media-submissions-slider .splide__slide.is-active {
  opacity: 1;
  pointer-events: auto;
}
#media-submissions-slider .splide__arrows {
  position: absolute;
  left: 50%;
  bottom: -15px;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
  justify-content: center;
  align-items: center;
}
#media-submissions-slider .splide__arrow {
  background: var(--color-blue);
  border: 1px solid var(--color-blue);
}
#media-submissions-slider .splide__arrow:hover {
  background: var(--color-white);
}
#media-submissions-slider .splide__arrow:hover.splide__arrow--prev::before, #media-submissions-slider .splide__arrow:hover.splide__arrow--next::before {
  filter: none;
}
#media-submissions-slider .splide__arrow--prev::before,
#media-submissions-slider .splide__arrow--next::before {
  filter: brightness(0) invert(1);
}

.wp-block-image.full-width-image {
  position: relative;
  width: 100vw !important;
  left: 50% !important;
  right: 50% !important;
  margin-left: -50vw !important;
  margin-right: -50vw !important;
}
.wp-block-image.full-width-image img {
  object-fit: cover;
  width: 100%;
}

.wp-block-cover {
  position: relative;
  width: 100vw !important;
  left: 50% !important;
  right: 50% !important;
  margin-left: -50vw !important;
  margin-right: -50vw !important;
  margin-top: var(--space-m);
  margin-bottom: var(--space-m);
}
.wp-block-cover p {
  line-height: 1.4;
}

.wp-block-media-text__media img {
  border-radius: 15px;
}

.wp-block-media-text .wp-block-heading {
  padding-bottom: var(--space-xs-s);
}

@media only screen and (max-width: 1023px) {
  .wp-block-media-text > .wp-block-media-text__content {
    padding: 0;
    margin-top: var(--space-l);
  }
}

.wp-block-details {
  position: relative;
  background: var(--color-white);
  border-radius: 14px;
  padding: var(--space-s) var(--space-s-m);
}
.wp-block-details:not(:last-of-type) {
  margin-bottom: var(--space-xs-s);
}
.wp-block-details summary::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 10px;
  height: 10px;
  border-left: 2px solid var(--color-blue);
  border-bottom: 2px solid var(--color-blue);
  border-radius: 1px;
  transform: translateY(-70%) rotate(-45deg);
  transition: transform 0.3s;
}
.wp-block-details summary::marker {
  display: none;
}
.wp-block-details summary {
  position: relative;
  font-family: "Druk Wide", sans-serif;
  font-size: var(--heading-font-size-4);
  text-transform: uppercase;
  line-height: 1.1;
  text-align: start;
  color: var(--color-blue);
}

details[open] > summary {
  margin-bottom: 48px;
}
details[open] > summary::after {
  transform: translateY(-70%) rotate(-45deg);
}

details[open] > summary::-webkit-details-marker,
summary::-webkit-details-marker {
  display: none !important;
}

summary::marker {
  content: none !important;
}

summary {
  list-style: none !important;
  -webkit-appearance: none !important;
  appearance: none !important;
  padding-inline-start: 0 !important;
}

summary::-webkit-details-marker {
  display: none !important;
  width: 0;
  height: 0;
  color: transparent;
  font-size: 0;
  opacity: 0;
}

.wp-block-group {
  margin-top: var(--space-s);
}
.wp-block-group .wp-block-heading {
  padding-bottom: var(--space-m);
}

.wp-block-pullquote {
  padding: var(--space-l) 0 var(--space-m) 0;
}

.wp-block-image.size-full {
  margin: var(--space-m-l) 0;
}

.wp-block-media-text > .wp-block-media-text__content {
  padding-inline-start: var(--space-m-l);
  padding-inline-end: 0;
}
@media only screen and (max-width: 1023px) {
  .wp-block-media-text > .wp-block-media-text__content {
    padding: 0;
  }
}
.wp-block-media-text.has-media-on-the-right > .wp-block-media-text__content {
  padding-inline-start: 0;
}
@media only screen and (min-width: 1024px) {
  .wp-block-media-text.has-media-on-the-right > .wp-block-media-text__content {
    padding-inline-end: var(--space-m-l);
  }
}

.wp-block-pullquote cite {
  font-size: var(--body-font-size-0);
  padding-top: var(--space-xs);
}

.wp-block-embed__wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}

.wp-block-list {
  list-style-type: disc;
  list-style-position: outside;
  max-width: 750px;
  width: 100%;
  padding-left: 20px;
  margin: 0 auto !important;
}

.error404 .site-main {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  text-align: center;
}
.error404 .error-404 {
  margin: 160px 0 var(--space-xl) 0;
  display: grid;
  gap: 20px;
}
.error404 p {
  color: var(--color-blue);
}
.error404 .btn {
  color: var(--color-blue);
  border: 1px solid var(--color-blue);
}
.error404 .btn:hover {
  background: var(--color-blue);
  color: var(--color-white);
}

.page-template-about .hero .image::before, .page-template-about .hero .image::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}
.page-template-about .hero .image::before {
  background-color: #eeeeee;
  mix-blend-mode: multiply;
  opacity: 0.7;
}
.page-template-about .hero .image::after {
  background-color: #001fff;
  mix-blend-mode: screen;
  opacity: 0.5;
}
.page-template-about .hero .image img {
  display: block;
  filter: grayscale(100%) contrast(1) brightness(0.6);
  z-index: 0;
}

@media only screen and (max-width: 1023px) {
  .page-template-contribute .venue-form {
    padding: var(--space-xl) 0 0;
  }
}

.home .page-content {
  padding-top: 0;
}

.page-template-maps .site-header {
  background: var(--color-green);
}
.page-template-maps #container {
  display: flex;
  height: 100vh;
}
.page-template-maps #map {
  flex: 1;
  width: 100%;
  height: 100vh;
}
.page-template-maps #map h5 {
  font-size: var(--body-font-size-1);
}
.page-template-maps #footer {
  display: none;
}

.page-template-venues {
  background: var(--color-light-blue);
  transition: background-color 0.4s ease;
}
.page-template-venues .venue-tags {
  display: none;
}
.page-template-venues.filter-selected {
  background: var(--color-green);
}
.page-template-venues.filter-selected .venue-tags {
  display: inline-flex;
}
@media only screen and (max-width: 1023px) {
  .page-template-venues.filter-selected .venue-tags {
    flex-direction: row;
    flex-wrap: wrap;
  }
}
.page-template-venues #footer {
  margin-top: var(--space-xl);
}

#venue-list {
  gap: 20px;
}
#venue-list .venue-item {
  background: var(--color-white);
  transition: var(--transition);
  border-radius: 14px;
  padding: 25px 30px;
}
#venue-list .venue-item:hover {
  background: var(--color-blue);
}
#venue-list .venue-item:hover .content * {
  color: var(--color-yellow);
}
#venue-list .content {
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
}
@media only screen and (max-width: 1023px) {
  #venue-list .content {
    flex-direction: column-reverse;
    gap: 15px;
  }
}
#venue-list h4 {
  font-family: "Druk Wide", sans-serif;
  text-transform: uppercase;
  line-height: 1.1;
  max-width: 800px;
}

#venue-grid .venue-item {
  width: 100%;
  max-width: 100%;
  border-radius: 15px;
  overflow: hidden;
  position: relative;
}
#venue-grid .venue-item a:hover .image::before, #venue-grid .venue-item a:hover .image::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}
#venue-grid .venue-item a:hover .image::before {
  background-color: #eeeeee;
  mix-blend-mode: multiply;
  opacity: 0.7;
}
#venue-grid .venue-item a:hover .image::after {
  background-color: #001fff;
  mix-blend-mode: screen;
  opacity: 0.5;
}
#venue-grid .venue-item a:hover .image img {
  display: block;
  filter: grayscale(100%) contrast(1) brightness(0.6);
  z-index: 0;
}
#venue-grid .venue-item a:hover .content * {
  color: var(--color-yellow);
}
#venue-grid .venue-item .image {
  filter: brightness(0.8);
}
#venue-grid .venue-item .image img {
  filter: grayscale(1);
  transition: var(--transition);
}
#venue-grid .venue-item .image::before, #venue-grid .venue-item .image::after {
  content: "";
  opacity: 0;
}
#venue-grid .venue-item .content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  color: var(--color-white);
  box-sizing: border-box;
  z-index: 1;
  top: 0;
  right: 0;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  margin: 0 auto;
  text-align: center;
  padding: var(--space-s-m);
}
#venue-grid .venue-item h4 {
  font-family: "Druk Wide", sans-serif;
  align-content: center;
}
#venue-grid .venue-item p,
#venue-grid .venue-item h4 {
  flex-grow: 1;
}

.list-meta {
  display: flex;
  align-items: center;
  gap: 100px;
}
@media only screen and (max-width: 1023px) {
  .list-meta {
    justify-content: space-between;
  }
}

.single-venues .entry-content {
  padding-bottom: var(--space-xl);
}
.single-venues #footer {
  margin-top: 0;
}

/*# sourceMappingURL=main.css.map */
