/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
    text-decoration:none;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
    display: block;
}
/*body {
    line-height: 1;
}*/
ol, ul {
    list-style: none;
}
blockquote, q {
    quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
    content: '';
    content: none;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}
article, aside, figure, footer, header, hgroup, menu, nav, section {
    display:block;
}



/* BODY */

html.temp{
    padding-bottom: 500px;
}

body{
    font-size: 62.5%;
    background-color: #fff;
}
body, input, textarea, select, button{
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-text-size-adjust: none;
    font-family: 'Rambla', sans-serif;
    font-weight: 400;
    color: #363636;
}
p{
    text-rendering: optimizeLegibility;
}
strong{
    font-weight: 700;
}
em{
    font-style: italic;
}
input, textarea, select, button{
    border: none;
    outline: none;
    resize: none;
    border-radius: 0;
    background-color: transparent;
    padding: 0;
    margin: 0;
}
input:not([type="checkbox"]):not([type="radio"]), textarea, select, button{
    -webkit-appearance: none;
}

button{
    overflow: visible;
}

a, button{
    color: #3c3c3c;
    -webkit-tap-highlight-color: rgba(0, 156, 226, 0);
    cursor: pointer;
    outline: none;

    transition:
        color 300ms ease-out,
        background 300ms ease-out,
        border 300ms ease-out,
        opacity 300ms ease-out,
        box-shadow 300ms ease-out;
    -webkit-transition:
        color 300ms ease-out,
        background 300ms ease-out,
        border 300ms ease-out,
        opacity 300ms ease-out,
        box-shadow 300ms ease-out;
    -moz-transition:
        color 300ms ease-out,
        background 300ms ease-out,
        border 300ms ease-out,
        opacity 300ms ease-out,
        box-shadow 300ms ease-out;
    -o-transition:
        color 300ms ease-out,
        background 300ms ease-out,
        border 300ms ease-out,
        opacity 300ms ease-out,
        box-shadow 300ms ease-out;
}

img{
    display: inline-block;
    max-width: 100%;
}



/* HIDDENS */

@media (max-width: 767px) {
    .hidden-xs{
        display: none !important;
    }
}
@media (min-width: 768px) and (max-width: 979px) {
    .hidden-sm{
        display: none !important;
    }
}
@media (min-width: 980px) and (max-width: 1199px) {
    .hidden-md{
        display: none !important;
    }
}
@media (min-width: 1200px) {
    .hidden-lg{
        display: none !important;
    }
}



/* ******* MOBILE ******* */

/* GENERAL */

.notVisible{
    position: absolute;
    left: -9999px;
}



/* STRUCTURE */

.main-wrapper{
    width: 100%;
    max-width: 1024px;
    margin-right: auto;
    margin-left: auto;
    padding-right: 15px;
    padding-left: 15px;

    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}



/* ALIGNS */

.align-middle:before{
    content: "";
    display: inline-block;
    vertical-align: middle;
    height: 100%;
}
.align-middle > .align{
    display: inline-block;
    vertical-align: middle;
}



/* HEADER */

