/* Minification failed. Returning unminified contents.
(320,2): run-time error CSS1031: Expected selector, found '/'
(320,2): run-time error CSS1025: Expected comma or open brace, found '/'
(1529,1): run-time error CSS1019: Unexpected token, found '}'
 */
/*
        ___          ___          ___          ___      ___                   ___          ___     
       /\  \        /\  \        /\  \        /\  \    /\  \        ___      /\__\        /\  \    
      /::\  \      /::\  \      /::\  \      /::\  \   \:\  \      /\  \    /:/  /       /::\  \   
     /:/\:\  \    /:/\:\  \    /:/\:\  \    /:/\:\  \   \:\  \     \:\  \  /:/  /       /:/\:\  \  
    /:/  \:\  \  /::\~\:\  \  /::\~\:\  \  /::\~\:\  \  /::\  \    /::\__\/:/__/  ___  /::\~\:\  \ 
   /:/__/ \:\__\/:/\:\ \:\__\/:/\:\ \:\__\/:/\:\ \:\__\/:/\:\__\__/:/\/__/|:|  | /\__\/:/\:\ \:\__\
   \:\  \  \/__/\/_|::\/:/  /\:\~\:\ \/__/\/__\:\/:/  /:/  \/__/\/:/  /   |:|  |/:/  /\:\~\:\ \/__/
    \:\  \         |:|::/  /  \:\ \:\__\       \::/  /:/  /    \::/__/    |:|__/:/  /  \:\ \:\__\  
     \:\  \        |:|\/__/    \:\ \/__/       /:/  /\/__/      \:\__\     \::::/__/    \:\ \/__/  
      \:\__\       |:|  |       \:\__\        /:/  /             \/__/      ~~~~         \:\__\    
       \___/        \|__|    ___ \/__/    ___ \/__/   ___  ___                            \/__/    
       /\__\       ___      /\__\        /\  \       /\__\/\  \                                    
      /:/  /      /\  \    /::|  |      /::\  \     /:/  /::\  \                                   
     /:/__/       \:\  \  /:|:|  |     /:/\:\  \   /:/  /:/\:\  \                                  
    /::\__\____   /::\__\/:/|:|  |__  /:/  \:\__\ /:/  /::\~\:\  \                                 
   /:/\:::::\__\_/:/\/__/:/ |:| /\__\/:/__/ \:|__/:/__/:/\:\ \:\__\                                
   \/_|:|~~|~ /\/:/  /  \/__|:|/:/  /\:\  \ /:/  |:\  \:\~\:\ \/__/                                
      |:|  |  \::/__/       |:/:/  /  \:\  /:/  / \:\  \:\ \:\__\                                  
      |:|  |   \:\__\       |::/  /    \:\/:/  /   \:\  \:\ \/__/                                  
      |:|  |    \/__/       /:/  /      \::/__/     \:\__\:\__\                                    
       \|__|                \/__/        ~~          \/__/\/__/                                    
*/


/******************** Recommended CSS reset, based on work by Eric Meyer - http://meyerweb.com ********************/

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,
font,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    font-weight: inherit;
    font-style: inherit;
    font-size: 100%;
    font-family: inherit;
    vertical-align: baseline;
}

:focus {
    outline: none;
}

img {
    max-width: 100%;
}

table {
    border-collapse: separate;
    border-spacing: 0;
}

caption,
td {
    text-align: left;
    font-weight: normal;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
    content: "";
}

blockquote,
q {
    quotes: "" "";
}


/**************************************** more resets ****************************************/

* {
    margin: 0;
    padding: 0;
}

