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

Primary style

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

*,
*::after,
*::before {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
img {
    /* make images responsive */
    max-width: 100%;
}
input {
    font-family: sans-serif;
    font-size: 1.6rem;
}
input[type="search"]::-ms-clear {
    /* removes close icon - IE */
    display: none;
}
input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-results-button,
input[type="search"]::-webkit-search-results-decoration {
    display: none;
}







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

Slider

-------------------------------- */
.cd-hero {
    display: none;
  position: relative;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.cd-hero-slider {
  position: relative;
  height: 360px;
  overflow: hidden;
}
.cd-hero-slider li {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-transform: translateX(100%);
  -moz-transform: translateX(100%);
  -ms-transform: translateX(100%);
  -o-transform: translateX(100%);
  transform: translateX(100%);
}
.cd-hero-slider li.selected {
  /* this is the visible slide */
  position: relative;
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  -o-transform: translateX(0);
  transform: translateX(0);
}
.cd-hero-slider li.move-left {
  /* slide hidden on the left */
  -webkit-transform: translateX(-100%);
  -moz-transform: translateX(-100%);
  -ms-transform: translateX(-100%);
  -o-transform: translateX(-100%);
  transform: translateX(-100%);
}
.cd-hero-slider li.is-moving, .cd-hero-slider li.selected {
  /* the is-moving class is assigned to the slide which is moving outside the viewport */
  -webkit-transition: -webkit-transform 0.5s;
  -moz-transition: -moz-transform 0.5s;
  transition: transform 0.5s;
}
@media only screen and (min-width: 768px) {
  .cd-hero-slider {
    height: 680px;
  }
}
@media only screen and (min-width: 1170px) {
  .cd-hero-slider {
    height: 680px;
  }
}

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

Single slide style

-------------------------------- */
.cd-hero-slider li {
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}
.cd-hero-slider li:first-of-type {
  background-color: #333;
}


.cd-hero-slider li.secondslide { background-color: transparent!important; background-image: url(../img/bgabout.jpg)!important;}
.cd-hero-slider li.thirdslide { background-color: transparent!important; background-image: url(../img/bgspeaker.jpg)!important;}


.cd-hero-slider .cd-full-width,
.cd-hero-slider .cd-half-width {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 1;
  left: 0;
  top: 0;
  /* this padding is used to align the text */
  padding-top: 50px;
  text-align: center;
  /* Force Hardware Acceleration in WebKit */
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transform: translateZ(0);
  -moz-transform: translateZ(0);
  -ms-transform: translateZ(0);
  -o-transform: translateZ(0);
  transform: translateZ(0);
}
.cd-hero-slider .cd-img-container {
  /* hide image on mobile device */
  display: none;
}
.cd-hero-slider .cd-img-container img {
  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%);
}
.cd-hero-slider .cd-bg-video-wrapper {
  /* hide video on mobile device */
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.cd-hero-slider .cd-bg-video-wrapper video {
  /* you won't see this element in the html, but it will be injected using js */
  display: block;
  min-height: 100%;
  min-width: 100%;
  max-width: none;
  height: auto;
  width: auto;
  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%);
}
.cd-hero-slider h2, .cd-hero-slider p {
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  line-height: 1.2;
  margin: 0 auto 14px;
  color: #ffffff;
  width: 90%;
  max-width: 400px;
}
.cd-hero-slider h2 {
  font-size: 2.4rem;
}
.cd-hero-slider p {
  line-height: 1.3;
}
.cd-hero-slider .cd-btn {
  display: inline-block;
  padding: 1.2em 1.4em 1.0em 1.4em;
  margin-top: .8em;
  background-color: #ee7122;
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 1px;
-webkit-border-radius: 2px;
-moz-border-radius: 2px;
border-radius: 2px;
  color: #ffffff;
  text-transform: uppercase;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
  -webkit-transition: background-color 0.2s;
  -moz-transition: background-color 0.2s;
  transition: background-color 0.2s;
}
.cd-hero-slider .cd-btn.secondary {
  background-color: rgba(22, 26, 30, 0.8);
}
.cd-hero-slider .cd-btn:nth-of-type(2) {
  margin-left: 1em;
}
.no-touch .cd-hero-slider .cd-btn:hover {
  background-color: #ee7122;
}
.no-touch .cd-hero-slider .cd-btn.secondary:hover {
  background-color: #161a1e;
}
@media only screen and (min-width: 768px) {
  .cd-hero-slider li:nth-of-type(2) {
    background-image: none;
  }
  .cd-hero-slider li:nth-of-type(3) {
    background-image: none;
  }
  .cd-hero-slider li:nth-of-type(4) {
    background-image: none;
  }
  .cd-hero-slider .cd-full-width,
  .cd-hero-slider .cd-half-width {
    padding-top: 140px;
  }
  .cd-hero-slider .cd-bg-video-wrapper {
    display: block;
  }
  .cd-hero-slider .cd-half-width {
    width: 45%;
  }
  .cd-hero-slider .cd-half-width:first-of-type {
    left: 5%;
  }
  .cd-hero-slider .cd-half-width:nth-of-type(2) {
    right: 5%;
    left: auto;
  }
  .cd-hero-slider .cd-img-container {
    display: block;
  }
  .cd-hero-slider h2, .cd-hero-slider p {
    max-width: 600px;
  }
  .cd-hero-slider h2 {
    font-size: 2.4em;
    font-weight: 300;
  }
  .cd-hero-slider .cd-btn {
    font-size: 1.4rem;
  }
}
@media only screen and (min-width: 1170px) {
  .cd-hero-slider .cd-full-width,
  .cd-hero-slider .cd-half-width {
    padding-top: 140px;
  }
  .cd-hero-slider h2, .cd-hero-slider p {
    margin-bottom: 20px;
  }
  .cd-hero-slider h2 {
    font-size: 3.8em;
  }    
  .cd-hero-slider p {
    font-size: 1.2rem;
  }
}



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

}


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

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: #bbbbc7;
}
.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: 24px;
    font-weight: 300;
    margin: 0;
    padding: 24px 72px 24px 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-main-content {
    /* set a min-height and a z-index to be sure that the main element completely covers the lateral menu */
    min-height: 100%;
    position: relative;
    background-color: #f0f0f0;
    z-index: 2;
    padding-top: 90px;
    /* Force Hardware Acceleration in WebKit */
    -webkit-transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    -webkit-transition-property: -webkit-transform;
    -moz-transition-property: -moz-transform;
    transition-property: transform;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}
