:root {
    color-scheme: light;
}

html,
body {
    margin: 0;
    padding: 0;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    background-color: #FFF;
    overscroll-behavior-y: none;
    overflow-x: hidden;
}

.wrapper {
    max-width: 538px;
    width: 100%;
    margin: 0 auto;
}

.wrapper.fluid {
    width: 100%;
}

.mobile {
    display: none;
}

/*
 * HEADER
 */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10;
    transition: all 0.5s ease-out;
}

header.minimal {
    transform: translateY(-79px);
}

header .top {
    text-align: center;
    background-color: #000;
    padding: 25px 0;
}

header .top img {
    display: block;
    margin: 0 auto;
}

header .top .bundle-logo {
    display: block;
}

.navigation {
    background-color: #006940;
    padding: 16px 0;
}

.navigation .wrapper {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    max-width: 96%;
}

.navigation .wrapper .item {
    flex: 1;
}

.navigation .wrapper .item a {
    display: inline-block;
}

.navigation .brand-logo img {
    display: block;
}

.navigation .title {
    font-size: 12px;
    font-weight: 800;
    color: #FFFFFF;
    text-align: center;
}

.navigation .title a {
    position: relative;
    padding: 10px 26px 10px 0;
    cursor: default;
}

.navigation .title a::before {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
    display: block;
    content: ' ';
    background-image: url('../img/icon-info.svg');
    background-size: 20px 20px;
    width: 20px;
    height: 20px;
}

.navigation .title .info {
    display: none;
    position: absolute;
    left: 50%;
    top: 40px;
    transform: translateX(-50%);
    width: 120%;
    max-width: 275px;
    font-size: 13px;
    line-height: 1.5em;
    font-weight: 200;
    color: #FFF;
    background-color: #000;
    padding: 15px;
    text-align: left;
    border-radius: 4px;
}

@media only screen and (min-width: 1023px) {
    .navigation .title a:hover .info {
        display: block;
    }
}

.navigation .title .info.active {
    display: block;
}

.navigation .title .info::before {
    top: -5px;
    left: 50%;
    content: " ";
    width: 12px;
    height: 12px;
    background-color: #000;
    transform: translateX(-50%) rotate(45deg);
    display: inline-block;
    position: absolute;
    border-radius: 1px;
}

.navigation .share {
    position: relative;
    text-align: right;
}

.navigation .share a.share-button {
    position: relative;
    padding: 10px 30px 10px 0;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 600;
    color: #FFFFFF;
}

.navigation .share a.share-button::before {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
    display: block;
    content: ' ';
    background-image: url('../img/icon-share.svg');
    background-size: 21px 21px;
    width: 21px;
    height: 21px;
}

.navigation .navigation-share {
    display: none;
    position: absolute;
    right: 0;
    top: 0;
    font-family: 'Montserrat';
    font-size: 18px;
    font-weight: 200;
}

.navigation .navigation-share.active {
    display: block;
}

.navigation .navigation-share {
    position: absolute;
    right: 0;
    top: 40px;
    font-family: 'Montserrat';
    font-size: 13px;
    font-weight: 200;
    color: #FFF;
    background-color: #000;
    padding: 8px 20px 8px 14px;
    text-align: left;
    border-radius: 4px;
}

.navigation .navigation-share::before {
    top: -5px;
    right: 27px;
    content: " ";
    width: 12px;
    height: 12px;
    background-color: #000;
    transform: translateX(-50%) rotate(45deg);
    display: inline-block;
    position: absolute;
    border-radius: 1px;
}

.navigation .navigation-share ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.navigation .navigation-share ul li {
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    padding: 7px 0;
    color: #FFF;
    opacity: 0.7;
    cursor: pointer;
    border-bottom: 1px solid #262626;
}

.navigation .navigation-share ul li:last-child {
    border-bottom: 0;
}

.navigation .navigation-share ul li:hover {
    opacity: 1;
}

.navigation .navigation-share ul li img {
    width: 25px;
    padding-right: 14px;
}

/*
 * INTRO
 */
#Intro {
    position: relative;
    display: block;
    padding-top: 145px;
    background-color: #10141D;
}

#Intro h1 {
    font-size: 38px;
    font-weight: 600;
    color: #E5EDE3;
    text-align: center;
    margin: 0 0 -55px 0;
}

#Intro img.logo {
    display: block;
    margin: 0 auto;
}

#Intro .slogan-wrapper {
    text-align: center;
}

#Intro .slogan-wrapper div.text-primary {
    font-size: 24px;
    font-weight: 500;
    color: #FFFFFF;
    margin-top: 35px;
    margin-bottom: 5px;
}

#Intro .slogan-wrapper div.text-secondary {
    font-size: 34px;
    font-weight: 600;
    color: #62BB46;
}

#Intro .slogan-wrapper img.icon-clap {
    margin: 10px auto 40px auto;
}

#Intro .discover-wrapper {
    text-align: center;
}

#Intro .text-discover {
    font-size: 24px;
    font-weight: 500;
    color: #9FA8B0;
}

#Intro .btn-discover {
    display: inline-block;
    margin: 30px auto 0 auto;
    padding: 20px;
    transition: all 0.4s ease-in-out;
    -webkit-animation: animateBtnDiscover 1s ease-out infinite;
    animation: animateBtnDiscover 1s ease-out infinite;
    cursor: pointer;
}

