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

Modules

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

.entry-content {
  margin: 0 !important; 
}

.cd-container {
  /* this class is used to give a max-width to the element it is applied to, and center it horizontally when it reaches that max-width */
  /*width: 90%;*/
  /*max-width: 768px;*/
  /*margin: 0 auto;*/
}
.cd-container:after {
  content: "";
  display: table;
  clear: both;
}

.cd-main-content {
  overflow: hidden;
}

.has-top-margin {
  /* this class is given - using jQuery - to the .cd-main-content following the .cd-secondary-nav when it becomes fixed */
}

#start {
    height: 100vh;
}

#get-your-ticket {
/*    background-image: url(../img/bg_right.png);
    background-repeat: no-repeat;
    background-position-x: 120%;*/
    height: 100vh;
    padding: 250px 30px 90px;
}

@media only screen and (min-width: 1170px) {
  .has-top-margin {
    /*-webkit-animation: animate-margin-top 0.3s;*/
    /*-moz-animation: animate-margin-top 0.3s;*/
    /*animation: animate-margin-top 0.3s;*/
    /*margin-top: 70px;*/
  }
}

@-webkit-keyframes animate-margin-top {
  0% {
    margin-top: 100px;
  }

  100% {
    margin-top: 70px;
  }
}
@-moz-keyframes animate-margin-top {
  0% {
    margin-top: 100px;
  }

  100% {
    margin-top: 70px;
  }
}
@keyframes animate-margin-top {
  0% {
    margin-top: 100px;
  }

  100% {
    margin-top: 70px;
  }
}
/* --------------------------------

Navigation

-------------------------------- */
.cd-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 50px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
  background-color: #030d18;
  z-index: 3;
}

#Typo---SiliconSaxony {
    display: none;
}

@media only screen and (min-width: 1200px) {
  .cd-header {
    height: 70px;
    background-color: transparent;
    box-shadow: none;
  }

  #Typo---SiliconSaxony {
    display: block;
  }
}

#cd-logo {
  float: none;
  margin: 25px 0 0 0.8em;
  position: absolute;
  clear: both;
  text-align: left;
}

@media only screen and (min-width: 480px) {
  #cd-logo {
    max-width: 130px;
  }
}

#cd-logo img {
  display: block;
}
@media only screen and (min-width: 980px) {
  #cd-logo {
    max-width: 250px;
  }
}

@media only screen and (min-width: 1200px) {
  #cd-logo {
    max-width: 250px;
  }
}

@media only screen and (min-width: 1400px) {
  #cd-logo {
    max-width: 280px;
  }
}

@media only screen and (min-width: 980px) {
  #cd-logo.is-hidden {
    /* assign a position fixed and move outside the viewport (on the left) */
    opacity: 0;
    position: fixed;
    left: -20%;
    margin-left: 0;
    -webkit-transition: left 0.3s, opacity 0.3s;
    -moz-transition: left 0.3s, opacity 0.3s;
    transition: left 0.3s, opacity 0.3s;
  }
  #cd-logo.is-hidden.slide-in {
    /* slide in when the secondary navigation gets fixed */
    left: 5%;
    opacity: 1;
  }
}

.cd-primary-nav {
  /* mobile first - navigation hidden by default, triggered by tap/click on navigation icon */
  float: right;
  margin-right: 5%;
  width: 44px;
  height: 100%;
  background: url("../img/cd-icon-menu.svg") no-repeat center center;
  background-size: 44px 44px;
}
.cd-primary-nav ul {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  -webkit-transform: translateY(-100%);
  -moz-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  -o-transform: translateY(-100%);
  transform: translateY(-100%);
}
.cd-primary-nav ul.is-visible {
  -webkit-transform: translateY(50px);
  -moz-transform: translateY(50px);
  -ms-transform: translateY(50px);
  -o-transform: translateY(50px);
  transform: translateY(50px);
}
.cd-primary-nav a {
  display: block;
  height: 50px;
  line-height: 50px;
  padding-left: 5%;
  color: #f0eee1;
}
@media only screen and (min-width: 980px) {
  .cd-primary-nav {
    /* reset navigation values */
    width: auto;
    height: auto;
    background: none;
  }
  .cd-primary-nav ul {
    position: static;
    width: auto;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
    line-height: 70px;
  }
  .cd-primary-nav ul.is-visible {
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
  }
  .cd-primary-nav li {
/*    display: inline-block;
    margin-left: 1em;*/
  }
  .cd-primary-nav a {
    display: inline-block;
    height: auto;
    line-height: normal;
    background: transparent;
    padding: .6em 1em;
    border-top: none;
    color: #030d18;
  }
}

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

