html,
body {
    height: 100%;
    width: 100%;
    overflow-x: hidden;
    overflow-y: scroll;
    scroll-behavior: smooth;
}

html {
    scroll-behavior: smooth;
}

* {
    -webkit-appearance: none;
}

body {
    margin: 0;
    padding: 0;
    perspective: 1px;
    background: white;
}

.maxw {
    width: 100%;
    /* max-width: 1200px; */
    margin: auto;
}

.font {
    font-family: Libre Bodoni, serif;
    color: #454545;
}

.header {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-content: center;
    height: 110px;
    margin: 0 auto;
    text-align: center;
    z-index: 100;
}

.title {
    margin: 0 auto;
    text-align: center;
    width: 300px;
}

.header h1 {
    margin: 0;
    font-size: 14pt;
    font-weight: 700;
}

.header h2 {
    margin: 0;
    font-weight: 100;
    font-size: 10pt;
    font-style: italic;
}

.hero {
    z-index: 10;
    display: flex;
    flex-direction: column;
    height: calc(100vh - 110px);
    width: 100vw;
    background: url(/images/hero%20manuscript.jpg) 50% 60% no-repeat;
    background-size: cover;
}

.down {
    text-decoration: none;
    margin-top: auto;
    margin-bottom: 30px;
    height: 50px;
    background: url(/images/down.svg) 50% 50% no-repeat;
    background-size: contain;
    z-index: 11;
    animation-name: bounce;
    animation-duration: 2s;
    animation-iteration-count: infinite;
}

@keyframes bounce {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-6px);
    }

    99% {
        transform: translateY(0px);
    }
}

.bio {
    display: block;
    margin: 0;
    padding: 50px 20px;
    text-align: center;
}

#logo {
    height: 30px;
}

h3 {
    margin: 0px 0px 20px 0px;
    font-size: 14pt;
    font-weight: 700;
}

.bio p {
    max-width: 400px;
    font-size: 11pt;
    font-weight: 100;
    font-style: italic;
    margin: 0 auto;
}

#sig {
    margin: auto;
    padding-top: 20px;
    display: block;
    height: 80px;
}

.red {
    display: none;
    align-items: center;
    justify-content: center;
    width: 100vw;
    height: 100px;
    background: #B51F32;
    box-shadow: inset 0px 0px 20px rgba(0, 0, 0, 0.3);
    -webkit-box-shadow: inset 0px 0px 20px rgba(0, 0, 0, 0.3);
    -moz-box-shadow: inset 0px 0px 20px rgba(0, 0, 0, 0.3);
}

#logo-inverse {
    display: block;
    width: 30px;
    margin: auto;
}

.clients {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100vw;
    height: 150px;
    background: #B51F32;
    box-shadow: inset 0px 0px 20px rgba(0, 0, 0, 0.3);
    -webkit-box-shadow: inset 0px 0px 20px rgba(0, 0, 0, 0.3);
    -moz-box-shadow: inset 0px 0px 20px rgba(0, 0, 0, 0.3);
}

#client-two {
    padding: 0px 5vw;
}

.clients img {
    width: 120px;
    opacity: 0.8;
    transition: .2s;
    -webkit-transition: .8s;
}

.clients img:hover {
    opacity: 1;
    transition: .5s;
    -webkit-transition: .2s;
}

.demos {
    margin: 0 auto;
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    align-items: center;
    /* padding: 50px 20px; */

}

.demo {
    display: block;
    text-align: center;
    margin: auto;
    padding: 0px 15px 30px 15px;
}

.audio-player {
    display: grid;
    grid-template-rows: 6px auto;
    overflow: hidden;
    height: 200px;
    width: 100vw;
    color: #efefef;
}

.a-one {
    background: url(/images/action.png) no-repeat 50% 70%;
    background-size: cover;
}

.a-two {
    background: url(/images/victory.jpg) no-repeat 50% 70%;
    background-size: cover;
}

.a-three {
    background: url(/images/strings.jpg) no-repeat 50% 40%;
    background-size: cover;
}

.a-four {
    background: url(/images/trailer.jpg) no-repeat 50% 40%;
    background-size: cover;
}

.timeline {
    background: none;
    width: 100%;
    position: relative;
    cursor: pointer;
    height: 6px;
}

.progress {
    background: #efefef;
    width: 0%;
    height: 6px;
    transition: 1s linear;
    -webkit-transition: 1s linear;
}

.controls {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100px;
}

.controls * {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* .play {
    cursor: pointer;
    position: relative;
    left: 0;
    height: 0;
    width: 0;
    border: 7px solid #0000;
    border-left: 13px solid white;
} */

.play {
    cursor: pointer;
    position: relative;
    left: 0;
    height: 30px;
    width: 30px;
    background: url(/images/play.svg);
    background-size: cover;
    transition: 0.4s;
    -webkit-transition: 0.4s;
}

/* .pause {
    height: 15px;
    width: 20px;
    cursor: pointer;
    position: absolute;
    margin-left: 15px;
} */

.pause {
    cursor: pointer;
    position: relative;
    left: 0;
    height: 30px;
    width: 30px;
    background: url(/images/pause.svg);
    background-size: cover;
    transition: 0.4s;
    -webkit-transition: 0.4s;
}

/* .pause:before {
    position: absolute;
    top: 0;
    left: 0px;
    background: white;
    content: "";
    height: 15px;
    width: 3px;
}

.pause:after {
    position: absolute;
    top: 0;
    right: 9px;
    background: white;
    content: "";
    height: 15px;
    width: 3px;
} */


.name {
    position: absolute;
    padding-top: 80px;
    margin: 0;
    text-align: center;
    width: 100%;
    font-size: 30pt;
    font-style: italic;
}

.contact {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 50px 0px;
    text-align: center;
    background: #1e1e1e;
}

#mail {
    display: block;
    width: 200px;
    margin: auto;
}

.footer {
    z-index: 1000;
    display: block;
    padding: 20px 0px;
    text-align: center;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.4);
    -webkit-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.4);
    -moz-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.4);
}

.footer p {
    margin: 0;
    font-size: 10pt;
    font-weight: 100;
    font-style: italic;
}

@media only screen and (max-width : 700px) {

    /* .hero {
        height: calc(100vh - 110px);
        background: url(/images/hero.jpg) no-repeat 72% 50%;
        background-size: cover;
    } */
}