.cd-main-content.lateral-menu-is-open {
    /* translate to show the lateral menu - all content needs to be put in the .cd-main-content to translate*/
    -webkit-transform: translateX(-260px);
    -moz-transform: translateX(-260px);
    -ms-transform: translateX(-260px);
    -o-transform: translateX(-260px);
    transform: translateX(-260px);
}
@media only screen and (min-width: 1056px) {
    .cd-main-content {
        padding-top: 220px;
    }
}


header {
    position: fixed;
    top: 0;
    left: 0;
    height: 50px;
    width: 100%;
    background-color: #ffffff;
    z-index: 3;
    /* Force Hardware Acceleration in WebKit */
    -webkit-transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    -webkit-transition-property: -webkit-transform;
    -moz-transition-property: -moz-transform;
    transition-property: transform;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
    

}
header.lateral-menu-is-open {
    /* translate to show the lateral menu */
    -webkit-transform: translateX(-260px);
    -moz-transform: translateX(-260px);
    -ms-transform: translateX(-260px);
    -o-transform: translateX(-260px);
    transform: translateX(-260px);
}
header.is-fixed {
    position: fixed;
}

@media only screen and (min-width: 1056px) {
    header {
        height: 220px;
        display: block;
    }
#cd-top-nav a {
    line-height: 18px;
}
.cd-imago-nav {
    height: 50px;
}
.cd-fivecats a {
    font-size: 18px;
    line-height: 18px;
}
    
}





