/* Package stylesheets */
@import url("https://unpkg.com/leaflet@1.9.4/dist/leaflet.css");
/* Prerequisites */
/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
@import url("https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@20..48,100..700,0..1,-50..200");
* {
  box-sizing: border-box;
  font: inherit;
}
*:before {
  box-sizing: border-box;
}
*:after {
  box-sizing: border-box;
}

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  scroll-behavior: smooth;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}
blockquote:before, q:before {
  content: "";
  content: none;
}
blockquote:after, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

.material-symbols-outlined.filled {
  font-variation-settings: "FILL" 1, "wght" 400, "GRAD" 0, "opsz" 24;
}

@font-face {
  font-family: "mikesans";
  src: url("/assets/fonts/MikeSans.ttf") format("truetype");
  font-weight: normal;
  /* Adjust as needed */
  font-style: normal;
  /* Adjust as needed */
}
body {
  font-family: "mikesans", "Helvetica Neue";
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  scroll-behavior: smooth;
  scrollbar-width: 17px;
}
body:before {
  content: "mobile";
  display: none;
}
@media (min-width: 992px) {
  body:before {
    content: "tablet";
  }
}
@media (min-width: 1200px) {
  body:before {
    content: "desktop";
  }
}

.each-slide-effect > div {
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  height: 350px;
  width: 350px;
}

.each-slide-effect span {
  padding: 20px;
  font-size: 20px;
  background: #efefef;
  text-align: center;
}

div .break {
  margin-bottom: 24px;
}

.header-2 {
  font-weight: bold;
  margin-bottom: 12px;
}

b {
  font-weight: bold;
}

i {
  font-style: italic;
}

.segue {
  height: 3px;
  border: none;
  background: linear-gradient(to right, transparent, var(--theme-blue-dark), transparent);
  position: relative;
  margin: 20px 0;
}

ul {
  list-style-image: url("/assets/img/favicon-16x16.png");
  padding: 1.1em;
}

li {
  padding-bottom: 5px;
}

:root {
  --theme-red-dark: #D32A46;
  --theme-red-light: #FA5468;
  --theme-blue-dark: #2D92A4;
  --theme-blue-light: #68AAA0;
  --theme-yellow-dark: #E2991A;
  --theme-yellow-light: #F6BB51;
  --theme-white: #f6e7ce;
  --theme-black: #172B2D;
  --theme-black-transparent: rgba(23, 43, 45, 0.7);
  --theme-white-transparent: rgba(246, 231, 206, 0.8);
}

.responsive-youtube {
  overflow: hidden;
  padding-bottom: 56.25%;
  position: relative;
  height: 0;
  display: flex;
  align-items: center;
}

.responsive-youtube iframe {
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  position: absolute;
}

.caret, .app-bar__subnav-indicator {
  border: 6px solid var(--theme-black);
  display: inline-block;
  height: 0;
  width: 0;
}

.caret--up {
  border-left-color: transparent;
  border-right-color: transparent;
  border-top-color: transparent;
}

.caret--right {
  border-bottom-color: transparent;
  border-top-color: transparent;
  border-left-color: transparent;
}

.caret--down, .app-bar__subnav-indicator {
  border-bottom-color: transparent;
  border-left-color: transparent;
  border-right-color: transparent;
}

.caret--left {
  border-bottom-color: transparent;
  border-right-color: transparent;
  border-top-color: transparent;
}

.chevron {
  display: inline-block;
  height: 10px;
  position: relative;
  width: 10px;
}
.chevron::after {
  border-bottom: 2px solid;
  border-right: 2px solid;
  content: "";
  height: 8px;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  transform-origin: center;
  width: 8px;
}

.chevron--up {
  transform: rotate(-135deg);
}

.chevron--right {
  transform: rotate(-45deg);
}

.chevron--down {
  transform: rotate(45deg);
}

.chevron--left {
  transform: rotate(135deg);
}

.cross {
  display: inline-block;
  height: 14px;
  width: 18px;
}
.cross:before, .cross:after {
  background-color: var(--theme-black);
  border-radius: 3px;
  content: "";
  display: block;
  height: 3px;
  margin: 5px 0;
}
.cross:before {
  transform: rotate(135deg);
}
.cross:after {
  transform: translateY(-8px) rotate(-135deg);
}

