/* Minification failed. Returning unminified contents.
(410,1): run-time error CSS1019: Unexpected token, found '}'
 */
/*-------------------------------------------*\
** Imports
    - Colors
    - Typography
    - Mixins
    - Buttons
    - Navigation
    - Header
    - Footer
    - Forms    
    - Carousel    
** SASS Variables
** Global
\*-------------------------------------------*/
/**
* colors.scss
* partial to store color variables and color maps
*/
/**
 * typography.scss
 *
 * partial to store typography including imports of fonts as well as
 * setting up variables for font faces
 */
@import url("https://fonts.googleapis.com/css?family=Raleway&display=swap");
@import url("https://fonts.googleapis.com/css?family=Roboto+Condensed&display=swap");
h6 {
  font-size: 0.5rem;
  margin: 1rem 0;
  text-transform: capitalize;
  color: #0e5196;
  font-weight: 900;
}

h5 {
  font-size: 1rem;
  margin: 1rem 0;
  text-transform: capitalize;
  color: #0e5196;
  font-weight: 900;
}

h4 {
  font-size: 1.5rem;
  margin: 1rem 0;
  text-transform: capitalize;
  color: #0e5196;
  font-weight: 900;
}

h3 {
  font-size: 2rem;
  margin: 1rem 0;
  text-transform: capitalize;
  color: #0e5196;
  font-weight: 900;
}

h2 {
  font-size: 2.5rem;
  margin: 1rem 0;
  text-transform: capitalize;
  color: #0e5196;
  font-weight: 900;
}

h1 {
  font-size: 3rem;
  margin: 1rem 0;
  text-transform: capitalize;
  color: #0e5196;
  font-weight: 900;
}

.bold {
  font-weight: 900;
}
.table td {
  border-top: unset;
}
.table td, .table th {
  padding: unset;
}