*,
:after,
:before {
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

a {
    text-decoration: none;
}

    a:hover {
        cursor: pointer;
    }

ul {
    list-style: none;
    list-style-type: none;
}

em {
    font-style: italic;
}

strong {
    font-weight: 700;
}


/**************************************** structure ****************************************/

body,
html {
    height: 100%;
    -webkit-overflow-scrolling: touch;
    -webkit-font-smoothing: antialiased;
}

body {
    font-size: 62.5%;
}


/**************************************** fonts / text / typography ****************************************/

h2,
.tracks h2 {
    font-family: 'Roboto Condensed', sans-serif;
    text-transform: uppercase;
    /*font-style: italic;*/
    font-size: 3.5em;
    color: #0066ac;
}

h3 {
    font-family: 'Roboto Condensed', serif;
    text-transform: capitalize;
    font-size: 2.9em;
    margin: 0 150px 0 0;
}

h4 {
    font-family: 'Roboto Condensed', serif;
    text-transform: capitalize;
    font-size: 1.3em;
}

.sponsors h4 {
    text-align: center;
}

p {
    font-family: 'Roboto Condensed', serif;
    font-size: 1.7em;
    margin: 1em 0;
    font-weight: 300;
}

a[name] {
    padding-top: 120px;
    margin-top: -120px;
}


/**************************************** header ****************************************/

header {
    width: 100%;
    height: 70px;
    background: #ebebeb;
    background: rgba(235, 235, 235, 1);
    position: fixed;
    z-index: 9999;
    box-shadow: 0 1px 1px #ddd;
    margin: -100px 0 0 0;
    -webkit-transition: all .5s ease-in-out;
    -moz-transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out;
    -ms-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
}

.show_menu {
    margin: 0 0 0 0;
    -webkit-transition: all .5s ease-in-out;
    -moz-transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out;
    -ms-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
}


/**************************************** navigation / menu ****************************************/

.main_menu {
    float: right;
    position: relative;
    left: -50%;
    text-align: left;
}

    .main_menu ul {
        list-style: none;
        position: relative;
        left: 50%;
    }

        .main_menu ul li {
            float: left;
            position: relative;
            margin: 0 20px 0 0;
            line-height: 70px;
        }

            .main_menu ul li a {
                float: left;
                text-align: center;
                white-space: nowrap;
                color: #555;
                font-family: 'Montserrat', sans-serif;
                text-transform: uppercase;
                font-size: 1.3em;
                font-weight: 400;
                -webkit-transition: all .5s ease-in-out;
                -moz-transition: all .5s ease-in-out;
                -o-transition: all .5s ease-in-out;
                -ms-transition: all .5s ease-in-out;
                transition: all .5s ease-in-out;
            }

                .main_menu ul li a:hover {
                    color: #faa61a;
                    -webkit-transition: all .2s ease-in-out;
                    -moz-transition: all .2s ease-in-out;
                    -o-transition: all .2s ease-in-out;
                    -ms-transition: all .2s ease-in-out;
                    transition: all .2s ease-in-out;
                }


    .main_menu li:last-child {
/*        background: #faa61a;
        width: 130px;*/
        height: 40px;
        margin: 15px 0 0 0;
        
        line-height: normal;
    }

        .main_menu li:last-child a {
           
            line-height: 40px;
/*            color: #fff;
             width: 100px;*/
            padding: 0 7px 0 9px;
            height: 40px;
            text-align: center;
        }

            .main_menu li:last-child a:hover {
                color: #faa61a;
            }

*/
/**************************************** MOBILE navigation / menu ****************************************/

.mobile_menu,
.mobile_menu_btn {
    display: none;
}

.mobile_menu_btn {
    position: fixed;
    z-index: 99999;
    overflow: hidden;
    width: 40px;
    height: 40px;
    font-size: 0;
    right: 15px;
    top: 15px;
    text-indent: -9999px;
    cursor: pointer;
    border: none;
    background: #444444;
    background: rgba(68, 68, 68, 0.9);
    box-shadow: 0 1px 1px #333;
}

    .mobile_menu_btn:focus {
        outline: none;
    }

    .mobile_menu_btn span {
        display: block;
        position: absolute;
        top: 18px;
        left: 4px;
        right: 4px;
        height: 4px;
        background: #fff;
    }

        .mobile_menu_btn span:before,
        .mobile_menu_btn span:after {
            position: absolute;
            display: block;
            left: 0;
            width: 100%;
            height: 4px;
            background: #fff;
            content: "";
        }

        .mobile_menu_btn span:before {
            top: -10px;
        }

        .mobile_menu_btn span:after {
            bottom: -10px;
        }

.mobile_open span {
    background: none;
}

    .mobile_open span::before {
        top: 0;
        transform: rotate(45deg);
    }

    .mobile_open span::after {
        bottom: 0;
        transform: rotate(-45deg);
    }

.show_mobile_menu {
    display: block;
}

.mobile_menu {
    width: 100%;
    position: fixed;
    top: 0;
    height: 100%;
    background: #333;
    opacity: 0.9;
    filter: alpha(opacity=90);
    color: #fff;
    font-size: 1.3em;
    text-transform: uppercase;
    padding: 10px;
    z-index: 9999;
    overflow: scroll;
}

    .mobile_menu ul li a {
        float: left;
        clear: left;
        display: block;
        width: 75%;
        text-align: left;
        white-space: nowrap;
        color: #fff;
        font-family: 'Montserrat', sans-serif;
        text-transform: uppercase;
        font-size: 1.4em;
        font-weight: 400;
        margin: 5px 0;
        padding: 5px 0 15px 0;
        border-bottom: solid 1px #eee;
        -webkit-transition: all .5s ease-in-out;
        -moz-transition: all .5s ease-in-out;
        -o-transition: all .5s ease-in-out;
        -ms-transition: all .5s ease-in-out;
        transition: all .5s ease-in-out;
    }

        .mobile_menu ul li a:hover {
            color: #faa61a;
            -webkit-transition: all .2s ease-in-out;
            -moz-transition: all .2s ease-in-out;
            -o-transition: all .2s ease-in-out;
            -ms-transition: all .2s ease-in-out;
            transition: all .2s ease-in-out;
        }


/**************************************** theme / front_page ****************************************/

/*.theme {
    width: 100%;
    height: 670px;
    background: -moz-linear-gradient(left, rgba(194, 216, 254, 0.60) 0, rgba(151, 176, 217, 0.60) 100%), url(images/2018/bg_theme.jpg) no-repeat scroll 50% 50%;
    background: -webkit-gradient(linear, left top, right top, color-stop(0, rgba(194, 216, 254, 0.60)), color-stop(100%, rgba(151, 176, 217, 0.60))), url(images/2018/bg_theme.jpg) no-repeat scroll 50% 50%;
    background: -webkit-linear-gradient(left, rgba(194, 216, 254, 0.60) 0, rgba(151, 176, 217, 0.60) 100%), url(images/2018/bg_theme.jpg) no-repeat scroll 50% 50%;
    background: -o-linear-gradient(left, rgba(194, 216, 254, 0.60) 0, rgba(151, 176, 217, 0.60) 100%), url(images/2018/bg_theme.jpg) no-repeat scroll 50% 50%;
    background: -ms-linear-gradient(left, rgba(194, 216, 254, 0.60) 0, rgba(151, 176, 217, 0.60) 100%), url(images/2018/bg_theme.jpg) no-repeat scroll 50% 50%;
    background: linear-gradient(to right, rgba(194, 216, 254, 0.60) 0, rgba(151, 176, 217, 0.60) 100%), url(images/2018/bg_theme.jpg) no-repeat scroll 50% 50%;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    padding: 70px 0 0 0;
}*/
.theme {
    width: 100%;
    max-height: 830px;
    overflow: hidden;
    position: relative;
}

.theme_content {
    width: 830px;
    margin: 0 auto;
    text-align: center;
    padding: 70px 30px 4% 30px;
}

    .theme_content .logo {
        width: 614px;
    margin: 0 auto;
    height: 306px;
    background: url(https://dzceab466r34n.cloudfront.net/images_nl/sw/ESD-Connect-20_Replay_Overlay_1920x1080_c1.svg) no-repeat;
    background-size: 712px 304px;
    }

    .theme_content .tagline {
        color: #0066ac;
        font-size: 3.2em;
        font-family: 'Roboto Condensed', sans-serif;
        font-style: italic;
    }

        /*.theme_content .tagline span {
            color: black;
            ;
            text-shadow: 0.5px 1.5px black;
            font-size: 0.8em;
        }
        */

    .theme_content .tagline2 {
        color: #0066ac;
				margin-top:20px;
        font-size: 3.3em;
        font-family: 'Roboto Condensed', sans-serif;
        font-style: italic;
        margin-top: 3%;
}
        

    .theme_content .date_location {
        color: black;
        font-size: 3.1em;
        font-family: 'Roboto Condensed', sans-serif;
        padding: 15px 0;
        border-top: solid 1px black;
        border-bottom: solid 1px black;
        text-transform: uppercase;
        margin: 30px 0;
        /*text-shadow: 0.5px 1.5px black;*/
    }

.mobile_line_break {
    display: none;
}

.theme_content .register_btn {
/*        width: 240px;*/
        width: 320px;
    height: 70px;
    margin: 0 auto;
   
    text-transform: uppercase;
    font-style: italic;
    font-weight: 700;
    /* add back when ready-mjd  margin: 0 0 5% 14%; */
}
.theme_content .register_btn2 {
    width: 240px;
    height: 70px;
/*    margin:-30% -10% 0 130%;*/
    margin:-30% -10% 0 110%;  /*changed to eliminate word wrap ... BS, 10/9/20*/
    /* took out to change to percent margin: -70px -30px 0 324px;*/
}


    .theme_content .register_btn a {
        color: #fff;
        font-size: 2.5em;
        font-family: 'Roboto Condensed', sans-serif;
        line-height: 70px;
        display: block;
/*        width: 240px;*/
        width: 320px; /*changed to eliminate word wrap ... BS, 10/9/20*/
        height: 70px;
        background: #faa61a;
    }
    .theme_content .register_btn a:hover {
         background: #0066AA;
         -webkit-transition: all .5s ease-in-out;
         -moz-transition: all .5s ease-in-out;
         -o-transition: all .5s ease-in-out;
         -ms-transition: all .5s ease-in-out;
         transition: all .5s ease-in-out;
    }

    .date_location span {
        font-size: .7em;
    }
/**************************************** intro / front_page ****************************************/

.primary_content {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    color: #333;
    padding: 25px 30px;
    background: #fff;
}

.ad_wrapper > .secondary_content {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    color: #333;
    padding: 0 30px;
    background: #fff;
}

.intro_video{
    
    width: 50%;

}

.intro_video.left {
    float: left;
    margin: 29px 24px 36px 0;
    
}

.intro_video:after {
    content: "";
    width: 50%;
    height: 39px;
    background: url(/images/2020/video_drop_shadow.png) no-repeat;
    background-size: contain;
    /*position: absolute;*/
}

.intro_img {
    width: 45%;
}

    .intro_img.left {
        float: left;
        margin: 0 60px 30px 0;
    }

    .intro_img.right {
        float: right;
        margin: 0 0 30px 60px;
    }

    .intro_img img {
        width: 100%;
        height: auto;
    }


/*
.unorderedlist ul {
    margin: 0 0 10px 25px;
    font-family: 'Roboto Condensed', serif;
    font-size: 1.7em;
    list-style-type: disc;
}

.unorderedlist ul li  {
    margin: 0 0 10px 25px;
    font-family: 'Roboto Condensed', serif;
    font-size: 1.7em;
    list-style-type: disc;
}
**/
.fixPHomepage {
    
    
    margin: 1em 50px;
    
}
.unorderedlist ul {
    margin: 0 0 10px 25px;
    font-family: 'Roboto Condensed', serif;
    font-size: 1.7em;
    list-style-type: disc;
    font-weight: 300;
}

    .unorderedlist ul li ul {
        margin: 0 0 10px 25px;
        font-family: 'Roboto Condensed', serif;
        font-size: 17px;
        list-style-type: disc;
        font-weight: 300;
    }


/**************************************** tracks / front_page ****************************************/

.tracks {
    width: 100%;
    background: url(/images/2020/bg_tracks.jpg) no-repeat fixed top center;
    background-size: cover;
    padding: 30px;
}

    .tracks h2 {
        width: 100%;
        max-width: 1200px;
        margin: 0 auto;
    }
    .tracks h4 {
        color: #0066ac;
        width: 100%;
        max-width: 1200px;
        font-family: 'Gentium Basic',serif;
        margin: 0 auto;
        font-size: 26px;
    }
    

.track {
    width: 100%;
    max-width: 1200px;
    margin: 30px auto;
    background: #fff;
    padding: 30px;
    box-shadow: 0 1px 1px #ddd;
}

.explore_btn a,
.explore_btn_mobile a {
    font-size: 1.5em;
    font-family: 'Roboto Condensed', sans-serif;
    text-transform: uppercase;
    font-style: italic;
    font-weight: 700;
    width: 70px;
    height: 50px;
    line-height: 50px;
    position: relative;
    float: right;
    background: #faa61a;
    color: #fff;
    padding: 0 0 0 15px;
    z-index: 10;
    right: 49px;
}

    .explore_btn a:after,
    .explore_btn_mobile a:after {
        content: "";
        position: absolute;
        display: block;
        border: 25px solid #faa61a;
        z-index: -5;
    }

    .explore_btn a:after,
    .explore_btn_mobile a:after {
        right: -49px;
        top: 0;
        border-right-color: transparent;
    }

.explore_btn_mobile {
    display: none;
}


/***************************************** Videos Area ****************************************/

.outer-container {
    position: relative;
    height: 0;
    padding-bottom: 56.25%;
}

#bcVideoNavigation label {
    font-size: 14px;
}

.BrightcoveExperience {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.bcSessionTitle {
    font-weight: bolder;
    margin-top: 15px;
    font-size: 20px;
}

.bcPresentationTitle {
    font-weight: bolder;
    font-size: 18px;
}

.bcSpeaker {
    font-size: 18px;
}
span.speakerRole {
    font-size: 14px;
    font-weight: bolder;
}
#sessionContent {
    margin-top: 15px;
    font-size: 16px;
}

#bcVideoNavigation {
    width: 100%;
    height: 33px;
    padding: 3px;
    border: 1px #cccccc solid;
    background-color: #ececec;
    border-radius: 5px;
    margin: 0 0 4px 0;
}


