/* -------------------------------- 

Primary style

-------------------------------- */


.cd-dropdown-wrapper {
  color: #222;
  background-color: #ffffff;
}

.cd-dropdown-wrapper img {
  max-width: 100%;
}

/* remove “X” from search input field */
.cd-dropdown-wrapper input[type="search"]::-webkit-search-decoration,
.cd-dropdown-wrapper input[type="search"]::-webkit-search-cancel-button,
.cd-dropdown-wrapper input[type="search"]::-webkit-search-results-button,
.cd-dropdown-wrapper input[type="search"]::-webkit-search-results-decoration {
  display: none;
}

.cd-dropdown-wrapper input[type=text]::-ms-clear {
  display: none;
  width: 0;
  height: 0;
}

.cd-dropdown-wrapper input[type=text]::-ms-reveal {
  display: none;
  width: 0;
  height: 0;
}

header {
  color: #fff;
  height: 60px;
  background-color: #1d1d1b;
  text-align: right;
  width: 100%;
  display: block;
    position: fixed;
    z-index: 99999;
}


.expologo {
    float: left;
    width: 100%;
    max-width: 280px;
    display: block;
    height: 20px;
    margin: 20px 0 0 20px;
    text-align: left;
}
.expologo img {
    height: 20px;
    width: auto;
}


.contentwrap {
    max-width: 700px;
    width:100%;
    margin: auto;
    padding: 10px 20px 20px 20px;
    background-color: rgba(0, 1, 1, 0.5);

}


table.pricebox {
    background-color: #fff;
    border: 10px solid #fff;
    padding: 10px;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
}

table.pricebox h5 {
    margin: 20px 0 0 0;
}

.priceboxes .col {
    padding: 20px 0.75em;
}

.pricebox:hover {
    background-color: #fff;
    border: 10px solid #1d1d1b;
}


/* -------------------------------- 

Single slide animation

-------------------------------- */
@media only screen and (min-width: 768px) {
  .cd-hero-slider .cd-half-width {
    opacity: 0;
    -webkit-transform: translateX(40px);
    -moz-transform: translateX(40px);
    -ms-transform: translateX(40px);
    -o-transform: translateX(40px);
    transform: translateX(40px);
  }
  .cd-hero-slider .move-left .cd-half-width {
    -webkit-transform: translateX(-40px);
    -moz-transform: translateX(-40px);
    -ms-transform: translateX(-40px);
    -o-transform: translateX(-40px);
    transform: translateX(-40px);
  }
  .cd-hero-slider .selected .cd-half-width {
    /* this is the visible slide */
    opacity: 1;
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
  }
  .cd-hero-slider .is-moving .cd-half-width {
    /* this is the slide moving outside the viewport 
    wait for the end of the transition on the <li> parent before set opacity to 0 and translate to 40px/-40px */
    -webkit-transition: opacity 0s 0.5s, -webkit-transform 0s 0.5s;
    -moz-transition: opacity 0s 0.5s, -moz-transform 0s 0.5s;
    transition: opacity 0s 0.5s, transform 0s 0.5s;
  }
  .cd-hero-slider li.selected.from-left .cd-half-width:nth-of-type(2),
  .cd-hero-slider li.selected.from-right .cd-half-width:first-of-type {
    /* this is the selected slide - different animation if it's entering from left or right */
    -webkit-transition: opacity 0.4s 0.2s, -webkit-transform 0.5s 0.2s;
    -moz-transition: opacity 0.4s 0.2s, -moz-transform 0.5s 0.2s;
    transition: opacity 0.4s 0.2s, transform 0.5s 0.2s;
  }
  .cd-hero-slider li.selected.from-left .cd-half-width:first-of-type,
  .cd-hero-slider li.selected.from-right .cd-half-width:nth-of-type(2) {
    /* this is the selected slide - different animation if it's entering from left or right */
    -webkit-transition: opacity 0.4s 0.4s, -webkit-transform 0.5s 0.4s;
    -moz-transition: opacity 0.4s 0.4s, -moz-transform 0.5s 0.4s;
    transition: opacity 0.4s 0.4s, transform 0.5s 0.4s;
  }
  .cd-hero-slider .cd-full-width h2,
  .cd-hero-slider .cd-full-width p,
  .cd-hero-slider .cd-full-width .cd-btn {
    opacity: 0;
    -webkit-transform: translateX(100px);
    -moz-transform: translateX(100px);
    -ms-transform: translateX(100px);
    -o-transform: translateX(100px);
    transform: translateX(100px);
  }
  .cd-hero-slider .move-left .cd-full-width h2,
  .cd-hero-slider .move-left .cd-full-width p,
  .cd-hero-slider .move-left .cd-full-width .cd-btn {
    opacity: 0;
    -webkit-transform: translateX(-100px);
    -moz-transform: translateX(-100px);
    -ms-transform: translateX(-100px);
    -o-transform: translateX(-100px);
    transform: translateX(-100px);
  }
  .cd-hero-slider .selected .cd-full-width h2,
  .cd-hero-slider .selected .cd-full-width p,
  .cd-hero-slider .selected .cd-full-width .cd-btn {
    /* this is the visible slide */
    opacity: 1;
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
  }
  .cd-hero-slider li.is-moving .cd-full-width h2,
  .cd-hero-slider li.is-moving .cd-full-width p,
  .cd-hero-slider li.is-moving .cd-full-width .cd-btn {
    /* this is the slide moving outside the viewport 
    wait for the end of the transition on the li parent before set opacity to 0 and translate to 100px/-100px */
    -webkit-transition: opacity 0s 0.5s, -webkit-transform 0s 0.5s;
    -moz-transition: opacity 0s 0.5s, -moz-transform 0s 0.5s;
    transition: opacity 0s 0.5s, transform 0s 0.5s;
  }
  .cd-hero-slider li.selected h2 {
    -webkit-transition: opacity 0.4s 0.2s, -webkit-transform 0.5s 0.2s;
    -moz-transition: opacity 0.4s 0.2s, -moz-transform 0.5s 0.2s;
    transition: opacity 0.4s 0.2s, transform 0.5s 0.2s;
  }
  .cd-hero-slider li.selected p {
    -webkit-transition: opacity 0.4s 0.3s, -webkit-transform 0.5s 0.3s;
    -moz-transition: opacity 0.4s 0.3s, -moz-transform 0.5s 0.3s;
    transition: opacity 0.4s 0.3s, transform 0.5s 0.3s;
  }
  .cd-hero-slider li.selected .cd-btn {
    -webkit-transition: opacity 0.4s 0.4s, -webkit-transform 0.5s 0.4s, background-color 0.2s 0s;
    -moz-transition: opacity 0.4s 0.4s, -moz-transform 0.5s 0.4s, background-color 0.2s 0s;
    transition: opacity 0.4s 0.4s, transform 0.5s 0.4s, background-color 0.2s 0s;
  }
}
/* -------------------------------- 

Slider navigation

-------------------------------- */
.cd-slider-nav {
  position: absolute;
  width: 100%;
  bottom: 0;
  z-index: 2;
  text-align: center;
  height: 55px;
  background-color: rgba(0, 1, 1, 0.5);
}
.cd-slider-nav nav, .cd-slider-nav ul, .cd-slider-nav li, .cd-slider-nav a {
  height: 100%;
}
.cd-slider-nav nav {
  display: inline-block;
  position: relative;
}
.cd-slider-nav .cd-marker {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 120px;
  height: 100%;
  color: #ee7122;
  background-color: #ffffff;
  box-shadow: inset 0 2px 0 currentColor;
  -webkit-transition: -webkit-transform 0.2s, box-shadow 0.2s;
  -moz-transition: -moz-transform 0.2s, box-shadow 0.2s;
  transition: transform 0.2s, box-shadow 0.2s;
}
.cd-slider-nav .cd-marker.item-2 {
  -webkit-transform: translateX(100%);
  -moz-transform: translateX(100%);
  -ms-transform: translateX(100%);
  -o-transform: translateX(100%);
  transform: translateX(100%);
}
.cd-slider-nav .cd-marker.item-3 {
  -webkit-transform: translateX(200%);
  -moz-transform: translateX(200%);
  -ms-transform: translateX(200%);
  -o-transform: translateX(200%);
  transform: translateX(200%);
}
.cd-slider-nav .cd-marker.item-4 {
  -webkit-transform: translateX(300%);
  -moz-transform: translateX(300%);
  -ms-transform: translateX(300%);
  -o-transform: translateX(300%);
  transform: translateX(300%);
}
.cd-slider-nav .cd-marker.item-5 {
  -webkit-transform: translateX(400%);
  -moz-transform: translateX(400%);
  -ms-transform: translateX(400%);
  -o-transform: translateX(400%);
  transform: translateX(400%);
}
.cd-slider-nav ul::after {
  clear: both;
  content: "";
  display: table;
}
.cd-slider-nav li {
  display: inline-block;
  width: 120px;
  float: left;
}
.cd-slider-nav li.selected a {
  color: #2c343b;
}
.no-touch .cd-slider-nav li.selected a:hover {
  background-color: transparent;
}
.cd-slider-nav a {
  display: block;
  position: relative;
  padding-top: 35px;
  font-size: 0.6rem;
  font-weight: 700;
  color: #a8b4be;
  -webkit-transition: background-color 0.2s;
  -moz-transition: background-color 0.2s;
  transition: background-color 0.2s;
}
.cd-slider-nav a::before {
  content: '';
  position: absolute;
  width: 24px;
  height: 24px;
  top: 8px;
  left: 50%;
  right: auto;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
  background: url(../assets/cd-navigation-icons.png) no-repeat 0 0;
}
.no-touch .cd-slider-nav a:hover {
  background-color: rgba(0, 1, 1, 0.5);
}
.cd-slider-nav li:first-of-type a::before {
  background-position: -72px 0;
}
.cd-slider-nav li.selected:first-of-type a::before {
  background-position: -72px -24px;
}
.cd-slider-nav li:nth-of-type(2) a::before {
  background-position: -24px 0;
}
.cd-slider-nav li.selected:nth-of-type(2) a::before {
  background-position: -24px -24px;
}
.cd-slider-nav li:nth-of-type(3) a::before {
  background-position: -48px 0;
}
.cd-slider-nav li.selected:nth-of-type(3) a::before {
  background-position: -48px -24px;
}
.cd-slider-nav li:nth-of-type(4) a::before {
  background-position: -72px 0;
}
.cd-slider-nav li.selected:nth-of-type(4) a::before {
  background-position: -72px -24px;
}
.cd-slider-nav li:nth-of-type(5) a::before {
  background-position: -96px 0;
}
.cd-slider-nav li.selected:nth-of-type(5) a::before {
  background-position: -96px -24px;
}
@media only screen and (min-width: 768px) {
  .cd-slider-nav {
    height: 80px;
  }
  .cd-slider-nav .cd-marker,
  .cd-slider-nav li {
    width: 250px;
  }
  .cd-slider-nav a {
    padding-top: 48px;
    font-size: 1.1rem;
    text-transform: uppercase;
  }
  .cd-slider-nav a::before {
    top: 18px;
  }
}