/**
* mixins.scss
* partial to store mixins for commonly used styles such as transitions,
* opacity, borders, etc.
*/
/**
* buttons.scss
* partial to define all buttons states
*/
.btn {
  padding: 0.5rem;
  text-align: center;
  text-decoration: none;
  font-family: "Raleway", sans-serif;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 0;
  border-width: 0.1rem;
  border-radius: 2rem;
  display: block;
  width: 100%;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.btn:hover {
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.btn--solid.btn--white {
  background-color: #fff;
  border-color: #fff;
  color: choose-contrast-color(#fff);
}

.btn--solid.btn--white:hover {
  background: none;
  color: #fff;
}

.btn--solid.btn--black {
  background-color: #000;
  border-color: #000;
  color: choose-contrast-color(#000);
}

.btn--solid.btn--black:hover {
  background: none;
  color: #000;
}

.btn--solid.btn--gray {
  background-color: #666;
  border-color: #666;
  color: choose-contrast-color(#666);
}

.btn--solid.btn--gray:hover {
  background: none;
  color: #666;
}

.btn--solid.btn--gray-light {
  background-color: #efefef;
  border-color: #efefef;
  color: choose-contrast-color(#efefef);
}

.btn--solid.btn--gray-light:hover {
  background: none;
  color: #efefef;
}

.btn--solid.btn--blue {
  background-color: #0e5196;
  border-color: #0e5196;
  color: choose-contrast-color(#0e5196);
}

.btn--solid.btn--blue:hover {
  background: none;
  color: #0e5196;
}

.btn--solid.btn--blue-light {
  background-color: #7da7d9;
  border-color: #7da7d9;
  color: choose-contrast-color(#7da7d9);
}

.btn--solid.btn--blue-light:hover {
  background: none;
  color: #7da7d9;
}

.btn--solid.btn--purple {
  /*background-color: #8560a8;*/
  
  border-color: #8560a8;
  color: choose-contrast-color(#8560a8);
}

.btn--solid.btn--purple:hover {
  background: none;
  color: #fff;
  background-color: #8560a8;
}

.btn--solid.btn--fuschia {
  background-color: #8f008f;
  border-color: #8f008f;
  color: choose-contrast-color(#8f008f);
}

.btn--solid.btn--fuschia:hover {
  background: none;
  color: #8f008f;
}

.btn--solid.btn--pink {
  background-color: #ff00ff;
  border-color: #ff00ff;
  color: choose-contrast-color(#ff00ff);
}

.btn--solid.btn--pink:hover {
  
  background: none;
  color: #ff00ff;
}

.btn--outline.btn--white {
  background-color: transparent;
  border-color: #fff;
  color: #fff;
}

.btn--outline.btn--white:hover {
  background: #fff;
  color: #fff;
}

.btn--outline.btn--black {
  background-color: transparent;
  border-color: #000;
  color: #000;
}

.btn--outline.btn--black:hover {
  background: #000;
  color: #fff;
}

.btn--outline.btn--gray {
  background-color: transparent;
  border-color: #666;
  color: #666;
}

.btn--outline.btn--gray:hover {
  background: #666;
  color: #fff;
}

.btn--outline.btn--gray-light {
  background-color: transparent;
  border-color: #efefef;
  color: #efefef;
}

.btn--outline.btn--gray-light:hover {
  background: #efefef;
  color: #fff;
}

.btn--outline.btn--blue {
  
  background-color: transparent; 
  border-color: #0e5196;
  /*color: #0e5196; took out mjd 
  background-color: rgb(62, 126, 138, 0.3);*/
}

.btn--outline.btn--blue:hover {
  background: #0e5196;
  color: #fff;
}

.btn--outline.btn--blue-light {
  
  background-color: transparent;
  border-color: #7da7d9;
  /*color: #7da7d9; took out mjd 
  background-color: rgb(62, 126, 138, 0.3);*/
  
}

.btn--outline.btn--blue-light:hover {
  background: #7da7d9;
  color: #fff;
}

.btn--outline.btn--purple {
  
  background-color: transparent;
  border-color: #8560a8;
  /* mjd color: #8560a8;
  background-color: rgb(62, 126, 138, 0.3);*/
  
}

.btn--outline.btn--purple:hover {
  background: #8560a8;
  color: #fff;
}

.btn--outline.btn--fuschia {
  
  background-color: transparent;
  border-color: #8f008f;
  /* took out mjd color: #8f008f;
  background-color: rgb(62, 126, 138, 0.3); */
  
}

.btn--outline.btn--fuschia:hover {
  background: #8f008f;
  color: #fff;
}

.btn--outline.btn--pink {
   background-color: transparent; 
  
   
  
  border-color: #ff00ff;
  /*color: #ff00ff; took out mjd*/
   /*background-color: rgb(62, 126, 138, 0.3);*/
}
.btn--outline.btn--maroon {
  
 border-color: #9f2021;
 
}

.btn--outline.btn--maroon:hover {

  background: #9f2021;
  color: #fff;
}


.btn--outlinee.btn--pink.a 
{
  color: #0e5196;
}  

.btn--outline.btn--pink:hover {

  background: #ff00ff;
  color: #fff;
}

.btn--outline.btn--red {
  background-color: transparent;
  border-color: #B11116;
  
}

.btn--outline.btn--red:hover {

  background: #B11116;
  color: #fff;
}
/*-------------------------------------------*\
** Overrides
\*-------------------------------------------*/
.btn--outline.btn--white:hover {
  background: rgba(255, 0, 255, 0.5);
  border-color: rgba(255, 0, 255, 0.2);
}

/**
 * navigation.scss
 *
 */
@-webkit-keyframes scroll {
  from {
    top: -110px;
  }
  to {
    top: 0;
  }
}
@keyframes scroll {
  from {
    top: -110px;
  }
  to {
    top: 0;
  }
}

.header {
  position: relative;
  z-index: 999;
  height: 110px;
}

.header a {
 
  color: #0e5196;
 
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  /*font-size: large;*/
  font-family: "Raleway", sans-serif;
} 

.header a:hover {
  color: #8f008f;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
}

.header .duplicate {
  display: block;
}

.header .header-inner {
  height: 110px;
  background: #fff;
  width: 100%;
}

.header .header-inner.scrolled {
  position: fixed;
  -webkit-animation: scroll 1s forwards;
          animation: scroll 1s forwards;
}

.header .header-inner.scrolled .logo {
  display: block;
}

.header .header-inner.scrolled .navigation-main {
  display: none;
}

.header .header-inner.scrolled .duplicate {
  display: block;
}

.header .container {
  /* change back if any weird things happen, changed 8/19/2020  mjd
  max-width: 1600px;
  */
  position: relative;
}

.subpage .header .header-inner.scrolled {
  -webkit-animation: none;
          animation: none;
  top: 0;
}

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

.header-cta__description {
  width: 50%;
  float: left;
  font-family: "Raleway", sans-serif;
}

.header-cta__link {
  width: 50%;
  float: left;
  text-align: right;
  font-family: "Raleway", sans-serif;
}

.header-navigation {
  width: 100%;
}

.header-navigation .logo {
  max-width: 300px;
  display: inline-block;
}

.header-navigation .logo img {
  width: 75%;
  height: auto;
  margin-top: 4%;
}

.navigation-main {
  float: right;
  margin: 15px 60px 0 0;
  display: none;
}

.navigation-main ul {
  list-style: none;
  font-size: initial;
}

.navigation-main ul li {
  display: inline-block;
  font-weight: 900;
  margin: 0 0 0 1rem;
}

.navigation-dd__menu {
  display: none;
  position: absolute;
  
  
  right: 0;
  padding: 0 1rem;
  background: #fff;
}

.navigation-dd__menu ul {
  list-style: none;
      font-size: initial;
}

.navigation-dd__menu ul li {
  margin: .5rem 0 0 0;
  padding: .5rem 0 0 0;

  border-top: solid 1px #f1f1f1;
}

.navigation-dd__menu.opened {
  display: block;
}

.navigation-dd__btn {
  width: 50px;
  height: 50px;
  position: absolute;
  top: 3px;
  right: 10px;
  z-index: 99999;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
  -webkit-transition: .5s ease-in-out;
  transition: .5s ease-in-out;
}

.navigation-dd__btn span {
  display: block;
  position: absolute;
  height: 2px;
  width: 34px;
  background: #333;
  border-radius: 1px;
  opacity: 1;
  left: 8px;
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
  -webkit-transition: .25s ease-in-out;
  transition: .25s ease-in-out;
}

.navigation-dd__btn span:nth-child(1) {
  top: 12px;
}

.navigation-dd__btn span:nth-child(2),
.navigation-dd__btn span:nth-child(3) {
  top: 23px;
}

.navigation-dd__btn span:nth-child(4) {
  top: 34px;
}

.navigation-dd__btn.open span:nth-child(1) {
  top: 9px;
  width: 0%;
  left: 50%;
}

.navigation-dd__btn.open span:nth-child(2) {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.navigation-dd__btn.open span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.navigation-dd__btn.open span:nth-child(4) {
  top: 9px;
  width: 0%;
  left: 50%;
}

@media (min-width: 768px) {
  .header .navigation-main {
    display: block;
  }
  .header .duplicate {
    display: none;
  }
  .header .scrolled .logo {
    margin: 0 auto;
  }
}

/**
 * header.scss
 *
 */
/**
 * footer.scss
 *
 */
/**
* forms.scss
* partial to define all form styles
*/
.form--signup input {
  padding: 0.5rem 1rem;
  background: transparent;
  border: solid 1px #fff;
  color: #fff;
  border-radius: 2rem;
  font-size: 1rem;
  font-family: "Raleway", sans-serif;
  font-weight: 600;
  display: block;
  width: 100%;
}

.form--signup input::-webkit-input-placeholder {
  color: #fff;
}

.form--signup input:-ms-input-placeholder {
  color: #fff;
}

.form--signup input::-ms-input-placeholder {
  color: #fff;
}

.form--signup input::placeholder {
  color: #fff;
}

.form--signup input[type=submit] {
  width: 50%;
  background: #fff;
  color: #0e5196;
}

/**
 * carousel.scss
 *
 * partial to store carousel styles
 */
.carousel {
  overflow-x: hidden;
  overflow-y: hidden;
  height: 130px;
  width: 100%;
  white-space: nowrap;
  position: relative;
}

.carousel__list {
  position: absolute;
  list-style: none;
}

.carousel__item {
  height: 130px;
  max-width: 200px;
  display: inline-block;
  margin: 0;
}

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

.carousel__inner {
  width: 100%;
  height: 100%;
  display: table-cell;
  vertical-align: middle;
  padding: 0 2rem;
}

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

/*-------------------------------------------*\
** SASS Variables
\*-------------------------------------------*/
/*-------------------------------------------*\
** Global
\*-------------------------------------------*/
* {
  margin: 0;
  padding: 0;
  outline: 0;
}

body {
  height: 100%;
  font-family: "Raleway", sans-serif;
  background: #fff;
}

html,
body {
  -webkit-font-smoothing: antialiased;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

/*-------------------------------------------*\
** Hero
\*-------------------------------------------*/
.hero {
  position: relative;
  background-color: black;
  height: 800px;
  width: 100%;
  max-width: 1600px;
  overflow: hidden;
  margin: 0 auto;
}

.hero__overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: black;
  /*background-color: blue;*/
  /*background-color: grey;*/
  opacity: 0.3;
  z-index: 1;
}

.hero video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  z-index: 0;
  -webkit-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
}

.hero__content {
  max-width: 1600px;
  position: inherit;
  z-index: 9;
  height: 100%;
}

.hero__date-loc {
  color: #fff;
  text-transform: uppercase;
  margin: 1rem 0 0 1rem;
}

.hero__date-loc div {
  clear: both;
}

.hero__logo {
  max-width: 600px;
  width: 100%;
  margin: 1rem auto -4rem auto;
}

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

.hero__tagline {
  color: #fff;
  text-shadow: 0 1px 10px #000;
  font-weight: 900;
  font-size: 2rem;
  text-align: center;
  max-width: 1000px;
  width: 100%;
  margin: 4rem auto;
  line-height: 1;
}

.hero__ctas {
    max-width: unset;
    /*margin: 78px 130px 66% 27%;*/
    margin: 50px 127px 53% 16%;
/* orig with 3 buttons
  max-width: 700px;
  margin: 0 auto;
  */
}

.hero__ctas a {
  margin: 1rem auto;
  max-width: 80%;
  font-size: 1.4rem;
  padding: 0.5rem 1rem;
  color: #fff !important;
}

/*-------------------------------------------*\
** Sections
    - Global
    - Intro (homepage)
    - Call to Action
    - Carousel
    - Events
    - Stats
\*-------------------------------------------*/
.section {
  max-width: 1600px;
  width: 100%;
  margin: 0 auto;
  color: #666;
  font-size: 1.3rem;
  padding: 1rem;
  background: #fff;
  text-align: center;
}

.section--img {
  background: -webkit-gradient(linear, right top, left bottom, from(rgba(14, 81, 150, 0.9)), to(rgba(14, 81, 150, 0.8))), url("../img/placeholder--abstract.jpg") center center no-repeat;
  background: linear-gradient(to bottom left, rgba(14, 81, 150, 0.9), rgba(14, 81, 150, 0.8)), url("../img/placeholder--abstract.jpg") center center no-repeat;
  background-size: cover;
  color: #fff;
}

.section--img h2 {
  color: #fff;
}

.section--shadow {
  -webkit-box-shadow: 0 2px 10px #000;
          box-shadow: 0 2px 10px #000;
  position: relative;
  z-index: 1;
}

.section .btn {
  width: auto;
  margin: 1rem auto;
  display: inline-block;
  padding: 0.5rem 3rem;
}

.section--intro__icons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.section--intro__icon {
  color: #fff;
  -webkit-box-flex: 46%;
      -ms-flex: 46%;
          flex: 46%;
  margin: 4% 2%;
  background: #8f008f;
  border-radius: 10px;
  text-align: center;
  padding: 2rem 1rem;
  -webkit-box-shadow: 0 2px 5px #000;
          box-shadow: 0 2px 5px #000;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.section--intro__icon i {
  display: block;
  font-size: 8rem;
  margin: 0 0 1rem 0;
}

.section--intro__icon:hover {
  color: rgba(255, 255, 255, 0.5);
}

.section--speakers {
  padding: 4rem 2rem;
  text-align: center;
}

.section .speaker__list {
  text-align: center;
}

.section .speaker__item {
  display: inline-block;
  text-align: center;
  height: 220px;
  width: 220px;
  margin: 1rem;
  -o-object-fit: cover;
     object-fit: cover;
  position: relative;
}

.section .speaker__link {
  color: #fff;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.section .speaker__link:hover {
  color: #ff00ff;
}

.section .speaker__info {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 9;
  padding: 0.5rem;
  width: 100%;
  text-align: left;
  border-radius: 10px;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), to(rgba(0, 0, 0, 0.9)));
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.9));
}

.section .speaker__name, .section .speaker__company {
  font-size: 0.8rem;
  font-weight: 900;
  display: block;
}

.section .speaker__company {
  font-style: italic;
}

.section .speaker__image {
  border-radius: 10px;
  width: 100%;
  height: auto;
  position: relative;
  /*
   These 2 below add greyscale to the speaker pics
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%); 
  */
  -webkit-box-shadow: 0 2px 5px #000;
          box-shadow: 0 2px 5px #000;
}

.section--cta {
  padding: 4rem 2rem;
  text-align: center;
}

.section--cta .btn {
  font-size: 1.7rem;
}

.section--cta-speaker {
  background: -webkit-gradient(linear, right top, left bottom, from(rgba(14, 81, 150, 0.8)), to(rgba(133, 96, 168, 0.8))), url("../img/placeholder--speaker.jpg") center center no-repeat;
  background: linear-gradient(to bottom left, rgba(14, 81, 150, 0.8), rgba(133, 96, 168, 0.8)), url("../img/placeholder--speaker.jpg") center center no-repeat;
  background-size: cover;
}

.section--cta-sponsor {
  background: -webkit-gradient(linear, right top, left bottom, from(rgba(14, 81, 150, 0.8)), to(rgba(133, 96, 168, 0.8))), url("../img/placeholder--sponsor.jpg") center center no-repeat;
  background: linear-gradient(to bottom left, rgba(14, 81, 150, 0.8), rgba(133, 96, 168, 0.8)), url("../img/placeholder--sponsor.jpg") center center no-repeat;
  background-size: cover;
}

.section--carousel {
  text-align: center;
  padding: 4rem 2rem;
  color: #0e5196;
  background: #fff;
}

.section--events__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.section--events__event {
  -webkit-box-flex: 50%;
      -ms-flex: 50%;
          flex: 50%;
  text-align: center;
  height: 300px;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #fff;
  font-size: 2.5rem;
  font-weight: 400;
  padding: 2rem;
  line-height: 1;
}

.section--events__event span {
  position: relative;
  z-index: 9;
}

.section--events__event img {
  position: relative;
}

.section--events__event:hover {
  color: #fff;
}

.section--stats .stats {
  text-align: center;
  font-size: 1.5rem;
  text-transform: uppercase;
  color: #fff;
  font-weight: 900;
  list-style: none;
}

.section--stats .stats__item {
  display: inline-block;
  padding: 2rem;
  text-align: center;
}

.section--stats .stats span {
  font-size: 4rem;
}

.section--testimonials {
  text-align: center;
}

.section--testimonials .testimonials {
  list-style: none;
  position: relative;
  margin: -3rem auto 0 auto;
  max-width: 1200px;
  display: block;
}

.section--testimonials .testimonials__item {
  background: #fff;
  -webkit-box-shadow: 0 1px 3px #ccc;
          box-shadow: 0 1px 3px #ccc;
  color: #666;
  border-radius: 5px;
  position: relative;
  padding: 2rem;
  font-size: 1rem;
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
  margin: 1% 0;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}

.section--testimonials .testimonials__image {
  border-radius: 50%;
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
  max-width: 170px;
  width: 100%;
  margin: 0 0 1rem 0;
}

.section--testimonials .testimonials__quote {
  display: block;
  font-style: italic;
}

.section--testimonials .testimonials__name, .section--testimonials .testimonials__company {
  display: inline-block;
  font-size: 1.2rem;
}

/*-------------------------------------------*\
** Video (responsive)
\*-------------------------------------------*/
.video {
  position: relative;
  padding-bottom: 56.25%;
  padding-top: 25px;
  height: 0;
  overflow: hidden;
  margin: 15px 0 7px 0;
}

.video__outer {
  position: relative;
  display: block;
  max-width: 100%;
}

.video__inner {
  padding-top: 56.25%;
}

.video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/*-------------------------------------------*\
** Other Screens
\*-------------------------------------------*/
@media (min-width: 768px) {
  .hero {
    height: 700px;
  }
  .hero__tagline {
    font-size: 3rem;
  }
  .hero__ctas a {
    max-width: 100%;
  }
  .section {
    padding: 4rem;
  }
  .section--intro, .section--events {
    text-align: left;
  }
  .section--testimonials .testimonials {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin: -7rem auto 0 auto;
  }
  .section--testimonials .testimonials__item {
    -webkit-box-flex: 48%;
        -ms-flex: 48%;
            flex: 48%;
    margin: 1%;
  }


}

@media (min-width: 992px) {
  .hero__tagline {
    font-size: 3rem;
  }
  .section--hotel, .section--testimonials, .section--form {
    text-align: left;
  }
}




@media screen and (max-width:415px) {
.hero__logo {
  max-width: 600px;
  width: 100%;
  margin: 2rem auto -3rem auto;
}
.navigation-dd__btn {
  
  top: -7px;
} 

.hero__ctas {
 
  max-width: 700px;
  margin: 0 auto;
 
}
.navigation-dd__menu ul {
  
      font-size: 0.8rem;
}
.header-navigation .logo {
max-width: 222px;
}  

.col-md-4{
  margin-left:unset !important ;
}
}




/****************************************************************************************************************************/


/* Co-located events    */


/**********************************************************************************************************************/

.colocated {
    margin: 90px 0px 10%;
    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 h4 {
    font-size: 2.5em;
    /*color: #870c0d;*/
    text-align: center;
    margin-bottom: auto;
}

ul li span {
    font-size: 1.0em;
}
/** VARIABLES
===================================*/
/** RESET AND LAYOUT
===================================*/
.bx-wrapper {
  position: relative;
  margin-bottom: 60px;
  padding: 0;
  *zoom: 1;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
}
.bx-wrapper img {
  max-width: 100%;
  display: block;
}
.bxslider {
  margin: 0;
  padding: 0;
}
ul.bxslider {
  list-style: none;
}
.bx-viewport {
  /* fix other elements on the page moving (in Chrome) */
  -webkit-transform: translateZ(0);
}
/** THEME
===================================*/
.bx-wrapper {
  -moz-box-shadow: 0 0 5px #ccc;
  -webkit-box-shadow: 0 0 5px #ccc;
  box-shadow: 0 0 5px #ccc;
  border: 5px solid #fff;
  background: #fff;
}
.bx-wrapper .bx-pager,
.bx-wrapper .bx-controls-auto {
  position: absolute;
  bottom: -30px;
  width: 100%;
}
/* LOADER */
.bx-wrapper .bx-loading {
  min-height: 50px;
  background: url('/Conferences/images/east2019/bx_loader.gif') center center no-repeat #ffffff;
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2000;
}
/* PAGER */
.bx-wrapper .bx-pager {
  text-align: center;
  font-size: .85em;
  font-family: Arial;
  font-weight: bold;
  color: #666;
  padding-top: 20px;
}
.bx-wrapper .bx-pager.bx-default-pager a {
  background: #666;
  text-indent: -9999px;
  display: block;
  width: 10px;
  height: 10px;
  margin: 0 5px;
  outline: 0;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  border-radius: 5px;
}
.bx-wrapper .bx-pager.bx-default-pager a:hover,
.bx-wrapper .bx-pager.bx-default-pager a.active,
.bx-wrapper .bx-pager.bx-default-pager a:focus {
  background: #000;
}
.bx-wrapper .bx-pager-item,
.bx-wrapper .bx-controls-auto .bx-controls-auto-item {
  display: inline-block;
  vertical-align: bottom;
  *zoom: 1;
  *display: inline;
}
.bx-wrapper .bx-pager-item {
  font-size: 0;
  line-height: 0;
}
/* DIRECTION CONTROLS (NEXT / PREV) */
    .bx-wrapper .bx-prev {
        left: 10px;
        background: url('/Conferences/images/east2019/controls.png') no-repeat 0 -32px;
    }
.bx-wrapper .bx-prev:hover,
.bx-wrapper .bx-prev:focus {
  background-position: 0 0;
}
    .bx-wrapper .bx-next {
        right: 10px;
        background: url('/Conferences/images/east2019/controls.png') no-repeat -43px -32px;
    }
.bx-wrapper .bx-next:hover,
.bx-wrapper .bx-next:focus {
  background-position: -43px 0;
}
.bx-wrapper .bx-controls-direction a {
  position: absolute;
  top: 50%;
  margin-top: -16px;
  outline: 0;
  width: 32px;
  height: 32px;
  text-indent: -9999px;
  z-index: 9999;
}
.bx-wrapper .bx-controls-direction a.disabled {
  display: none;
}
/* AUTO CONTROLS (START / STOP) */
.bx-wrapper .bx-controls-auto {
  text-align: center;
}
    .bx-wrapper .bx-controls-auto .bx-start {
        display: block;
        text-indent: -9999px;
        width: 10px;
        height: 11px;
        outline: 0;
        background: url('/Conferences/images/east2019/controls.png') -86px -11px no-repeat;
        margin: 0 3px;
    }
.bx-wrapper .bx-controls-auto .bx-start:hover,
.bx-wrapper .bx-controls-auto .bx-start.active,
.bx-wrapper .bx-controls-auto .bx-start:focus {
  background-position: -86px 0;
}
    .bx-wrapper .bx-controls-auto .bx-stop {
        display: block;
        text-indent: -9999px;
        width: 9px;
        height: 11px;
        outline: 0;
        background: url('/Conferences/images/east2019/controls.png') -86px -44px no-repeat;
        margin: 0 3px;
    }
.bx-wrapper .bx-controls-auto .bx-stop:hover,
.bx-wrapper .bx-controls-auto .bx-stop.active,
.bx-wrapper .bx-controls-auto .bx-stop:focus {
  background-position: -86px -33px;
}
/* PAGER WITH AUTO-CONTROLS HYBRID LAYOUT */
.bx-wrapper .bx-controls.bx-has-controls-auto.bx-has-pager .bx-pager {
  text-align: left;
  width: 80%;
}
.bx-wrapper .bx-controls.bx-has-controls-auto.bx-has-pager .bx-controls-auto {
  right: 0;
  width: 35px;
}
/* IMAGE CAPTIONS */
.bx-wrapper .bx-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  background: #666;
  background: rgba(80, 80, 80, 0.75);
  width: 100%;
}
.bx-wrapper .bx-caption span {
  color: #fff;
  font-family: Arial;
  display: block;
  font-size: .85em;
  padding: 10px;
}

/*
        ___          ___          ___          ___      ___                   ___          ___     
       /\  \        /\  \        /\  \        /\  \    /\  \        ___      /\__\        /\  \    
      /::\  \      /::\  \      /::\  \      /::\  \   \:\  \      /\  \    /:/  /       /::\  \   
     /:/\:\  \    /:/\:\  \    /:/\:\  \    /:/\:\  \   \:\  \     \:\  \  /:/  /       /:/\:\  \  
    /:/  \:\  \  /::\~\:\  \  /::\~\:\  \  /::\~\:\  \  /::\  \    /::\__\/:/__/  ___  /::\~\:\  \ 
   /:/__/ \:\__\/:/\:\ \:\__\/:/\:\ \:\__\/:/\:\ \:\__\/:/\:\__\__/:/\/__/|:|  | /\__\/:/\:\ \:\__\
   \:\  \  \/__/\/_|::\/:/  /\:\~\:\ \/__/\/__\:\/:/  /:/  \/__/\/:/  /   |:|  |/:/  /\:\~\:\ \/__/
    \:\  \         |:|::/  /  \:\ \:\__\       \::/  /:/  /    \::/__/    |:|__/:/  /  \:\ \:\__\  
     \:\  \        |:|\/__/    \:\ \/__/       /:/  /\/__/      \:\__\     \::::/__/    \:\ \/__/  
      \:\__\       |:|  |       \:\__\        /:/  /             \/__/      ~~~~         \:\__\    
       \___/        \|__|    ___ \/__/    ___ \/__/   ___  ___                            \/__/    
       /\__\       ___      /\__\        /\  \       /\__\/\  \                                    
      /:/  /      /\  \    /::|  |      /::\  \     /:/  /::\  \                                   
     /:/__/       \:\  \  /:|:|  |     /:/\:\  \   /:/  /:/\:\  \                                  
    /::\__\____   /::\__\/:/|:|  |__  /:/  \:\__\ /:/  /::\~\:\  \                                 
   /:/\:::::\__\_/:/\/__/:/ |:| /\__\/:/__/ \:|__/:/__/:/\:\ \:\__\                                
   \/_|:|~~|~ /\/:/  /  \/__|:|/:/  /\:\  \ /:/  |:\  \:\~\:\ \/__/                                
      |:|  |  \::/__/       |:/:/  /  \:\  /:/  / \:\  \:\ \:\__\                                  
      |:|  |   \:\__\       |::/  /    \:\/:/  /   \:\  \:\ \/__/                                  
      |:|  |    \/__/       /:/  /      \::/__/     \:\__\:\__\                                    
       \|__|                \/__/        ~~          \/__/\/__/                                    
*/


/******************** 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 {
    font-family: 'Gentium Basic', serif;
    text-transform: capitalize;
    font-size: 5.1em;
    font-weight: 400;
    color: #666;
}

h3 {
    font-family: 'Gentium Basic', serif;
    text-transform: capitalize;
    font-size: 3.9em;
/*    margin: 0 130px 0 0;*/
    margin: 0 0 0 0;
}

h4 {
    font-family: 'Gentium Basic', serif;
    text-transform: capitalize;
    font-size: 1.5em;
}

.sponsors h4 {
    text-align: center;
}

p {
    font-family: 'Open Sans';
    font-size: 1.5em;
    margin: 1em 0;
    line-height: 1.5;
}
.homewidth {
    margin: 1em 7%;
    line-height: 1.5;
    font-family: 'Open Sans';
    font-size: 1.4em;
}

/*
h2 {
    
    font-family: 'Roboto Condensed', sans-serif;
    text-transform: uppercase;
    font-style: italic;
    font-size: 4.1em;
}

h3 {
    font-family: 'Roboto Slab', sans-serif;
    text-transform: capitalize;
    font-size: 3.1em;
    margin: 0 150px 0 0;
    color: #666;
}

h4 {
    font-family: 'Roboto Condensed', sans-serif;
    text-transform: uppercase;
    font-style: italic;
    font-size: 1.5em;
}

.sponsors h4 {
    text-align: center;
}

p {
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
    font-size: 1.6em;
    line-height: 1.4;
    margin: 1em 0;
}

.ul2 {
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
    font-size: 1.6em;
}
*/

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


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

header {
    width: 100%;
    height: 70px;
    background: #E0E0E0;
    background: rgba(224, 224, 224, 1);
    position: fixed;
    z-index: 9999;
    box-shadow: 0 1px 1px #333;
    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 ****************************************/


/**************************************** theme / front_page ****************************************/
  /*      Original changed for video
.theme {
    width: 100%;
    height: 670px;
    background: url("/images/2018/") 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: 750px;
    overflow: hidden;
    position: relative;
}

.theme_content {
    width: 830px;
    margin: 0 auto;
    text-align: center;
    padding: 40px 30px 50px 30px;
}

    .theme_content .logo {
        width: 607px;
        margin: 0 auto;
        height: 179px;
        background: url(https://dzceab466r34n.cloudfront.net/images_nl/sw/KMW19_logo_date2.svg) no-repeat;
        background-size: 607px 179px;
    }

    .theme_content .tagline {
        color: #fff;
        font-size: 2.7em;
        font-family: 'Gentium Basic';
        text-shadow: 0 2px #333;
    }

    .theme_content .tagline2 {
        color: #fff;
        font-size: 4.0em;
        font-style: italic;
        font-family: 'Gentium Basic';
        text-shadow: 0 2px #333;
    }

    .theme_content .date_location {
        color: #fff;
        font-size: 4.5em;
        font-family: 'Gentium Basic';
        padding: 15px 0;
        border-top: solid 1px #fff;
        border-bottom: solid 1px #fff;
        text-transform: uppercase;
        margin: 37px 0;
        text-shadow: 0 2px #333;
    }

    .theme_content .place {
        color: #fff;
        font-family: 'Gentium Basic';
        font-size: 2.3em;
        border-bottom: solid 1px #fff;
        text-transform: uppercase;
        text-shadow: 0 2px #333;
        padding-bottom: 15px;
        margin-bottom: 30px;
    }

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

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

.theme_content .register_btn a {
    color: #fff;
    font-size: 2.5em;
    font-family: 'Gentium Basic';
    text-transform: uppercase;
    line-height: 70px;
    display: block;
    width: 240px;
    height: 70px;
    background: #940709;
}


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



/*
.theme_content .tagline {
    color: #fff;
    font-size: 2.3em;
    font-family: 'Roboto Slab', sans-serif;
    font-style: italic;
    text-transform: uppercase;
    font-weight: 700;
    margin: 15px 0 0 0;
}

.theme_content .date_location {
    color: #fff;
    font-size: 4.5em;
    font-family: 'Roboto Slab', sans-serif;
    padding: 15px 0;
    border-top: solid 1px #fff;
    border-bottom: solid 1px #fff;
    text-transform: uppercase;
    margin: 30px 0;
}

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

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

.theme_content .register_btn a {
    color: #fff;
    font-size: 2.5em;
    font-family: 'Roboto Condensed', sans-serif;
    text-transform: uppercase;
    font-weight: 700;
    font-style: italic;
    line-height: 70px;
    display: block;
    width: 240px;
    height: 70px;
    background: #ed1c24;
}

*/


/**************************************** intro / front_page ****************************************/

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

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

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

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

    .intro_img.left {
        float: left;
        margin: 68px 60px 30px 0;
        /*padding-bottom: 65.25%;
        margin: 25px 25px 0 0;*/
    }

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

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

    .intro_media.left{
        float: left;
        margin: 0px 0px 20px 0;
        
    }
    .intro_video {
      

        position: relative;
        padding-bottom: 65.25%;
        padding-top: 19px;
        
        overflow: hidden;
        
    }

    .intro_video iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }
.unorderedlist ul {
    margin: 0 0 10px 25px;
    font-family: 'Open Sans';
    /*font-size: 1.4em;*/
    font-size: 1.6em;
    list-style-type: disc;
}

 .unorderedlist ul li ul {
	margin: 0 0 10px 25px;
	font-family: 'Open Sans';
	font-size: 1.5em;
	list-style-type: disc;
}

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

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

/**************************************** sponsor area ****************************************/
.sponsor_wrapper {
    margin: 60px 0 0 0;
}

.sponsors {
    margin: 30px 0 0 0;
    color: #666;
    text-align: center;
}
.sponsors h5{
    font-size: 2.5em;
    font-family: 'Gentium Basic', serif;
    text-transform: capitalize;
    
}
    .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;
    font-family: 'Roboto', sans-serif;
}

    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: #ed1c24;
            -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', sans-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 {
                background: #aaa;
                color: #fff;
            }

.sub.logo_dbta,
.sub.logo_bdq {
    display: block;
    margin: 15px 0 0 0;
    width: 200px;
    text-indent: -9999px;
    -webkit-filter: grayscale(100%);
    filter: grayscale(100%);
    opacity: 0.4;
    filter: alpha(opacity=40);
}

.sub.logo_dbta {
    height: 52px;
    background: url(/images/2019/logo_kmw_mag.svg) no-repeat;
    background-size: 200px 52px;
}

.sub: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/2018/bg_subpage.jpg) no-repeat fixed top center;*/
    background-size: cover;
}

    .subpage .banner_date_location {
        top: 70px;
        position: fixed;
        border-bottom: solid 1px #940709;
        background: #ffffff;
        background: rgba(255, 255, 255, 1.0);
        width: 100%;
        height: 50px;
        line-height: 50px;
        text-align: center;
        /*font-family: 'Roboto Condensed', sans-serif;*/
        font-family: 'Gentium Basic', serif;
        font-size: 2.9em;
        color: #940709;
        z-index: 9998;
        -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: 10px 30px 0 30px;
        transition: all .4s ease-in-out;
    }

    .subpage .secondary_content {
        background: none;
    }

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

/* Exhibiting Sponsors Images */

.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;
}
.menu_set{
    width: 322px;
    margin-top: -6.3%;
/*float:right;
margin-right: 39%;
margin-left: 37%;
padding-top: 9px;
padding-bottom: 13px;*/
}

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

/*************************************************************************** ad sizes ***************************************************************************/

/****************************************************************************************************************************************************************/
#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);
}

