/*
Theme Name: Enigma Quests
Author: Philippe Bailey, Julia Loucks, Josh Hudson, Z Bador
Author URI: https://www.bamboonine.co.uk
Description: Enigma Quests custom theme developed for Bamboo Nine customers.
Version: 1.0
*/

/* Browser Reset */
@import "css/defaults/browserReset.css";

/* Style Guide */
@import "css/defaults/styleGuide.css";

/* Brand Guide */
@import "css/defaults/brandColours.css";

/* Image and text block Stylesheet */
/* @import "css/blocks/image-and-text.css"; */

/* Image and text header block stylesheet */
/* @import "css/blocks/image-and-text-header.css"; */

/* CTA Simple Heading */
@import "blocks/cta-simple-heading/cta-simple-heading.css";

/* CTA Short Content */
@import "blocks/cta-short-content/cta-short-content.css";

/* CTA Heading & Text */
@import "blocks/cta-heading-text/cta-heading-text.css";

/* CTA Heading & Text 2 Column */
@import "blocks/cta-heading-2-col/cta-heading-2-col.css";

/* CTA Heading & Text 2 Column */
@import "blocks/cta-content-2-col/cta-content-2-col.css";

/* CTA Image 2 Column */
@import "blocks/cta-image-2-col/cta-image-2-col.css";

/* Content Block Builder  */
@import "blocks/content-block-builder/content-block-builder.css";

/* Benefits Grid Block  */
@import "blocks/benefits-grid/benefits-grid.css";

/* Info Block Cards */
@import "blocks/info-block-cards/info-block-cards.css";

/* Info Block 2 Columns */
@import "blocks/info-block-2-column/info-block-2-column.css";

/* CTA Centered */
@import "blocks/cta-centered/cta-centered.css";

/* Icon Cards */
@import "blocks/icon-cards/icon-cards.css";

/* Icon Cards CTA */
@import "blocks/icon-cards-cta/icon-cards-cta.css";

/* Icon Cards Content */
@import "blocks/icon-cards-content/icon-cards-content.css";

/* Icon Card Flipper */
@import "blocks/icon-card-flip/icon-card-flip.css";

/* Hero CTA */
@import "blocks/hero-cta/hero-cta.css";

/* Hero CTA Countdown */
@import "blocks/hero-cta-countdown/hero-cta-countdown.css";

/* Hero Heading */
@import "blocks/hero-heading/hero-heading.css";

/* Hero With Sub Heading */
@import "blocks/hero-sub-heading/hero-sub-heading.css";

/* How To Play */
@import "blocks/how-to-play/how-to-play.css";

/* Locations (Rows) */
@import "blocks/map-locations-rows/map-locations-rows.css";

/* Locations (Columns) */
@import "blocks/map-locations-columns/map-locations-columns.css";

/* Arcade */
@import "blocks/arcade/arcade.css";

/* Escape Rooms */
@import "blocks/escape-rooms/escape-rooms.css";

/* FAQs */
@import "blocks/faqs/faqs.css";

/* Gallery */
@import "blocks/gallery/gallery.css";

/* Text Media 1 Column */
@import "blocks/text-media-1-column/text-media-1-column.css";

/* Text Media 2 Column */
@import "blocks/text-media-2-column/text-media-2-column.css";

/* Text Media 3 Column */
@import "blocks/text-media-3-column/text-media-3-column.css";

/* Testimonials */
@import "blocks/testimonials/testimonials.css";

/* Contact Form */
@import "blocks/contact-form/contact-form.css";

/* Section Border */
@import "blocks/section-border/section-border.css";

/* Blog Posts */
@import "css/defaults/blog-posts.css";

/* Quest Info Component */
@import "blocks/components-quest/quest-info-options.css";

/* Hero Quest Banner */
@import "blocks/hero-quest-banner/hero-quest-banner.css";

/* Simple Content */
@import "blocks/simple-content/simple-content.css";

/* Marquee Scrolling Ticker */
@import "blocks/marquee-ticker/marquee-ticker.css";

