header {
    position: relative;
    background-color: black;
    height: 100vh;
    min-height: 775px;
    width: 100%;
    overflow: hidden;
}

header video {
    position: absolute;
    padding-top:50px;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: 0;
    -ms-transform: translateX(-50%) translateY(-50%);
    -moz-transform: translateX(-50%) translateY(-50%);
    -webkit-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
}

header .container {
    position: relative;
    z-index: 2;
}

header .overlay {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: black;
    opacity: 0.5;
    z-index: 1;
}

/*
@media (pointer: coarse) and (hover: none) {
    header {
        background: url('https://source.unsplash.com/XT5OInaElMw/1600x900') black no-repeat center center scroll;
    }
    header video {
        /*display: none;
    }
}*/

.anchor {
    display: block;
    position: relative;
    top: -80px;
    visibility: hidden;
}
.info_card:hover {
    transform: scale(1.05);
}

ol {
    margin: 0 0 1.5em;
    padding: 0;
    counter-reset: item;
}

ol > li {
    margin: 0;
    padding: 0 0 0 2em;
    text-indent: -2em;
    list-style-type: none;
    counter-increment: item;
}

ol > li:before {
    display: inline-block;
    width: 1em;
    padding-right: 0.5em;
    font-weight: bold;
    text-align: right;
    content: counter(item) ".";
}

@media only screen and (min-width: 960px) {
    .google_btn {
        border-top-right-radius:0;
        border-bottom-right-radius:0;
    }
    .alexa_btn {
        border-top-left-radius:0;
        border-bottom-left-radius:0;
    }
}
@media only screen and (max-width: 960px) {
    .google_alexa_div {
        padding-right:0;
        padding-left:0;
    }
}

.loading_dots:after {
    content: ' .';
    animation: dots 1s steps(5, end) infinite;
}

@keyframes dots {
    0%, 20% {
        color: white;
        text-shadow:
                .25em 0 0 white,
                .5em 0 0 white;}
    40% {
        color: grey;
        text-shadow:
                .25em 0 0 white,
                .5em 0 0 white;}
    60% {
        text-shadow:
                .25em 0 0 grey,
                .5em 0 0 white;}
    80%, 100% {
        text-shadow:
                .25em 0 0 grey,
                .5em 0 0 grey;
    }
}

/* Scroll thing */
.scroll_thing a {
    position: absolute;
    bottom: 20px;
    left: 50%;
    z-index: 2;
    display: inline-block;
    -webkit-transform: translate(-45%, -45%);
    transform: translate(-45%, -50%);
    color: #fff;
    font : normal 400 20px/1 'Josefin Sans', sans-serif;
    letter-spacing: .1em;
    text-decoration: none;
    transition: opacity .3s;
}
.scroll_thing a:hover {
    opacity: .5;
}
#scroll_section a {
    padding-top: 60px;
}
#scroll_section a span {
    position: absolute;
    top: 0;
    left: 50%;
    width: 24px;
    height: 24px;
    margin-left: -12px;
    border-left: 1px solid #fff;
    border-bottom: 1px solid #fff;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    box-sizing: border-box;
}
/* End scroll thing */

@media only screen and (max-width: 800px) {
    #AccHeaderName {
        word-spacing: -8px;
        font-size: 50px;
    }
    #AccHeaderDesc {
        font-size:24px;
    }
}
.download-arrow {
    z-index: 9999 !important;
}

/* Custom Modal */
.download_modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 2500; /* Sit on top */
    padding-top: 100px; /* Location of the box */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

/* Modal Content */
.download_modal-content {
    position: relative;
    background-color: #fefefe;
    margin: auto;
    padding: 0;
    /*border: 1px solid #888;*/
    border-radius:2px;
    min-width: 40%;
    max-width: 500px;
    /*box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2),0 6px 20px 0 rgba(0,0,0,0.19);*/
    -webkit-animation-name: animatetop;
    -webkit-animation-duration: 0.4s;
    animation-name: animatetop;
    animation-duration: 0.4s
}

/* Add Animation */
@-webkit-keyframes animatetop {
    from {top:-300px; opacity:0}
    to {top:0; opacity:1}
}

@keyframes animatetop {
    from {top:-300px; opacity:0}
    to {top:0; opacity:1}
}

/* The Close Button */
.download_close {
    color: black;
    float: right;
    font-size: 28px;
    font-weight: bold;
    padding-right: 10px;
}

.download_close:hover,
.download_close:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
}

.download_modal-body {
    text-align:center;
    color:#000;
    padding: 30px;
}
.btn.sharp {
    border-radius: 0;
}
.btn span {
    cursor: pointer;
    display: inline-block;
    position: relative;
    transition: 0.5s;
}

.btn span:after {
    content: '\00bb';
    position: absolute;
    opacity: 0;
    top: 0;
    right: -20px;
    transition: 0.5s;
}

.btn:hover span {
    padding-right: 25px;
}

.btn:hover span:after {
    opacity: 1;
    right: 0;
}
