html,
body {
    height: 100%;
}

body {
    text-align: center;
    font-family: "Avenir W01", Arial, sans-serif;
    font-size: 0;
    -webkit-font-smoothing: antialiased;
}

body.noscroll {
    overflow: hidden;
}

a {
    text-decoration: none;
}

a:active {
    opacity: 0.2 !important;
    -webkit-transition: none;
    transition: none;
}


/* Hero
------------------------------------ */

.hero {
    width: 100%;
    height: 85%;
    background: #1C253E;
    position: relative;
    overflow: hidden;
    -webkit-transition: all 3050ms cubic-bezier(0.55, -0.01, 0.24, 1.01);
    transition: all 3050ms cubic-bezier(0.55, -0.01, 0.24, 1.01);
}

.hero .container {
    position: absolute;
    top: 55%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    width: 100%;
    max-width: 1000px;
    z-index: 9;
    opacity: 0;
}

.hero.alive .container {
    opacity: 1;
}

.hero .logo {
    width: 130px;
    background: url(../img/pzizz-logo.png) no-repeat;
    background-size: 100%;
    height: 58px;
    display: inline-block;
    z-index: 9;
    position: absolute;
    left: 50%;
    margin-left: -65px;
    top: 30px;
    opacity: 0;
    -webkit-transition: opacity 350ms cubic-bezier(0.55, -0.01, 0.24, 1.01);
    transition: opacity 350ms cubic-bezier(0.55, -0.01, 0.24, 1.01);
}

.hero h1 {
    font-size: 44px;
    font-weight: 800;
    color: #fff;
    padding-bottom: 40px;
    text-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
    opacity: 0;
    -webkit-transition: all 350ms cubic-bezier(0.55, -0.01, 0.24, 1.01);
    transition: all 350ms cubic-bezier(0.55, -0.01, 0.24, 1.01);
    letter-spacing: -.5px;
    margin-top: 50px;
}

.hero h2 {
    font-size: 26px;
    font-weight: 100;
    color: #fff;
    padding-bottom: 40px;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
    opacity: 0;
    -webkit-transition: all 700ms cubic-bezier(0.55, -0.01, 0.24, 1.01);
    transition: all 700ms cubic-bezier(0.55, -0.01, 0.24, 1.01);
    letter-spacing: .5px;
    line-height: normal;
    max-width: 800px;
    margin-right: auto;
    margin-left: auto;
}

.hero.alive h1,
.hero.alive h2,
.hero.alive .logo {
    opacity: 1;
    -webkit-transition-property: opacity;
    transition-property: opacity;
    margin-top: 0;
}

.downloads {
    display: inline-block;
    padding-bottom: 40px;
    width: 100%;
    opacity: 0;
    -webkit-transition: opacity 1050ms cubic-bezier(0.55, -0.01, 0.24, 1.01);
    transition: opacity 1050ms cubic-bezier(0.55, -0.01, 0.24, 1.01);
}

.downloads a {
    width: 189px;
    height: 54px;
    display: inline-block;
    margin: 10px;
    background-size: 100%;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
}

.hero .play-store {
    background-image: url(../img/play-store@2x.png);
}

.hero .app-store {
    background-image: url(../img/app-store@2x.png);
}

.hero .play-button {
    width: 45px;
    height: 45px;
    display: inline-block;
    border-radius: 50px;
    background: #fff url(../img/play-icon@2x.png) center no-repeat;
    background-size: 12px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
    opacity: 0;
    -webkit-transition: opacity 1400ms cubic-bezier(0.55, -0.01, 0.24, 1.01);
    transition: opacity 1400ms cubic-bezier(0.55, -0.01, 0.24, 1.01);
}

.hero.alive .downloads,
.hero.alive .play-button {
    opacity: 1;
}

.wave-solid {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 13px;
    background: url(../img/wave-solid@2x.png) center bottom -1px no-repeat;
    background-size: 100%;
    z-index: 2;
    display: none;
}

.fade {
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: url(../img/fade.png) bottom repeat-x;
    height: 100%;
    z-index: 5;
    opacity: 0.4;
}

#wave {
    position: absolute;
    left: -10%;
    bottom: -56px;
    z-index: 7;
}

#wave2 {
    position: absolute;
    left: -10%;
    bottom: -56px;
    z-index: 9;
}

.blocker {
    width: 100%;
    background: #fff;
    height: 4px;
    position: absolute;
    bottom: -2px;
    z-index: 100;
}

.stars {
    background: url(../img/stars.png);
    background-size: cover;
    opacity: 0.8;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 5;
    width: 100%;
    height: 100%;
    -webkit-transition: all 20000ms linear;
    transition: all 20000ms linear;
    -webkit-transform: scale(0.9);
            transform: scale(0.9);
}

.hero.alive .stars {
    opacity: 1;
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
}

@media screen and (max-width: 600px) {
    .hero {
        height: 450px;
    }
    .hero .container {
        padding: 0 20px;
    }
    .hero h1 {
        font-size: 20px;
    }
    .hero h2 {
        font-size: 16px;
    }
    .hero .downloads a {
        width: 128px;
        height: 36px;
        margin: 5px;
    }
    .hero .logo {
        width: 110px;
        margin-left: -55px;
    }
}


/* Modal
------------------------------------------------ */

