/*
        ___          ___          ___          ___      ___                   ___          ___     
       /\  \        /\  \        /\  \        /\  \    /\  \        ___      /\__\        /\  \    
      /::\  \      /::\  \      /::\  \      /::\  \   \:\  \      /\  \    /:/  /       /::\  \   
     /:/\:\  \    /:/\:\  \    /:/\:\  \    /:/\:\  \   \:\  \     \:\  \  /:/  /       /:/\:\  \  
    /:/  \:\  \  /::\~\:\  \  /::\~\:\  \  /::\~\:\  \  /::\  \    /::\__\/:/__/  ___  /::\~\:\  \ 
   /:/__/ \:\__\/:/\:\ \:\__\/:/\:\ \:\__\/:/\:\ \:\__\/:/\:\__\__/:/\/__/|:|  | /\__\/:/\:\ \:\__\
   \:\  \  \/__/\/_|::\/:/  /\:\~\:\ \/__/\/__\:\/:/  /:/  \/__/\/:/  /   |:|  |/:/  /\:\~\:\ \/__/
    \:\  \         |:|::/  /  \:\ \:\__\       \::/  /:/  /    \::/__/    |:|__/:/  /  \:\ \:\__\  
     \:\  \        |:|\/__/    \:\ \/__/       /:/  /\/__/      \:\__\     \::::/__/    \:\ \/__/  
      \:\__\       |:|  |       \:\__\        /:/  /             \/__/      ~~~~         \:\__\    
       \___/        \|__|    ___ \/__/    ___ \/__/   ___  ___                            \/__/    
       /\__\       ___      /\__\        /\  \       /\__\/\  \                                    
      /:/  /      /\  \    /::|  |      /::\  \     /:/  /::\  \                                   
     /:/__/       \:\  \  /:|:|  |     /:/\:\  \   /:/  /:/\:\  \                                  
    /::\__\____   /::\__\/:/|:|  |__  /:/  \:\__\ /:/  /::\~\:\  \                                 
   /:/\:::::\__\_/:/\/__/:/ |:| /\__\/:/__/ \:|__/:/__/:/\:\ \:\__\                                
   \/_|:|~~|~ /\/:/  /  \/__|:|/:/  /\:\  \ /:/  |:\  \:\~\:\ \/__/                                
      |:|  |  \::/__/       |:/:/  /  \:\  /:/  / \:\  \:\ \:\__\                                  
      |:|  |   \:\__\       |::/  /    \:\/:/  /   \:\  \:\ \/__/                                  
      |:|  |    \/__/       /:/  /      \::/__/     \:\__\:\__\                                    
       \|__|                \/__/        ~~          \/__/\/__/                                    
*/


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


/* recommended CSS reset, based on work by Eric Meyer - https://2c9fa7dc-2cb0-4d40-a440-a1d6175393da.p.bardy.io */


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

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;
}

.mobile_hidden {
    display: none;
}


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


/* css3 animations */


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

@keyframes bounce {
    0%,
    20%,
    60%,
    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
    40% {
        -webkit-transform: translateY(-10px);
        transform: translateY(-10px);
    }
    80% {
        -webkit-transform: translateY(-5px);
        transform: translateY(-5px);
    }
}


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


/* structure */


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

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

body {
    font-size: 62.5%;
    font-family: 'Raleway', sans-serif;
}


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


/* fonts text typography */


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

h2 {
    font-size: 4.1em;
    color: #870c0d;
}

h3 {
    text-transform: capitalize;
    font-size: 3.1em;
    color: #870c0d;
}

h4 {
    text-transform: uppercase;
    font-style: italic;
    font-size: 1.2em;
}

h5 {
    font-size: 2.5em;
    color: #870c0d;
    text-align: center;
    margin: 0 0 30px 0;
}

.sponsors h4 {
    text-align: center;
}

p {
    font-weight: 400;
    font-size: 1.5em;
    line-height: 1.7;
    margin: 1em 0;
}

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

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


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


/* header */


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

header {
    width: 100%;
    height: 70px;
    background: rgba(0, 0, 0, 0.7);
    position: fixed;
    z-index: 9999;
    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;
}
header2 {
    width: 100%;
    height: 140px;
    background: rgba(0, 0, 0, 0.7);
    position: fixed;
    z-index: 9999;
    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;
}


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


/* homepage < theme */


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

.theme {
    width: 100%;
    /*max-height: 670px;*/
    overflow: hidden;
    position: relative;
}




.gradient {
    background-color: rgba(62, 126, 138, 0.5);
    width: 100%;
    height: 100%;
   padding: 27px 0 20px 0;
}