.cd-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: visibility 0s 0.3s, opacity 0.3s 0s, z-index 0s 0.3s;
  -moz-transition: visibility 0s 0.3s, opacity 0.3s 0s, z-index 0s 0.3s;
  transition: visibility 0s 0.3s, opacity 0.3s 0s, z-index 0s 0.3s;
}
.cd-modal::after {
  /* gradient overlay at bottom of modal window */
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 60px;
  pointer-events: none;
  background: transparent;
  background: -webkit-linear-gradient( bottom , #34383c, rgba(52, 56, 60, 0));
  background: linear-gradient(to top, #34383c, rgba(52, 56, 60, 0));
}
.cd-modal .cd-modal-content {
  height: 100%;
  width: 100%;
  padding: 3em 5%;
  text-align: left;
  overflow-y: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.cd-modal p {
  color: #ffffff;
  line-height: 1.6;
  margin: 2em 0;
}
.modal-is-visible .cd-modal {
  z-index: 1;
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  -webkit-transition: visibility 0s 0s, opacity 0.3s 0s, z-index 0s 0s;
  -moz-transition: visibility 0s 0s, opacity 0.3s 0s, z-index 0s 0s;
  transition: visibility 0s 0s, opacity 0.3s 0s, z-index 0s 0s;
}
.modal-is-visible .cd-modal .cd-modal-content {
  -webkit-overflow-scrolling: touch;
}
@media only screen and (min-width: 768px) {
  .cd-modal .cd-modal-content {
    padding: 3em 0%;
  }
}
@media only screen and (min-width: 1170px) {
  .cd-modal .cd-modal-content {
    padding: 3em 0%;
  }
  .cd-modal p {
    font-size: 2rem;
    line-height: 2;
  }
}

.cd-modal-action {
  position: relative;
}
.cd-modal-action .btn, .cd-modal-action .cd-modal-bg {
  display: inline-block;
  height: 4em;
  background-color: #34383c;
}
.cd-modal-action .btn {
  width: 12.5em;
  border-radius: 5em;
  color: #ffffff;
  line-height: 4em;
  white-space: nowrap;
  font-weight: 700;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-transition: color 0.2s 0.3s, width 0.3s 0s;
  -moz-transition: color 0.2s 0.3s, width 0.3s 0s;
  transition: color 0.2s 0.3s, width 0.3s 0s;
}
.cd-modal-action .btn.to-circle {
  width: 4em;
  color: transparent;
  -webkit-transition: color 0.2s 0s, width 0.3s 0.2s;
  -moz-transition: color 0.2s 0s, width 0.3s 0.2s;
  transition: color 0.2s 0s, width 0.3s 0.2s;
}
.cd-modal-action .cd-modal-bg {
  position: absolute;
  z-index: 1;
  left: 50%;
  top: 0;
  width: 4em;
  border-radius: 50%;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateZ(0);
  -moz-transform: translateZ(0);
  -ms-transform: translateZ(0);
  -o-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-transform: translateX(-2em);
  -moz-transform: translateX(-2em);
  -ms-transform: translateX(-2em);
  -o-transform: translateX(-2em);
  transform: translateX(-2em);
  -webkit-transition: visibility 0s 0.5s;
  -moz-transition: visibility 0s 0.5s;
  transition: visibility 0s 0.5s;
}
.cd-modal-action .cd-modal-bg.is-visible {
  opacity: 1;
  visibility: visible;
}

.cd-modal-close {
  position: fixed;
  z-index: 1;
  top: 20px;
  right: 5%;
  height: 50px;
  width: 50px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.3) url(../img/cd-icon-close.svg) no-repeat center center;
  /* image replacement */
  overflow: hidden;
  text-indent: 100%;
  white-space: nowrap;
  visibility: hidden;
  opacity: 0;
  -webkit-transform: translateZ(0);
  -moz-transform: translateZ(0);
  -ms-transform: translateZ(0);
  -o-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-transform: scale(0);
  -moz-transform: scale(0);
  -ms-transform: scale(0);
  -o-transform: scale(0);
  transform: scale(0);
  -webkit-transition: -webkit-transform 0.3s 0s, visibility 0s 0.3s, opacity 0.3s 0s;
  -moz-transition: -moz-transform 0.3s 0s, visibility 0s 0.3s, opacity 0.3s 0s;
  transition: transform 0.3s 0s, visibility 0s 0.3s, opacity 0.3s 0s;
}
.no-touch .cd-modal-close:hover {
  background-color: rgba(0, 0, 0, 0.5);
}
.modal-is-visible .cd-modal-close {
  visibility: visible;
  opacity: 1;
  -webkit-transition: -webkit-transform 0.3s 0s, visibility 0s 0s, opacity 0.3s 0s;
  -moz-transition: -moz-transform 0.3s 0s, visibility 0s 0s, opacity 0.3s 0s;
  transition: transform 0.3s 0s, visibility 0s 0s, opacity 0.3s 0s;
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
}
@media only screen and (min-width: 768px) {
  .cd-modal-close {
    top: 40px;
  }
}









.cd-faq {
  width: 90%;
  max-width: 1024px;
  margin: 2em auto;
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.1);
}
.cd-faq:after {
  content: "";
  display: table;
  clear: both;
}
@media only screen and (min-width: 768px) {
  .cd-faq {
    position: relative;
    margin: 4em auto;
    box-shadow: none;
  }
}

.cd-faq-categories a {
  position: relative;
  display: block;
  overflow: hidden;
  height: 50px;
  line-height: 50px;
  padding: 0 28px 0 16px;
  background-color: #4e5359;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #ffffff;
  white-space: nowrap;
  border-bottom: 1px solid #555b61;
  text-overflow: ellipsis;
}
.cd-faq-categories a::before, .cd-faq-categories a::after {
  /* plus icon on the right */
  position: absolute;
  top: 50%;
  right: 16px;
  display: inline-block;
  height: 1px;
  width: 10px;
  background-color: #7f868e;
}
.cd-faq-categories a::after {
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -o-transform: rotate(90deg);
  transform: rotate(90deg);
}
.cd-faq-categories li:last-child a {
  border-bottom: none;
}
@media only screen and (min-width: 768px) {
  .cd-faq-categories {
    width: 20%;
    float: left;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.08);
  }
  .cd-faq-categories a {
    font-size: 13px;
    font-size: 0.8125rem;
    font-weight: 600;
    padding-left: 24px;
    padding: 0 24px;
    -webkit-transition: background 0.2s, padding 0.2s;
    -moz-transition: background 0.2s, padding 0.2s;
    transition: background 0.2s, padding 0.2s;
  }
  .cd-faq-categories a::before, .cd-faq-categories a::after {
    display: none;
  }
  .no-touch .cd-faq-categories a:hover {
    background: #555b61;
  }
  .no-js .cd-faq-categories {
    width: 100%;
    margin-bottom: 2em;
  }
}
@media only screen and (min-width: 1024px) {
  .cd-faq-categories {
    position: absolute;
    top: 0;
    left: 0;
    width: 200px;
    z-index: 2;
  }
  .cd-faq-categories a::before {
    /* decorative rectangle on the left visible for the selected item */
    display: block;
    top: 0;
    right: auto;
    left: 0;
    height: 100%;
    width: 3px;
    background-color: #a9c056;
    opacity: 0;
    -webkit-transition: opacity 0.2s;
    -moz-transition: opacity 0.2s;
    transition: opacity 0.2s;
  }
  .cd-faq-categories .selected {
    background: #42464b !important;
  }
  .cd-faq-categories .selected::before {
    opacity: 1;
  }
  .cd-faq-categories.is-fixed {
    /* top and left value assigned in jQuery */
    position: fixed;
  }
  .no-js .cd-faq-categories {
    position: relative;
  }
}

.cd-faq-items {
  position: relative;
  height: 100%;
  width: 100%;
  top: 0;
  right: 0;
    padding: 0 20px;
  background: #ffffff;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  z-index: 1;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transform: translateZ(0) translateX(100%);
  -moz-transform: translateZ(0) translateX(100%);
  -ms-transform: translateZ(0) translateX(100%);
  -o-transform: translateZ(0) translateX(100%);
  transform: translateZ(0) translateX(100%);
  -webkit-transition: -webkit-transform .3s;
  -moz-transition: -moz-transform .3s;
  transition: transform .3s;
}
.cd-faq-items.slide-in {
  -webkit-transform: translateZ(0) translateX(0%);
  -moz-transform: translateZ(0) translateX(0%);
  -ms-transform: translateZ(0) translateX(0%);
  -o-transform: translateZ(0) translateX(0%);
  transform: translateZ(0) translateX(0%);
}
.no-js .cd-faq-items {
  position: static;
  height: auto;
  width: 100%;
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  -o-transform: translateX(0);
  transform: translateX(0);
}
@media only screen and (min-width: 768px) {
  .cd-faq-items {
    position: static;
    height: auto;
    width: 78%;
    float: right;
    overflow: visible;
    -webkit-transform: translateZ(0) translateX(0);
    -moz-transform: translateZ(0) translateX(0);
    -ms-transform: translateZ(0) translateX(0);
    -o-transform: translateZ(0) translateX(0);
    transform: translateZ(0) translateX(0);
    padding: 0;
    background: transparent;
  }
}
@media only screen and (min-width: 1024px) {
  .cd-faq-items {
    float: none;
    width: 100%;
    padding-left: 220px;
  }
  .no-js .cd-faq-items {
    padding-left: 0;
  }
}

