@import url(http://fonts.googleapis.com/css?family=Raleway:400,700);
@import url(http://fonts.googleapis.com/css?family=Montserrat);
@import url(https://fonts.googleapis.com/css?family=Lato);

body, html {
    font-size: 100%;
    margin: 0;
    padding: 0;
    background: #000;
}
h1, h2, h3, h4, h5, h6 {
    font-weight: normal;
    margin: 0;
    padding: 0;
}
div, p {
    margin: 0;
    padding: 0;
}
p {
    color: #ffffff;
    margin: 0;
    padding: 0;
}
a:link, a:visited {
    color: #fff;
    text-decoration: none;
    outline: 0;
}
a:hover, a:active {
    color: #fff;
    text-decoration: none;
    outline: 0;
}
img {
    border: medium none;
}
.img-responsive {
    background-size: cover;
    height: auto;
    width: 100%;
}
.table {
    display: table;
    position: relative;
}
.cell {
    display: table-cell;
    vertical-align: middle;
}
/*--On Scroll--*/
.toAnim {
    opacity: 0;
    filter: alpha(opacity=0);
    transition: opacity 1s ease 0s;
}
.toAnim.anim {
    opacity: 1;
    filter: alpha(opacity=100);
}

/*--Hero-----------------------------------------*/
#hero {
    background: url(../_img/hero-bg.jpg) no-repeat center top #fff;
    width: 100%;
    height: auto;
    background-size: cover;
    margin: 0;
    padding: 0;
}

/*--Header--*/
#hero #header {
    width: 100%;
    height: auto;
    margin: 0;
    padding: 0;
}
#hero #header .content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
}
#hero #header .content:after {
    content: "";
    display: block;
    clear: both;
}
#hero #header .content #logo {
    background: url(../_img/logo.svg) no-repeat;
    background-size: 316px 41px;
    width: 316px;
    height: 41px;
    margin: 67px 0 0 0;
    padding: 0;
    float: left;
}
#hero #header .content #evening-standard {
    background: url(../_img/eveningstandard.svg) no-repeat;
    background-size: 229px 30px;
    width: 229px;
    height: 30px;
    margin: 79px 0 0 30px;
    padding: 0;
    float: left;
}

/*Login Container*/
#hero #header .content .login-container {
    float: left;
    margin: 72px 0 0 30px;
    width: 392px;
}
#hero #header .content .login-container:after {
    content: "";
    clear: both;
    display: block;
}   
#hero #header .content .login-container input {
    background: rgba(0,0,0,.5);
    color: #eee;
    font-size: 14px;
    padding: 0 10px;
    border: 0;
    width: 134px;
    height: 33px;
    margin: 0 5px 0 0;
    border-radius: 0;
}
#hero #header .content .login-container .button {
    background: #ff970d;
    color: #fff;
    font-size: 14px;
    position: absolute;
    border: none;
    padding: 0;
    margin: 0;
    height: 33px;
    width: 70px;
    -webkit-appearance: none;
    cursor: pointer;
    border-radius: 0!important;
    text-align: center;
    -webkit-transition: all 200ms ease-in-out 100ms;
    -moz-transition: all 200ms ease-in-out 100ms;
    -ms-transition: all 200ms ease-in-out 100ms;
    -o-transition: all 200ms ease-in-out 100ms;
    transition: all 200ms ease-in-out 100ms;
}
#hero #header .content .login-container .button:hover {
    background: #ffa62f;
    -webkit-transition: all 200ms ease-in-out 100ms;
    -moz-transition: all 200ms ease-in-out 100ms;
    -ms-transition: all 200ms ease-in-out 100ms;
    -o-transition: all 200ms ease-in-out 100ms;
    transition: all 200ms ease-in-out 100ms;
}

/*--5 Step Form--*/
#hero #form-wrapper {
    max-width: 1200px;
    height: auto;
    margin: 0 auto;
    padding: 100px 0;
    position: relative;
}
#hero #form-wrapper h1 {
    display: none;
}

/*Badge*/
#hero #form-wrapper #badge-mobile {
    display: none;
}
#hero #form-wrapper #badge {
    background: #3d84ba;
    width: 125px;
    height: 110px;
    padding: 15px 0 0 0;
    position: absolute;
    left: -63px;
    top: 37px;
    -webkit-border-radius: 63px 63px 63px 63px;
    border-radius: 63px 63px 63px 63px;
    z-index: 999;
    -webkit-box-shadow: 0 3px 5px 0 #111;
    box-shadow: 0 3px 5px 0 #111;
    -webkit-transition: all 200ms ease-in-out 100ms;
    -moz-transition: all 200ms ease-in-out 100ms;
    -ms-transition: all 200ms ease-in-out 100ms;
    -o-transition: all 200ms ease-in-out 100ms;
    transition: all 200ms ease-in-out 100ms;
    -webkit-animation: fadein 2s; /* Safari, Chrome and Opera > 12.1 */
       -moz-animation: fadein 2s; /* Firefox < 16 */
        -ms-animation: fadein 2s; /* Internet Explorer */
         -o-animation: fadein 2s; /* Opera < 12.1 */
            animation: fadein 2s;
}

@keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Firefox < 16 */
@-moz-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Safari, Chrome and Opera > 12.1 */
@-webkit-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Internet Explorer */
@-ms-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Opera < 12.1 */
@-o-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

#hero #form-wrapper #badge:hover {
    background: #4696d4;
    -webkit-transition: all 200ms ease-in-out 100ms;
    -moz-transition: all 200ms ease-in-out 100ms;
    -ms-transition: all 200ms ease-in-out 100ms;
    -o-transition: all 200ms ease-in-out 100ms;
    transition: all 200ms ease-in-out 100ms;
}
#hero #form-wrapper #badge p {
    color: #fff;
    font-size: 25px;
    font-family: Montserrat;
    font-weight: 400;
    margin: 0;
    line-height: 31px;
    padding: 0;
    text-align: center;
}
#hero #form-wrapper #badge p strong {
    font-size: 36px;
    font-weight: 700;
}
#hero #form-wrapper #badge .smaller2 {
    font-size: 15px;
    line-height: 15px;
}

/*--Row1----------------------------------------*/
#row1 {
    background: #ff970d;
    width: 100%;
    height: auto;
    margin: 0 auto;
    padding: 45px 0 90px 0;
    overflow: hidden;
    border-top: 4px solid #fff;
}
#row1 h2 {
    color: #fff;
    font-size: 28px;
    font-family: Montserrat, sans-serif;
    font-weight: 700;
    margin: 0 auto 20px auto;
    padding: 0 20px;
    text-transform: uppercase;
    text-align: center;
}
#row1 p {
    color: #fff;
    font-size: 18px;
    font-family: Raleway, sans-serif;
    font-weight: 400;
    margin: 0 auto 40px auto;
    padding: 0 20px;
    line-height: 20px;
    text-align: center;
    width: 1000px;
}
/*--Members Feed--*/
#row1 #member {
    width: 90%;
    height: auto;
    padding: 0 5%;
}
#row1 #member:after {
    content: "";
    clear: both;
    display: block;
}
.wld_badge_item {
    float: left;
    /*display: inline;*/
    margin: 0;
    padding: 0;
    height: none;
    width: none;
    overflow: visible;
}
#wld_badge_item_1, #wld_badge_item_2, #wld_badge_item_3, #wld_badge_item_4, #wld_badge_item_5, #wld_badge_item_6, #wld_badge_item_7, #wld_badge_item_8 {
    width: 5.5%;
    padding: 0 3%;
}
.wld_badge_item_photo a img  {
    height: auto;
    width: 180%;
    background-size: cover;
    border: medium solid #FFF;
    -webkit-border-radius: 123px 123px 123px 123px;
    border-radius: 123px 123px 123px 123px;
}
.wld_badge_item_detail, .wld_badge_item_name, .wld_badge_item_age, .wld_badge_item_region {
    display: none;
}