/* Locations */
@import "blocks/locations/locations.css";

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--enigmaBlack);
}
/* Adjust content when logged in */
body.logged-in main.content {
  margin-top: -32px;
}
@media screen and (max-width: 782px) {
  body.logged-in main.content {
    margin-top: -46px;
  }
}
body.no-header {
  padding-top: 140px;
}
main.content {
  overflow-x: hidden;
}
header.main {
  position: fixed;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 0px;
  z-index: 10;
  mix-blend-mode: difference;
  display: flex;
  justify-content: space-between;
}
header.main.no-blend {
  mix-blend-mode: normal;
}
.logo-block {
  position: relative;
  margin-top: 50px;
  margin-left: 50px;
  z-index: 101;
}
.logo-block img {
  display: block;
  width: 65px;
  height: auto;
}
.burger-block {
  position: relative;
  z-index: 150;
}
.menu-block {
  position: fixed;
  width: 100%;
  height: 100vh;
  z-index: 100;
  top: 0px;
  left: 100%;
  transition: left 0.25s ease;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 1) 0%,
    rgba(0, 0, 0, 0.9) 35%,
    rgba(0, 0, 0, 0) 100%
  );
  backdrop-filter: blur(7px);
}
.menu-main-menu-container {
  max-width: 1920px;
  margin: auto;
  overflow: auto;
  height: 100vh;
}
.menu-block.show-menu {
  left: 0%;
}
.burger-container {
  display: block;
  padding: 20px 32px 20px 20px;
  margin: 25px 25px 0px 0px;
  cursor: pointer;
}
.top-bun,
.bottom-bun {
  position: relative;
  display: block;
  width: 30px;
  height: 4px;
  border-radius: 4px;
  margin-top: 6px;
  margin-bottom: 10px;
  background-color: var(--enigmaYellow);
  transition: all 250ms ease;
}
.burger-container:hover .top-bun {
  margin-top: 4px;
  margin-bottom: 14px;
  transition: all 250ms ease;
}
.burger-container:hover .bottom-bun {
  margin-top: 8px;
  transition: all 250ms ease;
}
.top-bun:after,
.bottom-bun:after {
  content: "";
  background-color: var(--enigmaYellow);
  width: 12px;
  height: 4px;
  margin-left: 6px;
  border-radius: 4px;
  position: absolute;
  top: 0px;
  right: -10px;
  transition: all 0.25s ease;
}
.top-bun.opened:after,
.bottom-bun.opened:after {
  width: 4px;
}
header.main .menu {
  padding-top: 100px;
  list-style-type: none;
  display: grid;
  justify-content: center;
  justify-items: center;
}
header.main .menu li a {
  display: inline-block;
  font-family: var(--mangoGrotesqueBold);
  font-size: 92px;
  line-height: 61px;
  letter-spacing: 1px;
  margin-bottom: 16px;
  color: var(--enigmaWhite);
  text-decoration: none;
  text-transform: uppercase;
}

@media only screen and (max-height: 690px) {
  header.main .menu li a {
    font-size: 74px;
    line-height: 48px;
  }
}
header.main .menu li.current-menu-item a {
  color: var(--enigmaYellow);
}
@media only screen and (max-width: 1024px) {
  header.main .menu {
    padding: 100px 107px 100px 10%;
  }
  header.main .menu li a {
    font-size: 35px;
    line-height: 30px;
  }
  .burger-container {
    margin: 20px 20px 0px 0px;
  }
  .logo-block {
    margin-top: 20px;
    margin-left: 20px;
  }
  .logo-block img {
    width: 60px;
    height: auto;
  }
}
@media only screen and (max-width: 550px) {
  header.main .menu {
    padding: 100px 10px 100px 10px;
  }
  header.main .menu li a {
    font-size: 35px;
    line-height: 30px;
  }
  header.main .burger-container {
    margin: 20px 0 0;
  }
}

.sub-menu {
  display: none;
  list-style: none;
  text-align: center;
}
.menu-item-has-children.open {
  text-align: center;
}
.menu-item-has-children.open > .sub-menu {
  display: block;
  text-align: center;
}

/* Aspect Ratio Images */
.img-responsive {
  display: block;
  max-width: 100%;
  height: auto;
}

/* All Sections Spacing */
section {
  padding: var(--containerSpacing) 0px;
  position: relative;
}
section.padding-none,
section.hero-section.no-bottom-padding { 
  padding: 0; 
}
section.padding-top-only { 
  padding: var(--containerSpacing) 0 0; 
}
section.padding-bottom-only { 
  padding: 0 0 var(--containerSpacing); 
}
section.duplicate {
  padding-top: 0px;
}
section.bg-image {
  background-position: center center;
}
.link {
  text-decoration: none;
}

/* Section Height */
section.cta-simple-heading,
section.cta-short-content,
section.cta-bg-left-content,
section.cta-heading-text {
  height: 100vh;
}
section .full-container,
section .small-container {
  height: 100%;
}

