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

Primary style

-------------------------------- */
html * {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

*,
*:after,
*:before {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

body {
    font-size: 100%;
    font-family: "effra", sans-serif;
    color: #3e3947;
    background-color: white;
}

body,
html {
    height: 100%;
}

h1.smoke-grey {
    font-family: "effra-bold", sans-serif;
    font-size: 56px;
    line-height: 58px;
    color: #023356;
    margin-bottom: 26px;
}

a {
    color: #3e3947;
    text-decoration: none;
}

img {
    max-width: 100%;
}

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

Modules - reusable parts of our design

-------------------------------- */
.cd-img-replace {
    /* replace text with a background-image */
    display: inline-block;
    overflow: hidden;
    text-indent: 100%;
    white-space: nowrap;
}

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

Main components 

-------------------------------- */
.cd-scroll-down {
    width: 38px;
    height: 44px;
    background: url("../images/cd-arrow-bottom.svg") no-repeat center center;
}

/* No Touch devices */
.cd-nav-trigger {
    display: none;
}

.no-touch #cd-vertical-nav {
    position: fixed;
    right: 30px;
    top: 50%;
    bottom: auto;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    z-index: 1;
    border-radius: 20px;
    padding: 5px 5px 0px;
    background-color: #fff;
}

.no-touch #cd-vertical-nav li {
    text-align: right;
}

.no-touch #cd-vertical-nav a {
    display: inline-block;

    /* prevent weird movements on hover when you use a CSS3 transformation - webkit browsers */
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.no-touch #cd-vertical-nav a:after {
    content: "";
    display: table;
    clear: both;
}

.no-touch #cd-vertical-nav a span {
    float: right;
    display: inline-block;
    -webkit-transform: scale(0.6);
    -ms-transform: scale(0.6);
    transform: scale(0.6);
}

.no-touch #cd-vertical-nav a:hover span {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}

.no-touch #cd-vertical-nav a:hover .cd-label {
    opacity: 1;
}

.no-touch #cd-vertical-nav .cd-dot {
    position: relative;

    /* we set a top value in order to align the dot with the label. If you change label's font, you may need to change this top value*/
    top: 8px;
    height: 15px;
    width: 15px;
    border-radius: 50%;
    background-color: #ddd;
    -webkit-transition: -webkit-transform 0.2s, background-color 0.5s;
    -webkit-transition: background-color 0.5s, -webkit-transform 0.2s;
    transition: background-color 0.5s, -webkit-transform 0.2s;
    -o-transition: transform 0.2s, background-color 0.5s;
    transition: transform 0.2s, background-color 0.5s;
    transition: transform 0.2s, background-color 0.5s, -webkit-transform 0.2s;
    -webkit-transform-origin: 50% 50%;
    -ms-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
}

.no-touch #cd-vertical-nav .cd-label {
    position: relative;
    margin-right: 10px;
    padding: .4em .5em;
    color: white;
    font-size: 14px;
    font-size: 0.875rem;
    -webkit-transition: -webkit-transform 0.2s, opacity 0.2s;
    -webkit-transition: opacity 0.2s, -webkit-transform 0.2s;
    transition: opacity 0.2s, -webkit-transform 0.2s;
    -o-transition: transform 0.2s, opacity 0.2s;
    transition: transform 0.2s, opacity 0.2s;
    transition: transform 0.2s, opacity 0.2s, -webkit-transform 0.2s;
    opacity: 0;
    -webkit-transform-origin: 100% 50%;
    -ms-transform-origin: 100% 50%;
    transform-origin: 100% 50%;
}

/* Touch devices */
.touch .cd-nav-trigger {
    display: block;
    z-index: 2;
    position: fixed;
    bottom: 30px;
    right: 5%;
    height: 44px;
    width: 44px;
    border-radius: 0.25em;
    background: rgba(255, 255, 255, 0.9);
}

.touch .cd-nav-trigger span {
    position: absolute;
    height: 4px;
    width: 4px;
    background-color: #3e3947;
    border-radius: 50%;
    left: 50%;
    top: 50%;
    bottom: auto;
    right: auto;
    -webkit-transform: translateX(-50%) translateY(-50%);
    -ms-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
}

.touch .cd-nav-trigger span::before,
.touch .cd-nav-trigger span::after {
    content: '';
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    background-color: inherit;
    border-radius: inherit;
}

.touch .cd-nav-trigger span::before {
    top: -9px;
}

.touch .cd-nav-trigger span::after {
    bottom: -9px;
}