Intro

-------------------------------- */
#cd-intro {
  position: relative;
  height: 300px;
  background: url(../img/intro-background.jpg) no-repeat center center;
  background-size: cover;
  z-index: 2;
}
#cd-intro #cd-intro-tagline {
  width: 90%;
  max-width: 1170px;
  margin: 0 auto;
  text-align: center;
  padding-top: 120px;
}
#cd-intro h1 {
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 300;
  color: #030d18;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}
@media only screen and (min-width: 980px) {
  #cd-intro {
    height: 400px;
  }
  #cd-intro #cd-intro-tagline {
    padding-top: 160px;
  }
  #cd-intro h1 {
    font-size: 32px;
    font-size: 2rem;
  }
}
@media only screen and (min-width: 980px) {
  #cd-intro {
    height: 600px;
  }
  #cd-intro #cd-intro-tagline {
    padding-top: 250px;
  }
}

.cd-btn {
  display: inline-block;
  padding: 1em 1.8em;
  background-color: rgba(245, 72, 74, 0.9);
  margin-top: 1em;
  border-radius: 20em;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: white;
}
.no-touch .cd-btn:hover {
  background-color: #f5484a;
}
@media only screen and (min-width: 1170px) {
  .cd-btn.is-hidden {
    /* assign a position fixed and move outside the viewport (on the right) */
    opacity: 0;
    position: fixed;
    right: -20%;
    top: 0;
    padding: .8em 1.2em;
    margin: 14px 0 0;
    -webkit-transition: right 0.3s, opacity 0.3s;
    -moz-transition: right 0.3s, opacity 0.3s;
    transition: right 0.3s, opacity 0.3s;
  }
  .cd-btn.is-hidden.slide-in {
    /* slide in when the secondary nav gets fixed */
    right: 5%;
    opacity: 1;
  }
}

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

Secondary Fixed Navigation

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

  .navbar-default .navbar-toggle:focus, .navbar-default .navbar-toggle:hover {
    background: transparent;
  }

  .navbar-toggle {
     border: none;
     margin-top: 20px;
  }

  .navbar-brand {
      width: 80%;
      height: 90px;
      padding: 10px;
  }

  .navbar-collapse {
    border: none;
    box-shadow: none;
  }

.cd-secondary-nav {
  z-index: 3;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
    /*background: url(../img/header_white.png) no-repeat 0% 0%;*/
    background-position-y: bottom;
    height: auto;
    background-size: cover;
    position: fixed;
    min-height: 100px;
    width: 100%;
    border: none;
    
}

.current-menu-parent a {
    color: rgb(0,93,86) !important;
}

.current-menu-parent .menu-item a {
  color: #999999 !important;
}




nav.mobile .menu-item ul li a,
nav.mobile .menu-item ul li.go-back a,
nav.mobile .menu-item:hover ul li.menu-item a,
nav.mobile .menu-item ul li.menu-item a,
nav.mobile .current-menu-item ul li.menu-item a {
    color: rgb(255, 255, 255) !important;
    background: rgba(0, 93, 87, 1) !important;
    cursor: pointer;
}

nav.mobile .menu-item ul li a:hover,
nav.mobile .menu-item ul li.menu-item:hover a,
nav.mobile .current-menu-item ul li.menu-item:hover a,

nav.mobile .current-menu-parent ul li.menu-item.current-menu-item > a,
/*nav.mobile .menu-item ul li.current-menu-item a*/

nav.mobile .current-menu-item a,
nav.mobile .current-page-parent,
nav.mobile .menu-item:hover a,
nav.mobile .current-menu-parent .menu-item:hover a {
    color: rgb(0,93,86) !important;
    background: #fff !important;
    cursor: pointer;
}

