.image-intros {
    position: fixed;
    height: 100%;
    z-index: 999;
    -webkit-transition: all 1s cubic-bezier(0.7,0,0.3,1);
    -moz-transition: all 1s cubic-bezier(0.7,0,0.3,1);
    -o-transition: all 1s cubic-bezier(0.7,0,0.3,1);
    transition: all 1s cubic-bezier(0.7,0,0.3,1);
    opacity: 1;
    background: #000000;
}

.image-intro {
    height: 100%;
    background-size: cover;
    background-position: 50%;
    position: absolute;
    top: 0;
    left: 0;
}

.image-intro.animated {
    -webkit-transition: all 1s cubic-bezier(0.7,0,0.3,1);
    -moz-transition: all 1s cubic-bezier(0.7,0,0.3,1);
    -o-transition: all 1s cubic-bezier(0.7,0,0.3,1);
    transition: all 1s cubic-bezier(0.7,0,0.3,1);
}

.image-intros.stopped {
    z-index: -9999;
}

.image-intros.scrolled {
    top: -25%!important;
    opacity: 0;
}

.image-intro-content-container {
    display: table;
    text-align: center;
    width: 100%;
    z-index: 2;
    position: relative;
}

.image-intro:after {content: "";position: absolute;top: 0;left: 0;width: 100%;height: 100%;background: rgba(0, 0, 0, 0.2);z-index: 0;}

.image-intro-content {
    line-height: normal;
    vertical-align: middle;
    display: inline-block;
    text-shadow: 0px 0px 17px rgba(0, 0, 0, 0.7), 0px 0px 9px rgba(0, 0, 0, 0.7);
    /* font-family: 'Bigshot One', cursive; */
    font-weight: 400;
}

.image-intro-scroll-cta {
    position: absolute;
    left: 0;
    bottom: 0px;
    width: 100%;
    text-align: center;
}

.image-intro-scroll-cta img {
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
    cursor: pointer;
    margin-bottom: 30px;
}

.image-intro-scroll-cta img:hover {
    margin-bottom: 40px;
}

div#primary.image-intro-animated, .image-intro-animated {
    margin-top: 200px;
    -webkit-transition: all 1s cubic-bezier(0.7,0,0.3,1);
    -moz-transition: all 1s cubic-bezier(0.7,0,0.3,1);
    -o-transition: all 1s cubic-bezier(0.7,0,0.3,1);
    transition: all 1s cubic-bezier(0.7,0,0.3,1);
}

div#primary.image-intro-animated.scrolled, .image-intro-animated.scrolled {
    margin-top: 0;
}

.slide-control {
    position: absolute;
    top: 50%;
    margin-top: -30px;
    height: 60px;
    cursor: pointer;
    opacity: 0.4;
}

.slide-control:hover {
    opacity: 1;
}

.slide-control img {
    max-height: 100%;
}

.slide-control.next {
    right: 0;
}

.slide-control.prev {
    left: 0;
}