/*
Theme Name: BCM Custom Theme 2.0
Author: Lily Fitzmeyer
Description: Custom Theme for Boston Children's Museum
Version: 2.0
*/

@import url("https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&display=swap");

:root {
  --blue: #2e77d0;
  --blue: #2e77d0;
  --purple: #401665;
  --pink: #bf1c7f;
  --orange: #d64309;
  --green: #28a745;
  --teal: #00827b;
  --darkblue: #0920b3;
  --white: #fff;
  --gray: #767575;
  --lightgray: #b7b7b7;
  --darkgray: #434242;
  --primary: #2a2a2a;
  --secondary: #414141;
  --success: #28a745;
  --info: #17a2b8;
  --warning: #ffc107;
  --danger: #dc3545;
  --light: #c2c2c2;
  --dark: #434242;
  --font-family: "Montserrat", sans-serif;
  /* Font Sizes */
  --fs-h1: 5em;
  --fs-h2: 4rem;
  --fs-h3: 3rem;
  --fs-h4: 2rem;
  --fs-h5: 1.25rem;
  --fs-h6: 1rem;
  --fs-text: 0.9375rem;

  --form-input-border-width: 2px;
  --form-input-border-width-inline: 4px;
}

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

body {
  color: var(--secondary);
  letter-spacing: 0.2px;
  line-height: 1.3;
  font-family: var(--font-family);
  font-size: 15px;

  overflow-x: hidden;
  min-height: 100vh;
  margin: 0;
}

body.nav_open-no_scroll {
  overflow: hidden;
}

a {
  color: var(--blue);
  color: #0c6ef4;
}

h1 > a,
h2 > a,
h3 > a,
h4 > a,
h5 > a,
h6 > a,
p > a,
.make-column-clickable-elementor h2:not(:has(> a)) {
  line-height: 1.2 !important;
}

h1 > a:hover,
h2 > a:hover,
h3 > a:hover,
h4 > a:hover,
h5 > a:hover,
h6 > a:hover,
p > a:hover,
.home-block h3:hover span,
h1 > a:focus,
h2 > a:focus,
h3 > a:focus,
h4 > a:focus,
h5 > a:focus,
h6 > a:focus,
p > a:focus,
.home-block h3:focus span {
  border-bottom: solid white 2px !important;
}

.make-column-clickable-elementor:hover h2:not(:has(> a)) {
  display: inline !important;
  border-bottom: solid white 2px !important;
}

.elementor-tab-title a:hover,
nav a:hover,
.social-icons a:hover,
.location a:hover {
  border-bottom: none !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--gray-dark);
  font-weight: bold;
  margin: 0;
  /*     font-weight: 400; */
}

button {
  border: none;
  background: transparent;
  cursor: pointer;
}

.flow > *:where(:not(:first-child)) {
  margin-top: 1rem;
}

.flow > *:where(:not(:first-child)) {
  margin-top: 1rem;
}

.flex {
  display: flex;
}

.flex ul > li {
  list-style: none;
}

.btn {
  cursor: pointer;
  font-weight: bold;
  padding: 0.375rem 1rem;
  height: 2.75rem;
  transition: all 0.4s ease-in-out;
  margin-top: 0.5rem;
}

.bcm-form-control {
  padding-top: 0.875rem;
  padding-bottom: 0.875rem;
  height: 2.75rem;
  border-color: white;
}

/* reset user agent stylesheet chrome*/
ul {
  padding-inline-start: 0;
}

/* h2 {
	margin-bottom: 50px;
} */

/* font awesome*/

.icon::after {
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
}

/* -------------------------------------------------------------------------- */
/*	Colors   */
/* -------------------------------------------------------------------------- */

.blue {
  color: #2e77d0;
}
.purple {
  color: #401665;
}
.pink {
  color: #bf1c7f;
}
.orange {
  color: #d64309;
}
.green {
  color: #28a745;
}
.teal {
  color: #00827b;
}

.fs-h1 {
  font-size: var(--fs-h1);
}
.fs-h2 {
  font-size: var(--fs-h2);
}
.fs-h3 {
  font-size: var(--fs-h3);
}
.fs-h4 {
  font-size: var(--fs-h4);
}
.fs-h5 {
  font-size: var(--fs-h5);
}
.fs-h6 {
  font-size: var(--fs-h6);
}
.fs-text {
  font-size: var(--fs-text);
}

/* -------------------------------------------------------------------------- */
/*	12. Accessibility   */
/* -------------------------------------------------------------------------- */

.sr-only {
  position: absolute;
  height: 1px;
  width: 1px;
  padding: 0;
  border: 0;
  margin: -1;
  white-space: nowrap;
  clip-path: inset(50%);
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

.skip-to-content {
  position: absolute;
  z-index: 9999;
  background: transparent;
  color: black;
  margin-inline: auto;
  font-size: 0.875rem;
  transform: translateY(-120%);
}

.skip-to-content:focus {
  transform: translateY(0);
  transition: transform 250ms ease-in;
}

/* -------------------------------------------------------------------------- */
/*	Header/Navigation   */
/* -------------------------------------------------------------------------- */

.header {
  display: grid;
  padding-inline: 1.75rem;
  padding-bottom: 1rem;
  text-align: center;
  margin-inline: auto;
}

.header nav {
  display: grid;
  grid-template-columns: 1fr 5fr;
  background: var(--white);
  max-width: 60rem;
  padding-top: 1rem;
  border: none;
  place-self: center;
}

@media (min-width: 767px) and (max-width: 991px) {
  .header {
    position: relative;
  }

  .header nav {
    position: static;
  }
}

@media (min-width: 991px) {
  .header nav {
    position: relative;
  }
}

.logo {
  display: grid;
  align-items: flex-end;
  padding-bottom: 0.375rem;
  padding-bottom: 1px;
}

.logo svg,
.logo img {
  width: 157px;
  padding-bottom: 0.375rem;
}

.header nav .nav-menu-column {
  display: grid;
  justify-content: end;
}

.header nav .nav-menu-column .nav-menu-col-top,
.header nav .nav-menu-column .nav-menu-col-main {
  display: grid;
  align-items: center;
  justify-content: flex-end;
}

.nav-menu-col-main button img {
  width: 120px !important;
}

.header nav ul {
  list-style: none;
  display: flex;
  align-self: center;
  padding: 0;
  margin: 0;
}

.header nav ul li {
  display: inline-block;
}

.header nav .bcm-mainmenu {
  margin-top: 3px;
}

.header nav .bcm-topmenu li {
  padding: 0rem 1.25rem;
  border-right: solid var(--darkblue) 1px;
}

.header nav .bcm-topmenu li:last-of-type {
  border-right: none;
}

.header nav .bcm-mainmenu li {
  color: #fff;
  /* padding: .625rem 2.5rem; */
  background: var(--blue);
}

.header nav .bcm-mainmenu li.bcm-nav-visit {
  background-color: var(--blue);
}

.header nav .bcm-mainmenu li.bcm-nav-explore {
  background-color: var(--orange);
}

.header nav .bcm-mainmenu li.bcm-nav-learn {
  background-color: var(--teal);
}

.header nav .bcm-mainmenu li.bcm-nav-museumathome {
  background-color: var(--purple);
}

.header nav ul li a {
  cursor: pointer;
  display: flex;
  width: 100%;
  height: 100%;
  letter-spacing: 0.3px;
  text-decoration: none;
  padding: 9px 43px;
}

.header nav ul#bcm-mainmenu > li > a {
  place-items: center;
}

.bcm-nav-visit > a,
.bcm-nav-explore > a,
.bcm-nav-learn > a,
.bcm-nav-museumathome > a {
  font-size: 15px;
}

.header nav ul li a > * {
  vertical-align: middle;
}

.header nav .bcm-mainmenu ul li a:focus {
  /*     outline: solid 2px red; */
  border-radius: 2px;
}

.header nav .bcm-topmenu a {
  color: #003595;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  /*     line-height: 1; */
  padding: 0;
}

.header nav .bcm-topmenu a:hover {
  color: var(--pink);
}

.header nav .bcm-mainmenu a {
  color: #fff;
  line-height: 1;
}

@media only screen and (max-width: 991px) {
  .header nav {
    grid-template-columns: 1fr;
    background: var(--white);
    gap: 1.5rem;
    justify-content: center;
  }

  .logo {
    display: grid;
    place-items: center;
    padding: 1rem;
    max-width: 230px;
    margin-inline: auto;
  }

  .nav-menu-col-main button img {
    width: 120px !important;
  }

  .header nav .nav-menu-column {
    place-content: center;
  }

  .header nav ul li a {
    padding: 0.5625rem 2.125rem;
  }

  .header nav .bcm-topmenu li {
    padding: 0rem 1rem;
  }
}

/* ---------------------------- */
/*	Mega Menus   */
/* ---------------------------- */

.header nav ul li ul {
  display: none;
  position: absolute;
  padding-top: 8px;
  margin-left: auto;
  margin-right: auto;
  left: 0;
  right: 0;
  text-align: center;
  width: clamp(400px, 100vw, 942px);
  justify-self: center;
  top: 100%;
}

.header nav ul li:hover > ul,
.header nav ul li:focus-within > ul {
  display: grid;
  z-index: 9999 !important;
}