nav.mobile .menu-item:hover ul li.go-back a::before, nav.mobile .menu-item:hover ul li.go-back a::after,
nav.mobile .menu-item ul li.go-back a::before, nav.mobile .menu-item ul li.go-back a::after {
  background: #fff !important;
}

nav.mobile .menu-item ul li.go-back:hover a::before, nav.mobile .menu-item ul li.go-back:hover a::after,
nav.mobile .menu-item-has-children.menu-item:hover a::before, nav.mobile .menu-item-has-children.menu-item:hover a::after,
nav.mobile .current_page_ancestor.menu-item-has-children:hover > a::before, nav.mobile .current_page_ancestor.menu-item-has-children:hover > a::after,
nav.mobile .current_page_ancestor.menu-item-has-children > a::before, nav.mobile .current_page_ancestor.menu-item-has-children > a::after {
  background: rgb(0, 93, 86) !important;
}

li.go-back a {
  color: #fff !important;
}

.container-fluid {
    /*max-width: 1200px;*/ 
}

i.x-icon-angle-right:before {
    content: "/";
}

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

Footer

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

/*.sisax_footer {*/
/*    position: relative;*/
/*    background: url(../img/footer_white.png) no-repeat 0% 0%;*/
/*    background-position-y: top;*/
/*    background-size: cover;*/
/*    color: #9E9E9E;*/
/*    z-index: 2;*/
/*    text-align: right;*/
/*    font-size: 16px;*/
/*    height: 275px;*/
/*    bottom: 0;*/
/*    right: 0;*/
/*    left: 0;*/
/*}*/


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

Placeholder Sections

-------------------------------- */
.cd-section {
    /*padding: 1em;*/
}
.cd-section h2 {
  font-size: 20px;
  font-size: 1.25rem;
  margin-bottom: .6em;
  font-weight: 700;
}
.cd-section p {
  line-height: 1.6;
}
@media only screen and (min-width: 1170px) {
  .cd-section {
/*    margin: 0 auto;
    padding: 4em 0;*/
  }
  .cd-section h2 {
    font-size: 30px;
    font-size: 1.875rem;
  }
  .cd-section p {
    font-size: 20px;
    font-size: 1.25rem;
  }
}

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

Speaker Profile Pages

-------------------------------- */
.sponsor-facts,
.session-facts,
.speaker-facts {
  text-align: left;
  margin-bottom: 2em;
  font-size: 16px;
}

.sponsor-facts h1,
.session-facts h1,
.speaker-facts h1 {
    margin: 0 calc(0em * -1) 0 0;
    font-family: "SansaPro SemiBoldItalic";
    font-size: 30px;
    font-style: italic;
    font-weight: 600;
    line-height: 1.4;
    letter-spacing: 0em;
    text-transform: none;
    color: rgb(0,93,86);
}


.speaker-facts .job-title {
  display: block;
}

.session-facts .company,
.speaker-facts .company {
  display: block;
}

.sponsor {
  text-align: left;
  clear: both;
}

.speech {
  text-align: left;
}

.speech-title {
    text-align: left;
    margin-bottom: 0;
}

.speech-abstract {
    margin: 0em;
    padding: 1em 2em 2em 1em;
    font-family: inherit;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.4;
    letter-spacing: 0em;
    text-align: left;
    text-transform: none;
    color: rgb(255,255,255);
    background-color: transparent;
}

.speaker-button {
    display: none !important;
}

.session-image h3.img_sub_right {
    bottom: 32.5%;
    left: 0px;
}

.stage-image h3.img_sub_right {
    bottom: 5%;
    left: 0px;
}

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

Counter section

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

.facts {
    position: relative;
    overflow: hidden;
}

.facts__col {
    text-align: center;
    padding-top: 3em;
    padding-bottom: 3em;
}

.facts strong {
    font-weight: 600;
    font-size: 42px;
    line-height: normal;
    display: inline-block;
    padding-bottom: 15px;
    margin-bottom: 15px;
    border-bottom: 1px solid rgba(255,255,255,.12);
    letter-spacing: 3px;
    font-family: 'SansaProNormal', 'corbel', 'sans-serif';
}

