.main-hero {
  display: flex;
  flex-direction: column;
  min-height: 70vh;
}

.hero-details {
  flex-grow: 1;
  align-items: flex-end;
}

.big-content-container {
  padding-bottom: 100px;
}

.footer-bottom {
  background-color: #1D2B74;
}

p a {
  text-decoration: underline;
  color: rgb(48, 185, 245);
  &:hover {
    color: rgb(62, 64, 91);
  }
}

.teaser-thumbnail {
  width: 41%;
}

#watch-video-link,
#watch-video-link-mobile {
  cursor: pointer;
}

.video-player {
  display: flex;
  position: fixed;
  width: 100%; height: 100%;
  top: 0px; left: 0px;
  background-color: rgba(0, 0, 0, .5);
  z-index: 1000;
  align-items: center;
  justify-content: center;
  padding: 30px;
  display:none;
}

.video-player.open {
  display: flex;
}

.video-content {
  position: relative;
  background-color: white;
  padding: 10px;
  box-shadow: 0px 10px 30px rgba(0,0,0,.5);
}

.video-player .close-button {
  display: flex;
  position: absolute;
  top: -60px; right: 0px;
  width: 50px; height: 50px;
  border-radius: 50%;
  background-color: white;
  align-items: center;
  justify-content: center;
}