#above-fold {
  position: relative;
  z-index: 1;
}

.swiper-container {
  width: 915px;
  max-width: 100%;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 1rem;
  box-shadow: -3px 3px 5px rgba(0, 0, 0, .2);
  cursor: move;
  cursor: grab;
  cursor: -moz-grab;
  cursor: -webkit-grab;
}

.swiper-wrapper {
  position: relative;
  z-index: 999;
}

.swiper-slide {
  display: flex !important;
  margin: 0 auto;
  width: 100%;
  max-width: 100%;
}

.swiper-horizontal>.swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal {
  bottom: auto !important;
  top: auto !important;
  margin-top: 1rem;
  left: 0;
  width: 100%;
}

.swiper-pagination-bullet {
  width: 15px;
  height: 15px;
  background: white;
  /* Color of non-active bullets */
}

.swiper-pagination-bullet-active {
  background: #FDBD2A;
  /* Color of active bullet */
}

.announcement>* {
  flex-grow: 1;
  flex-shrink: 1;
  flex-basis: 40%;
}

.announcement>*:nth-child(even) {
  flex-basis: 60%;
}

.announcement__content {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 1rem;
  font-family: trade-gothic-next, sans-serif;
  font-size: .9em;
}

.announcement__content h2 {
  margin: 0;
  font-family: mr-eaves-sans, sans;
  font-size: 1.5em;
}

.announcement__content>* {
  min-width: 100%;
}

.announcement__content>*:not(:last-child) {
  margin: 0 0 .5rem 0;
}

.announcement__content button {
  border: none;
  border-radius: 1rem;
  cursor: pointer;
  font-family: mr-eaves-sans, sans-serif;
  font-size: 1.1em;
  font-weight: 700;
  text-transform: uppercase;
  margin-top: .5rem;
  padding: .5rem 1rem;
  text-transform: uppercase;
  transition: .2s;
  width: 100%;
}

.announcement__content button:hover {
  transform: translateY(-2px);
  -webkit-transform: translateY(-2px);
}

.announcement__image {
  background-size: cover;
  background-position: center center;
  padding-bottom: 52.356%;
  /* 1.91:1 aspect ratio */
}

@media screen and (max-width: 915px) {
  .swiper-container {
    border-radius: 0;
    box-shadow: none !important;
  }

  .announcement {
    flex-wrap: wrap;
    border-radius: 0;
  }

  .announcement>* {
    flex-basis: 100%;
  }

  .announcement__content {
    border-radius: 0;
    min-height: 15rem;
  }

  .announcement__image {
    border-radius: 0;
  }
}