.theme video {
    width: 100%;
    height: auto;
    position: absolute;
    z-index: -99;
    top: 0;
    left: 0;
}

.theme_no_video {
    display: none;
}

.theme_content {
    max-width: 830px;
    width: 100%;
    margin: 0 auto;
    text-align: center;
    padding: 80px 0 50px 0;
}

.theme_content .logo {
    max-width: 600px;
    margin: 0 auto;
    height: auto;
    width: 100%;
}

.theme_content .tagline {
    color: #fff;
    font-size: 2.3em;
    font-style: italic;
    text-transform: uppercase;
    font-weight: 700;
    margin: 15px 0 0 0;
}

.theme_content .date_location {
    color: #fff;
    font-size: 3.3em; 
   /* font-weight:700;  */
    padding: 15px 0;
    border-top: solid 1px #fff;
    border-bottom: solid 1px #fff;
    text-transform: uppercase;
    margin: 0px 0px 40px;
    /*margin: 30px 0;*/
}

.date_location span {
    font-size: 0.8em;
}

.theme_content .register_btn {
    width: 240px;
    height: 70px;
    margin: 0 auto;
}

.theme_content .register_btn a {
    color: #fff;
    font-size: 1.7em;
    text-transform: uppercase;
    font-weight: 700;
    line-height: 70px;
    display: block;
    width: 240px;
    height: 70px;
    border: solid 1px #fff;
    background: rgba(0, 0, 0, 0.4);
    -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;
}

.theme_content .register_btn a:hover {
    background: #9f2021;
    border: solid 1px #9f2021;
    color: #fff;
    -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;
}


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


/* homepage */


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

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


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


/* homepage < slider */


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

.division_slider {
    clear: both;
    margin: 0 auto;
}

.division_wrap {
    height: 130px;
    display: table;
    margin: 0;
}

.division_wrap div {
    width: 100%;
    height: 100%;
    display: table-cell;
    vertical-align: middle;
    padding: 0 30px;
}

.division_wrap img {
    display: block;
    max-height: 130px;
    width: auto;
    margin: 0 auto;
}


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


/* homepage < slider overrides */


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

.bx-wrapper {
    -moz-box-shadow: none !important;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
    border: none !important;
    left: 0 !important;
    background: none !important;
    border-bottom: solid 1px #eee;
    margin: 0 auto;
    padding: 0 0 30px 0;
}

.bx-wrapper .bx-pager,
.bx-wrapper .bx-controls-auto {
    bottom: 15px;
}

.bx-wrapper .bx-pager.bx-default-pager a {
    background: #eee;
    margin: 5px;
}

.bx-wrapper .bx-pager.bx-default-pager a:hover,
.bx-wrapper .bx-pager.bx-default-pager a.active {
    background: #b7b7b7;
}


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


/* homepage < about intro */


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

.intro_media {
    width: 45%;
    position: relative;
}

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

.intro_media.right {
    float: right;
    margin: 0 0 53px 60px;
}

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

.intro_video {
    position: relative;
    padding-bottom: 56.25%;
    padding-top: 25px;
    height: 0;
    overflow: hidden;
    margin: 15px 0 7px 0;
}

.intro_media:after {
    content: "";
    width: 100%;
    height: 38px;
    background: url(/images/2019/video_drop_shadow.png) no-repeat;
    background-size: contain;
    position: absolute;
}

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

.intro_img {
    width: 45%;
}
.intro_img.left {
    float: left;
    margin: 0 60px 30px 0;
}
.intro_img.right {
    float: right;
    margin: 18px 0 21px 4px;
}
.intro_img img {
    width: 100%;
    height: auto;
}
/****************************************************************************************************/


/* homepage < slider < speakers */


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

.speakers {
    background: url(/images/2019/bg_alt.jpg) no-repeat;
    background-size: cover;
}

.speakers h5 {
    margin: 0 auto 30px auto;
    padding: 30px 0 0 0;
    color: #fff;
}

.speaker_headshots {
    text-align: center;
}

.speaker_headshots img {
    border-radius: 50%;
    /*
	-webkit-filter: grayscale(1);
	-webkit-filter: grayscale(100%);
	filter: gray;
	filter: grayscale(100%);
	*/
}

.spk_name {
    font-size: 1.7em;
    color: #fff;
    font-weight: 400;
}

.spk_comp {
    color: #f1f1f1;
    font-style: italic;
    font-size: 0.7em;
    font-weight: 700;
}

.spk_title {
    font-size: 1.1em;
    color: #f1f1f1;
}


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


/* homepage < highlights */


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

