.mm-landing.hero--default {
  position: relative;
  width: 100vw;
  height: 100vh;
}

@media (max-width:600px){
  .mm-landing.hero--default {
    height: 110vh;
  }
}

.mm-landing .hero__container {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  z-index: var(--z-2);
}

.mm-landing .hero__bgimage {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.mm-landing .hero_shadow_background::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: black;
  opacity: 0.4;
}

.mm-landing .hero__bgcolor {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--c-primary);
  filter: brightness(.5);
}

.mm-landing .hero__bgimage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mm-landing .hero__title {
  font-family: 'Open Sans', sans-serif;
  font-size: var(--fz-2xl);
  font-weight: var(--fw-black);
  text-align: center;
  text-transform: uppercase;
  color: var(--c-white);
  margin-bottom: var(--spacer-2xl);
  padding: 0 16px;
}

@media screen and (min-width: 1024px) {
  .mm-landing .hero__title {
    font-size: var(--fz-4xl);
    padding: 0 24px;
  }
}

.mm-landing .hero__dates {
  color: var(--c-white);
  opacity: .9;
  margin-bottom: var(--spacer-xl);
}