/**************************************** schedule agenda page ****************************************/

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

/************************************************************************* 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.3em;
        }

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

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

        */
    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_dbta,
    .sub.logo_bdq {
        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:830px) {
/*
    header {
        display: none;
    }

    .mobile_menu_btn {
        display: block;
    }
*/
    .theme_content {
        width: 100%;
        margin: 0 auto;
        text-align: center;
        /*padding: 70px 30px 40px 30px;*/
    }

        .theme_content .logo {
            width: 400px;
            height: 118px;
            background-size: 400px 118px;
        }

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

        .theme_content .date_location {
            font-size: 2.0em;
            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 15px;
    }
/*
    .subpage #banner_brand {
        padding-left: 5px;
        height: 50px;
        width: 100%;
        position: fixed;
        display: block;
        top: 50px;
        background: #ffffff;
        background: rgba(255, 255, 255, 1.0);
        opacity: 1.0;
        z-index: 9998;
    }

        .subpage #banner_brand div {
            background: url(https://dzceab466r34n.cloudfront.net/images_nl/sw/KMW19_logo_date2.svg) no-repeat;
            background-size: 150px 50px;
            height: 60px;
            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;
            }
*/
    .subpage .primary_content {
        background: none;
        padding: 32px 30px 0 30px;
    }
}

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

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

    .theme_content .logo {
        width: 300px;
        height: 88px;
        background-size: 300px 88px;
    }