.highlight_wrapper {
    width: 100%;
    background: url(/images/2019/bg_poly.jpg) no-repeat;
    background-size: cover;
    float: left;
}

.highlights {
    width: 100%;
    max-width: 1000px;
    margin: 30px auto 0 auto;
    padding: 0 30px;
}

.highlights div,
.who_attend div {
    width: 100%;
    padding: 37px;
}

.highlights div.icon {
    float: left;
    width: 130px;
    text-align: center;
    margin: 0 60px 60px 0;
    padding: 0;
}

.highlights div.icon i.fa {
    font-size: 5em;
    color: #870c0d;
    width: 130px;
    height: 130px;
    line-height: 130px;
    border-radius: 150px;
    border: solid 1px #870c0d;
}


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


/* homepage < who attend */


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

.who_attend {
    background: url(/images/2019/bg_alt.jpg) no-repeat;
    background-size: cover;
    width: 100%;
    padding: 30px 0;
    color: #fff;
    float: left;
}

.who_attend h3 {
    color: #fff;
}

.who_attend div {
    width: 100%;
    max-width: 1000px;
    margin: 30px auto 0 auto;
    padding: 0 30px;
}

.who_attend ul {
    float: left;
    padding: 0 0 30px 0;
}

.who_attend li {
    font-size: 1.5em;
    float: left;
    width: 45%;
    padding: 15px 15px 0 15px;
    margin: 0 0 0 5%;
}

.who_attend a:visited {
    text-decoration: none;
    cursor: pointer;
    color: #fff;
}

.who_attend a {
    text-decoration: none;
    cursor: pointer;
    color: #fff;
}

.who_attend li:before {
    font-family: 'FontAwesome';
    content: '\f00c';
    margin: 0 5px 0 -30px;
    padding: 0 10px 0 0;
    color: #fff;
}


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


/* homepage < tracks */


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

.tracks {
    width: 100%;
    clear: both;
    float: left;
}

.tracks_wrap {
    text-align: center;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex: 1 0 auto;
    flex: 1 0 auto;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.tracks h3 {
    color: #870c0d;
    width: 100%;
    margin: 0 auto;
    padding: 60px 0;
    text-align: center;
    background: url(/images/2019/bg_poly.jpg) no-repeat;
    background-size: cover;
}

.track {
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    position: relative;
    z-index: 99;
}

a.track_link {
    background-color: rgba(255, 255, 255, 0.9);
    cursor: pointer;
    position: absolute;
    z-index: -99;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    -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;
}

.track:hover a.track_link {
    top: 45px;
    bottom: 45px;
    left: 45px;
    right: 45px;
    -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;
}

.track_info {
    padding: 75px;
}

.track img {
    max-width: 75%;
    height: auto;
    max-height: 120px;
}

.track .img2 {
    max-width: 75%;
    height: auto;
    max-height: 160px;
}

.track .img3 {
    max-width: 100%;
    height: 120px;
    max-height: 140px;
}
.track .img_bst {
    max-width: 100%;
    height: 118px;

}
.track p {
    margin: 40px 0 0 0;
}
.track p.marginfixEXPO{
    margin: 18px 0 0 0;
}
.btn {
    font-size: 1.5em;
    font-weight: 700;
    line-height: 50px;
    height: 50px;
    text-align: center;
    width: 200px;
    cursor: pointer;
    position: relative;
    margin: 30px auto 0 auto;
    text-indent: -50px;
    -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;
    border: solid 1px #9f2021;
    color: #9f2021;
}

.btn span {
    display: inline-block;
    width: 50px;
    height: 48px;
    line-height: 48px;
    background: #870c0d;
    position: absolute;
    color: #fff;
    right: 0;
    text-indent: 0;
    -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;
}

.btn span .fa {
    line-height: 50px;
}

.track:hover .btn i {
    animation: bounce 0.7s;
}

.track:hover .btn {
    background: #9f2021;
    color: #fff;
    -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;
}

.track:hover .btn span {
    background: #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;
}



.track_CRM {
    background: url(/images/2019/bg_track_CRM.jpg) no-repeat center center;
    background-size: cover;
}

.track_STK {
    background: url(/images/2019/bg_track_STK.jpg) no-repeat center center;
    background-size: cover;
}

.track_SCS {
    background: url(/images/2019/bg_track_SCS.jpg) no-repeat center center;
    background-size: cover;
}

.track_EXPO {
    background: url(/images/2019/bg_track_EXPO.jpg) no-repeat center center;
    background-size: cover;
}


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


/* homepage < testimonials */


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

.testimonials {
    background: url(/images/2019/bg_alt.jpg) no-repeat;
    background-size: cover;
    width: 100%;
    padding: 30px 0 0 0;
    color: #fff;
    float: left;
}

.testimonial {
    width: 100%;
    max-width: 1000px;
    margin: 30px auto 0 auto;
    padding: 0 30px;
    clear: both;
}

.testimonial img {
    float: left;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: solid 3px #fff;
    margin: 0 30px 60px 0;
}

.testimonial_name {
    font-size: 1.7em;
    color: #fff;
    font-weight: 400;
}


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


/* homepage < sponsors */


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

.sponsor_wrapper {
    margin: 60px 0;
    float: left;
    clear: both;
    width: 100%;
}

.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;
    /*background:#f1f1f1;*/
}


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