/* Text Alignment */
.align-left {
  text-align: left;
}
.align-center {
  text-align: center;
}
.align-right {
  text-align: right;
}

/* Headings */
.large,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  text-transform: uppercase;
}

/* Tiny Pre-Text */
.large .tiny,
.h1 .tiny,
.h2 .tiny,
.h3 .tiny,
.h4 .tiny,
.h5 .tiny,
.h6 .tiny {
  display: block;
}

/* Background Video Embed Section */
.bg-video-embed .wp-video .mejs-controls {
  display: none;
}
.hero-section.bg-image,
.hero-section.bg-video {
  display: grid;
  align-items: center;
  background-color: var(--enigmaBlack);
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100vh;
  aspect-ratio: 16 / 9;
}

.bg-video-embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  max-height: 100vh;
  overflow: hidden;
  aspect-ratio: 16 / 9;
}

.bg-video-embed video {
  width: 100%;
}

.bg-video-embed iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.bg-video-embed .wp-video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100% !important;
  height: 100%;
}
.bg-video-embed .wp-video .wp-video-shortcode {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: 100% !important;
  transform: translate(-50%, -50%);
  object-fit: cover;
}

/* Background Video Overlay */
.video-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  max-height: 100vh;
  background: url("assets/hero-border.svg") no-repeat center center;
  background-size: cover;
  opacity: 0.98;
  top: 0;
}
.video-overlay .video-overlay-img {
  background-color: transparent;
  fill: transparent;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  z-index: 0;
}
.video-overlay.enigmaWhite,
.video-overlay .video-overlay-img.enigmaWhite {
  filter: invert(100%) sepia(100%) saturate(0%) hue-rotate(288deg)
    brightness(102%) contrast(102%);
}
.video-overlay.enigmaYellow,
.video-overlay .video-overlay-img.enigmaYellow {
  filter: invert(98%) sepia(97%) saturate(5531%) hue-rotate(334deg)
    brightness(90%) contrast(89%);
}
.video-overlay.enigmaGreen,
.video-overlay .video-overlay-img.enigmaGreen {
  filter: invert(21%) sepia(4%) saturate(2557%) hue-rotate(93deg)
    brightness(87%) contrast(81%);
}
.video-overlay.enigmaGrey,
.video-overlay .video-overlay-img.enigmaGrey {
  filter: invert(33%) sepia(5%) saturate(269%) hue-rotate(184deg)
    brightness(88%) contrast(89%);
}
.video-overlay.enigmaCorporate,
.video-overlay .video-overlay-img.enigmaCorporate {
  filter: invert(16%) sepia(1%) saturate(3690%) hue-rotate(188deg) brightness(60%) contrast(86%)
}

.video-overlay .video-overlay-img.enigmaBlack {
  filter: invert(7%) sepia(5%) saturate(413%) hue-rotate(22deg) brightness(99%)
    contrast(92%);
}
/* enigmaRadiation */
.video-overlay.enigmaRadiation,
.video-overlay .video-overlay-img.enigmaRadiation {
    filter: invert(69%) sepia(91%) saturate(3445%) hue-rotate(119deg) brightness(94%) contrast(98%);
}

/* enigmaToxic */
.video-overlay.enigmaToxic,
.video-overlay .video-overlay-img.enigmaToxic {
  filter: invert(17%) sepia(36%) saturate(1074%) hue-rotate(120deg) brightness(55%) contrast(88%);
}

/* enigmaInk */
.video-overlay.enigmaInk,
.video-overlay .video-overlay-img.enigmaInk {
  filter: invert(13%) sepia(24%) saturate(2346%) hue-rotate(205deg) brightness(59%) contrast(95%);
}

/* enigmaXenon */
.video-overlay.enigmaXenon,
.video-overlay .video-overlay-img.enigmaXenon {
  filter: invert(75%) sepia(73%) saturate(6686%) hue-rotate(222deg) brightness(113%) contrast(125%);
}

.hero-section:has(+ .marquee-container),
.hero-section:has(+ .marquee-container) .bg-video-embed,
.hero-section:has(+ .marquee-container) .video-overlay {
  height: var(--headerBannerHeight);
  max-height: var(--headerBannerHeight);
}

/* Button Styles */
.button.duplicate,
.large.duplicate,
.duplicate {
  color: white;
  font-family: var(--mangoGrotesqueExtraBold);
  font-size: 80px;
  z-index: 5;
  position: relative;
  text-decoration: none;
}