.cd-close-panel {
  position: fixed;
  top: 5px;
  right: -100%;
  display: block;
  height: 40px;
  width: 40px;
  overflow: hidden;
  text-indent: 100%;
  white-space: nowrap;
  z-index: 2;
  /* Force Hardware Acceleration in WebKit */
  -webkit-transform: translateZ(0);
  -moz-transform: translateZ(0);
  -ms-transform: translateZ(0);
  -o-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transition: right 0.4s;
  -moz-transition: right 0.4s;
  transition: right 0.4s;
}
.cd-close-panel::before, .cd-close-panel::after {
  /* close icon in CSS */
  position: absolute;
  top: 16px;
  left: 12px;
  display: inline-block;
  height: 3px;
  width: 18px;
  background: #6c7d8e;
}
.cd-close-panel::before {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}
.cd-close-panel::after {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.cd-close-panel.move-left {
  right: 2%;
}
@media only screen and (min-width: 768px) {
  .cd-close-panel {
    display: none;
  }
}

.cd-faq-group {
  /* hide group not selected */
  display: none;
}
.cd-faq-group.selected {
  display: block;
}
.cd-faq-group .cd-faq-title {
  background: transparent;
  box-shadow: none;
  margin: 1em 0;
}
.no-touch .cd-faq-group .cd-faq-title:hover {
  box-shadow: none;
}
.cd-faq-group .cd-faq-title h2 {
  text-transform: uppercase;
  font-size: 12px;
  font-size: 0.75rem;
  font-weight: 700;
  color: #444;
}
.no-js .cd-faq-group {
  display: block;
}
@media only screen and (min-width: 768px) {
  .cd-faq-group {
    /* all groups visible */
    display: block;
  }
  .cd-faq-group > li {
    background: #ffffff;
    margin-bottom: 6px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.08);
    -webkit-transition: box-shadow 0.2s;
    -moz-transition: box-shadow 0.2s;
    transition: box-shadow 0.2s;
  }
  .no-touch .cd-faq-group > li:hover {
    box-shadow: 0 1px 10px rgba(108, 125, 142, 0.3);
  }
  .cd-faq-group .cd-faq-title {
    margin: 2em 0 1em;
  }
  .cd-faq-group:first-child .cd-faq-title {
    margin-top: 0;
  }
}

.cd-faq-trigger {
  position: relative;
  display: block;
  margin: 1.6em 0 .4em;
  line-height: 1.2;
}
@media only screen and (min-width: 768px) {
  .cd-faq-trigger {
    font-size: 18px;
    font-weight: 300;
    margin: 0;
    padding: 16px 72px 16px 24px;
  }
  .cd-faq-trigger::before, .cd-faq-trigger::after {
    /* arrow icon on the right */
    position: absolute;
    right: 24px;
    top: 50%;
    height: 2px;
    width: 13px;
    background: #666;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transition-property: -webkit-transform;
    -moz-transition-property: -moz-transform;
    transition-property: transform;
    -webkit-transition-duration: 0.2s;
    -moz-transition-duration: 0.2s;
    transition-duration: 0.2s;
  }
  .cd-faq-trigger::before {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
    right: 32px;
  }
  .cd-faq-trigger::after {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }
  .content-visible .cd-faq-trigger::before {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }
  .content-visible .cd-faq-trigger::after {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
  }
}

.cd-faq-content p {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.4;
  color: #6c7d8e;
}
@media only screen and (min-width: 768px) {
  .cd-faq-content {
    display: none;
    padding: 0 24px 30px;
  }
  .cd-faq-content p {
    line-height: 1.6;
  }
  .no-js .cd-faq-content {
    display: block;
  }
}


.cd-faq-trigger::after, .cd-faq-trigger::before {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.cd-faq-trigger::after, .cd-faq-trigger::before {
  content: '';
}


/* -------------------------------- 

Main components 

-------------------------------- */



.desktop {
    display: block;
}
.mobile {
     display: none;
}

@media only screen and (max-width: 900px) {
    
    .desktop {
        display: none;
    }
    .mobile {
        display: block;
    }
    
}


#cd-team {
    width: 100%;
    margin: auto;
    padding: 20px 0;
    max-width: 1360px;
}
#cd-team li {
    margin-bottom: 2em;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0);
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
    text-align: center;
}
.no-touch #cd-team li:hover {
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}
.no-touch #cd-team li:hover .cd-img-overlay {
    opacity: 1;
    text-transform: uppercase;
    font-weight: 500;
    font-size: 18px;
    line-height: 26px;
}
#cd-team figure {
    position: relative;
}
#cd-team img {
    display: block;
    width: 100%;
    -webkit-border-top-left-radius: 4px;
    -webkit-border-top-right-radius: 4px;
    -moz-border-radius-topleft: 4px;
    -moz-border-radius-topright: 4px;
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
}
#cd-team .cd-img-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(244, 118, 34, 0.7);
    opacity: 0;
    -webkit-border-top-left-radius: 4px;
    -webkit-border-top-right-radius: 4px;
    -moz-border-radius-topleft: 4px;
    -moz-border-radius-topright: 4px;
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
    -webkit-transition: opacity 0.3s;
    -moz-transition: opacity 0.3s;
    transition: opacity 0.3s;
    text-transform: uppercase;
    font-weight: 500;
    font-size: 18px;
    line-height: 26px;
}
#cd-team .cd-img-overlay span {
    position: absolute;
    left: 50%;
    top: 50%;
    bottom: auto;
    right: auto;
    -webkit-transform: translateX(-50%) translateY(-50%);
    -moz-transform: translateX(-50%) translateY(-50%);
    -ms-transform: translateX(-50%) translateY(-50%);
    -o-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
    color: #FFF;
}
#cd-team .cd-member-info {
    height: 160px;
    background: #FFF;
    text-align: center;
    font-weight: bold;
    padding-top: 20px;
    font-size: 24px;
    font-weight: 300;
    -webkit-border-bottom-right-radius: 4px;
    -webkit-border-bottom-left-radius: 4px;
    -moz-border-radius-bottomright: 4px;
    -moz-border-radius-bottomleft: 4px;
    border-bottom-right-radius: 4px;
    border-bottom-left-radius: 4px;
}
#cd-team .cd-member-info span {
    display: block;
    font-weight: normal;
    color: #999999;
    font-size: 14px;
    font-size: 0.875rem;
    margin-top: .5em;
}
@media only screen and (min-width: 768px) {
    #cd-team li {
        width: 31%;
        float: left;
        margin-right: 1%;
        margin-left: 1%;
    }
    #cd-team li:nth-child(5n) {
        margin-right: 0;
    }
}
/* To Top */

.cd-top {
    display: inline-block;
    height: 40px;
    width: 40px;
    position: fixed;
    bottom: 40px;
    right: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
    /* image replacement properties */
    overflow: hidden;
    text-indent: 100%;
    white-space: nowrap;
    background: #1e1e1e url(../img/cd-top-arrow.svg) no-repeat center 50%;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: opacity .3s 0s, visibility 0s .3s;
    -moz-transition: opacity .3s 0s, visibility 0s .3s;
    transition: opacity .3s 0s, visibility 0s .3s;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
}
.cd-top.cd-is-visible,
.cd-top.cd-fade-out,
.no-touch .cd-top:hover {
    -webkit-transition: opacity .3s 0s, visibility 0s 0s;
    -moz-transition: opacity .3s 0s, visibility 0s 0s;
    transition: opacity .3s 0s, visibility 0s 0s;
}
.cd-top.cd-is-visible {
    /* the button becomes visible */
    visibility: visible;
    opacity: 1;
}
.cd-top.cd-fade-out {
    /* if the user keeps scrolling down, the button is out of focus and becomes less visible */
    opacity: .5;
}
.no-touch .cd-top:hover {
    background-color: #646363;
    opacity: 1;
}
@media only screen and (min-width: 768px) {
    .cd-top {
        right: 20px;
        bottom: 20px;
    }
}
@media only screen and (min-width: 1024px) {
    .cd-top {
        height: 60px;
        width: 60px;
        right: 30px;
        bottom: 30px;
    }
}
/* testamonials */