/* subpage */


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

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

.subpage .main_menu li:first-child {
    width: 169px;
    height: 120px;
    margin: 1px 12px 0 0;
    background: url(/images/2019/DX_logo_outlined_KO.svg) no-repeat;
    background-size: 216px 66px;
    line-height: normal;
}

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

.subpage .banner_date_location {
    top: 70px;
    position: fixed;
    background: url(/images/2019/bg_poly.jpg) center center;
    opacity: 1.0;
    width: 100%;
    height: 50px;
    line-height: 50px;
    text-align: center;
    font-size: 2em;
    color: #444;
    -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;
    z-index: 99;
}

.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;
}

.subpage .secondary_content {
    background: none;
}

.unorderedlist ul {
    margin: 0 0 10px 25px;
    font-weight: 400;
    font-size: 1.5em;
    line-height: 1.7;
    list-style-type: disc;
}

.unorderedlist ul li ul {
    margin: 0 0 10px 25px;
    font-weight: 400;
    font-size: 1.5em;
    line-height: 1.7;
    list-style-type: disc;
}

.unorderedlist2 ul {
    margin: 0 0 10px 25px;
    font-weight: 400;
    font-size: 1.5em;
    line-height: 1.7;
    margin: 1em 0;
    list-style-type: none;
}

.unorderedlist2 ul li ul {
    margin: 0 0 10px 25px;
    font-weight: 400;
    font-size: 1.5em;
    line-height: 1.7;
    margin: 1em 0;
    list-style-type: none;
    ;
}



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


/* subpage overrides */


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