.header nav ul li.bcm-nav-visit:hover > ul,
.header nav ul li.bcm-nav-visit:focus-within > ul {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.header nav ul li.bcm-nav-explore:hover > ul,
.header nav ul li.bcm-nav-explore:focus-within > ul,
.header nav ul li.bcm-nav-learn:hover > ul,
.header nav ul li.bcm-nav-learn:focus-within > ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.header nav ul li.bcm-nav-museumathome:hover > ul,
.header nav ul li.bcm-nav-museumathome:focus-within > ul {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
}

/* .header nav ul li .athome-1 {
    grid-area: a;
}

.header nav ul li .athome-2 {
    grid-area: b;
}

.header nav ul li .athome-3 {
    grid-area: c;
}

.header nav ul li .athome-4 {
    grid-area: d;
}

.header nav ul li .athome-5 {
    grid-area: e;
}

.header nav ul li.bcm-nav-museumathome:hover > ul, .header nav ul li.bcm-nav-museumathome:focus > ul {
    display: grid;
    grid-template-areas: 
        'a a b b c c'
        'd d d e e e';
} */

.header nav ul li:hover > ul li,
.header nav ul li:focus-within > ul li {
  display: grid;
  position: relative;
  z-index: 999;
  width: auto;
  min-height: 240px;
  padding-top: 0;
  margin: 0;
  background-size: cover;
  background-position: center center;
  place-items: center;
  font-size: 20px;
}

.header nav ul li.bcm-nav-visit:hover > ul li,
.header nav ul li.bcm-nav-visit:focus-within > ul li {
  display: grid;
  position: relative;
  z-index: 999;
  width: auto;
  min-height: 240px;
  padding-top: 36px;
  margin: 0;
  background-size: cover;
  background-position: center center;
  justify-items: center;
  align-items: flex-start;
  font-size: 20px;
}

.header nav ul li.bcm-nav-visit:hover > ul li:nth-of-type(4),
.header nav ul li.bcm-nav-visit:focus-within > ul li:nth-of-type(4),
.header nav ul li.bcm-nav-visit:hover > ul li:nth-of-type(6),
.header nav ul li.bcm-nav-visit:focus-within > ul li:nth-of-type(6),
.header nav ul li.bcm-nav-visit:hover > ul li:nth-of-type(7),
.header nav ul li.bcm-nav-visit:focus-within > ul li:nth-of-type(7),
.header nav ul li.bcm-nav-visit:hover > ul li:nth-of-type(8),
.header nav ul li.bcm-nav-visit:focus-within > ul li:nth-of-type(8) {
  padding-top: 0px;
  justify-items: center;
  align-items: flex-end;
  padding-bottom: 40px;
}

.header nav ul li.bcm-nav-visit:hover > ul li:nth-of-type(4),
.header nav ul li.bcm-nav-visit:focus-within > ul li:nth-of-type(4) {
  padding-bottom: 76px;
}

.header nav ul li:hover > ul li a,
.header nav ul li:focus-within > ul li a {
  display: block;
  width: inherit;
  height: inherit;
  padding: 10px 16px 10px 12px;
  margin: 0;
  line-height: 1.3;
}

.header nav ul li:hover > ul li p,
.header nav ul li:focus-within > ul li p {
  font-size: 15px;
  margin-top: 16px;
  text-transform: none;
}

/* p.menu-item-description {
	margin-top: 16px;
} */

/* ---------------------------- */
/*	VISIT Mega Menu   */
/* ---------------------------- */

.header nav ul li .visit-1 {
  background: var(--teal);
}

.header nav ul li .visit-2 {
  background-image: url("assets/images/DSC_0003.jpg");
  line-height: 1.6;
}

.header nav ul li .visit-3 {
  background: var(--blue);
  line-height: 1.6;
}

.header nav ul li .visit-4 {
  background-image: url("assets/images/IMG_0530_SM.jpeg");
}

.header nav ul li .visit-4 a::before {
  display: grid;
  padding: 10px;
  justify-self: center;
  margin-inline: auto;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f05a";
  font-size: 50px;
}

.header nav ul li .visit-5 {
  background-image: url("assets/images/DSC_0577_SM.jpeg");
}

.header nav ul li .visit-6 {
  background: var(--orange);
}

.header nav ul li .visit-6 a::before {
  content: url("assets/images/calendar.svg");
  display: grid;
  justify-self: center;
  margin-inline: auto;
  width: 70px;
  height: 70px;
  margin-top: 15px;
  margin-bottom: 8px;
  padding: 10px;
}

.header nav ul li .visit-7 {
  background-image: url("assets/images/playstructure_SM.jpeg");
  /* padding-top: 0px; */
}

.header nav ul li .visit-7 a::before {
  content: url("assets/images/Virtual_Tour_white.svg");
  display: grid;
  justify-self: center;
  margin-inline: auto;
  width: 100px;
  height: 100px;
  padding: 10px;
}

.header nav ul li .visit-8 {
  background: var(--purple);
}

.header nav ul li .visit-8 a::before {
  display: grid;
  padding: 10px;
  justify-self: center;
  margin-inline: auto;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f0c0";
  font-size: 46px;
  margin-top: -16px;
}

/* ---------------------------- */
/*	EXPLORE Mega Menu   */
/* ---------------------------- */

.header nav ul li .explore-1 {
  background-image: url("assets/images/DSC_0873_SM.jpg");
}

.header nav ul li .explore-2 {
  background: var(--orange);
}

.header nav ul li .explore-2 a::before {
  content: url("assets/images/Virtual_Tour_white.svg");
  display: grid;
  justify-self: center;
  margin-inline: auto;
  width: 90px;
  height: 90px;
  margin-bottom: 8px;
}

.header nav ul li .explore-3 {
  background-image: url("assets/images/New-Project-5.jpg");
}

.header nav ul li .explore-4 {
  background: var(--purple);
}

.header nav ul li .explore-4 a::before {
  content: url("assets/images/PlayX_white.svg");
  display: grid;
  justify-self: center;
  margin-inline: auto;
  width: 110px;
  height: 110px;
}

.header nav ul li .explore-5 {
  background-image: url("assets/images/STEAM_LEGO 12_SM.png");
}

.header nav ul li .explore-6 {
  background: var(--teal);
}

.header nav ul li .explore-6 a::before {
  content: url("assets/images/Collection_white.svg");
  display: grid;
  justify-self: center;
  margin-inline: auto;
  width: 110px;
  height: 110px;
}

/* ---------------------------- */
/*	Learn Mega Menu   */
/* ---------------------------- */

.header nav ul li .learn-1 {
  background-image: url("assets/images/New-Project-7.jpeg");
}

.header nav ul li .learn-2 {
  background: var(--teal);
}

.header nav ul li .learn-2 a::before {
  content: url("assets/images/PlayX_white.svg");
  display: grid;
  justify-self: center;
  margin-inline: auto;
  width: 110px;
  height: 110px;
}

.header nav ul li .learn-3 {
  background-image: url("assets/images/2Kitphoto.jpeg");
}

.header nav ul li .learn-4 {
  background: var(--purple);
}

.header nav ul li .learn-4 a::before {
  content: url("assets/images/What-are-We-Learning_icon.svg");
  display: grid;
  padding: 10px;
  padding-top: 0;
  justify-self: center;
  margin-inline: auto;

  width: 110px;
  height: 110px;
}

.header nav ul li img {
  width: 110px;
  height: 110px;
}

.header nav ul li .learn-5 {
  background-image: url("assets/images/BOSCM_(84_of_109).jpeg");
}

.header nav ul li .learn-6 {
  background: var(--orange);
  text-align: center;
}

.header nav ul li .learn-6 a::before {
  content: url("assets/images/fun.svg");
  display: grid;
  justify-self: center;
  margin-inline: auto;
  width: 80px;
  height: 80px;
  margin-bottom: 30px;
}

/* ---------------------------- */
/*	Museum At Home Mega Menu   */
/* ---------------------------- */

.header nav ul li .athome-1 {
  grid-column: span 2;
  background-image: url("assets/images/BOSCM_(84_of_109)_SM.jpeg");
}

.header nav ul li .athome-2 {
  grid-column: span 2;
  background: var(--orange);
}

.header nav ul li .athome-2 a::before {
  display: grid;
  padding: 10px;
  justify-self: center;
  margin-inline: auto;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f11b";
  font-size: 48px;
}

.header nav ul li .athome-3 {
  grid-column: span 2;
  background-image: url("assets/images/slide6_SM.jpeg");
}

.header nav ul li .athome-4 {
  /* grid-column-start: 1;
  grid-column-end: 4; */
  grid-column: span 2;
  background: var(--blue);
}

.header nav ul li .athome-4 a::before {
  content: url("assets/images/100_Ways_to_Play_icon.svg");
  display: grid;
  justify-self: center;
  margin-inline: auto;
  margin-top: 40px;
  margin-bottom: -40px;
  width: 110px;
  height: 110px;
}

.header nav ul li .athome-5 {
  /* grid-column-start: 4;
  grid-column-end: 7; */
  grid-column: span 2;
  background-image: url("assets/images/Activity_Archive_image_SM.jpeg");
}

.header nav ul li .athome-6 {
  background-image: url("assets/images/Virtual_Tour_white.svg");
  grid-column: span 2;
  background: var(--purple);
}

.header nav ul li .athome-6 a::before {
  content: url("assets/images/Podcast_icon_white.svg");
  display: grid;
  justify-self: center;
  margin-inline: auto;
  width: 84px;
  height: 84px;
  margin-bottom: 10px;
}

/* ---------------------------- */
/*	Theme Mega Menu Styles  */
/* ---------------------------- */

.header nav ul li .explore-1,
.header nav ul li .explore-3,
.header nav ul li .explore-5,
.header nav ul li .learn-1,
.header nav ul li .learn-3,
.header nav ul li .learn-5,
.header nav ul li .athome-1,
.header nav ul li .athome-3,
.header nav ul li .athome-5 {
  padding: 6%;
  text-align: left;
}

.header nav ul li .explore-5 {
  padding-top: 10% !important;
}

.header nav ul li .visit-2::before,
.header nav ul li .visit-4::before,
.header nav ul li .visit-5::before,
.header nav ul li .visit-7::before,
.header nav ul li .explore-1::before,
.header nav ul li .explore-3::before,
.header nav ul li .explore-5::before,
.header nav ul li .learn-1::before,
.header nav ul li .learn-3::before,
.header nav ul li .learn-5::before,
.header nav ul li .athome-1::before,
.header nav ul li .athome-3::before,
.header nav ul li .athome-5::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: 100%;
  height: 100%;
  background: linear-gradient(160deg, rgba(0, 0, 0, 0.74), rgba(0, 0, 0, 0.4));
}