.cd-testimonials-wrapper {
    position: relative;
    width: 100%;
    background-color: #39393c;
    margin: 0px auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    padding: 20px 40px 20px;
    z-index: 1;
}
.cd-testimonials-wrapper::after {
    /* quotation mark */
    content: '\201C';
    position: absolute;
    top: 10px;
    left: 0;
    width: 50px;
    height: 50px;
    padding-top: 8px;
    margin-left: -25px;
    background: rgba(32, 32, 34, 0.9);
    font-family: "Georgia", serif;
    color: white;
    font-size: 70px;
    font-size: 4.375rem;
    text-align: center;
    /* visible on big devices only */
    display: none;
}
@media only screen and (min-width: 768px) {
    .cd-testimonials-wrapper {
        margin: 0px auto;
        padding: 64px 50px 64px;
    }
}
@media only screen and (min-width: 1170px) {
    .cd-testimonials-wrapper::after {
        /* quotation mark visible */
        display: block;
    }
}
.cd-testimonials {
    color: white;
    text-align: center;
}
.cd-testimonials:after {
    content: "";
    display: table;
    clear: both;
}
.cd-testimonials > li {
    position: absolute;
    opacity: 0;
}
.cd-testimonials > li:first-child {
    position: relative;
    opacity: 1;
}
.cd-testimonials p {
    font-style: italic;
    line-height: 1.4;
    margin-bottom: 1em;
    padding: 0 14px;
}
@media only screen and (min-width: 768px) {
    .cd-testimonials p {
        font-size: 22px;
        font-size: 1.375rem;
    }
}
@media only screen and (min-width: 1170px) {
    .cd-testimonials p {
        font-size: 26px;
        font-size: 1.625rem;
        line-height: 1.6;
    }
}
.cd-author img,
.cd-author .cd-author-info {
    display: inline-block;
    vertical-align: middle;
}
.cd-author img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    margin-right: 5px;
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.3);
}
.cd-author .cd-author-info {
    text-align: left;
    line-height: 1.2;
}
.cd-author .cd-author-info li:first-child {
    font-size: 14px;
    font-size: 0.875rem;
}
.cd-author .cd-author-info li:last-child {
    font-size: 12px;
    font-size: 0.75rem;
    color: #6b6b70;
}
@media only screen and (min-width: 768px) {
    .cd-author img {
        width: 50px;
        height: 50px;
    }
    .cd-author .cd-author-info {
        line-height: 1.4;
    }
    .cd-author .cd-author-info li:first-child {
        font-size: 16px;
        font-size: 1rem;
    }
    .cd-author .cd-author-info li:last-child {
        font-size: 14px;
        font-size: 0.875rem;
    }
}
.flex-direction-nav li {
    position: absolute;
    height: 100%;
    width: 40px;
    top: 0;
}
.flex-direction-nav li:first-child {
    left: 0;
}
.flex-direction-nav li:last-child {
    right: 0;
}
.flex-direction-nav li:first-child a {
    -webkit-border-top-left-radius: 4px;
    -webkit-border-bottom-left-radius: 4px;
    -moz-border-radius-topleft: 4px;
    -moz-border-radius-bottomleft: 4px;
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
}
.flex-direction-nav li:last-child a {
    -webkit-border-top-right-radius: 4px;
    -webkit-border-bottom-right-radius: 4px;
    -moz-border-radius-topright: 4px;
    -moz-border-radius-bottomright: 4px;
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
}
.flex-direction-nav li a {
    display: block;
    height: 100%;
    width: 100%;
    /* image replacement */
    overflow: hidden;
    text-indent: 100%;
    white-space: nowrap;
    -webkit-transition: background-color 0.2s;
    -moz-transition: background-color 0.2s;
    transition: background-color 0.2s;
}
.no-touch .flex-direction-nav li a:hover {
    background-color: #323234;
}
.flex-direction-nav li a::before,
.flex-direction-nav li a::after {
    /* left and right arrows in css only */
    content: '';
    position: absolute;
    left: 50%;
    top: 58%;
    width: 2px;
    height: 13px;
    background-color: white;
}
.flex-direction-nav li a::before {
    -webkit-transform: translateY(-35px) rotate(45deg);
    -moz-transform: translateY(-35px) rotate(45deg);
    -ms-transform: translateY(-35px) rotate(45deg);
    -o-transform: translateY(-35px) rotate(45deg);
    transform: translateY(-35px) rotate(45deg);
}
.flex-direction-nav li a::after {
    -webkit-transform: translateY(-27px) rotate(-45deg);
    -moz-transform: translateY(-27px) rotate(-45deg);
    -ms-transform: translateY(-27px) rotate(-45deg);
    -o-transform: translateY(-27px) rotate(-45deg);
    transform: translateY(-27px) rotate(-45deg);
}
.flex-direction-nav li:last-child a::before {
    -webkit-transform: translateY(-35px) rotate(-45deg);
    -moz-transform: translateY(-35px) rotate(-45deg);
    -ms-transform: translateY(-35px) rotate(-45deg);
    -o-transform: translateY(-35px) rotate(-45deg);
    transform: translateY(-35px) rotate(-45deg);
}
.flex-direction-nav li:last-child a::after {
    -webkit-transform: translateY(-27px) rotate(45deg);
    -moz-transform: translateY(-27px) rotate(45deg);
    -ms-transform: translateY(-27px) rotate(45deg);
    -o-transform: translateY(-27px) rotate(45deg);
    transform: translateY(-27px) rotate(45deg);
}
@media only screen and (min-width: 768px) {
    .flex-direction-nav li {
        width: 50px;
    }
}
@media only screen and (min-width: 1170px) {
    .flex-direction-nav li a::before,
    .flex-direction-nav li a::after {
        background-color: #5e5e63;
        -webkit-transition: background-color 0.2s;
        -moz-transition: background-color 0.2s;
        transition: background-color 0.2s;
    }
    .flex-direction-nav li a:hover::before,
    .flex-direction-nav li a:hover::after {
        background-color: white;
    }
}
.cd-see-all {
    position: absolute;
    z-index: 1;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 50px;
    line-height: 50px;
    background-color: #252527;
    text-align: center;
    text-transform: uppercase;
    color: #6b6b70;
    font-weight: 700;
    font-size: 12px;
    font-size: 0.75rem;
    -webkit-transition: color, 0.2s;
    -moz-transition: color, 0.2s;
    transition: color, 0.2s;
    -webkit-border-bottom-right-radius: 4px;
    -webkit-border-bottom-left-radius: 4px;
    -moz-border-radius-bottomright: 4px;
    -moz-border-radius-bottomleft: 4px;
    border-bottom-right-radius: 4px;
    border-bottom-left-radius: 4px;
}
.no-touch .cd-see-all:hover {
    color: #79b6e4;
}
.cd-testimonials-all {
    position: fixed;
    top: 70px;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: #f1f1f1;
    z-index: 2;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: opacity .3s 0s, visibility 0s .3s;
    -moz-transition: opacity .3s 0s, visibility 0s .3s;
    transition: opacity .3s 0s, visibility 0s .3s;
}
.cd-testimonials-all .cd-testimonials-all-wrapper {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
}
.cd-testimonials-all .cd-testimonials-all-wrapper > ul {
    width: 90%;
    max-width: 1170px;
    margin: 4em auto;
}
.cd-testimonials-all .cd-testimonials-all-wrapper > ul:after {
    content: "";
    display: table;
    clear: both;
}
.cd-testimonials-all .cd-testimonials-item {
    margin-bottom: 2em;
    opacity: 0;
    /* Force Hardware Acceleration in WebKit */
    -webkit-transform: translate3d(0, 0, 0) scale(0.4);
    -moz-transform: translate3d(0, 0, 0) scale(0.4);
    -ms-transform: translate3d(0, 0, 0) scale(0.4);
    -o-transform: translate3d(0, 0, 0) scale(0.4);
    transform: translate3d(0, 0, 0) scale(0.4);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transition: -webkit-transform .3s, opacity .3s;
    -moz-transition: -moz-transform .3s, opacity .3s;
    transition: transform .3s, opacity .3s;
}
.cd-testimonials-all p {
    position: relative;
    background: #79b6e4;
    color: white;
    padding: 2em;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    line-height: 1.4;
    border-radius: 0.25em;
    margin-bottom: 1em;
}
.cd-testimonials-all p::after {
    /* creating the triangle in css */
    content: '';
    position: absolute;
    top: 100%;
    left: 2em;
    height: 0;
    width: 0;
    border: 8px solid transparent;
    border-top-color: #79b6e4;
}
.cd-testimonials-all .cd-author {
    text-align: left;
    margin-left: 1.5em;
}
.cd-testimonials-all .cd-author img {
    box-shadow: 0 0 0 transparent;
}
.cd-testimonials-all.is-visible {
    visibility: visible;
    opacity: 1;
    -webkit-transition: opacity .3s 0s, visibility 0s 0s;
    -moz-transition: opacity .3s 0s, visibility 0s 0s;
    transition: opacity .3s 0s, visibility 0s 0s;
}
.cd-testimonials-all.is-visible .cd-testimonials-item {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0) scale(1);
    -moz-transform: translate3d(0, 0, 0) scale(1);
    -ms-transform: translate3d(0, 0, 0) scale(1);
    -o-transform: translate3d(0, 0, 0) scale(1);
    transform: translate3d(0, 0, 0) scale(1);
}
@media only screen and (min-width: 768px) {
    .cd-testimonials-all .cd-testimonials-item {
        width: 46%;
        margin: 0 2% 3em;
    }
    .cd-testimonials-all .cd-author {
        margin-left: 1em;
    }
}
@media only screen and (min-width: 1170px) {
    .cd-testimonials-all .cd-testimonials-item {
        width: 30%;
        margin: 0 1.6666% 3em;
    }
}
.close-btn {
    position: fixed;
    display: block;
    width: 40px;
    height: 40px;
    top: 80px;
    right: 5%;
    /* image replacement */
    overflow: hidden;
    text-indent: 100%;
    white-space: nowrap;
}
.close-btn::before,
.close-btn::after {
    /* close icon in css */
    content: '';
    position: absolute;
    display: inline-block;
    width: 2px;
    height: 24px;
    top: 8px;
    left: 19px;
    background-color: #39393c;
}
.close-btn::before {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
}
.close-btn::after {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
}
.cd-tabs {
    position: relative;
    width: 100%;
    margin: 40px auto;
}
.cd-tabs:after {
    content: "";
    display: table;
    clear: both;
}
.cd-tabs::after {
    /* subtle gradient layer on top right - to indicate it's possible to scroll */
    position: absolute;
    top: 0;
    right: 0;
    height: 60px;
    width: 50px;
    z-index: 1;
    pointer-events: none;
    visibility: visible;
    opacity: 1;
    -webkit-transition: opacity .3s 0s, visibility 0s 0s;
    -moz-transition: opacity .3s 0s, visibility 0s 0s;
    transition: opacity .3s 0s, visibility 0s 0s;
}
.no-cssgradients .cd-tabs::after {
    display: none;
}
.cd-tabs.is-ended::after {
    /* class added in jQuery - remove the gradient layer when it's no longer possible to scroll */
    visibility: hidden;
    opacity: 0;
    -webkit-transition: opacity .3s 0s, visibility 0s .3s;
    -moz-transition: opacity .3s 0s, visibility 0s .3s;
    transition: opacity .3s 0s, visibility 0s .3s;
}
.cd-tabs nav {
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    background: #fff;
}
.cd-tabs-navigation:after {
    content: "";
    display: table;
    clear: both;
}
.cd-tabs-navigation li {
    display: inline-block;
    margin: auto;
}
.cd-tabs-navigation a {
    position: relative;
    display: inline-block;
    height: 40px;
    text-align: center;
    font-size: 14px;
    line-height: 40px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-weight: 300;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0px;
    background-color: #646363;
    padding: 0 30px;
}
.no-touch .cd-tabs-navigation a:hover {
    color: #ffffff;
    background-color: #a1a4a7;
}
.cd-tabs-navigation a.selected {
    height: 80px;
    font-size: 18px;
    line-height: 40px;
    padding: 12px 30px 0 30px;
    margin: 0px 0 20px 0;
    background-color: #1d1d1b !important;
    color: #fff;
    font-family: 'DIN-Bold', verdana, sans-serif;
    background-image: url(../img/tab.png);
    background-position: bottom center;
    background-repeat: no-repeat;
}

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