/*    .intro_img {
        display: none;
    }
*/
    h3 {
        font-size: 2.7em;
        margin: 0 0 0 10px;
    }

    .track {
        display: inline-block;
    }

    .explore_btn {
        display: none;
    }

    .explore_btn_mobile {
        display: block;
    }
    .colocated {
        margin: 0px 0px 10%;
    }
    .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: 165px;
            }

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

    .sub.logo_dbta,
    .sub.logo_bdq {
        float: none;
        margin: 10px auto 15px auto;
    }

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

    .subpage .primary_content {
        padding: 10px 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;
    }

    .primary_content{

        padding: 30px 30px;
    }
    #div-gpt-ad-1371156417389-0 {
        display: none;
    }

    #ad_320x50 {
        display: block;
    }

    #div-gpt-ad-1371156417389-2 {
        display: block;
    }

    #bcVideoNavigation {
        height: 60px;
        padding: 3px;
    }

    .intro_img {
        width: 98%;
        
    }
    
        .intro_img.left {
            float: left;
            
            /*padding-bottom: 65.25%;
            margin: 25px 25px 0 0;*/
            margin: 0 0 34px 0px;
        }
        
        .intro_img.right {
            display:none;
        }
}

@media screen and (max-width:425px) {
    .primary_content .booth-info {
        width: 100px;
    }
    .intro_media.left{
        float: none;
    }
    .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: 1em;
        padding: 0 0 0 10px;
        background-size: 90px 50px;
                /******padding: 0 0 0 10px**********/
    }
}

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

