/* ==========================================================================
    Reset
   ========================================================================== */

a {
    text-decoration: none;
}

:focus{
    outline:0; /*removes the dotted border*/
}

/* ==========================================================================
    Fonts 
   ========================================================================== */
    
@font-face {
    font-family: 'Cera Regular';
    src: url("fonts/cera-gr.otf") format("opentype");
}

@font-face {
    font-family: 'Cera Light';
    src: url("fonts/cera-gr-light.otf") format("opentype");
}

@font-face {
    font-family: 'Cera Light';
    font-style: italic;
    src: url("fonts/cera-gr-light-italic.otf") format("opentype");
}

@font-face {
    font-family: 'Cera Bold';
    src: url("fonts/cera-gr-bold.otf") format("opentype");
}

@font-face {
    font-family: 'Cera Bold';
    font-style: italic;
    src: url("fonts/cera-gr-bold-italic.otf") format("opentype");
}

@font-face {
    font-family: 'Cera Black';
    src: url("fonts/cera-gr-black.otf") format("opentype");
}

@font-face {
    font-family: 'Cera Black';
    font-style: italic;
    src: url("fonts/cera-gr-black-italic.otf") format("opentype");
}

/* ==========================================================================
    Colours global 
   ========================================================================== */

.black_bg { background-color: #000 }

.black_fg { color: #24292e } //#212529 

.white_bg { background-color: #FFF }

.white_fg { color: #FFF }

.blue_fg { color: #53808c !important; }

.blue_bg { background-color: #53808c; }

.green_fg { color: #8CDC73; }

.green_bg { background-color: #8CDC73; }

/* ==========================================================================
   global 
   ========================================================================== */

html {
    -webkit-tap-highlight-color: rgba(0,0,0,0);
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
    -webkit-text-size-adjust: none;
}

body {
    -webkit-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    opacity: 0;
    overflow-x: hidden;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.logo {
    position: fixed;
    left:  20px;
    top:  20px;
    height: 35px;
    width: 50px;
    z-index: 16000;
}

.logo img {
    width: 100%;
    height: 100%;
}

span.logo_dialogue {
    font-family: 'Cera Black', sans-serif;
    font-size: 22px;
    color: #FFF;
    position: absolute;
    left: 65px;
    top: 0px;
}

span.logo_tag {
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 400;
    font-size: 12px;
    color: #FFF;
    position: absolute;
    top: 20px;
    left: 65px;
    width: 250px;
}

body.black_header span.logo_dialogue, body.black_header span.logo_tag {
    color: #000;
}

#hero {
    position: absolute;
    width: 100%;
    top: 0px;
    height: 360px;
}

#hero img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

div.hero_overlay {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 30px;
    padding-right: 30px;
}

#hero h1 {
    position: absolute;
    width: 60%;
    top: 40%;
    font-family: 'Cera Black', sans-serif;
    font-size: 24px;
    color: #FFF;
}

.main-container {
    position: relative;
    top: 94px;
    -webkit-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    z-index: 11;
}

.main-container.about-us {
    z-index: 9;
}

.desktop {
    display: none !important;
}

.mobile {
    display: block !important;
}

.clear {
    clear: both;
}

.center {
    text-align: center !important;
}

.center_margins {
    margin-left: auto;
    margin-right: auto;
    display: block;
}

.green_bar {
    width: 100px;
    border-bottom: 4px solid #eaa34a;
}

div.standard_body {
    max-width: 1200px;
    padding-left: 20px;
    padding-right: 20px;
    margin-left: auto;
    margin-right: auto;
    font-family: 'Cera Regular', sans-serif;
    color: #24292e;
    font-size: 16px;
    margin-top: 40px;
    line-height: 140%;
}

div.standard_body p {
    line-height: 140%;
    margin-bottom: 20px;
    line-height: 140%;
    margin-bottom: 20px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
}

div.standard_body ul {
    margin-bottom: 20px;
}

div.standard_body ul li {
    list-style: disc;
    margin-left: 20px;
    margin-bottom: 10px;
}

div.standard_body p strong {
    font-weight: bold;
    font-family: 'Cera Bold', sans-serif;
}

div.standard_body a {
    color: #dd8233;
}

div.standard_body a:hover {
    color: #dd8233;
}

div.standard_body_v2 {
    position: relative;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px;
    padding-right: 20px;
}

section {
    opacity: 0;
    -webkit-transform: matrix(1, 0, 0, 0.95, 0, 0);
    transform: matrix(1, 0, 0, 0.95, 0, 0);
    -moz-transform: matrix(1, 0, 0, 0.95, 0, 0);
    -ms-transform: matrix(1, 0, 0, 0.95, 0, 0);
}

section.hidden_overflow {
    overflow: hidden;
}

.animate_on {
    opacity: 1 !important;
    -webkit-transform: matrix(1, 0, 0, 1, 0, 0) !important;
    transform: matrix(1, 0, 0, 1, 0, 0) !important;
    -moz-transform: matrix(1, 0, 0, 1, 0, 0) !important;
    -ms-transform: matrix(1, 0, 0, 1, 0, 0) !important;
    -webkit-transition: 1s ease-in-out;
    -moz-transition: 1s ease-in-out;
    -o-transition: 1s ease-in-out;
    transition: 1s ease-in-out;
}

.pagination {
    position: relative;
}

.pagination.active {
    padding-bottom: 80px;
    margin-top: 40px;
}

.pagination a {
    font-family: 'Cera Regular', sans-serif;
    font-size: 20px;
    display: inline-block;
    border-radius: 12px;
    border: 1px solid #FFF;
    padding: 20px;
    padding-left: 25px;
    padding-right: 25px;
    color: #272727;
    margin-right: 10px;
    background-color: #FFF;
}

.pagination a:last-child {
    border: 1px solid #FFF;
}

.pagination a.events {
    border: 1px solid #272727;
}

.pagination a.active, .pagination a:hover {
    color: #FFF;
    background-color: #FC5C75;
    border: 1px solid #FC5C75;
}

#share_container {
    position: relative;
    margin-top: 60px;
    margin-bottom: 60px;
    padding-top: 20px;
    border-top: 1px solid #E7E7E7;
    z-index: 10000;
}

#share_container p {
    font-family: 'Cera Regular', sans-serif;
    font-size: 14px;
    color: #888888;
    margin-right: 40px;
    display: inline-block;
}

#share_container a {
    display: inline-block;
    margin-right: 5px;
    font-size: 30px;
    padding-top: 5px;
}

#share_container a:hover {
    opacity: 0.6;
}

#share_container a:nth-child(2) i {
    color: #3b5998;
}

#share_container a:nth-child(3) i {
    color: #00acee;
}

#share_container a:nth-child(4) i {
    color: #0072b1;
}