header.smaller {
    height: 50px;
}
header.smaller .cd-imago-nav {
        height: 40px;
}
header.smaller .cd-top-umbrella {
        height: 50px;
}
header.smaller #cd-logo {
    margin: 8px 0 0 20px;
}
header.smaller #cd-logo img {
    max-height: 20px;
}
header.smaller #cd-menu-trigger {
    height: 50px;
    width: 50px;
}
header.smaller #cd-menu-trigger .cd-menu-text {
    display: none;
}
header.smaller #cd-top-nav a {
    line-height: 18px;
}
header.smaller .cd-imago-nav {
    height: 50px;
}
header.smaller .cd-fivecats a {
    font-size: 18px;
    line-height: 18px;
}
header.smaller .slogan {
    margin: -35px 0 0 0;
}
@media only screen and (max-width: 2000px) {
header.smaller .slogan {
    display: none;
    visibility: hidden;
}
}

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

header.smaller .cd-fivecats a {
    font-family: 'DIN-Medium', verdana, sans-serif;
    font-size: 17px;
    line-height: 15px;
    padding: 10px 20px;
}

}


#cd-top-nav, #cd-top-nav ul {
-webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}



header.smaller #cd-top-nav ul {
  height: 0px;
  padding-top: 0px;
}

header.smaller #cd-top-nav {
  right: 15px;
}

#cd-logo {
    display: block;
    float: left;
    margin: 15px 0 0 20px;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}
#cd-logo img {
    display: block;
    max-height: 43px;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}
@media only screen and (max-width: 1055px) {
    #cd-logo {
        margin: 8px 0 0 20px;
    }
    #cd-logo img {
        display: block;
        max-height: 20px;
    }
}

p.logodate {
    font-family: 'DIN-Medium', verdana, sans-serif;
    margin: 0;
    padding: 0;
    color: #666;
    font-size: 16px;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

@media only screen and (max-width: 1055px) {
    p.logodate {
        float: left;
        position: absolute;
        left: 230px;
        top: 10px;
        font-size: 10px;
    }
}

header.smaller p.logodate {
        float: left;
        position: absolute;
        left: 230px;
        top: 10px;
        font-size: 10px;
}

@media only screen and (max-width: 900px) {
    #cd-logo {
        margin: 10px 0 0 20px;
    }
    p.logodate {
        float: left;
        position: absolute;
        left: 20px;
        top: 24px;
        font-size: 8px;
    }
    header.smaller #cd-logo {
        margin: 10px 0 0 20px;
        max-height: 20px;
    }
    header.smaller p.logodate {
        float: left;
        position: absolute;
        left: 20px;
        top: 24px;
        font-size: 8px;
    }
}



.cd-imago-nav {
    background-color: #fff;
    height: 60px;
    display: block;
    width: 100%;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

.cd-top-umbrella {
    height: 110px;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;

}

@media only screen and (max-width: 1055px) {
    .cd-imago-nav {
        height: 50px;
    }
    .cd-top-umbrella {
        height: 50px;
    }
}

/* custom navigation */

.cd-fivecats {
    width: 100%;
    height: 100%;
}

.cd-fivecats a {
    width: 16.666%;
    height: 100%;
    display: block;
    float: left;
    padding: 5px 20px;
    color: #fff;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
    font-family: 'DIN-Black', verdana, sans-serif;
    font-size: 24px;
    line-height: 24px;
    text-transform: uppercase;
    opacity: 0.7;
    overflow: hidden;
}
.cd-fivecats a span {
    opacity: 0;
    -webkit-transition: opacity 0.2s ease-in-out;
    -moz-transition: opacity 0.2s ease-in-out;
    -o-transition: opacity 0.2s ease-in-out;
    transition: opacity 0.2s ease-in-out;
}

.cd-fivecats a:hover, .cd-fivecats a.active {
    opacity: 1.0;
    height: 82px;
    margin-top: -22px;
    z-index: 99999;
    position: relative;
}
.cd-fivecats a:hover span, .cd-fivecats a.active span { opacity: 1;}


header.smaller .cd-fivecats a:hover, header.smaller .cd-fivecats a.active {
    height: 65px;
    margin-top: -15px;
}




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

.cd-fivecats a:hover, .cd-fivecats a.active {
    height: 65px;
    margin-top: -15px;
}

}



