/* Utility Classes */
.wrap {
    margin: 0 auto;
    text-align: center;
    max-width: 100%;
    padding: 0 15px;
    box-sizing: border-box;
}

/* Base Styles */
body {    
    font-family: 'Poppins', sans-serif;
    background: #1a1a1a;
    font-weight: 300;
    color: #fff;
}

/* Video Styles */
#video {
    margin-bottom: 40px;
    position: relative;
    width: 100%;
    height: auto;
    max-width: 100%;
}

#video video {
    width: 100%;
    height: auto;
    max-width: 100%;
    display: block;
}

#video .play {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    vertical-align: middle;
    display: block;
    text-indent: -9000px;
    z-index: 1;
}

#video .fullscreen {
    position: absolute;
    display: inline-block;
    bottom: 10px;
    right: 10px;
    z-index: 2;
}

/* Header Styles */
#header {
    background: #000;
    background-size: 100%;
    text-align: center;
    padding-top: 120px;
}

#header .wrap {
    max-width: 700px;
}

#header h1 {
    font-size: 60px;
    font-weight: 400;
}

#header h2 {
    font-size: 24px;
    font-weight: 300;
    color: #bedcff;
    margin-bottom: 40px;
}

#header p {
    font-size: 24px;
    font-weight: 300;
    margin: 0 20px 40px;
}

/* Primary Features */
#primary-features h3 {
    font-size: 30px;
    font-weight: 500;
    margin-bottom: 20px;
    margin-top: 20px;
}

#primary-features p {
    font-size: 24px;
    font-weight: 300;
}

#primary-features .group .wrap {
    display: block;
    width: 100%;
    padding: 40px 0;
}

#primary-features .group .text {
    display: block;
    text-align: center;
    width: 100%;
    max-width: 650px;
    margin: 0 auto 20px;
}

#primary-features .group img {
    display: block;
    margin: 0 auto;
    max-width: 100%;
    height: auto;
}

/* End-Zone */

#end-zone .group {
    max-width: 100%;
    padding: 0 10px;
    box-sizing: border-box;
    /* overflow: hidden; */
}

#end-zone .group .button-container {
    justify-content: center;
    display: flex;
    flex-wrap: wrap;
    width: 100%;
}



/* Secondary Features */
#secondary-features {
    padding: 60px 20px 0;
    font-size: 16px;
    line-height: 1.5em;
}

#secondary-features h1 {
    text-align: center;
    font-size: 30px;
    font-weight: 500;
    margin-bottom: 60px;
    margin-top: 20px;
}

#secondary-features h3 {
    font-weight: 600;
    margin-left: 60px;
    text-align: left;
}

#secondary-features p {
    font-weight: 300;
    margin-left: 60px;
    color: rgba(255, 255, 255, 0.7);
    text-align: left;
}

#secondary-features ul {
    width: 100%;
    max-width: 800px;
    margin: 0 auto 40px;
}

#secondary-features ul div {
    clear: both;
}

#secondary-features ul li {
    margin-bottom: 40px;
    float: left;
    width: 45%;
    margin-right: 5%;
}

/* Background Styles */
.whitebg {
    background: #fff;
    color: #000;
    padding: 0;
}

.whitebg p {
    color: rgba(0, 0, 0, 0.7);
}

.graybg {
    background: #1a1a1a;
    padding: 0;
}

.graybg p {
    color: rgba(255, 255, 255, 0.7);
}

/* Footer and Misc */
#footer {
    padding: 0 0 40px;
    text-align: center;
}

.privacy {
    margin-bottom: 40px;
    font-weight: 500;
}

.privacy a {
    color: #bedcff;
}

/* Media Queries */
@media only screen and (max-width: 860px) {
    #header h1 {
        font-size: 40px;
    }
    
    #header h2 {
        font-size: 20px;
    }
    
    #header p {
        font-size: 18px;
    }
    
    #header #appicon {
        width: 200px;
        height: auto;
    }
}

@media only screen and (max-width: 765px) {
    .wrap {
        padding: 0 15px;
    }
    
    #header #appicon {
        max-width: 150px;
    }
    
    #primary-features p {
        font-size: 21px;
        margin: 0 20px;
    }
    
    #primary-features .group .wrap {
        padding: 20px 15px;
    }

    #end-zone .group .wrap {
        padding: 20px 15px;
    }    
    
    #primary-features .group img {
        height: auto !important;
        max-width: 100%;
    }
    
    #secondary-features ul li {
        float: none;
        width: 90%;
        margin: 0 auto 40px;
    }
    
    .whitebg, .graybg {
        padding: 40px 0 0;
    }
}

html, body {
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

img, video {
    max-width: 100%;
    height: auto;
    display: block;
}