#share_container a:nth-child(5) i {
    color: #000;
}

@media only screen and (min-width: 800px) {

    #hero {
        height: auto;
    }

    #hero h1 {
        font-size: 46px;
    }

    #hero img {
        height: auto;
    }

    div.standard_body {
        padding-left: 30px;
        padding-right: 30px;
    }

    div.standard_body_v2 {
        padding-left: 30px;
        padding-right: 30px;
    }

}

@media only screen and (min-width: 1000px) {

    .desktop {
        display: block !important;
    }

    .mobile {
        display: none !important;
    }

}

@media only screen and (min-width: 1100px) {

    .logo {
        left:  30px;
        top:  20px;
        height: 50px;
        width: 71.5px;
    }

    span.logo_dialogue {
        font-size: 32px;
        left: 82px;
        top: 2px;
    }

    span.logo_tag {
        font-size: 15px;
        top: 34px;
        left: 83px;
        width: 250px;
    }

}

/* ==========================================================================
    Video  
   ========================================================================== */

#videoplayer_standard {
    margin-bottom: 40px;
    padding-top: 20%;
}

.video-js .vjs-progress-control .vjs-play-progress {
    background-color: #5EB3DB !important;
}

.video-js .vjs-progress-control .vjs-load-progress {
    background-color: #5EB3DB !important;
    opacity: 0.4;
}

.no-touch .video-js .vjs-button:hover {
    background-color: #5EB3DB !important;
    color: #000 !important;
}

.vjs-subs-caps-button {
    display: none;
}

div.hero_showreel_hideonstart {
    visibility: hidden;
    opacity: 0;
    webkit-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}

div.hero_showreel_hideonstart.active {
    visibility: visible;
    opacity: 1;
}

@media only screen and (min-width: 800px) {

    #videoplayer_standard {
        padding-top: 0;
    }

}

/* ==========================================================================
    Buttons
   ========================================================================== */

a.round_button {
    height: 100px;
    width: 100px;
    display: table-cell;
    text-align: center;
    vertical-align: middle;
    border-radius: 50%;
    background: #363537;
    font-family: 'Cera Regular', sans-serif;
    color: #FFF;
    letter-spacing: 0px;
    font-size: 20px;
    -webkit-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    cursor: pointer;
}

a.round_button:hover {
    opacity: 0.6;
}

a.standard_button {
    display: inline-block;
    font-family: 'Cera Bold', sans-serif;
    font-size: 18px;
    color: #272727;
    padding: 20px;
    padding-left: 30px;
    padding-right: 30px;
    color: 272727;
    border-radius: 15px;
    border: 2px solid #272727;
    margin-bottom: 60px;
}

a.standard_button:hover {
    opacity: 0.6;
}

@media only screen and (min-width: 800px) {
    a.round_button {
        height: 120px;
        width: 120px;
    }
}

/* ==========================================================================
    Navigation
   ========================================================================== */

#main_nav {
    position: fixed;
    left: 0px;
    top: 0px;
    height: 76px;
    width: 100%;
    z-index: 12000;
    -webkit-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    overflow: hidden;
    border-bottom: 1px solid #E7E7E7;
}

body.homepage #main_nav {
    border-bottom: 0;
}

#main_nav.scrolled {
    background-color: #FFF;
    width: 100%;
    box-shadow: 0 .5rem 1rem rgba(0,0,0,.15)!important;
}

#main_nav.scrolled span.logo_dialogue, #main_nav.scrolled span.logo_tag {
    color: #000;
}

#main_nav.open {
    height: 100vh;
    z-index: 12010;
    background-color: #212121;
    opacity: 0.9;
}

#main_nav>ul {
    position: absolute;
    top: 100px;
    width: 100%;
    visibility: hidden;
    opacity: 0;
    text-align: center;
    transition: visibility 0s, opacity 0.5s linear;
    -webkit-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}

#main_nav.open ul {
    visibility: visible;
    opacity: 1;
}

.hamburger-box {
    width: 30px !important;
    height: 15px !important;
    opacity: 1 !important;
}

.hamburger-inner, .hamburger-inner:after, .hamburger-inner:before {
    height: 2px !important;
    border-radius: 4px !important;
    width: 25px !important;
    background-color: #FFF !important;
}

nav.white_header .hamburger-inner, nav.white_header .hamburger-inner:after, nav.white_header .hamburger-inner:before {
    background-color: #FFF !important;
}

#menu_button.is-active .hamburger-inner, #menu_button.is-active .hamburger-inner:after, #menu_button.is-active .hamburger-inner:before {
   background-color: #FFF !important;
}

body.black_header .hamburger-inner, body.black_header .hamburger-inner:after, body.black_header .hamburger-inner:before {
    background-color: #000 !important;
}

#main_nav.scrolled .hamburger-inner, #main_nav.scrolled .hamburger-inner:after, #main_nav.scrolled .hamburger-inner:before {
    background-color: #000 !important;
}

.hamburger-inner:after {
    top: 10px !important;
}

#main_nav.open .hamburger-inner:after {
    top: 20px !important;
}

.hamburger-inner:before {
    height: 0px !important;
}

.hamburger--squeeze.is-active .hamburger-inner, .hamburger--squeeze.is-active .hamburger-inner:after, .hamburger--squeeze.is-active .hamburger-inner:before {
    width: 40px !important;
}

.hamburger.is-active {
    top: 13px !important;
}

#menu_button {
    position: absolute;
    right: 0px;
    top: 17px;
    z-index: 16000;
}

#main_nav>ul>li {
    margin-bottom: 40px;
    cursor: pointer;
}

#main_nav>ul>li a {
    font-family: 'Cera Bold', sans-serif;
    color: #FFF;
    letter-spacing: 0px;
    font-size: 25px;
 
    -webkit-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    cursor: pointer;
}

#main_nav>ul>li a.active {
    color: #7E7E7E !important;
}

#main_nav>ul>li a i {
    margin-right: 10px;
}

#main_nav>ul>li a:hover {
    opacity: 0.3 !important;
}

#main_nav>ul>li a.open {
    background: rgba(0, 0, 0, 0.5);
    padding: 15px;
    border-radius: 50px;
    margin-right: -15px;
    margin-top: -15px;
    -webkit-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}

#social {
    position: absolute;
    top: 36px;
    right: 80px;
    z-index: 16000;
    display: none;
}

#social a i {
    color: #eaa34a;
    font-size: 22px;
}

@media only screen and (min-width: 800px) {

    #menu_button {
        right: 10px;
        top: 18px;
    }

    .hamburger.is-active {
        top: 14px !important;
    }

}