.button.duplicate::before,
.large.duplicate::before,
.duplicate::before {
  content: attr(
    data-text
  ); /* Display visual element for browser that don't understand newer syntax */
  content: attr(data-text) / ""; /* Visual display with fallback to not be read by a Screen Reader */
  display: block;
  position: absolute;
  transform: scale(1.5, 2);
  color: lightgray;
  letter-spacing: -2px;
  opacity: 0.2;
  z-index: -1;
  text-shadow: 
        /* -1px -1px 0 white,
        1px 1px 0 black, */ 1px 0px
      20px var(--enigmaGrey),
    0px 1px 20px var(--enigmaGrey), -1px 0px 20px var(--enigmaGrey),
    0px -1px 20px var(--enigmaGrey);
}
.large.duplicate {
  font-size: 160px;
  line-height: 140px;
}

/* Heading Duplicate Text Main Colours */
.enigmaWhite, .enigmaWhite.heading.duplicate {
  color: var(--enigmaWhite);
}
.enigmaYellow , .enigmaYellow  p{
  color: var(--enigmaYellow);
}
.enigmaGreen, .enigmaGreen.heading.duplicate {
  color: var(--enigmaGreen);
}
.enigmaGreenLight, .enigmaGreenLight.heading.duplicate {
  color: var(--enigmaGreenLight);
}
.enigmaBlack, .enigmaBlack.heading.duplicate {
  color: var(--enigmaBlack);
}
.enigmaGrey, .enigmaGrey.heading.duplicate {
  color: var(--enigmaGrey);
}
.enigmaCorporate, .enigmaCorporate.heading.duplicate {
  color: var(--enigmaCorporate);
}
/* enigmaRadiation */
.enigmaRadiation, .enigmaRadiation.heading.duplicate {
  color: var(--enigmaRadiation);
}
/* enigmaToxic */
.enigmaToxic, .enigmaToxic.heading.duplicate {
  color: var(--enigmaToxic);
}
/* enigmaInk */
.enigmaInk, .enigmaInk.heading.duplicate {
  color: var(--enigmaInk);
}
/* enigmaXenon */
.enigmaXenon, .enigmaXenon.heading.duplicate {
  color: var(--enigmaXenon);
}

/* Background Colours */
div[class*="bg-color-"] {
  padding: 30px;
  border-radius: 25px;
}
.bg-color-enigmaYellow,
body.bg-enigmaYellow {
  background: var(--enigmaYellow);
}
.bg-color-enigmaBlack,
body.bg-enigmaBlack {
  background: var(--enigmaBlack);
}
.bg-color-enigmaGreen,
body.bg-enigmaGreen {
  background: var(--enigmaGreen);
}
.bg-color-enigmaWhite,
body.bg-enigmaWhite {
  background: var(--enigmaWhite);
}
.bg-color-enigmaCorporate,
body.bg-enigmaCorporate {
  background: var(--enigmaCorporate);
}
.bg-color-enigmaGrey,
body.bg-enigmaGrey {
  background: var(--enigmaGrey);
}
.bg-color-enigmaLightGrey,
body.bg-enigmaLightGrey {
  background: var(--enigmaLightGrey);
}
.bg-color-enigmaDarkGrey,
body.bg-enigmaDarkGrey {
  background: var(--enigmaDarkGrey);
}

/* enigmaRadiation */
.bg-color-enigmaRadiation,
body.bg-enigmaRadiation {
  background: var(--enigmaRadiation);
}

/* enigmaToxic */
.bg-color-enigmaToxic,
body.bg-enigmaToxic {
  background: var(--enigmaToxic);
}

/* enigmaInk */
.bg-color-enigmaInk,
body.bg-enigmaInk {
  background: var(--enigmaInk);
}

/* enigmaXenon */
.bg-color-enigmaXenon,
body.bg-enigmaXenon {
  background: var(--enigmaXenon);
}