/**************************************** sponsor area ****************************************/

.sponsor_wrapper {
    margin: 60px 0 0 0;
}

.sponsors {
    margin: 30px 0 0 0;
    color: #666;
}

    .sponsors ul {
        text-align: center
    }

        .sponsors ul li {
            display: inline-block;
            margin: 15px;
        }

        .sponsors ul li {
            min-width: 120px;
            min-height: 60px;
            /*background: #ffffff*/;
        }


/**************************************** footer ****************************************/

footer {
    width: 100%;
    max-width: 1260px;
    margin: 0 auto;
    color: #666;
    padding: 60px 30px;
    font-size: 1.3em;
}

    footer a {
        color: #999;
        -webkit-transition: all .6s ease-in-out;
        -moz-transition: all .6s ease-in-out;
        -o-transition: all .6s ease-in-out;
        -ms-transition: all .6s ease-in-out;
        transition: all .6s ease-in-out;
    }

        footer a:hover {
            color: #faa61a;
            -webkit-transition: all .2s ease-in-out;
            -moz-transition: all .2s ease-in-out;
            -o-transition: all .2s ease-in-out;
            -ms-transition: all .2s ease-in-out;
            transition: all .2s ease-in-out;
        }

.footer_block {
    float: left;
    margin: 0 2.6% 60px 0;
    padding: 0 30px 0 0;
    border-right: solid 1px #eee;
    width: 23%;
    min-height: 140px;
}

    .footer_block:last-child {
        margin: 0 0 60px 0;
        border-right: none;
    }

