/* Periscope */
.periscope {
  background-image: url('http://placehold.it/300x500');
  background-repeat: repeat-y;
  background-position: center 0px;
  background-attachment: fixed;
  border: 1px solid #000;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto;
  height: 300px;
  width: 300px;
}

.tint {
  align-items: center;
  color: #fff;
  display: flex;
  opacity: 0;
  height: 100%;
  position: relative;
  justify-content: center;
  z-index: 2;

  -webkit-transition: all 0.1s ease-in-out;
  -o-transition: all 0.1s ease-in-out;
  transition: all 0.1s ease-in-out;
}

.promo-text {
  position: relative;
  z-index: 5;
}

.promo-text h3 {
  font-weight: 100;
  font-size: 28px;
  margin: 0;
  text-transform: uppercase;
}

.promo-text p {
  font-size: 12px;
  margin: 10px 0;
}

.promo-text .cta-button {
  border: 1px solid #fff;
  color: #fff;
  display: block;
  font-size: 20px;
  font-weight: 100;
  padding: 5px 20px;
  text-decoration: none;
  -webkit-transition: all 0.1s ease-in-out;
  -o-transition: all 0.1s ease-in-out;
  transition: all 0.1s ease-in-out;
}

.promo-text .cta-button:hover {
  background-color: #fff;
  color: #000;
}