#Intro .btn-discover img {
    display: block;
    max-width: 32px;
}

/*
 * CONTENT
 */
#ContentWrapper {
    display: block;
    padding: 80px 0 60px;
    background-color: #10141D;
    color: #F0F0F0;
}

#ContentWrapper h2 {
    font-size: 47px;
    font-weight: 600;
    margin: 0;
    padding-bottom: 50px;
}

#ContentWrapper p {
    margin: 0;
    font-weight: 500;
    font-size: 24px;
    line-height: 1.45em;
}

#ContentWrapper p.spacing {
    margin: 35px 0;
}

/*** CALL TO ACTION PAGE ***/
#CallToActionPage {
    display: block;
    background-color: #091327;
    color: #FFFFFF;
    padding: 100px 0;
}

#CallToActionPage .description .logo {
    display: block;
}

#CallToActionPage .description {
    font-size: 24px;
    font-weight: 500;
    line-height: 1.45em;
    margin: 50px 0 40px;
}

#CallToActionPage .hashtag {
    font-size: 28px;
    font-weight: 600;
    line-height: 1.45em;
}

#CallToActionPage video {
    display: block;
    width: 100%;
    margin-top: 50px;
}

/*
 * FOOTER
 */
footer {
    background-color: #10141D;
    color: #777E90;
    font-weight: 400;
    font-size: 12px;
}

footer .wrapper {
    display: flex;
    align-items: center;
    padding: 50px 0;
    max-width: 96%;
}

footer .wrapper .item {
    flex: 1;
}

footer .wrapper .item.bundle-logo {
    text-align: center;
}

footer .wrapper span {
    display: block;
}

footer .wrapper span:last-child {
    text-align: right;
}

footer span.copyright {
    margin-right: auto;
}

footer span a {
    color: #777E90;
    text-decoration: none;
}

footer span a:hover {
    text-decoration: underline;
}

/*** ANIMATE ***/
@-webkit-keyframes animateBtnDiscover {
    0% {
        -webkit-transform: translateY(-50%);
        transform: translateY(-50%);
    }
    50% {
        -webkit-transform: translateY(calc(-50% + 8px));
        transform: translateY(calc(-50% + 8px));
    }
    100% {
        -webkit-transform: translateY(-50%);
        transform: translateY(-50%);
    }
}

@keyframes animateBtnDiscover {
    0% {
        -webkit-transform: translateY(-50%);
        transform: translateY(-50%);
    }
    50% {
        -webkit-transform: translateY(calc(-50% + 8px));
        transform: translateY(calc(-50% + 8px));
    }
    100% {
        -webkit-transform: translateY(-50%);
        transform: translateY(-50%);
    }
}

@media only screen and (max-width: 768px) {
    .wrapper { width: 85%; }
    .desktop { display: none; }
    .mobile { display: block; }
    header.minimal { transform: translateY(-50px); }
    header .top { padding-top: 8px; padding-bottom: 8px; }
    header .top .wrapper { display: flex; align-items: center; }
    header .top .wrapper a.bundle-logo { margin-right: auto; }
    header .top .mobile img { width: 50px; }
    .navigation { padding-top: 6px; padding-bottom: 6px; }
    .navigation .wrapper { display: flex; align-items: center; flex-direction: unset; justify-content: space-between; }
    .navigation .title .info { left: 0; transform: unset; }
    .navigation .wrapper .item { flex: unset; }
    footer .wrapper { flex-direction: column-reverse; flex: 1; }
    footer span.copyright { margin-right: 0; margin-top: 10px; }

    .navigation .title { font-size: 10px; }
    .navigation .share a.share-button { font-size: 10px; }
    #Intro { padding-top: 140px; padding-bottom: 30px; position: relative; }
    #Intro h1 { font-size: 16px; margin-bottom: -20px; }
    #Intro img.logo { width: 75%; }
    #Intro .slogan-wrapper div.text-primary { font-size: 16px; margin-top: 15px; }
    #Intro .slogan-wrapper div.text-secondary { font-size: 26px; }
    #Intro .slogan-wrapper img.icon-clap { width: 40px; margin-bottom: 20px; }
    #Intro .text-discover { font-size: 16px; }
    #ContentWrapper { padding: 48px 0; }
    #ContentWrapper h2 { font-size: 25px; }
    #ContentWrapper p { font-size: 16px; }
    #CallToActionPage { padding: 48px 0; }
    #CallToActionPage .description { font-size: 16px; margin: 30px 0; }
    #CallToActionPage .hashtag { font-size: 24px; }
    footer .wrapper { padding: 25px 0 45px; }
}

@media only screen and (max-width: 1440px) {
    #Intro { padding-top: 120px; }
    #Intro h1 { font-size: 34px; }
    #Intro img.logo { max-width: 520px; }
    #Intro .slogan-wrapper div.text-primary { margin-top: 15px; font-size: 22px; }
    #Intro .slogan-wrapper div.text-secondary { font-size: 32px; }
    #Intro .slogan-wrapper img.icon-clap { margin-bottom: 30px; }
    #Intro .text-discover { font-size: 22px; }
    #Intro .btn-discover { margin-top: 25px; }
}