#anniversary-banner {
  width: 100%;
  display: flex;
  height: auto;
  position: fixed;
  top: 0;
  z-index: 2000;
  overflow: hidden;
  background-color: #9FFBD6;
}

#anniversary-content-container {
  width: 100%;
}

#anniversary-teaser {
  margin: 0 auto;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  overflow: hidden;
}

#anniversary-teaser span {
  text-align: center;
}

#anniversary-teaser a {
  text-decoration: underline;
  cursor: pointer;
}

#anniversary-content {
  display: none;
}

#anniversary-banner.open {
  height: auto !important;
  background-color: #FAF6D3;
}

#anniversary-banner.open #anniversary-teaser {
  display: none;
}

#anniversary-banner.open #anniversary-content {
  display: block;
}

#anniversary-content.wrapper {
  padding-top: 80px;
  padding-bottom: 80px;
}

#anniversary-content .grid {
  position: relative;
}

a.close {
  position: absolute;
  right: 0;
  top: -3rem;
  text-decoration: underline;
  cursor: pointer;
  font-weight: bold;
}

.anniversary-flex {
  display: flex;
}

.anniversary-flex .text {
  width: 60%;
}

.anniversary-flex .image {
  width: 40%;
  padding-left: 1rem;
}

.anniversary-flex .image img {
  width: 100%;
}

#anniversary-backdrop {
  display: none;
  z-index: 1500;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #484848;
  opacity: .9;
}

#anniversary-backdrop.show {
  display: block;
}

@media (max-width: 999px) {
  #anniversary-banner.open {
    height: 100vh !important;
    overflow-y: auto;
  }

  #anniversary-banner.open h2 {
    padding-bottom: 0;
  }

  #anniversary-content.wrapper {
    padding-top: 40px;
  }

  .anniversary-flex {
    flex-direction: column-reverse;
  }

  .anniversary-flex .text,
  .anniversary-flex .image,
  .anniversary-flex .cta {
    width: 100%;
  }

  .anniversary-flex .image {
    padding-left: 0;
    padding-bottom: 1rem;
  }

  .anniversary-flex .cta {
    justify-content: center;
    margin-top: .52rem;
  }

  a.close {
    top: -1.8rem;
  }
}