.modal-overlay {
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    position: fixed;
    z-index: 20;
    top: 0;
    left: 0;
    display: none;
}

.modal {
    min-width: 500px;
    min-height: 300px;
    background: #fff;
    border-radius: 4px;
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.2);
    position: fixed;
    z-index: 21;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%) scale(0.96);
            transform: translate(-50%, -50%) scale(0.96);
    overflow: hidden;
    max-height: 90%;
    -webkit-transition: all 250ms cubic-bezier(0, 0.99, 0.57, 1);
    transition: all 250ms cubic-bezier(0, 0.99, 0.57, 1);
    display: none;
    opacity: 0;
}

.modal-overlay.active {
    display: inline-block;
}

.modal.active {
    display: inline-block;
    opacity: 0;
}

.modal.pop {
    -webkit-transform: translate(-50%, -50%) scale(1);
            transform: translate(-50%, -50%) scale(1);
    opacity: 1;
}

@media screen and (max-width: 500px) {
    .modal {
        height: 100%;
        top: 0;
        left: 0;
        -webkit-transform: scale(1) !important;
                transform: scale(1) !important;
        border-radius: 0;
        width: 100%;
        min-width: initial;
    }
}

.modal .title {
    width: 100%;
    background: #f9f9f9;
    border-bottom: 1px solid #eee;
    padding: 15px 0;
    font-size: 13px;
    font-weight: 500;
    color: #222;
    display: inline-block;
}

.exit {
    width: 32px;
    height: 32px;
    background: url(../img/exit@2x.png) center no-repeat;
    background-size: 11px;
    position: absolute;
    display: inline-block;
    right: 5px;
    top: 5px;
    opacity: 0.6;
}

.exit:hover {
    opacity: 1;
}

.modal form.book input,
.modal form.book select {
    height: 70px;
    width: 100%;
    border: none;
    border-bottom: 1px solid #eee;
}

.modal form.book .date {
    font-size: 13px;
}

.modal form.book .date.end {
    width: 46%;
}

.modal form.book .date.start {
    width: 53%;
}

.modal#video {
    width: 90%;
    max-width: 1000px;
}

@media screen and (max-width: 500px) {
    .modal#video {
        width: 100%;
    }
}

@media screen and (min-width: 500px) {
    .modal#video h1,
    .modal#video .exit {
        display: none;
    }
}


/* Press
------------------------------------------------ */

.press {
    width: 100%;
    display: inline-block;
    /*max-width: 1250px;*/
    background-color: #eeeeee;
}

.press ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-flow: row wrap;
        flex-flow: row wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}

.press li {
    height: 160px;
    display: inline-block;
    margin: 0 30px;
    opacity: 0;
}

.press .lifehacker {
    background: url(../img/p-lifehacker@2x.png) center no-repeat;
    background-size: 100%;
    width: 114px;
    -webkit-transition: opacity 500ms cubic-bezier(0.55, -0.01, 0.24, 1.01);
    transition: opacity 500ms cubic-bezier(0.55, -0.01, 0.24, 1.01);
    opacity: 50%;
}

.press .wired {
    background: url(../img/p-wired@2x.png) center no-repeat;
    background-size: 100%;
    width: 119px;
    -webkit-transition: opacity 500ms cubic-bezier(0.55, -0.01, 0.24, 1.01);
    transition: opacity 500ms cubic-bezier(0.55, -0.01, 0.24, 1.01);
    opacity: 50%;
}

.press .nyt {
    background: url(../img/p-nyt@2x.png) center no-repeat;
    background-size: 100%;
    width: 189px;
    -webkit-transition: opacity 500ms cubic-bezier(0.55, -0.01, 0.24, 1.01);
    transition: opacity 500ms cubic-bezier(0.55, -0.01, 0.24, 1.01);
    opacity: 50%;
}

.press .buzz {
    background: url(../img/p-buzzfeed@2x.png) center no-repeat;
    background-size: 100%;
    width: 119px;
    -webkit-transition: opacity 500ms cubic-bezier(0.55, -0.01, 0.24, 1.01);
    transition: opacity 500ms cubic-bezier(0.55, -0.01, 0.24, 1.01);
    opacity: 50%;
}

.press .gizmodo {
    background: url(../img/p-gizmodo@2x.png) center no-repeat;
    background-size: 100%;
    width: 125px;
    -webkit-transition: opacity 500ms cubic-bezier(0.55, -0.01, 0.24, 1.01);
    transition: opacity 500ms cubic-bezier(0.55, -0.01, 0.24, 1.01);
    opacity: 50%;
}

.press .engadget {
    background: url(../img/p-engadget@2x.png) center no-repeat;
    background-size: 100%;
    width: 110px;
    -webkit-transition: opacity 500ms cubic-bezier(0.55, -0.01, 0.24, 1.01);
    transition: opacity 500ms cubic-bezier(0.55, -0.01, 0.24, 1.01);
    opacity: 50%;
}

.press .sports {
    background: url(../img/p-sports-illustrated_copy.png) center no-repeat;
    background-size: 100%;
    width: 160px;
    -webkit-transition: opacity 500ms cubic-bezier(0.55, -0.01, 0.24, 1.01);
    transition: opacity 500ms cubic-bezier(0.55, -0.01, 0.24, 1.01);
    opacity: 50%;
}

