.shadow-header {
    -webkit-box-shadow: 0px 7px 38px 1px rgba(0,0,0,0.75);
    -moz-box-shadow: 0px 7px 38px 1px rgba(0,0,0,0.75);
    box-shadow: 0px 7px 38px 1px rgba(0,0,0,0.75);
}

header.cover {
    position: relative;
    padding-top: 150px;
    padding-bottom: 150px;
    background-size: cover;
    background-attachment: fixed;
    height: 100vh;
    min-height: 600px;
    padding-top: 0;
    padding-bottom: 0;
}

header.cover .cover-img {
    max-width: 250px;
    max-height: 250px;
}

header.cover .cover-title {
    font-size: 3rem;
    line-height: 3rem;
    font-family: 'Raleway', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-weight: 900;
    text-transform: uppercase;
}

header.cover .cover-subtitle {
    font-size: 2rem;
    line-height: 2rem;
}

header.cover .scroll-down {
    position: absolute;
    width: 100%;
    text-align: center;
    bottom: 30px;
}

header.cover .scroll-down .arrow-btn {
    font-size: 30px;
    line-height: 50px;
    width: 50px;
    height: 50px;
    letter-spacing: normal;
    color: white;
    -webkit-transition: all 0.1s;
    transition: all 0.1s;
}

header.cover .scroll-down .arrow-btn:hover {
    color: rgba(255, 255, 255, 0.5) !important;
}

header.video, header.iframe  {
    overflow: hidden;
}


header.video .overlay, header.iframe .overlay {
    position: absolute;
    z-index: 1;
    top: 0;
    width: 100%;
    height: 100%;
}

header.video .container, header.video .container {
    position: relative;
}

header.video .container,
header.video .scroll-down,
header.iframe .container, 
header.iframe .scroll-down{
    z-index: 999;
}

header.video video {
    perspective: 1000;
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 150%;
    width: auto;
    height: auto;
    z-index: 0;
    -webkit-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
}

header.iframe iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    min-height: 100vh;
    min-width: 100%;
    width: auto;
    height: auto;
    z-index: 0;
    -webkit-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
    border: none;
    text-decoration: none;
}