@media only screen and (min-width: 1100px) {

    body.black_header #main_nav>ul>li a {
        color: #000;
    }

    #main_nav.scrolled>ul>li a {
        color: #000;
    }

    #main_nav {
        height: 94px;
    }
    
    #menu_button {
        display: none;
    }

    #social {
        right: 30px;
        display: block;
    }

    #main_nav>ul {
        width: calc(100vw - 400px);
        top: 38px;
        left: auto;
        right: 30px;
        visibility: visible;
        opacity: 1;
        text-align: right;
    }

    #main_nav>ul>li {
        display: inline-block;
        margin-bottom: 0px;
        margin-left: 40px;
    }

    #main_nav>ul>li a {
        font-size: 19px;
    }
}

/* ==========================================================================
    Homepage
   ========================================================================== */

section.home_latest_updates {
    height: 200px;
}

section.home_latest_updates h1 {
    margin-top: 20px;
    width: 80%;
    font-family: 'Cera Black', sans-serif;
    font-size: 24px;
    line-height: 130%;
    color: #FFF;
    margin-bottom: 50px;
}

section.home_latest_updates h1 strong {
    color: #EB6B49;
    border-bottom: 1px solid #EB6B49;
    padding-bottom: 10px;
}

section.home_latest_updates h3 {
    font-family: 'Cera Bold', sans-serif;
    font-size: 18px;
    color: #FFF;
}

section.home_latest_updates ul {
    position: relative;
    width: 100%;
    margin-top: 40px;
}

section.home_latest_updates ul a li {
    -webkit-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

section.home_latest_updates ul a:hover li {
    filter: grayscale(100%);
}

section.home_latest_updates ul a li {
    position: relative;
    float: left;
    width: 100%;
    height: calc(100vw/ 1.5);
}

section.home_latest_updates ul a:nth-child(1) li {
    border-bottom: 5px solid #EB6B49;
}

section.home_latest_updates ul a:nth-child(2) li {
    border-bottom: 5px solid #FC5C75;
}

section.home_latest_updates ul a:nth-child(3) li {
    border-bottom: 5px solid #179F8C;
}

section.home_latest_updates ul li span {
    font-family: 'Cera Regular', sans-serif;
    font-size: 14px;
    color: #FFF;
    opacity: 0.7;
    position: absolute;
    left: 40px;
    bottom: 120px;
}

section.home_latest_updates ul li h4 {
    font-family: 'Cera Bold', sans-serif;
    font-size: 22px;
    line-height: 140%;
    color: #FFF;
    position: absolute;
    left: 40px;
    bottom: 80px;
    height: 30px;
}

section.home_latest_updates ul li time {
    font-family: 'Cera Regular', sans-serif;
    font-size: 14px;
    color: #FFF;
    position: absolute;
    left: 40px;
    bottom: 20px;
}

section.home_about {
    background-color: #FEEDDC;
    width: 100vw;
}

section.home_about div.standard_body_v2 {
    padding-bottom: 40px;
}

section.home_about h3 {
    padding-top: 60px;
    width: 100%;
    font-family: 'Cera Black', sans-serif;
    font-size: 24px;
    color: #033930;
    margin-bottom: 40px;
}

section.home_about p {
    width: 100%;
    font-family: 'Cera Regular', sans-serif;
    font-size: 20px;
    color: #4E4E4E;
    line-height: 140%;
    margin-bottom: 20px;
}

section.home_about p strong {
    font-family: 'Cera Bold', sans-serif;
    color: #EB6B49;
}

section.home_about img {
    display: none;
    float: right;
    width: 40%;
    margin-top: 40px;
}

section.home_events {
    background-color: #E0ECD5;
    width: 100vw;

    padding-bottom: 60px;
}

section.home_events h3 {
    padding-top: 60px;
    width: 60%;
    font-family: 'Cera Black', sans-serif;
    font-size: 24px;
    color: #033930;
    margin-bottom: 60px;
}

section.home_events ul {
    width: 100%;
    margin-bottom: 60px;
}

section.home_events ul li {
    position: relative;
    display: inline-block;
    width: 100%;
    margin-left: 0px;
    border-radius: 12px;
    background-color: #FFF;
    padding: 20px;
    padding-top: 30px;
    vertical-align: top;
    margin-bottom: 20px;
}

section.home_events ul li span.days_left {
    position: relative;
    top: -10px;
    left: 0px;
    font-family: 'Cera Bold', sans-serif;
    font-size: 18px;
    color: #CFCFCF;
    display: block;
    left: 4px;
}

section.home_events ul li span.days_left strong {
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 900;
    font-size: 80px;
    letter-spacing: -4px;
    color: #EB6B49;
    display: block;
    margin-left: -4px;
}

section.home_events ul li time {
    position: relative;
    top: 0px;
    float: right;
    font-family: 'Cera Regular', sans-serif;
    font-size: 18px;
    color: #656565;
    display: block;
}

section.home_events ul li h4 {
    position: relative;
    top: 40px;
    left: 0px;
    font-family: 'Cera Bold', sans-serif;
    font-size: 24px;
    color: #000;
    width: 100%;
    padding-bottom: 30px;
    margin-bottom: 80px;
    border-bottom: 1px solid #D9D9D9;
}

section.home_events ul li div {
    position: relative;
}

section.home_events ul li div p {
    font-family: 'Cera Regular', sans-serif;
    font-size: 20px;
    color: #636363;
    line-height: 150%;
    margin-bottom: 40px;
}

section.home_events ul li span.location {
    font-family: 'Cera Bold', sans-serif;
    font-size: 18px;
    color: #9C9C9C;
    display: block;
    line-height: 140%;
    width: 40%;
}

section.home_events ul li a.home_events_button {
    float: right;
    border-radius: 12px;
    border: 1px solid #7A7A7A;
    padding: 20px;
    padding-left: 25px;
    padding-right: 25px;
}

section.home_events ul li a.home_events_button i {
    font-size: 24px;
    color: #393939;
}

section.home_events ul li a.home_events_button:hover {
    opacity: 0.6;

}

li.temp_one {
    margin-left: 0px !important;
    margin-right: 0px !important;
    width: 100% !important;
}

@media only screen and (min-width: 800px) {

    section.home_about div.standard_body_v2 {
        padding-bottom: 0px;
    }

    section.home_latest_updates {
        height: 360px;
    }

    section.home_latest_updates h1 {
        margin-top: 80px;
        font-size: 50px;
        line-height: 130%;
        margin-bottom: 50px;
    }

    section.home_latest_updates ul a li {
        width: 33.333333%;
        width: calc(100% / 3);
        height: 400px;
        height: calc((100vw / 3) / 1.5);
    }

    section.home_events ul li {
        width: 40%;
        width: calc((100% / 2) - 22px);
    }

    section.home_events ul li:last-child {
        margin-left: 20px;
        margin-right: 0px;
    }

    section.home_events ul li {
        padding: 40px;
    }

    section.home_about h3, section.home_events h3 {
        font-size: 46px;
        padding-top: 100px;
    }

    section.home_about h3 {
        padding-top: 100px;
        width: 60%;
    }

    section.home_about p {
        width: 60%;
    }

    section.home_about img {
        display: block;
    }

}

/* ==========================================================================
    Events
   ========================================================================== */

section.events {
    width: 100vw;
    padding-bottom: 100px;
}

section.events h3 {
    padding-top: 30px;
    width: 60%;
    font-family: 'Cera Black', sans-serif;
    font-size: 24px;
    color: #033930;
    margin-bottom: 30px;
}

#events_filter {
    position: relative;
    margin-bottom: 40px;
}

