/* Background Video */
#intro {
    position: relative;
    background: #000;
    height: 70vh;
    min-height: 700px;
    background-size: cover;
    background-position: center center;
    overflow: hidden;
}

#intro .container {
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    position: absolute;
    top: 50%;
    left: 50%;
}

#intro .background-video {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-transform: translateZ(0);
}

#intro .background-video video {
    width: 100%;
    height: auto;
}

#intro .background-video video.max-height {
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    position: relative;
    height: auto /*100%*/;
    width: auto;
    left: 50%;
}

#intro .background-video:after {
    content: "";
    background-color: rgba(0,0,0,.5);
    width: 100%;
    padding-top: 250vh;
    display: block;
    position: absolute;
    top: 0;
}


@media (min-width: 1600px) {
    video {
        width: 100%;
    }

    #intro .background-video video.max-height {
        height: auto;
        width: 100%;
    }
}


/* Core Wraps */
section[class^="d-section-"] {
    margin: 20px 0;
    display: list-item;
}

.d-wall {
    width: 100%;
    display: inline-block;
    margin: 0;
    padding: 0;
}

.d-room {
    width: 80%;
    margin: 0 auto;
    clear: both;
    display: flex;
    flex-wrap: wrap;
    max-width: 1600px;
}

.d-room.reverse {
    flex-direction: row-reverse;
}

.d-area.col-1 {
    width: 100%;
}

.d-area.col-2 {
    width: 50%;
}

.d-area.col-3 {
    width: 33.33%;
    display: flex;
}

.d-area.col-3-2 {
    width: 67%;
}

.d-area.col-4 {
    width: 25%;
}

.d-area.col-4-3 {
    width: 75%;
}

@media (max-width: 820px) {
    .d-area.col-2 {
        width: 100%;
    }

    .d-area.col-3 {
        width: 50%;
    }
    
    .d-area.col-3-2 {
        width: 50%;
    }
    
    .d-area.col-4 {
        width: 50%;
    }

    .d-area.col-4-3 {
        width: 50%;
    }
}

@media (max-width: 480px) {
    .d-area.col-3 {
        width: 100%;
    }
    
    .d-area.col-3-2 {
        width: 100%;
    }
    
    .d-area.col-4 {
        width: 100%;
    }

    .d-area.col-4-3 {
        width: 100%;
    }
}


/* Core Type Styles */
body {
    font-family: 'Muli', sans-serif;
}

ul, ol {
    margin: 0;
    padding-left: 25px;
}

p, li {
    font-size: 16px;
    line-height: 1.8;
    letter-spacing: 0.1px;
}

li {
    padding-bottom: 20px;
}