.slogan {
    font-family: 'DIN-Regular', verdana, sans-serif;
    font-size: 10px;
    text-transform: none;
    float:right;
    -webkit-transition: margin 0.4s ease-in-out;
    -moz-transition: margin 0.4s ease-in-out;
    -o-transition: margin 0.4s ease-in-out;
    transition: margin 0.4s ease-in-out;
}
.slogan b { 
    font-family: 'DIN-Bold', verdana, sans-serif;
}


@media only screen and (max-width: 1510px) {
.slogan {
    float: left;
    margin: 15px 0 0 0;
}
.cd-fivecats a {
    font-size: 17px;
    line-height: 18px;
}
    
.cd-imago-nav {
    height: 50px;
}
    
}



.cd-pages {
    height: 60px;
    padding: 0 0px;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

.cd-pages a {
    color: #fff;
    line-height: 60px;
    text-transform: uppercase;
    margin: 0 20px;
    font-size: 16px;
    font-family: 'DIN-Bold', verdana, sans-serif;
    -webkit-transition: background 0.4s ease;
    -moz-transition: background 0.4s ease;
    -o-transition: background 0.4s ease;
    transition: background 0.4s ease;
}

.cd-pages a.active {
    background-image: url(../img/transparentblack.png);
    padding: 8px 12px;
    background-size: cover;
}


@media only screen and (max-width: 1200px) {
.cd-pages {
    height: 40px;
    padding: 0 0px;
}

.cd-pages a {
    color: #fff;
    line-height: 40px;
    text-transform: uppercase;
    margin: 0 20px;
    font-size: 16px;
    font-family: 'DIN-Bold', verdana, sans-serif;
}
}
    
    
header.smaller .cd-pages {
    height: 40px;
    padding: 0 0px;
}

header.smaller .cd-pages a {
    color: #fff;
    line-height: 40px;
    text-transform: uppercase;
    margin: 0 20px;
    font-size: 16px;
    font-family: 'DIN-Bold', verdana, sans-serif;
}

header.smaller .cd-pages a.active {
    padding: 3px 10px 5px 10px;
}

@media only screen and (max-width: 1200px) {
.cd-fivecats a {
    font-family: 'DIN-Medium', verdana, sans-serif;
    line-height: 15px;
    padding: 10px 20px;
}

.slogan {
    display: none;
}
.cd-imago-nav {
    height: 50px;
}
header {
    height: 140px;
    display: block;
}
.cd-main-content {
    padding-top: 190px;
}

}

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

header {
    height: 140px;
    display: block;
}
.cd-main-content {
    padding-top: 140px;
}
}

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

.cd-main-content {
    padding-top: 180px;
}

}


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

header {
    height: 100px;
    display: block;
}
.cd-main-content {
    padding-top: 140px;
}
    
    
}




.m-cd-fivecats li { 
    list-style: none;
}

.mnav {
    width: 100%;
    height: 50px;
    overflow: hidden;
}

.mlinks {
    position: absolute;
    float: left;
    top: 0;
    left: 14%;
    width: 100%;
    text-align: center;
    height: 50px;
    width: 50px;
    display: block;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}
.mlinks a {
    color: #fff;
    height: 50px;
    line-height: 50px;
    text-transform: uppercase;
    margin: 0 0px;
    font-size: 12px;
    display: inline-block;
    font-family: 'DIN-Medium', verdana, sans-serif;
}
.mlinks a.active {
    background-image: url(../img/transparentblack.png);
    padding: 0 5px 0 5px;
    
}

