:root {
  --animate-delay: 0.25s;
  --animate-duration: 500ms;
}

html {
  font-family: "Lato", sans-serif;
  margin: 0;
  padding: 0;
  background-color: #484848;
  font-size: 14px;
}
@media (min-width: 600px) {
  html {
    font-size: 16px;
  }
}
@media (min-width: 1800px) {
  html {
    font-size: 16px;
  }
}
@media (min-width: 2100px) {
  html {
    font-size: 20px;
  }
}
html body {
  font-family: "Lato", sans-serif;
  margin: 0;
  padding: 0;
}
html a {
  text-decoration: none;
  transition: 0.5s;
}
html a:link, html a:visited {
  color: #ffffff;
}
html a:hover, html a:active {
  color: #1a1a1a;
}
html h1,
html h2,
html h3 {
  margin: 0;
  padding: 0;
}
@media (max-width: 599px) {
  html h1,
  html h2,
  html h3 {
    font-size: 1.5rem;
  }
}
html h1.font_large {
  font-size: 3.75rem;
}
@media (max-width: 599px) {
  html h1.font_large {
    font-size: 1.75rem;
  }
}
html h1.font_small {
  font-size: 2.1rem;
}
@media (max-width: 599px) {
  html h1.font_small {
    font-size: 1.5rem;
  }
}
html button, html button.ui-button {
  border: 3px solid #484848;
  padding: 13px 40px;
  border-radius: 50px;
  background: none;
  text-transform: uppercase;
  color: #484848;
  font-weight: 700;
  font-family: "Lato", sans-serif;
  cursor: pointer;
  transition: all 0.25s ease-in-out;
}
html button:hover, html button.ui-button:hover {
  background-color: #484848;
  color: #ffffff;
}
html button:focus, html button:active, html button.ui-button:focus, html button.ui-button:active {
  border: 3px solid #484848;
  background: none;
  color: #484848;
  font-weight: 700;
  font-family: "Lato", sans-serif;
}
html .font_light {
  font-weight: 300;
}
html .font_regular {
  font-weight: 400;
}
html .font_bold {
  font-weight: 700;
}
html .font_black {
  font-weight: 900;
}
html .font_underline {
  text-decoration: underline;
}
html .color_light {
  color: #ffffff;
}
html .color_dark {
  color: #484848;
}
html .color_dark a {
  color: #484848;
  text-decoration: underline;
}
html .color_dark a:hover {
  color: #aaaaaa;
}
html .xolo-headline span {
  display: block;
}
html #xolo-logo {
  position: absolute;
  cursor: pointer;
  background-repeat: no-repeat;
  background-position: center;
  width: 100px;
  height: 50px;
  left: 22px;
  top: 18px;
  z-index: 99;
  transition: all 0.5s ease-in-out;
}
html #xolo-logo.light {
  background-image: url("xolo-logo-light.png");
}
html #xolo-logo.dark {
  background-image: url("xolo-logo-dark.png");
}
html #xolo-logo a {
  display: block;
  height: 100%;
  width: 100%;
}
html #mobile_menue {
  display: none;
}
@media (max-width: 599px) {
  html #mobile_menue {
    display: block;
    width: 0%;
    height: 100vh;
    background: white;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 100;
    color: #484848;
    font-size: 1em;
  }
  html #mobile_menue a {
    color: #484848;
  }
  html #mobile_menue ul {
    list-style: none;
    display: block;
    margin: 0em;
    padding: 0px;
    text-transform: uppercase;
  }
  html #mobile_menue ul li {
    display: block;
    border-bottom: 1px solid rgba(72, 72, 72, 0.2);
  }
  html #mobile_menue ul li a {
    padding: 0.5em 1em 0.5em 2em;
    display: block;
  }
}
html .burger_menue.dark {
  background: url("btn_burger.png") center no-repeat;
}
html .burger_menue.light {
  background: url("btn_burger_light.png") center no-repeat;
}
@media (max-width: 599px) {
  html .burger_menue {
    width: 2.5em;
    height: 2.5em;
    display: block;
    z-index: 101;
    position: absolute;
    right: 1em;
    top: 22px;
  }
}
html #trigger {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 10px;
  height: 10px;
  background-color: transparent;
}
html .logo-red {
  background-color: rgba(255, 0, 0, 0.25);
  border-radius: 20px;
  width: 120px;
  height: 70px;
}
html .menue {
  display: none;
}
@media (min-width: 600px) {
  html .menue {
    display: block;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    margin: 0px auto 0px auto;
    padding: 0px;
    width: -moz-fit-content;
    width: fit-content;
    list-style: none;
    top: 20px;
    z-index: 10;
  }
  html .menue li {
    display: inline;
    margin-right: 20px;
  }
  html .menue li:last-child {
    margin-right: 0px;
  }
}
html .menue .menue_center {
  position: relative;
}
html .menue.light a {
  color: #ffffff;
  transition: 0.5s;
}
html .menue.light a:hover, html .menue.light a:active {
  color: #cccccc;
}
html .menue.dark a {
  color: #484848;
  transition: 0.5s;
}
html .menue.dark a:hover, html .menue.dark a:active {
  color: #939393;
}
html .menue.dark2 a {
  color: #494949;
  transition: 0.5s;
}
html .menue.dark2 a:hover, html .menue.dark2 a:active {
  color: #484848;
}
html #menue_dropdown {
  display: none;
  margin: 0px;
  padding: 0px;
  position: absolute;
  left: 130px;
  top: 23px;
  list-style: none;
  background-color: rgba(255, 255, 255, 0);
  border-radius: 5px 5px 0px 0px;
  z-index: 1000;
  transition: all 0.5s;
}
html #menue_dropdown:hover {
  background-color: rgb(255, 255, 255);
}
html #menue_dropdown a {
  text-transform: uppercase;
}
html #menue_dropdown.light {
  color: #ffffff;
}
html #menue_dropdown.light a {
  color: #ffffff;
}
html #menue_dropdown.dark {
  color: #484848;
}
html #menue_dropdown.dark a {
  color: #484848;
}
html #menue_dropdown.dark li.menu_drop_item {
  background-image: url("dropdown_closed_dark.png");
}
html #menue_dropdown li.menu_drop_item {
  padding: 0.557142857em 0 0.5em 2em;
  position: relative;
  width: 175px;
  background-image: url("dropdown_closed_light.png");
  background-repeat: no-repeat;
  background-position-x: 90%;
  background-position-y: center;
  transition: all 0.5s;
}
html #menue_dropdown li.menu_drop_item:hover {
  background-image: url("dropdown_closed_dark.png");
}
html #menue_dropdown li.menu_drop_item:hover .menu_drop_sub {
  opacity: 1;
  visibility: visible;
}
html #menue_dropdown li.menu_drop_item:hover a {
  color: #484848;
}
html #menue_dropdown li.menu_drop_item ul.menu_drop_sub {
  list-style: none;
  padding: 0px;
  position: absolute;
  top: 2.244375em;
  left: 0em;
  opacity: 0;
  visibility: hidden;
  background: white;
  border-radius: 0px 0px 5px 5px;
  transition: all 0.5s;
  padding: 0.5em 0 0.5em 2em;
  width: 175px;
}
html #menue_dropdown li.menu_drop_item ul.menu_drop_sub li {
  margin: 1.25em 0;
}
html #menue_dropdown li.menu_drop_item ul.menu_drop_sub li a {
  color: #939393;
}
html #menue_dropdown li.menu_drop_item ul.menu_drop_sub li a:hover {
  color: #484848;
}
html #menue_dropdown li.menu_drop_item ul.menu_drop_sub li:nth-child(1) {
  margin-top: 0.2em;
}
html div#pageProgress {
  height: 2px;
  width: 0%;
  background-color: #e85559;
  position: absolute;
  left: 0px;
  top: 0px;
  z-index: 100;
}
html nav.pg-pips.dark a {
  background-color: #848484;
}
html #mainPage {
  opacity: 1;
}
@media (max-width: 599px) {
  html #mainPage {
    transition: all 0.25s;
  }
  html #mainPage.overlay {
    opacity: 0.5;
  }
}
@media (max-width: 599px) {
  html body .burger_menue.dark {
    top: 22px;
    right: 1rem;
  }
}
@media (max-width: 599px) {
  html .mobileHomeMenue {
    padding: 1rem;
    background-color: white;
  }
  html .mobileHomeMenue #xolo-logo {
    position: relative !important;
    left: auto;
    top: auto;
  }
}
html #itsthere {
  background-image: url("bg_itsthere.jpg");
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  overflow: hidden;
  background-color: #d4cdbd;
}
@media (max-width: 599px) {
  html #itsthere {
    height: 60vh;
  }
}
html #itsthere .xolo-headline {
  height: 100%;
  width: 100%;
  overflow: hidden;
  background: white;
}
html #itsthere .xolo-headline .xolo_header {
  position: absolute;
  transform: translate(-50%, -50%) scale(1);
  left: 50%;
  top: 50%;
  z-index: 8;
  min-height: 100%;
  min-width: 100%;
}
html #itsthere .xolo-headline .xolo_header img {
  width: 100%;
}
html #itsthere .xolo-headline video {
  position: absolute;
  transform: translate(-50%, -50%) scale(1);
  left: 50%;
  top: 50%;
  z-index: 8;
  min-height: 100%;
  min-width: 100%;
}
html #itsthere .headline_bottom {
  position: absolute;
  bottom: 7%;
  left: 17%;
  z-index: 20;
  color: #484848;
}
@media (max-width: 599px) {
  html #itsthere .headline_bottom {
    left: 1em;
    right: 1em;
    bottom: 4em;
    text-shadow: none;
  }
}
@media (min-width: 1590px) {
  html #itsthere .headline_bottom {
    bottom: 7%;
  }
}
html #itsthere .headline_bottom p {
  line-height: 1.5em;
}
html #itsthere .btn_play {
  display: none;
  position: absolute;
  left: 50%;
  margin-left: -125px;
  top: 40%;
  margin-top: -125px;
  width: 250px;
  height: 250px;
  background-image: url("btn_play_normal.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  transition: all 1s ease-in-out;
  z-index: 10;
}
html #itsthere .btn_play:hover {
  background-image: url("btn_play_hover.png");
  cursor: pointer;
  opacity: 0.5;
}
@media (min-width: 900px) {
  html #itsthere .btn_play {
    width: 450px;
    height: 450px;
    margin-top: -225px;
    margin-left: -225px;
  }
}
html #thexube {
  display: flex;
  flex-direction: column;
  background-color: #ffffff;
}
@media (max-width: 599px) {
  html #thexube {
    padding-top: 1em;
  }
}
html #thexube .content_xube {
  background-image: url("bg_thexube.jpg");
  background-repeat: no-repeat;
  background-size: contain;
  background-color: #fbfbfb;
  display: flex;
  align-content: stretch;
  flex-direction: column;
  align-content: stretch;
  height: 100%;
}
@media (max-width: 599px) {
  html #thexube .content_xube {
    height: 120vh;
  }
}
@media (min-width: 600px) {
  html #thexube .content_xube {
    background-position-x: -6em;
  }
}
@media (min-width: 900px) {
  html #thexube .content_xube {
    flex-direction: row;
    background-position-x: -11em;
  }
}
@media (min-width: 1200px) {
  html #thexube .content_xube {
    background-position-x: -11em;
  }
}
@media (min-width: 1366px) {
  html #thexube .content_xube {
    background-position-x: -12em;
  }
}
@media (min-width: 1590px) {
  html #thexube .content_xube {
    background-position-x: -6em;
  }
}
@media (min-width: 1300px) and (min-height: 1020px) {
  html #thexube .content_xube {
    background-position-y: center;
    background-position-x: -14em;
  }
}
html #thexube .content_xube .thexube_left {
  flex-basis: 55%;
}
@media (max-width: 599px) {
  html #thexube .content_xube .thexube_left {
    flex: 1;
  }
}
html #thexube .content_xube .thexube_right {
  flex-basis: 45%;
  display: flex;
  flex-direction: column;
}
html #thexube .content_xube .thexube_right p {
  line-height: 1.5em;
}
@media (max-width: 599px) {
  html #thexube .content_xube .thexube_right {
    flex: 1;
  }
}
html #thexube .content_xube .thexube_right .fact_headline {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2em 1em;
}
@media (min-width: 900px) {
  html #thexube .content_xube .thexube_right .fact_headline {
    padding-left: unset;
  }
}
@media (min-width: 600px) {
  html #thexube .content_xube .thexube_right .fact_headline {
    flex-grow: 36.5364;
  }
}
html #thexube .content_xube .thexube_right .fact_button {
  display: flex;
  align-items: center;
  padding: 0em 1em 2em 1em;
}
@media (min-width: 900px) {
  html #thexube .content_xube .thexube_right .fact_button {
    padding-left: unset;
  }
}
@media (min-width: 600px) {
  html #thexube .content_xube .thexube_right .fact_button {
    flex-grow: 11.0876;
  }
}
html #thexube .content_xube .thexube_right .fact_specs {
  display: flex;
  padding: 0 1em 1em 1em;
}
@media (min-width: 900px) {
  html #thexube .content_xube .thexube_right .fact_specs {
    padding-left: unset;
  }
}
html #thexube .content_xube .thexube_right .fact_specs img {
  padding-bottom: 20px;
}
@media (min-width: 1590px) {
  html #thexube .content_xube .thexube_right .fact_specs img {
    float: left;
  }
}
html #thexube .content_xube .thexube_right .fact_specs p {
  line-height: 1.5;
  vertical-align: middle;
  margin: 0;
}
@media (min-width: 1590px) {
  html #thexube .content_xube .thexube_right .fact_specs p {
    margin: 1em 0em 0em 6.25em;
  }
}
@media (min-width: 1590px) {
  html #thexube .content_xube .thexube_right .fact_specs p {
    display: block;
  }
}
html #thexube .content_xube .thexube_right .fact_specs .fact_spec_material {
  flex-basis: 33%;
  padding-right: 20px;
  text-align: center;
}
@media (min-width: 1366px) {
  html #thexube .content_xube .thexube_right .fact_specs .fact_spec_material {
    border-right: solid 1px #484848;
  }
}
@media (min-width: 1590px) {
  html #thexube .content_xube .thexube_right .fact_specs .fact_spec_material {
    text-align: left;
  }
}
html #thexube .content_xube .thexube_right .fact_specs .fact_spec_surface {
  flex-basis: 33%;
  padding-right: 20px;
  padding-left: 15px;
  text-align: center;
}
@media (min-width: 1366px) {
  html #thexube .content_xube .thexube_right .fact_specs .fact_spec_surface {
    border-right: solid 1px #484848;
  }
}
@media (min-width: 1590px) {
  html #thexube .content_xube .thexube_right .fact_specs .fact_spec_surface {
    text-align: left;
  }
}
html #thexube .content_xube .thexube_right .fact_specs .fact_spec_speed {
  flex-basis: 33%;
  text-align: center;
}
@media (min-width: 900px) {
  html #thexube .content_xube .thexube_right .fact_specs .fact_spec_speed {
    padding-left: 15px;
  }
}
@media (min-width: 1590px) {
  html #thexube .content_xube .thexube_right .fact_specs .fact_spec_speed {
    text-align: left;
  }
}
html #thexube .content_xube .thexube_right .thexube_right_spacer {
  flex-grow: 52;
}
@media (max-width: 599px) {
  html #thexube .content_xube .thexube_right .thexube_right_spacer {
    display: none;
  }
}
html #buildyourideas {
  display: flex;
  flex-direction: column;
}
html #buildyourideas p {
  line-height: 1.5rem;
}
@media (max-width: 599px) {
  html #buildyourideas {
    height: 110vh;
  }
}
html #buildyourideas .content_buildideas {
  display: flex;
  flex-direction: column;
  height: 100%;
}
@media (min-width: 900px) {
  html #buildyourideas .content_buildideas {
    flex-direction: row;
    background-size: contain;
    background-repeat: repeat;
    background-position: left top;
  }
}
html #buildyourideas .content_buildideas .ideas_left {
  background-color: #1c1c1c;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  flex: 1 1 30%;
  flex-direction: column;
}
html #buildyourideas .content_buildideas .ideas_left video {
  position: absolute;
  height: 100%;
  transform: translate(-50%, -50%);
  left: 50%;
  top: 50%;
  z-index: 90;
}
html #buildyourideas .content_buildideas .ideas_left .mask {
  height: 100%;
  width: 100%;
  position: absolute;
  background-image: url("maske_ideas2.png");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: 100;
}
@media (min-width: 900px) {
  html #buildyourideas .content_buildideas .ideas_left {
    flex-basis: 76.875%;
  }
}
@media (min-width: 1590px) {
  html #buildyourideas .content_buildideas .ideas_left {
    background-position: left center;
    background-size: cover;
  }
}
@media (min-width: 1800px) {
  html #buildyourideas .content_buildideas .ideas_left {
    background-position: left center;
    background-size: cover;
    flex-basis: 90%;
  }
}
html #buildyourideas .content_buildideas .ideas_left .ideas_footer {
  color: #ffffff;
  margin: 0px auto 30px auto;
  display: none;
  text-align: center;
}
@media (min-width: 900px) {
  html #buildyourideas .content_buildideas .ideas_left .ideas_footer {
    display: block;
    position: absolute;
    bottom: 0em;
    left: 50%;
    transform: translateX(-50%);
    z-index: 100;
  }
}
html #buildyourideas .content_buildideas .ideas_left .ideas_footer ul {
  list-style: none;
  margin: 0px;
  padding: 0px;
}
html #buildyourideas .content_buildideas .ideas_left .ideas_footer ul li {
  display: inline-block;
  padding-right: 20px;
}
html #buildyourideas .content_buildideas .ideas_left .ideas_footer ul li:first-child {
  padding-right: 16px;
}
html #buildyourideas .content_buildideas .ideas_left .ideas_footer ul li:last-child {
  padding-right: 0;
}
html #buildyourideas .content_buildideas .ideas_left .ideas_footer ul li a:hover {
  color: #50bfcd;
}
html #buildyourideas .content_buildideas .ideas_right {
  box-sizing: border-box;
  background-color: white;
  display: flex;
  flex-direction: column;
  flex: 1 1 70%;
  padding: 2em 1em 2em 1em;
}
@media (min-width: 900px) {
  html #buildyourideas .content_buildideas .ideas_right {
    width: 444px;
    flex-basis: unset;
    padding: 2em 3em 2em 2em;
  }
}
html #buildyourideas .content_buildideas .ideas_right .ideas_headline {
  padding-top: 1rem;
}
@media (min-width: 900px) {
  html #buildyourideas .content_buildideas .ideas_right .ideas_headline {
    padding-top: 55%;
  }
}
html #buildyourideas .content_buildideas .ideas_right .ideas_message {
  display: flex;
  align-items: flex-end;
}
@media (min-width: 600px) {
  html #buildyourideas .content_buildideas .ideas_right .ideas_message {
    flex-basis: 27.0502%;
  }
}
html #buildyourideas .content_buildideas .ideas_right .ideas_button {
  display: flex;
  align-items: flex-end;
  flex-basis: 14.0759%;
}
html #buildyourideas .content_buildideas .ideas_right .ideas_footer_mobile {
  color: #484848;
  margin: 30px auto 30px auto;
  display: block;
  text-align: center;
  line-height: 1.5rem;
}
@media (min-width: 600px) {
  html #buildyourideas .content_buildideas .ideas_right .ideas_footer_mobile {
    display: none;
  }
}
html #buildyourideas .content_buildideas .ideas_right .ideas_footer_mobile ul {
  list-style: none;
  margin: 0px;
  padding: 0px;
}
html #buildyourideas .content_buildideas .ideas_right .ideas_footer_mobile ul li {
  display: inline-block;
  padding-right: 20px;
}
html #buildyourideas .content_buildideas .ideas_right .ideas_footer_mobile ul li:first-child {
  padding-right: 16px;
}
html #buildyourideas .content_buildideas .ideas_right .ideas_footer_mobile ul li:last-child {
  padding-right: 0;
}
html #privacy {
  display: flex;
  flex-direction: column;
  background-color: #ffffff;
  background-image: url("bg_privacy.jpg");
}
@media (max-width: 599px) {
  html #privacy {
    padding-top: 1em;
  }
}
html #privacy .content_xube {
  background-image: url("bg_thexube.jpg");
  background-repeat: no-repeat;
  background-size: 90%;
  background-color: #fbfbfb;
  display: flex;
  align-content: stretch;
  flex-direction: column;
  align-content: stretch;
  height: 100%;
}
@media (max-width: 599px) {
  html #privacy .content_xube {
    height: 120vh;
  }
}
@media (min-width: 600px) {
  html #privacy .content_xube {
    background-position-x: -6em;
  }
}
@media (min-width: 900px) {
  html #privacy .content_xube {
    flex-direction: row;
    background-position-x: -11em;
  }
}
@media (min-width: 1200px) {
  html #privacy .content_xube {
    background-position-x: -11em;
  }
}
@media (min-width: 1366px) {
  html #privacy .content_xube {
    background-position-x: -12em;
  }
}
@media (min-width: 1590px) {
  html #privacy .content_xube {
    background-position-x: -6em;
  }
}
@media (min-width: 1300px) and (min-height: 1020px) {
  html #privacy .content_xube {
    background-position-y: center;
    background-position-x: -14em;
  }
}
html #privacy .content_xube .privacy_left {
  flex-basis: 55%;
}
@media (max-width: 599px) {
  html #privacy .content_xube .privacy_left {
    flex-basis: 40%;
  }
}
html #privacy .content_xube .privacy_right {
  flex-basis: 45%;
  display: flex;
  flex-direction: column;
}
html #privacy .content_xube .privacy_right p {
  line-height: 1.5em;
}
@media (max-width: 599px) {
  html #privacy .content_xube .privacy_right {
    flex-basis: 60%;
    padding-bottom: 2em;
  }
}
html #privacy .content_xube .privacy_right .fact_headline {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2em 2em 2em 0;
}
@media (min-width: 900px) {
  html #privacy .content_xube .privacy_right .fact_headline {
    padding-left: unset;
  }
}
@media (min-width: 600px) {
  html #privacy .content_xube .privacy_right .fact_headline {
    flex-grow: 36.5364;
  }
}
html #wearexolo {
  display: flex;
  flex-direction: column;
}
html #wearexolo p {
  line-height: 1.5rem;
}
@media (max-width: 599px) {
  html #wearexolo {
    height: 110vh;
  }
}
html #wearexolo .content_wearexolo {
  display: flex;
  flex-direction: column;
  height: 100%;
}
@media (min-width: 900px) {
  html #wearexolo .content_wearexolo {
    flex-direction: row;
    background-size: contain;
    background-repeat: repeat;
    background-position: left top;
  }
}
html #wearexolo .content_wearexolo .wearexolo_left {
  background-image: url("bg_wearexolo.jpg");
  background-color: #1c1c1c;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 0em center;
  display: flex;
  align-items: flex-end;
  flex-basis: 45%;
}
@media (min-width: 900px) {
  html #wearexolo .content_wearexolo .wearexolo_left {
    flex-basis: 76.875%;
    background-position: left center;
  }
}
@media (min-width: 1590px) {
  html #wearexolo .content_wearexolo .wearexolo_left {
    background-position: left center;
    background-size: cover;
  }
}
@media (min-width: 1800px) {
  html #wearexolo .content_wearexolo .wearexolo_left {
    background-position: left center;
    background-size: cover;
    flex-basis: 90%;
  }
}
html #wearexolo .content_wearexolo .wearexolo_left .wearexolo_footer {
  color: #ffffff;
  margin: 0px auto 30px auto;
  display: none;
  text-align: center;
}
@media (min-width: 900px) {
  html #wearexolo .content_wearexolo .wearexolo_left .wearexolo_footer {
    display: block;
  }
}
html #wearexolo .content_wearexolo .wearexolo_left .wearexolo_footer ul {
  list-style: none;
  margin: 0px;
  padding: 0px;
}
html #wearexolo .content_wearexolo .wearexolo_left .wearexolo_footer ul li {
  display: inline-block;
  padding-right: 20px;
}
html #wearexolo .content_wearexolo .wearexolo_left .wearexolo_footer ul li:first-child {
  padding-right: 16px;
}
html #wearexolo .content_wearexolo .wearexolo_left .wearexolo_footer ul li:last-child {
  padding-right: 0;
}
html #wearexolo .content_wearexolo .wearexolo_right {
  box-sizing: border-box;
  background-color: white;
  display: flex;
  flex-direction: column;
  flex-basis: 55%;
  padding: 2em 1em 2em 1em;
}
@media (min-width: 900px) {
  html #wearexolo .content_wearexolo .wearexolo_right {
    width: 444px;
    flex-basis: unset;
    padding-left: 24px;
    padding-right: 34px;
  }
}
html #wearexolo .content_wearexolo .wearexolo_right .wearexolo_headline {
  padding-top: 1rem;
}
@media (min-width: 900px) {
  html #wearexolo .content_wearexolo .wearexolo_right .wearexolo_headline {
    padding-top: 55%;
  }
}
html #wearexolo .content_wearexolo .wearexolo_right .wearexolo_message {
  display: flex;
  align-items: flex-end;
}
@media (min-width: 600px) {
  html #wearexolo .content_wearexolo .wearexolo_right .wearexolo_message {
    flex-basis: 27.0502%;
  }
}
html #areyouxolo {
  display: flex;
  flex-direction: column;
}
html #areyouxolo p {
  line-height: 1.5rem;
}
@media (max-width: 599px) {
  html #areyouxolo {
    height: 130vh;
  }
}
html #areyouxolo .content_areyouxolo {
  display: flex;
  flex-direction: column;
  height: 100%;
}
@media (min-width: 900px) {
  html #areyouxolo .content_areyouxolo {
    background-size: contain;
    background-repeat: repeat;
    background-position: left top;
  }
}
html #areyouxolo .content_areyouxolo .areyouxolo_left {
  background-image: url("bg_areyouxolo.jpg");
  background-color: #1c1c1c;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  flex-basis: 56%;
}
@media (max-width: 599px) {
  html #areyouxolo .content_areyouxolo .areyouxolo_left {
    background-image: url("bg_areyouxolo_phon.jpg");
  }
}
@media (min-width: 900px) {
  html #areyouxolo .content_areyouxolo .areyouxolo_left {
    flex-basis: 76.875%;
  }
}
@media (min-width: 1590px) {
  html #areyouxolo .content_areyouxolo .areyouxolo_left {
    background-position: left center;
    background-size: cover;
  }
}
@media (min-width: 1800px) {
  html #areyouxolo .content_areyouxolo .areyouxolo_left {
    background-position: left center;
    background-size: cover;
  }
}
html #areyouxolo .content_areyouxolo .areyouxolo_right {
  background-color: white;
  display: flex;
  flex-direction: column;
  flex-basis: 44%;
  align-items: stretch;
  justify-content: center;
  padding: 2em 1em 2em 1em;
}
@media (min-width: 900px) {
  html #areyouxolo .content_areyouxolo .areyouxolo_right {
    flex-direction: row;
    flex-basis: 26%;
    padding-left: 24px;
    padding-right: 24px;
  }
}
html #areyouxolo .content_areyouxolo .areyouxolo_right .areyouxolo_headline {
  padding: 2em 0em 0 0em;
}
@media (min-width: 900px) {
  html #areyouxolo .content_areyouxolo .areyouxolo_right .areyouxolo_headline {
    padding: 2em 2em 0 2em;
  }
}
html #areyouxolo .content_areyouxolo .areyouxolo_right .areyouxolo_message {
  padding: 2em 0em 0em 0em;
}
@media (min-width: 600px) {
  html #areyouxolo .content_areyouxolo .areyouxolo_right .areyouxolo_message {
    padding: 2em 2em 0 2em;
  }
}
html #areyouxolo .content_areyouxolo .areyouxolo_right .areyouxolo_message p {
  margin: 0px;
}
html #areyouxolo .content_areyouxolo .areyouxolo_right .areyouxolo_button {
  padding: 2em 0em 0 0em;
}
@media (min-width: 600px) {
  html #areyouxolo .content_areyouxolo .areyouxolo_right .areyouxolo_button {
    padding: 2em 2em 0 2em;
  }
}
html #areyouxolo .content_areyouxolo .areyouxolo_footer {
  color: #484848;
  background-color: white;
  margin: 0px auto 0px auto;
  padding-bottom: 2rem;
  text-align: center;
  width: 100%;
  line-height: 1.5rem;
}
@media (min-width: 900px) {
  html #areyouxolo .content_areyouxolo .areyouxolo_footer {
    display: block;
  }
}
html #areyouxolo .content_areyouxolo .areyouxolo_footer ul {
  list-style: none;
  margin: 0px;
  padding: 0px;
}
html #areyouxolo .content_areyouxolo .areyouxolo_footer ul li {
  display: inline-block;
  padding-right: 20px;
}
html #areyouxolo .content_areyouxolo .areyouxolo_footer ul li:first-child {
  padding-right: 16px;
}
html #areyouxolo .content_areyouxolo .areyouxolo_footer ul li:last-child {
  padding-right: 0;
}
html #areyouxolo .content_areyouxolo .areyouxolo_footer ul li a {
  color: #484848;
}
html #areyouxolo .content_areyouxolo .areyouxolo_footer ul li a:hover {
  color: #50bfcd;
}
html #xubetechnics {
  display: flex;
  flex-direction: column;
}
html #xubetechnics p {
  line-height: 1.5rem;
}
@media (max-width: 599px) {
  html #xubetechnics {
    height: 130vh;
  }
}
html #xubetechnics .content_xubetechnics {
  display: flex;
  flex-direction: column;
  height: 100%;
}
@media (min-width: 900px) {
  html #xubetechnics .content_xubetechnics {
    flex-direction: row;
    background-size: contain;
    background-repeat: repeat;
    background-position: left top;
  }
}
html #xubetechnics .content_xubetechnics .xubetechnics_right {
  background-image: url("bg_xubetechnics.jpg");
  background-color: #1c1c1c;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  flex-basis: 50%;
}
@media (max-width: 599px) {
  html #xubetechnics .content_xubetechnics .xubetechnics_right {
    display: none;
  }
}
@media (min-width: 900px) {
  html #xubetechnics .content_xubetechnics .xubetechnics_right {
    flex-basis: 50%;
    background-position: center;
  }
}
@media (min-width: 1590px) {
  html #xubetechnics .content_xubetechnics .xubetechnics_right {
    background-size: cover;
  }
}
@media (min-width: 1800px) {
  html #xubetechnics .content_xubetechnics .xubetechnics_right {
    background-size: cover;
  }
}
html #xubetechnics .content_xubetechnics .xubetechnics_right.current {
  opacity: 1;
  transition: all 0.5s ease-in-out;
}
html #xubetechnics .content_xubetechnics .xubetechnics_left {
  box-sizing: border-box;
  background-color: white;
  display: flex;
  flex-direction: column;
  flex-basis: 50%;
  padding: 2em 2em 2em 2em;
}
html #xubetechnics .content_xubetechnics .xubetechnics_left button:nth-child(1) {
  margin-bottom: 1em;
}
@media (max-width: 599px) {
  html #xubetechnics .content_xubetechnics .xubetechnics_left {
    flex-basis: 100%;
  }
}
html #xubetechnics .content_xubetechnics .xubetechnics_left .xubetechnics_headline {
  padding-top: 1rem;
}
@media (min-width: 900px) {
  html #xubetechnics .content_xubetechnics .xubetechnics_left .xubetechnics_headline {
    padding-top: 8.870116156%;
  }
}
html #xubetechnics .content_xubetechnics .xubetechnics_left .xubetechnics_message {
  display: flex;
  align-items: flex-end;
  flex-basis: 27.0502%;
}
html #xubetechnics .content_xubetechnics .xubetechnics_left .xubetechnics_button {
  display: flex;
  align-items: flex-end;
  flex-basis: 14.0759%;
}
html #xubetechnics .content_xubetechnics .xubetechnics_left .tabs {
  height: 70%;
}
@media (max-width: 599px) {
  html #xubetechnics .content_xubetechnics .xubetechnics_left .tabs {
    height: 90%;
  }
}
html #xubetechnics .content_xubetechnics .xubetechnics_left .tabs .tabs_head {
  margin-bottom: 4rem;
  border-top: 0px;
  border-bottom: solid 1px #bfbfbf;
}
@media (max-width: 599px) {
  html #xubetechnics .content_xubetechnics .xubetechnics_left .tabs .tabs_head {
    border-bottom: solid 1px transparent;
  }
}
html #xubetechnics .content_xubetechnics .xubetechnics_left .tabs .tabs_head ul {
  padding: 0;
  margin: 0;
  width: 100%;
  list-style: none;
}
html #xubetechnics .content_xubetechnics .xubetechnics_left .tabs .tabs_head ul li {
  cursor: pointer;
  display: inline-block;
  padding-right: 2.5rem;
  padding-left: 2.5rem;
  padding-bottom: 1.25rem;
  padding-top: 1.25rem;
  border-bottom: solid 3px transparent;
}
@media (max-width: 599px) {
  html #xubetechnics .content_xubetechnics .xubetechnics_left .tabs .tabs_head ul li {
    display: block;
  }
}
html #xubetechnics .content_xubetechnics .xubetechnics_left .tabs .tabs_head ul li.current {
  font-weight: 700;
  border-bottom: solid 3px #50bfcd;
  transition: border-bottom 0.5s ease-in-out;
}
html #xubetechnics .content_xubetechnics .xubetechnics_left .tabs .tabs_head ul li::after {
  display: block;
  content: attr(name);
  font-weight: bold;
  visibility: hidden;
  overflow: hidden;
  height: 0;
}
html #xubetechnics .content_xubetechnics .xubetechnics_left .tabs .tabs_body {
  position: relative;
}
@media (max-width: 599px) {
  html #xubetechnics .content_xubetechnics .xubetechnics_left .tabs .tabs_body {
    position: relative;
  }
}
html #xubetechnics .content_xubetechnics .xubetechnics_left .tabs .tabs_body div.tab {
  position: absolute;
  opacity: 0;
  top: 20px;
  width: 100%;
}
html #xubetechnics .content_xubetechnics .xubetechnics_left .tabs .tabs_body div.tab.current {
  opacity: 1;
  top: 0px;
  transition: all 0.7s ease-in-out;
}
html #xubetechnics .content_xubetechnics .xubetechnics_left .tabs .tabs_body div.tab ul {
  background-color: white;
  list-style: none;
  margin: 0;
  padding: 0;
  clear: none;
  display: block;
  overflow: auto;
  height: -moz-fit-content;
  height: fit-content;
}
html #xubetechnics .content_xubetechnics .xubetechnics_left .tabs .tabs_body div.tab ul li {
  margin-bottom: 1.5rem;
  float: left;
  line-height: 1.5rem;
  width: 100%;
}
@media (min-width: 600px) {
  html #xubetechnics .content_xubetechnics .xubetechnics_left .tabs .tabs_body div.tab ul li {
    width: 50%;
  }
}
html #xubetechnics .content_xubetechnics .xubetechnics_left .tabs .tabs_body div.tab ul li span:nth-child(1) {
  font-weight: 700;
  display: block;
}
html #xubetechnics .content_xubetechnics .xubetechnics_left .tabs .tabs_body div.tab ul li span:nth-child(2) {
  font-weight: 300;
  display: block;
}
html #reserveyourxube {
  display: flex;
  flex-direction: column;
}
html #reserveyourxube p {
  line-height: 1.4rem;
  margin-bottom: 0;
}
@media (max-width: 599px) {
  html #reserveyourxube {
    min-height: 125vh;
  }
}
html #reserveyourxube .content_reserveyourxube {
  display: flex;
  flex-direction: column;
  height: 100%;
}
@media (min-width: 900px) {
  html #reserveyourxube .content_reserveyourxube {
    flex-direction: row;
    background-size: contain;
    background-repeat: repeat;
    background-position: left top;
  }
}
html #reserveyourxube .content_reserveyourxube .reserveyourxube_left {
  background-image: url("bg_reserveyourxube.jpg");
  background-color: #1c1c1c;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  flex: 1 1 45%;
  position: relative;
}
html #reserveyourxube .content_reserveyourxube .reserveyourxube_left .fasttrack {
  position: absolute;
  right: 0%;
  top: 10%;
  cursor: pointer;
}
@media (max-width: 599px) {
  html #reserveyourxube .content_reserveyourxube .reserveyourxube_left {
    height: 400px;
    display: block;
    flex: unset;
  }
}
@media (min-width: 900px) {
  html #reserveyourxube .content_reserveyourxube .reserveyourxube_left {
    flex-basis: 76.875%;
    background-position: left center;
    flex: 1 1 35%;
  }
}
@media (min-width: 1590px) {
  html #reserveyourxube .content_reserveyourxube .reserveyourxube_left {
    background-position: left center;
    background-size: cover;
  }
}
@media (min-width: 1800px) {
  html #reserveyourxube .content_reserveyourxube .reserveyourxube_left {
    background-position: left center;
    background-size: cover;
  }
}
html #reserveyourxube .content_reserveyourxube .reserveyourxube_left .reserveyourxube_footer {
  color: #484848;
  margin: 0px auto 30px auto;
  display: none;
  text-align: center;
}
@media (min-width: 900px) {
  html #reserveyourxube .content_reserveyourxube .reserveyourxube_left .reserveyourxube_footer {
    display: block;
  }
}
html #reserveyourxube .content_reserveyourxube .reserveyourxube_left .reserveyourxube_footer ul {
  list-style: none;
  margin: 0px;
  padding: 0px;
}
html #reserveyourxube .content_reserveyourxube .reserveyourxube_left .reserveyourxube_footer ul li {
  display: inline-block;
  padding-right: 20px;
}
html #reserveyourxube .content_reserveyourxube .reserveyourxube_left .reserveyourxube_footer ul li:first-child {
  padding-right: 16px;
}
html #reserveyourxube .content_reserveyourxube .reserveyourxube_left .reserveyourxube_footer ul li:last-child {
  padding-right: 0;
}
html #reserveyourxube .content_reserveyourxube .reserveyourxube_left .reserveyourxube_footer ul li a:hover {
  color: #50bfcd;
}
html #reserveyourxube .content_reserveyourxube .reserveyourxube_right {
  box-sizing: border-box;
  background-color: white;
  display: flex;
  flex-direction: column;
  flex: 1 1 55%;
  padding: 2em 1em;
}
html #reserveyourxube .content_reserveyourxube .reserveyourxube_right #formError {
  color: #e85559;
}
@media (min-width: 900px) {
  html #reserveyourxube .content_reserveyourxube .reserveyourxube_right {
    width: 442px;
    flex: unset;
    padding: 2em 3em 2em 2em;
  }
}
html #reserveyourxube .content_reserveyourxube .reserveyourxube_right .reserveyourxube_form {
  margin-bottom: 2em;
  display: flex;
  flex-direction: column;
}
html #reserveyourxube .content_reserveyourxube .reserveyourxube_right .reserveyourxube_form label,
html #reserveyourxube .content_reserveyourxube .reserveyourxube_right .reserveyourxube_form input,
html #reserveyourxube .content_reserveyourxube .reserveyourxube_right .reserveyourxube_form select,
html #reserveyourxube .content_reserveyourxube .reserveyourxube_right .reserveyourxube_form textarea {
  font-size: 0.875rem;
}
html #reserveyourxube .content_reserveyourxube .reserveyourxube_right .reserveyourxube_form label {
  display: block;
  margin-top: 2em;
  padding-bottom: 0.5em;
}
html #reserveyourxube .content_reserveyourxube .reserveyourxube_right .reserveyourxube_form input {
  display: block;
  border: solid 0px #484848;
  padding: 1em;
  background: #f4f4f4;
}
html #reserveyourxube .content_reserveyourxube .reserveyourxube_right .reserveyourxube_form select:focus,
html #reserveyourxube .content_reserveyourxube .reserveyourxube_right .reserveyourxube_form input:focus,
html #reserveyourxube .content_reserveyourxube .reserveyourxube_right .reserveyourxube_form textarea:focus {
  outline: none;
}
html #reserveyourxube .content_reserveyourxube .reserveyourxube_right .reserveyourxube_form select {
  display: block;
  border: none;
  background: #f4f4f4;
  border: solid 0px #484848;
  padding: 1em;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