.cd-tabs-navigation {
    margin: 0 0 40px 0;       
}
    
.cd-tabs-navigation li {
    display: block;
    margin: 0 auto 2px auto;
}
.cd-tabs-navigation a {
    position: relative;
    display: block;
    height: 40px;
    text-align: center;
    font-size: 14px;
    line-height: 40px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0px;
    padding: 0 30px;
}
.no-touch .cd-tabs-navigation a:hover {
    color: #ffffff;
}
.cd-tabs-navigation a.selected {
    position: relative;
    display: block;
    height: 40px;
    text-align: center;
    margin: 0;
    font-size: 14px;
    line-height: 40px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0 30px;
    background-image: none;
} 
    
}


.cd-tabs-content {
    background: #fff;
    text-align: center;
    width: 100%;
    max-width: 980px;
    margin: 0 auto 0px auto;
    
}
.cd-tabs-content li {
    display: none;
}
.cd-tabs-content li.selected {
    display: block;
    -webkit-animation: cd-fade-in 0.5s;
    -moz-animation: cd-fade-in 0.5s;
    animation: cd-fade-in 0.5s;
    padding: 0 0 10px 0;
}
@-webkit-keyframes cd-fade-in {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
@-moz-keyframes cd-fade-in {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
@keyframes cd-fade-in {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

/* VIDEO GALLERY */
.zenvideogallerytext {
  text-align: center;
  max-width: 700px;
  margin: auto; }

.zenvideogallerytemplate {
  background-image: none; }

.zenvideogalleryitem {
  margin: 0 0 0px 0;
  padding: 0; }

.zenvideogallery {
  text-align: center;
  max-width: 1360px;
  width: 100%;
  margin: 0px auto 0 auto; }

.zenvideogallery .zenvideo {
  margin: 0px auto 0px auto; }

.zenvideogallery .bx-pager {
  text-align: center;
  width: 100%;
  max-width: 1360px;
  margin: 10px auto 0 auto; }

.zenvideogallery .bx-pager a {
  width: 19%;
  margin: 0 0.1% 10px 0.1%;
  text-align: left;
  display: inline-block;
  color: #fff;
  background-color: #ccc;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out; }


.zenvideogallery .bx-pager a p {
  font-size: 12px;
  line-height: 16px;
  padding: 0px 10px 0px 10px; }

.zenvideogallery .bx-pager a p b {
  font-size: 14px;
  line-height: 20px;
  font-weight: 800;
  color: #fff;
  margin: 0px 0 0 0; }

.zenvideogallery .bx-pager a img {
  margin: 0 0 0px 0;
  zoom: 1;
  filter: alpha(opacity=50);
  opacity: 0.5;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out; }

.zenvideogallery .bx-pager a:hover img {
  zoom: 1;
  filter: alpha(opacity=100);
  opacity: 1.0; }

.zenvideogallery .bx-pager a:hover {
  background-color: #ee7122; }

.zenvideogallery .bx-pager a.active {
  background-color: #ee7122; }

.zenvideogallery .bx-pager a.active img {
  zoom: 1;
  filter: alpha(opacity=100);
  opacity: 1.0; }

@media only screen and (max-width: 760px) {
  .zenvideogallery .bx-pager a {
    width: 24%;
    margin: 0 0.1% 10px 0.1%;
    text-align: left;
    display: inline-block;
    color: #fff;
    background-color: #ccc;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out; } }
@media only screen and (max-width: 600px) {
  .zenvideogallery .bx-pager a {
    width: 30%;
    margin: 0 0.1% 10px 0.1%;
    text-align: left;
    display: inline-block;
    color: #fff;
    background-color: #ccc;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out; } }
@media only screen and (max-width: 440px) {
  .zenvideogallery .bx-pager a {
    width: 36%;
    margin: 0 0.1% 10px 0.1%;
    text-align: left;
    display: inline-block;
    color: #fff;
    background-color: #ccc;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out; } }
@media only screen and (max-width: 380px) {
  .zenvideogallery .bx-pager a {
    width: 46%;
    margin: 0 0.1% 10px 0.1%;
    text-align: left;
    display: inline-block;
    color: #fff;
    background-color: #ccc;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out; } }






.cd-scroll-down {
  position: absolute;
  left: 50%;
  right: auto;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
  bottom: 20px;
  width: 38px;
  height: 44px;
  background: url("../img/cd-arrow-bottom.svg") no-repeat center center;
}

/* No Touch devices */
.cd-nav-trigger {
  display: none;
}

.no-touch #cd-vertical-nav {
  position: fixed;
  right: 40px;
  top: 50%;
  bottom: auto;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 1;
}
.no-touch #cd-vertical-nav li {
  text-align: right;
}
.no-touch #cd-vertical-nav a {
  display: inline-block;
  /* prevent weird movements on hover when you use a CSS3 transformation - webkit browsers */
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.no-touch #cd-vertical-nav a:after {
  content: "";
  display: table;
  clear: both;
}
.no-touch #cd-vertical-nav a span {
  float: right;
  display: inline-block;
  -webkit-transform: scale(0.6);
  -moz-transform: scale(0.6);
  -ms-transform: scale(0.6);
  -o-transform: scale(0.6);
  transform: scale(0.6);
}
.no-touch #cd-vertical-nav a:hover span {
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
}
.no-touch #cd-vertical-nav a:hover .cd-label {
  opacity: 1;
}
.no-touch #cd-vertical-nav a.is-selected .cd-dot {
  background-color: white;
}
.no-touch #cd-vertical-nav .cd-dot {
  position: relative;
  /* we set a top value in order to align the dot with the label. If you change label's font, you may need to change this top value*/
  top: 8px;
  height: 12px;
  width: 12px;
  border-radius: 50%;
  background-color: #d88683;
  -webkit-transition: -webkit-transform 0.2s, background-color 0.5s;
  -moz-transition: -moz-transform 0.2s, background-color 0.5s;
  transition: transform 0.2s, background-color 0.5s;
  -webkit-transform-origin: 50% 50%;
  -moz-transform-origin: 50% 50%;
  -ms-transform-origin: 50% 50%;
  -o-transform-origin: 50% 50%;
  transform-origin: 50% 50%;
}
.no-touch #cd-vertical-nav .cd-label {
  position: relative;
  margin-right: 10px;
  padding: .4em .5em;
  color: white;
  font-size: 14px;
  font-size: 0.875rem;
  -webkit-transition: -webkit-transform 0.2s, opacity 0.2s;
  -moz-transition: -moz-transform 0.2s, opacity 0.2s;
  transition: transform 0.2s, opacity 0.2s;
  opacity: 0;
  -webkit-transform-origin: 100% 50%;
  -moz-transform-origin: 100% 50%;
  -ms-transform-origin: 100% 50%;
  -o-transform-origin: 100% 50%;
  transform-origin: 100% 50%;
}

/* Touch devices */
.touch .cd-nav-trigger {
  display: block;
  z-index: 2;
  position: fixed;
  bottom: 30px;
  right: 5%;
  height: 44px;
  width: 44px;
  border-radius: 0.25em;
  background: rgba(255, 255, 255, 0.9);
}
.touch .cd-nav-trigger span {
  position: absolute;
  height: 4px;
  width: 4px;
  background-color: #3e3947;
  border-radius: 50%;
  left: 50%;
  top: 50%;
  bottom: auto;
  right: auto;
  -webkit-transform: translateX(-50%) translateY(-50%);
  -moz-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  -o-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
}
.touch .cd-nav-trigger span::before, .touch .cd-nav-trigger span::after {
  content: '';
  height: 100%;
  width: 100%;
  position: absolute;
  left: 0;
  background-color: inherit;
  border-radius: inherit;
}
.touch .cd-nav-trigger span::before {
  top: -9px;
}
.touch .cd-nav-trigger span::after {
  bottom: -9px;
}

.touch #cd-vertical-nav {
  position: fixed;
  z-index: 1;
  right: 5%;
  bottom: 30px;
  width: 90%;
  max-width: 400px;
  max-height: 90%;
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
  -webkit-transform-origin: right bottom;
  -moz-transform-origin: right bottom;
  -ms-transform-origin: right bottom;
  -o-transform-origin: right bottom;
  transform-origin: right bottom;
  -webkit-transform: scale(0);
  -moz-transform: scale(0);
  -ms-transform: scale(0);
  -o-transform: scale(0);
  transform: scale(0);
  -webkit-transition-property: -webkit-transform;
  -moz-transition-property: -moz-transform;
  transition-property: transform;
  -webkit-transition-duration: 0.2s;
  -moz-transition-duration: 0.2s;
  transition-duration: 0.2s;
  border-radius: 0.25em;
  background-color: rgba(255, 255, 255, 0.9);
}
.touch #cd-vertical-nav a {
  display: block;
  padding: 1em;
  border-bottom: 1px solid rgba(62, 57, 71, 0.1);
}
.touch #cd-vertical-nav a span:first-child {
  display: none;
}
.touch #cd-vertical-nav a.is-selected span:last-child {
  color: #d88683;
}
.touch #cd-vertical-nav.open {
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
}
.touch #cd-vertical-nav.open + .cd-nav-trigger {
  background-color: transparent;
}
.touch #cd-vertical-nav.open + .cd-nav-trigger span {
  background-color: rgba(62, 57, 71, 0);
}
.touch #cd-vertical-nav.open + .cd-nav-trigger span::before, .touch #cd-vertical-nav.open + .cd-nav-trigger span::after {
  background-color: #3e3947;
  height: 3px;
  width: 20px;
  border-radius: 0;
  left: -8px;
}
.touch #cd-vertical-nav.open + .cd-nav-trigger span::before {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
  top: 1px;
}
.touch #cd-vertical-nav.open + .cd-nav-trigger span::after {
  -webkit-transform: rotate(135deg);
  -moz-transform: rotate(135deg);
  -ms-transform: rotate(135deg);
  -o-transform: rotate(135deg);
  transform: rotate(135deg);
  bottom: 0;
}
.touch #cd-vertical-nav li:last-child a {
  border-bottom: none;
}