.facts p {
    font-size: 1.125rem;
    margin: 0;
    line-height: 1.5em;
}

.breadcrumb_sisax {
    margin-top: 80px;
    position: relative;
    display: block;
    text-align: center;
    color: #fff;
    padding: 0 5%;
    padding-bottom: 2em;
}

.breadcrumb_sisax .delimiter i {
  font-weight: 400;
  color: rgb(0,93,86);
  padding-left: 2px;
  padding-right: 2px;
}


@media (min-width: 768px) {
  
  .facts {
      padding: 60px 30px 90px;
  }

  .facts__box {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: justify;
      -ms-flex-pack: justify;
      justify-content: space-between;
      padding-bottom: 5em;
      padding-top: 2em;
  }

  .facts__col {
      width: 25%;
      padding: 0;
  }

  .facts strong {
      font-weight: 600;
      line-height: normal;
      display: inline-block;
      padding-bottom: 15px;
      margin-bottom: 15px;
      border-bottom: 1px solid rgba(255,255,255,.12);
      letter-spacing: 3px;
      font-family: 'SansaProNormal', 'corbel', 'sans-serif';
  }

  .cd-secondary-nav li:last-child a {
    border-bottom: none;
    /*padding-bottom: 1.6em;*/
  }

}


@media (min-width: 980px) {

  .cd-secondary-nav {
      min-height: 190px;
  }
  
  .breadcrumb_sisax {
    margin-top: 130px;
    text-align: right;
  }

}



/*speaker page */

#sponsor-abstract h1,
#session-abstract h1,
#speaker-abstract h1 {
    font-family: 'SansaProBold', 'corbel', 'sans-serif';
    font-size: 1.1em;
    font-style: normal;
    line-height: 1.5;
    letter-spacing: 0.1em;
    margin-right: calc(0.1em * -1);
    text-align: center;
    color: #fff;
    text-transform: uppercase;
    text-align: left;
}

#sponsor-abstract h2,
#session-abstract h2,
#speaker-abstract h2 {
    margin-top: 0;
    margin: 0 calc(0em * -1) 0 0;
    font-family: 'SansaProSemiBoldItalic', 'corbel', 'sans-serif';
    font-size: 36px;
    font-style: italic;
    font-weight: 600;
    line-height: 1.4;
    letter-spacing: 0em;
    text-transform: none;
    color: rgb(0,93,86);
}

#session-abstract h2.speech-title,
#speaker-abstract h2.speech-title {
    font-family: 'SansaProLight', 'corbel', 'sans-serif';
    font-weight: 100;
}

.sponsor-image,
.session-image {
  margin-bottom: 1em;
  width: 100%;
}

.session-speaker ul li {
    margin-bottom: 1em;
    display: inline-block;
    width: 100%;
}

.session-content .session-speaker ul li {
    margin-bottom: 0;
    display: inline-block;
    width: 100%;
}

.session-speaker .speaker-name {
  font-weight: bold;
}