#events_filter p {
    font-family: 'Cera Regular', sans-serif;
    font-size: 14px;
    color: #888888;
    margin-right: 40px;
    display: inline-block;
}

#events_filter p i {
    margin-left: 0px;
    color: #000;
}

#events_filter select {
    font-family: 'Cera Regular', sans-serif;
    font-size: 14px;
    color: #000;
    display: inline-block;
    -webkit-appearance: none;
    -moz-appearance: none;
    border: 0;
}

#events_list {
    width: 100%;
    margin-bottom: 60px;
}

#events_list li {
    position: relative;
    display: inline-block;
    width: 100%;
    margin-left: 0px;
    margin-right: 20px;
    border-radius: 12px;
    border: 1px solid #E7E7E7;
    padding: 40px;
    margin-bottom: 20px;
    vertical-align: top;
}

#events_list li time {
    position: relative;
    top: 0px;
    font-family: 'Cera Regular', sans-serif;
    font-size: 18px;
    color: #656565;
    display: block;
}

#events_list li h4 {
    position: relative;
    top: 40px;
    left: 0px;
    font-family: 'Cera Bold', sans-serif;
    font-size: 24px;
    color: #000;
    width: 100%;
    padding-bottom: 30px;
    margin-bottom: 80px;
    border-bottom: 1px solid #D9D9D9;
    height: 80px;
}

#events_list li div {
    position: relative;
}

#events_list li div p {
    font-family: 'Cera Regular', sans-serif;
    font-size: 20px;
    color: #636363;
    line-height: 150%;
    margin-bottom: 40px;
}

#events_list li span.location {
    font-family: 'Cera Bold', sans-serif;
    font-size: 18px;
    color: #9C9C9C;
    display: block;
    line-height: 140%;
    width: 70%;
}

#events_list li a.events_button {
    float: right;
    border-radius: 12px;
    border: 1px solid #7A7A7A;
    padding: 20px;
    padding-left: 25px;
    padding-right: 25px;
}

#events_list li a.events_button i {
    font-size: 24px;
    color: #393939;
}

#events_list li a.events_button:hover {
    opacity: 0.6;

}

@media only screen and (min-width: 800px) {

    #events_list li {
        width: 45%;
        width: calc((100% / 2) - 23px);
    }

    section.events h3 {
        padding-top: 100px;
        font-size: 46px;
        margin-bottom: 60px;
    }

}

@media only screen and (min-width: 1200px) {

    #events_list li {
        width: 30%;
        width: calc((100% / 3) - 23px);
    }

}

/* ==========================================================================
    Event item
   ========================================================================== */

section.event_item_details {
    position: relative;
    background-color: #179F8C;
    margin-top: 266px;
}

section.event_item_details ul {
    padding-top: 30px;
    padding-bottom: 30px;
    width: 100%;
}

section.event_item_details ul li {
    width: 100%;
    display: inline-block;
    font-family: 'Cera Regular', sans-serif;
    font-size: 20px;
    color: #FFFFFF;
    line-height: 130%;
    vertical-align: top;
    margin-bottom: 20px;
}

section.event_item_details ul li h3 {
    font-family: 'Cera Bold', sans-serif;
    font-size: 20px;
    color: #18413B;
    line-height: 130%;
    margin-bottom: 0px;
}

section.event_item_details ul li a {
    font-family: 'Cera Regular', sans-serif;
    font-size: 20px;
    color: #FFFFFF;
    line-height: 130%;
}

section.event_item_details ul li a:hover {
    text-decoration: underline;
}

section.event_item_share {
    position: relative;
}

section.event_description {
    position: relative;
    margin-bottom: 60px;
}

section.event_description p {
    font-family: 'Cera Regular', sans-serif;
    font-size: 20px;
    color: #4E4E4E;
    line-height: 150%;
    margin-bottom: 20px;
}

.events_share {
    position: relative;
    margin-top: 20px !important;
    margin-bottom: 20px !important;
    padding-top: 0px !important;
    border-top: 0 !important;
}

section.event_schedule {
    position: relative;
    background-color: #EB6B49;
    padding-bottom: 100px;
}

section.event_schedule h3 {
    padding-top: 30px;
    width: 60%;
    font-family: 'Cera Black', sans-serif;
    font-size: 24px;
    color: #FFF;
    margin-bottom: 30px;
}

section.event_schedule nav {
    width: 100%;
    padding-bottom: 0px;
    border-bottom: 1px solid #FC9F86;
}

section.event_schedule nav a {
    display: inline-block;
    padding: 20px;
    padding-left: 30px;
    padding-right: 30px;
    border: 2px solid #FFF;
    font-family: 'Cera Bold', sans-serif;
    font-size: 22px;
    color: #FFF;
    margin-right: 20px;
    border-radius: 12px;
    margin-bottom: 40px;
}

section.event_schedule nav a:hover {
    background-color: #FFF;
    color: #000
}

section.event_schedule nav a.active {
    background-color: #FFF;
    color: #000
}

#schedule_content {
    width: 100%;
}

#schedule_content li {
    display: block;
    width: 100%;
    margin-top: 40px;
    border-bottom: 1px solid #FC9F86;
    vertical-align: top;
    display: none;
}

#schedule_content li.active {
    display: block;
}

#schedule_content li div.speaker_details {
    display: inline-block;
    width: 360px;
    vertical-align: top;
}

#schedule_content li div.speaker_details h3 {
    font-family: 'Cera Regular', sans-serif;
    font-size: 16px;
    color: #FFF;
    margin-top: 0px;
    margin-bottom: 15px;
    padding-top: 0px;
    width: auto;
}

