/*
* LANDING PAGE
*/

body {
    width: 100%;
    height: 100%;
    font-family: 'Ubuntu', sans-serif;
    background: #fff;
    /*Flex container styles*/
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
}


/* ----------- MAIN SECTION ----------- */

.main-section {
    width: 100%;
    height: 100%;
    position: relative;
}

.wrapper-landing {
    width: 100%;
    height: 100%;
    background-image: url(../images/landing/back_main.png);
    background-position: center top;
    background-repeat: no-repeat;
    /*Flex container styles*/
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    z-index: 1;
}

/* --- Brands/Influencer Container --- */

.bi-container {
    min-height: 600px;
    /*Flex styles*/
    -webkit-flex: 1 1 auto;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    /* Flex container styles */
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
}

.bi-container h1 {
    font-size: 36px;
    font-weight: 500;
    color: #24282e;
    margin-bottom: 10px;
}

.bi-container > div {
    width: 50%;
    background-repeat: no-repeat;
    /* Flex container styles*/
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

.brands-info {
    background-image: url(../images/landing/back_brand.png);
    background-position: top right;
}

.influencer-info {
    background-image: url(../images/landing/back_influencer.png);
    background-position: top left;
}

.content {
    margin-top: 100px;
    max-width: 500px;
    padding-left: 40px;
    padding-right: 40px;
    /* Flex container styles*/
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
}

.influencer-info > .content {
    /* Flex container styles*/
    -webkit-align-items: flex-end;
    -ms-flex-align: end;
    align-items: flex-end;
}


/* Brand/Influencer info text */

.brands-info > .content > span,
.influencer-info > .content > span {
    font-size: 18px;
    width: 100%;
    line-height: 1.8;
    display: block;
}

.brands-info > .content > span {
    color: #66796e;
}

.influencer-info > .content > span {
    color: #626881;
    text-align: right;
}


/* Brand/Influencer Icon*/

.brand-icon,
.influencer-icon {
    width: 140px;
    height: 110px;
    margin-bottom: 25px;
    background-position: center center;
    background-repeat: no-repeat;
}

.brand-icon {
    background-image: url(../images/landing/ic_1_brand.svg);
}

.influencer-icon {
    background-image: url(../images/landing/ic_1_influencer.svg);
}


/* --- Buttons --- */

.button {
    width: 180px;
    line-height: 50px;
    text-align: center;
    font-size: 16px;
    font-weight: bold;
    background: #66dd77;
    color: #fff;
    border-radius: 50px;
    margin-top: 20px;
    position: relative;
    z-index: 9991;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

.button a {
    color: #fff;
}

.brand-b {
    background: #66dd77;
    -webkit-box-shadow: 0px 12px 30px -4px rgba(102, 221, 119, 1);
    -moz-box-shadow: 0px 12px 30px -4px rgba(102, 221, 119, 1);
    box-shadow: 0px 12px 30px -4px rgba(102, 221, 119, 1);
}

.brand-b:hover {
    background: #63d673;
    cursor: pointer;
    -webkit-box-shadow: 0px 9px 30px -4px rgba(102, 221, 119, 1);
    -moz-box-shadow: 0px 9px 30px -4px rgba(102, 221, 119, 1);
    box-shadow: 0px 9px 30px -4px rgba(102, 221, 119, 1);
}

.influencer-b {
    background: #536dfe;
    /* float: right;*/
    -webkit-box-shadow: 0px 12px 30px -4px rgba(83, 109, 254, 1);
    -moz-box-shadow: 0px 12px 30px -4px rgba(83, 109, 254, 1);
    box-shadow: 0px 12px 30px -4px rgba(83, 109, 254, 1);
}

.influencer-b:hover {
    background: #5068f3;
    cursor: pointer;
    -webkit-box-shadow: 0px 9px 30px -4px rgba(83, 109, 254, 1);
    -moz-box-shadow: 0px 9px 30px -4px rgba(83, 109, 254, 1);
    box-shadow: 0px 9px 30px -4px rgba(83, 109, 254, 1);
}

.mobile-b {
    display: none;
}


/* --- Topic --- */

.topic {
    width: 100%;
    position: absolute;
    top: 163px;
    z-index: 9;
    text-align: center;
}

.topic > h1 {
    font-size: 32px;
    color: #24282e;
    margin-bottom: 20px;
    font-weight: 500;
}

.topic > p {
    font-size: 15px;
    line-height: 1.5;
    color: #24282e;
}


/* --- Social Media Icons --- */

.social-media {
    width: 280px;
    margin: 0 auto;
    /*Flex container styles*/
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-around;
    -ms-flex-pack: distribute;
    justify-content: space-around;
}

.social-media > div {
    margin-top: 20px;
    width: 40px;
    height: 40px;
    border-radius: 20px;
    -webkit-box-shadow: 0px 8px 22px -1px rgba(129, 129, 129, 0.3);
    -moz-box-shadow: 0px 8px 22px -1px rgba(129, 129, 129, 0.3);
    box-shadow: 0px 8px 22px -1px rgba(129, 129, 129, 0.3);
}

.instagram-icon {
    background-image: url(../images/landing/ic_1_instagram.svg);
}

.facebook-icon {
    background-image: url(../images/landing/ic_1_facebook.svg);
}

.twitter-icon {
    background-image: url(../images/landing/ic_1_twitter.svg);
}

.pinterest-icon {
    background-image: url(../images/landing/ic_1_pinterest.svg);
}

.skype-icon {
    background-image: url(../images/landing/ic_1_skype.svg);
}

.snapchat-icon {
    background-image: url(../images/landing/ic_1_snapchat.svg);
}


/* --- Circle Logo --- */

.circle-logo {
    width: 100%;
    height: 120px;
    position: absolute;
    top: 370px;
    z-index: 9990;
    text-align: center;
}

.circle-logo > .logo-image {
    width: 120px;
    height: 120px;
    margin: 0 auto;
    border-radius: 60px;
    background: #fff;
    background-image: url(../images/landing/ic_1_circled_logo.svg);
    background-position: center center;
    background-repeat: no-repeat;
    -webkit-box-shadow: 0px 8px 22px -1px rgba(129, 129, 129, 0.3);
    -moz-box-shadow: 0px 8px 22px -1px rgba(129, 129, 129, 0.3);
    box-shadow: 0px 8px 22px -1px rgba(129, 129, 129, 0.3);
}


/* -------- FOOTER SECTION --------- */


/* --- Trusted  Brands --- */

.trusted-brands {
    width: 100%;
    height: 100px;
    position: absolute;
    bottom: 60px;
    z-index: 9990;
}

.trusted-brands > div {
    width: 500px;
    height: 100%;
    margin: 0 auto;
    font-size: 16px;
    text-align: center;
    font-weight: bold;
    padding-top: 70px;
    background-image: url(../images/landing/img_1_trust_bg@2x.png);
    background-size: contain;
    background-position: bottom center;
    background-repeat: no-repeat;
}


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

.footer {
    position: relative;
}

.footer-icons {
    width: 100%;
    max-width: 1920px;
    margin: 0 auto;
    height: 60px;
    min-height: 60px;
    /* Flex container styles*/
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

.footer-icons > div {
    width: 14%;
    height: 40px;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
    padding: 10px;
    -webkit-transition: background-image 0.3s ease-out;
    -moz-transition: background-image 0.3s ease-out;
    -o-transition: background-image 0.3s ease-out;
    transition: background-image 0.3s ease-out;
}


/* --- Brand logos --- */

.marieclaire-logo {
    max-width: 200px;
    background-image: url(../images/landing/footer_icons/img_1_marieclaire_persollo_grey@2x.png);
}

.marieclaire-logo:hover {
    background-image: url(../images/landing/footer_icons/img_1_marieclaire_persollo@2x.png);
}

.cecily-clune-logo {
    background-image: url(../images/landing/footer_icons/img_1_cecily_clune_persollo_grey@2x.png);
}

.cecily-clune-logo:hover {
    background-image: url(../images/landing/footer_icons/img_1_cecily_clune_persollo@2x.png);
}

.australian_ugg-logo {
    background-image: url(../images/landing/footer_icons/img_1_australian_ugg_original_persollo_grey@2x.png);
}

.australian_ugg-logo:hover {
    background-image: url(../images/landing/footer_icons/img_1_australian_ugg_original_persollo@2x.png);
}

.newbalance-logo {
    background-image: url(../images/landing/footer_icons/img_1_newbalance_persollo_grey@2x.png);
}

.newbalance-logo:hover {
    background-image: url(../images/landing/footer_icons/img_1_newbalance_persollo@2x.png);
}

.telstra-logo {
    background-image: url(../images/landing/footer_icons/img_1_telstra_persollo_grey@2x.png);
}

.telstra-logo:hover {
    background-image: url(../images/landing/footer_icons/img_1_telstra_persollo@2x.png);
}

.better-homes-logo {
    background-image: url(../images/landing/footer_icons/img_1_better_homes_and_gardens_persollo_grey@2x.png);
}

.better-homes-logo:hover {
    background-image: url(../images/landing/footer_icons/img_1_better_homes_and_gardens_persollo@2x.png);
}

.visa-logo {
    max-height: 35px;
    background-image: url(../images/landing/footer_icons/img_1_visa_persollo_grey@2x.png);
}

.visa-logo:hover {
    background-image: url(../images/landing/footer_icons/img_1_visa_persollo@2x.png);
}


/* ----------- MEDIA QUERIES ----------- */


/*max-width: 1400px*/

@media only screen and (max-width: 1400px) {
    .bi-container {
        min-height: 500px;
    }
    .bi-container > div {
        margin-top: -80px;
    }
    .content {
        margin-top: 200px;
    }
    .topic {
        top: 120px;
    }
    .circle-logo {
        top: 300px;
    }
}


/*max-width: 1024px*/

@media only screen and (max-width: 1024px) {
    .topic h1 {
        font-size: 24px;
    }
    .brand-icon,
    .influencer-icon {
        margin-top: 20px;
        margin-bottom: 15px;
    }
    .brands-info > .content > h1,
    .influencer-info > .content > h1 {
        font-size: 28px;
    }
    .brands-info > .content > span,
    .influencer-info > .content > span {
        width: 300px;
        height: 25px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }
}


/*max-width: 768px*/

@media only screen and (max-width: 768px) {
    
    body {
        min-width: 768px;
    }

    /* --- Brands/Influencer Container --- */
    .bi-container > .brands-info {
        /* Flex container styles*/
        -webkit-align-items: flex-start;
        -ms-flex-align: start;
        align-items: flex-start;
    }
    .bi-container > .influencer-info {
        /* Flex container styles*/
        -webkit-align-items: flex-end;
        -ms-flex-align: end;
        align-items: flex-end;
    }
    .brands-info > .content > span,
    .influencer-info > .content > span {
        display: none;
    }
    .brand-icon,
    .influencer-icon {
        width: 100px;
        height: 80px;
        background-size: contain;
        background-repeat: no-repeat;
    }

    .modalDialog > div {
        width: 18.8em;
    }
}


/* ------- MOBILE --------*/


/* max-width: 560px (Mobile) */

@media only screen and (max-width: 560px) {
    /* --- Main Container --- */
    body {
        min-width: 320px;
    }
    .wrapper-landing {
        width: 95%;
        margin: 0 auto;
    }

    /* --- Topic --- */
    .topic {
        top: 70px;
        padding: 0 20px;
    }
    .topic > h1 {
        margin-top: 30px;
        font-size: 24px;
    }
    .topic > p {
        display: none;
    }
    .bi-container {
        min-height: 425px;
    }
    .brands-info,
    .influencer-info {
        background: #fff;
    }

    /* --- Brands/Influencers Content --- */
    .content {
        width: 95%;
        margin-top: 280px;
        margin-bottom: 50px;
        padding: 25px;
        padding-bottom: 30px;
        /*Flex styles*/
        -webkit-flex: 1 1 auto;
        -ms-flex: 1 1 auto;
        flex: 1 1 auto;
        /* Flex container styles*/
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-justify-content: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
    .brands-info > .content {
        background: green;
        /*Gradient*/
        background: rgba(255, 255, 255, 0.4);
        background: -moz-linear-gradient(left, rgba(255, 255, 255, 0.4) 0%, rgba(102, 221, 120, 1) 100%);
        background: -webkit-gradient(left top, right top, color-stop(0%, rgba(255, 255, 255, 0.4)), color-stop(100%, rgba(102, 221, 120, 1)));
        background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0.4) 0%, rgba(102, 221, 120, 1) 100%);
        background: -o-linear-gradient(left, rgba(255, 255, 255, 0.4) 0%, rgba(102, 221, 120, 1) 100%);
        background: -ms-linear-gradient(left, rgba(255, 255, 255, 0.4) 0%, rgba(102, 221, 120, 1) 100%);
        background: linear-gradient(to right, rgba(255, 255, 255, 0.4) 0%, rgba(102, 221, 120, 1) 100%);
        filter: progid: DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#66dd78', GradientType=1);
        /* Box Shadow */
        -webkit-box-shadow: -5px 5px 18px -2px rgba(140, 140, 140, 0.86);
        -moz-box-shadow: -5px 5px 18px -2px rgba(140, 140, 140, 0.86);
        box-shadow: -5px 5px 18px -2px rgba(140, 140, 140, 0.86);
    }
    .influencer-info > .content {
        /*Gradient*/
        background: rgba(83, 108, 254, 1);
        background: -moz-linear-gradient(left, rgba(83, 108, 254, 1) 0%, rgba(255, 255, 255, 0.4) 100%);
        background: -webkit-gradient(left top, right top, color-stop(0%, rgba(83, 108, 254, 1)), color-stop(100%, rgba(255, 255, 255, 0.4)));
        background: -webkit-linear-gradient(left, rgba(83, 108, 254, 1) 0%, rgba(255, 255, 255, 0.4) 100%);
        background: -o-linear-gradient(left, rgba(83, 108, 254, 1) 0%, rgba(255, 255, 255, 0.4) 100%);
        background: -ms-linear-gradient(left, rgba(83, 108, 254, 1) 0%, rgba(255, 255, 255, 0.4) 100%);
        background: linear-gradient(to right, rgba(83, 108, 254, 1) 0%, rgba(255, 255, 255, 0.4) 100%);
        filter: progid: DXImageTransform.Microsoft.gradient( startColorstr='#536cfe', endColorstr='#ffffff', GradientType=1);
        /* Box Shadow */
        -webkit-box-shadow: 5px 5px 18px -2px rgba(140, 140, 140, 0.86);
        -moz-box-shadow: 5px 5px 18px -2px rgba(140, 140, 140, 0.86);
        box-shadow: 5px 5px 18px -2px rgba(140, 140, 140, 0.86);
        /*Flex container styles*/
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
    }
    .brand-icon,
    .influencer-icon {
        margin-bottom: 25px;
        margin: 0;
    }
    .brands-info > .content > span,
    .influencer-info > .content > span,
    .brands-info > .content > h1,
    .influencer-info > .content > h1 {
        display: none;
    }

    /* --- Circle logo --- */
    .circle-logo {
        display: none;
    }
    /* --- Buttons --- */
    .desktop-b {
        display: none;
    }
    .mobile-b {
        width: 120px;
        line-height: 32px;
        font-size: 14px;
        display: block;
    }
    /* --- Trusted  Brands --- */
    .trusted-brands > div {
        width: 350px;
        font-size: 14px;
        padding-top: 78px;
    }
    /* --- Footer Icons --- */
    .footer-icons > div {
        width: 30%;
        height: 40px;
    }
    .marieclaire-logo,
    .cecily-clune-logo,
    .telstra-logo,
    .better-homes-logo {
        display: none;
    }
}


/*max-width: 380px (Mobile) */

@media only screen and (max-width: 380px) {
    .trusted-brands > div {
        width: 300px;
        font-size: 12px;
        padding-top: 82px;
    }
}