/*--Row 2----------------------------------*/
#row2 {
    background: url(../_img/row3-bg.jpg) no-repeat center bottom;
    width: 100%;
    height: auto;
    background-size: cover;
    margin: 0;
    padding: 100px 0;
}
#row2 .content {
    max-width: 1200px;
    height: auto;
    margin: 0 auto;
    padding: 0;
}
#row2 .content:after {
    content: "";
    clear: both;
    display: block;
}
#row2 .content #pod {
    margin: 0 3.5% 0 0;
    padding: 0;
    width: 31%;
    height: auto;
    float: left;
}
#row2 .content #pod:nth-child(3) {
    margin-right: 0;
}
#row2 .content #pod #icon1 {
    background: url(../_img/row2-img1.svg) no-repeat;
    background-size: 106px 64px;
    width: 106px;
    height: 64px;
    margin: 0 auto 10px auto;
    padding: 0;
}
#row2 .content #pod #icon2 {
    background: url(../_img/row2-img2.svg) no-repeat;
    background-size: 106px 64px;
    width: 106px;
    height: 64px;
    margin: 0 auto 10px auto;
    padding: 0;
}
#row2 .content #pod #icon3 {
    background: url(../_img/row2-img3.svg) no-repeat;
    background-size: 106px 64px;
    width: 106px;
    height: 64px;
    margin: 0 auto 10px auto;
    padding: 0;
}
#row2 .content #pod h2 {
    color: #fff;
    font-size: 18px;
    font-family: Montserrat, sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    margin: 0 0 5px 0;
    padding: 0 20px;
    line-height: 24px;
    text-align: center;
}
#row2 .content #pod p {
    color: #fff;
    font-size: 15px;
    font-family: Lato, sans-serif;
    font-weight: 400;
    line-height: 23px;
    margin: 0 0 5px 0;
    padding: 0 20px;
    text-align: center;
}
#row2 .content #pod a {
    color: #ff970d;
    font-family: Montserrat, sans-serif;
    font-size: 16px;
    font-weight: 400;
    width: 126px;
    margin: 0 auto;
    padding: 0;
    display: block;
    text-align: center;
    -webkit-transition: all 200ms ease-in-out 100ms;
    -moz-transition: all 200ms ease-in-out 100ms;
    -ms-transition: all 200ms ease-in-out 100ms;
    -o-transition: all 200ms ease-in-out 100ms;
    transition: all 200ms ease-in-out 100ms;
}
#row2 .content #pod a:hover {
    color: #fff;
    -webkit-transition: all 200ms ease-in-out 100ms;
    -moz-transition: all 200ms ease-in-out 100ms;
    -ms-transition: all 200ms ease-in-out 100ms;
    -o-transition: all 200ms ease-in-out 100ms;
    transition: all 200ms ease-in-out 100ms;
}

/*--Footer-------------------------------------*/
#footer {
    background: #ff970d;
    margin: 0;
    padding: 50px 0;
}
#footer .content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
}
#footer .content:after {
    content: "";
    display: block;
    clear: both;
}
/*Nav*/
#footer .content .navigation {
    list-style: outside none none;
    margin: 0 auto;
    padding: 0 0 20px 0;
    overflow: hidden;
    width: 338px;
}
#footer .content .navigation li {
    float: left;
}
#footer .content .navigation li a {
    color: #fff;
    font-family: Lato, sans-serif;
    font-size: 16px;
    display: block;
    margin: 0;
    padding: 0 9px;
    font-weight: 400;
    border-right: 2px solid #fff;
    -webkit-transition: all 100ms ease-in-out 100ms;
    -moz-transition: all 100ms ease-in-out 100ms;
    -ms-transition: all 100ms ease-in-out 100ms;
    -o-transition: all 100ms ease-in-out 100ms;
    transition: all 100ms ease-in-out 100ms;
}
#footer .content .navigation li a:hover {
    color: #000;
    -webkit-transition: all 100ms ease-in-out 100ms;
    -moz-transition: all 100ms ease-in-out 100ms;
    -ms-transition: all 100ms ease-in-out 100ms;
    -o-transition: all 100ms ease-in-out 100ms;
    transition: all 100ms ease-in-out 100ms;
}
.no-border {
    border-right: 0!important;
}
#footer .content p {
    color: #fff;
    font-family: Lato, sans-serif;
    font-size: 16px;
    margin: 0 auto;
    text-align: center;
    padding: 0;
    font-weight: 400;
}
#footer .content p u {
    font-weight: 700;
    text-decoration: none;
}