.session-speaker .speaker-name:after {
    content: "\f05a";
    margin-left: 0.3em;
    font-family: "FontAwesome" !important;
    font-style: normal !important;
    font-weight: normal !important;
    text-decoration: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

div.event-location:before {
    content: "\f3c5";
	color: #fff;
    margin-right: 0.7em;
    margin-left: 0.1em;
    font-family: "FontAwesome" !important;
    font-style: normal !important;
    font-weight: normal !important;
    text-decoration: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

div.session-type:before {
    content: "\f02b";
	color: #fff;
	font-size: 16px;
    margin-right: 0.8em;
    margin-left: -25px;
    font-family: "FontAwesome" !important;
    font-style: normal !important;
    font-weight: normal !important;
    text-decoration: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

div.session-slot:before {
    content: "\f075";
	color: #fff;
	font-size: 16px;
    margin-right: 0.8em;
    margin-left: -25px; 
    font-family: "FontAwesome" !important;
    font-style: normal !important;
    font-weight: normal !important;
    text-decoration: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

div.speech-time:before {
    content: "\f017";
	color: #fff;
    margin-right: 0.5em;
    font-family: "FontAwesome" !important;
    font-style: normal !important;
    font-weight: normal !important;
    text-decoration: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

div.speech-time, div.session-type, div.session-slot {
    margin-bottom: 5px;
}

.sponsor-weblink {
  color: #fff; 
}

.sponsor-weblink:before {
    content: "\f35d";
    margin-right: 0.5em;
    font-family: "FontAwesome" !important;
    font-style: normal !important;
    font-weight: normal !important;
    text-decoration: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

#session-abstract span.connected-sessions {
  margin-top: 2em;
  display: block;
}

#session-abstract span.connected-sessions span {
  display: block;
  margin-bottom: 0.5em;
}

#session-abstract span.connected-sessions span:before {
    content: "\f02b";
    margin-right: 0.5em;
    margin-left: 0.1em;
    font-family: "FontAwesome" !important;
    font-style: normal !important;
    font-weight: normal !important;
    text-decoration: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

#speaker-abstract .speaker-facts .job-title {
  font-size: 16px;
  margin-bottom: 10px;
}

#speaker-abstract .speaker-facts .company {
  font-size: 16px;
  color: rgb(0,93,86);
}

#speaker-abstract .speaker-image h3 {
    bottom: 35%;
    left: 0px;
}

#speaker-abstract .speaker-image,
#session-abstract .session-image,
#sponsor-abstract .sponsor-image {
    display: inline-block;
    width: 100%;
}

#session-abstract .sponsor-info,
#sponsor-abstract .sponsor-info,
#speaker-abstract .speech-info {
    margin-top: 1em;
    margin-bottom: 1em;
    text-align: left; 
    font-size: 16px;
    line-height: 1.8;
}

#session-abstract .speech-info .speaker-headline,
#speaker-abstract .speech-info .speaker-headline {
    margin: 0 calc(0em * -1) 0 0;
    font-family: 'SansaProSemiBoldItalic', 'corbel', 'sans-serif';
    font-style: italic;
    margin: 1em 0em 1em 0em;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.4;
    letter-spacing: 0em;
    text-align: left;
    text-transform: none;
    color: rgb(0,93,86);
}

#session-abstract .speaker-name,
#speaker-abstract .speaker-name,
#speaker-abstract .speaker-title,
#speaker-abstract .speaker-company {
  display: none;
}

.subhead-h3 {
    margin: 0 calc(0em * -1) 0 0;
    margin-bottom: 1em;
    font-family: 'SansaProSemiBoldItalic', 'corbel', 'sans-serif';
    font-size: 20px;
    font-style: italic;
    font-weight: 600;
    line-height: 1.4;
    letter-spacing: 0em;
    text-align: left;
    text-transform: none;
    color: rgb(0, 93, 86);
}

/*cookie notice*/

.sisax-btn {
  background: #fff !important;
  border-radius: 0px !important;
  text-shadow: none !important;
  border: none !important;
}

/*sharing shariff*/

.ShariffHeadline {
    margin: 0 calc(0em * -1) 0 0;
    font-family: 'SansaProSemiBoldItalic', 'corbel', 'sans-serif';
    font-style: italic;
    margin: 0em 0em 1em 0em;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.4;
    letter-spacing: 0em;
    text-align: left;
    text-transform: none;
    color: rgb(0,93,86);
}

a.speaker-link h6 {
  color: #005d56;
  letter-spacing: 0;
}

figure.connected_spkr {
    margin: 0;
    width: 42.5%;
    float: left;
    padding: 0.5em;
    margin-right: 1em;
    min-height: 290px;
}

figure.connected_spkr_multiple {
    margin: 0;
    width: 42.5%;
    float: left;
    padding: 0.5em;
    margin-right: 1em;
    min-height: 250px;
}

figure.connected_spkr_multiple img,
figure.connected_spkr img {
    border: 10px solid rgb(0 93 86 / 50%);
    background: rgba(0, 93, 86, 0.50);
}

figure.connected_spkr_multiple .speaker-company,
figure.connected_spkr .speaker-company {
	margin-bottom: 0.5em;
}

figure.connected_spkr_multiple .speaker-company {
	display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}