.header nav ul li .visit-1,
.header nav ul li .visit-2,
.header nav ul li .visit-3,
.header nav ul li .visit-5 {
  padding: 20px 9%;
  text-align: left;
}

.header nav ul li:hover > ul li > a .megamenu-btn,
.header nav ul li:focus > ul li > a .megamenu-btn {
  display: inline-block;
  text-transform: uppercase;
  padding: 0;
  margin-top: 16px;
  font-size: 14px;
  text-align: left;
}

.header nav ul li:hover > ul li > a .megamenu-btn::after,
.header nav ul li:focus > ul li > a .megamenu-btn::after {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f054";
  padding-top: 2px;
  padding-left: 8px;
}

/* has html elements in menu description*/

.header nav ul li.bcm-nav-visit li:first-child,
.header nav ul li.bcm-nav-visit li:nth-child(2) {
  padding: 30px 9%;
}

.search-toggle {
  color: var(--darkblue);
  font-size: 17px;
  padding-top: 1px;
  margin-top: 2px;
}

.header nav .searchform {
  opacity: 0;
  z-index: -1;
  color: white;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(3px);

  place-content: center;
  flex-direction: column;
  z-index: 9999;
  inset: 0 0 auto 0;
  position: fixed;
  padding: 3rem 5rem;
  margin-top: -204px;
  height: 0px;
  transition: opacity 0.4s ease, transform 0.4s ease;
  isolation: isolate;
}

@media (width < 767px) {
  .header nav .searchform {
    padding: 1.75rem;
  }
}

.searchform::before {
  position: absolute;
  content: "";
  top: 204px; /* offset starts below the searchform */
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 9998;
  height: 100vh;
  width: 100vw;
  display: none;
}

.searchform.opensearch::before {
  display: block;
}

.searchform > * {
  position: relative;
  z-index: 99999; /* Higher than the ::after pseudo-element */
}

.searchform form > div {
  display: grid;
  grid-template-columns: auto max-content;
  grid-template-rows: 1fr;
  padding-left: 30px;
}

.searchform input[type="text"] {
  padding: 14px;
  font-size: 17px;
  border: none;
  float: left;
  width: clamp(180px, 70vw, 500px);
  color: black;
  font-family: "Montserrat", sans-serif;
  background: transparent;
  border-bottom: solid rgba(46, 119, 208, 0.8) 2px;
}

.searchform input[type="text"]:focus-visible {
  outline: none;
  outline-offset: 3px;
}

.searchform .closebtn {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  cursor: pointer;
  opacity: 0.8;
  font-family: "Montserrat", sans-serif;
}

.searchform .closebtn:hover {
  color: #ccc;
}

.searchform .close-btn-x {
  display: flex;
  place-items: center;
  padding: 16px;
}

#searchform {
  display: flex;
  place-self: center;
  flex-direction: column;
}

@media (width < 767px) {
  #searchform {
    width: 100%;
  }

  .searchform form > div {
    padding-left: 10px;
  }

  .searchform input[type="text"] {
    width: 100%;
  }

  .searchform .closebtn {
    top: 0.5rem;
    right: 0.5rem;
  }
}

#searchform button {
  background: transparent;
  border: none;
  width: 30px;
  height: 40px;
  color: var(--blue);
  font-size: 20px;
}

.searchicon {
  position: relative;
}

/* .searchicon::after {
  position: absolute;
  content: "\f002";
  color: dodgerblue;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 22px;
  line-height: 0.8;
  padding-bottom: 2px;
  margin-left: -12px;
} */

/* ---------------------------- */
/*	MOBILE Menu   */
/* ---------------------------- */

.primary-header {
  display: grid;
  grid-template-columns: 1fr;
  justify-content: center;
}

.bcm-mobilemenu {
  --underline-gap: 2rem;
  background: white;
  justify-content: center;
}

#bcm-mobilemenu,
.bcm-mobilemenu {
  display: none;
}

#bcm-mobilemenu a {
  color: white;
}

.bcm-mobilemenu ul {
  list-style: none;
}

.bcm-mobilemenu li {
  padding: 20px;
}

.bcm-mobilemenu li a {
  color: black;
  margin: 0;
  text-decoration: none;
}

#nav-toggle {
  display: none;
  z-index: 9999 !important;
}

.search-toggle img {
  width: 16px;
  display: inline-block;
  margin-top: -6px;
}

@media only screen and (max-width: 767px) {
  .logo {
    padding: 0.25rem 0.25rem;
    width: 100%;
    max-width: 767px;
    text-align: left;
    align-items: flex-start;
    place-items: flex-start;
    place-self: flex-start;
    align-content: flex-start;
    margin-inline: unset;
  }

  .logo svg,
  .logo img {
    width: 120px;
    padding-bottom: 0.375rem;
  }

  header .nav {
    width: 100vw;
    padding-top: 0;
  }

  .header {
    place-items: normal start;
    padding: 0 1rem 0.25rem;
  }

  .header nav {
    width: 100%;
    grid-gap: 0.25rem;
  }

  #bcm-topmenu {
    display: none;
  }

  #bcm-mainmenu {
    display: none;
  }

  #bcm-mobilemenu,
  .bcm-mobilemenu {
    display: flex;
  }

  .header nav .nav-menu-column {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .header nav .nav-menu-column .nav-menu-col-top {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .header nav .nav-menu-column .nav-menu-col-main {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    place-items: flex-start;
  }

  .header nav .bcm-mobilemenu {
    background: var(--blue);
    text-align: left;
    text-transform: lowercase;
    color: white;
    align-items: center;
    z-index: 9990;

    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: auto;
    opacity: 0;

    width: 0px;
    transition: opacity 0.4s, width 0.6s;
  }

  .header nav .bcm-mobilemenu[data-mobile-visible="true"] {
    display: flex;
    width: 300px;
    opacity: 1;
  }

  .header nav .bcm-mobilemenu ul {
    display: flex;
    flex-direction: column;
  }

  .header nav .bcm-mobilemenu ul li {
    line-height: 1;
    border-bottom: 2px solid rgba(255, 255, 255, 0);
    margin-bottom: 12px;
    width: max-content !important;
    padding: 8px 3rem 8px 1.5rem;
    opacity: 0;
    transition: opacity 0.2s;
    font-weight: 400;
    font-size: 16px;
  }

  .header nav .bcm-mobilemenu[data-mobile-visible="true"] ul li {
    opacity: 1;
  }

  .header nav ul li a {
    padding: 3.5% 0;
  }

  .header nav .bcm-mobilemenu ul li:hover,
  .header nav .bcm-mobilemenu ul li:focus {
    border-bottom: solid 2px rgba(255, 255, 255, 0.6);
  }

  .search-toggle {
    position: absolute;
    top: 4rem;
    right: 4.75rem !important;
    padding: 5px 2px !important;
    z-index: 998;
    color: var(--blue);
    font-size: 25px;
    width: 25px;
  }

  .search-toggle img {
    width: 26px;
    margin-top: 0px;
  }
}

/* ////////////////////// */
.primary-menu-btn {
  z-index: 9999;
  cursor: pointer;
  display: none;
  position: absolute;
  top: 4rem;
  right: 1rem;
  margin-top: 3px;
}

#primary-menu-btn {
  color: black;
  background-color: rgba(255, 255, 255, 0);
  border: none;
  padding: 16px 6px;
  border-radius: 0;
}

@media (width > 767px) {
  .primary-menu-btn {
    display: none;
  }
}

@media (width < 767px) {
  .primary-menu-btn {
    display: block;
  }

  .primary-menu-btn span {
    margin: 0 auto;
    position: relative;
    top: 0px;
    transition-duration: 0s;
    transition-delay: 0.2s;
    transition: background-color 0.3s;
    z-index: 9999;
  }

  .primary-menu-btn span:before,
  .primary-menu-btn span:after {
    position: absolute;
    content: "";
    transition-property: margin, transform;
    transition-duration: 0.2s;
    transition-delay: 0.2s, 0;
  }

  .primary-menu-btn span,
  .primary-menu-btn span:before,
  .primary-menu-btn span:after {
    width: 32px;
    height: 3px;
    background: #2e77d0;
    border-radius: 4px;
    display: block;
    opacity: 1;
  }

  .primary-menu-btn span:before {
    margin-top: -10px;
  }

  .primary-menu-btn span:after {
    margin-top: 10px;
  }

  .primary-menu-btn.menu-active span {
    background: transparent;
    transition: 0s background-color;
  }

  .primary-menu-btn.menu-active span:before,
  .primary-menu-btn.menu-active span:after {
    margin-top: 0;
    transition-delay: 0;
    background: #fff;
    transition: transform 0.3s;
  }

  .primary-menu-btn.menu-active span:before {
    transform: rotate(45deg);
  }

  .primary-menu-btn.menu-active span:after {
    transform: rotate(-45deg);
  }
}