.logo-box:hover .logo {
    opacity: 1 !important;
    -webkit-transition: 0.4s ease-in;
    transition: 0.4s ease-in;
}

.press.alive li {
    /*opacity: 1;*/
    opacity: 0.5;
}

.logo-box {
    height: 160px;
    width: 250px;
    cursor: pointer;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

@media screen and (max-width: 1024px) {
    .logo-box {
        width: 204px;
    }
}

.sports-box {
    background-color: #f8f8f8;
}

@media screen and (max-width: 600px) {
    .press li {
        height: 90px;
    }
    .press {
        /*padding-top: 50px;*/
    }
    .press .lifehacker {
        width: 130px;
    }
    .press .wired {
        width: 99px;
    }
    .press .nyt {
        width: 169px;
    }
    .press .buzzfeed {
        width: 90px;
    }
    .press .gizmodo {
        width: 105px;
    }
    .press .engadget {
        width: 130px;
    }
    .press .sports {
        width: 169px;
    }
    .logo-box {
        height: auto;
        width: 100%;
    }
}


/* Celeb
------------------------------------------------ */

.celeb-testimonials {
    width: 100%;
    display: inline-block;
    max-width: 1000px;
    position: relative;
    padding: 130px 0px 0px;
    height: 580px;
}

.celeb-testimonials h1 {
    font-family: 'Adobe Garamond W01', serif;
    font-size: 37px;
    line-height: 1.486;
    color: #2C3345;
    padding: 20px 80px 0px;
}

.celeb-testimonials .author {
    display: inline-block;
    /*box-shadow: 0 10px 25px rgba(0,0,0,0.15);*/
    /*padding:20px 25px;*/
    width: 390px;
    position: relative;
    text-align: center;
    /*margin-top: 80px;*/
}

.celeb-testimonials .author .author-img {
    height: 110px;
    overflow: hidden;
    width: 110px;
    margin-left: auto;
    margin-right: auto;
    border-radius: 50%;
}

.celeb-testimonials .author img {
    width: 110px;
    margin-bottom: 5px;
}

.celeb-testimonials .author h2 {
    font-family: "Avenir-Black", "Avenir Black", Arial, sans-serif;
    font-weight: bold;
    font-size: 24px;
    font-weight: 800;
    /*position: absolute;
  left: 100px;
  top: 25px;*/
    line-height: normal;
}

.celeb-testimonials .author span {
    font-family: "Avenir-Roman", "Avenir Roman", "Avenir", Arial, sans-serif;
    font-size: 14px;
    font-weight: 500;
    /*position: absolute;
  left: 100px;
  top: 55px;*/
    color: #797F8E;
    line-height: normal;
}

@media screen and (max-width: 600px) {
    .celeb-testimonials {
        margin-top: 30px;
        padding: 0px;
        height: 450px;
    }
    .celeb-testimonials h1 {
        font-size: 20px;
        line-height: 30px;
        padding: 20px 30px;
    }
    .celeb-testimonials .author {
        width: 300px;
        margin-top: 40px;
    }
    .celeb-testimonials .author h2 {
        font-size: 20px;
        top: 20px;
    }
    .celeb-testimonials .author span {
        font-size: 14px;
        top: 60px;
    }
}


/* How it works
------------------------------------ */

.how-it-works {
    width: 100%;
    display: inline-block;
    position: relative;
    overflow: hidden;
    padding: 200px 0 0;
    background: #232D3A;
    color: #fff;
}

.how-it-works .step {
    display: inline-block;
    width: 100%;
    max-width: 1000px;
    min-height: 350px;
    position: relative;
}

.how-it-works .icon {
    display: inline-block;
    position: absolute;
    left: 100px;
}

.how-it-works .content {
    width: 50%;
    left: 45%;
    position: absolute;
    display: inline-block;
    top: 20px;
}

.how-it-works .time .content {
    left: 10%;
}

.how-it-works h1 {
    color: #fff;
    font-size: 40px;
    font-weight: 800;
    text-align: left;
}

.how-it-works p {
    font-size: 16px;
    font-weight: 400;
    text-align: left;
    line-height: 1.6;
    padding-top: 30px;
}

.how-it-works p a {
    color: #dbb56f;
    text-decoration: underline;
}

.icon.listen {
    left: 4px;
}

.icon.listen .i-container {
    background: url(../img/listen-container@2x.png);
    background-size: 432px;
    height: 337px;
    width: 432px;
    display: inline-block;
    position: relative;
    z-index: 1;
}

.icon .circle-container {
    position: absolute;
    width: 234px;
    height: 234px;
    overflow: hidden;
    display: inline-block;
    z-index: 2;
    border-radius: 200px;
    left: 116px;
    top: 5px;
}

.icon.listen .i-wave {
    background-size: 414px;
    height: 238px;
    width: 414px;
    display: inline-block;
    position: absolute;
    left: -100px;
    top: 80px;
}

.icon.listen .wave1 {
    background-image: url(../img/listen-wave1@2x.png);
}

.icon.listen .wave2 {
    background-image: url(../img/listen-wave2@2x.png);
}

.icon.time {
    left: auto;
    right: 35%;
}

.icon.time .arm,
.icon.time .dot {
    background: url(../img/clock-moving@2x.png);
    background-size: 234px;
    height: 234px;
    width: 234px;
    display: inline-block;
    position: absolute;
    z-index: 1;
}

.icon.time .dot {
    background-image: url(../img/clock-dot@2x.png);
    z-index: 4;
}

.icon.time .big.arm {
    background-image: url(../img/clock-big-arm@2x.png);
    z-index: 1;
}

.icon.time .med.arm {
    background-image: url(../img/clock-med-arm@2x.png);
    z-index: 2;
}

.icon.time .small.arm {
    background-image: url(../img/clock-small-arm@2x.png);
    z-index: 2;
}

.icon.time .details {
    background: url(../img/clock-details@2x.png);
    background-size: 234px;
    height: 234px;
    width: 234px;
    display: inline-block;
    position: absolute;
    z-index: 2;
}

.icon.stats .circle {
    background: url(../img/stats@2x.png);
    background-size: 274px;
    height: 274px;
    width: 274px;
    display: inline-block;
    position: absolute;
    z-index: 2;
}

.icon.stats .card {
    background: url(../img/card@2x.png);
    background-size: 107px;
    height: 66px;
    width: 107px;
    display: inline-block;
    position: absolute;
    z-index: 3;
}

.icon.stats .c1 {
    left: -20px;
    top: 40px;
}

.icon.stats .c2 {
    left: 180px;
    top: 150px;
}

.icon.stats .c3 {
    left: 20px;
    top: 250px;
}

@media screen and (max-width: 800px) {
    .how-it-works {
        padding-top: 50px;
    }
    .how-it-works .step {
        min-height: 500px;
        margin-top: 100px;
    }
    .how-it-works .content {
        width: 90%;
        left: 5% !important;
        top: 250px;
    }
    .how-it-works .icon {
        top: 0;
        left: 50% !important;
        margin-left: -140px;
    }
    .how-it-works .icon.time {
        margin-left: -290px;
        left: 50%;
    }
    .how-it-works .icon.listen {
        margin-left: -235px;
    }
    .how-it-works p {
        text-align: center;
    }
    .how-it-works h1 {
        text-align: center;
    }
}


/* Testimonials
------------------------------------------------ */

.testimonials {
    width: 100%;
    display: inline-block;
    max-width: 1000px;
    position: relative;
    height: 700px;
    overflow: hidden;
}

.testimonial {
    display: inline-block;
    width: 100%;
    opacity: 0;
    z-index: 0;
    -webkit-transition: all 700ms cubic-bezier(0.55, -0.01, 0.24, 1.01);
    transition: all 700ms cubic-bezier(0.55, -0.01, 0.24, 1.01);
    position: absolute;
    top: 100px;
    left: 0;
}

.testimonial.active {
    display: inline-block;
    opacity: 1;
    z-index: 1;
}

.testimonials li .photo {
    width: 100px;
    height: 100px;
    display: inline-block;
    margin-bottom: 10px;
    border-radius: 50px;
}

.testimonials li .photo img {
    width: 100%;
    border-radius: 50px;
}

.testimonials li span {
    font-size: 14px;
    width: 100%;
    display: inline-block;
    padding-top: 10px;
    color: #797F8E;
    font-weight: 500;
}

.testimonials li h1 {
    font-family: 'Adobe Garamond W01', serif;
    font-size: 30px;
    line-height: 45px;
    color: #2C3345;
    padding: 30px 100px;
}

.testimonials .nav {
    display: inline-block;
    padding: 10px;
    position: absolute;
    left: 50%;
    bottom: 108px;
    margin-left: -50px;
    -webkit-transition: all 700ms cubic-bezier(0.01, 0.71, 0.29, 1);
    transition: all 700ms cubic-bezier(0.01, 0.71, 0.29, 1);
    width: 300px;
}

.testimonials .nav li {
    display: inline-block;
    width: 6px;
    height: 6px;
    margin: 0 10px;
    background: #D3D4D8;
    border-radius: 5px;
    z-index: 1;
}

.testimonials .nav li.active {
    opacity: 0;
    margin: 0 36px;
}

.testimonials .next {
    width: 72px;
    height: 72px;
    display: inline-block;
    border-radius: 50px;
    background: #fff url(../img/next-arrow@2x.png) center no-repeat;
    background-size: 26px;
    position: absolute;
    bottom: 86px;
    left: 50%;
    margin-left: -36px;
    z-index: 2;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
    -webkit-transition: all 200ms cubic-bezier(0, 0.69, 0.24, 1.01);
    transition: all 200ms cubic-bezier(0, 0.69, 0.24, 1.01);
}

.testimonials .next:hover {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
}

.testimonials .next:active {
    opacity: 0.2;
}

@media screen and (max-width: 800px) {
    .testimonials li h1 {
        font-size: 23px;
        line-height: 38px;
    }
}

@media screen and (max-width: 600px) {
    .testimonials {
        margin-top: 40px;
        margin-bottom: 0;
        height: 550px;
    }
    .testimonials .testimonial {
        top: 70px;
    }
    .testimonials li h1 {
        font-size: 15px;
        line-height: 26px;
        padding: 30px;
    }
    .testimonials .next {
        width: 50px;
        height: 50px;
        background-size: 20px;
        bottom: 37px;
    }
    .testimonials .nav {
        bottom: 49px;
        width: 210px;
        margin-left: -80px;
    }
    .testimonials .nav li {
        width: 5px;
        height: 5px;
        margin: 0 5px;
    }
    .testimonials .nav li.active {
        margin: 0 28px;
    }
}


/* Screenshot
------------------------------------------------ */

.screenshot {
    background: #fff;
    height: 660px;
    width: 100%;
    display: inline-block;
    position: relative;
    overflow: hidden;
}

.fake-overflow {
    width: 100%;
    height: 100px;
    background: #232D3A;
    display: inline-block;
}

.screenshot .content {
    position: absolute;
    top: 50%;
    -webkit-transform: translate(-80%, -50%);
            transform: translate(-80%, -50%);
    left: 50%;
    width: 50%;
    margin-top: 50px;
    max-width: 1000px;
    text-align: left;
}

.screenshot h1 {
    color: #1B1E24;
    font-size: 34px;
    font-weight: 800;
    padding-bottom: 40px;
    letter-spacing: -1px;
}

.screenshot h4 {
    color: #1B1E24;
    font-size: 20px;
    font-weight: 400;
    line-height: 33px;
    padding-bottom: 40px;
}

a.store {
    width: 188px;
    height: 54px;
    display: inline-block;
    margin-right: 20px;
    margin-bottom: 20px;
    background-size: 100%;
}

.play-store-dark {
    background-image: url(../img/play-store-dark@2x.png);
}

.app-store-dark {
    background-image: url(../img/app-store-dark@2x.png);
}

.screenshot .iphone-angle {
    background: url(../img/sleep-nap-angle@2x.png) no-repeat;
    background-size: 100%;
    position: absolute;
    right: 2%;
    bottom: -150px;
    height: 704px;
    width: 489px;
}

@media screen and (max-width: 950px) {
    .screenshot .iphone-angle {
        right: -150px;
    }
}

@media screen and (max-width: 600px) {
    .screenshot {
        height: 460px;
    }
    .screenshot .content {
        margin-top: 25px;
        width: 60%;
        -webkit-transform: translate(-70%, -50%);
                transform: translate(-70%, -50%);
    }
    .fake-overflow {
        height: 50px;
    }
    .screenshot .iphone-angle {
        width: 260px;
        height: 400px;
        left: 50%;
    }
    .screenshot h1 {
        font-size: 21px;
        padding-bottom: 20px;
        width: 100%;
    }
    .screenshot h4 {
        font-size: 15px;
        line-height: 25px;
        padding-bottom: 20px;
    }
    a.store {
        width: 138px;
        height: 39px;
        margin: 5px 5px 5px 0;
    }
}


/* Image Break
------------------------------------------------ */

.image-break {
    width: 100%;
    height: 700px;
    background: url(../img/woman-sleeping-zoom-out@2x.jpg) no-repeat center center;
    background-size: cover;
}

.image-break .section-container {
    width: 1280px;
    max-width: 90%;
    height: 100%;
    margin: 0px auto;
    text-align: left;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
}

.image-break .section-container .text {
    width: auto;

}

.image-break .section-container .section-title {
    font-size: 34px;
    font-weight: 900;
    color: #ffffff;
    /*padding-left: 788px;*/
    padding-top: 55px;
    padding-bottom: 16px;
}

.image-break .section-container .section-content{
    font-family: "Avenir-Roman", "Avenir Roman", "Avenir", Arial, sans-serif;
    font-size: 22px;
    color: #ffffff;
    /*padding-left: 789px;*/
    padding-bottom: 53px;
}

.image-break .section-container a {
    width: 200px;
    height: 60px;
    border-radius: 8px;
    background-color: #261930;
    /*margin-left: 790px;*/
    font-size: 16px;
    font-weight: 900;
    color: #ffffff;
    padding: 20px 46px;
}



@media screen and (min-width: 1000px) {
    .image-break {
        height: 900px;
    }
}

@media screen and (max-width: 800px) {
    .image-break {
        background: url("../img/woman-sleeping-mobile-min.png") no-repeat center center;
        background-size: cover;
    }
}

@media screen and (max-width: 600px) {
    .image-break {
        height: 300px;
    }

    .image-break .section-container {
        text-align: center;
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
    }
    .image-break .section-container .section-title {
        font-size: 24px;
    }
    .image-break .section-container .section-content {
        font-size: 16px;
    }

    .image-break .section-container a {
        font-size: 10px;
        padding: 10px 26px;
    }
}


/* Features
------------------------------------------------ */

.features {
    background: #261930 url(../img/stars.png);
    background-size: 1000px;
    width: 100%;
    display: inline-block;
    padding-bottom: 100px;
    position: relative;
    overflow: hidden;
}

.feature {
    display: inline-block;
    margin: 100px 25px 0;
    width: 300px;
    height: 200px;
    vertical-align: top;
    padding-top: 50px;
    position: relative;
}

.features .iphone {
    background: url(../img/iphone-perspective2@2x.png) no-repeat;
    background-size: 429px;
    height: 877px;
    width: 429px;
    display: inline-block;
    position: absolute;
    left: 50%;
    margin-left: -240px;
    z-index: 15;
    top: -100px;
}

.features .content {
    width: 700px;
    position: relative;
    text-align: left;
    margin: 400px auto 0;
    z-index: 15;
}

.features .content img {
    width: 50px;
    position: absolute;
    top: 0
}

.features .content img.f1 {
    width: 50px;
}

.features .content img.f2 {
    width: 30px;
}

.features .content img.f3 {
    width: 32px;
}

.features .content img.f4 {
    width: 50px;
}

.features .content img.f5 {
    width: 50px;
}

.features .content img.f6 {
    width: 40px;
}

.features .content img.f7 {
    width: 50px;
}

.features .content img.f8 {
    width: 40px;
}

.features .content h1 {
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: #fff;
    padding-top: 25px;
}

.features .content p {
    font-size: 15px;
    font-weight: 300;
    color: #fff;
    padding-top: 20px;
    line-height: 1.5;
}

@media screen and (max-width: 600px) {
    .features {
        min-height: 100px;
    }
    .features .iphone {
        display: none !important;
    }
    .features .content {
        left: 0;
        width: 100%;
        margin: 0;
        padding: 0 20px 20px;
        position: relative;
    }
    .feature {
        margin: 30px 0;
        position: relative;
        width: 100%;
        height: auto;
    }
    .features .content h1 {
        font-size: 14px;
    }
    .features .content p {
        font-size: 14px;
        padding-top: 10px;
    }
    .features .content img {
        width: 30px;
    }
}


/* Stars

@keyframes move-twink-back {
    from {background-position:0 0;}
    to {background-position:-10000px 5000px;}
}
@-webkit-keyframes move-twink-back {
    from {background-position:0 0;}
    to {background-position:-10000px 5000px;}
}
@-moz-keyframes move-twink-back {
    from {background-position:0 0;}
    to {background-position:-10000px 5000px;}
}
@-ms-keyframes move-twink-back {
    from {background-position:0 0;}
    to {background-position:-10000px 5000px;}
}

@keyframes move-clouds-back {
    from {background-position:0 0;}
    to {background-position:10000px 0;}
}
@-webkit-keyframes move-clouds-back {
    from {background-position:0 0;}
    to {background-position:10000px 0;}
}
@-moz-keyframes move-clouds-back {
    from {background-position:0 0;}
    to {background-position:10000px 0;}
}
@-ms-keyframes move-clouds-back {
    from {background-position: 0;}
    to {background-position:10000px 0;}
}

.stars, .twinkling, .clouds {
  position:absolute;
  top:0;
  left:0;
  right:0;
  bottom:0;
  width:100%;
  height:100%;
  display:block;
  z-index: 0;
}

.twinkling {
  background:transparent url(../img/twinkling.png) repeat top center;
  z-index:1;
  -moz-animation:move-twink-back 700s linear infinite;
  -ms-animation:move-twink-back 700s linear infinite;
  -o-animation:move-twink-back 700s linear infinite;
  -webkit-animation:move-twink-back 700s linear infinite;
  animation:move-twink-back 700s linear infinite;
}

.twinkling.purple {
  background:transparent url(../img/twinkling-purple.png) repeat top center;
}

------------------------------------------------ */


/* CTA
------------------------------------------------ */

.cta {
    display: inline-block;
    width: 100%;
    padding: 100px 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-flow: column;
        flex-flow: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}

.cta h1 {
    color: #1B1E24;
    font-size: 34px;
    font-weight: 800;
    padding-bottom: 80px;
}

.cta .store-butttons {
    margin-top: 60px;
}

@media screen and (max-width: 600px) {
    .cta {
        padding: 50px 0;
    }
    .cta h1 {
        font-size: 24px;
        padding: 0 20px 50px;
    }
}


/* Footer
------------------------------------------------ */

.footer {
    background: #272E3B;
    padding: 100px 0 50px 0;
    width: 100%;
    display: inline-block;
    position: relative;
}

.footer h2 {
    color: #fff;
    font-size: 24px;
    font-weight: 800;
    padding-bottom: 40px;
}

.footer h6 {
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    padding-bottom: 40px;
}

.footer .signup {
    width: 100%;
    max-width: 400px;
    background: #fff;
    border-radius: 4px;
}

.footer .social li {
    display: inline-block;
}

.footer .social .icon {
    width: 40px;
    height: 40px;
    border-radius: 24px;
    display: inline-block;
    margin: 0 10px 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.social .facebook {
    background: #fff url(../img/facebook@2x.png) center no-repeat;
    background-size: 9px;
}

.social .twitter {
    background: #fff url(../img/twitter@2x.png) center no-repeat;
    background-size: 20px;
}

.social .youtube {
    background: #fff url(../img/youtube@2x.png) center no-repeat;
    background-size: 18px;
}

.social .soundcloud {
    background: #fff url(../img/soundcloud@2x.png) center no-repeat;
    background-size: 23px;
}

.social .medium {
    background: #fff url(../img/medium@2x.png) center no-repeat;
    background-size: 17px;
}

.like-container {
    display: inline-block;
    height: 100px;
    width: 300px;
}

.links-container {
    padding-bottom: 20px;
}

.links-container ul li {
    display: inline-block;
    font-size: 18px;
    font-weight: 500;
    margin: 5px 30px;
}

.links-container ul li a {
    color: #fff;
}

.fine-print {
    color: #fff;
    font-size: 12px;
}

.copyright {
    position: absolute;
    left: 20px;
    bottom: 20px;
}

.contact {
    position: absolute;
    right: 20px;
    bottom: 20px;
}

.contact a {
    color: #fff;
}

@media screen and (max-width: 600px) {
    .footer {
        padding: 30px 20px 30px;
    }
    .footer h2 {
        padding-bottom: 10px;
        font-size: 20px;
    }

    .footer .links-container ul {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-flow: column;
            flex-flow: column;
    }
}


/* Subscribe
------------------------------------------------ */

.subscribe.container {
    padding-bottom: 100px;
}

.subscribe.container h1 {
    color: #c49a6c;
    margin-bottom: 50px;
}

.subscribe form {
    height: 60px;
    display: inline-block;
    width: 100%;
    max-width: 600px;
    border-radius: 3px;
    overflow: hidden;
    -webkit-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
    box-shadow: 0 13px 25px rgba(0, 0, 0, 0.35);
}

.subscribe input {
    height: 100%;
    width: 80%;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: #fff;
    border: none;
    padding: 0 20px;
    font-size: 16px;
    color: #37404b;
    box-sizing: border-box;
    outline: none;
    font-weight: 500;
    letter-spacing: -0.4px;
}

.subscribe input[type="email"] {
    border-radius: 3px 0px 0px 3px;
}

.subscribe .submit {
    width: 20%;
    float: right;
    background: #5A97FF;
    font-weight: 600;
    color: #fff;
    cursor: pointer;
    border-radius: 0px 3px 3px 0px;
}

.subscribe .message {
    width: 100%;
    display: inline-block;
    font-size: 14px;
    padding-top: 20px;
    color: #fff;
    font-weight: 500;
    display: none;
}

.subscribe .error {
    color: #D82026;
}

.subscribe .message.active {
    display: inline-block;
}

@media screen and (max-width: 600px) {
    .subscribe.container {
        padding: 20px 0px 40px;
    }
    .subscribe form {
        height: 120px;
    }
    .subscribe input {
        height: 60px;
        width: 100% !important;
    }
    .subscribe input[type="email"] {
        border-radius: 3px 3px 0px 0px;
        text-align: center;
    }

    .subscribe .submit {

        border-radius: 0px 0px 3px 3px;
    }
}


/* Privacy and Terms
------------------------------------------------ */

#privacy {
    background-color: #fff;
    color: #576068;
    font-family: Muli, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 16px;
    font-style: regular;
    font-weight: 300;
}

.full-width {
    display: block;
    width: 100%;
}

.full-width .outer-wrapper {
    position: relative;
    width: 100%;
    max-width: 1440px;
    float: none;
    margin-left: auto;
    margin-right: auto;
}

.full-width .outer-wrapper .inner-wrapper {
    padding-left: 1.875em;
    padding-right: 1.875em;
}

.limit-width.l-w-900 {
    max-width: 900px;
}

.left-text {
    text-align: left;
}

.limit-width {
    margin-left: auto!important;
    margin-right: auto!important;
    display: block!important;
    float: none!important;
}

.w-100 {
    width: 100%!important;
}

.w-100 {
    width: 100%!important;
}

.f-left {
    float: left;
}

.p-bottom-10 {
    padding-bottom: .625em;
}

.p-top-150 {
    padding-top: 9.375em;
}

.p-top-20 {
    padding-top: 1.25em;
}

#privacy h2 {
    font-weight: normal;
    color: #2e2e2e;
    font-size: 3em;
    line-height: .9em;
    margin-top: 0px;
    margin-bottom: 0px;
}

