#hero.interior {
  position: relative;
  padding-right: 12vw;
  padding-left: 12vw;
  margin-bottom: 40px;
  background: var(--storm);
}
@media screen and (max-width: 1366px) {
  #hero.interior {
    padding-right: 6.5vw;
    padding-left: 6.5vw;
  }
}
@media screen and (max-width: 1024px) {
  #hero.interior {
    padding-right: 0;
    padding-left: 0;
  }
}
body.is-private-event #hero.interior {
  margin-bottom: 0;
}
#hero.interior,
#hero.interior .container {
  min-height: 560px;
}
#hero.interior .container {
  max-width: none;
}
#hero.interior .hero-bg {
	position: absolute;
  display: block;
	inset: 0;
	width: 100%;
	height: 100%;
	z-index: 0;
  opacity: 0;
  filter: blur(8px);
  animation: fadeBlurIn 600ms ease-out forwards;
  will-change: opacity, filter;
}
@keyframes fadeBlurIn {
  to {
    opacity: 1;
    filter: blur(0);
  }
}
  #hero.interior .hero-bg img,
  #hero.interior img.hero-bg {
    width: 100%;
    height: 100%;
    min-height: inherit;
    object-fit: cover;
    object-position: center;
  }
#hero.interior .location-marker {
  bottom: 50px;
}
#hero.interior .title-wrapper {
  position: absolute;
  bottom: -10px;
  left: 40px;
  max-width: 60vw;
  padding: 15px 35px;
  background-color: var(--white);
  border-radius: 20px 20px 0 0;
}
  #hero.interior .title-wrapper h1 {
    opacity: 0;
    transform: translateX(-50px);
    animation: slideInLeft 800ms ease-out forwards;
    animation-delay: 0.4s;
    margin-bottom: 0;
  }
@keyframes slideInLeft {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@media screen and (max-width: 1024px) {
  #hero.interior {
    margin-bottom: 10px;
    min-height: 560px !important;
  }
  #hero.interior .container {
    min-height: 0 !important;
    padding: 0;
  }
  #hero.interior .hero-bg {
	  position: relative;
    min-height: inherit;
  }
  #hero.interior .location-marker {
    width: max-content;
    height: fit-content;
    max-width: 90vw;
    bottom: 15vh;
  }
  #hero.interior .title-wrapper {
    position: relative;
    width: 100%;
    max-width: 100%;
    border-radius: 0;
    bottom: 0px;
    left: 0px;
    padding: 40px clamp(30px, 5vw, 50px) 0;
  }
  #hero.interior .title-wrapper h1 {
    max-width: 92%;
  }
}
@media screen and (max-width: 768px) {
  #hero.interior {
    min-height: 360px !important;
  }
}
@media screen and (max-width: 580px) {
  #hero.interior .location-marker {
    display: none;
  }
}