/* -------------------------------------------------------------------------- */
/*	Pages   */
/* -------------------------------------------------------------------------- */

.main-wrapper {
  display: grid;
  background: #fff;
}

.main-wrapper .container {
  display: grid;
}

.page-title .heading {
  font-size: 2rem;
  font-weight: bold;
  color: white;
}

/* -------------------------------------------------------------------------- */
/*	Footer   */
/* -------------------------------------------------------------------------- */

.container {
  display: grid;
  padding-inline: 2rem;

  text-align: center;
  place-items: center;
  margin-inline: auto;
}

.innercontainer {
  display: grid;
  max-width: 60rem;
  padding-bottom: 2rem;
}

.footer {
  gap: 2rem;
  padding-top: min(90px, 10vh);
  padding-bottom: 1rem;
}

.footer .footer-grid-inner {
  display: grid;
  text-align: left;
  gap: 2rem;
}

.footer .support-title {
  color: var(--darkgray);
  font-weight: 400;
}

.footer .footer-grid-inner p {
  margin-bottom: 16px;
  margin-top: 10px;
  line-height: 1.4;
}

.footer a {
  color: var(--darkgray);
}

.footer h3 {
  padding-bottom: 14px;
  border-bottom: solid var(--darkgray) 1px;
  border-bottom: solid #434242 1.5px;
  line-height: 1.2;
  margin-bottom: 20px;
  margin-top: 12px;
  font-weight: 600;
}

.footer .hours i,
.footer .location i {
  font-size: 22px;
}

.footer .footer-grid-inner .footer-menu-2 {
  margin-top: -2.375rem;
}

.footer ul {
  list-style: none;
  font-weight: bold;
}

.footer ul a {
  color: var(--darkgray);
  text-decoration: none;
}

.footer .location a {
  color: var(--darkgray);
}

.footer ul {
  margin-left: 0px;
}

.footer .social-icons {
  justify-content: center;
  padding: 45px 10px;
  margin-left: 2px;
}

.footer .social-icons li a {
  color: white;
}

.footer .social-icons li {
  background: var(--lightgray);
  width: 32px;
  aspect-ratio: 1;
  padding: 3px 2px 2px;
  padding-top: 6px;
  text-align: center;
  border-radius: 50%;
  margin-inline: 5px;
}

.footer .sponsors {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  width: 100%;
  gap: 2rem;
}

.footer .sponsors img {
  max-width: 110px;
}

.footer .sponsors img.squareish-sponsor {
  max-width: 90px;
}

.footer .sponsors img.square-sponsor {
  max-width: 60px;
}

.footer .footer-grid-inner .footer-menu-1 {
  padding-top: 4px;
}

.footer .footer-grid-inner .footer-menu-2 {
  padding-top: 4px;
}

.media-partner {
  font-size: 12px;
  margin-top: -34px;
  margin-bottom: 14px;
}

.footer .sponsor-heading {
  padding-bottom: 60px;
}

@media (min-width: 35.999rem) {
  .footer .footer-grid-inner .footer-menu-2 {
    margin-top: 0rem;
  }
}

@media (min-width: 40rem) and (max-width: 64.999rem) {
  .footer .footer-grid-inner {
    grid-template-columns: repeat(2, 1fr);
    gap: 6rem;
  }

  .footer .footer-grid-inner:nth-child(1n) {
    padding-left: 7%;
  }

  .footer .footer-grid-inner:nth-child(2n) {
    padding-left: 30%;
  }

  .footer .sponsor-heading {
    padding-inline: 10%;
    line-height: 1.8 !important;
  }

  .footer .sponsors {
    grid-template-columns: repeat(4, 1fr);
  }
}

#invisible-divider {
  display: none;
}

@media (min-width: 65rem) {
  .footer .sponsors {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px 50px;
  }

  .footer .sponsors > div:first-of-type {
    display: inline-grid;
  }

  #invisible-divider {
    width: 100%;
    display: block;
    color: white;
  }

  /* .footer .sponsors > div:not(#invisible-divider) {
    flex: 1;
  } */

  .footer .footer-grid-inner {
    grid-template-columns: 1fr 1fr 1fr 1fr;
    padding-right: 2rem;
  }

  .footer .footer-grid-inner .hours {
    padding-top: 12px;
    padding-right: clamp(10px, 12%, 80px);
  }

  .footer .footer-grid-inner .location {
    padding-top: 12px;
    padding-right: clamp(10px, 12%, 80px);
  }

  .footer .footer-grid-inner .footer-menu-1 {
    padding-left: 24%;
    border-left: solid var(--darkgray) 2px;
  }

  .footer .footer-grid-inner .footer-menu-2 {
    padding-left: 10%;
  }

  .media-partner {
    font-size: 12px;
    margin-left: -16px;
    margin-right: -2px;
    margin-top: -34px;
    margin-bottom: 10px;
  }

  .footer .sponsors img {
    width: 100%;
    max-width: 140px;
  }

  .footer .sponsors img.squareish-sponsor {
    max-width: 100px;
  }

  .footer .sponsors img.square-sponsor {
    max-width: 70px;
  }

  .footer .sponsor-heading {
    padding-bottom: 60px;
  }
}

/* -------------------------------------------------------------------------- */
/*	Popups   */
/* -------------------------------------------------------------------------- */

.exhibit-teal-title {
  color: var(--teal);
  display: inline-block;
  margin-right: 6px;
}

.exhibit-purple-title {
  color: var(--purple);
  display: inline-block;
  margin-right: 6px;
}

.exhibit-pink-title {
  color: var(--pink);
  display: inline-block;
  margin-right: 6px;
}

/* -------------------------------------------------------------------------- */
/*	Comments   */
/* -------------------------------------------------------------------------- */

/* Comment Headers ----------------------------- */

.comments-wrapper {
  margin-top: 3rem;
}

.comment-reply-title {
  margin: 0 0 4rem 0;
  text-align: center;
}

/* Comment Item ----------------------------- */

/* COMMENT HEADER */

.comments .comment,
.comments .pingback,
.comments .trackback,
.comments .review {
  padding-top: 3.5rem;
}

div.comment:first-of-type {
  margin-top: 3.5rem;
  padding-top: 0;
}

.comments .comments-header + div {
  margin-top: 0;
  padding-top: 0;
}

.comment-body {
  position: relative;
}

.comment .comment {
  padding-left: 5%;
}

.comment-meta {
  line-height: 1.1;
  margin-bottom: 0;
  min-height: 5rem;
  padding-left: 5rem;
  position: relative;
}

.hide-avatars .comment-meta {
  min-height: 0;
  padding-left: 0;
}

.comment-meta a {
  color: inherit;
}

.comment-author {
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: -0.027777778em;
}

.comment-author a {
  text-decoration: underline;
}

.comment-author a:hover,
.comment-author a:focus {
  text-decoration: none;
}

.comment-meta .avatar {
  height: 4rem;
  position: absolute;
  left: 0;
  top: 0;
  width: 4rem;
}

.comment-author .url {
  text-decoration: underline;
}

.comment-metadata {
  color: var(--gray);
  font-size: var(--font-small);
  font-weight: 500;
  margin-top: 0.6rem;
}

.comment-metadata a {
  text-decoration: none;
}

.comment-metadata a:focus,
.comment-metadata a:hover {
  text-decoration: underline;
}

/* COMMENT CONTENT */

.comment-content.entry-content
  > *:not(.alignwide):not(.alignfull):not(.alignleft):not(.alignright):not(
    .is-style-wide
  ) {
  width: 100%;
  background-color: var(--lightgray);
  padding: 0.5em;
}

.comment-content.entry-content .alignleft {
  /*rtl:ignore*/
  margin-left: 0;
}

.comment-content.entry-content .alignright {
  /*rtl:ignore*/
  margin-right: 0;
}

/* COMMENT FOOTER */

.comment-footer-meta {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  font-size: var(--font-small);
  font-weight: 600;
  justify-content: flex-start;
  letter-spacing: 0.030833333em;
  line-height: 1;
  margin: 1.5rem 0 -1rem -1.5rem;
  text-transform: uppercase;
}

.comment-footer-meta > * {
  margin: 0 0 1rem 1.5rem;
}

.comment-reply-link {
  background-color: var(--primary);
  border-radius: 2px;
  color: #fff;
  display: block;
  padding: 0.7rem;
}

.bypostauthor .comment-footer-meta .by-post-author {
  display: block;
}

.comment-footer-meta a {
  text-decoration: none;
}

.comment-footer-meta a:focus,
.comment-footer-meta a:hover {
  text-decoration: underline;
}

/* Pingbacks & Trackbacks ------------------------- */

.pingback .comment-meta,
.trackback .comment-meta {
  padding-left: 0;
}

/* Comments Pagination ---------------------------- */

.comments-pagination {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 6rem;
  text-align: center;
}

.comments-pagination.only-next {
  justify-content: flex-end;
}

.comments-pagination .page-numbers {
  display: none;
  text-decoration: none;
}

.comments-pagination .page-numbers:focus,
.comments-pagination .page-numbers:hover {
  text-decoration: underline;
}

.comments-pagination .prev,
.comments-pagination .next {
  display: block;
}

.comments-pagination .prev {
  left: 0;
}

.comments-pagination .next {
  right: 0;
  text-align: right;
}

/* Comment Respond ---------------------------- */