.sessioncanceled {
    opacity:.7;
    cursor:none;
    
}
.sessioncanceled h3{
    color:#777777;
}
.sessioncanceled .session-title{
    color:#777777;    
    cursor:none;  
}
.sessioncanceled span{color:#777777;}



.subpage_conference_info {
    background: url(/images/2019/bg_poly.jpg) center center;
    background-size: cover;
    width: 100%;
    margin: 70px auto 0 auto;
    display: inline-block;
    text-align: center;
    border-bottom: solid 1px #ccc;
    padding: 15px;
}

.subpage_conference_info .theme_content {
    max-width: 400px;
    padding: 100px 0 30px 0;
}

.subpage_conference_info .date_location {
    font-size: 2em;
    color: #444;
}

.sub_page .primary_content {
    max-width: 1200px;
    width: 100%;
    padding: 30px;
}

.sub_page .primary_content {
    text-align: center;
}

.sub_page_agenda {
    max-width: 1600px !important;
    width: 100% !important;
}


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


/* Co-located events    */


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

.colocated {
    margin: 90px 0px 0px;
    float: left;
    clear: both;
    width: 100%;
}

.colocated ul {
    text-align: center
}

.colocated ul li {
    display: inline-block;
    margin: 10px 40px 10px 20px;
}

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


.colocated ul li:first-child {
    min-width: 140px;
    min-height: 60px;
    background: #ffffff;
}

.colocated h5 {
    font-size: 2.5em;
    color: #870c0d;
    text-align: center;
    margin-bottom: auto;
}

ul li span {
    font-size: 1em;
}
/****************************************************************************************************/


/* other screens */


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

@media screen and (max-width:1367px) {
    .theme_content {
        padding: 80px 0 30px 0;
    }
    /*.theme_content .date_location {
        font-size: 2.3em;
    }*/
        .theme_content .logo {
            max-width: 380px;
        }

        .track .img2 {
            max-width: 100%;
            height: auto;
            max-height: 148px;
            margin: -18px 0 -37px;
        }

        
.track p.marginfixEXPO{
    margin: 0px 0 0 0;
}
}




@media screen and (max-width:1070px) {
   
    .theme_content .tagline {
        font-size: 1.8em;
        margin: 5px 0 0 0;
    }
    .theme_content .date_location {
        font-size: 3.3em;
        padding: 10px 0;
        margin: 5px auto 30px auto;
    }
    .subpage_conference_info .date_location {
        font-size: 1.8em;
        margin: 0 0 0 0;
    }
}

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

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

@media screen and (max-width:950px) {
    .main_menu ul li {
        margin: 0 14px 0 0;
    }
    .main_menu ul li a {
        font-size: 1.3em;
    }
    .subpage .main_menu li:last-child {
        width: 80px;
        height: 40px;
        margin: 15px 0 0 0;
        background: #9f2021;
        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;
    }
    .sub_logo {
        float: right;
    }
}

@media screen and (max-width:920px) {
    .main_menu ul li {
        margin: 0 10px 0 0;
    }
    .main_menu ul li a {
        font-size: 1.2em;
    }
}

@media screen and (max-width:870px) {
    header,
    .list_grid_toggle {
        display: none;
    }
    .mobile_header,
    .mobile_menu_btn {
        display: block;
    }
    .theme_content {
        padding: 20px 0 0px 0;
    }
    .subpage_conference_info {
        margin: 50px auto 0px auto;
    }
    .theme_content .date_location {
    margin:0px auto 30px auto;}
}

@media screen and (max-width:830px) {
    .theme_content .date_location {
        font-size: 2.8em;
    }
   
    h2 {
        font-size: 3.7em;
    }
    p {
        font-size: 1.5em;
        margin: 0.9em 0;
    }
    .highlights {
        float: left;
    }
    .highlights div {
        width: 100%;
        margin: 0 0 30px 0;
        display: block;
        float: left;
        text-align: left;
    }
    .highlights div:last-child {
        margin: 0 0 30px 0;
    }
    .track:hover a.track_link {
        top: 15px;
        bottom: 15px;
        left: 15px;
        right: 15px;
    }
    .track_info {
        padding: 45px;
    }
    .subpage .banner_date_location {
        top: 50px;
    }
    .gradient {
        padding:10px ;
    }

   
    
}

@media screen and (max-width:760px) {
    .theme_video {
        display: none;
    }
    .theme {
        max-height: none;
    }
    .theme_content {
        padding: 90px 0 60px 0;
    }
    .theme_no_video {
        display: block;
        background: url(/images/2019/theme_no_video.jpg) top left no-repeat;
        background-size: cover;
        min-height: 670px;
        position: absolute;
        z-index: -99;
        top: 0;
        left: 0;
        height: 100%;
        width: 100%;
    }
    .intro_img {
        display:none;
    }
    .sub_page .primary_content {
        padding: 100px 10px 60px 10px;
    }
    .session_time {
        font-size: 1.3em;
        padding: 10px;
    }
    .session {
        margin: 0 0 0 70px;
    }
    .sponsor_wrapper {
        margin: 0px 0;
}

@media screen and (max-width:630px) {
    .theme_content .logo {
        width: 82%;
    }
    
    .mobile_hidden {
        display: inline;
    }


    .intro_media.right{

        float:none;
        margin: 0 0 0 0 ;
        
    }
    .intro_media {
        float: none;
        margin: 0 auto 15px auto;
        width: 95%;
    }
    h3 {
        font-size: 2.7em;
        margin: 0 0 0 0;
    }
    .highlight_wrapper {
        background: url(/images/2019/bg_poly_mobile.jpg) no-repeat;
        background-size: cover;
    }
    .highlights div {
        text-align: center;
    }
    .highlights div.icon {
        float: left;
        width: 100%;
        margin: 0 0 30px 0;
    }
    .who_attend li {
        width: 95%;
    }
    .track {
        -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    }
    .testimonial {
        text-align: center;
    }
    .testimonial img {
        float: none;
        clear: both;
        display: inline-block;
        margin: 0 auto;
    }
    .footer_block {
        float: left;
        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: 128px;
    }
    .email_updates {
        padding: 15px 0 30px 0;
    }
    .sub_logo {
        float: none;
        margin: 10px auto 15px auto;
    }

    .division_wrap {
        
        
        margin: 36px;
    }
    .division_wrap img{
        margin: 0px 20px 45px;
    }
    /*.intro_media {
        display:none;
    }*/
    .primary_content{
    padding: 130px 0px 0 15px;
    transition: all .4s ease-in-out;
    }
}

@media screen and (max-width:400px) {

    .theme_content {
        padding: 60px 0 60px 0;}

    .theme_content .tagline {
        font-size: 1.6em;
        margin: 5px 0 0 0;
    }
    .subpage .banner_date_location {
        font-size: 1.1em;
    }
    .theme_content .date_location{
font-size: 1.3em;
    }
    .primary_content{
        padding: 40px 0px 0 15px;
        transition: all .4s ease-in-out;
        }
}