html #reserveyourxube .content_reserveyourxube .reserveyourxube_right .reserveyourxube_form select option {
  padding: 5px;
  margin: 5px 0;
}
html #reserveyourxube .content_reserveyourxube .reserveyourxube_right .reserveyourxube_form textarea {
  border: none;
  background: #f4f4f4;
  border: solid 0px #484848;
  padding: 1em;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  resize: none;
  font-size: 1rem;
  font-family: "Lato", sans-serif;
}
html #reserveyourxube .content_reserveyourxube .reserveyourxube_right .reserveyourxube_headline {
  padding-top: 1rem;
}
@media (min-width: 900px) {
  html #reserveyourxube .content_reserveyourxube .reserveyourxube_right .reserveyourxube_headline {
    padding-top: 9.1%;
  }
}
html #reserveyourxube .content_reserveyourxube .reserveyourxube_right .reserveyourxube_message {
  display: flex;
  align-items: flex-end;
  flex-basis: 27.0502%;
}
html #reserveyourxube .content_reserveyourxube .reserveyourxube_right .reserveyourxube_button {
  display: flex;
  align-items: flex-end;
  flex-basis: 14.0759%;
}
html #reserveyourxube .content_reserveyourxube .reserveyourxube_right .reserve_footer_mobile {
  color: #484848;
  margin: 30px auto 30px auto;
  display: block;
  text-align: center;
  line-height: 1.5rem;
}
@media (min-width: 600px) {
  html #reserveyourxube .content_reserveyourxube .reserveyourxube_right .reserve_footer_mobile {
    display: none;
  }
}
html #reserveyourxube .content_reserveyourxube .reserveyourxube_right .reserve_footer_mobile ul {
  list-style: none;
  margin: 0px;
  padding: 0px;
}
html #reserveyourxube .content_reserveyourxube .reserveyourxube_right .reserve_footer_mobile ul li {
  display: inline-block;
  padding-right: 20px;
}
html #reserveyourxube .content_reserveyourxube .reserveyourxube_right .reserve_footer_mobile ul li:first-child {
  padding-right: 16px;
}
html #reserveyourxube .content_reserveyourxube .reserveyourxube_right .reserve_footer_mobile ul li:last-child {
  padding-right: 0;
}
html #dialog-form {
  display: flex;
  flex-direction: column;
  color: #484848;
}
html #dialog-form label,
html #dialog-form input,
html #dialog-form select,
html #dialog-form textarea {
  font-size: 0.875rem;
  color: #484848;
  font-family: "Lato", sans-serif;
  width: 350px;
  box-sizing: border-box;
}
@media (max-width: 599px) {
  html #dialog-form label,
  html #dialog-form input,
  html #dialog-form select,
  html #dialog-form textarea {
    width: 100%;
  }
}
html #dialog-form input,
html #dialog-form select,
html #dialog-form textarea {
  margin-bottom: 1rem;
}
html #dialog-form label {
  display: block;
  padding-bottom: 0.5em;
}
html #dialog-form input {
  display: block;
  border: solid 0px #484848;
  padding: 1em;
  background: #f4f4f4;
}
html #dialog-form select:focus,
html #dialog-form input:focus,
html #dialog-form textarea:focus {
  outline: none;
}
html #dialog-form select {
  display: block;
  border: none;
  background: #f4f4f4;
  border: solid 0.5rem #f4f4f4;
  padding: 0.3rem;
}
html #dialog-form select option {
  padding: 5px;
  margin: 5px 0;
}
html #dialog-form textarea {
  border: none;
  background: #f4f4f4;
  border: solid 0px #484848;
  padding: 1em;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  resize: none;
  font-size: 1rem;
  font-family: "Lato", sans-serif;
}
html #dialog-form .app_area_select {
  float: left;
}
@media (max-width: 599px) {
  html #dialog-form .app_area_select {
    width: 100%;
  }
}
html #dialog-form .app_area_custom_ext {
  float: left;
  margin-left: 2rem;
}
@media (max-width: 599px) {
  html #dialog-form .app_area_custom_ext {
    margin-left: 0;
    width: 100%;
  }
}
html #dialog-form #reservationFormSurveyButton {
  margin-top: 2rem;
}
html .ui-dialog {
  font-size: 1rem;
  font-family: "Lato", sans-serif;
  border: none !important;
  padding: 2rem;
  box-sizing: border-box;
  z-index: 1001 !important;
}
html .ui-dialog .ui-dialog-titlebar {
  border: none;
  background: none;
  padding: 0;
  display: none;
}
html .ui-dialog .ui-dialog-titlebar .ui-dialog-title {
  color: #484848;
  font-size: 2.1rem;
}
html .ui-dialog .ui-dialog-titlebar button {
  display: none;
}
html .ui-dialog .ui-dialog-content {
  padding: 0;
}
html #xolography1 {
  display: flex;
  flex-direction: column;
  background-color: #060a27;
}
html #xolography1 .content_xolography1 {
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  height: 100%;
}
@media (max-width: 599px) {
  html #xolography1 .content_xolography1 {
    height: 100vh;
    background-position: center 2em;
    background-size: 150%;
  }
}
html #xolography1 .content_xolography1 video {
  position: absolute;
  height: 100vh;
  transform: translate(-50%, -50%);
  left: 50%;
  top: 50%;
  z-index: 0;
}
html #xolography1 .content_xolography1 .xolography1_left {
  flex-basis: 100%;
  display: flex;
  flex-direction: column;
  align-self: flex-end;
  padding-bottom: 2em;
  position: relative;
}
@media (max-width: 599px) {
  html #xolography1 .content_xolography1 .xolography1_left {
    flex-basis: 100%;
  }
}
html #xolography1 .content_xolography1 .xolography1_left .xolography1_headline {
  flex-basis: 80%;
  display: flex;
  justify-content: center;
}
@media (max-width: 599px) {
  html #xolography1 .content_xolography1 .xolography1_left .xolography1_headline {
    padding: 2em 1em 2em 1em;
  }
  html #xolography1 .content_xolography1 .xolography1_left .xolography1_headline img {
    display: none;
  }
}
html #followthelight {
  display: flex;
  flex-direction: column;
  background-color: #000000;
}
html #followthelight .content_followthelight {
  display: flex;
  height: 100%;
}
@media (max-width: 599px) {
  html #followthelight .content_followthelight {
    height: 100vh;
  }
}
html #followthelight .content_followthelight .followthelight_left {
  width: 100%;
  height: 100%;
  background: #ededed;
}
html #followthelight .content_followthelight .followthelight_left .followtheheadline {
  font-weight: 700;
  font-size: 3rem;
  text-align: center;
  position: absolute;
  left: 50%;
  top: 11rem;
  transform: translateX(-50%);
  transition: all 2s ease;
  z-index: 200;
}
@media (min-width: 1590px) {
  html #followthelight .content_followthelight .followthelight_left .followtheheadline {
    top: 13rem;
    font-size: 3.75rem;
  }
}
html #followthelight .content_followthelight .followthelight_left .followtheheadline:before {
  content: url("xolo-logo-lines.png");
  position: relative;
  top: 2px;
}
html #followthelight .content_followthelight .followthelight_left ul {
  width: 100%;
  height: 100%;
  list-style: none;
  position: relative;
  overflow: hidden;
  margin: 0;
  padding: 0;
}
html #followthelight .content_followthelight .followthelight_left ul li {
  width: 100%;
  height: 100%;
  list-style: none;
  position: absolute;
}
html #followthelight .content_followthelight .followthelight_left ul li:nth-child(n+11) img {
  opacity: 0;
}
@media (max-width: 599px) {
  html #followthelight .content_followthelight .followthelight_left ul li#slide1 {
    transform: scale(0.5);
  }
}
@media (max-width: 599px) {
  html #followthelight .content_followthelight .followthelight_left ul li#slide2 {
    transform: scale(0.5);
  }
}
@media (max-width: 599px) {
  html #followthelight .content_followthelight .followthelight_left ul li#slide3 {
    transform: scale(0.5);
  }
}
html #followthelight .content_followthelight .followthelight_left ul li#slide3 .dot {
  height: 35px;
  width: 35px;
  background-color: rgba(232, 85, 89, 0.75);
  opacity: 0;
  border-radius: 50%;
  display: inline-block;
  position: relative;
  left: 1rem;
  top: 1rem;
  transition: opacity 0.5s ease-in;
}
html #followthelight .content_followthelight .followthelight_left ul li#slide3 .dot .bubble {
  position: absolute;
  width: 230px;
  padding: 35px;
  font-size: 2.3rem;
  background: #FFFFFF;
  border-radius: 34px;
  top: -120px;
  left: -41px;
}
html #followthelight .content_followthelight .followthelight_left ul li#slide3 .dot .bubble:after {
  content: "";
  position: absolute;
  border-style: solid;
  border-width: 15px 11px 0;
  border-color: #FFFFFF transparent;
  display: block;
  width: 0;
  z-index: 1;
  bottom: -15px;
  left: 47px;
}
html #followthelight .content_followthelight .followthelight_left ul li#slide3 #infoProjectorMobile {
  position: absolute;
  left: 50%;
  width: 150px;
  background: transparent;
  transform: translate(-50%, -160%);
  height: 70px;
  top: 50%;
  z-index: 100;
  opacity: 1;
  display: none;
}
@media (max-width: 599px) {
  html #followthelight .content_followthelight .followthelight_left ul li#slide3 #infoProjectorMobile {
    display: block;
  }
}
html #followthelight .content_followthelight .followthelight_left ul li#slide3 #infoXolographyMobile {
  position: absolute;
  left: 50%;
  width: 150px;
  background: transparent;
  transform: translate(-50%, 120%);
  height: 68px;
  top: 50%;
  z-index: 100;
  opacity: 1;
  display: none;
}
@media (max-width: 599px) {
  html #followthelight .content_followthelight .followthelight_left ul li#slide3 #infoXolographyMobile {
    display: block;
  }
}
html #followthelight .content_followthelight .followthelight_left ul li#slide3 #infoLaserMobile {
  position: absolute;
  width: 110px;
  background: transparent;
  height: 68px;
  top: 50%;
  left: 50%;
  transform: translate(-170%, -80%);
  z-index: 100;
  opacity: 1;
  display: none;
}
@media (max-width: 599px) {
  html #followthelight .content_followthelight .followthelight_left ul li#slide3 #infoLaserMobile {
    display: block;
  }
}
html #followthelight .content_followthelight .followthelight_left ul li img {
  position: absolute;
  transform: translate(-50%, -50%);
  left: 50%;
  top: 50%;
  height: 100%;
  /**
  margin-left: -150%;
  left: 50%;
  **/
}
html #followthelight .content_followthelight .followthelight_left ul li img.slide_one {
  opacity: 1;
  height: 150%;
}
html #followthelight .content_followthelight .followthelight_left ul li img.slide_two {
  opacity: 0;
}
html #followthelight .content_followthelight .followthelight_left ul li img.slide_three {
  opacity: 0;
}
html #followthelight .content_followthelight .followthelight_left ul li img.animation_one {
  animation: follow_one 3s linear;
}
html #followthelight .content_followthelight .followthelight_left ul li img.animation_two {
  animation: follow_two 3s linear;
  animation-delay: 2s;
}
html #followthelight .content_followthelight .followthelight_left ul li img.animation_three {
  animation: follow_three 3s linear;
  animation-delay: 3s;
}
html #followthelight .content_followthelight .followthelight_left ul li .beam1_ani {
  opacity: 1;
  animation: beam1_ani_animation 2.75s linear;
  -webkit-clip-path: polygon(0 70%, 100% 70%, 100% 100%, 0 100%);
          clip-path: polygon(0 70%, 100% 70%, 100% 100%, 0 100%);
}
html #followthelight .content_followthelight .followthelight_left ul li .beam1_2_ani {
  opacity: 1;
  animation: beam1_2_ani_animation 2.75s linear;
  animation-delay: 0.75s;
  -webkit-clip-path: polygon(0 70%, 100% 70%, 100% 100%, 0 100%);
          clip-path: polygon(0 70%, 100% 70%, 100% 100%, 0 100%);
}
html #followthelight .content_followthelight .followthelight_left ul li .beam2_ani {
  opacity: 1;
  animation: beam2_ani_animation 2s linear;
  animation-delay: 2s;
  -webkit-clip-path: polygon(0 50%, 100% 50%, 100% 100%, 0 100%);
          clip-path: polygon(0 50%, 100% 50%, 100% 100%, 0 100%);
}
html #followthelight .content_followthelight .followthelight_left ul li .beam3_ani {
  opacity: 1;
  animation: beam3_ani_animation 3s linear;
  animation-delay: 3s;
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 10%, 0 10%);
          clip-path: polygon(0 0, 100% 0, 100% 10%, 0 10%);
}
html #followthelight .content_followthelight .followthelight_left ul li .laser1_ani {
  opacity: 1;
  animation: laser1_ani_animation 4s linear;
  animation-delay: 9s;
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 10%, 0 10%);
          clip-path: polygon(0 0, 100% 0, 100% 10%, 0 10%);
}
html #followthelight .content_followthelight .followthelight_left ul li .laser2_ani {
  opacity: 1;
  animation: laser2_ani_animation 4s linear;
  animation-delay: 9.25s;
  -webkit-clip-path: polygon(0% 0%, 0% 100%, 10% 100%, 10% 0, 90% 0, 90% 90%, 10% 90%, 10% 100%, 100% 100%, 100% 0%);
          clip-path: polygon(0% 0%, 0% 100%, 10% 100%, 10% 0, 90% 0, 90% 90%, 10% 90%, 10% 100%, 100% 100%, 100% 0%);
}
html #followthelight .content_followthelight .followthelight_left ul li .xolo_logo_ani {
  opacity: 0;
  animation: highlight_ani 2s linear;
  animation-delay: 12s;
}
html #followthelight .content_followthelight .followthelight_left ul li .projector_highlight {
  opacity: 0;
  animation: highlight_ani 1.5s linear;
  animation-delay: 4s;
}
html #followthelight .content_followthelight .followthelight_left ul li .xolo_highlight {
  opacity: 0;
}
html #followthelight .content_followthelight .followthelight_left ul li .laser_highlight {
  opacity: 0;
  animation: highlight_ani 1.5s linear;
  animation-delay: 9s;
}
html #followthelight .content_followthelight .followthelight_left ul li .xolography_highlight {
  opacity: 0;
  animation: highlight_ani 1.5s linear;
  animation-delay: 13s;
}
@media (max-width: 599px) {
  html #followthelight .content_followthelight .followthelight_left ul li .mobileHighLightFlash {
    animation: highlight_ani_mobile 2s linear;
    animation-fill-mode: forwards;
    animation-iteration-count: infinite;
  }
}
html #followthelight .content_followthelight .followthelight_left ul li .mobileHighLightFlash.projector {
  animation-delay: 5s;
}
html #followthelight .content_followthelight .followthelight_left ul li .mobileHighLightFlash.laser {
  animation-delay: 9s;
}
html #followthelight .content_followthelight .followthelight_left ul li .mobileHighLightFlash.xolography {
  animation-delay: 12s;
}
html #followthelight .content_followthelight .followthelight_left #laserLine {
  background: url("line_laser.png") right top;
  height: 56px;
  position: absolute;
  right: 61%;
  top: 39%;
  width: 0px;
  z-index: 120;
  display: none;
}
@media (min-width: 1590px) {
  html #followthelight .content_followthelight .followthelight_left #laserLine {
    display: block;
    top: 41%;
  }
}
html #followthelight .content_followthelight .followthelight_left #infoLaser {
  position: absolute;
  width: 20.83%;
  top: 37%;
  left: 4em;
  z-index: 50;
  opacity: 0;
  transition: opacity 2s ease;
  border-right: solid 2px transparent;
  padding-right: 2rem;
  display: none;
}
@media (min-width: 1590px) {
  html #followthelight .content_followthelight .followthelight_left #infoLaser {
    display: block;
  }
}
html #followthelight .content_followthelight .followthelight_left #infoLaser.active {
  opacity: 1;
}
html #followthelight .content_followthelight .followthelight_left #infoLaser h2 {
  font-weight: 400;
  display: inline;
  font-size: 2.25rem;
  color: #50bfcd;
}
html #followthelight .content_followthelight .followthelight_left #infoLaser p {
  line-height: 1.3rem;
  font-size: 0.9rem;
}
@media (min-width: 1590px) {
  html #followthelight .content_followthelight .followthelight_left #infoLaser p {
    line-height: 1.5rem;
    font-size: 1rem;
  }
}
html #followthelight .content_followthelight .followthelight_left #infoLaser p:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
}
html #followthelight .content_followthelight .followthelight_left #projLine {
  background: url("line_beamer.png");
  height: 56px;
  position: absolute;
  left: 54%;
  top: 33%;
  width: 0px;
  z-index: 120;
}
@media (min-width: 1590px) {
  html #followthelight .content_followthelight .followthelight_left #projLine {
    top: 36%;
  }
}
html #followthelight .content_followthelight .followthelight_left #infoProjector {
  position: absolute;
  width: 22%;
  top: 16%;
  right: 3em;
  z-index: 50;
  opacity: 0;
  transition: opacity 2s ease;
  border-left: solid 2px transparent;
  padding-left: 2rem;
  display: none;
}
@media (min-width: 1590px) {
  html #followthelight .content_followthelight .followthelight_left #infoProjector {
    top: 25%;
    width: 20.83%;
    right: 4rem;
    display: block;
  }
}
html #followthelight .content_followthelight .followthelight_left #infoProjector.active {
  opacity: 1;
}
html #followthelight .content_followthelight .followthelight_left #infoProjector h2 {
  font-weight: 400;
  display: inline;
  font-size: 2.25rem;
  color: #50bfcd;
}
html #followthelight .content_followthelight .followthelight_left #infoProjector p {
  font-size: 0.9rem;
  line-height: 1.3rem;
}
@media (min-width: 1590px) {
  html #followthelight .content_followthelight .followthelight_left #infoProjector p {
    font-size: 1rem;
    line-height: 1.5rem;
  }
}
html #followthelight .content_followthelight .followthelight_left #infoProjector p:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
}
html #followthelight .content_followthelight .followthelight_left #xoloLine {
  background: url("line_xolography.png");
  height: 56px;
  position: absolute;
  left: 51%;
  top: 65%;
  width: 0px;
  z-index: 120;
}
html #followthelight .content_followthelight .followthelight_left #infoXolography {
  position: absolute;
  width: 22%;
  top: 55%;
  right: 3em;
  z-index: 50;
  opacity: 0;
  transition: opacity 2s ease;
  border-left: solid 2px transparent;
  padding-left: 2rem;
  display: none;
}
@media (min-width: 1590px) {
  html #followthelight .content_followthelight .followthelight_left #infoXolography {
    display: block;
    top: 61%;
    right: 4rem;
    width: 20.83%;
  }
}
html #followthelight .content_followthelight .followthelight_left #infoXolography.active {
  opacity: 1;
}
html #followthelight .content_followthelight .followthelight_left #infoXolography h2 {
  font-weight: 400;
  display: inline;
  font-size: 2.25rem;
  color: #e85559;
}
html #followthelight .content_followthelight .followthelight_left #infoXolography p {
  font-size: 0.9rem;
  line-height: 1.3rem;
}
@media (min-width: 1590px) {
  html #followthelight .content_followthelight .followthelight_left #infoXolography p {
    line-height: 1.5rem;
    font-size: 1rem;
  }
}
html #followthelight .content_followthelight .followthelight_left #infoXolography p:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
}
@keyframes follow_one {
  0% {
    opacity: 1;
    height: 150%;
  }
  35% {
    opacity: 1;
    height: 100%;
  }
  100% {
    opacity: 1;
    height: 100%;
  }
}
@keyframes beam1_ani_animation {
  0% {
    -webkit-clip-path: polygon(0 70%, 100% 70%, 100% 100%, 0 100%);
            clip-path: polygon(0 70%, 100% 70%, 100% 100%, 0 100%);
    opacity: 0;
    height: 150%;
  }
  35% {
    -webkit-clip-path: polygon(0 70%, 100% 70%, 100% 100%, 0 100%);
            clip-path: polygon(0 70%, 100% 70%, 100% 100%, 0 100%);
    opacity: 0;
    height: 100%;
  }
  50% {
    -webkit-clip-path: polygon(0 10%, 100% 10%, 100% 100%, 0 100%);
            clip-path: polygon(0 10%, 100% 10%, 100% 100%, 0 100%);
    opacity: 1;
    height: 100%;
  }
  100% {
    -webkit-clip-path: polygon(0 10%, 100% 10%, 100% 100%, 0 100%);
            clip-path: polygon(0 10%, 100% 10%, 100% 100%, 0 100%);
    opacity: 1;
    height: 100%;
  }
}
@keyframes beam1_2_ani_animation {
  0% {
    -webkit-clip-path: polygon(0 70%, 100% 70%, 100% 100%, 0 100%);
            clip-path: polygon(0 70%, 100% 70%, 100% 100%, 0 100%);
  }
  55% {
    -webkit-clip-path: polygon(0 10%, 100% 10%, 100% 100%, 0 100%);
            clip-path: polygon(0 10%, 100% 10%, 100% 100%, 0 100%);
  }
  100% {
    -webkit-clip-path: polygon(0 10%, 100% 10%, 100% 100%, 0 100%);
            clip-path: polygon(0 10%, 100% 10%, 100% 100%, 0 100%);
  }
}
@keyframes follow_two {
  0% {
    opacity: 0;
  }
  35% {
    opacity: 1;
  }
  100% {
    opacity: 0.4;
  }
}
@keyframes beam2_ani_animation {
  0% {
    -webkit-clip-path: polygon(0 50%, 100% 50%, 100% 100%, 0 100%);
            clip-path: polygon(0 50%, 100% 50%, 100% 100%, 0 100%);
    opacity: 0;
  }
  50% {
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
            clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    opacity: 1;
  }
  100% {
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
            clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    opacity: 1;
  }
}
@keyframes beam3_ani_animation {
  0% {
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 20%, 0 20%);
            clip-path: polygon(0 0, 100% 0, 100% 20%, 0 20%);
    opacity: 0;
  }
  50% {
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 70%, 0 70%);
            clip-path: polygon(0 0, 100% 0, 100% 70%, 0 70%);
    opacity: 1;
  }
  100% {
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 70%, 0 70%);
            clip-path: polygon(0 0, 100% 0, 100% 70%, 0 70%);
    opacity: 1;
  }
}
@keyframes follow_three {
  0% {
    opacity: 0;
    height: 100%;
  }
  33% {
    opacity: 1;
    height: 100%;
  }
  100% {
    opacity: 1;
    height: 100%;
  }
}
@keyframes laser1_ani_animation {
  0% {
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 10%, 0 10%);
            clip-path: polygon(0 0, 100% 0, 100% 10%, 0 10%);
    opacity: 0;
  }
  50% {
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 80%, 0 80%);
            clip-path: polygon(0 0, 100% 0, 100% 80%, 0 80%);
    opacity: 1;
  }
  100% {
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 80%, 0 80%);
            clip-path: polygon(0 0, 100% 0, 100% 80%, 0 80%);
    opacity: 1;
  }
}
@keyframes laser2_ani_animation {
  0% {
    -webkit-clip-path: polygon(0% 0%, 0% 100%, 10% 100%, 10% 0, 90% 0, 90% 90%, 10% 90%, 10% 100%, 100% 100%, 100% 0%);
            clip-path: polygon(0% 0%, 0% 100%, 10% 100%, 10% 0, 90% 0, 90% 90%, 10% 90%, 10% 100%, 100% 100%, 100% 0%);
    opacity: 0;
  }
  50% {
    -webkit-clip-path: polygon(0% 0%, 0% 100%, 50% 100%, 50% 0, 50% 0, 50% 90%, 10% 90%, 10% 100%, 100% 100%, 100% 0%);
            clip-path: polygon(0% 0%, 0% 100%, 50% 100%, 50% 0, 50% 0, 50% 90%, 10% 90%, 10% 100%, 100% 100%, 100% 0%);
    opacity: 1;
  }
  100% {
    -webkit-clip-path: polygon(0% 0%, 0% 100%, 50% 100%, 50% 0, 50% 0, 50% 90%, 10% 90%, 10% 100%, 100% 100%, 100% 0%);
            clip-path: polygon(0% 0%, 0% 100%, 50% 100%, 50% 0, 50% 0, 50% 90%, 10% 90%, 10% 100%, 100% 100%, 100% 0%);
    opacity: 1;
  }
}
@keyframes xolo_logo_ani_animation {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 0.9;
  }
}
@keyframes highlight_ani {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes highlight_ani_mobile {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.2;
  }
  100% {
    opacity: 1;
  }
}
html #followLightDialog {
  font-size: 1.3rem;
}
html #xoom {
  display: flex;
  flex-direction: column;
  background-color: #000000;
  overflow: hidden;
}
html #xoom .content_xoom {
  background-repeat: no-repeat;
  background-size: cover;
  background-position-x: right;
  display: flex;
  height: 100%;
  overflow: hidden;
}
html #xoom .content_xoom video {
  position: absolute;
  transform: translate(-50%, -50%) scale(1);
  left: 50%;
  top: 50%;
  z-index: 8;
  min-height: 100%;
  min-width: 100%;
}
@media (max-width: 599px) {
  html #xoom .content_xoom video {
    left: 57%;
  }
}
@media (max-width: 599px) {
  html #xoom .content_xoom {
    height: 100vh;
    background-size: cover;
    background-position-x: -10em;
  }
}
html #xoom .content_xoom .xoom_left {
  flex-basis: 100%;
  display: flex;
  flex-direction: row;
  align-self: flex-start;
  padding-bottom: 2em;
}
@media (max-width: 599px) {
  html #xoom .content_xoom .xoom_left {
    flex-basis: 100%;
    flex-direction: column;
    align-self: flex-end;
    padding: 2em 1em 4em 1em;
  }
}
html #xoom .content_xoom .xoom_left .xoom_headline {
  flex-basis: 90.4%;
  display: flex;
  justify-content: flex-end;
  margin-top: 4.375em;
  position: relative;
  z-index: 100;
}
@media (max-width: 599px) {
  html #xoom .content_xoom .xoom_left .xoom_headline {
    justify-content: flex-start;
    margin-top: 0;
  }
  html #xoom .content_xoom .xoom_left .xoom_headline h1 {
    margin-top: 0;
  }
}
html #surface {
  display: flex;
  flex-direction: column;
  background-color: #000000;
  overflow: hidden;
}
html #surface .content_surface {
  background-image: url("bg_xolonauts.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position-x: center;
  display: flex;
  height: 100%;
  overflow: hidden;
}
@media (max-width: 599px) {
  html #surface .content_surface {
    height: 100vh;
    background-size: cover;
    background-position-x: 48%;
    background-position-y: bottom;
  }
}
html #surface .content_surface .surface_headline {
  position: absolute;
  top: 80%;
  right: 2.5%;
  text-shadow: 0px 0px 54px rgba(0, 0, 0, 0.6);
  z-index: 100;
}
@media (max-width: 599px) {
  html #surface .content_surface .surface_headline {
    justify-content: flex-start;
    margin-top: 0;
    top: auto;
    bottom: 10rem;
  }
  html #surface .content_surface .surface_headline h1 {
    margin-top: 0;
  }
}
html #xoloinnature {
  display: flex;
  flex-direction: column;
}
html #xoloinnature p {
  line-height: 1.5rem;
}
@media (max-width: 599px) {
  html #xoloinnature {
    height: 110vh;
  }
}
html #xoloinnature .content_xoloinnature {
  display: flex;
  flex-direction: column-reverse;
  height: 100%;
}
@media (min-width: 900px) {
  html #xoloinnature .content_xoloinnature {
    flex-direction: row;
    background-size: contain;
    background-repeat: repeat;
    background-position: left top;
  }
}
html #xoloinnature .content_xoloinnature .xoloinnature_left {
  background-image: url("bg_xoloinnature.jpg");
  background-color: #1c1c1c;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  display: flex;
  align-items: flex-end;
  flex-basis: 55%;
  order: 2;
}
@media (min-width: 900px) {
  html #xoloinnature .content_xoloinnature .xoloinnature_left {
    flex-basis: 76.875%;
    background-position: -4em center;
    background-position: center center;
  }
}
@media (min-width: 1590px) {
  html #xoloinnature .content_xoloinnature .xoloinnature_left {
    background-size: cover;
  }
}
@media (min-width: 1800px) {
  html #xoloinnature .content_xoloinnature .xoloinnature_left {
    flex-basis: 90%;
  }
}
html #xoloinnature .content_xoloinnature .xoloinnature_left .xoloinnature_footer {
  margin: 0px auto 30px auto;
  display: none;
  text-align: center;
}
@media (min-width: 900px) {
  html #xoloinnature .content_xoloinnature .xoloinnature_left .xoloinnature_footer {
    display: block;
  }
}
html #xoloinnature .content_xoloinnature .xoloinnature_left .xoloinnature_footer ul {
  list-style: none;
  margin: 0px;
  padding: 0px;
}
html #xoloinnature .content_xoloinnature .xoloinnature_left .xoloinnature_footer ul li {
  display: inline-block;
  padding-right: 20px;
}
html #xoloinnature .content_xoloinnature .xoloinnature_left .xoloinnature_footer ul li:first-child {
  padding-right: 16px;
}
html #xoloinnature .content_xoloinnature .xoloinnature_left .xoloinnature_footer ul li:last-child {
  padding-right: 0;
}
html #xoloinnature .content_xoloinnature .xoloinnature_right {
  flex-shrink: 0;
  flex-grow: 0;
  box-sizing: border-box;
  order: 1;
  background-color: white;
  display: flex;
  flex-direction: column;
  flex-basis: 45%;
  padding-left: 24px;
  padding-right: 24px;
}
@media (min-width: 900px) {
  html #xoloinnature .content_xoloinnature .xoloinnature_right {
    width: 444px;
    flex-basis: unset;
  }
}
html #xoloinnature .content_xoloinnature .xoloinnature_right .xoloinnature_headline {
  padding-top: 1rem;
}
@media (min-width: 900px) {
  html #xoloinnature .content_xoloinnature .xoloinnature_right .xoloinnature_headline {
    padding-top: 55%;
  }
}
html #xoloinnature .content_xoloinnature .xoloinnature_right .xoloinnature_message {
  display: flex;
  align-items: flex-end;
  flex-basis: 27.0502%;
}
html #xoloinnature .content_xoloinnature .xoloinnature_right .xoloinnature_button {
  display: flex;
  align-items: flex-end;
  flex-basis: 14.0759%;
}
html #recentxolos {
  display: flex;
  flex-direction: column;
  background-color: #ffffff;
}
html #recentxolos .content_recentxolos {
  background-color: #ededed;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  display: flex;
  height: 100%;
}
html #recentxolos .content_recentxolos .recentxolos_left {
  flex-basis: 100%;
  display: flex;
  flex-direction: column;
}
@media (max-width: 599px) {
  html #recentxolos .content_recentxolos .recentxolos_left {
    flex-basis: 100%;
  }
}
html #recentxolos .content_recentxolos .recentxolos_left .recentxolos_headline {
  flex-basis: 80%;
  z-index: 100;
}
html #recentxolos .content_recentxolos .recentxolos_left .recentxolos_marker {
  position: relative;
  top: 50%;
  left: 1rem;
  transform: translate(0%, -50%);
  z-index: 10;
  margin: 0;
  padding: 0;
  list-style: none;
  font-weight: 300;
  color: #ddd;
  line-height: 1.5rem;
}
@media (max-width: 599px) {
  html #recentxolos .content_recentxolos .recentxolos_left .recentxolos_marker {
    display: none;
  }
}
html #recentxolos .content_recentxolos .recentxolos_left .recentxolos_marker li {
  width: 100px;
  border-left: solid 2px #ddd;
  padding-left: 1rem;
  list-style: none;
  margin-bottom: 0.2rem;
  color: transparent;
  transition: all 0.5s ease;
}
@media (max-width: 599px) {
  html #recentxolos .content_recentxolos .recentxolos_left .recentxolos_marker li {
    float: left;
    border-left: none;
    border-bottom: solid 2px #ddd;
    padding: 0 1em 0 1em;
  }
  html #recentxolos .content_recentxolos .recentxolos_left .recentxolos_marker li:nth-child(2) {
    margin: 0 1em 0 1em;
  }
}
html #recentxolos .content_recentxolos .recentxolos_left .recentxolos_marker li:hover {
  color: #484848;
  border-left: solid 2px #484848;
}
html #recentxolos .content_recentxolos .recentxolos_left .recentxolos_marker li.current {
  border-left: solid 2px #484848;
  color: #484848;
  transition: all 1s ease-in-out;
}
@media (max-width: 599px) {
  html #recentxolos .content_recentxolos .recentxolos_left .recentxolos_marker li.current {
    border-left: unset;
    border-bottom: solid 2px #484848;
  }
}
html #recentxolos .content_recentxolos .recentxolos_left .recentxolos_epics {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0px;
  z-index: 0;
  list-style: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
}
html #recentxolos .content_recentxolos .recentxolos_left .recentxolos_epics li span.epics {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0px;
  left: 0px;
  color: transparent;
  background-size: cover;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  opacity: 0;
  z-index: 1;
  animation: imageAnimation 60s linear infinite 0s;
}
@media (max-width: 599px) {
  html #recentxolos .content_recentxolos .recentxolos_left .recentxolos_epics li span.epics {
    background-size: 200%;
    transform: scale(0.5);
  }
}
html #recentxolos .content_recentxolos .recentxolos_left .recentxolos_epics li div {
  z-index: 1000;
  position: absolute;
  bottom: 30px;
  left: 0px;
  width: 100%;
  text-align: center;
  opacity: 0;
  color: #fff;
}
html #recentxolos .content_recentxolos .recentxolos_left .recentxolos_epics li:nth-child(1) span {
  background-image: url("xolos/xolos_balerina.jpg");
}
html #recentxolos .content_recentxolos .recentxolos_left .recentxolos_epics li:nth-child(2) span {
  background-image: url("xolos/xolos_thinker.jpg");
  animation-delay: 10s;
}
html #recentxolos .content_recentxolos .recentxolos_left .recentxolos_epics li:nth-child(3) span {
  background-image: url("xolos/xolos_dental.jpg");
  animation-delay: 20s;
}
html #recentxolos .content_recentxolos .recentxolos_left .recentxolos_epics li:nth-child(4) span {
  background-image: url("xolos/xolos_saphir.jpg");
  animation-delay: 30s;
}
html #recentxolos .content_recentxolos .recentxolos_left .recentxolos_epics li:nth-child(5) span {
  background-image: url("xolos/xolos_ball.jpg");
  animation-delay: 40s;
}
html #recentxolos .content_recentxolos .recentxolos_left .recentxolos_epics li:nth-child(6) span {
  background-image: url("xolos/xolos_benchy.jpg");
  animation-delay: 50s;
}
html #recentxolos .content_recentxolos .recentxolos_left .recentxolos_epics:after {
  content: "";
  background: transparent url("pattern.png") repeat top left;
}
html #recentxolos .content_recentxolos .recentxolos_left .recentxolos_headline {
  position: absolute;
  left: 10rem;
  top: 20%;
}
@media (max-width: 599px) {
  html #recentxolos .content_recentxolos .recentxolos_left .recentxolos_headline {
    right: unset;
    width: 100%;
    text-align: center;
    top: -1rem !important;
    left: 0px !important;
    padding-top: 3rem;
  }
}
@media (min-width: 900px) {
  html #recentxolos .content_recentxolos .recentxolos_left .recentxolos_headline {
    top: 20%;
  }
}
html #recentxolos .content_recentxolos .recentxolos_left .recentxolos_headline.dark {
  color: #484848;
}
html #recentxolos .content_recentxolos .recentxolos_left .recentxolos_headline.light {
  color: #ffffff;
}
html #recentxolos .content_recentxolos .recentxolos_left .recentxolos_outergrid {
  display: grid;
  padding: 0 10rem;
  height: 100%;
  width: 100vw;
  box-sizing: border-box;
  justify-items: center;
  align-items: center;
}
@media (max-width: 599px) {
  html #recentxolos .content_recentxolos .recentxolos_left .recentxolos_outergrid {
    padding: 4rem;
    margin-top: 2rem;
  }
}
html #recentxolos .content_recentxolos .recentxolos_left .recentxolos_outergrid .recentxolos_grid {
  display: grid;
  width: 100%;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  -moz-column-gap: 4rem;
       column-gap: 4rem;
}
@media (max-width: 599px) {
  html #recentxolos .content_recentxolos .recentxolos_left .recentxolos_outergrid .recentxolos_grid {
    grid-template-columns: 1fr;
  }
}
@media (min-width: 600px) {
  html #recentxolos .content_recentxolos .recentxolos_left .recentxolos_outergrid .recentxolos_grid {
    grid-template-columns: 1fr 1fr;
  }
  html #recentxolos .content_recentxolos .recentxolos_left .recentxolos_outergrid .recentxolos_grid .recentXolo:nth-child(n+3) {
    display: none;
  }
}
@media (min-width: 1200px) {
  html #recentxolos .content_recentxolos .recentxolos_left .recentxolos_outergrid .recentxolos_grid {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
  html #recentxolos .content_recentxolos .recentxolos_left .recentxolos_outergrid .recentxolos_grid .recentXolo:nth-child(n+3) {
    display: block;
  }
  html #recentxolos .content_recentxolos .recentxolos_left .recentxolos_outergrid .recentxolos_grid .recentXolo:nth-child(n+5) {
    display: none;
  }
}
html #recentxolos .content_recentxolos .recentxolos_left .recentxolos_outergrid .recentxolos_grid > div {
  position: relative;
  cursor: pointer;
}
html #recentxolos .content_recentxolos .recentxolos_left .recentxolos_outergrid .recentxolos_grid > div > img {
  width: 100%;
}
html #recentxolos .content_recentxolos .recentxolos_left .recentxolos_outergrid .recentxolos_grid > div > img:nth-child(2) {
  position: absolute;
  top: 0;
  left: 0;
}
html #recentxolos .content_recentxolos .recentxolos_left .galleryButton {
  position: fixed;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  text-align: center;
  color: #484848;
  cursor: pointer;
  opacity: 1;
  transition: opacity 0.5s ease;
}
html #recentxolos .content_recentxolos .recentxolos_left .galleryButton.hidden {
  display: none;
  opacity: 0;
  transition: opacity 0.5s ease;
}
html #recentxolos .content_recentxolos .recentxolos_left .galleryButton.prevButton {
  left: 3rem;
  top: 50%;
  transform: translateY(-50%);
}
html #recentxolos .content_recentxolos .recentxolos_left .galleryButton.nextButton {
  right: 3rem;
  top: 50%;
  transform: translateY(-50%);
}
html #recentxolos .content_recentxolos .recentxolos_left .galleryButton.disabled {
  opacity: 0.3;
  cursor: default;
}
html #recentxolos .content_recentxolos .recentxolos_left .galleryButton.hidden {
  display: none;
}
html #recentxolos .content_recentxolos .recentxolos_left .galleryButton i {
  font-size: 2.7rem;
  line-height: 50px;
}
html #recentxolos .content_recentxolos .recentxolos_left .recent_footer {
  color: #484848;
  margin: 0px auto 30px auto;
  display: none;
  position: relative;
  top: 100%;
  text-align: center;
  padding: 2rem 1.5rem;
  background-color: #ffffff;
}
@media (min-width: 900px) {
  html #recentxolos .content_recentxolos .recentxolos_left .recent_footer {
    display: block;
    position: absolute;
    bottom: 0em;
    left: 50%;
    transform: translateX(-50%);
    z-index: 100;
  }
}
html #recentxolos .content_recentxolos .recentxolos_left .recent_footer ul {
  list-style: none;
  margin: 0px;
  padding: 0px;
}
html #recentxolos .content_recentxolos .recentxolos_left .recent_footer ul li {
  display: inline-block;
  padding-right: 20px;
}
html #recentxolos .content_recentxolos .recentxolos_left .recent_footer ul li:first-child {
  padding-right: 16px;
}
html #recentxolos .content_recentxolos .recentxolos_left .recent_footer ul li:last-child {
  padding-right: 0;
}
html #recentxolos .content_recentxolos .recentxolos_left .recent_footer ul li a {
  color: #484848;
}
html #recentxolos .content_recentxolos .recentxolos_left .recent_footer ul li a:hover {
  color: #50bfcd;
}
@keyframes imageAnimation {
  0% {
    opacity: 0;
    transform: scale(1);
    animation-timing-function: ease-in;
  }
  5% {
    opacity: 1;
    transform: scale(1.03);
    animation-timing-function: ease-out;
  }
  20% {
    opacity: 1;
    transform: scale(1.02);
  }
  25% {
    opacity: 0;
    transform: scale(1.03);
  }
  100% {
    opacity: 0;
  }
}
html #legal {
  display: flex;
  flex-direction: column;
  background-color: #ffffff;
}
html #legal .content_legal {
  background-image: url("bg_thexube.jpg");
  background-repeat: no-repeat;
  background-size: contain;
  background-color: #fbfbfb;
  display: flex;
  align-content: stretch;
  flex-direction: column;
  align-content: stretch;
  height: 100%;
}
html #legal .content_legal .privacy_right .fact_headline {
  padding: 8em 2em 2em 2em;
}
@media (max-width: 599px) {
  html #legal .content_legal {
    height: 100vh;
  }
}
@media (min-width: 600px) {
  html #legal .content_legal {
    background-position-x: -6em;
  }
}
@media (min-width: 900px) {
  html #legal .content_legal {
    flex-direction: row;
    background-position-x: -11em;
  }
}
@media (min-width: 1200px) {
  html #legal .content_legal {
    background-position-x: -11em;
  }
}
@media (min-width: 1366px) {
  html #legal .content_legal {
    background-position-x: -12em;
  }
}
@media (min-width: 1590px) {
  html #legal .content_legal {
    background-position-x: -6em;
  }
}
@media (min-width: 1300px) and (min-height: 1020px) {
  html #legal .content_legal {
    background-position-y: center;
    background-position-x: -14em;
  }
}
html #legal .content_legal .legal_left {
  flex-basis: 55%;
}
@media (max-width: 599px) {
  html #legal .content_legal .legal_left {
    flex-basis: 45%;
  }
}
html #legal .content_legal .legal_footer {
  color: #484848;
  margin: 0px auto 30px auto;
  display: block;
  text-align: center;
}
@media (min-width: 900px) {
  html #legal .content_legal .legal_footer {
    display: block;
    position: absolute;
    bottom: 0em;
    left: 50%;
    transform: translateX(-50%);
    z-index: 100;
  }
}
html #legal .content_legal .legal_footer ul {
  list-style: none;
  margin: 0px;
  padding: 0px;
}
html #legal .content_legal .legal_footer ul li {
  display: inline-block;
  padding-right: 20px;
}
html #legal .content_legal .legal_footer ul li:first-child {
  padding-right: 16px;
}
html #legal .content_legal .legal_footer ul li:last-child {
  padding-right: 0;
}
html #legal .content_legal .legal_footer ul li a:hover {
  color: #50bfcd;
}
html #legal .content_legal .legal_right {
  flex-basis: 45%;
  display: flex;
  flex-direction: column;
}
html #legal .content_legal .legal_right p {
  line-height: 1.5em;
}
@media (max-width: 599px) {
  html #legal .content_legal .legal_right {
    flex-basis: 70%;
    padding-bottom: 2em;
  }
}
html #legal .content_legal .legal_right .fact_headline {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2em 1em;
}
@media (min-width: 900px) {
  html #legal .content_legal .legal_right .fact_headline {
    padding-left: unset;
  }
}
@media (min-width: 600px) {
  html #legal .content_legal .legal_right .fact_headline {
    flex-grow: 36.5364;
  }
}
html #privacy {
  background: white;
}
html #privacy .content_privacy .privacy_right .fact_headline {
  padding: 8em 2em 2em 2em;
}
html #privacy .privacy_footer {
  color: #484848;
  margin: 2rem auto 30px auto;
  display: block;
  text-align: center;
}
@media (min-width: 900px) {
  html #privacy .privacy_footer {
    display: block;
    position: relative;
    bottom: 0em;
    left: 50%;
    transform: translateX(-50%);
    z-index: 100;
  }
}
html #privacy .privacy_footer ul {
  list-style: none;
  margin: 0px;
  padding: 0px;
}
html #privacy .privacy_footer ul li {
  display: inline-block;
  padding-right: 20px;
}
html #privacy .privacy_footer ul li:first-child {
  padding-right: 16px;
}
html #privacy .privacy_footer ul li:last-child {
  padding-right: 0;
}
html #privacy .privacy_footer ul li a:hover {
  color: #50bfcd;
}
html #thexube2 {
  display: flex;
  flex-direction: column;
  background-color: #f1f1f1;
  overflow: hidden;
}
html #thexube2 p {
  line-height: 1.5rem;
}
@media (max-width: 599px) {
  html #thexube2 {
    height: 100vh;
  }
}
html #thexube2 .content_thexube2 {
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
}
@media (min-width: 900px) {
  html #thexube2 .content_thexube2 {
    flex-direction: row;
    background-size: contain;
    background-repeat: repeat;
    background-position: left top;
  }
}
html #thexube2 .content_thexube2 .thexube2_left {
  display: flex;
  align-items: flex-end;
  flex-basis: 100%;
  flex-direction: column;
  overflow: hidden;
}
@keyframes bgAnimation {
  0% {
    transform: scale(0.8);
    animation-timing-function: ease-in;
  }
  10% {
    transform: scale(1);
    animation-timing-function: ease-out;
  }
}
html #thexube2 .content_thexube2 .thexube2_left .thexube2_left_bg {
  background-image: url("bg_thexube3.jpg");
  background-color: #f1f1f1;
  background-repeat: no-repeat;
  background-position: center center;
  height: 100%;
  width: 100%;
  z-index: 1;
  position: absolute;
  left: 0;
  top: 0;
  animation: bgAnimation 5s linear;
  overflow: hidden;
}
@media (max-width: 599px) {
  html #thexube2 .content_thexube2 .thexube2_left .thexube2_left_bg {
    background-size: 270%;
    background-position-y: -9rem;
  }
}
@media (min-width: 900px) {
  html #thexube2 .content_thexube2 .thexube2_left .thexube2_left_bg {
    background-size: 90%;
    top: -3rem;
  }
}
@media (min-width: 900px) {
  html #thexube2 .content_thexube2 .thexube2_left {
    flex-basis: 100%;
    background-size: 90%;
  }
}
@media (min-width: 1590px) {
  html #thexube2 .content_thexube2 .thexube2_left {
    background-size: contain;
  }
}
html #thexube2 .content_thexube2 .thexube2_left .thexube2_headline {
  z-index: 2;
  display: flex;
  align-self: center;
  align-items: flex-end;
  font-weight: 400;
}
@media (max-width: 599px) {
  html #thexube2 .content_thexube2 .thexube2_left .thexube2_headline {
    margin-top: 6rem;
  }
  html #thexube2 .content_thexube2 .thexube2_left .thexube2_headline img {
    display: none;
  }
}
@media (min-width: 600px) {
  html #thexube2 .content_thexube2 .thexube2_left .thexube2_headline {
    flex-basis: 24%;
  }
}
html #thexube2 .content_thexube2 .thexube2_left .thexube2_headline2 {
  flex-basis: 82%;
  display: flex;
  align-self: center;
  align-items: flex-end;
  padding: 2em 1em 4em 1em;
  z-index: 2;
}
@media (min-width: 600px) {
  html #thexube2 .content_thexube2 .thexube2_left .thexube2_headline2 {
    padding: 2em 1em 2em 1em;
  }
}
html #thexube2 .content_thexube2 .thexube2_left .thexube2_footer {
  color: #484848;
  margin: 0px auto 30px auto;
  display: none;
  text-align: center;
  flex-basis: 5%;
  align-self: center;
  align-items: flex-end;
}
@media (min-width: 900px) {
  html #thexube2 .content_thexube2 .thexube2_left .thexube2_footer {
    display: flex;
  }
}
html #thexube2 .content_thexube2 .thexube2_left .thexube2_footer ul {
  list-style: none;
  margin: 0px;
  padding: 0px;
}
html #thexube2 .content_thexube2 .thexube2_left .thexube2_footer ul li {
  display: inline-block;
  padding-right: 20px;
}
html #thexube2 .content_thexube2 .thexube2_left .thexube2_footer ul li:first-child {
  padding-right: 16px;
}
html #thexube2 .content_thexube2 .thexube2_left .thexube2_footer ul li:last-child {
  padding-right: 0;
}