#privacy h4 {
    /*font-family: karbonregular;*/
    font-weight: normal;
    color: #2e2e2e;
    font-size: 1.5em;
    line-height: 1.3em;
    margin: 0;
}

@media (min-width: 768px) {
    section {
        padding: 20px 0;
    }
}

.number-list {
    list-style-type: decimal;
    padding: inherit;
}

.number-list li {
    padding-top: 10px;
    padding-bottom: 10px;
}

.alpha-list {
    list-style-type: upper-alpha;
    padding: inherit;
}

.unordered-list {
    padding: inherit;
    list-style-type: inherit;
}

.unordered-list li {
    padding: inherit;
    padding-top: 10px;
}

#privacy .footer {
    padding-top: 50px;
}

#privacy p {
    margin-bottom: 0;
    /*font-family: karbonregular;*/
    font-weight: normal;
    color: #2e2e2e;
    font-size: 1.125em;
    line-height: 1.7em;
    margin: 0;
}

@media handheld,
only screen and (max-width: 767px) {
    #privacy {
        overflow: visible;
        height: initial;
        font-size: 46%;
    }
    #privacy p {
        font-size: 1.75em;
    }
    #privacy h4 {
        font-size: 2.125em;
    }
}


/* Faqs
------------------------------------------------ */

#faqs {
    background: #1B233A;
    background-image: -webkit-linear-gradient(bottom, rgba(60, 55, 143, 0.50) 40%, rgba(16, 22, 38, 0.50) 100%);
    background-image: linear-gradient(0deg, rgba(60, 55, 143, 0.50) 40%, rgba(16, 22, 38, 0.50) 100%);
    padding: 0px;
}