.mnavtitle {
    height: 50px;
    line-height: 50px;
    float: none;
    padding: 0px 0 0 0;
    display: block;
    width: 100%;
    margin: 0 auto;
    text-align: center;
    text-transform: uppercase;
    font-family: 'DIN-Bold', verdana, sans-serif;
    font-size: 22px;
    color: #fff;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}
.mnavtitle span {
    font-size: 22px;
    color: #e1e1e1;
}


.mslogan {
    height: 50px;
    float: right;
    display: block;
    padding: 15px 0 0 0;
    width: 80px;
    margin: -50px 50px 0 0;
    font-family: 'DIN-Regular', verdana, sans-serif;
    color: #fff;
    text-align: right;
    font-size: 10px;
    line-height: 12px;
}
.mslogan b {font-family: 'DIN-Bold', verdana, sans-serif;}




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

.mnavtitle {
    height: 50px;
    float: none;
    padding: 10px 20px 10px 90px;
    display: block;
    width: 100%;
    margin: 0 0;
    text-align: left;
    text-transform: uppercase;
    font-family: 'DIN-Bold', verdana, sans-serif;
    font-size: 16px;
    line-height: 15px;
    color: #fff;
}
.mnavtitle span {
    font-size: 16px;
    color: #e1e1e1;
    display: block;
}
.mslogan { display: none;}


.mlinks {
    position: absolute;
    float: left;
    top: 0;
    left: 40px;
}
    
}



    
#cd-top-nav {
    position: absolute;
    top: 0;
    right: 120px;
    height: 50px;
    display: none;
}
#cd-top-nav ul {
    height: 30px;
    padding-top: 30px;
}
#cd-top-nav li {
    display: inline-block;
    margin-right: 1em;
}
#cd-top-nav a {
    display: inline-block;
    line-height: 40px;
    padding: 0px 20px;
    height: 50px;
    color: #fff;
    text-transform: uppercase;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}
#cd-top-nav a.current {
    background-color: #ee7122;
}
.no-touch #cd-top-nav a:hover {
    color: #ee7122;
}
@media only screen and (min-width: 1056px) {
    #cd-top-nav {
        display: block;
    }
}
#cd-menu-trigger {
    position: absolute;
    right: 0;
    top: 0;
    height: 110px;
    width: 50px;
    background-color: #ee7122;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}
@media only screen and (max-width: 1055px) {
#cd-menu-trigger {
    height: 50px;
}
}

#cd-menu-trigger .cd-menu-text {
    height: 110px;
    text-transform: uppercase;
    color: #FFF;
    display: none;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}
#cd-menu-trigger .cd-menu-icon {
    /* this span is the central line in the menu menu */
    display: inline-block;
    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%);
    width: 18px;
    height: 2px;
    background-color: #FFF;
    /* these are the upper and lower lines in the menu menu */
}
#cd-menu-trigger .cd-menu-icon::before,
#cd-menu-trigger .cd-menu-icon:after {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    background-color: inherit;
    left: 0;
}
#cd-menu-trigger .cd-menu-icon::before {
    bottom: 5px;
}
#cd-menu-trigger .cd-menu-icon::after {
    top: 5px;
}
#cd-menu-trigger.is-clicked .cd-menu-icon {
    background-color: rgba(255, 255, 255, 0);
}
#cd-menu-trigger.is-clicked .cd-menu-icon::before,
#cd-menu-trigger.is-clicked .cd-menu-icon::after {
    background-color: white;
}
#cd-menu-trigger.is-clicked .cd-menu-icon::before {
    bottom: 0;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
}
#cd-menu-trigger.is-clicked .cd-menu-icon::after {
    top: 0;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
}
@media only screen and (min-width: 1056px) {
    #cd-menu-trigger {
        width: 110px;
        padding-left: 1.25em;
    }
    #cd-menu-trigger .cd-menu-text {
        display: inline-block;
        line-height: 115px;
    }
    #cd-menu-trigger .cd-menu-icon {
        left: auto;
        right: 1.1em;
        -webkit-transform: translateX(0);
        -moz-transform: translateX(0);
        -ms-transform: translateX(0);
        -o-transform: translateX(0);
        transform: translateX(0);
    }
}
#cd-lateral-nav {
    position: fixed;
    height: 100%;
    right: 0;
    top: 0;
    visibility: hidden;
    /* the secondary navigation is covered by the main element */
    z-index: 1;
    width: 260px;
    background-color: #1e1e1e;
    overflow-y: auto;
    /* Force Hardware Acceleration in WebKit */
    -webkit-transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    -webkit-transition: -webkit-transform .4s 0s, visibility 0s .4s;
    -moz-transition: -moz-transform .4s 0s, visibility 0s .4s;
    transition: transform .4s 0s, visibility 0s .4s;
    /* this creates the subtle slide in animation of the navigation */
    -webkit-transform: translateX(80px);
    -moz-transform: translateX(80px);
    -ms-transform: translateX(80px);
    -o-transform: translateX(80px);
    transform: translateX(80px);
}
#cd-lateral-nav .cd-navigation {
    margin: 10px 0 16px;
}
#cd-lateral-nav .sub-menu {
    padding: 0 10px 20px 15px;
    display: none;
}
#cd-lateral-nav a {
    display: block;
    line-height: 2.6em;
    font-size: 19px;
    padding: 0 16px 0 32px;
    color: #aab5b7;
    font-family: 'DIN-Medium', verdana, sans-serif;
}
#cd-lateral-nav a.current {
    background-color: #333;
    color: #FFF;
}
.no-touch #cd-lateral-nav a:hover {
    color: #FFF;
}
@media only screen and (min-width: 1056px) {
    #cd-lateral-nav .cd-navigation {
        margin: 20px 0;
    }
}
#cd-lateral-nav.lateral-menu-is-open {
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
    visibility: visible;
    -webkit-transition: -webkit-transform .4s 0s, visibility 0s 0s;
    -moz-transition: -moz-transform .4s 0s, visibility 0s 0s;
    transition: transform .4s 0s, visibility 0s 0s;
    /* smooth the scrolling on touch devices - webkit browsers */
    -webkit-overflow-scrolling: touch;
}
/* style menu items which have a submenu  */