#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;
}

.key_legend {
    width: 100%;
    padding: 30px 0 60px 0;
}

    .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: #540779;
}

.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_yellow,
.schedule_blue,
.schedule_dblue,
.schedule_purple,
.schedule_red,
.schedule_gray,
.schedule_green,
.schedule_orange,
.schedule_mauve {
    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: #540779;
}

.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:1030px) {
}

@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;
    }
}

@media screen and (max-width: 425px) {
}


/****************************************************************************************************/


/* homepage < slider < speakers */


/****************************************************************************************************/

.speakers {
    background: url(/images/2020/bg_poly.jpg) no-repeat;
    background-size: cover;
}

.speakers h5 {
    margin: 0 auto 30px auto;
    padding: 30px 0 0 0;
    color: #3F4345;
    font-size: 2.5em;
    text-align: center;
}

.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: #3F4345;
    font-weight: 400;
    line-height: 101%;
    margin: 1em auto;
}

.spk_comp {
    color: #3F4345;
    font-style: italic;
    font-size: 0.7em;
    font-weight: 700;
}

.spk_title {
    font-size: 1.1em;
    color: #3F4345;
}



/****************************************************************************************************/


/* homepage < slider */


/****************************************************************************************************/
/*Company and all slider but speakers*/
.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 50px;
}