#schedule_content li div.speaker_details h4 {
    font-family: 'Cera Bold', sans-serif;
    font-size: 17px;
    margin-bottom: 15px;
    color: #000;
}

#schedule_content li div.speaker_details p {
    font-family: 'Cera Bold', sans-serif;
    font-size: 17px;
    color: #FFF;
    line-height: 140%;
}

#schedule_content div.speaker_details div.speaker_img {
    float: left;
    width: 110px;
    height: 110px;
    margin-right: 30px;
    border-radius: 12px;
}

#schedule_content div.event_details {
    padding-left: 20px;
    padding-top: 20px;
    display: inline-block;
}

#schedule_content div.event_details h3 {
    font-family: 'Cera Bold', sans-serif;
    font-size: 24px;
    margin-top: 0px;
    margin-bottom: 20px;
    padding-top: 0px;
    color: #FFF;
}

#schedule_content div.event_details div {
    font-family: 'Cera Regular', sans-serif;
    font-size: 20px;
    color: #FFF;
    line-height: 150%;
}

#schedule_content div.event_details div.event_details_description p {
    margin-bottom: 20px;
}

#schedule_content div.event_details div.event_details_details {
    font-family: 'Cera Regular', sans-serif;
    font-size: 20px;
    color: #FFF;
    margin-bottom: 20px;
}

#schedule_content div.event_details div.event_details_details i {
    margin-right: 10px;
}

#schedule_content div.event_details div.event_details_details i:last-child {
    margin-left: 0px;
    margin-top: 10px;
}

#schedule_content div.event_details div.event_details_details i:nth-child(2) {
    margin-left: 40px;
}

section.event_speakers {
    position: relative;
    margin-bottom: 200px;
}

section.event_speakers h3 {
    padding-top: 30px;
    width: 60%;
    font-family: 'Cera Black', sans-serif;
    font-size: 24px;
    color: #033930;
    margin-bottom: 30px;
}

section.event_speakers ul {
    width: 100%;   
}

section.event_speakers ul li {
    display: inline-block;
    width: 100%;
    height: 400px;
    margin-right: 50px;
    border-radius: 12px;
    margin-bottom: 50px;
    position: relative;
}

section.event_speakers ul li div.speaker_image_details {
    position: absolute;
    border-radius: 12px;
    background-color: #FFF;
    bottom: -22px;
    right: -50px;
    width: 60%;
    padding: 20px;
}

section.event_speakers ul li div.speaker_image_details h3 {
    font-family: 'Cera Bold', sans-serif;
    font-size: 17px;
    padding: 0;
    margin: 0;
    margin-bottom: 20px;
    color: #000;
    width: 100%;
    line-height: 140%;
}

section.event_speakers ul li div.speaker_image_details h4 {
    font-family: 'Cera Bold', sans-serif;
    font-size: 17px;
    padding: 0;
    margin: 0;
    margin-bottom: 0px;
    color: #EB6B49;
    width: 100%;
    line-height: 140%;
}

#add_to_calender_events {
    font-family: 'Cera Regular', sans-serif;
    font-size: 15px;
    color: #575757;
    float: right;
    position: absolute;
    right: 30px;
    top: 20px;
    z-index: 100000;
}

#add_to_calender_events .add-to-calendar-checkbox:checked ~ a {
    width: auto !important;
    margin-left: 27px !important;
    margin-top: 6px;
    margin-bottom: 2px;
    color: #575757;
}

#add_to_calender_events i {
    font-size: 15px;
    color: #575757;
    margin-right: 10px;
}

.add-to-calendar {
    display: inline-block;
}

#add_to_calender_events .add-to-calendar {
    background-color: #FFF;
}

.add-to-calendar-checkbox {
    cursor: pointer;
}

.add-to-calendar-checkbox:checked ~ a {
    margin-left: 72px !important;
    margin-top: 0px; 
    margin-bottom: 0px;
    font-size: 14px;
    line-height: 110%;
    color: #FFF;
}

span.align_top {
    vertical-align: top;
}

div.event_details_details div.new-cal {
    display: block;
}

section.event_item_share {
    margin-bottom: 60px !important;
    padding-top: 0px !important;
    padding-bottom: 20px;
}

section.event_item_share #share_container {
    display: none;
}

div.event-item {
    padding-bottom: 200px;
}

#schedule_content div.event_details:nth-child(2) {
    border-left: 1px solid #FC9F86;
}   

@media only screen and (min-width: 800px) {

    section.event_speakers ul li {
        width: 30%;
        width: calc((100% / 3) - 53px);
    }

    section.event_speakers h3 {
        padding-top: 100px;
        font-size: 46px;
        margin-bottom: 60px;
    }

    div.event_details_details div.new-cal {
        display: inline-block;
    }

    section.event_schedule nav a {
        padding-left: 40px;
        padding-right: 40px;
        font-size: 28px;
        margin-right: 40px;
        margin-bottom: 40px;
    }

    section.event_schedule h3 {
        padding-top: 100px;
        font-size: 46px;
        margin-bottom: 60px;
    }

    section.event_item_share #share_container {
        display: block;
    }

    section.event_item_share {
        border-bottom: 1px solid #E7E7E7;
    }

    section.event_item_details ul {
        padding-top: 60px;
        padding-bottom: 60px;
        width: 100%;
    }

    section.event_item_details ul li {
        width: 35%;
        margin-bottom: 0px;
    }

    section.event_item_details ul li:first-child {
        width: 25%;
    }

    section.event_item_details ul li h3 {
        margin-bottom: 30px;
    }

    #schedule_content div.event_details {
        padding-left: 30px;
        padding-top: 0px;
        display: inline-block;
        width: 800px;
        width: 100%;
    }

    #schedule_content div.event_details h3 {
        font-size: 30px;
    }

    #schedule_content div.event_details div.event_details_details i:last-child {
        margin-left: 40px;
        margin-top: 0px;
    }

}

/* ==========================================================================
    Resources
   ========================================================================== */

section.resources {
    width: 100vw;
}

section.resources.videos {
    background-color: #FEEDDC;
}

section.resources.documents {
    margin-bottom: 60px;
}

section.resources h3 {
    padding-top: 30px;
    width: 60%;
    font-family: 'Cera Black', sans-serif;
    font-size: 24px;
    color: #033930;
}

section.resources div.standard_body_v2>h4 {
    padding-top: 30px;
    width: 60%;
    font-family: 'Cera Black', sans-serif;
    font-size: 20px;
    color: #033930;
    margin-bottom: 30px;
}

.resources_list {
    width: 100%;
    -webkit-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}

.resources_list a:hover li {
    opacity: 0.6;
}