.touch #cd-vertical-nav {
    position: fixed;
    z-index: 1;
    right: 5%;
    bottom: 30px;
    width: 90%;
    max-width: 400px;
    max-height: 90%;
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch;
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
    -webkit-transition-property: -webkit-transform;
    transition-property: -webkit-transform;
    -o-transition-property: transform;
    transition-property: transform;
    transition-property: transform, -webkit-transform;
    -webkit-transition-duration: 0.2s;
    -o-transition-duration: 0.2s;
    transition-duration: 0.2s;
    border-radius: 0.25em;
    background-color: rgba(255, 255, 255, 0.9);
}

.touch #cd-vertical-nav a {
    display: block;
    padding: 1em;
    border-bottom: 1px solid rgba(62, 57, 71, 0.1);
}

.touch #cd-vertical-nav a span:first-child {
    display: none;
}

.touch #cd-vertical-nav a.is-selected span:last-child {
    color: #d88683;
}

.touch #cd-vertical-nav.open {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}

.touch #cd-vertical-nav.open + .cd-nav-trigger {
    background-color: transparent;
}

.touch #cd-vertical-nav.open + .cd-nav-trigger span {
    background-color: rgba(62, 57, 71, 0);
}

.touch #cd-vertical-nav.open + .cd-nav-trigger span::before,
.touch #cd-vertical-nav.open + .cd-nav-trigger span::after {
    background-color: #3e3947;
    height: 3px;
    width: 20px;
    border-radius: 0;
    left: -8px;
}

.touch #cd-vertical-nav.open + .cd-nav-trigger span::before {
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    top: 1px;
}

.touch #cd-vertical-nav.open + .cd-nav-trigger span::after {
    -webkit-transform: rotate(135deg);
    -ms-transform: rotate(135deg);
    transform: rotate(135deg);
    bottom: 0;
}

.touch #cd-vertical-nav li:last-child a {
    border-bottom: none;
}

@media only screen and (min-width: 768px) {
    .touch .cd-nav-trigger,
    .touch #cd-vertical-nav {
        bottom: 40px;
    }
}

#section1 {
    background-color: #f7fff7;
    padding-top: 0px;
    padding-bottom: 50px;
}

#section2 {
    background-color: #a0ced9;
}

#section3 {
    background-color: #adf7b6;
}

#section4 {
    background-color: #ffee93;
}

#section5 {
    background-color: #fface4;
}

#section6 {
    background-color: #F7FFF7;
}

section p {
    font-family: 'effra';
    font-size: 20px;
    line-height: 28px;
    color: #023356;
}

.section-content {
    -ms-flex-item-align: center;
    align-self: center;
}

.outrow {
    padding-top: 250px;
    padding-bottom: 250px;
}

.btn-apple,
.btn-android,
.btn-google-play {
    display: inline-block;
    height: 70px;
    font-size: 18px;
    font-weight: 700;
    line-height: 21px;
    margin: 25px 0px 0 0px;
    padding: 14px 15px;
    position: relative;
    text-align: left;
    width: 180px;
    border-radius: 5px;
    background-color: #4cd0bd;
    color: #fff;
    font-family: "effra-bold", sans-serif;
    font-size: 18px !important;
    font-weight: 700;
    line-height: 21px !important;
}

.btn:hover,
.btn-apple:hover,
.btn-android:hover,
.btn-google-play:hover {
    background-color: #023356;
    color: #fff;
    text-decoration: none;
}

.btn-apple span,
.btn-android span,
.btn-google-play span {
    display: block;
    max-width: 65%;
    white-space: normal;
}

.btn-apple i,
.btn-android i,
.btn-google-play i {
    position: absolute;
    top: 50%;
    right: 15px;
}

.btn-apple i {
    font-size: 36px;
    margin-top: -18px;
}

.btn-android i {
    font-size: 40px;
    margin-top: -20px;
}

.btn-google-play i {
    font-size: 18px;
    margin-top: -9px;
    right: 15px;
}

@media only screen and (min-width: 1200px) {
    .btn-apple,
    .btn-android,
    .btn-google-play {
        width: 230px;
    }
}

.glyphicon-android-logo:before {
    content: "\e614";
}

.glyphicon-apple-logo:before {
    content: "\e600";
}

.glyphicon-close:before {
    content: "\e601";
}

.glyphicon-direction-down:before {
    content: "\e602";
}

.glyphicon-direction-left:before,
.post-navigation .nav-prev a:before {
    content: "\e603";
}

.glyphicon-direction-right:before,
.post-navigation .nav-next a:before {
    content: "\e604";
}

.glyphicon-direction-up:before {
    content: "\e605";
}

.glyphicon-envelope:before {
    content: "\e606";
}

.glyphicon-facebook:before {
    content: "\e607";
}