footer ul li {
    padding: 10px 0 5px 0;
}

.social ul li {
    float: left;
    margin: 0 20px 0 0;
}

    .social ul li:last-child {
        margin: 0 0 0 0;
    }

    .social ul li a {
        font-size: 1.9em;
    }

.email_signup {
    margin: 15px 0 0 0;
}

    .email_signup input {
        width: 85%;
        float: left;
        font-size: 1.1em;
        padding: 3px 10px;
        color: #666;
        height: 40px;
        border: solid 1px #ddd;
        font-family: 'Roboto Condensed', serif;
    }

        .email_signup input[type=submit],
        .email_signup input[type=button] {
            display: block;
            background: #eee;
            float: left;
            height: 40px;
            line-height: 35px;
            border-top: solid 1px #ddd;
            ;
            border-right: solid 1px #ddd;
            border-bottom: solid 1px #ddd;
            border-left: none;
            color: #222;
            text-align: center;
            padding: 0;
            text-transform: uppercase;
            font-size: 0.8em;
            width: 15%;
            cursor: pointer;
        }

            .email_signup input[type=submit]:hover,
            .email_signup input[type=button]:hover {
                background: #aaa;
                color: #fff;
            }

.logo_econtent {
    display: block;
    width: 200px;
    height: 52px;
    margin: 15px 0 0 0;
    background: url(/images/2020/logo_kmw_mag.svg) no-repeat;
    background-size: 200px 52px;
    text-indent: -9999px;
    -webkit-filter: grayscale(100%);
    filter: grayscale(100%);
    opacity: 0.4;
    filter: alpha(opacity=40);
}

    .logo_econtent:hover {
        -webkit-filter: grayscale(0);
        filter: grayscale(0);
        opacity: 1.0;
        filter: alpha(opacity=100);
        -webkit-transition: all .6s ease-in-out;
        -moz-transition: all .6s ease-in-out;
        -o-transition: all .6s ease-in-out;
        -ms-transition: all .6s ease-in-out;
        transition: all .6s ease-in-out;
    }


/**************************************** subpage / secondary pages ****************************************/