.comment-respond::after {
  clear: both;
  content: "";
  display: block;
}

.comment-respond .comment-notes,
.comment-respond .logged-in-as {
  color: #6d6d6d;
  font-size: 1.6rem;
  line-height: 1.4;
  margin: -3rem 0 4rem 0;
  text-align: center;
}

.comment-respond .comment-notes a,
.comment-respond .logged-in-as a {
  color: inherit;
  text-decoration: none;
}

.comment-respond .comment-notes a:focus,
.comment-respond .comment-notes a:hover,
.comment-respond .logged-in-as a:focus,
.comment-respond .logged-in-as a:hover {
  text-decoration: underline;
}

.comment-respond p {
  line-height: 1.1;
  margin-bottom: 2rem;
  margin-left: auto;
  margin-right: auto;
}

.comment-respond p:not(.comment-notes) {
  max-width: 58rem;
}

.comment-form-cookies-consent {
  align-items: baseline;
  display: flex;
}

.comment-respond > p:last-of-type {
  margin-bottom: 0;
}

.comment-respond label {
  display: block;
}

.comment-respond input[type="checkbox"] + label {
  font-size: 1.5rem;
  line-height: 1.25;
}

.comment-respond input[type="text"],
.comment-respond input[type="email"],
.comment-respond textarea {
  margin-bottom: 0;
}

.comment-respond textarea {
  height: 15rem;
}

.comment-respond #submit {
  display: block;
}

.comment-respond .comments-closed {
  text-align: center;
}

/* Reply Respond ---------------------------- */

.comments .comment-respond {
  padding: 3rem 0 0;
}

.comments .comment-respond .comment-reply-title,
.comments .comment-respond .comment-notes,
.comments .comment-respond .logged-in-as {
  text-align: left;
}

.comment-reply-title small {
  display: block;
  font-size: 1.6rem;
  font-weight: 600;
  letter-spacing: -0.0277em;
  margin: 0.5rem 0 0 0;
  white-space: nowrap;
}

.comment-reply-title small a {
  text-decoration: none;
}

.comment-reply-title small a:focus,
.comment-reply-title small a:hover {
  text-decoration: underline;
}

/* -------------------------------------------------------------------------- */
/*	Custom Scripts */
/* -------------------------------------------------------------------------- */

.twirl-grid-two-col > div {
  padding-right: 20px;
}

.twirl-grid-two-col {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  line-height: 2;
}

@media only screen and (min-width: 50rem) {
  .twirl-grid-two-col {
    grid-template-columns: 1fr 1fr;
  }
}

/* podcast script styling, base for other scripts */

.podcast-subscribe {
  background-image: linear-gradient(
    to right,
    #76bc21,
    #f3fbe9,
    #f3fbe9,
    #f3fbe9,
    #f3fbe9,
    #76bc21
  );
  text-align: center;
}

.podcast-subscribe ul#horizontal-list {
  list-style: none;
  padding-top: 10px;
  padding-bottom: 8px;
}

.podcast-subscribe ul#horizontal-list li {
  display: inline;
}

.podcast-grid,
.artists-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-top: 20px;
}

@media only screen and (max-width: 60rem) {
  .podcast-grid,
  .artists-grid {
    display: grid;
    grid-template-columns: 1fr;
  }
}

.card-content {
  background: #ffffff;
  border: 4px;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
  /* margin: 30px; */
}

.card-img {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  z-index: 1;
  /* -webkit-box-shadow: 0 8px 6px -6px black;
	   -moz-box-shadow: 0 8px 6px -6px black;
	        box-shadow: 0 8px 6px -6px black; */
  border-bottom: 1px solid #f1f1f1;
}

.card-img img {
  width: 100%;
  height: auto;
  display: block;
  position: relative;
}

.card-img span {
  position: absolute;
  top: 15%;
  left: 12%;
  background: #1abc9c;
  padding: 6px;
  color: #fff;
  font-size: 12px;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
  transform: translate(-50%, -50%);
}

.card-content h4 {
  position: absolute;
  top: 1rem;
  left: 1rem;
  font-size: 12px;
  font-weight: 400;
  margin: 0;
  line-height: 0;
  text-align: center;
  padding: 10px 8px;
  background-color: #76bc21;
  border-radius: 6px;
  color: white;
}

.card-desc {
  padding: 1rem 2rem !important;
}

.card-desc h3 {
  color: #000000;
  font-weight: 600 !important;
  font-size: 1.375em;
  line-height: 1.3em;
  margin-top: 18px;
  margin-bottom: 16px;
  padding: 0;
}

.card-desc,
.card-desc > div:first-of-type,
.card-desc p {
  color: #747373;
  font-size: 14px;
  font-weight: 400;
  font-size: 1em;
  line-height: 1.5;
  margin: 0px;
  margin-bottom: 20px;
  padding: 0;
  padding-bottom: 20px;
}

.card-info-bottom {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
}

/* styling adjustments for other scripts using above base styling */

.artists-more {
  font-weight: 500;
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 15px;
  margin: 0;
  line-height: 0;
  text-align: center;
  padding: 16px 18px;
  background-color: #76bc21;
  border-radius: 8px;
  color: white !important;
}

a.artists-more {
  color: white !important;
}

.card-info-bottom__artist {
  font-size: 12px !important;
  margin-bottom: 0px;
}

.artist__project-ages,
.artist__project-category {
  font-weight: bold;
  position: relative;
  font-size: 12px;
  margin-right: 4px;
  color: #212121;
}

.artist__project-ages::after,
.artist__project-category::after {
  font-weight: bold;
  position: absolute;
  content: ":";
  font-size: 12px;
}

.artists-grid .card-desc > div:first-of-type {
  margin-bottom: 0px;
}

/* -------------------------------------------------------------------------- */
/*	Careers Accordians */
/* -------------------------------------------------------------------------- */

.job-accordion {
  background-color: #fff;
  margin-bottom: 2px;
  border-bottom: solid purple 2px;
  color: #444;
  cursor: pointer;
  padding: 10px 18px;
  width: 100%;
  text-align: left;
  border: none;
  outline: none;
  transition: 0.4s;
}

.active,
.job-accordion:hover {
  background-color: purple;
  color: white;
}

.job-accordion--title {
  color: var(--purple);
}

.job-accordion:after {
  content: "\02795";
  font-size: 13px;
  color: purple;
  float: right;
  margin-left: 5px;
}

.job-accordion:after .job-accordion--title {
  color: white;
}

.active:after {
  content: "\2796";
  color: white;
}

.panel {
  padding: 0 18px;
  background-color: white;
  /* display: none; */
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
}

/* -------------------------------------------------------------------------- */
/*	Forms */
/* -------------------------------------------------------------------------- */

.wpcf7 {
  margin-top: 40px;
}

.wpcf7 .bcm-form-53-select select {
  width: 90%;
}

div.bcm-form-53 input,
div.bcm-form-53 select,
div.bcm-form-70 input,
div.bcm-form-34 input,
div.bcm-form-34 select {
  width: 90%;
}

.bcm-form-34 {
  display: inline-block;
  width: calc(
    34% - var(--form-input-border-width-inline)
  ); /*border-width left & right*/
}

.bcm-form-32 {
  display: inline-block;
  width: calc(
    32% - var(--form-input-border-width-inline)
  ); /*border-width left & right*/
}

.bcm-form-53 {
  display: inline-block;
  width: calc(
    53% - var(--form-input-border-width-inline)
  ); /*border-width left & right*/
}

.bcm-form-47 {
  display: inline-block;
  width: calc(
    47% - var(--form-input-border-width-inline)
  ); /*border-width left & right*/
}

.bcm-form-70 {
  display: inline-block;
  width: calc(70% - var(--form-input-border-width-inline));
}

.bcm-form-30 {
  display: inline-block;
  width: calc(30% - var(--form-input-border-width-inline));
}

.bcm-form-100 {
  display: inline-block;
  width: calc(100% - var(--form-input-border-width-inline));
}

div.time-hour input,
div.time-minute input,
div.time-am-pm radio {
  width: 90%;
}

.time-hour {
  display: inline-block;
  width: calc(20% - var(--form-input-border-width-inline));
}

.time-minute {
  display: inline-block;
  width: calc(20% - var(--form-input-border-width-inline));
}

.time-colon-53 {
  display: inline-block;
  width: calc(4% - var(--form-input-border-width-inline));
}

.time-colon-47 {
  display: inline-block;
  width: calc(6% - var(--form-input-border-width-inline));
  text-align: center;
}

.time-am-pm-53 {
  display: inline-block;
  width: calc(56% - var(--form-input-border-width-inline));
}

.time-am-pm-47 {
  display: inline-block;
  width: calc(54% - var(--form-input-border-width-inline));
}

@media only screen and (max-width: 55rem) {
  div.bcm-form-53 input,
  div.bcm-form-53 select,
  div.bcm-form-70 input,
  div.bcm-form-34 input,
  div.bcm-form-34 select,
  div.bcm-form-32 select {
    width: 100%;
  }

  .bcm-form-53,
  .bcm-form-47,
  .bcm-form-70,
  .bcm-form-30,
  .bcm-form-34,
  .bcm-form-32 {
    width: calc(100% - var(--form-input-border-width-inline));
  }

  div.time-hour input,
  div.time-minute input,
  div.time-am-pm radio {
    width: 100%;
  }

  /* 	.time-hour-15,
	.time-minute-15,
	.time-am-pm-23,
	.time-am-pm-17 {
  	width: calc(100% - var(--form-input-border-width-inline));
	} */
}