.resources_list li {
    position: relative;
    display: inline-block;
    width: 100%;
    margin-left: 0px;
    margin-right: 20px;
    border-radius: 12px;
    border: 1px solid #E7E7E7;
    margin-bottom: 20px;
    background-color: #FFF;
    vertical-align: top;
    height: 430px;
}

.resources_list li time {
    position: relative;
    top: 0px;
    margin-left: 30px;
    margin-right: 30px;
    font-family: 'Cera Regular', sans-serif;
    font-size: 18px;
    color: #656565;
    display: block;
}

.resources_list li h4 {
    position: relative;
    top: 40px;
    margin-left: 30px;
    margin-right: 30px;
    font-family: 'Cera Bold', sans-serif;
    font-size: 24px;
    color: #000;
    padding-bottom: 30px;
    margin-bottom: 80px;
}

.resources_list li div.video_thumbnail {
    position: relative;
    width: 100%;
    height: 240px;
    border-radius: 12px;
    margin-bottom: 30px;
}

.resources_list li div.play_icon {
    position: absolute;
    left: 20px;
    bottom: 20px;
    color: white;
    background-color: rgba(0, 0, 0, 0.6);
    border-radius: 50%;
    padding: 20px;
}

.resources.podcasts {
    padding-bottom: 60px;
}

@media only screen and (min-width: 800px) {

    .resources_list li {
        width: 45%;
        width: calc((100% / 2) - 23px);
    }

    section.resources h3 {
        padding-top: 100px;
        font-size: 46px;
    }

    section.resources div.standard_body_v2>h4 {
        padding-top: 60px;
        font-size: 32px;
        margin-bottom: 60px;
    }

    .resources.podcasts {
        padding-bottom: 160px;
    }

}

@media only screen and (min-width: 1200px) {

    .resources_list li {
        width: 30%;
        width: calc((100% / 3) - 23px);
    }

}

/* ==========================================================================
    About  
   ========================================================================== */

img.about_fact_logo {
    height: 100px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-top: 40px;
}

#facts h3 {
    font-family: 'Tungsten-Bold', sans-serif;
    font-weight: 500;
    letter-spacing: 0px;
    font-size: 30px;
    position: relative;
    color: #37328C;
    margin-left: 40px;
    margin-top: 80px;
    text-transform: uppercase;
}

#facts ul {
    margin-left: 40px;
    margin-right: 40px;
    width: 80%;
    margin-top: 80px;
    margin-bottom: 80px;
}

#facts ul li {
    width: 50%;
    float: left;
    margin-bottom: 50px;
}

#facts ul li img {
    height: 100px;
    float: left;
    margin-right: 50px;
}

#about {
    position: relative;
    z-index: 10;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-bottom: 40px;
}

#about h3 {
    padding-top: 30px;
    width: 60%;
    font-family: 'Cera Black', sans-serif;
    font-size: 24px;
    color: #033930;
    margin-bottom: 30px;
    margin-left: 20px;
}

#about h2 {
    position: relative;
    color: #107c65;
    font-size: 18px;
    width: 100%;
    padding: 40px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 30px;
    padding-top: 60px;
}

#about h2:before {
    font-family: Georgia, serif;
    display: block;
    padding-left: 10px;
    content: "\201C";
    font-size: 100px;
    position: absolute;
    left: -20px;
    top: 50px;
    color: #7a7a7a;
}

#about h2 em {
    color: #999999;
    font-size: 14px;
    display: block;
    margin-top: 5px;
}

#about p em {
    font-style: italic;
}

#about ol {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    display: block;
    vertical-align: top;
}

#about ol li {
    width: 100%;
    padding: 20px;
    background-color: #f29f43;
    border-radius: 12px;
    color: #FFF;
    display: block;
    vertical-align: top;
    margin-bottom: 20px;
}

#about ol li em {
    font-style: italic;
}

#facts ul li p {
    float: left;
    font-family: 'Cera Regular', sans-serif;
    font-weight: 300;
    color: #24292e;   
    font-size: 16px;
    margin-top: 45px;
}

#facts {
    margin-left: auto;
    margin-right: auto;
    width: 100%;
}

#blobs {
    overflow: hidden;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

#blob1 {
    position: absolute;
    top: -100px;
    left: 10px;
    z-index: 1;
    width: 100%;
    opacity: 0.5;
    overflow: hidden;
    height: 1000px;
}

#blob2 {
    position: absolute;
    top: 500px;
    left: 0px;
    z-index: 1;
    width: 100%;
    opacity: 0.4;
    overflow: hidden;
    height: 1000px;
}

#blob3 {
    position: absolute;
    top: 1300px;
    left: 100px;
    z-index: 1;
    width: 100%;
    opacity: 0.6;
    overflow: hidden;
    height: 1000px;
}

@media only screen and (min-width: 800px) {

    #facts {
        width: 80%;
    }

    #about {
        padding-bottom: 200px;
    }

    #about h3 {
        padding-top: 100px;
        width: 80%;
        font-size: 46px;
        margin-bottom: 60px;
        margin-left: 30px;
    }

    #about h2 {
        width: 80%;
    }

    #about ol {
        width: 80%;
        display: flex;
    }

    #about ol li {
        width: 30%;
        width: calc(33% - 13px);
        margin-right: 20px;
        display: inline-block;
    }

    #about ol li:last-child {
        margin-right: 0px;
    }

    #blob2 {
        top: 500px;
        left: 500px;
    }

}

/* ==========================================================================
    Our Partners
   ========================================================================== */

#partners {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    margin-top: 80px;
    margin-bottom: 80px;
}

#partners a:hover li {
    opacity: 0.6;
}

#partners a {
    width: 100%;
    display: inline-block;
    margin-bottom: 100px;
}

#partners a li {
    
}

#partners li div {
    height: 200px;
    width: 200px;
    display: block;
    cursor: pointer;
    cursor: pointer;
    position: relative;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 20px;
}

#partners li h3 {
    font-family: 'Cera Regular', sans-serif;
    font-weight: 500;
    color: #dd8233;
    font-size: 18px;
    text-align: center;
    -webkit-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}

section.partners {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

section.partners div.standard_body_v2>h3 {
    padding-top: 60px;
    width: 60%;
    font-family: 'Cera Black', sans-serif;
    font-size: 24px;
    color: #033930;
    margin-bottom: 60px;
}

@media only screen and (min-width: 800px) {

    #partners a {
        width: 33%;
    }

    section.partners div.standard_body_v2>h3 {
        font-size: 46px;
        padding-top: 100px;
    }

}

/* ==========================================================================
    Fact Roadmap
   ========================================================================== */

div.hero_standard {
    position: relative;
    width: 100%;
}