.division_wrap img {
    display: block;
    /*max-height: 130px;*/
    max-height: 77px;
    width: auto;
    margin: 0 auto;
}
/*SPEAKERS Slider*/





.division_wrap_speaker {
    height: 130px;
    display: table;
    margin: 0;
}

.division_wrap_speaker div {
    width: 100%;
    height: 100%;
    display: table-cell;
    vertical-align: middle;
    padding: 0 50px;
}

.division_wrap_speaker 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;
}


/**************************************** tracks_old / front_page ****************************************/

.tracks {
    width: 100%;
    background: url(/images/2019/bg_tracks.jpg) no-repeat fixed top center;
    background-size: cover;
    padding: 30px;
}

.tex {
    color: #fff;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.tracks h2 {
    color: #fff;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}


 .tracks h4{
    color: #ffffff;
    width: 100%;
    max-width: 1200px;
    font-family: 'Gentium Basic', serif;
    
    margin: 0 auto;
        font-size: 26px

}

.tracks h5{
    color: #ffffff;
    width: 100%;
    max-width: 1200px;
    
    margin: 0 auto;
    font-family: 'Gentium Basic', serif;
        font-size: 26px
}
.tracks div.modName{
    color: #ffffff;
    width: 100%;
    max-width: 1200px;
    
    margin: 0 auto;
    font-family: 'Gentium Basic', serif;
        font-size: 26px
	
}
.tracks div.mod{
    color: #ffffff;
    width: 100%;
    max-width: 1200px;
    
    margin: 0 auto;
    font-family: 'Gentium Basic', serif;
        font-size: 18px
	
}
.tracks div.modName a{
    color: #ffffff !Important;
}
.track {
    width: 100%;
    max-width: 1200px;
    margin: 30px auto;
    background: #fff;
    padding: 30px;
    box-shadow: 0px 1px 1px #333;
}

 
/*
.explore_btn a,
.explore_btn_mobile a {
    font-size: 1.7em;
    font-family: 'Roboto Condensed', sans-serif;
    text-transform: uppercase;
    font-style: italic;
    width: 70px;
    height: 50px;
    line-height: 50px;
    position: relative;
    float: right;
    background: #005984;
    color: #fff;
    padding: 0 0 0 15px;
    z-index: 10;
    right: 49px;
}
*/

.explore_btn a,
.explore_btn_mobile a {
    font-size: 1.4em;
    text-transform: uppercase;
    font-family: 'Open Sans';
    width: 70px;
    height: 50px;
    line-height: 50px;
    position: relative;
    float: right;
    background: #005984;
    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 #005984;
    z-index: -5;
}

.explore_btn a:after,
.explore_btn_mobile a:after {
    right: -49px;
    top: 0em;
    border-right-color: transparent;
}

.explore_btn_mobile {
    display: none;
}

span.speakerRole {
    font-size: 14px;
    font-weight: bolder;
}

@media screen and (max-width:630px) {
    .tracks {
        padding: 15px;
    }
    .track {
        display: inline-block;
        padding: 10px;
    }
    /*
    .explore_btn {
        display: none;
    }
    */
    .explore_btn_mobile {
        display: block;
    }
}