#cd-lateral-nav .item-has-children > a {
    position: relative;
    text-transform: uppercase;
    font-weight: 600;
    /* this is the right arrow to show that the item has a submenu  */
}
#cd-lateral-nav .item-has-children > a::after {
    content: '';
    display: block;
    height: 11px;
    width: 8px;
    position: absolute;
    top: 50%;
    bottom: auto;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    right: 1em;
    background: url("../img/cd-arrow.svg") no-repeat center center;
    background-size: 8px 11px;
    -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-lateral-nav .item-has-children > a.submenu-open::after {
    -webkit-transform: translateY(-50%) rotate(90deg);
    -moz-transform: translateY(-50%) rotate(90deg);
    -ms-transform: translateY(-50%) rotate(90deg);
    -o-transform: translateY(-50%) rotate(90deg);
    transform: translateY(-50%) rotate(90deg);
}
#cd-lateral-nav .socials {
    padding: 0 32px;
}
#cd-lateral-nav .socials:after {
    content: "";
    display: table;
    clear: both;
}
#cd-lateral-nav .socials a {
    height: 32px;
    width: 32px;
    float: left;
    padding: 0;
    background-image: url("../img/cd-socials.png");
    background-repeat: no-repeat;
    background-size: 128px 64px;
    background-color: #FFF;
    margin-right: .5em;
    border-radius: 0.25em;
}
#cd-lateral-nav .socials a.cd-twitter {
    background-position: 0 0;
}
#cd-lateral-nav .socials a.cd-google {
    background-position: -32px 0;
}
#cd-lateral-nav .socials a.cd-facebook {
    background-position: -64px 0;
}
#cd-lateral-nav .socials a.cd-linkedin {
    background-position: -96px 0;
}
.no-touch #cd-lateral-nav .socials a:hover {
    background-color: #4e6361;
}
.no-touch #cd-lateral-nav .socials a:hover.cd-twitter {
    background-position: 0 -32px;
}
.no-touch #cd-lateral-nav .socials a:hover.cd-google {
    background-position: -32px -32px;
}
.no-touch #cd-lateral-nav .socials a:hover.cd-facebook {
    background-position: -64px -32px;
}
.no-touch #cd-lateral-nav .socials a:hover.cd-linkedin {
    background-position: -96px -32px;
}
#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;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
}
.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: #f47622;
    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;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
}
.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: #232f67;
    padding: 0 30px;
}
.no-touch .cd-tabs-navigation a:hover {
    color: #ffffff;
    background-color: #074f8c;
}
.cd-tabs-navigation a.selected {
    height: 90px;
    font-size: 22px;
    line-height: 52px;
    padding: 12px 30px 0 30px;
    margin: 0px 0 20px 0;
    background-color: #f47622 !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;
    background-color: #232f67;
    padding: 0 30px;
}
.no-touch .cd-tabs-navigation a:hover {
    color: #ffffff;
    background-color: #074f8c;
}
.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;
    background-color: #f47622;
    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;
}
@-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;
}
body {
    font-family: 'DIN-Regular', Verdana, Geneva, sans-serif;
    background-color: #333;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
}