abbr {
  border-bottom: none !important;
  cursor: inherit !important;
  text-decoration: none !important;
}

.bcm-form-required-symbol {
  font-size: 16px;
  color: red;
  display: inline-block;
  margin-top: 10px;
}

abbr.bcm-form-required {
  color: red;
}

.bcm-form-required {
  font-size: 13px;
  display: inline-block;
  margin-top: 8px;
}

.form-details-muted {
  display: block;
  color: #6e6e6e;
  margin-top: 4px;
  margin-bottom: 12px;
}

.bcm-form input,
.wpcf7 input,
.wpcf7 select,
.wpcf7 textarea {
  border-radius: 4px;
  padding: 4px;
  width: 100%;
  border: solid var(--blue) var(--form-input-border-width);
}

.wpcf7 input[type="checkbox"],
.wpcf7 input[type="radio"] {
  width: 20px;
}

/* .wpcf7 select {
	-webkit-appearance:none;
} */

.bcm-form label {
  margin-top: 0px;
  margin-bottom: 8px;
  line-height: 1.4;
  width: 100%;
  display: block !important;
}

.checkbox-label {
  display: inline-block;
  margin-top: 20px;
}

.wpcf7 label {
  margin-top: 20px;
  margin-bottom: 0px;
  line-height: 1.4;
  width: 100%;
  display: block !important;
}

.wpcf7 .wpcf7-radio .wpcf7-list-item label {
  margin-top: 0px;
}

.wpcf7 .multi-input-label {
  margin-top: 20px;
}

.form-disclaimer {
  margin-bottom: 12px;
}

textarea.wpcf7-form-control,
select.wpcf7-form-control,
input.wpcf7-form-control {
  margin-top: 12px;
  margin-bottom: 20px;
}

.graphics-request-form input.wpcf7-form-control {
  margin-top: 0px;
}

div.multi-input-label > span.form-details-muted {
  margin-bottom: -4px !important;
}

.bcm-form-submit-container-center {
  text-align: center;
  margin-inline: auto;
  margin-top: 20px;
  margin-bottom: 40px;
}

.bcm-form-submit-btn {
  text-align: center;
  display: inline-block;
}

.wpcf7-submit {
  border: solid var(--blue) 0px !important;
  background-color: var(--blue);
  color: white;
  font-weight: 500;
  padding: 12px 8px !important;
  border-radius: 10px;
  font-family: inherit;
  margin-top: 20px;
}

.bcm-form-submit {
  max-width: 160px;
}

/* birthday form */

.bcm-form__birthday {
  margin-top: -30px;
}

.bcm-form__birthday input {
  border-color: #7528b8;
}

.bcm-form__birthday div {
  margin-top: 20px !important;
}

.bcm-form-submit {
  border: solid #451665 0px !important;
  background-color: #451665;
  color: white;
  font-weight: 500;
  padding: 12px 28px !important;
  border-radius: 10px;
  font-family: inherit;
  max-width: 150px;
  margin-top: 34px;
}

/* .bcm-form__birthday div:nth-of-type(odd) input {
  width: 90%;
} */

.page-id-8938
  .elementor-4096
  .elementor-element.elementor-element-128802c6
  > .elementor-container,
.page-id-8942
  .elementor-4096
  .elementor-element.elementor-element-128802c6
  > .elementor-container,
.page-id-8385
  .elementor-4096
  .elementor-element.elementor-element-128802c6
  > .elementor-container,
.page-id-5851
  .elementor-4096
  .elementor-element.elementor-element-128802c6
  > .elementor-container,
.page-id-9451
  .elementor-4096
  .elementor-element.elementor-element-128802c6
  > .elementor-container,
.page-id-9487
  .elementor-4096
  .elementor-element.elementor-element-128802c6
  > .elementor-container,
.page-id-9496
  .elementor-4096
  .elementor-element.elementor-element-128802c6
  > .elementor-container,
.page-id-9501
  .elementor-4096
  .elementor-element.elementor-element-128802c6
  > .elementor-container,
.page-id-9505
  .elementor-4096
  .elementor-element.elementor-element-128802c6
  > .elementor-container,
.page-id-9516
  .elementor-4096
  .elementor-element.elementor-element-128802c6
  > .elementor-container,
.page-id-9521
  .elementor-4096
  .elementor-element.elementor-element-128802c6
  > .elementor-container,
.page-id-9534
  .elementor-4096
  .elementor-element.elementor-element-128802c6
  > .elementor-container,
.page-id-9648
  .elementor-4096
  .elementor-element.elementor-element-128802c6
  > .elementor-container,
.page-id-4919
  .elementor-4096
  .elementor-element.elementor-element-128802c6
  > .elementor-container,
.page-id-9714
  .elementor-4096
  .elementor-element.elementor-element-128802c6
  > .elementor-container,
.page-id-7002
  .elementor-4096
  .elementor-element.elementor-element-128802c6
  > .elementor-container,
.page-id-10086
  .elementor-4096
  .elementor-element.elementor-element-128802c6
  > .elementor-container,
.page-id-4905
  .elementor-4096
  .elementor-element.elementor-element-128802c6
  > .elementor-container,
.page-id-2209
  .elementor-4096
  .elementor-element.elementor-element-128802c6
  > .elementor-container,
.page-id-10969
  .elementor-4096
  .elementor-element.elementor-element-128802c6
  > .elementor-container,
.page-id-11185
  .elementor-4096
  .elementor-element.elementor-element-128802c6
  > .elementor-container,
.page-id-11194
  .elementor-4096
  .elementor-element.elementor-element-128802c6
  > .elementor-container,
.page-id-11199
  .elementor-4096
  .elementor-element.elementor-element-128802c6
  > .elementor-container,
.page-id-12058
  .elementor-4096
  .elementor-element.elementor-element-128802c6
  > .elementor-container,
.page-id-11331
  .elementor-4096
  .elementor-element.elementor-element-128802c6
  > .elementor-container,
.page-id-11351
  .elementor-4096
  .elementor-element.elementor-element-128802c6
  > .elementor-container {
  min-height: 0vh;
  display: none;
}

.page-id-8938 h2.wp-block-post-title,
.page-id-8942 h2.wp-block-post-title,
.page-id-8385 h2.wp-block-post-title,
.page-id-5851 h2.wp-block-post-title,
.page-id-9451 h2.wp-block-post-title,
.page-id-9487 h2.wp-block-post-title,
.page-id-9496 h2.wp-block-post-title,
.page-id-9501 h2.wp-block-post-title,
.page-id-9505 h2.wp-block-post-title,
.page-id-9516 h2.wp-block-post-title,
.page-id-9521 h2.wp-block-post-title,
.page-id-9534 h2.wp-block-post-title,
.page-id-4919 h2,
.page-id-9714 h2.wp-block-post-title,
.page-id-7002 h2.wp-block-post-title,
.page-id-10086 h2.wp-block-post-title,
.page-id-10969 h2,
.page-id-11185 h2,
.page-id-11194 h2,
.page-id-11199 h2,
.page-id-12058 h2 {
  color: var(--blue);
  text-align: center;
  padding-bottom: 40px;
}

.bcm-button_activites-archive_wrapper {
  text-align: center;
}

.bcm-button_activites-archive {
  display: inline-block;
  cursor: pointer;
  font-weight: 400;
  padding: 0.5rem 1.125rem;
  transition: all 0.4s ease-in-out;
  background: var(--blue);
  color: white !important;
  margin: 8px auto 40px !important;
  border-radius: 10px;
}

.elementor-button {
  border-radius: 10px !important;
  padding: 14px 28px 14px 28px !important;
}

.bcm-holidayhours {
  /*     visibility: hidden; */
  max-height: 0px;
  overflow: hidden;
  -webkit-transition: max-height 1.2s ease;
  -moz-transition: max-height 1.2s ease;
  -o-transition: max-height 1.2s ease;
  transition: max-height 1.2s ease;
}

.bcm-holidayhours.showHolidayHours {
  /* 	visibility: visible; */
  /*     overflow: visible; */
  max-height: 1060px;
  transition: max-height 1.6s ease;
}

/* .bcm-popup_exhibit .elementor-popup-modal .dialog-message {
	overflow: hidden !important;
} */

.bcm-popup_exhibit .elementor-widget:not(:last-child) {
  margin-bottom: 0px !important;
}

/* .elementor-4096 .elementor-element.elementor-element-32a12314 > .elementor-widget-container {
    padding: 32px 70px 32px 70px;
    background-color: #D64309BF;
}
} */

/* mobile menu toggle button */
.mobile-menu-toggle {
  position: absolute;
  display: block;
  width: 30px;
  height: 28px;
  top: 2.5rem;
  right: 4.25rem;
  margin: 0px;
  margin-bottom: 1rem;
  z-index: 9998;
}

.mobile-menu-toggle span {
  margin: 0 auto;
  position: relative;
  top: 12px;
  transition-duration: 0s;
  transition-delay: 0.2s;
  transition: background-color 0.3s;
}

.mobile-menu-toggle span:before,
.mobile-menu-toggle span:after {
  position: absolute;
  content: "";
}

.mobile-menu-toggle span,
.mobile-menu-toggle span:before,
.mobile-menu-toggle span:after {
  width: 30px;
  height: 2px;
  background-color: var(--blue);
  display: block;
  border-radius: 6px;
  opacity: 1;
}

.mobile-menu-toggle span:before {
  margin-top: -11px;
  transition-property: margin, transform;
  transition-duration: 0.2s;
  transition-delay: 0.2s, 0;
}