.header{}
.header .col{
    display: block;
    background-color: #d6d9db;
    padding: 20px;

    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
.header .col.right{
    margin-top: 8px;
    position: relative;
}

.header .logo-holder{
    background-color: #009ce2;
    color: #fff;
    padding-top: 40px;
    padding-bottom: 12px;
}
.header .logo a{
    display: inline-block;
    width: 70%;
    max-width: 220px;
}

/*.header .sponsor{
    display: block;
    width: 28%;
    position: absolute;
    left: 20px;
    top: 50%;
    margin-top: -5px;

    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
}*/

.header .nav{
    padding-left: 45%;
}
.header .nav .menu li a{
    display: inline-block;
    font-size: 1.6em;
    padding: 3px 0;
    color: #009ce2;
}
.header .nav .menu li a.active{
    color: #16485f;
}

@media (min-width: 400px){

    .header .sponsor{
        width: 104px;
    }

    .header .nav{
        padding-left: 145px;
    }

}



/* BOX */

.box{
    background-color: #ebebeb;
    margin-top: 8px;
}
.box .heading{
    padding: 12px 20px;
    background-color: #009ce2;

    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
.box .heading .title{
    position: relative;
    padding: 2px 0;
    padding-left: 28px;
    color: #fff;
    font-size: 2em;
    line-height: 1.1;
    font-weight: 700;
    text-transform: uppercase;
}
.box .heading .title .icon{
    display: block;
    width: 24px;
    height: 24px;
    position: absolute;
    left: -4px;
    top: 50%;
    background: no-repeat center/contain;

    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
}
.box .subheading{
    padding: 12px 20px;
    background-color: #c8ccce;

    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
.box .content ~ .subheading{
    margin-top: 15px;
}
.box .subheading .text{
    font-size: 1.6em;
    font-weight: 700;
    color: #363636;
}
.box .content{
    padding: 20px;
    padding-bottom: 25px;

    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

/* Icons */

.icon-speaker{
    background-image: url(../images/icon-speaker@2.png) !important;
}
.icon-message{
    background-image: url(../images/icon-message@2.png) !important;
}
.icon-calendar{
    background-image: url(../images/icon-calendar@2.png) !important;
}
.icon-mic{
    background-image: url(../images/icon-mic@2.png) !important;
}
.icon-tick{
    background-image: url(../images/icon-tick@2.png) !important;
}
.icon-help{
    background-image: url(../images/icon-help@2.png) !important;
}



/* ARTICLE */

.article .main-cols{}
.article .main-cols .col{}

.article .content p,
.article .content li{
    font-size: 1.5em;
    color: #363636;
}

.article .content p{
    margin-top: 20px;
}

.article .content h2,
.article .content h3,
.article .content h4,
.article .content h5,
.article .content h6{
    font-size: 1.8em;
    line-height: 1.1;
    margin-top: 8px;
    margin-bottom: 12px;
    font-weight: 700;
}

.article .content li{
    position: relative;
    margin-top: 10px;
    padding-left: 14px;
}
.article .content li:first-child{
    margin-top: 0;
}
.article .content li:before{
    content: "";
    display: block;
    width: 2px;
    position: absolute;
    left: 0;
    top: 3px;
    bottom: 2px;
    background-color: #009ce2;
}



/* EVENT TITLE */

.event-title{
    padding: 23px 20px;

    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
.event-title .kicker{
    font-size: 1.7em;
    font-weight: 700;
    line-height: 1.1;
    text-transform: uppercase;
    color: #696969;
}
.event-title .title{
    margin-top: 10px;
    font-size: 2.6em;
    line-height: 1.1;
    text-transform: uppercase;
    color: #363636;
}
.event-title .caption{
    margin-top: 10px;
    font-size: 2em;
    line-height: 1.1;
    color: #009ce2;
}



/* DIRECTED TO */

#audience .heading{
    background-color: #c8ccce;
}
#audience .title{
    display: block;
}
#audience .text{
    display: block;
    margin-top: 3px;
    font-size: 1.6em;
    font-weight: 700;
    color: #363636;
}



/* INFO */

#info .map-holder{
    display: block;
    width: 100%;
    height: 220px;
    margin: 20px 0 5px;
    background: rgba(0,0,0,0.1) no-repeat center/cover;
    box-shadow: inset 0px 0px 0px 2px #fff;
}



/* SPEAKER */

#speaker img{
    display: block;
    width: 100%;
    border-bottom: 8px solid #fff;
}



/* FORM */

#form{
    background-color: #009ce2;
    color: #fff;
    padding-bottom: 5px;
}
#form .form{}
#form .form .label{
    display: block;
    width: 100%;
    margin-top: 12px;
}
#form .form .label:first-child{
    margin-top: 0;
}
#form .form .label .text{
    font-size: 1.3em;
}
#form .form .label .input{
    display: block;
    width: 100%;
    padding: 8px 15px 10px;
    margin-top: 5px;
    font-size: 1.4em;
    background-color: #fff;
    color: #363636;

    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
#form .form label.error{
    display: inline-block;
    font-size: 13px;
    color: #fff;
    padding: 3px 5px;
    background-color: #cc5a5a;
}

#form .form .bottom{
    margin-top: 20px;
}
#form .form .bottom .submit{
    display: inline-block;
    padding: 9px 15px 11px;
    background-color: rgba(54, 54, 54, 0.8);
    color: #fff;
    font-size: 1.4em;
    font-weight: 700;
}
#form .form .bottom .loader,
#form .form .bottom .message{
    display: none;
    padding: 9px 0 11px 27px;
    color: #fff;
    font-size: 1.8em;
    font-weight: 700;
    position: relative;

    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