.minus {
  display: inline-block;
  position: relative;
}
.minus::after {
  background: var(--theme-black);
  content: "";
  height: 2px;
  left: -5px;
  position: absolute;
  top: 5px;
  width: 12px;
}

.plus {
  background: var(--theme-black);
  display: inline-block;
  height: 12px;
  position: relative;
  width: 2px;
}
.plus::after {
  background: var(--theme-black);
  content: "";
  height: 2px;
  left: -5px;
  position: absolute;
  top: 5px;
  width: 12px;
}

.circle, .avatar {
  background-color: var(--theme-primary);
  border-radius: 50%;
  display: inline-block;
  height: 50px;
  width: 50px;
}

.square {
  background-color: var(--theme-primary);
  display: inline-block;
  height: 50px;
  width: 50px;
}

input[type=email],
input[type=password],
input[type=text],
input[type=tel],
textarea {
  border: 1px solid var(--theme-grey-light);
  border-radius: 0.25em;
  font-size: 1rem;
  height: 42px;
  min-width: 100%;
  outline: none;
  padding: 0.5em;
}
input[type=email]:focus,
input[type=password]:focus,
input[type=text]:focus,
input[type=tel]:focus,
textarea:focus {
  border: 1px solid var(--theme-primary);
}
@media (min-width: 992px) {
  input[type=email],
  input[type=password],
  input[type=text],
  input[type=tel],
  textarea {
    min-width: 250px;
  }
}

textarea {
  min-height: 150px;
  min-width: 100%;
  resize: none;
}
@media (min-width: 992px) {
  textarea {
    min-width: 250px;
  }
}

.scrollable, .app-bar__mobile-nav, textarea {
  overflow-y: auto;
  scrollbar-color: var(--theme-grey);
  scrollbar-width: thin;
  /* width */
  /* Track */
  /* Handle */
  /* Handle on hover */
}
.scrollable::-webkit-scrollbar, .app-bar__mobile-nav::-webkit-scrollbar, textarea::-webkit-scrollbar {
  width: 5px;
}
.scrollable::-webkit-scrollbar-track, .app-bar__mobile-nav::-webkit-scrollbar-track, textarea::-webkit-scrollbar-track {
  background: var(--theme-grey-light);
}
.scrollable::-webkit-scrollbar-thumb, .app-bar__mobile-nav::-webkit-scrollbar-thumb, textarea::-webkit-scrollbar-thumb {
  background: var(--theme-grey);
}
.scrollable::-webkit-scrollbar-thumb:hover, .app-bar__mobile-nav::-webkit-scrollbar-thumb:hover, textarea::-webkit-scrollbar-thumb:hover {
  background: var(--theme-scrollbar-thumb);
}

.scrollable--hidden {
  scrollbar-width: none;
}
.scrollable--hidden::-webkit-scrollbar {
  display: none;
}

.global-error-modal {
  min-height: 250px;
}

.global-error-modal__header {
  align-items: center;
  background-color: var(--theme-error);
  border-radius: 4px 4px 0 0;
  display: flex;
  padding: 1em;
}

.global-error-modal__icon {
  color: var(--theme-text);
}

.global-error-modal__title {
  color: var(--theme-text);
  padding-left: 0.5em;
}

.global-error-modal__body {
  height: 135px;
  padding: 1em;
}

.global-error-modal__message {
  color: var(--theme-black);
  margin: 1em 0;
}

.global-error-modal__footer {
  display: flex;
  justify-content: flex-end;
  padding: 1em;
}

.button {
  align-items: center;
  background-color: transparent;
  background-position: center;
  background-color: var(--theme-red-dark);
  border: 1px solid var(--theme-black);
  border-radius: 4px;
  color: var(--theme-white);
  cursor: pointer;
  display: inline-flex;
  font-size: 1rem;
  height: 36px;
  justify-content: center;
  overflow: hidden;
  outline: none;
  padding: 0 1em;
  position: relative;
  text-decoration: none;
  text-transform: initial;
  transition: background 0.8s;
  min-width: 64px;
}
.button:disabled {
  background-color: var(--theme-red-light);
  border-color: var(--theme-black);
  color: var(--theme-white);
  cursor: not-allowed;
}

@keyframes ripple {
  to {
    transform: scale(4);
    opacity: 0;
  }
}
.button__ripple {
  animation: ripple 600ms linear;
  background-color: var(--theme-red-light);
  border-radius: 50%;
  position: absolute;
  transform: scale(0);
}