/*---------------MEDIA QUERIES---------------*/
@media screen and (max-width: 1370px) {
    #hero #form-wrapper #badge {
        left: 486px;
    }
}
@media screen and (max-width: 1240px) {
    #hero #header .content, #row2 > h2, #row2 > p, #row2 .content {
        padding: 0 20px;
    }
    #hero #form-wrapper {
        padding: 100px 20px;
    }
    #hero #form-wrapper #badge {
        left: 506px;
    }
    #row2 .content, #footer .content {
        padding: 0 20px;
    }
}
@media screen and (max-width: 1060px) {
    #hero #header .content {
        padding-top: 40px;
    }
    #hero #header .content #logo {
        float: none;
        margin: 0 auto;
    }
    #hero #header .content #evening-standard {
        float: none;
        margin: 20px auto 0 auto;
    }
    #hero #header .content .login-container {
        float: none;
        margin: 20px auto 0 auto;
        width: 412px;
    }

    #hero {
        position: relative;
    }
    #hero #form-wrapper {
        padding-top: 50px;
        position: static;
    }
    #form {
        margin: 0 auto!important;
    }
    #hero #form-wrapper #badge {
        display: block;
        background: rgba(61,132,186,.9);
        border-radius: 0;
        box-shadow: none;
        width: 520px;
        height: 38px;
        margin: auto;
        left: 0;
        right: 0;
        bottom: -511px;
        padding: 10px 15px;
    }
    #hero #form-wrapper #badge:hover {
        background: rgba(70,150,212,.9);
    }
    #hero #form-wrapper #badge p {
        float: left;
        line-height: 38px;
    }
    #hero #form-wrapper #badge p strong {
        font-size: 24px;
        line-height: 38px;
    }
    #hero #form-wrapper #badge .smaller2 {
        font-size: 22px;
        line-height: 38px;
        margin-left: 7px;
    }
    #row1 p {
        width: auto;
        padding: 0 40px;
    }
}
@media screen and (max-width: 1024px) {
    #wld_badge_item_1, 
    #wld_badge_item_2, 
    #wld_badge_item_3, 
    #wld_badge_item_4, 
    #wld_badge_item_5,
    #wld_badge_item_6, 
    #wld_badge_item_7, 
    #wld_badge_item_8 {
        padding: 0 7%;
        width: 9%;
    }
    #wld_badge_item_1, 
    #wld_badge_item_2, 
    #wld_badge_item_3, 
    #wld_badge_item_4 {
        padding-bottom: 2%;
    }
}
@media screen and (max-width: 850px) {
    #row1 {
        padding: 50px 0;
    }
    #row2 {
        padding: 50px 0;
        background-position: left top;
    }
    #row2 .content #pod {
        float: none;
        margin: 0 auto 40px 0;
        width: 100%;
    }
    #row2 .content #pod:nth-child(3) {
        margin-bottom: 0;
    }
}
@media screen and (max-width: 750px) {
    #hero #form, #hero .steps, .form-terms {
        display: none;
    }
    #hero #lbform {
        display: block;
    }
    #hero #form-wrapper {
        background: rgba(11, 0, 23, 0.8);
        padding: 0 20px 20px 20px!important;
        margin-top: 20px;
    }
    #hero #header .content .login-container input {
        background: rgba(0,0,0,.7);
    }
    #footer .content .navigation {
        width: auto;
    }
    #footer .content .navigation li {
        float: none;
    }
    #footer .content .navigation li a {
        margin: 0 auto 12px auto;
        text-align: center;
        border-right: 0;
        font-size: 16px;
    }
    #hero #form-wrapper {

    }
    #hero #form-wrapper h1 {
        color: #ff970d;
        display: block;
        font-family: Montserrat, sans-serif;
        font-size: 20px;
        font-weight: 400;
        margin: 0 auto;
        padding: 22px 10px 10px 10px;
        text-align: center;
        text-transform: uppercase;
    }
    #hero #form-wrapper #badge {
        display: none;
    }
    #hero #form-wrapper #badge-mobile {
        display: block;
        background: rgba(61,132,186,.9);
        border-radius: 0;
        box-shadow: none;
        width: 194px;
        height: 38px;
        margin: 0 auto;
        padding: 10px 15px;
    }
    #hero #form-wrapper #badge-mobile:hover {
        background: rgba(70,150,212,.9);
    }
    #hero #form-wrapper #badge-mobile p {
        float: left;
        line-height: 38px;
    }
    #hero #form-wrapper #badge-mobile p strong {
        font-size: 24px;
        line-height: 38px;
    }
    #hero #form-wrapper #badge-mobile .smaller2 {
        font-size: 22px;
        line-height: 38px;
        margin-left: 7px;
    }
}
@media screen and (max-width: 650px) {
    #wld_badge_item_7, #wld_badge_item_8 {
        display: none;
    }
    #wld_badge_item_1, #wld_badge_item_2, #wld_badge_item_3 {
        padding: 0 8.3% 2% 8.3%;
        width: 13%;
    }
    #wld_badge_item_4, #wld_badge_item_5, #wld_badge_item_6 {
        padding: 0 8.3%;
        width: 13%;
    }
}
@media screen and (max-width: 480px) {
    #hero #header .content .login-container {
        width: 229px;
    }
    #hero #header .content .login-container input {
        margin: 0 0 5px 0!important;
    }
    #hero #header .content .login-container input:nth-child(2) {
        margin-bottom: 0!important;
    }
    #hero #header .content .login-container .button {
        top: 151px;
        height: 71px;
        margin-left: 5px!important;
        margin-bottom: 0!important;
    }
}
@media screen and (max-width: 375px) {
}
@media screen and (max-width: 360px) {
    #hero #header .content #logo {
        width: 100%;
        height: 42px;
        background-size: 100% auto;
    }
    #hero #header .content .login-container .button {
        top: 132px;
    }
    #hero #header .content #evening-standard, #hero #header .content .login-container {
        margin-top: 10px;
    }
}
@media screen and (max-width: 320px) {
    #footer .content .navigation {
        padding-bottom: 30px;
    }
}