.mobile-menu-toggle span:after {
  margin-top: 11px;
  transition-property: margin, transform;
  transition-duration: 0.2s;
  transition-delay: 0.2s, 0;
}

.menu-toggle-active span {
  background-color: rgba(0, 0, 0, 0);
  transition: 0.3s background-color;
}
.menu-toggle-active span:before {
  margin-top: 0;
  background-color: white;
  transform: rotate(45deg);
  transition-delay: 0, 0.2s;
}
.menu-toggle-active span:after {
  margin-top: 0;
  background-color: white;
  transform: rotate(-45deg);
  transition-delay: 0, 0.2s;
}

.dialog-widget-content {
  border: solid white 1px;
}

.wp-block-button__link {
  font-family: "Montserrat", Sans-serif;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  fill: #ffffff;
  color: #ffffff;
  background-color: var(--e-global-color-f080d13);
  border-radius: 8px;
  padding: 10px 24px;
}

div.wp-block-button a.wp-block-button__link {
  color: white;
}

p.bcm-wp-link a {
  display: inline-block;
  font-family: "Montserrat", Sans-serif;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  fill: #ffffff;
  color: #ffffff;
  background-color: var(--e-global-color-f080d13);
  border-radius: 8px;
  padding: 10px 24px;
}

.bcm-STEAM-layer {
  position: relative;
}

.bcm-STEAM-layer::after {
  position: absolute;
  content: url(https://wp.bostonkids.opalstacked.com/wp-content/uploads/2022/07/STEAM_line-sm.png);
  top: 1.75rem;
  right: 6%;
  transition: all 0.1s ease;
}

@media only screen and (max-width: 70rem) {
  .bcm-STEAM-layer::after {
    right: 5%;
  }
}

@media only screen and (max-width: 64rem) {
  .bcm-STEAM-layer::after {
    top: 1.25rem;
    right: -6%;
  }
}

@media only screen and (max-width: 50rem) {
  .bcm-STEAM-layer::after {
    content: "";
  }
}

.evo_lightboxes h1,
.evo_lightboxes h2,
.evo_lightboxes h3,
.evo_lightboxes h4,
.evo_lightboxes h5,
.evo_lightboxes h6,
.evo_lightboxes p,
.evcal_event_title {
  text-transform: none !important;
}

/*  -------------------------------- */
/*  Exhibits ------------------ */
/*  -------------------------------- */

#main p {
  color: #3e3e3e;
  font-family: "Montserrat", Sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.7em;
  letter-spacing: 0px;
}

.bcm-container {
  width: min(calc(100%-2rem), 60rem);
  padding-inline: 3rem;
  margin-inline: auto;
  margin-top: 100px;
}

.single-exhibit-header {
  position: fixed;
  top: 3rem;
  left: 2rem;
  z-index: 9999;
}

.exhibit-floor-title {
  margin-top: 60px;
}

.exhibit-item-grid {
  display: grid;
  grid-auto-rows: 1fr;
  gap: 3rem;
  margin-inline: auto;
  margin-top: 40px;
  margin-bottom: 60px;
}

@media only screen and (min-width: 40rem) {
  .exhibit-item-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media only screen and (min-width: 50rem) {
  .exhibit-item-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

.exhibit-item {
  width: 100%;
  aspect-ratio: 1.3;
  display: grid;
  align-content: flex-end;
}

.elementor-kit-6 p.exhibit-title {
  margin-bottom: 0;
}

.exhibit-item-grid a {
  text-decoration: none;
}

.exhibit-title {
  color: white;
  padding: 12px 20px 10px 20px;
  background-color: #016a62ba;
  text-align: center;
  text-decoration: none;
}

.exhibit-title-first-floor {
  background-color: #016a62ba;
}

.exhibit-title-second-floor {
  background-color: #401665cc;
}

.exhibit-title-third-floor {
  background-color: #bf1c7fba;
}

.single-exhibit-pagebody {
  /* background: linear-gradient(to top, black, rgba(0, 0, 0, 0.8)),
      url(./images/bcmhome.png);
    backdrop-filter: blue(3px);
    background-size: contain;
    background-position: top center;
    background-repeat: no-repeat; */
  background-color: #0a0a0aed;
  box-shadow: 0 0 40px black;
  display: grid;
  place-items: center;
  position: absolute;
  width: 100vw;
  height: 100vh;
}

.single-exhibit-container {
  max-width: 840px;
  /* max-height: 540px; */
  min-height: 540px;
  margin-inline: auto;
  margin-bottom: 70px;
  background-color: #fff;
  position: relative;
  display: grid;
  grid-template-columns: 1.8fr 3fr;
}

.single-exhibit-close {
  position: absolute;
  top: 1.75rem;
  right: 2rem;
  font-size: 50px;
  text-decoration: none;
}

.single-exhibit-title {
  background-color: #00827b;
  color: white;
  font-size: 22px;
  font-weight: 400;
  display: inline-block;
  padding: 14px 70px;
  text-align: center;
  position: absolute;
  top: 2rem;
  left: 50%;
  transform: translateX(-50%);
}

.single-exhibit-image {
  background-size: cover;
  background-position: center center;
  height: 100%;
  min-height: 200px;
}

.single-exhibit-content {
  padding: 3rem;
  padding-top: 9rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.exhibit-controls {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
}

.exhibit-bcm-logo {
  max-width: 100px;
}

/*  -------------------------------- */
/*  Exhibits ------------------ */
/*  -------------------------------- */

#main p {
  /* color: #3e3e3e; */
  font-family: "Montserrat", Sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.7em;
  letter-spacing: 0px;
}

/*  -------------------------------- */
/*  Frontpage ------------------ */
/*  -------------------------------- */

#main section.bcm-new-container {
  width: min(70rem, 100% - 2rem);
  margin-inline: auto;
  /* padding-inline: 2rem; */
}

.bcm-new-container {
  width: min(70rem, 100% - 2rem);
  margin-inline: auto;
  /* padding-inline: 2rem; */
}

@media (min-width: 40rem) {
  #main section.bcm-new-container {
    width: min(70rem, 100% - 6rem);
    margin-inline: auto;
    /* padding-inline: 2rem; */
  }

  .bcm-new-container {
    width: min(70rem, 100% - 6rem);
    margin-inline: auto;
    /* padding-inline: 2rem; */
  }
}

/*
#main section {
  width: minmax(100%-2rem, 71.25rem);
  margin-inline: auto;
} */

.video-full {
  width: 100%;
  height: 44vh;
  object-fit: cover;
}

.bcm-page-title-container {
  display: grid;
  /*   width: 100vw; */
  place-items: center;
  position: relative;
  z-index: 999;
}

.bcm-page-title {
  display: inline-block;
  padding: 24px 20px;
  font-size: 28px;
  font-weight: 400;
  color: white;
  background-color: #00827cf9;
  margin-top: -38px;
  text-align: center;
}

@media (min-width: 40rem) {
  .video-full {
    width: 100%;
    height: 54vh;
    object-fit: cover;
  }

  .bcm-page-title {
    background-color: #00827ce3;
    margin-top: -80px;
    font-size: 34px;
    padding: 30px 40px;
  }
}

.grid-circles {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2.5rem 1rem;
  align-content: center;
  justify-items: space-between;
  margin-top: 4rem;
  margin-bottom: 1rem;
}

.grid-circles-hover {
  transition: transform 0.2s ease-in-out;
  transform: scale3d(1, 1, 1);
  cursor: pointer;
}

.grid-circles-hover:hover {
  transform: scale3d(1.1, 1.1, 1);
}

.grid-circles a {
  display: block;
}

/* .grid-circles a:nth-of-type(5) {
  grid-column: 1/-1;
} */

.grid-circles .circle-col svg,
.grid-circles .circle-col img {
  width: 100%;
  max-width: 90px;
}

@media (min-width: 40rem) and (width < 66rem) {
  .grid-circles {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 3rem 1rem;
    place-items: center;
  }

  /* .grid-circles div {
    outline: solid red 1px;
  } */

  /* .grid-circles a:nth-of-type(1) {
    grid-column: 1/2;
  }

  .grid-circles a:nth-of-type(2) {
    grid-column: 3/4;
  }

  .grid-circles a:nth-of-type(3) {
    grid-column: 5/6;
  }

  .grid-circles a:nth-of-type(4) {
    grid-column: 1/4;
    margin-left: 90px;
  }

  .grid-circles a:nth-of-type(5) {
    grid-column: 4/7;
    margin-right: 90px;
  } */

  .grid-circles .circle-col svg,
  .grid-circles .circle-col img {
    width: 100%;
    max-width: 100px;
  }
}

@media (min-width: 66rem) {
  .grid-circles {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

  /* .grid-circles a:nth-of-type(5) {
    grid-column: 5/6;
  } */

  .grid-circles .circle-col svg,
  .grid-circles .circle-col img {
    width: 100%;
    max-width: 100px;
  }
}

.grid-circles div {
  text-align: center;
}

.grid-circles .heading {
  color: #3f3f3f;
  font-size: 16px;
  margin-top: 1.5rem;
}

#main section.bcm-new-container.grid-boxes {
  padding-inline: 2rem !important;
}

.colorblock-box {
  display: grid;
  grid-template-columns: 1fr;
  max-width: 1300px;
  margin-inline: 16px;
  margin-top: 3rem;
  margin-bottom: 6rem;
}

/* .colorblock-box-hover-hover {
  transition: transform 2s ease-in-out;
  transform: scale3d(1, 1, 1);
  cursor: pointer;
}

.colorblock-box-hover:hover {
  transform: scale3d(1.03, 1.03, 1.03);
} */