#form .form .bottom .loader:before,
#form .form .bottom .message:before{
    content: "";
    display: block;
    width: 20px;
    height: 20px;
    position: absolute;
    left: 0;
    top: 50%;
    margin-top: -12px;
    background: no-repeat center/contain;
}
#form .form .bottom .loader:before{
    border: 3px solid rgba(255, 255, 255, 0.5);
    border-top-color: #fff;
    border-radius: 50%;

    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

#form .form .bottom .message:before{
    background-image: url(../images/form-success.png);
}
#form .form[data-success="false"] .bottom .message:before{
    background-image: url(../images/form-fail.png);
}

/* Sending */

#form .form.sending{
    position: relative;
}
#form .form.sending:before{
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 999;
}
#form .form.sending .label{
    opacity: 0.4;
}
#form .form.sending .bottom .submit{
    display: none;
}
#form .form.sending .bottom .loader{
    display: inline-block;
}
#form .form.sending .bottom .loader:before{    
    -webkit-animation: loading 700ms linear infinite;
    -moz-animation: loading 700ms linear infinite;
    animation: loading 700ms linear infinite;
}

#form .form.sent .bottom .submit{
    display: none;
}
#form .form.sent .bottom .message{
    display: inline-block;
}
#form .form.sent .label{
    opacity: 0.4;
}



/* HELP */

#help{
    background-color: #009ce2;
    color: #fff;
    padding-bottom: 10px;
}
#help .content li{
    padding-left: 0;
    color: #fff;
    font-size: 1.8em;
    line-height: 1.2;
}
#help .content a{
    display: inline-block;
    vertical-align: top;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    color: inherit;
}
#help .content li strong{
    opacity: 0.6;
}
#help .content li:before{
    display: none;
}


#help .content .agency{
    color: #fff;
    margin-top: 50px;
}
#help .content .agency a{
    font-weight: 700;
}




/* ********************** de Mobile a TABLET ********************** */

@media (min-width: 768px) {


    /* STRUCTURE */

    .main-wrapper{
        padding-right: 20px;
        padding-left: 20px;
    }

    /* HEADER */

    .header{
        overflow: hidden;
    }

    .header .col{
        display: inline-block;
        vertical-align: bottom;
        width: 38%;
        border: solid #fff;
        border-width: 0 4px 0 0;
    }
    .header .logo-holder{
        padding-top: 60px;
    }

    .header .logo-holder .logo a{
        /*width: 190px;*/
        max-width: 360px;
        width: 90%;
    }

    .header .sponsor{
        display: block;
        width: 28%;
        position: absolute;
        left: 20px;
        /*top: 50%;*/
        top: 70%;
        margin-top: -5px;

        -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        -o-transform: translateY(-50%);
        transform: translateY(-50%);
    }

    .header .col.right{
        position: relative;
        margin-top: 0;
        width: 62%;
        text-align: right;
        border-width: 0 0 0 4px;
    }
    .header .col.right:before{
        content: "";
    }
    .header .col.right:after{
        content: "";
        display: block;
        width: 100%;
        height: 300px;
        position: absolute;
        left: 0;
        top: -299px;
        background-color: #d6d9db;
    }

    .header .nav .menu{
        margin: 0;
    }

    .header .nav .menu li a{
        font-size: 1.8em;
    }

    /* BOX */

    .box .heading .title{
        padding-left: 28px;
        font-size: 2.2em;
    }
    .box .subheading .text{
        font-size: 1.8em;
    }


    .main-wrapper{
        padding-right: 40px;
        padding-left: 40px;
    }



    /* ARTICLE */

    .article .content p,
    .article .content li{
        font-size: 1.7em;
    }

    .article .content h2,
    .article .content h3,
    .article .content h4,
    .article .content h5,
    .article .content h6{
        font-size: 2em;
    }



    /* EVENT TITLE */

    .event-title{
        padding-top: 25px;
        padding-bottom: 25px;
    }
    .event-title .kicker{
        font-size: 1.9em;
    }
    .event-title .title{
        font-size: 2.8em;
    }
    .event-title .caption{
        font-size: 2.2em;
    }



    /* DIRECTED TO */

    #audience .text{
        font-size: 1.8em;
        margin-bottom: 2px;
    }



    /* INFO */

    #info .map-holder{
        height: 320px;
    }



    /* FORM */

    #form .form{
        margin: 0 -8px;
    }
    #form .form .label{
        display: inline-block;
        vertical-align: middle;
        width: 50%;
        margin-top: 12px;
        padding: 0 8px;

        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
    }
    #form .form .label:nth-child(2){
        margin-top: 0;
    }
    #form .form .label .text{
        font-size: 1.4em;
    }
    #form .form .label .input{
        padding: 10px 17px 12px;
    }

    #form .form .bottom{
        padding: 0 8px;
        margin-top: 25px;
    }
    #form .form .bottom .submit{
        padding: 10px 45px 12px;
        font-size: 1.5em;
    }



    /* HELP */

    #help{
        padding-bottom: 0;
    }
    #help .content li{
        font-size: 2em;
    }


    #help .content .agency{
        margin-top: 60px;
    }

}