@media only screen and (min-width: 768px) {
  .touch .cd-nav-trigger, .touch #cd-vertical-nav {
    bottom: 40px;
  }
}









#google-container {
  position: relative;
  width: 100%;
  height: 200px;
  background-color: #e7eaf0;
}
@media only screen and (min-width: 768px) {
  #google-container {
    height: 300px;
  }
}
@media only screen and (min-width: 1170px) {
  #google-container {
    height: 600px;
  }
}

#cd-google-map {
  position: relative;
}
#cd-google-map address {
  position: absolute;
  width: 100%;
  bottom: 0;
  left: 0;
  padding: 1em 1em;
  background-color: rgba(211, 104, 104, 0.9);
  color: white;
  font-size: 13px;
  font-size: 0.8125rem;
}
@media only screen and (min-width: 768px) {
  #cd-google-map address {
    font-size: 15px;
    font-size: 0.9375rem;
    text-align: center;
  }
}

#cd-zoom-in, #cd-zoom-out {
  height: 32px;
  width: 32px;
  cursor: pointer;
  margin-left: 10px;
  background-color: rgba(211, 104, 104, 0.9);
  background-repeat: no-repeat;
  background-size: 32px 64px;
  background-image: url("../img/cd-icon-controller.svg");
}
.no-touch #cd-zoom-in:hover, .no-touch #cd-zoom-out:hover {
  background-color: #d36868;
}
@media only screen and (min-width: 768px) {
  #cd-zoom-in, #cd-zoom-out {
    margin-left: 50px;
  }
}

#cd-zoom-in {
  background-position: 50% 0;
  margin-top: 10px;
  margin-bottom: 1px;
}
@media only screen and (min-width: 768px) {
  #cd-zoom-in {
    margin-top: 50px;
  }
}

#cd-zoom-out {
  background-position: 50% -32px;
}






/* NEW IPEXPO DESIGN */

html {
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.004);
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -webkit-text-size-adjust: 100%;
    font-weight: normal;
    color: #1e1e1e;
    min-width: 320px;
}
body {
    font-family: 'Lato', Verdana, Geneva, sans-serif;
    background-color: #333;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
    min-width: 320px;
}


@media only screen and (max-width: 1169px) {
    body.nav-on-left.overflow-hidden {
        overflow: hidden;
    }
}
p {
    font-weight: 300;
    font-size: 14px;
    line-height: 26px;
    margin: 10px 0 15px 0;
}
b {
    font-weight: 500;
}
a {
    color: #c41215;
    text-decoration: none;
}
.clear {
    clear: both;
}
h1 {
    font-family: 'DIN-Bold', Verdana, Geneva, sans-serif;
    font-size: 30px;
    line-height: 36px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0px;
    color: #1d1d1b;
    margin: 30px 0 30px 0;
}
h2 {
    font-family: 'DIN-Bold', Verdana, Geneva, sans-serif;
    font-size: 26px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0px;
    color: #333;
    margin: 20px 0 30px 0;
}
h3 {
    font-family: 'DIN-Bold', Verdana, Geneva, sans-serif;
    font-size: 32px;
    font-weight: 300;
    color: #fff;
    margin: 0 0 30px 0;
}
h4 {
    font-family: 'DIN-Medium', Verdana, Geneva, sans-serif;
    font-size: 32px;
    font-weight: 300;
    color: #fff;
    margin: 0 0 30px 0;
}
h5 {
    font-family: 'DIN-Regular', Verdana, Geneva, sans-serif;
    font-size: 35px;
    font-weight: 300;
}
.button {
    background-color: #fff;
    padding: 14px 24px 14px 24px;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
    color: #333;
    letter-spacing: 0px;
    text-transform: uppercase;
    font-size: 14px;
    display: block;
    width: 100%;
    max-width: 240px;
    margin: 0 auto 10px auto;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
}
.button:hover {
    background-color: #333;
    color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}
.buttondark {
    background-color: #333;
    padding: 14px 24px 14px 24px;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
    color: #fff;
    letter-spacing: 0px;
    text-transform: uppercase;
    font-size: 14px;
    display: block;
    width: 100%;
    max-width: 320px;
    margin: 0 auto 10px auto;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
}
.buttondark:hover {
    background-color: #f47622;
    color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

.registerbutton { height: 50px;}
.registerbutton img { height: 50px;}

.headingtext {
    max-width: 500px;
    width: 100%;
    margin: auto;
}
.content {
    width: 100%;
    max-width: 1280px;
    margin: 0px auto 0 auto;
    padding: 30px 15px;
}

.contentsml {
    width: 100%;
    max-width: 900px;
    margin: 0px auto 0 auto;
    padding: 30px 15px;
}

.home {
    width: 100%;
    background-color: #ffffff;
    background-repeat: no-repeat;
    background-size: cover;
}
h2.homeheading {
    border: none!important;
    text-align: center!important;
    font-size: 1.8em;
}
.whitebox {
    padding: 50px 20px 30px 20px;
}
.icons {
    width: 100%;
    text-align: center;
}

.icon img {
    background-color: #333;
    width: 90px;
    height: 90px;
    padding: 20px;
    display: block;
    margin: auto;
    -webkit-border-radius: 45px;
    -moz-border-radius: 45px;
    border-radius: 45px;
    border: #333 5px solid;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
}
.icon img:hover {
    background-color: #f1f1f1;
    width: 90px;
    height: 90px;
    padding: 20px;
    display: block;
    margin: auto;
    -webkit-border-radius: 45px;
    -moz-border-radius: 45px;
    border-radius: 45px;
    border: #ee7122 5px solid;
}


.icon {
    width: 120px;
    height: 120px;
    padding: 15px 0 0 0;
    margin: 10px 10px;
    display: inline-block;
    font-family: 'DIN-Bold', Verdana, Geneva, sans-serif;
    font-size: 14px;
    text-transform: uppercase;
}
.contenttypes {
    width: 100%;
    background-image: url(../img/bgcontent.jpg);
    background-repeat: no-repeat;
    background-size: cover;
}
.about {
    width: 100%;
    background-image: url(../img/bgabout.jpg);
    background-repeat: no-repeat;
    background-size: cover;
}
.features {
    width: 100%;
    background-image: url(../img/bgfeatures.jpg);
    background-repeat: no-repeat;
    background-size: cover;
}
.testimonials {
    width: 100%;
    min-height: 1000px;
    background-image: url(../img/bgtestimonials.jpg);
    background-repeat: no-repeat;
    background-size: cover;
}
.speakers {
    width: 100%;
    background-image: url(../img/bgspeakers.jpg);
    background-repeat: no-repeat;
    background-size: cover;
}
.speakerlogo {
    width: 140px!important;
    margin: auto;
}
.footer {
    width: 100%;
    background-color: #f1f1f1;
    text-align: center;
    padding: 0 0 30px 0;
}
.footer p {
    padding: 10px;
    margin: 20px 0 10px 0;
    color: #fff;
    font-size: 10px;
    letter-spacing: 1px;
    line-height: 24px;
}
.footer b {
    padding: 10px;
    font-weight: 600;
    margin: 20px 0 10px 0;
    font-size: 10px;
    line-height: 24px;
}
.footer a {
    padding: 12px;
    font-size: 12px;
    letter-spacing: 2px;
    display: inline-block;
}
@media only screen and (max-width: 700px) {

.footer a {
    padding: 12px;
    font-size: 12px;
    letter-spacing: 2px;
    display: block;
}

}
.allspeakers {
    width: 100%;
    background-color: #f1f1f1;
}
.allspeakers h1 {
    color: #6b84ab;
    margin: 0 0 30px 0;
}
.allspeakers ul {
    width: 100%;
    max-width: 1360px;
}
.allspeakers li {
    text-align: left;
    background-color: #fff;
    padding: 0px;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
    margin: 0 0 25px 0;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
}
.allspeakers li:hover {
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.2);
}
.allspeakers li img {
    width: 80px;
    float: left;
    margin: 0 10px 0 0;
    -webkit-border-top-left-radius: 4px;
    -webkit-border-bottom-left-radius: 4px;
    -moz-border-radius-topleft: 4px;
    -moz-border-radius-bottomleft: 4px;
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
}
.allspeakers li p {
    padding: 5px;
    font-size: 13px;
    line-height: 22px;
}
.allspeakers li b {
    font-weight: 600;
    font-size: 16px;
    line-height: 22px;
}
.allspeakers li a {
    font-weight: 900;
    letter-spacing: 2px;
    line-height: 25px;
    font-size: 15px;
    text-transform: uppercase;
}
@media only screen and (min-width: 768px) {
    .allspeakers li {
        width: 18%;
        float: left;
        margin-right: 1%;
        margin-left: 1%;
    }
    .allspeakers li:nth-child(5n) {
        margin-right: 0;
    }
}
.speaker {
    width: 100%;
    background-image: url(../img/bgspeaker.jpg);
    background-repeat: no-repeat;
    background-size: cover;
}
.speakerbox {
    background-color: #fff;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
    margin: 20px 0 30px 0;
}
.seminarbox {
    background-color: #fff;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
    margin: 20px 0 30px 0;
    padding: 20px;
    text-align: center;
}
.speakerbox img {
    float: left;
    width: 50%;
    margin: 0 20px 0 0;
    -webkit-border-top-left-radius: 4px;
    -webkit-border-bottom-left-radius: 4px;
    -moz-border-radius-topleft: 4px;
    -moz-border-radius-bottomleft: 4px;
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
}
.profile {
    padding: 30px;
    text-align: left;
}
.profile p {
    margin: 0 0 15px 0;
}
.social img {
    width: 48px;
    height: 48px;
    float: left;
}
.eventbox {
    width:100%;
    max-width: 280px;
    display: inline-block;
}
.mediapartnersfooter {
    background-color: #fff;
    width: 100%;
}
.mediapartnersfooterinner {
    margin: auto;
    width:100%;
}
.mediapartnersfooter h5 {
  font-size: 11px;
  text-transform: uppercase;
  background-color: #f9f9f9;
  padding: 8px 6px 6px 6px;
  letter-spacing: 0px;
    margin: -2px 0 0 0;
    color: #999;
}
.mediapartnersfooter .galleryitem img {
    width: 100px;
    height: 100px;
}