#galleryOverlay {
  position: fixed;
  width: 100vw;
  height: 100%;
  padding: 5rem;
  top: 0;
  left: 0;
  box-sizing: border-box;
  background-color: rgba(255, 255, 255, 0.75);
  z-index: 1000;
  display: none;
}
#galleryOverlay .innerContainer {
  background-color: #fff;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  border: solid 2rem white;
  border-radius: 5px;
  padding: 2rem;
  height: 100%;
  width: 100%;
  margin: 0 auto;
  box-sizing: border-box;
  text-align: center;
  box-shadow: 0px 0px 32px 2px rgba(51, 51, 51, 0.2);
  -moz-box-shadow: 0px 0px 32px 2px rgba(51, 51, 51, 0.2);
  -webkit-box-shadow: 0px 0px 32px 2px rgba(51, 51, 51, 0.2);
  display: grid;
  align-items: center;
  justify-items: center;
}
#galleryOverlay .innerContainer #galleryImage {
  max-height: 100%;
  max-width: 100%;
}
#galleryOverlay .galleryButton {
  position: fixed;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  text-align: center;
  color: #484848;
  cursor: pointer;
  z-index: 1001;
}
#galleryOverlay .galleryButton.closeButton {
  right: 1rem;
  top: 1rem;
}
#galleryOverlay .galleryButton i {
  font-size: 1.7rem;
  line-height: 50px;
}/*# sourceMappingURL=style.css.map */