#faqs .row {
    margin-left: 0px;
    margin-right: 0px;
}

#faqs .faqs-banner {
    height: 398px;
    background-image: url('../img/faq-stars.png');
    background-size: contain;
    color: #fff;
}

.faqs-banner .logo-holder {
    width: 130px;
    height: 58px;
    margin: 0 auto;
    margin-top: 2%;
}

.logo-holder img {
    max-width: 100%;
}

.search-bar {
    margin-top: 3%
}

.search-bar h2 {
    text-align: center;
    font-family: "Avenir W01", Arial, sans-serif;
    font-size: 3em;
    margin-bottom: 2%;
}

.search-bar input {
    color: #D8D8D8;
    background: transparent;
    background-image: url('../img/search-icon.png');
    background-repeat: no-repeat;
    background-position: 98% 50%;
    border: 1px solid rgba(255, 255, 255, 0.30);
    border-radius: 8px;
    font-size: 1em;
    outline: none;
    width: 35%;
    box-sizing: border-box;
    padding: 1.2% 1.3%;
}

.panel-group .panel-group-content {
    margin-bottom: 6%;
    text-align: left;
}

.group-header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-bottom: 1.5%;
}

.group-header img {
    margin-right: 2%;
}

.group-header h4 {
    color: #fff;
    font-family: "Avenir W01", Arial, sans-serif;
}