/* CONTENT STYLES */

.btn,
.btn-large {
    color: #fff!important;
}
.whitebox p {
    font-size: 14px;
    line-height: 24px;
    margin: 0 auto 24px auto;
}
.whitebox h1 {
    font-size: 32px;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #333;
    margin: 30px 0 20px 0;
}
.whitebox h2 {
    font-size: 26px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0px;
    color: #333;
    margin: 0px 0 15px 0;
}
.whitebox h3 {
    font-size: 24px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0px;
    color: #333;
    margin: 0 0 15px 0;
}
.whitebox h4 {
    font-size: 35px;
    font-weight: 300;
    color: #333;
    margin: 0 0 15px 0;
}
.whitebox h5 {
    font-size: 26px;
    font-weight: 500;
    color: #333;
    margin: 0 0 15px 0;
}
.whitebox h6 {
    font-size: 26px;
    font-weight: 500;
    color: #ee6e1f;
    margin: 0 0 15px 0;
}
.smallgallery {
    width:25%;
    max-width: 221px;
    float:left;
}
.contentright {
    float: right;
    width: 70%;
    margin: 0px 0 0 5%;
    text-align: left;
}

.centertext {
    text-align: center;
}

.lefttext {
    text-align: left;
}

.righttext {
    text-align: right;
}

.half {
    width: 46%;
    display: inline-block;
    margin: 0 2% 0 0;
    padding: 0;
}
.third {
    width: 30%;
    display: inline-block;
    margin: 0 2% 0 0;
    padding: 0;
}   
@media only screen and (max-width: 760px) {  

.content {
    padding: 20px 0px 20px 0px;
}
    
.whitebox h1 {
    font-size: 24px;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #333;
    margin: 0 0 20px 0;
}
.whitebox p {
    font-size: 14px;
    line-height: 24px;
    margin: 0 auto 24px auto;
}
    
.whitebox {
    padding: 15px;
    margin: 0px auto 0px auto;
}
    
.socialarea { 
    padding: 10px 10px 30px 10px;
}
    
}


.nopadding {padding: 0;}