/* Outline Colours */
.outline-enigmaWhite {
  border: 2px solid var(--enigmaWhite);
}
.outline-enigmaYellow {
  border: 2px solid var(--enigmaYellow);
}
.outline-enigmaGreen {
  border: 2px solid var(--enigmaGreen);
}
.outline-enigmaGreenLight {
  border: 2px solid var(--enigmaGreenLight);
}
.outline-enigmaRadiation {
  border: 2px solid var(--enigmaRadiation);
}
.outline-enigmaToxic {
  border: 2px solid var(--enigmaToxic);
}
.outline-enigmaInk {
  border: 2px solid var(--enigmaInk);
}
.outline-enigmaXenon {
  border: 2px solid var(--enigmaXenon);
}
.outline-enigmaLightGrey {
  border: 2px solid var(--enigmaLightGrey);
}
.outline-enigmaGrey {
  border: 2px solid var(--enigmaGrey);
}
.outline-enigmaCorporate {
  border: 2px solid var(--enigmaCorporate);
}
.outline-enigmaDarkGrey {
  border: 2px solid var(--enigmaDarkGrey);
}
.outline-enigmaBlack {
  border: 2px solid var(--enigmaBlack);
}

/* Grid */
.grid,
.grid-col-1,
.grid-col-2,
.grid-col-3,
.grid-col-4,
.grid-col-5,
.grid-col-6 {
  display: grid;
  gap: 24px;
}
.grid-col-1 {
  grid-template-columns: 1fr;
}
.grid-col-2 {
  grid-template-columns: repeat(2, 1fr);
}
.grid-col-3 {
  grid-template-columns: repeat(3, 1fr);
}
.grid-col-4 {
  grid-template-columns: repeat(4, 1fr);
}
.grid-col-5 {
  grid-template-columns: repeat(5, 1fr);
}
.grid-col-6 {
  grid-template-columns: repeat(6, 1fr);
}
.grid.justify-center {
  justify-content: center;
}

/* Hero Section */
section[class*="hero-"] {
  background-size: cover;
  background-position: center center;
  height: 100vh;
  padding-top: 0;
}
section[class*="hero-"] .full-container {
  height: 100%;
}
section[class*="hero-"] .small-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  margin-top: 60px;
}
section[class*="hero-"] .quest-banner {
  display: grid;
  align-items: center;
  height: 100%;
}
/* Quest Info */
section.hero-quest .small-container {
  justify-content: flex-end;
}

/* CTA Sections  */
/* CTA Simple Heading Colour Emphasis */
section.cta-section .large.enigmaWhite b,
section.cta-section .h1.enigmaWhite b,
section.cta-section .h2.enigmaWhite b,
section.cta-section .h3.enigmaWhite b,
section.cta-section .h4.enigmaWhite b,
section.cta-section .h5.enigmaWhite b,
section.cta-section .h6.enigmaWhite b {
  color: var(--enigmaYellow);
}
.cta-bg-left-content .cta-content strong {
  color: var(--enigmaYellow);
  font-size: 24px;
}

/* CTA Section Content Positioning */
.cta-simple-heading-content,
.cta-simple-heading .small-container,
.cta-short-content .small-container,
.cta-bg-left-content .small-container {
  display: grid;
  align-items: end;
}
.cta-short-content .cta-content,
.cta-bg-left-content .cta-content {
  max-width: 50%;
}
.large-text.larger p {
  font-size: 32px;
  font-family: var(--mangoGrotesqueMedium);
  letter-spacing: 1px;
  text-transform: uppercase;
}
.cta-content .cta-text {
  margin-bottom: 40px;
}

/* CTA Heading, Sub-Heading & Large Text */
.cta-2-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

/* CTA Button Positioning */
.cta-button.align-left .animated {
  margin-left: -35px;
}

/* 404 Page */
body.error404 {
  background: var(--enigmaBlack);
  color: var(--enigmaWhite);
}
.error-404-container .small-container {
  max-width: 1200px;
}
.error-404-content {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: auto auto auto;
}
.error-404-content p {
  color: var(--enigmaWhite);
  margin-bottom: 0;
}
.error-404-content a:hover {
  color: var(--enigmaYellow);
  text-decoration: none;
}
.error-404-content .lost,
.error-404-content .found {
  grid-column: 1 / -1;
  text-align: center;
  position: relative;
}
.error-404-content .lost {
  top: 50px;
  margin-left: 400px;
}
.error-404-content .found {
  bottom: 50px;
}
.error-404-content .four {
  background: url(assets/404-four.svg) no-repeat center center;
  background-size: 100% 100%;
  max-height: 560px;
  height: 560px;
  max-width: 385px;
}
.error-404-content .zero {
  background: url(assets/404-zero.svg) no-repeat center center;
  background-size: 100%;
  max-width: 385px;
}
/* FOOTER */
footer {
  padding: 0 40px;
}
.footer-container {
  position: relative;
  max-width: 1440px;
  margin: 0px auto 40px;
  border-radius: 12px;
  background-color: var(--enigmaLightGrey);
  display: flex;
  padding: 50px;
  gap: 50px;
}
.footer-container .menu li a,
.footer-container .social-links li a {
  font-family: var(--switzer);
}
.footer-container .social-icons {
  display: flex;
  gap: 20px;
  list-style-type: none;
  padding-left: 0;
}
.footer-container .social-icons .fab {
  background-size: contain;
  display: block;
  width: 34px;
  height: 34px;
}
.footer-container .social-icons .fa-facebook {
  background: url(assets/icon-facebook.svg) no-repeat;
}
.footer-container .social-icons .fa-instagram {
  background: url(assets/icon-instagram.svg) no-repeat;
}
.footer-container .social-icons .fa-trip-advisor {
  background: url(assets/icon-trip-advisor.svg) no-repeat;
}
.footer-container .social-icons .fa-x {
  background: url(assets/icon-x.svg) no-repeat;
}