.glyphicon-flickr:before {
    content: "\e608";
}

.glyphicon-google-play-logo:before {
    content: "\e609";
}

.glyphicon-gplus:before {
    content: "\e60a";
}

.glyphicon-instagram:before {
    content: "\e60b";
}

.glyphicon-linkedin:before {
    content: "\e60c";
}

.glyphicon-minus:before {
    content: "\e60d";
}

.glyphicon-pinterest:before {
    content: "\e60e";
}

.glyphicon-play:before {
    content: "\e60f";
}

.glyphicon-plus:before {
    content: "\e610";
}

.glyphicon-search:before {
    content: "\e611";
}

.glyphicon-twitter:before {
    content: "\e612";
}

.glyphicon-youtube:before {
    content: "\e613";
}

.social {
    list-style-type: none;
    margin: 0;
    padding-left: 0;
    text-align: center;
}

.social li {
    display: inline-block;
    margin: 0 8px;
}

.social a {
    background-color: #023356;
    color: #fff;
    display: inline-block;
    font-size: 22px;
    line-height: 32pt;
    height: 40px;
    width: 40px;
    border-radius: 100%;
    -o-transition: background-color 200ms linear;
    -webkit-transition: background-color 200ms linear;
    transition: background-color 200ms linear;
}

.social a:hover {
    background-color: #4cd0bd;
    color: #fff;
}

.social-links {
    padding-top: 50px;
}

section .btn-apple,
section .btn-android,
section .btn-google-play {
    -webkit-transition: opacity 0.6s 0.1s, -webkit-transform 0.6s ease, background-color 200ms linear;
    -webkit-transition: opacity 0.6s 0.1s, background-color 200ms linear, -webkit-transform 0.6s ease;
    transition: opacity 0.6s 0.1s, background-color 200ms linear, -webkit-transform 0.6s ease;
    -o-transition: opacity 0.6s 0.1s, transform 0.6s ease, background-color 200ms linear;
    transition: opacity 0.6s 0.1s, transform 0.6s ease, background-color 200ms linear;
    transition: opacity 0.6s 0.1s, transform 0.6s ease, background-color 200ms linear, -webkit-transform 0.6s ease;
    -webkit-transition-delay: .3s, .3s, 0;
    -o-transition-delay: .3s, .3s, 0;
    transition-delay: .3s, .3s, 0;
    text-decoration: none;
}

.no-touch #cd-vertical-nav a.is-selected .cd-dot {
    background-color: #333333;
}

@media (max-width: 768px) {
    h1.smoke-grey.bold {
        font-size: 43px;
        line-height: 44px;
    }
}

@media (max-width: 767px) {
    a.cd-scroll-down {
        margin-top: 25px;
    }
}

.cd-section {
    min-height: 60%;

    /* position: relative */
    /* padding: 0 */
    /* display: -ms-flexbox */
    /* display: -webkit-flex */
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: center;

    /* -ms-flex-align: center */
    /* align-items: center */
}

.container-content {
    min-height: 60%;
}

@media (max-width: 767px) {
    .cd-section {
        padding-top: 50px;
        padding-bottom: 50px;
    }

    .mobile-gap {
        padding-bottom: 60px;
    }

    .mobile-gap-download {
        padding-bottom: 120px;
    }

    #cd-vertical-nav {
        display: none;
    }
}

@media (min-width: 768px) {
    .scroller-block {
        padding-top: 40px;
    }
}

.arrow {
    text-align: center;
    margin: 20% 0 10%;
    padding-top: 10%;
}

.bounce {
    -webkit-animation: bounce 2s infinite;
    animation: bounce 2s infinite;
}

@-webkit-keyframes bounce {
    0%,
    20%,
    50%,
    80%,
    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }

    40% {
        -webkit-transform: translateY(-30px);
        transform: translateY(-30px);
    }

    60% {
        -webkit-transform: translateY(-15px);
        transform: translateY(-15px);
    }
}

@keyframes bounce {
    0%,
    20%,
    50%,
    80%,
    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }

    40% {
        -webkit-transform: translateY(-30px);
        transform: translateY(-30px);
    }

    60% {
        -webkit-transform: translateY(-15px);
        transform: translateY(-15px);
    }
}

.cd-scroll-down:hover {
    -webkit-animation-play-state: paused;
    animation-play-state: paused;
}

.hand-hero {
    padding-top: 40px;
}

.privacy {
    padding-top: 120px;
}

.bouncy-pointer {
}

@media (max-width: 767px) {
    .arrow {
        padding-top: 35%;
        margin: 0% 0;
        padding-bottom: 0%;
    }
}