.promo {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  height: -webkit-fill-available;
  z-index: 110;
  background: rgba(0, 0, 0, .8);
}

.promo-container {
  width: 95%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  overflow-x: hidden;
}

.promo-image {
  width: 120%;
  height: 275px;
  margin-left: -10%;
  border-bottom-right-radius: 60% 50%;
  border-bottom-left-radius: 60% 50%;
  background-position: center;
}

.promo-close {
  background: rgba(255, 255, 255, 0.75);
  border-radius: 50%;
  text-align: center;
  line-height: 23px;
  font-size: .7rem;
  height: 23px;
  width: 23px;
}

.promo-content h2 {
  margin: 0;
}

.promo-image {
  flex: 1 1 45%;
}

.promo-content {
  z-index: 2;
  flex: 1 1 55%;
  padding: 2rem;
  margin-top: 1px;
  height: calc(100% - 2px);
}

.promo-content p {
  border-left: 5px solid #000;
  padding: 0 1rem;
  margin: 1.25rem 0;
  font-size: .85rem;
  color: #000;
}

.promo-content span {
  cursor: pointer;
  position: absolute;
  top: 1rem;
}

.promo-content a {
  text-transform: uppercase;
  text-decoration: none;
  display: inline-block;
  padding: .75rem 1rem;
  font-weight: bold;
  font-size: 14px;
  cursor: pointer;
  height: auto;
  border: none;
  width: 100%;
}

.promo-content a:hover,
.promo-content a:focus {
  color: #fff !important;
}

.promo-image img {
  max-width: 100%;
}

@media (min-width: 35em) {
  .promo-container {
    width: 70%;
  }
}

/* Promo - Tablet & larger */
@media (min-width: 48em) {

  .promo-container {
    top: 50%;
    overflow-y: hidden;
    height: 315px;
    width: 95%;
    max-width: 625px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .promo-image {
    background-position: 50% 50%;
    border-top-right-radius: 60% 50%;
    border-bottom-right-radius: 60% 50%;
    border-bottom-left-radius: 0;
    width: 100%;
    height: 140%;
    margin-left: -1%;
    margin-right: 1%;
    margin-top: -10%;
  }

  .promo-close {
    font-size: 1rem;
  }

}