.subpage {
    width: 100%;
    background: url(/images/2020/bg_subpage.jpg) no-repeat fixed top center;
    background-size: cover;
}

    .subpage .main_menu li:first-child {
        width: 169px;
        height: 50px;
        margin: 10px 20px 0 0;
        background: url(/images/2020/ESD-Connect-20_Logo-Banner_outlined.svg) no-repeat;
        background-size: 169px 50px;
        line-height: normal;
    }

        .subpage .main_menu li:first-child a {
            width: 169px;
            height: 50px;
            text-indent: -9999px;
            display: block;
        }

    .subpage .banner_date_location {
        top: 70px;
        position: fixed;
        border-bottom: solid 1px #1ec2f3;
        background: #C2D8FE;
        background: rgba(194, 216, 254, 1);
        width: 100%;
        height: 50px;
        line-height: 50px;
        text-align: center;
        font-family: 'Roboto Condensed', sans-serif;
        font-size: 2.9em;
        color: #1ec2f3;
        -webkit-transition: all .7s ease-in-out;
        -moz-transition: all .7s ease-in-out;
        -o-transition: all .7s ease-in-out;
        -ms-transition: all .7s ease-in-out;
        transition: all .7s ease-in-out;
    }

        .subpage .banner_date_location.scroll {
            top: -70px;
            -webkit-transition: all .3s ease-in-out;
            -moz-transition: all .3s ease-in-out;
            -o-transition: all .3s ease-in-out;
            -ms-transition: all .3s ease-in-out;
            transition: all .3s ease-in-out;
        }

    .subpage .primary_content {
        background: none;
        padding: 160px 30px 0 30px;
        transition: all .4s ease-in-out;
    }

.narrow {
    width: 800px;
    margin: 0 auto;
    min-height: 200px;
}



#ad_320x50 {
    position: fixed;
    bottom: 0;
    left: 0;
    height: 50px;
    width: 100%;
    z-index: 999999;
    display: none;
    background: #444444;
    background: rgba(68, 68, 68, 1.0);
}

/**************************************** Exhibitor Showcase Page *************************************/

.primary_content .booth-info {
    width: 260px;
    text-align: right;
    float: right;
    margin: 0;
    padding: 0;
    font-size: 13px;
}

.primary_content div.descriptionLogo {
    width: 200px;
    min-height: 75px;
    background-repeat: no-repeat;
    float: left;
    margin: 0 10px 4px 0;
    background-position: center;
    overflow: hidden;
    text-align: center;
    font-weight: bolder;
}

.primary_content .exhibitor {
    margin-bottom: 20px;
}

.primary_content h2.exhibitorLevel {
    margin-bottom: 15px;
}
/**************************************** schedule agenda page ****************************************/

.key_legend {
    width: 100%;
    padding: 30px 0 60px 0;
}

    .key_legend li {
        width: 20%;
        float: left;
    }

.key_legend_purple,
.key_legend_red,
.key_legend_gray,
.key_legend_green,
.key_legend_orange {
    width: 20%;
    height: 30px;
    float: left;
}

.key_legend_purple {
    background: #673bb8;
}

.key_legend_red {
    background: #e91f63;
}

.key_legend_gray {
    background: #607d8b;
}

.key_legend_green {
    background: #4cb050;
}

.key_legend_orange {
    background: #ff9900;
}

.key_legend_category {
    float: left;
    width: 70%;
    margin: 0 5%;
    font-size: 1.3em;
    font-style: italic;
}

.schedule_agenda {
    width: 100%;
    margin: 30px auto;
    background: #f9f9f9;
    color: #333;
    padding: 30px;
    box-shadow: 0 1px 1px #ccc;
}

.schedule_date {
    font-size: 3.9em;
    color: #faa61a;
}

.time_block {
    width: 100%;
    margin: 30px 0 0 0;
    padding: 30px 0 0 0;
    border-top: solid 1px #ccc;
    display: inline-block;
}

.schedule_time {
    float: left;
    color: #faa61a;
    font-size: 2.2em;
    min-width: 150px;
}

.schedule_events {
    float: left;
    margin: 0 0 0 30px;
    font-size: 1.7em;
    color: #333;
}

    .schedule_events li {
        width: 100%;
    }

.schedule_blue,
.schedule_purple,
.schedule_red,
.schedule_gray,
.schedule_green,
.schedule_orange {
    font-size: 1.4em;
}

.schedule_blue {
    color: #1ec2f3;
}

.schedule_purple {
    color: #673bb8;
}

.schedule_red {
    color: #e91f63;
}

.schedule_gray {
    color: #607d8b;
}

.schedule_green {
    color: #4cb050;
}

.schedule_orange {
    color: #ff9900;
}


/****************************************************************************************************************************************************************/


/************************************************************************* other screens ************************************************************************/


/****************************************************************************************************************************************************************/

@media screen and (max-width:1030px) {
    .social ul li a {
        font-size: 1.4em;
    }

    #banner_brand {
        display: none;
    }
}

@media screen and (max-width:950px) {
    .main_menu ul li {
        margin: 0 14px 0 0;
    }

        .main_menu ul li a {
            font-size: 1.1em;
        }

    .subpage .main_menu li:last-child {
        width: 80px;
        height: 40px;
        margin: 15px 0 0 0;
        background: #faa61a;
        line-height: normal;
    }

        .subpage .main_menu li:last-child a {
            color: #fff;
            line-height: 40px;
            width: 80px;
            height: 40px;
            text-align: center;
        }

    footer {
        max-width: 700px;
        margin: 0 auto;
    }

    .footer_block {
        float: left;
        margin: 0 2.6% 30px 0;
        padding: 0 30px 0 0;
        border-right: none;
        width: 46%;
        min-height: 140px;
    }

        .footer_block:nth-child(2),
        .footer_block:nth-child(4) {
            text-align: right;
            padding: 0 0 0 0;
        }

            .footer_block:nth-child(2) ul {
                float: right;
            }

    .logo_econtent {
        float: right;
    }
}