ol .panel-group-content .panel {
    background-color: transparent;
    text-align: left;
    border: .8px solid #6A6B91;
    margin-bottom: 1.5%;
    border-radius: 8px;
}

.panel-group-content .panel .panel-heading {
    background: transparent;
    color: #D8D8D8;
    font-family: 'Muli', sans-serif;
    text-decoration: none;
}

.panel .panel-heading .panel-title {
    margin: auto 0 auto 0;
}

.panel .panel-heading {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding: 1.7% 5%;
}

.panel-heading h4 {
    font-size: 1em;
}

.panel-heading a {
    cursor: pointer;
    padding: 0.5%;
}

ol .panel-group-content .panel-collapse {
    border-radius: 8px;
    margin-bottom: 1.5%;
    line-height: 170%;
    letter-spacing: 0.1.5px;
    background: #251E3B;
    color: #CFCDD3;
}

.panel-collapse .panel-body {
    padding: 1.7% 5%;
}

.panel-body .circle {
    margin-top: 3%;
    list-style-type: circle;
    padding: inherit;
}
.panel-body .circle.only-bullet-points {
    margin-top: 0%;
    /*list-style-type: circle;
    padding: inherit;*/
}
.panel-body .lower-roman {
    margin-top: 1%;
    list-style-type: lower-roman;
    padding: inherit;
}
.panel-body .lower-alpha {
    margin-top: 3%;
    list-style-type: lower-alpha;
    padding: inherit;
}