.button:hover {
  background-color: var(--theme-red-light);
}

.icon-button {
  align-items: center;
  background-color: var(--theme-surface-lighter);
  border: 0;
  border-radius: 50%;
  box-shadow: 0px 2px 1px -1px rgba(0, 0, 0, 0.2), 0px 1px 1px 0px rgba(0, 0, 0, 0.14), 0px 1px 3px 0px rgba(0, 0, 0, 0.12);
  color: var(--theme-icon-button-surface);
  cursor: pointer;
  display: inline-flex;
  font-size: 1.35rem;
  height: 30px;
  justify-content: center;
  outline: none;
  width: 30px;
}
.icon-button:disabled {
  color: var(--theme-grey-light);
  cursor: not-allowed;
}

.link {
  color: var(--theme-primary);
  display: inline-block;
  text-decoration: underline;
}

.link--no-underline {
  text-decoration: none;
}

.app-bar {
  align-items: center;
  background-color: var(--theme-app-bar-surface);
  border-bottom: 1px solid var(--theme-grey);
  display: flex;
  height: 64px;
  justify-content: space-between;
  padding: 0.25em 0.5em;
  position: relative;
  width: 100%;
}
@media (min-width: 992px) {
  .app-bar {
    padding: 0 1em;
  }
}

.app-bar__prepend {
  align-items: center;
  display: flex;
}

.app-bar__append {
  align-items: center;
  display: flex;
}