@media screen and (max-width:830px) {
    header {
        display: none;
    }

    .mobile_menu_btn {
        display: block;
    }

    .theme_content {
        width: 100%;
        margin: 0 auto;
        text-align: center;
        padding: 70px 30px 0 30px;
    }

        .theme_content .logo {
            width: 400px;
            height: 200px;
            background: url(/Images/2020/ESDConnect20_outlined.svg) no-repeat;
            background-size: 100% 200px;
        }

        .theme_content .tagline {
            font-size: 1.8em;
            margin: 5px 0 0 0;
        }

        .theme_content .date_location {
            font-size: 2.2em;
            padding: 10px 0;
            margin: 25px auto 30px auto;
        }

    h2 {
        font-size: 3.7em;
    }

    p {
        margin: 0.9em 0;
    }

    .subpage .banner_date_location {
        top: 0;
        text-align: left;
        padding: 0 0 0 10px;
    }

    .subpage .primary_content {
        background: none;
        padding: 120px 30px 0 30px;
    }

    .unorderedlist ul {
        font-size: 1.5em;
    }

    a[name] {
        padding-top: 100px;
        margin-top: -100px;
    }

    .subpage #banner_brand {
        padding: 5px;
        height: 60px;
        width: 100%;
        position: fixed;
        display: block;
        top: 50px;
        background: #EBEBEB;
        background: rgba(235, 235, 235, 1.0);
        opacity: 1.0;
        z-index: 9998;
    }

        .subpage #banner_brand div {
            background: url(/Images/2020/ESDConnect20_outlined.svg) no-repeat;
            background-size: 150px 50px;
            height: 50px;
            width: 150px;
            -webkit-transition: all .7s ease-in-out;
            -moz-transition: all .7s ease-in-out;
            -o-transition: all .7s ease-in-out;
            -ms-transition: all .7s ease-in-out;
            transition: all .7s ease-in-out;
        }

            .subpage #banner_brand div.scroll {
                -webkit-transition: all .3s ease-in-out;
                -moz-transition: all .3s ease-in-out;
                -o-transition: all .3s ease-in-out;
                -ms-transition: all .3s ease-in-out;
                transition: all .3s ease-in-out;
            }
}

@media screen and (max-width:630px) {
    p {
        font-size: 1.4em;
        margin: 0.7em 0;
    }

    h3 {
        font-size: 2.7em;
        margin: 0 0 0 0;
    }

    h2 {
        font-size: 3.0em;
    }

    .unorderedlist ul {
        font-size: 1.4em;
    }

    .theme_content .logo {
        width: 100%;
        margin: 0 auto;
        height: 200px;
        background: url(/Images/2020/ESDConnect20_outlined.svg) no-repeat;
        background-size: 100% 200px;
    }

    .subpage #banner_brand div {
        background: url(/Images/2020/ESDConnect20_outlined.svg) no-repeat;
        background-size: 150px 50px;
        height: 50px;
        width: 150px;
        -webkit-transition: all .7s ease-in-out;
        -moz-transition: all .7s ease-in-out;
        -o-transition: all .7s ease-in-out;
        -ms-transition: all .7s ease-in-out;
        transition: all .7s ease-in-out;
    }

        .subpage #banner_brand div.scroll {
            -webkit-transition: all .3s ease-in-out;
            -moz-transition: all .3s ease-in-out;
            -o-transition: all .3s ease-in-out;
            -ms-transition: all .3s ease-in-out;
            transition: all .3s ease-in-out;
        }

    .intro_img {
        display: none;
    }

    .footer_block {
        display: block;
        clear: both;
        margin: 15px auto 0 auto;
        padding: 15px 0 0 0;
        border-top: solid 1px #eee;
        width: 100%;
        min-height: inherit;
        text-align: center;
    }

        .footer_block:nth-child(2),
        .footer_block:nth-child(4) {
            text-align: center;
            padding: 15px 0 0 0;
        }

            .footer_block:nth-child(2) ul {
                float: none;
                margin: 0 auto;
                width: 165px;
            }

    .email_updates {
        padding: 15px 0 30px 0;
    }

    .logo_econtent {
        float: none;
        margin: 10px auto 15px auto;
    }

    .subpage .banner_date_location {
        font-size: 1.9em;
        padding: 0 0 0 10px;
    }

    .subpage .primary_content {
        padding: 130px 15px 0 15px;
        transition: all .4s ease-in-out;
    }

    .subpage .primary_content2 {
        padding: 130px 15px 0 15px;
        transition: all .4s ease-in-out;
    }
}

@media screen and (max-width:530px) {
    #ad_468x60 {
        display: none;
    }

    #div-gpt-ad-1500906899754-0 {
        display: none;
    }

    #ad_320x50 {
        display: block;
    }

    #div-gpt-ad-1500906899754-1 {
        display: block;
    }
    .intro_video{
    
        width: 90%;
    
    }
    .intro_video.left{
        margin: -14px 20px 12px;
    }
    
}

@media screen and (max-width:425px) {
    .primary_content .booth-info {
        width: 100px;
    }

    .primary_content h2.exhibitorLevel {
        margin-bottom: 7.5px;
    }

    .primary_content div.descriptionLogo {
        margin: 0 auto;
        float: none;
    }

    .theme_content .logo {
        width: 250px;
        height: 74px;
        background-size: 250px 74px;
    }

    .theme_content .tagline {
        font-size: 1.6em;
        margin: 5px 0 0 0;
    }

    .subpage .banner_date_location {
        font-size: 1.6em;
    }

    .subpage .banner_date_location {
        font-size: 1.6em;
        padding: 0 0 0 10px;
        background-size: 90px 50px;
    }

    .theme_content .register_btn a {
        color: #fff;
        font-size: 2.2em;
    }

    .theme_content .register_btn {
        width: 177px;
        height: 152px;
        
        margin: 2px 0 1px 4px;
    }
        
    }
    .theme_content .register_btn2 {
         width: 177px; 
        /* height: 22px; */
        margin: 15px auto auto 0px;
    }
}