.footer-block-1 {
  flex-basis: 30%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.footer-block-1 .heading {
  font-weight: bold;
  line-height: 35px;
  color: var(--enigmaWhite);
  text-transform: none;
}
.footer-block-1 form {
  font-size: 0;
}
.footer-block-1 form p:first-of-type {
  width: calc(100% - 150px);
  display: inline-block;
  vertical-align: top;
}
.footer-block-1 form p:last-of-type {
  width: 150px;
  display: inline-block;
  vertical-align: top;
  margin-top: 20px;
}
.footer-block-1 .footer-input {
  padding: 10px 20px 10px 0px;
}
/* .footer-block-1 img {
    width: 270px;
} */
.footer-block-1 .wpcf7-form {
  display: grid;
  column-gap: 24px;
  grid-template-rows: 1fr 60px;
  grid-template-columns: minmax(150px, 200px) 130px;
}
.footer-block-1 .wpcf7-form .heading,
.wpcf7-response-output,
.wpcf7-spinner {
  grid-column: span 2;
}
.footer-block-1 .wpcf7-submit,
.footer-block-1 .wpcf7-email {
  margin-bottom: 0;
}
.footer-block-1 .wpcf7-email {
  max-width: 200px;
}
.footer-block-1 .wpcf7-submit {
  height: 40px;
  vertical-align: bottom;
  align-self: start;
}
.footer-block-1 .footer-logo {
  max-width: 270px;
}

.footer-block-1 .legal-links,
.footer-mobile-logo .legal-links {
  display: grid;
  grid-template-columns: max-content max-content;
  gap: 24px;
  margin-top: 24px;
}
.footer-block-1 .legal-links .link,
.footer-mobile-logo .legal-links .link {
  color: var(--enigmaWhite);
  opacity: 0.5;
  display: inline-block;
  font-size: 12px;
  line-height: 22px;
  white-space: nowrap;
}
/* Footer Block 2 */
.footer-block-2 {
  flex-basis: 40%;
}
.footer-block-2 ul {
  list-style-type: none;
  padding: 0px;
  margin: 0px;
}
.footer-block-2 ul li a {
  color: var(--enigmaWhite);
  text-decoration: none;
}
.footer-block-3 {
  flex-basis: 30%;
}
.footer-block-3 ul {
  list-style-type: none;
  padding: 0px;
}
.footer-block-3 ul li a {
  color: var(--enigmaWhite);
  text-decoration: none;
}
.footer-block-3 h4 {
  color: var(--enigmaWhite);
  font-size: 17px;
  font-weight: bold;
}
.footer-block-3 p {
  color: var(--enigmaWhite);
  margin-bottom: 2px;
}
.footer-block-3 .title-pusher {
  margin: 25px 0px;
}
.footer-block-3 table {
  width: 100%;
}
.footer-block-3 table tr td {
  font-size: 16px;
  font-family: "Switzer-Regular";
  padding-bottom: var(--contentSpacing);
  color: var(--enigmaWhite);
}
.footer-regular-menu {
  display: block;
}
.footer-tablet-menu {
  display: none;
}
.footer-container .wpcf7-response-output {
  margin-bottom: 25px !important;
}
.ddb1 {
  color: var(--enigmaWhite);
  display: none;
}

@media only screen and (max-width: 1350px) {
  .footer-block-1 {
    flex-basis: 50%;
  }
  .footer-block-3 {
    flex-basis: 50%;
  }
  .footer-regular-menu {
    display: none;
  }
  .footer-tablet-menu {
    display: block;
  }
  .tablet-pusher {
    margin: 30px 0px;
  }
  .footer-block-3 .title-pusher {
    margin: 30px 0px;
  }
}
@media only screen and (max-width: 640px) {
  .bg-video-embed {
    height: 100%;
  }
  .bg-video-embed video {
    height: 100%;
    width: auto;
  }
  .heading.medium,
  .heading.medium.duplicate,
  .heading.large,
  .heading.large.duplicate {
    font-size: 64px!important;
    line-height: normal!important;
  }
  .footer-container .social-icons {
    justify-content: center;
  }
  .footer-container .social-icons .fab {
    width: 40px;
    height: 40px;
    background-size: 40px;
  }
  .footer-block-1 .wpcf7-form {
    gap: 0;
  }
}
@media only screen and (max-width: 782px) {
  section[class*="hero-"] .small-container {
    margin-top: 40px;
  }
  .heading {
    margin-bottom: 15px;
  }
  section.hero-cta.bg-video {
    height: auto;
  }
}
@media only screen and (min-width: 783px) and (max-width: 958px) {
  .large {
    font-size: 100px;
    line-height: 90px;
  }
  .heading {
    margin-bottom: 25px;
  }
  section.hero-cta.bg-video {
    height: auto;
  }
}
@media only screen and (min-width: 959px) and (max-width: 1280px) {
  .large {
    font-size: 120px;
    line-height: 100px;
  }
  .heading {
    margin-bottom: 30px;
  }
}
@media only screen and (min-width: 1025px) {
  .footer-container .footer-mobile-logo {
    display: none;
  }
}
@media only screen and (max-width: 1024px) {
  .escape-room-block {
    padding-top: 100px;
  }
  section.hero-cta.bg-video {
    height: auto;
}
  .footer-regular-menu {
    display: block;
  }
  .footer-tablet-menu {
    display: none;
  }
  .footer-container {
    flex-direction: column;
    gap: 25px;
    padding: 50px 50px 50px 50px;
  }
  .footer-block-1 {
    flex-basis: 100%;
  }
  .footer-block-1 .footer-logo {
    position: absolute;
    bottom: 50px;
    left: 50px;
  }
  .footer-block-2 {
    flex-basis: 100%;
    margin-top: -25px;
  }
  .footer-block-3 {
    flex-basis: 100%;
    margin-bottom: 10px;
  }
  .footer-block-3 .title-pusher {
    margin: 25px 0px;
  }
  .footer-block-3 h4 {
    margin: 0px 0px 10px 0px;
  }
  .footer-block-3 p {
    margin-bottom: 10px;
  }
  .menu-block {
    background: linear-gradient(
      90deg,
      rgba(0, 0, 0, 1) 0%,
      rgba(0, 0, 0, 0.9) 50%,
      rgba(0, 0, 0, 0) 100%
    );
  }
  .footer-block-1 .footer-logo {
    display: none;
  }
  .footer-container .footer-mobile-logo {
    display: block;
    text-align: center;
  }
  .footer-container .footer-mobile-logo .img-responsive {
    margin: 0 auto;
  }
  .footer-block-1 .legal-links, .footer-mobile-logo .legal-links {
    justify-content: center;
  }
}
@media only screen and (max-width: 767px) {
  .footer-container {
    padding: 25px 25px 50px 25px;
    margin: 25px;
  }
  .footer-block-1 .footer-logo {
    left: 25px;
    bottom: 25px;
  }
  .ddb1,
  .ddb2,
  .ddb3 {
    cursor: pointer;
  }
  .ddb1 {
    display: block;
    margin: 0px;
  }
  .dropdown-box-1 {
    margin-top: 15px;
  }
  .dropdown-box-1,
  .dropdown-box-2,
  .dropdown-box-3 {
    display: none;
  }
  .ddb1:after,
  .ddb2:after,
  .ddb3:after {
    content: "";
    position: relative;
    height: 8px;
    width: 8px;
    border: solid var(--enigmaWhite);
    border-width: 0 2px 2px 0;
    display: inline-block;
    padding: 4px;
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    margin-left: 10px;
    margin-bottom: 3px;
    transition: all 0.3s ease-in-out;
  }
  .ddb1.flip:after,
  .ddb2.flip:after,
  .ddb3.flip:after {
    transform: rotate(-135deg);
    -webkit-transform: rotate(-135deg);
  }
  .footer-container h4 {
    font-size: 18px;
  }
  .footer-block-1 form p:first-of-type {
    width: 100%;
    display: block;
  }
  .footer-block-1 form p:last-of-type {
    width: 100%;
    display: block;
    margin-top: 0px;
  }
  .footer-block-1 form .button.outline {
    width: 100%;
  }
  .footer-block-1 form .wpcf7-response-output {
    border: none;
  }
}

/* Hide the ReCaptcha v3 Tag */
.grecaptcha-badge {
  visibility: hidden;
}

/* MEDIA QUERIES */
@media only screen and (max-width: 1080px) {
  .error-404-content .lost {
    top: 130px;
    margin-left: 80px;
  }
  .error-404-content .found {
    bottom: 80px;
  }
}

@media (max-width: 640px) {
  .hero-section.bg-video {
    height: 100%;
    max-height: 77vh;
  }
  .hero-section.bg-video,
  .bg-video-embed {
    aspect-ratio: 9 / 16;
  }
  .video-overlay {
    opacity: 1;
    height: 100%;
    max-height: 78vh;
    background: url("assets/hero-border-portrait.svg") no-repeat center bottom;
    background-size: cover;
  }
  .cta-2-col {
    grid-template-columns: 1fr;
  }
  .error-404-content .lost {
    top: 200px;
    margin-left: 0px;
  }
  .error-404-content .found {
    bottom: 120px;
  }
  .grid-col-2 {
    grid-template-columns: 1fr;
  }
  .home .hero-section .heading br {
    display: unset;
  }
  .footer-block-1 .wpcf7-form {
    grid-template-columns: 1fr;
    gap: 6px;
  }
  .footer-block-1 .wpcf7-email {
    max-width: unset;
  }
  .footer-block-1 .wpcf7-form .heading {
    margin-bottom: 0;
  }
  .footer-block-1 .wpcf7-form .heading,
  .wpcf7-response-output,
  .wpcf7-spinner {
    grid-column: span 1;
  }
  .footer-block-1 .wpcf7-form .wpcf7-submit {
    margin-bottom: 0px;
    background-color: var(--enigmaYellow);
    color: var(--enigmaWhite);
  }
  .footer-block-1 .footer-logo {
    display: none;
  }
  .menu-block {
    background: var(--enigmaBlack);
    backdrop-filter: unset;
  }
  section.hero-sub-heading.hero-escape-arcade {
    padding-bottom: 0;
  }
  section.hero-sub-heading.hero-escape-arcade .small-container {
    justify-content: flex-end;
  }
  section.hero-sub-heading.hero-escape-arcade .small-container .heading {
    text-align: left;
  }
  section.hero-sub-heading.hero-escape-arcade  .cta-button.animated {
    text-align: left;
    margin-bottom: 20px;
  }

  section.faqs-section,
  section.how-to-play-section,
  section.icon-card-section,
  section.map-locations-section,
  section.simple-content-section,
  section.testimonials-section {
    padding-top: 0;
    padding-bottom: 80px;
  }
  

}
@media screen and (max-width: 550px) {
  .icon-cards-cta .icon-cards-cta-content {
    grid-template-columns: 1fr;
  }
  footer {
    padding: 0 30px;
  }
  .footer-container {
    margin-left: 0px;
    margin-right: 0px;
    padding-bottom: 30px;
  }
  .footer-block-3 {
    margin-bottom: 0px;
  }
  .footer-container .footer-mobile-logo .footer-logo-image {
    display: block;
    margin: 0 auto;
    max-width: 290px;
    position: relative;
    width: 85%;
  }
}

/* CookieYes Styles */
.cky-consent-container,
.cky-footer-wrapper div,
.cky-footer-wrapper button.cky-btn,
.cky-modal .cky-preference-content-wrapper .cky-show-desc-btn,
.cky-modal .cky-accordion-header button.cky-accordion-btn {
	font-family: var(--switzer);
}
.cky-footer-wrapper .cky-footer-shadow,
.cky-modal .cky-accordion-header span.cky-always-active {
	margin-bottom: 0;
}
.cky-modal .cky-footer-wrapper div a {
	margin-bottom: 3px !important;
}
.cky-modal .cky-preference-body-wrapper input[type="checkbox"]:before {
	clip-path:unset;
	transform: unset;
}

.page-id-794 .escape-room-block .escape-room-content {
	margin-bottom: unset
}

.burger-block .top-bun-alt,
.burger-block .bottom-bun-alt,
.burger-block .top-bun-alt:after,
.burger-block .bottom-bun-alt:after {
  background-color: var(--enigmaGreenLight);
}