/* ********************** de Tablet a DESKTOP ********************** */

@media (min-width: 980px) {

    /* STRUCTURE */

    .main-wrapper{
        padding-right: 40px;
        padding-left: 40px;
    }



    /* HEADER */

    .header .col{
        width: 38%;
    }
    .header .logo-holder{
        padding-top: 100px;
    }


    /* EVENT TITLE */

    .event-title{
        text-align: center;
        padding-left: 80px;
        padding-right: 80px;
    }
    .event-title .kicker{
        font-size: 2.1em;
    }
    .event-title .title{
        font-size: 3em;
    }
    .event-title .caption{
        font-size: 2.4em;
    }



    /* ARTICLE */

    .article .main-cols{
        overflow: hidden;
    }
    .article .main-cols .col{
        display: inline-block;
        vertical-align: top;
        width: 62%;
        padding: 0 4px 0 0;
        position: relative;

        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
    }
    .article .main-cols .col:before{
        content: "";
        display: block;
        width: 100%;
        height: 1500px;
        position: absolute;
        left: 0;
        bottom: -1499px;
        background-color: #ebebeb;
        border: solid #fff;
        border-width: 0 4px 0 0;

        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
    }
    .article .main-cols .right{
        width: 38%;
        padding: 0 0 0 4px;
    }
    .article .main-cols .right:before{
        border-width: 0 0 0 4px;
    }



    /* FORM / HELP */

    .article .main-cols.blue .col:before{
        background-color: #009ce2;
    }

    #form,
    #help{
        padding-bottom: 60px;
    }

    #form .form{
        margin: 0;
        padding: 0 28px;
    }
    #form .form .label{
        display: block;
        width: 100%;
        padding: 0;
    }
    #form .form .label:nth-child(2){
        margin-top: 12px;
    }
    #form .form .label .text{
        font-size: 1.5em;
    }
    #form .form .label .input{
        padding: 10px 17px 12px;
        font-size: 1.6em;
    }

    #form .form .bottom{
        padding: 0;
        margin-top: 35px;
    }
    #form .form .bottom .submit{
        padding: 10px 45px 12px;
        font-size: 1.6em;
    }

}




/* ********************** de Desktop a HD ********************** */

@media (min-width: 1200px) {
}

















/* KEYFRAMES loading */

@keyframes loading{
    0%{
        -webkit-transform:rotate(0deg);
        -moz-transform:rotate(0deg);
        -o-transform:rotate(0deg);
        transform:rotate(0deg);
    }
    100%{
        -webkit-transform:rotate(360deg);
        -moz-transform:rotate(360deg);
        -o-transform:rotate(360deg);
        transform:rotate(360deg);
    }
}

@-webkit-keyframes loading{
    0%{
        -webkit-transform:rotate(0deg);
        -moz-transform:rotate(0deg);
        -o-transform:rotate(0deg);
        transform:rotate(0deg);
    }
    100%{
        -webkit-transform:rotate(360deg);
        -moz-transform:rotate(360deg);
        -o-transform:rotate(360deg);
        transform:rotate(360deg);
    }
}

@-moz-keyframes loading{
    0%{
        -webkit-transform:rotate(0deg);
        -moz-transform:rotate(0deg);
        -o-transform:rotate(0deg);
        transform:rotate(0deg);
    }
    100%{
        -webkit-transform:rotate(360deg);
        -moz-transform:rotate(360deg);
        -o-transform:rotate(360deg);
        transform:rotate(360deg);
    }
}

@-o-keyframes loading{
    0%{
        -webkit-transform:rotate(0deg);
        -moz-transform:rotate(0deg);
        -o-transform:rotate(0deg);
        transform:rotate(0deg);
    }
    100%{
        -webkit-transform:rotate(360deg);
        -moz-transform:rotate(360deg);
        -o-transform:rotate(360deg);
        transform:rotate(360deg);
    }
}