/****************************************************************************************************/
/* navigation menu */
/****************************************************************************************************/

.show_menu {
	margin:0 0 0 0;
	-webkit-transition:all .5s ease-in-out;
    -moz-transition:all .5s ease-in-out;
    -o-transition:all .5s ease-in-out;
    -ms-transition:all .5s ease-in-out;
    transition:all .5s ease-in-out;
}

.main_menu {
	float:right;
    position:relative;
    left:-50%;
    text-align:left;
}

.main_menu ul {
    list-style:none;
    position:relative;
    left:50%;
}

.main_menu ul li {
	float:left;
	position:relative;
	margin:0 15px 0 0;
	line-height:70px;
}

.main_menu ul li a {
    float:left;    
    text-align:center;
    white-space:nowrap;
	color: #555;
	font-family: 'Montserrat', sans-serif;
	text-transform: uppercase;
	font-size: 1.3em;
	font-weight: 400;
	font-size:1.4em;
	font-weight:700;
	-webkit-transition:all .5s ease-in-out;
    -moz-transition:all .5s ease-in-out;
    -o-transition:all .5s ease-in-out;
    -ms-transition:all .5s ease-in-out;
    transition:all .5s ease-in-out;
}

.main_menu ul li a:hover {
	color:#faa61a;
	-webkit-transition:all .2s ease-in-out;
    -moz-transition:all .2s ease-in-out;
    -o-transition:all .2s ease-in-out;
    -ms-transition:all .2s ease-in-out;
    transition:all .2s ease-in-out;
}

.main_menu li:last-child {
	width:133px;
	height:40px;
	margin:15px 0 0 0;
	line-height:normal;	
}

.main_menu li:last-child a {
	
	line-height:38px;
	width:133px;
	height:40px;
	text-align:center;	
	border:solid 1px #fff;
}

.main_menu li:last-child a:hover {
	background:#faa61a;
	border:solid 1px #faa61a;
	color:#fff;
}

.logo_icon {
	max-width:170px;
	padding:12px 0 0 0;
	cursor:pointer;
}

.logo_icon img {
	width:100%;
	height:auto;
}

/****************************************************************************************************/
/* mobile navigation menu */
/****************************************************************************************************/

.mobile_header {
	background:rgba(68,68,68,1);
	height:50px;
	position:fixed;
	width:100%;
	float:left;
	z-index:99999;
	display:none;
}

.mobile_header ul li {
	float:left;
	text-align:center;
	font-size:1.7em;
	text-transform:uppercase;
}

.mobile_header ul li a {
	display:block;
	height:50px;
	line-height:50px;
	color:#fff;
	padding:0 10px;
	border-right:solid 1px #666;
}

.mobile_header .featured_link {	
	background:#faa61a;
}

.mobile_header .featured_link a {	
	padding:0 15px;
	font-family: 'Montserrat', sans-serif;
}

.mobile_menu, .mobile_menu_btn {
	display:none;
}

.mobile_menu_btn {
	position:fixed;
	z-index:99999;
	overflow:hidden;
	width:40px;
	height:40px;
	font-size:0;
	right:7px;
	top:5px;
	text-indent:-9999px;
	cursor:pointer;
	border:none;
	background:rgba(68,68,68,0.9);
}

.mobile_menu_btn:focus {
	outline: none;
}

.mobile_menu_btn span {
	display:block;
	position:absolute;
	top:18px;
	left:4px;
	right:4px;
	height:2px;
	background:#fff;
}

.mobile_menu_btn span:before,
.mobile_menu_btn span:after {
	position:absolute;
	display:block;
	left:0;
	width:100%;
	height:2px;
	background:#fff;
	content: "";
}

.mobile_menu_btn span:before {
  top: -10px;
}

.mobile_menu_btn span:after {
  bottom: -10px;
}

.mobile_open span {
  background: none;
}

.mobile_open span::before {
  top: 0;
  transform: rotate(45deg);
}

.mobile_open span::after {
  bottom: 0;
  transform: rotate(-45deg);
}

.show_mobile_menu {
	display:block;
}

.mobile_menu {
	width:100%;
    position:fixed;
    top:50px;
    height:100%;
    background:#333;
    opacity:0.9;
    filter:alpha(opacity=90);
    color:#fff;
    font-size:1.3em;
    text-transform:uppercase;
    padding:10px;
    z-index:9999;
    overflow:scroll;
	
}

.mobile_menu ul li a {
    float:left;  
	clear:left;  
	display:block;
	width:75%;
    text-align:left;
    white-space:nowrap;
	color:#fff;
	text-transform:uppercase;
	font-size:1.4em;
	font-weight:400;
	margin:5px 0;
	padding:5px 0 15px 0;
	border-bottom:solid 1px #eee;
	-webkit-transition:all .5s ease-in-out;
    -moz-transition:all .5s ease-in-out;
    -o-transition:all .5s ease-in-out;
    -ms-transition:all .5s ease-in-out;
    transition:all .5s ease-in-out;
}

.mobile_menu ul li a:hover {
	color:#9f2021;
	-webkit-transition:all .2s ease-in-out;
    -moz-transition:all .2s ease-in-out;
    -o-transition:all .2s ease-in-out;
    -ms-transition:all .2s ease-in-out;
    transition:all .2s ease-in-out;
}


@media screen and (max-width:870px) {
	.mobile_header, .mobile_menu_btn {
	display:block;
}
}
.container {
    max-width: 1600px;
    position: relative;
}
.subpage  .header-cta{
    display:none;
}
.header-cta {
width: 100%;
background: #0e5196;
color: #fff;
display: inline-block;
padding: 0.5rem 0;
font-weight: 900;
font-size: 0.9rem;
}