@media only screen and (max-width: 1169px) {
    body.nav-on-left.overflow-hidden {
        overflow: hidden;
    }
}
p {
    font-weight: 300;
    font-size: 16px;
    line-height: 28px;
    margin: 10px 0 15px 0;
}
b {
    font-weight: 500;
}
a {
    color: #f47621;
    text-decoration: none;
}
.clear {
    clear: both;
}
h1 {
    font-family: 'DIN-Black', Verdana, Geneva, sans-serif;
    font-size: 30px;
    line-height: 36px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0px;
    color: #a1a4a7;
    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: 1360px;
    margin: 0px auto 0 auto;
    padding: 20px 10px 20px 10px;
    text-align: left;
}
.home {
    width: 100%;
    background-color: #f0f0f0;
    background-repeat: no-repeat;
    background-size: cover;
}
h2.homeheading {
    border: none!important;
    text-align: center!important;
    font-size: 1.8em;
}
.whitebox {
    padding: 30px;
    background-color: #fff;
    margin: 10px auto 20px auto;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
}
.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: 14px;
    letter-spacing: 1px;
    line-height: 24px;
}
.footer b {
    padding: 10px;
    font-weight: 600;
    margin: 20px 0 10px 0;
    font-size: 14px;
    line-height: 24px;
}
.footer a {
    padding: 15px;
    font-size: 12px;
    letter-spacing: 2px;
    display: inline-block;
}
@media only screen and (max-width: 700px) {

.footer a {
    padding: 15px;
    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 {
    padding: 2px;
    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: 20px;
    line-height: 32px;
    margin: 0 auto 16px auto;
}
.whitebox h1 {
    font-size: 42px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #333;
    margin: 30px 0 20px 0;
}
.whitebox h2 {
    font-size: 32px;
    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: 30px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #333;
    margin: 0 0 20px 0;
}
.whitebox p {
    font-size: 16px;
    line-height: 22px;
    margin: 0 auto 10px auto;
}
    
.whitebox {
    padding: 15px;
    background-color: #fff;
    margin: 10px auto 10px auto;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
}
    
.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: 30px; line-height: 24px;}
#exhibitors .card .card-image { text-align: center;}
#exhibitors .card .card-image img { width: 90%; margin: auto;}
#exhibitors .card a { margin-right: 0px;}
#exhibitors .card i.right {  float: right;  margin-left: 0px;}

.pagination { margin: 10px auto 40px auto; height: 50px;}
.pagination li.active { background-color: #ee7122;}

.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: 5px 0 0 0;}
.filters a { margin: 5px;}



@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: 200px; float:right; margin: -130px 50px 0 0;}


.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: #f5f5f5; padding: 5px 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 10px 0; border-bottom: 1px solid #f1f1f1; margin: 0 0 30px 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: 90vh;
    width: 100%;
    margin: -50px 0 0 0;
    background-color: #ccc;
    background-image: url(../img/herobg.jpg);
    background-position: center center;
    background-size: cover;
    text-align: center;
    padding: 20vh 0 0 0;
}

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


.herocenter {
    background-color: rgba(255,255,255,0.8);
    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: #444;
}



p.headingtext {
    font-size: 14px;
    line-height: 20px;
}


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

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











    
.ip0 { background-color:#596a74;}
.ip1 { background-color:#ee7122;}
.ip2 { background-color:#b41312;}
.ip3 { background-color:#0fabc1;}
.ip4 { background-color:#951b81;}
.ip5 { background-color:#122864;}
.ip6 { background-color:#acca10;}
.ftc { background-color:#596a74;}

.ip0text { color:#1e1e1e;}
.ip1text { color:#ee7122;}
.ip2text { color:#b41312;}
.ip3text { color:#0fabc1;}
.ip4text { color:#951b81;}
.ip5text { color:#122864;}
.ip6text { color:#acca10;}
.ftctext { color:#596a74;}