.panel-body img {
    margin-top: 2%;
}

.panel-body i {
    font-style: italic;
}

.footer {
    padding-top: 50px;
}

.join-over {
    color: #fff;
    margin-top: 12%;
    margin-bottom: 15%;
}

.join-over p {
    font-size: 1.2em;
}

.join-over .last-sentence {
    margin-bottom: 5%;
}

.appstore-icons img {
    margin-right: 2%;
}

.join-over h4 {
    font-size: 2.6em;
    font-family: "Avenir-Black", "Avenir Black", Arial, sans-serif;
    margin-bottom: 2%;
}

@media screen and (max-width: 768px) {
    .panel-group {
        padding: 0 5% 0 5%;
    }
    .search-bar h2 {
        margin-bottom: 5%;
    }
    .search-bar input {
        width: 50%;
    }
}

@media screen and (max-width: 480px) {
    #faqs .faqs-banner {
        height: 300px;
    }
    .faqs-banner .logo-holder {
        margin-top: 5%;
    }
    .search-bar h2 {
        font-size: 2em;
        padding: 0 5% 0 5%;
        margin-bottom: 8%;
    }
    .search-bar input {
        width: 70%;
        padding: 3% 3.3%;
    }
    .panel-group .panel-group-content {
        margin-bottom: 10%;
    }
    .panel-group-content .group-header {
        margin-bottom: 5.5%;
    }
    ol .panel-group-content .panel {
        margin-bottom: 3%;
    }
    .panel-heading h4 {
        font-size: .9em;
        line-height: 170%;
    }

    .panel-collapse .panel-body {
        padding: 1.7% 9%;
    }
    .join-over h4 {
        font-size: 2.2em;
        margin-bottom: 1em;
        padding: 0 5% 0 5%;
    }
    .join-over p {
        padding: 0 5% 0 5%;
        display: inline-block;
    }
    .join-over .last-sentence {
        display: inline;
        padding: 0px;
    }
    .join-over .appstore-icons {
        margin-top: 16%;
    }
}

@media only screen and (max-width: 375px) {
    .search-bar input {
        width: 80%;
    }
    .join-over .fall-asleep {
        padding: 0 4% 0 4%;
    }
    .join-over p {
        display: inline;
        padding: 0px;
    }
    .join-over .last-sentence {
        padding: 0px;
    }
    .appstore-icons {
        margin-top: 10%;
    }
    .appstore-icons img {
        margin-bottom: 8%;
    }
}