.app-bar__items {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.app-bar__items--desktop {
  display: none;
}
@media (min-width: 992px) {
  .app-bar__items--desktop {
    display: flex;
  }
}

.app-bar__items--mobile {
  display: flex;
  flex-direction: column;
  padding-left: 1em;
}
.app-bar__items--mobile > .app-bar__item > .app-bar__link {
  color: var(--theme-text);
}
.app-bar__items--mobile > .app-bar__item > .app-bar__sub-item {
  box-shadow: initial;
  display: block;
  padding-left: 1em;
  position: initial;
  width: auto;
  z-index: 0;
}
@media (min-width: 992px) {
  .app-bar__items--mobile {
    display: none;
  }
}

.app-bar__menu {
  background: none;
  border: none;
  cursor: pointer;
  margin: 0 1em 0 0.25em;
  outline: none;
  z-index: 1000;
}
@media (min-width: 992px) {
  .app-bar__menu {
    display: none;
  }
}

.app-bar__menu--expanded > .app-bar__menu-icon::before {
  background-color: var(--theme-app-bar-menu-expanded-surface);
  transform: translateY(8px) rotate(135deg);
}
.app-bar__menu--expanded > .app-bar__menu-icon::after {
  background-color: var(--theme-app-bar-menu-expanded-surface);
  transform: translateY(-8px) rotate(-135deg);
}
.app-bar__menu--expanded > .app-bar__menu-icon > div {
  transform: scale(0);
}

.app-bar__menu-icon {
  width: 22px;
}
.app-bar__menu-icon::before, .app-bar__menu-icon::after,
.app-bar__menu-icon > div {
  background-color: var(--theme-white);
  border-radius: 3px;
  content: "";
  display: block;
  height: 3px;
  margin: 5px 0;
  transition: all 0.2s ease-in-out;
}
.app-bar__menu-icon::before {
  transform: translateY(0) rotate(0deg);
}
.app-bar__menu-icon::after {
  transform: translateY(0) rotate(0deg);
}
.app-bar__menu-icon > div {
  transform: scale(1);
}

.app-bar__brand {
  align-items: center;
  display: flex;
  color: var(--theme-white);
  font-size: 2.5rem;
  text-decoration: none;
}

.app-bar__brand-title {
  color: var(--theme-white);
  display: none;
  font-size: 1.25rem;
  padding-left: 0.5em;
}
@media (min-width: 992px) {
  .app-bar__brand-title {
    display: initial;
  }
}

.app-bar__divider {
  display: none;
  border-right: 1px solid var(--theme-white);
  height: 24px;
  margin: 0 1.25em;
}
@media (min-width: 992px) {
  .app-bar__divider {
    display: inline-block;
  }
}

.app-bar__spacer {
  height: 34px;
  width: 34px;
}
@media (min-width: 992px) {
  .app-bar__spacer {
    display: none;
  }
}

.app-bar__item {
  position: relative;
}
.app-bar__item:hover > .app-bar__link {
  background-color: var(--theme-app-bar-focus);
}
.app-bar__item:hover > .app-bar__caret {
  display: inline-block;
}
.app-bar__item:hover > .app-bar__sub-item {
  display: block;
}
.app-bar__item:hover > .app-bar__sub-item .app-bar__item:hover .app-bar__link {
  background-color: var(--theme-focus);
}

.app-bar__link {
  color: var(--theme-white);
  display: inline-block;
  padding: 1.45em;
  position: relative;
  text-decoration: none;
}

.app-bar__subnav-indicator {
  border-top-color: var(--theme-white);
  position: absolute;
  right: 3px;
  top: 55%;
  transform: translateY(-55%);
}

.app-bar__caret {
  border: 10px solid var(--theme-surface-lighter);
  border-top-color: transparent;
  border-right-color: transparent;
  border-left-color: transparent;
  bottom: 0;
  display: none;
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
  z-index: 1000;
}

.app-bar__sub-item {
  background-color: var(--theme-surface-lighter);
  box-shadow: 0 0 4px var(--theme-grey);
  display: none;
  position: absolute;
  top: 100%;
  width: 12em;
  z-index: 999;
}
.app-bar__sub-item > .app-bar__item .app-bar__link {
  color: var(--theme-text);
  display: block;
}

.app-bar__mobile-nav {
  background-color: var(--theme-surface);
  height: 100vh;
  width: 300px;
}
@media (min-width: 992px) {
  .app-bar__mobile-nav {
    display: none;
  }
}

.app-bar__mobile-header {
  border-bottom: 1px solid var(--theme-grey);
  height: 64px;
}

.avatar {
  align-items: center;
  background-color: var(--theme-grey);
  color: var(--theme-white);
  display: flex;
  justify-content: center;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.avatar--small {
  height: 30px;
  font-size: 0.8rem;
  width: 30px;
}

.avatar--normal {
  height: 50px;
  font-size: 1.2rem;
  width: 50px;
}

.avatar--large {
  height: 70px;
  font-size: 2rem;
  width: 70px;
}

.avatar__avatar {
  border-radius: 50%;
  width: 100%;
}

.drawer {
  background-color: var(--theme-surface-lighter);
  display: flex;
  flex-direction: column;
  position: fixed;
  transition: transform 255ms cubic-bezier(0, 0, 0.2, 1) 0ms;
  z-index: 999;
}

.drawer--visible {
  transform: none !important;
}

.drawer--anchor-top {
  top: 0;
  transform: translateY(-100%);
  width: 100vw;
}

.drawer--anchor-right {
  height: 100vh;
  right: 0;
  top: 0;
  transform: translateX(100%);
}

.drawer--anchor-bottom {
  bottom: 0;
  transform: translateY(100%);
  width: 100vw;
}

.drawer--anchor-left {
  height: 100vh;
  left: 0;
  top: 0;
  transform: translateX(-100%);
}

.hubspotForm__header {
  display: flex;
  align-items: center;
}

.hubspotForm__header .header-2 {
  flex: 1;
  font-size: 24px;
}

.hubspotForm__close {
  cursor: pointer;
  color: var(--theme--black);
  background: none;
  border: none;
}

.hs-form-frame {
  max-height: 300px;
}

@media (max-height: 850px) {
  .hs-form-frame {
    max-height: 400px;
    margin-top: -40px;
  }
}
.list {
  margin-bottom: 1em;
}

.list__title {
  color: var(--theme-text);
  font-size: 0.65rem;
  margin: 0 0 1em 1em;
  text-transform: uppercase;
}

.list__list {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.list__item {
  display: block;
  overflow: hidden;
  position: relative;
}

.list__checkbox {
  cursor: pointer;
  height: 3.15em !important;
  left: 0;
  margin: 0;
  opacity: 0;
  position: absolute;
  top: 0;
  width: 100%;
}
.list__checkbox:hover ~ .list__content {
  background-color: var(--theme-surface-highlight);
}
.list__checkbox:checked ~ .list__content .list__chevron {
  transform: rotate(-180deg);
}
.list__checkbox:checked ~ .list__sub-items {
  max-height: 100vh;
  transition: max-height 300ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
}

.list__content {
  align-items: center;
  display: flex;
  justify-content: space-between;
  padding: 1em 0 1em 1.25em;
}

.list__content--active {
  background-color: var(--theme-surface-highlight);
}

.list__content--with-icon {
  padding-left: 3em;
}

.list__prepend {
  align-items: center;
  display: flex;
}

.list__label {
  color: var(--theme-text);
}

.list__chevron {
  color: var(--theme-text);
  position: absolute;
  right: 0.5em;
  transition: transform 300ms;
}

.list__icon {
  left: 0.5em;
  position: absolute;
}

.list__sub-item {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.list__sub-items {
  max-height: 0;
  padding-left: 1em;
  transition: max-height 0ms;
}

.modal {
  border-radius: 5px;
  background-color: var(--theme-white);
  height: unset;
  max-height: calc(100% - 64px);
  max-width: 600px;
  overflow: auto;
  opacity: 0;
  width: 100%;
  display: block;
  transition: opacity 0.3s ease-out, transform 0.3s ease-out;
  box-shadow: 0 0 5px var(--theme-sticky-note-shadow);
  padding: 20px;
  padding-top: 15px;
}

.modal--visible {
  opacity: 1;
  transition: opacity 0.3s ease-out, transform 0.3s ease-out;
}

.modal__modal-header--close-button {
  cursor: pointer;
  text-align: right;
  padding-bottom: 5px;
}

.overlay {
  background-color: rgba(0, 0, 0, 0.5);
  bottom: 0;
  left: 0;
  opacity: 0;
  overflow: hidden;
  position: fixed;
  display: flex;
  justify-content: center;
  align-items: center;
  right: 0;
  top: 0;
  transition: opacity 0.45s, visibility 0.5s;
  visibility: hidden;
  z-index: 998;
}

.overlay--visible {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.45s;
}

.overlay--no-background {
  background: none;
}

.panel {
  width: 100%;
  max-width: calc(100vw - var(--scrollbar-width, 17px));
}

.panel__left,
.panel__right,
.panel__video,
.panel__plain {
  display: flex;
  gap: 10px;
  width: 100%;
}

.panel__video,
.panel__plain {
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.panel__video .panel__header {
  display: flex;
  align-content: centers;
  justify-content: center;
  text-align: center;
}

.panel__header {
  font-family: "mikesans", "Helvetica Neue";
}

.panel__subheader {
  font-family: "mikesans", "Helvetica Neue";
}

.panel__panel-container {
  display: flex;
  gap: 20px;
  width: 100%;
}

.panel__content {
  height: auto;
}

.panel__content-wrapper {
  display: flex;
  gap: 10px;
  flex-direction: column;
  height: 100%;
  width: 50%;
}

.panel__plain .panel__content-wrapper,
.panel__video .panel__content-wrapper {
  width: 100%;
}

.panel__image {
  height: 100%;
}

.panel__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.panel__cta {
  width: 100%;
  height: 30%;
  margin-top: 20px;
  margin-bottom: 10px;
}

.panel__cta .linkButton,
.panel__cta .button {
  width: -moz-fit-content;
  width: fit-content;
  height: auto;
  padding: 10px;
  text-transform: uppercase;
}

.panel__right .panel__cta {
  text-align: right;
}

.panel-light {
  border: solid 1px var(--theme--black);
  border-radius: 10px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  background-color: var(--theme-white-transparent);
  padding: 30px;
  font-size: 20px;
}

.panel-light .panel__header {
  text-align: left;
  font-size: 40px;
  text-transform: uppercase;
  font-family: "mikesans", "Helvetica Neue";
}

.panel-light .panel__subheader {
  text-align: left;
  font-size: 25px;
  text-transform: uppercase;
  font-family: "mikesans", "Helvetica Neue";
  color: var(--theme-blue-dark);
  text-shadow: 0px 0px 0 var(--theme-black);
}

.panel__image {
  border-radius: 15px;
  overflow: hidden;
}

.panel__cta .button {
  font-size: 20px;
  border: none;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.7);
}

.panel__cta .button a {
  color: var(--theme-white);
  text-decoration: none;
}

@media (max-width: 768px) {
  .panel__left,
  .panel__right {
    flex-direction: column;
  }
  .panel__content-wrapper {
    width: auto;
  }
  .panel__cta .button {
    width: 100%;
  }
}
.toolbar {
  align-items: center;
  display: flex;
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.toolbar__item {
  align-items: center;
  display: flex;
  justify-content: center;
  margin-right: 1em;
}
.toolbar__item:last-child {
  margin-right: 0;
}

.tooltip {
  display: inline-block;
  position: relative;
}
.tooltip:hover ~ .tooltip__tooltip {
  opacity: 1;
  transition: opacity 0.25s ease-in;
  z-index: 1;
}

.tooltip__tooltip {
  background-color: var(--theme-grey);
  border-radius: 6px;
  color: var(--theme-white);
  cursor: default;
  max-width: 300px;
  opacity: 0;
  padding: 5px 8px;
  pointer-events: none;
  position: absolute;
  text-align: center;
  transition: opacity 0.25s ease-out;
  white-space: nowrap;
  z-index: -1;
}
.tooltip__tooltip::after {
  content: "";
  border-width: 5px;
  border-style: solid;
  left: 50%;
  margin-left: -5px;
  position: absolute;
}

.tooltip__tooltip--visible {
  opacity: 1;
  transition: opacity 0.25s ease-in;
  z-index: 1;
}

.tooltip__tooltip--top::after {
  border-color: var(--theme-grey) transparent transparent transparent;
  top: 100%;
}

.tooltip__tooltip--right::after {
  border-color: transparent var(--theme-grey) transparent transparent;
  margin: -5px 0 0;
  left: -10px;
  top: 50%;
}

.tooltip__tooltip--bottom {
  top: 150%;
}
.tooltip__tooltip--bottom::after {
  bottom: 100%;
  border-color: transparent transparent var(--theme-grey) transparent;
}

.tooltip__tooltip--left::after {
  bottom: 100%;
  border-color: transparent transparent transparent var(--theme-grey);
  left: 100%;
  margin: -5px 0 0;
  top: 50%;
}

.layout {
  display: flex;
  flex-direction: column;
  height: 100vh;
  width: 100vw;
  overflow-x: hidden;
}

.layout__header {
  display: flex;
  justify-content: center;
  position: sticky;
  top: 0;
  z-index: 100;
}

.layout__header--background {
  background-color: var(--theme-black);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 130px;
  z-index: 1;
}

.layout__header--image {
  margin-top: 15px;
}

.layout__header--image img {
  width: 100%;
  max-width: 300px;
  height: auto;
  max-height: 100px;
  -o-object-fit: contain;
     object-fit: contain;
}

.layout__content {
  margin-top: 15px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: auto;
  padding-top: 100px;
}

.layout__footer {
  text-align: center;
  padding: 10px;
  width: 100%;
  display: flex; /* Added to ensure content alignment */
  justify-content: center; /* Centers socials horizontally */
  background-color: var(--theme-white); /* Optional: for visibility */
}

.layout__socials {
  display: flex;
  gap: 25px;
  align-items: center;
  justify-content: center; /* Ensures icons are centered within the 250px */
}
.layout__socials img {
  height: 25px;
}

.updatesButton {
  background-color: var(--theme-white);
  border-radius: 2px;
  padding: 5px;
  margin: 5px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
  cursor: pointer;
}

@media (max-width: 800px) {
  .layout__header--background {
    height: 100px;
    padding-bottom: 15px;
  }
}
.not-found {
  align-items: center;
  background-color: var(--theme-background);
  display: flex;
  height: 100vh;
  flex-direction: column;
  justify-content: center;
  padding: 1em;
}

.not-found__heading {
  color: var(--theme-text);
  font-size: 3rem;
}

.not-found__info {
  color: var(--theme-text);
  margin: 0.5em 0 2em;
  text-align: center;
}
@media (min-width: 992px) {
  .not-found__info {
    text-align: initial;
  }
}

.home {
  width: 100%;
  display: flex;
  align-items: center;
}

.home__background {
  background-image: url("/assets/img/home-background.jpg");
  background-size: cover;
  background-position: 50%;
  position: relative;
  /* Allows content to layer above */
}

.home__selector {
  text-align: center;
  margin: auto;
  margin-top: 15px;
}

.home__selector--header {
  font-size: 3vw;
  text-transform: uppercase;
  margin-bottom: 10px;
  padding-top: 3px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  font-family: "mikesans", "Helvetica Neue";
  color: var(--theme-white);
  text-shadow: 1px 1px 0 var(--theme-black);
}

.home__selector--container {
  display: flex;
  gap: 100px;
  justify-content: center;
}

.home__selector--button {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-radius: 10px;
  z-index: 3;
  padding: 10px;
  background-image: url("/assets/img/starship_tiles.jpg");
}

.home__selector--button:hover,
.home__selector--button:active {
  transform: scale(1.025) translateY(-10px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.home__selector--button img {
  width: 100%;
  max-width: 800px;
  height: auto;
  max-height: calc(100vh - 400px);
  -o-object-fit: contain;
     object-fit: contain;
}

/* Mobile view */
@media (max-width: 800px) {
  .home__selector {
    margin-top: 0;
  }
  .home__selector--header {
    font-size: 5vw;
    border-radius: 4px;
    padding: 2px;
    margin-bottom: 5px;
  }
  .home__selector--container {
    flex-direction: column;
    align-items: center;
    gap: 25px;
  }
  .home__selector--button img {
    max-width: 150px;
    /* Adjust for mobile */
  }
}
.film-services {
  width: 100%;
  display: flex;
  justify-items: center;
  flex-direction: column;
  gap: 30px;
  height: 100%;
  margin-top: 30px;
  margin-bottom: 30px;
  z-index: 3;
  max-width: 1440px;
}

.film-services__background {
  background-image: url("/assets/img/film-services-background.jpg");
  background-size: cover;
  background-position: 50%;
  position: relative;
  /* Allows content to layer above */
}

.film-services__slideshow .panel__plain {
  width: 100%;
}

.film-services__slideshow .panel__content-wrapper,
.film-services__slideshow .panel__content {
  width: 100%;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.film-services__imageWrapper {
  flex: 0 0 300px;
  height: 300px;
}

.film-services__imageWrapper img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
  position: relative;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.film-services .panel__plain .panel__header {
  display: flex;
  align-content: centers;
  justify-content: center;
  text-align: center;
}

.film-services__slideshow .panel__content {
  justify-content: center;
}

@media (max-width: 768px) {
  .film-services__panel-light {
    font-size: 16px;
  }
  .film-services__panel-light .panel__header {
    font-size: 30px;
  }
}
.landships {
  width: 100%;
  display: flex;
  justify-items: center;
  flex-direction: column;
  gap: 30px;
  height: 100%;
  margin-top: 30px;
  margin-bottom: 30px;
  z-index: 3;
  max-width: 1440px;
}

.landships__background {
  background-image: url("/assets/img/landships-background.jpg");
  background-size: cover;
  background-position: 50%;
  position: relative;
  /* Allows content to layer above */
}

.landships ul {
  list-style-image: url("/assets/img/favicon-16x16.png");
  padding: 1.1em;
}

.landships li {
  padding-bottom: 5px;
}

.landships b {
  display: block;
  font-weight: bold;
}

@media (max-width: 768px) {
  .landships__panel-light {
    font-size: 16px;
  }
  .landships__panel-light .panel__header {
    font-size: 30px;
  }
}
.updates {
  width: 100%;
  display: flex;
  justify-items: center;
  flex-direction: column;
  gap: 30px;
  height: 100%;
  margin-top: 30px;
  margin-bottom: 30px;
  z-index: 3;
  max-width: 1088px;
}

.updates__background {
  background-image: url("/assets/img/updates-background.jpg");
  background-size: cover;
  background-position: 50%;
  position: relative;
  /* Allows content to layer above */
}

.updates__container {
  width: 100%;
  height: 100%;
}

.updates .panel__plain {
  text-align: left;
  justify-content: left;
  align-items: start;
}

.calendly-overlay {
  background-color: rgba(0, 0, 0, 0.5);
  bottom: 0;
  left: 0;
  opacity: 1;
  overflow: hidden;
  position: fixed;
  display: flex;
  justify-content: center;
  align-items: center;
  right: 0;
  top: 0;
  z-index: 998;
}

.calendly-close-overlay {
  background-color: var(--theme-white-transparent);
  opacity: 0.5;
}

.calendly-overlay .calendly-popup {
  background-color: var(--theme-white);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
  padding: 10px;
  border-radius: 10px;
  height: 750px !important;
  max-height: unset !important;
}

@media (max-width: 768px) {
  .calendly-overlay .calendly-popup {
    height: 620px !important;
    max-height: unset !important;
  }
}
/*# sourceMappingURL=site.css.map */