div.hero_standard img {
    width: 80%;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

#hero_section_standard {
    margin-top: -20px;
}

#hero_section_slim {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

#hero_section_slim h3 {
    padding-top: 30px;
    width: 60%;
    font-family: 'Cera Black', sans-serif;
    font-size: 24px;
    color: #033930;
    margin-bottom: 0px;
    margin-left: 30px;
}

#pdf_container {
    text-align: center;
    margin-top: 80px;
    margin-bottom: 20%;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}

#pdf_container li {
    margin-bottom: 10px;
    float: left;
    margin-bottom: 20px;
    width: 100%;
    -webkit-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    list-style: none !important;
    margin-left: 0;
}

#pdf_container li:hover {
    opacity: 0.5;
}

#pdf_container li a {
    border: 0;
    display: block;
    font-family: 'Cera Regular', sans-serif;
    font-weight: 500;
    color: #53808c;
    font-size: 22px;
}

#pdf_container li a i {
    margin-right: 10px;
    font-size: 30px;
}

#pdf_container li a img {
    width: 100%;
}


@media only screen and (min-width: 800px) {

    #pdf_container {
        width:100%;
    }

    div.hero_standard img {
        width: 90%;
    }

    #pdf_container li {
        width: 30%;
        width: calc(50% - 20px);
        margin-right: 20px;
    }

    #pdf_container li:nth-child(2n) {
        margin-right: 0px;
    }

    #hero_section_slim h3 {
        padding-top: 100px;
        font-size: 46px;
    }

}

@media only screen and (min-width: 1200px) {

    #pdf_container li, #pdf_container li:nth-child(2n) {
        width: 30%;
        width: calc(33% - 13px);
        margin-right: 20px;
    }

    #pdf_container li:nth-child(3n) {
        margin-right: 0px;
    }

}

@media only screen and (min-width: 1400px) {

    #pdf_container {
        width: 100%;
    }

    #pdf_container li, #pdf_container li:nth-child(3n), #pdf_container li:nth-child(2n) {
        width: 20%;
        width: calc(25% - 15px);
        margin-right: 20px;
    }

    #pdf_container li:nth-child(4n) {
        margin-right: 0px;
    }

}

/* ==========================================================================
    Footer 
  ========================================================================== */

footer {
    display: block;
    position: relative;
    padding-top: 190px;
    margin-top: auto;
    z-index: 10;
}

body.signup footer {
    margin-top: -270px;
}

#footer_background {
    position: absolute;
    bottom: 250px;
    width: 100%;
    z-index: 0;
}

#footer_background_fill {
    position: absolute;
    width: 100%;
    width: 100vw;
    height: 255px;
    bottom: 0px;
    background-color: #FAE0E3;
}

#footer_content {
    position: relative;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    bottom: 20px;
    z-index: 5;
    padding-left: 20px;
    padding-right: 20px;
}

#subcribe_container {
    position: relative;
    margin-top: 40px;
    margin-bottom: 100px;
    height: 50px;
}

#subcribe {
    position: absolute;
    width: 50%;
}

#subcribe p {
    position: absolute;
    top: 20px;
    left: 150px;
    font-family: 'Cera Light', sans-serif;
    color: #474444;
    font-size: 22px;
    line-height: 180%;
    width: 60%;
    display: none;
}

#logos {
    width: 100%;
    -webkit-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    border-bottom: 1px solid #C6C6C6;
    padding-bottom: 20px;
    text-align: center;
    display: none;
}

#logos img {
    height: 35px;
    margin-right: 60px;
}

#logos a:last-child img {
    margin-right: 0px;
}

#copyright_legals {
    padding-top: 20px;
    padding-bottom: 20px;
    font-family: 'Cera Light', sans-serif;
    color: #474444;
    font-size: 14px;
}

#copyright_legals a {
    float:  right;
    margin-right: 0px;
    font-family: 'Cera Light', sans-serif;
    color: #474444;
    font-size: 14px;
}

#copyright_legals p {
    margin-left: 0px;
    font-family: 'Cera Light', sans-serif;
    color: #474444;
    font-size: 14px;
}

#contact_details {
    position: absolute;
    width: 50%;
    left: 25%;
}

#contact_details #row1 {
    width: 40%;
    padding-top: 30px;
    display: none;
    padding-right: 40px;
}

#contact_details #row1.border {
    border-right: 1px solid #D7D7D7;
}

#contact_details #row2 {
    padding-top: 27px;
    padding-left: 20px;
    width: 100%;
    display: inline-block;
}

#contact_details #row1 p, #contact_details #row2 p {
    font-family: 'Cera Regular', sans-serif;
    color: #949494;
    font-size: 14px;
    margin-bottom: 20px;
}

#contact_details #row1 a, #contact_details #row2 a {
    font-family: 'Cera Bold', sans-serif;
    color: #423535;
    font-size: 16px;
}

#contact_details #row1 a:hover, #contact_details #row2 a:hover {
    opacity: 0.6;
}

span.footer_desktop {
    display: none;
}

#footer_share {
    float: right;
    margin-top: 23px;
    display: none;
}

#footer_share p {
    font-family: 'Cera Regular', sans-serif;
    font-size: 14px;
    color: #888888;
    margin-right: 40px;
    display: inline-block;
}

#footer_share a {
    display: inline-block;
    margin-right: 5px;
    font-size: 30px;
    padding-top: 5px;
}

#footer_share a:hover {
    opacity: 0.6;
}

#footer_share a:nth-child(2) i {
    color: #3b5998;
}

#footer_share a:nth-child(3) i {
    color: #00acee;
}

#footer_share a:nth-child(4) i {
    color: #0072b1;
}

#footer_share a:nth-child(5) i {
    color: #000;
}


@media only screen and (min-width: 800px) {

    #contact_details #row1 p, #contact_details #row2 p {
        font-size: 16px;
    }

    #contact_details #row1 a, #contact_details #row2 a {
        font-size: 20px;
    }

    span.footer_desktop {
        display: inline-block;
    }

    #logos {
        display: block;
    }

    #subcribe p {
        display: block;
    }

    #footer_content {
        padding-left: 30px;
        padding-right: 30px;
    }

    #contact_details {
        left: 50%;
    }

    #contact_details #row1 {
        display: inline-block;
    }

    #contact_details #row2 {
        padding-top: 30px;
        width: 40%;
        padding-left: 40px;
    }

}

@media only screen and (min-width: 950px) {

    #logos img {
        height: 45px;
    }

}

@media only screen and (min-width: 1200px) {

    #logos {
        padding-bottom: 40px;
        text-align: left;
    }

    #logos img {
        height: 55px;
        margin-right: 60px;
    }

    #footer_share {
        display: block;
    }

}