.header-cta a {
color: #fff;
/*text-decoration: underline;*/

}
.header-cta a:hover {
color: aquamarine;
}
.header-cta__description {
width: 50%;
float: left;
}

.header-cta__link {
width: 100%;
float: left;
text-align: center;
/* font-family: 'Abril Fatface', cursive;
font-size: 2.9em;*/

font-family: 'Roboto Condensed', serif;
font-size: 1.3em;
}

.key_legend {
    width: 100%;
    padding: 30px 0 60px 0;
}
.tex {
 
    color: #0066ac;  
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}
    .key_legend li {
        width: 14%;
        float: left;
    }

.key_legend_dblue {
    background: #086bbb;
}

.key_legend_yellow {
    background: #bae000;
}

.key_legend_yellow,
.key_legend_purple,
.key_legend_dblue,
.key_legend_red,
.key_legend_gray,
.key_legend_green,
.key_legend_orange,
.key_legend_mauve,
.key_legend_pdf {
    width: 19%;
    height: 30px;
    float: left;
}

.key_legend_purple {
    background: #673bb8;
}

.key_legend_red {
    background: #e91f63;
}

.key_legend_gray {
    background: #607d8b;
}

.key_legend_green {
    background: #4cb050;
}

.key_legend_yellow {
    color: #bae000;
}

.key_legend_orange {
    background: #ff9900;
}

.key_legend_mauve {
    width: 19%;
    background: #cc99ff;
    float: left;
}

.key_legend_pdf {
    width: 19%;
    background: #ffffff;
    float: right;
}

.key_legend_category {
    float: left;
    width: 70%;
    margin: 0 5%;
    font-size: 1.3em;
    font-style: italic;
}

.schedule_agenda {
    width: 100%;
    margin: 30px auto;
    background: #f9f9f9;
    color: #333;
    padding: 30px;
    box-shadow: 0 1px 1px #ccc;
}

.schedule_date {
    font-size: 42px;
    color: #ed1c24;
}

.time_block {
    width: 100%;
    margin: 30px 0 0 0;
    padding: 30px 0 0 0;
    border-top: solid 1px #ccc;
    display: inline-block;
}

.schedule_time {
    float: left;
    color: #ed1c24;
    font-size: 22px;
    min-width: 150px;
    width: 208px;
}

.schedule_events {
    float: left;
    margin: 0 0 0 30px;
    font-size: 20px;
    color: #333;
    width: 842px;
}

    .schedule_events li {
        width: 100%;
    }

        .schedule_events li div {
            max-height: 10000px;
            transition: max-height 1s ease-in-out, opacity 1s linear;
            opacity: 1;
        }

            .schedule_events li div.hide {
                overflow: hidden;
                max-height: 0;
                opacity: 0;
            }


div.description p {
    font-size: 15px;
    margin: 5px 0;
}

.schedule_events li div div.title {
    font-size: 18px;
    font-style: italic;
}

.schedule_yellow,
.schedule_blue,
.schedule_dblue,
.schedule_purple,
.schedule_red,
.schedule_gray,
.schedule_green,
.schedule_orange,
.schedule_mauve,
.schedule_grey {
    font-size: 1.4em;
}

.schedule_yellow,
.track_yellow {
    color: #bae000;
}

.schedule_blue,
.track_blue {
    color: #1ec2f3;
}

.schedule_dblue,
.track_dblue {
    color: #086bbb;
}

.schedule_purple,
.track_purple {
    color: #673bb8;
}

.schedule_red,
.track_red {
    color: #e91f63;
}

.schedule_dred,
.track_dred {
    color: #b00000;
}

.schedule_gray,
.track_gray {
    color: #607d8b;
}

.schedule_green,
.track_green {
    color: #4cb050;
}

.schedule_orange,
.track_orange {
    color: #ff9900;
}

.schedule_mauve,
.track_mauve {
    color: #cc99ff;
}

@media screen and (max-width:830px) {
    .key_legend {
        display: inline-block;
        padding: 30px 0 0 0;
    }

        .key_legend li {
            width: 100%;
            float: left;
            clear: both;
            min-height: 40px;
        }

    .schedule_time, .schedule_events {
        width: auto;
    }

    .schedule_events {
        margin: 0 0 0 15px;
        font-size: 15px;
    }

    .schedule_time {
        font-size: 18px;
        transition: font-size .5s;
    }
}

@media screen and (max-width:630px) {
    .schedule_agenda {
        padding: 15px;
    }

    .schedule_date {
        font-size: 32px;
    }
}


.gradient {
    /* hide for stacey-mjd background-color: rgba(62, 126, 138, 0.3);*/
    width: 100%;
    height: 100%;
    padding: 27px 0 25px 0;
}

.theme video {
    width: 100%;
    height: auto;
    position: absolute;
    z-index: -99;
    top: 0;
    left: 0;
}

.theme_no_video {
    display: none;
}

@media screen and (max-width:1024px) {
.gradient{
    padding:20px 0 25px 0;
}
.theme_content{
    padding:22px 30px 0 30px;
}
}

@media screen and (max-width:830px) {
.theme_video {
    display: none;
}
    .theme_no_video {
        display: block;
        background: url(/Images/2020/ESD-Connect-20_Web-Image.jpg) top left no-repeat;
        background-size: cover;
        /*min-height: 670px;*/
        position: absolute;
        z-index: -99;
        top: 0;
        left: 0;
        height: 100%;
        width: 100%;
    }
    .theme_content{
        padding:35px 30px 0 30px;
    }
}
