/* -------------------------------- 

Modules - reusable parts of our design

-------------------------------- */
.zoomout-container {
  /* this class is used to give a max-width to the element it is applied to, and center it horizontally when it reaches that max-width */
  width: 100%;
  margin: 0 auto;
}
.zoomout-container::after {
  /* clearfix */
  content: '';
  display: table;
  clear: both;
}

/* -------------------------------- 

Main components 

-------------------------------- */

#zoomout-intro {
  position: relative;
  z-index: 1;
}
#zoomout-intro #zoomout-intro-background {
  height: 100%;
  width: 100%;
  background: url("../port-images/zoomin-intro-background.jpg") no-repeat center center;
  background-size: cover;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
}
#zoomout-intro #zoomout-intro-tagline {
  position: absolute;
  width: 100%;
  max-width: 1170px;
  left: 50%;
  top: 50%;
  bottom: auto;
  right: auto;
  -webkit-transform: translateX(-50%) translateY(-50%);
  -moz-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  -o-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
}

@media only screen and (min-width: 768px) {
  #zoomout-intro {
    height: 400px;
  }
}
@media only screen and (min-width: 1170px) {
  #zoomout-intro {
    position: fixed;
    /* do not overlap the header */
    left: 0;
    width: 100%;
  }
}

.zoomout-content {
  position: relative;
  z-index: 2;
}


@media only screen and (min-width: 1170px) {
  .zoomout-content {
    margin-top: 430px;
  }
}