/* ==========================================================================
    Signup 
   ========================================================================== */

#signup_container {
    position: relative;
    background-color: #FFF;
    height: 0;
    width: 100%;
    bottom: 0px;
    overflow: hidden;
    -webkit-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}

#signup_container.active {
    display: block;
}

#signup_container.animate_on {
    bottom: 270px;
    height: 860px;
}

body.signup #signup_container {
    height: 870px;
}

#signup_content {
    position: relative;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 120px;
}

#signup_hero {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
}

#signup_graphic {
    display: none;
    position: absolute;
    top: 0px;
    left: 30px;
    width: 150px;
    z-index: 5;
}

#signup_graphic img {
    width: 100%;
}

#signup_copy {
    display: none;
    position: absolute;
    top: 50px;
    left: 60px;
    width: 40%;
    z-index: 10;
}

#signup_copy p {
    font-family: 'Cera Black', sans-serif;
    color: #FFF;
    font-size: 44px;
    line-height: 130%;
}

#signup_copy p strong{
    color: #EB6B49;
}

#signup_copy p em {
    font-family: 'Cera Light', sans-serif;
    font-size: 16px;
    color: #E6E6E6;
}

#newsletter_form {
    position: absolute;
    margin-top: 40px;
    width: 100%;
    left: 20px;
}

div.main-container.privacy h3 {
    width: 60%;
    font-family: 'Cera Black', sans-serif;
    font-size: 24px;
    color: #033930;
    margin-bottom: 30px;
}

div.main-container.privacy {
    padding-bottom: 60px;
}

div.main-container td {
    padding: 10px;
}

@media only screen and (min-width: 800px) {

    div.main-container.privacy h3 {
        padding-top: 70px;
        font-size: 46px;
        margin-bottom: 60px;
    }

}
    
#privacy_accept_container {
    top: 5px;
    position: relative;
    margin-left: 20px;
    margin-bottom: 50px;
    width: 300px;
}

.privacy_accept_label {
    display: block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    font-family: 'Cera Light', sans-serif;
    font-size: 14px;
    color: #FFF;
}

.privacy_accept_label a {
    color: #FFF;
    text-decoration: underline;
}

.privacy_accept_label a:hover {
    opacity: 0.7;
}

/* Hide the browser's default checkbox */
.privacy_accept_label input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

/* Create a custom checkbox */
.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 25px;
    width: 25px;
    background-color: #eee;
}

/* On mouse-over, add a grey background color */
.privacy_accept_label:hover input ~ .checkmark {
  background-color: #ccc;
}

/* When the checkbox is checked, add a blue background */
.privacy_accept_label input:checked ~ .checkmark {
  background-color: #8CDC73;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the checkmark when checked */
.privacy_accept_label input:checked ~ .checkmark:after {
  display: block;
}

/* Style the checkmark/indicator */
.privacy_accept_label .checkmark:after {
  left: 9px;
  top: 5px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

#signup_email_message {
    font-family: 'Cera Light', sans-serif;
    font-size: 18px;
    color: #666666;
    text-align: center;
    width: 100%;
    height: 30px;
    padding-top: 20px;
    width: 80%;
    margin-left: auto;
    margin-right: auto;
}

nav.form_nav {
    text-align: center;
}

.signup_form_field {
    background-color: #f7f7f7;
    border: 0;
    font-family: 'Cera Light', sans-serif;
    font-size: 20px;
    color: #141414;
    letter-spacing: 1px;
    padding: 20px;
    display: block;
    width: 330px;
    margin-bottom: 20px;
    border-radius: 12px;
}

button.signup_send {
    font-family: 'Cera Regular', sans-serif;
    font-size: 20px;
    border: 1px solid #179F8C;
    padding: 20px;
    padding-left: 50px;
    padding-right: 50px;
    color: #FFF;
    border-radius: 12px;
    letter-spacing: 2px;
    margin-top: 0px !important;
    display: block;
    cursor: pointer;
    width: 330px;
    background-color: #179F8C;
}

button.signup_send:hover {
    background-color: #b1b1b1;
    color: #FFF;
}

#signup_cancel {
    position: absolute;
    right: 0px;
    top: 20px;
    font-size: 12px;
    padding: 15px;
    cursor: pointer;
}

body.signup_nocancel #signup_cancel {
    display: none;
}

#signup_cancel:hover {
    opacity: 0.6;
}

#signup_cancel i { 
    color: #FFF;
    font-size: 20px;
}

@media only screen and (min-width: 800px) {

    #newsletter_form {
        width: 40%;
        left: 50%;
        left: calc(50% + 22px);
    }

    #signup_graphic {
        display: block;
    }

    #signup_copy {
        display: block;
    }

}

/* ==========================================================================
    Cookie
   ========================================================================== */

.gdprcookie {
    background-color: #363537 !important;
    right: auto;
    left: 1.5rem;
    z-index: 1000;
}

.gdprcookie h1, .gdprcookie h2 {
    font-size: 16px;
    font-family: 'Cera Regular', sans-serif !important;
    font-weight: 500;
    color: #FFF;
}

.gdprcookie p {
    font-size: 14px;
    font-family: 'Cera Regular', sans-serif !important;
    color: #FFF;
}

.gdprcookie a {
    font-size: 14px;
    font-family: 'Cera Regular', sans-serif !important;
    text-decoration: underline;
    color: #FFF;
}

.gdprcookie a:hover {
    opacity: 0.6;
}

.gdprcookie-buttons, .gdprcookie-types {
    margin-top: 20px;
}

.gdprcookie-types label {
    font-size: 14px;
    font-family: 'Cera Regular', sans-serif !important;
    color: #FFF;
}

.gdprcookie-buttons button {
    font-size: 14px !important;
    font-family: 'Cera Regular', sans-serif !important;
    color: #FFF !important;
    padding: 15px !important;
    border: 1px solid #FFF !important;
}

.gdprcookie-buttons button:hover {
    opacity: 0.6;
}


/* ==========================================================================
    Error
   ========================================================================== */

.error {
    font-family: "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif; 
    font-weight: 300;
    font-size: 60px;
    color: #231F20;
    text-align: center;
}

.error h1 {
    font-family: "HelveticaNeue", "Helvetica Neue ", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif; 
    font-weight: 300;
    font-size: 60px;
    color: #231F20;
    padding-top: 100px;
    padding-bottom: 100px;
}


.error h2 {
    font-family: "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif; 
    font-weight: 300;
    font-size: 30px;
    color: #231F20;
    margin-bottom: 100px;
}


.error h3 {
    font-family: "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif; 
    font-weight: 300;
    font-size: 30px;
    color: #231F20;
}