.socialarea { background-image:url(../img/transparentblack.png); padding: 10px 30px 30px 30px; text-align: center;}
.socialareainner { max-width: 1360px; width: 100%; margin: auto;}
.socialarea h2 { color: #fff; font-size: 40px; font-family: 'DIN-Black', Verdana, Geneva, sans-serif; text-transform: uppercase;}
.socialarea h3 { color: #333; font-size: 20px; text-align: left; margin: 0 0 20px 0; font-family: 'DIN-Black', Verdana, Geneva, sans-serif; text-transform: uppercase;}


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

.socialarea { 
    padding: 10px 10px 30px 10px;
}
    
}

.cta {
    -webkit-transition: all 0.3s!important;
    -moz-transition: all 0.3s!important;
    transition: all 0.3s!important;
}


.pagewrapper { width: 100%; max-width: 1600px; margin: auto;}

.scrollspy {padding-top: 120px; margin-top: -120px;}


.sidefixednav { position: static; top: 120px;}

    

.dropdown-button { width: 50px; text-align: center; height: 50px; display: block; background-color: transparent; margin: auto;}

.dropdown-button i { font-size: 30px; color: #fff;}

.no-shadow {
  -webkit-box-shadow:none;
  -moz-box-shadow:none;
  box-shadow:none;
}

#exhibitors .mdi-navigation-chevron-right:before { font-size: 20px; line-height: 22px;}
#exhibitors .card .card-image { text-align: center;}
#exhibitors .card .card-image img { width: 80%; margin: auto;}
#exhibitors .card a { margin-right: 0px; font-size: 12px;}
#exhibitors .card i.right {  float: right;  margin: -4px 0 0 0; font-size: 10px;}




.pagination { margin: 10px auto 40px auto; height: 50px;}
.pagination li {
    width:34px;
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    border-radius: 0px;
}

.pagination li.active { background-color: #1d1d1b;}

.pagination li a {
  line-height: 32px;
}

.pagination li i {
  font-size: 2rem;
  line-height: 2.2rem;
}

.filterdropdown {float:right; margin:-34px 0 0 0; line-height:52px; width:300px;}

.filters { margin: 0px 0 0px 0;}
.filters a { margin: 5px;}
.filters a.active { margin: 5px; background-color: #f5f5f5; padding: 4px 6px 3px 6px;}



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

.filters { display: block; margin: 0 0 20px 0; line-height: 30px; text-align: center;}
.filterdropdown {float:none; display: block; line-height:52px; margin: auto; width:240px;}
    
}

.card-panel .row { margin: 0px;}


.speakerdesc { font-size: 12px; line-height: 18px;}


.speakerpageface { width: 100px; margin: 0px auto 20px auto;}


.seminartime {float:right; height:30px;}


.pagesep { display: inline-block; margin: 0 10px -9px 10px; width: 2px; background-color: #fff; opacity: 0.4; height: 30px;}

a.extralink { border: 2px solid #fff; height: 40px; line-height: 38px; padding: 0px 10px 0px 10px; margin: 10px 20px 0 0; float: right;
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    transition: all 0.4s;}

header.smaller a.extralink { border: 2px solid #fff; line-height: 26px; height: 30px; padding: 0px 10px; margin: 5px 20px 0 0;}







/* NEW STYLES JUNE 2015 */


.standcircle { height: 120px; width:120px; display:block; text-align: center; padding: 28px 3px 0 0; background-color:#ee7122; color:#fff;}

.standcircle h5 { color: #fff; font-size:14px; text-transform: uppercase; margin: 0 0 -6px 0;}
.standcircle h3 { color: #fff; font-size:60px; letter-spacing: -3px; margin: 0;}

#exhibitorinfo {}
#exhibitorinfo a b { color: #333;}
#exhibitorinfo a { font-size:12px; line-height:18px; background-color:#f4f4f4; margin: 10px 4px; padding:5px 10px; display:inline-block;}

.eventmarker { height: 10px; width: 10px; cursor: pointer; display: inline-block; margin: 5px 3px;}

.card .card-content { background-color: #ffffff; margin: 0; padding: 15px 20px 10px 20px;}

.exhibitorname { font-size:10px; text-transform: uppercase;}

.oktoberfest {
    height: 12px;
    margin: 4px;
    0 -4px 0;
    line-height: 14px;
    cursor: pointer;
    color: #fff;
    padding: 0 8px;
    display: inline-block;
    font-size: 8px;
    background-color: #C66E24;
    float: right;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
}

.speakersocial { padding: 0 0 20px 0; border-bottom: 1px solid #ccc; margin: 0 0 0px 0;}
.speakersocial a { font-size:12px; line-height:18px; background-color:#f4f4f4; margin: 10px 4px; padding:5px 10px; display:inline-block;}
.speakersocial a b { color: #333;}












/* NEW STYLES JUNE 2016 */

.ipheroimage {
    height: calc(100vh - 50px);
    width: 100%;
    margin: 0px 0 0 0;
    background-image: url(../img/photo4.jpg);
    background-position: center center;
    background-size: cover;
    background-attachment: fixed;
    text-align: center;
    padding: 28vh 10px 0 10px;
}

.ipexpoherologo {
    margin: 0 auto 30px auto;
    width: 100%;
    max-width: 500px;
}


.herocenter {
    padding: 50px 20px 40px 20px;
    max-width: 800px;
    width: 100%;
    margin: 0 auto 0 auto;

}

.herocenter h1 {
    font-size: 12px;
    line-height: 15px;
    margin: 0 0 15px 0;
    letter-spacing: 2px;
    color: #ccc;
}



p.headingtext {
    font-size: 14px;
    line-height: 26px;
    color: #fff;
}


h2.homeheading {
    font-size: 18px;
    font-weight: 300;
    margin: 0px 0px 10px 0px;
    color: #f1f1f1;
    letter-spacing: 1px;
}

p.ipherodate {
    font-size: 18px;
    color: #f1f1f1;
}




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

    .ipheroimage {
        height: 100vh;
    }

}




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

    .ipheroimage {
        height: 650px;
        padding: 60px 10px 0 10px;
    }

    .scrollink {
        display: none!important;
    }
    
}



.promovideo {
    width:100%;
    max-width: 900px;
    margin: auto;
}


.navreg {
    border: 1px solid #fff!important;
    height: 31px;
}


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

.navreg {
    background-color: #fff;
    color: #333!important;
    height: auto;
}


}






.keyspeakers {
    width: 100%;
    max-width: 1280px;
    margin: 0px auto 0px auto;
    padding: 30px 0;
    text-align: center;
}
.keyspeakers h2 {
    color: #fff;
}

.keyspeakers .col {
    padding: 0 0.75em;
}

.keyspeakers .card {
    text-align: left;
}


.eventseries {
    width: 100%;
    max-width: 280px;
    margin: 40px auto 0 auto;
}


.keyspeakerlogo {
    float: right;
    height: 80px;
    width: auto;
    display: block;
}





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

.keyspeakers .card {
    width: 100%;
    max-width: 280px;
    margin: 15px auto;
}

.keyspeakers .keyspeakerlogo {
    float: right;
    height: 60px;
    width: auto;
    display: block;
}
 
.keyspeakers .card a {
    font-size: 12px;
    margin: 10px 0 0 0;
}
.keyspeakers .card a i {
    display: none;
}   
    
}





.icontabs {
    width: 100%;
    max-width: 720px;
    margin: auto;
}

.icontabs .tabs-menu {
    height: 120px;
    clear: both;
}

.icontabs .tabs-menu li {
    height: 120px;
    float: left;
    text-align: center;
    width: 120px;
    padding: 10px 0;
}

.icontabs .tabs-menu li img {
    width: 90px;
}

.icontabs .tabs-menu li.current {
    position: relative;
    z-index: 5;
    background-color: #f5f5f5;
}
.icontabs .tab {
    float: left;
    margin-bottom: 20px;
    width: auto;
}

.icontabs .tab-content {
    width: 100%;
    max-width: 720px;
    padding: 20px;
    display: none;
}

.icontabs .tab-content h5 {
    font-size: 16px;
}



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

.icontabs {
    width: 100%;
    max-width: 600px;
    margin: auto;
}

.icontabs .tabs-menu {
    height: 100px;
    clear: both;
}

.icontabs .tabs-menu li img {
    width: 70px;
}
    
.icontabs .tabs-menu li {
    height: 100px;
    float: left;
    text-align: center;
    width: 100px;
    padding: 10px 0;
}  
    
}


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

.icontabs {
    width: 100%;
    max-width: 300px;
    margin: auto;
}
    
}



.maintitle {
    background-image: url(../img/pattern.png);
    background-position: center center;
    background-size: cover;
    padding: 50px 20px 20px 20px;
    text-align: center;
    margin: 0 0 20px 0;
}
.maintitle h1 {
    font-family: 'DIN-Medium', Verdana, Geneva, sans-serif!important;
    color: #fff;
    letter-spacing: 1px;
    font-size: 30px;
    margin: 0px;
}






a.scrollink {
    width: 100px;
    margin: 0 0 0 -50px;
    display: block;
    padding: 20px;
    position: absolute;
    bottom: 20px;
    left: 50%;
}

.scrollbtn {
    text-align: center;
    margin: auto;
    width: 16px;
}

.scrollbtn span
{
  display: block;
  width: 5px;
  height: 5px;
  -ms-transform: rotate(45deg); /* IE 9 */
  -webkit-transform: rotate(45deg); /* Chrome, Safari, Opera */
  transform: rotate(45deg);
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  margin: 0 0 3px 6px;
}

.unu
{
  margin-top: 6px;
}

.unu, .doi, .trei
{
    -webkit-animation: mouse-scroll 1s infinite;
    -moz-animation: mouse-scroll 1s infinite;
}

.unu
{
  -webkit-animation-delay: .1s;
  -moz-animation-delay: .1s;
  -webkit-animation-direction: alternate;
}

.doi
{
  -webkit-animation-delay: .2s;
  -moz-animation-delay: .2s;
  -webkit-animation-direction: alternate;
}

.trei
{
  -webkit-animation-delay: .3s;
  -moz-animation-delay: .3s;
  -webkit-animation-direction: alternate;
}




.mouse
{
height: 28px;
width: 16px;
  border-radius: 10px;
  transform: none;
  border: 2px solid #fff;
  top: 170px;
    margin: 0 0 5px 0;
}

.wheel
{
  height: 4px;
  width: 2px;
  display: block;
  margin: 5px auto;
  background: #fff;
  position: relative;
}

.wheel
{
  -webkit-animation: mouse-wheel 1.2s ease infinite;
  -moz-animation: mouse-wheel 1.2s ease infinite;
}

@-webkit-keyframes mouse-wheel
{
   0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(4px);
    -ms-transform: translateY(4px);
    transform: translateY(4px);
  }
}

@-moz-keyframes mouse-wheel
{
  0% { top: 1px; }
  50% { top: 2px; }
  100% { top: 3px;}
}

@-webkit-keyframes mouse-scroll {

  0%   { opacity: 0;}
  50%  { opacity: .5;}
  100% { opacity: 1;}
}
@-moz-keyframes mouse-scroll {

  0%   { opacity: 0; }
  50%  { opacity: .5; }
  100% { opacity: 1; }
}
@-o-keyframes mouse-scroll {

  0%   { opacity: 0; }
  50%  { opacity: .5; }
  100% { opacity: 1; }
}
@keyframes mouse-scroll {

  0%   { opacity: 0; }
  50%  { opacity: .5; }
  100% { opacity: 1; }
}




.expospeakers {
}

.expospeakers .col {
    padding: 0 0.75em;
}

.expospeakers .black-text a {
    font-size: 12px;
    padding: 0px 6px 0px 14px;
}


.expoexhibitors .col {
    padding: 0 0.75em;
}

.expoexhibitors .card {
    text-align: center;
}

.expoexhibitors .card p {
    letter-spacing: 1px;
}

.expoexhibitors .card-content {
    background-color: #f5f5f5;
}


.expoexhibitors .card p a {
    font-size: 12px;
    background-color: #fff;
    padding: 6px 6px 0px 14px;
    border: 2px solid #1d1d1b;
}





.advancedsearch .col {
    padding: 0 0.75em;
}


.contactbox .col {
    padding: 0 0.75em;
}




.singleseminar h1 {
    font-size: 12px;
    letter-spacing: 2px;
    margin: 0;
}

.singleseminar .responsive-img {
    max-width: 40px;
    height: auto;
    float: left;
    margin: -2px 10px 0 0;
}

.singleseminar h4 {
    font-size: 16px;
    padding: 10px 15px;
}

.singleseminar .row .col {
    padding: 0 0.75em;
}

.singleseminar  .row .col a.btn {
    margin: 0 0 20px 0;
    float: left;
    padding: 0px 5px 0 10px;
}



.gallery {
    display: block;
    height: auto;
    margin: 0 0 0px 0;
    background-color: #111;
}


.promoimage {
    width:100%;
    padding: 20px 0;
}
























.parallaximage {
    height: 400px;
    width: 100%;
    margin: 0px 0 0 0;
    background-image: url(../img/photo4.jpg);
    background-position: center center;
    background-size: cover;
    background-attachment: fixed;
    text-align: center;
    padding: 100px 10px 0 10px;
}

.parallaxcenter {
    padding: 20px 20px 20px 20px;
    max-width: 800px;
    width: 100%;
    margin: 0 auto 0 auto;
}

.parallaxcenter h3 {
    color: #fff;
    font-size: 20px;
    font-weight: 300;
}
.parallaxcenter p {
    color: #f1f1f1;
}



.cyberred { background-color: #c41215;}


.subscribebtn {
    display: block;
    width: 100%;
    height:80px;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 1px;
    line-height: 80px;
}

h2.subscribe {
    font-size: 40px;
    color: #fff;
}

input.subscribebox {
    background-color: #a01013;
    height: 80px;
    line-height: 80px;
    font-size: 26px;
    color: #fff;
    border:none!important;
    margin: 5px 0 0 0px;
    padding: 0 20px;
    box-shadow:none!important;
}

input[type=text].subscribebox:focus {
    border: none!important;
    box-shadow:none!important;
}

.input-field input[type=text].subscribebox:focus {
    border: none!important;
    box-shadow:none!important;
}


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

h2.subscribe {
    font-size: 26px;
}
    
input.subscribebox {
    padding: 0 0px;
    font-size: 20px;
}
    
}



















    
.ip0 { background-color:#596a74;}
.ip1 { background-color:#ee7122;}
.ip2 { background-color:#c41215;}
.ip3 { background-color:#0fabc1;}
.ip4 { background-color:#951b81;}
.ip5 { background-color:#122864;}
.ip6 { background-color:#acca10;}
.darkbg { background-color:#1d1d1b;}
.lightgreybg { background-color:#a1a4a7;}
.darkgreybg { background-color:#646363;}
.patternbg { background-color: #f1f1f1;
    background-image: url(../img/background.jpg);
    background-position: center center;
    background-size: cover;
    background-attachment: fixed;
}


.ip0text { color:#1e1e1e;}
.ip1text { color:#ee7122;}
.ip2text { color:#c41215;}
.ip3text { color:#0fabc1;}
.ip4text { color:#951b81;}
.ip5text { color:#122864;}
.ip6text { color:#acca10;}
.darktext { color:#1d1d1b;}
.lightgreytext { color:#a1a4a7;}
.darkgreytext { color:#646363;}