.header .wrapper {
  display: flex;
}

.custom-menu-wrap {
  display: flex;
  align-items: center;
  gap: 32px;
}
.custom-rootitem {
  position: relative;
  z-index: 100;
}

.custom-video-container {
  width: 100%;
  height: 100vh;
  overflow: hidden;
  margin-top: -96px;
  background-color: #fafafa;
}
.custom-video {
  width: 100%;
  height: 100%;
  object-position: center;
  object-fit: cover;
}

@media screen and (max-width: 900px) {
  h1 {
    font-size: calc(var(--heading-1-font-size) / 1.6);
  }
  .custom-menu-wrap {
    width: 100%;
    justify-content: space-between;
  }
  .custom-video-container {
    margin-top: 0;
    height: auto;
  }
  .custom-video {
    height: auto;
  }
}

@media screen and (max-width: 640px) {
  .block.split_40_60 .wrapper, .block.split_staggered .wrapper, .block.split_60_40 .wrapper {
    gap: 20px;
  }
  .footer .footer-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
}

.custom-age-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.9);
  color: white;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  z-index: -1000;
  display: none;
}
.custom-age-modal.is-visible {
  z-index: 100000;
  display: flex;
}

.custom-age-modal h2 {
  margin-bottom: 32px;
  text-align: center;
}

.custom-age-modal button {
  cursor: pointer;
}
.custom-age-modal .custom-btn-yep {
  background-color: green;
  margin-right: 12px;
}
.custom-age-modal .custom-btn-nope {
  background-color: #DF070F;
}
.custom-age-modal .custom-btn-nope:hover {
  background-color: red;
}

body.age-restricted {
  overflow: hidden;
}