a.home-block + a.home-block {
  display: block;
  margin-top: 70px;
}

@media (min-width: 54rem) {
  .colorblock-box {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr;
  }
}

#main .colorblock-box h2 {
  color: white;
}

#main .colorblock-box p {
  color: #ffffff;
  font-size: 15px;
}

@media (min-width: 54rem) {
  #main .colorblock-box p {
    font-size: 16px;
  }
}

.colorblock-box h2 {
  border-bottom: 2px solid transparent;
  display: inline-block;
  font-size: 26px;
  font-weight: 500 !important;
  letter-spacing: 0;
  margin-bottom: 18px;
  margin-top: 0;
  padding-bottom: 4px;
}

@media (min-width: 54rem) {
  .colorblock-box h2 {
    font-size: 28px;
  }
}

.colorblock-box h2 {
  border-bottom: 2px solid rgba(255, 255, 255, 0);
  transition: border-color 0.2s ease;
}

.colorblock-box:hover h2,
.colorblock-box:focus h2 {
  border-bottom: 2px solid white;
}

.colorblock-box-content {
  align-self: center;
  padding: 40px 40px 26px;
}

@media (min-width: 54rem) {
  .colorblock-box-content {
    padding: 3rem 3.75rem;
  }
}

.colorblock-box-pink {
  background: var(--pink);
}

.colorblock-box-image-pink {
  box-shadow: -16px -16px 0 #bf1c7ee2 !important;
  order: -1;
}

@media (min-width: 54rem) {
  .colorblock-box-image-pink {
    box-shadow: -16px -16px 0 #bf1c7ee2 !important;
    order: unset;
  }
}

.colorblock-box-orange {
  background: var(--orange);
}

.colorblock-box-image-orange {
  box-shadow: -16px -16px 0 #d64308cf !important;
  order: -1;
}

@media (min-width: 54rem) {
  .colorblock-box-image-orange {
    box-shadow: 16px -16px 0 #d64308cf !important;
    order: unset;
  }
}

.colorblock-box-blue {
  background: var(--blue);
}

.colorblock-box-image-blue {
  box-shadow: -16px -16px 0 #6f9bdd;
  order: -1;
}

@media (min-width: 44rem) {
  .colorblock-box-image-blue {
    max-height: 670px;
  }
}

@media (min-width: 54rem) {
  .colorblock-box-image-blue {
    order: unset;
    box-shadow: 16px -16px 0 #6f9bdd;
  }
}

.colorblock-box-purple {
  background: var(--purple);
}

.colorblock-box-image-purple {
  box-shadow: -16px -16px 0 #401665c5 !important;
  order: -1;
}

@media (min-width: 54rem) {
  .colorblock-box-image-purple {
    order: unset;
    box-shadow: -16px -16px 0 #401665c5 !important;
  }
}

.colorblock-box-teal {
  background: var(--teal);
}

.colorblock-box-image-teal {
  box-shadow: -16px -16px 0 #00827b !important;
  order: -1;
}

@media (min-width: 54rem) {
  .colorblock-box-image-teal {
    order: unset;
    box-shadow: 16px -16px 0 #00827b !important;
  }
}

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

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

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

.grid-boxes {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 3.5rem;
  margin-top: 3rem;
}

@media (min-width: 40rem) {
  .boxes {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
  }
}

@media (min-width: 56rem) {
  .grid-boxes {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 4rem 6rem;
  }

  .boxes {
    display: block;
  }
}

.grid-boxes div img {
  width: 100%;
  aspect-ratio: 01.2;
  object-fit: cover;
  box-shadow: -15px -14px 0px 0px #797473;
  max-height: 280px;
}

.grid-boxes .boxes-orange img {
  box-shadow: -15px -14px 0px 0px #d64309;
}

.grid-boxes .boxes-teal img {
  box-shadow: -15px -14px 0px 0px #01837c;
}

.grid-boxes .boxes-blue img {
  box-shadow: -15px -14px 0px 0px #3d77d0;
}

.grid-boxes .boxes-pink img {
  box-shadow: -15px -14px 0px 0px #bf1c7f;
}

.grid-boxes .boxes-purple img {
  box-shadow: -15px -14px 0px 0px #401665;
}

.grid-boxes h2 {
  display: inline-block;
  color: #202020;
  font-size: 24px;
  font-weight: 500;
  margin: 1rem 0 1rem;
  line-height: 1.3;
}

@media (min-width: 56rem) {
  .grid-boxes h2 {
    margin: 1.5rem 0 0.75rem;
  }
}

.grid-boxes .boxes-orange h2 {
  color: #d64309;
}

.grid-boxes .boxes-orange h2:hover {
  text-decoration: 2px #d64309 underline;
  text-underline-offset: 4px;
}

.grid-boxes .boxes-teal h2 {
  color: #36827a;
}

.grid-boxes .boxes-teal h2:hover {
  text-decoration: 2px #36827a underline;
}

.grid-boxes .boxes-blue h2 {
  color: #3d77d0;
}

.grid-boxes .boxes-blue h2:hover {
  text-decoration: underline 2px #3d77d0;
}

.grid-boxes .boxes-pink h2 {
  color: #bf1c7f;
}

.grid-boxes .boxes-pink h2:hover {
  text-decoration: underline 2px #bf1c7f;
}

.grid-boxes .boxes-purple h2 {
  color: #401665;
}

.grid-boxes .boxes-purple h2:hover {
  text-decoration: underline 2px #401665;
}

.bottom-banner {
  min-height: 50vh;
  display: grid;
  place-items: center;
  background-image: url("./wp-content/themes/WP%20BCM/images/IMG_7297H-scaled.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  margin-top: 100px;
}

@media (min-width: 56rem) {
  .bottom-banner {
    background-attachment: fixed;
    background-size: auto;
  }
}

.bottom-banner a {
  text-decoration: none;
}

.bottom-banner h2 {
  background-color: #401665c2;
  padding: 30px 70px;
  color: white;
  font-weight: 400;
  font-size: 30px;
  text-align: center;
}

.bottom-banner h2:hover {
  text-decoration: 2px rgba(255, 255, 255, 0.814) underline;
  text-underline-offset: 6px;
}

.iconbox {
  transition: transform 0.2s ease-in-out;
  transform: scale3d(1, 1, 1);
  cursor: pointer;
}

.iconbox:hover {
  transform: scale3d(1.1, 1.1, 1);
}

.imgbox img {
  transition: all 0.2s ease-in-out;
  cursor: pointer;
  filter: none;
  -webkit-filter: blur(0px);
  -moz-filter: blur(0px);
  -ms-filter: blur(0px);
  filter: progid:DXImageTransform.Microsoft.Blur(PixelRadius='0');
  image-rendering: high-quality;
}

.imgbox img:hover {
  transform: scale(1.05) rotate(0.00000000001deg);
}

/* @media (min-width: 1400px) {
  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl,
  .container-xxl {
    width: minmax(100%-2rem, 71.25rem);
    margin-inline: auto;
  }
} */

#main .bcm-color-block__side--text p {
  color: white;
}

.bcm-new-container a {
  text-decoration: none;
}

.bcm-page-link {
  display: inline-block;
  margin-inline: 30px;
  position: relative;
}

.bcm-page-link + .bcm-page-link::before {
  position: absolute;
  left: -31px;
  content: "•";
}

.bcm-page-title-h3 {
  font-weight: 600 !important;
}

.bcm-page-title-top {
  margin-bottom: 30px;
}

.bcm-page-title-spacing {
  font-weight: 600 !important;
  margin-top: 80px;
  margin-bottom: 30px;
}

/* .bcm-column */

.bcm-column-center {
  text-align: center;
}

.bcm-column-spacing {
  padding-top: 30px;
}

.bcm-list-item-spacing li {
  margin-block: 6px;
}

.bcm-page-title-column {
  text-align: center;
  z-index: 999;
}

.bcm-home-slider {
  z-index: 1;
}

h1.bcm-homepage-title-main {
  font-size: clamp(1.5rem, 3vw, 2rem);
}

.block-margin-block {
  margin-top: 20px;
  margin-bottom: 20px;
}

body.home .header {
  padding-bottom: 6px;
}

/* body.home rs-fullwidth-wrap {
  min-height: 50vh !important;
  max-height: unset;
}

rs-module-wrap#rev_slider_1_1_wrapper {
  min-height: 50vh !important;
  max-height: unset;
}

rs-module#rev_slider_1_1 {
  min-height: 50vh !important;
  max-height: unset;
} */

body.postid-20426
  .elementor-element.elementor-element-32a12314
  .elementor-heading-title {
  font-size: 26px;
}

#homepage-hours-wrapper {
  width: 942px;
  margin-inline: auto;
  display: flex;
  justify-content: end;
}

@media (width < 991px) {
  #homepage-hours-wrapper {
    width: max-content;
    margin-inline: auto;
    display: flex;
    justify-content: center;
  }
}

#homepage-hours {
  margin-top: 12px;
  margin-right: 0;
  background-color: #e6e6ea;
  color: #24292a !important;
  display: inline-block;
  margin-left: auto;
  padding: 3px 14px;
  margin-bottom: 4px;
  font-size: 13px;
  font-weight: 500;
}

#homepage-hours a {
  color: #24292a;
  font-size: 13px;
  text-decoration: underline;
}

/* slider */

.page-id-11964 rs-slides rs-slide:nth-of-type(1) video {
  object-position: right top !important;
  object-fit: cover !important;
}
