.kiosks {
  position: relative;
}
.kiosks-container {
  position: relative;
  display: block;
  width: 100%;
  padding: 140px 70px;
}

.kiosks-tools {
  position: relative;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-align-items:  center;
  align-items:  center;
  width: 100%;
  padding: 35px 0;
}
.kiosks-search {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
.kiosks-search a {
  display: block;
  width: 45px;
  height: 45px;
  text-align: center;
  cursor: pointer;
}
.kiosks-search input {
  width: 0;
  -webkit-transition: all 0.7s ease;
  transition: all 0.7s ease;
}
.kiosks-search.open input {
  width: 200px;
}
.kiosks-search a i {
  height: 45px;
  line-height: 45px;
}
/* Kiosk */
.kiosk-content {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100vw;

}
.desktop .kiosk-content {
  overflow: hidden;
}
.mobile .kiosk-content {

  overflow: hidden;
  overflow-y: auto;
}
.kiosk-list {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  align-items: stretch;
  -webkit-align-items: stretch;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: -20px;
}
.kiosk-item {
  position: relative;
  width: 25%;
  padding: 20px;
}
.kiosk-link {
  display: block;
  position: relative;
  width: 100%;
  text-decoration: none;
  height: 100%;
  color: #000000;

}

.kiosk-link .kiosk-link-image {
  position: relative;
  display: block;
  width: 100%;
  height: 0;
  padding-bottom: 60%;
  background-color: #cecece;
  overflow: hidden;
}
.kiosk-link .kiosk-link-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
  -webkit-transform: scale(1);
  transform: scale(1);
  -webkit-transition: .5s;
  transition: .5s;
}
.kiosk-link-container {
  padding: 5px 0;
}
.kiosk-link-langs {
  position: absolute;
  bottom: 25px;
  right: 25px;
}
.kiosk-link-langs span {
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  border-radius: 50%;
  text-align: center;
  font-weight: bold;
  background-color: #FFFFFF;
  text-transform: uppercase;
  margin-left: 5px;
}
.kiosk-link h3 {
  font-size: calc(0.5vw + 12px);
}
@media screen and (max-width: 900px) {
  .kiosk-item {
    width: 50%;
  }
  .kiosks-container {
    padding: 90px 20px;
  }
}
@media screen and (max-width: 600px) {
  .kiosk-item {

    width: 100%;

  }
}

.kiosk-tools {
  position: absolute;
  top: 30px;
  right: 30px;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
.kiosk-tools a {
  margin-left: 5px;
}
/* Kiosk */
.kiosk {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
}
/*
.kiosk.mobile {
  position: relative;
  display: block;
  width: 100vw;
  overflow: hidden;
}
*/
.kiosk-container {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
}
/* Nav */
.kiosk-header .nav {
  position: absolute;
  top: 60px;
  bottom: 30px;
  left: 50%;
}
.kiosk-header .nav-list:before {
  position: absolute;
  content: '';
  top: 20px;
  left: 50%;
  bottom: 20px;
  width: 2px;
  margin-left: -1px;
  background-color: var(--accent-color, #FF0000);
}
.kiosk-header .nav-list {
  position: relative;
  list-style: none;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-pack: justify;
  justify-content: space-between;
  height: 100%;
}
.kiosk-header .nav-link {
  position: relative;
  overflow: hidden;
}
.kiosk-header .nav-dot {
  position: relative;
  display: block;
  width: 40px;
  height: 40px;
}
.kiosk-header .nav-dot:after {
  position: absolute;
  content: '';
  top: 50%;
  left: 50%;
  width: 20px;
  height: 20px;
  -webkit-transform: translateY(-50%) translateX(-50%) scale(0.5);
  transform: translateY(-50%) translateX(-50%) scale(0.5);
  border-radius: 50%;
  background-color: var(--accent-color, #FF0000);
  -webkit-transition: transform 0.5s ease;
  transition: transform 0.5s ease;
}
.kiosk-header .nav-dot:before {
  position: absolute;
  content: '';
  top: 50%;
  left: 50%;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  -webkit-box-shadow: inset 0px 0px 0px 2px var(--accent-color, #FF0000);
  box-shadow: inset 0px 0px 0px 2px var(--accent-color, #FF0000);
  -webkit-transform: translateY(-50%) translateX(-50%) scale(0);
  transform: translateY(-50%) translateX(-50%) scale(0);
  background: #FFFFFF;
  -webkit-transition: transform 0.5s ease;
  transition: transform 0.5s ease;
}
.kiosk-header .active .nav-dot:before {
  -webkit-transform: translateY(-50%) translateX(-50%) scale(1);
  transform: translateY(-50%) translateX(-50%) scale(1);
}
.kiosk-header .active .nav-dot:after {
  -webkit-transform: translateY(-50%) translateX(-50%) scale(1);
  transform: translateY(-50%) translateX(-50%) scale(1);
}
.kiosk-header .nav-label {
  font-family: 'Roboto Slab';
  position: absolute;
  top: 0;
  font-size: 20px;
  height: 40px;
  line-height: 40px;
  font-weight: 500;
  white-space: nowrap;
  color: var(--dark-color, #000000);
}
.kiosk-header .nav-tooltip {
  position: absolute;
  top: calc(50% + 20px);
  left: 70px;
  font-size: 20px;
  font-family: 'Roboto Slab';
  padding: 10px 20px;
  white-space: nowrap;
  color:  var(--accent-color, #FF0000);
  background-color: var(--light-color, #FFFFFF);
  -webkit-transform: translateY(-50%) translateX(20px);
  transform: translateY(-50%) translateX(20px);
  opacity: 0;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  visibility: hidden;
  -webkit-box-shadow: 0px 0px 15px 0px rgba(0,0,0,0.2);
  -moz-box-shadow: 0px 0px 15px 0px rgba(0,0,0,0.2);
  box-shadow: 0px 0px 15px 0px rgba(0,0,0,0.2);

}
.kiosk-header .nav-tooltip:after {
  position: absolute;
  content: '';
  left: -8px;
  top: calc(50% - 8px);
  width: 16px;
  height: 16px;
  transform: rotate(45deg);
  background-color: var(--light-color, #FFFFFF);


}
.kiosk-header .nav-link:hover .nav-tooltip{
  -webkit-transform: translateY(-50%) translateX(0) ;
  transform: translateY(-50%) translateX(0) ;
  opacity: 1;
  visibility: visible;
}
.kiosk-header .nav-item:nth-child(odd) .nav-label {
  left: 40px;
}
.kiosk-header .nav-item:nth-child(even) .nav-label {
  right: 0;
}
.kiosk-header .lang-list {
  position: absolute;
  top: 20px;
  right: 40px;
}
.kiosk-header .lang-link {
  text-decoration: none;
  padding: 10px 5px;
  font-family: 'Roboto Slab';
  color: var(--dark-color, #000000);
  font-size: 16px;
  text-transform: uppercase;
  font-weight: bold;
}
.kiosk-header .progress {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
}
.kiosk-header .progress-bar {
  position: absolute;
  top: 0;
  right: 0;
  width: 3px;
  height: 0;
  background-color: var(--accent-color, #FF0000);
  -webkit-transition: height 0.5s ease;
  transition: height 0.5s ease;
}

@media screen and (max-width: 1024px) {
  .kiosk-header .nav-item:nth-child(even) .nav-label {
    left: 40px;
  }
  .kiosk-header .nav {
    position: relative;
    display: block;
    left: auto;
    top: auto;
    bottom: auto;
    margin-right: 50px;
    padding: 0 20px;
    height: 100vh;
    overflow: auto;
  }
  .kiosk-header .nav-item {
    margin-bottom: 10px;
  }
  .kiosk-header .nav-item:last-child {
    margin: 0;
  }

  .kiosk-header .nav-list {
    display: block;
    height: auto;
    margin: 80px 0 20px 0;

  }
  .kiosk-header .nav-list li {
    display: block;
  }
  .kiosk-header .nav-list::before {
    left: 20px;

  }
  .kiosk-header .nav-label {

    font-size: 16px;;
  }
  .kiosk-header .header-title {

    left: auto;
    right: 50px;
  }

}

/* Control */
.ctrls {
  position: fixed;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
  z-index: 750;
}
.ctrls.bottom {
  left: calc(50% - 25px);
  bottom: 10px;
}
.ctrl-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: var(--accent-color, #FF0000);
  background-color: var(--light-color, #FFFFFF);
  /*border: 1px solid var(--accent-color, #FF0000);*/
  text-align: center;
  cursor: pointer;
  margin: 0 10px ;
}
.mobile .ctrl-btn {
  width: 40px;
  height: 40px;
}
.ctrl-btn i {
  display: block;
  height: 60px;
  line-height: 60px;
  font-size: 28px;
}
.mobile .ctrl-btn i {
  height: 40px;
  line-height: 40px;
  font-size: 22px;
}
.ctrl-btn.next {
  left: 50%;
  bottom: 10px;
}
.ctrl-btn.prev {
  left: 50%;
  top: 10px;
}
/* Sections*/

.desktop .section {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100%;
  padding-left: 110px;
  background-color: #EAEDF2;
  overflow: hidden;
}
.mobile .section {
  position: relative;
  display: block;
  min-height: 60vh;
  height: auto;
}
.desktop .section-content,
.desktop .section-container {
  position: relative;
  width: 100%;
  height: 100%;
}
.mobile .section-content,
.mobile .section-container {
  height: auto;
  min-height: 60vh
}

.desktop .section-image {
  position: relative;
  display: block;
  height: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.mobile .section-image {
  position: relative;
  display: block;
  width: 100%;
  line-height: 1;
  margin: 0;
  padding: 0;
}
.mobile .section-image img {
  width: 100%;
  line-height: 1;
  margin: 0;
  padding: 0;
  margin-bottom: -2px;
}
.section-image.contain {
  background-size: contain
}
.section-bg {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}
.section-bg:after {
  position: absolute;
  content: '';
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0.8;
}
.section-bg-image {
  position: relative;
  display: block;
  height: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.section-clone-image {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.section-bg .section-bg-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.section-bg-video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  -webkit-transform: translateX(-50%) translateY(-50%);

}
.section-bg-video video {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.section-bg-video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.section h1,
.section h2,
.section h3 {
  font-family: 'Roboto Slab';
}
.section h1 {
  margin-bottom: 2vw;
}
.section-ctrl {
  position: absolute;
  top: 0;
  left: 0;
}
.section-pull {
  position: relative;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  width: 100%;
  height: 100%;
}
.section-half {
  position: relative;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  width: 100%;
  height: 100%;
}
.section-half .half{
  width: 100%;
  height: 50%;
}
.section-pull.reverse {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.section-pull .pull {
  width: 50%;
  height: 100%;
}

.section-pull .pull.small {
  width: 40%;
}
.mobile .section-pull .pull {
  width: 100%;
  height: 100%;
}
/* Next */
.mobile .next,
.mobile .next .section-content,
.mobile .next .section-container {
  min-height: 40vh;
  text-align: center;
}
.mobile .next a {
  text-decoration: none;
}
.next .section-bg:after {
  background-color: var(--accent-color, #FF0000);
}
.next-btn {

  display: inline-block;
  width: 50px;
  height: 50px;
  text-align: center;
  margin: 15px 0;
  border-radius: 50%;
  color: var(--accent-color, #FF0000);
  background-color: var(--light-color, #FFFFFF);
}
.next-btn i {
  display: block;
  height: 50px;
  line-height: 50px;
  font-size: 28px;
}

/* Category */
.category {
  color: var(--light-color, #FFFFFF);
}
.mobile .category,
.mobile .category .section-content {
  min-height: 80vh;
  text-align: center;
}
.category .section-bg:after {
  background-color: var(--accent-color, #FF0000);
}
/*
.category h1 {
  font-family: 'Roboto Slab';
  font-weight: 500;
  margin-bottom: 2vw;
  letter-spacing: 2px;
}
*/
/*
.category p {
  font-size: calc(10px + 0.5vw);
  font-weight: 500;
}
*/
.desktop .category .section-box {
  width: 100%;
  max-width: 60vw;
}
.mobile .category .section-box {
  width: 100%;
  max-width: 80vw;
  padding: 70px 0;
}
/* Text */
.textblock .section-box {
  width: 100%;
  max-width: 50vw;
}
.textblock h1 {
  margin-bottom: 2vw;
}
.mobile .textblock .section-box {
  max-width: 80vw;
  padding: 70px 0;
}


/* Timeline */
.timeline .article-container {
  width: 30vw;
  padding: 0 20px;
}
.timeline .article-content {
  width: 100%;
}
.timeline .article.large .article-container {
  position: relative;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  width: 60vw;
}
.timeline .article.large .article-content {
  width: 50%;
  padding-right: 1vw;
}
.timeline h1 {
  margin-bottom: 2vw;
}
.timeline h2 {
  margin: 1vw 0;
}
.timeline p {
  margin-bottom: 1vw;
}
.timeline .article-image {
  width: 100%;
}
.timeline .article.large .article-image {
  width: 50%;
  padding: 1vw;
}
.timeline .article-image img {
  max-width: 100%;
  max-height: 60vh;
}
.mobile .timeline .section-box {
  max-width: 80vw;
  padding: 70px 0 0 0;
}
.mobile .timeline .article-container {
  width: 90vw;
}
.mobile .timeline .article-image {
  margin-top: 20px;
}

/* photogallery */
.photogallery .article-container {
  width: 30vw;
  padding: 0 40px;
}
.photogallery .article-image {
  position: relative;
  width: 100%;


}
.photogallery .article-image img {
  max-width: 100%;
  max-height: 60vh;
  line-height: 100%;
  padding: 0;
  margin: 0;
}
.photogallery .article-image .article-action {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0;
  cursor: pointer;
  transform: translateY(20px);
  -webkit-transform: translateY(20px);
  -webkit-transition: all .5s ease;
  transition: all .5s ease;
}

.photogallery .article-image:hover .article-action {
  transform: translateY(0);
  -webkit-transform: translateY(0);
  opacity: 1;
}
.desktop .photogallery .horizontal-container {
  -webkit-align-items:  center;
  align-items:  center;
}
.mobile .photogallery .section-box {
  max-width: 80vw;
  padding: 70px 0 0 0;

}
.mobile .photogallery .article-container {
  width: 90vw;
  padding: 0 20px;
}
.mobile .photogallery .article-image {
  margin-top: 20px;
}

/* Lightbox */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 560;
}
.lightbox-overlay {
  background-color: var(--dark-color, #000000);
  opacity: 0.9;
}
.lightbox .image-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 70px;
}
.lightbox .image-container img {
  object-fit:  contain;
  object-position: center;
  width: 100%;
  height: 100%;
}
.lightbox-desc {
  position: absolute;
  right: 20px;
  bottom: 20px;
  max-width: 40vw;
  min-height: 50px;
  min-width: 50px;
  background-color: var(--light-color, #FFFFFF);
  color: var(--dark-color, #000000);
}
.lightbox-desc-container {
  position: relative;
  display: block;
  padding: 40px;
}
.lightbox-desc-btn {
  position: absolute;
  top: 0;
  right: 0;
  width: 50px;
  height: 50px;
  text-align: center;
  color: var(--dark-color, #000000);
  opacity: 0.5;
  cursor: pointer;
}
.lightbox-desc-btn i {
  position: relative;
  display: block;
  height: 50px;
  line-height: 50px;
}
.lightbox-desc-btn:hover {
  opacity: 1;
}
.photo-next-enter-active,
.photo-prev-enter-active,
.photo-next-leave-active,
.photo-prev-leave-active {
  -webkit-transition: all 0.7s ease;
  transition: all 0.7s ease;
}
.photo-next-enter,
.photo-prev-leave-to {
  transform: translateX(100%);
  -webkit-transform: translateX(100%);
}
.photo-next-leave-to,
.photo-prev-enter {
  transform: translateX(-100%);
  -webkit-transform: translateX(-100%);
}
/* Quiz */
.mobile .quiz .section-box {
  max-width: 80vw;
  padding: 70px 0 35px;
}
.quiz-panel {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: #FFFFFF;
  z-index: 555554;
}


.quiz-play-btn {
  margin-top: 2vw;
  position: relative;
  display: inline-block;
  color: var(--accent-color, #FF0000);
  background-color:  var(--light-color, #FFFFFF);
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-box-shadow: 0px 0px 0px 3px var(--accent-color, #FF0000);;
  box-shadow: 0px 0px 0px 3px var(--accent-color, #FF0000);;
}
.quiz-play-btn:hover {
  -webkit-box-shadow: 0px 0px 0px 6px var(--accent-color, #FF0000);;
  box-shadow: 0px 0px 0px 6px var(--accent-color, #FF0000);;
}
.quiz-play-btn span {
  display: block;
  height: 50px;
  line-height: 50px;
  font-size: 22px;
  padding: 0 20px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.evaluation-icon {
  position: absolute;
  top: calc(50% - 50px);
  left: calc(50% - 50px);
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background-color: var(--accent-color, #FF0000);
  color: var(--light-color, #FFFFFF);
  text-align: center;
}
.evaluation-icon i {
  height: 100px;
  line-height: 100px;
  font-size: 72px;
}
.quiz-list {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;

  list-style: none;
  overflow: hidden;
}
.mobile .quiz-list {

  height: 100%;
  text-align: center;
  width: 100vw;
}

.desktop .quiz-item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  color: var(--dark-color, #000000);
}
.mobile .quiz-item {
  position: relative;
  width: 100vw;
  padding: 20px;
  min-height: 100%;
  color: var(--dark-color, #000000);
}
.quiz-start {
  position: relative;
  display: block;
  padding-bottom: 70px;
}
.quiz-box {
  position: relative;
  max-width: 50vw;
  padding: 2vw;
  background-color: var(--light-color, #FFFFFF);
}
.mobile .transparen .quiz-box {
  background-color: rgba(0,0,0,0);
}
.mobile .quiz-box {
  display: block;
  max-width: 100%;
}
.quiz-box img {
  height: 30vh;
  margin: 1vw 0;
}
.quiz-btns {
  position: relative;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items:  center;
  align-items:  center;
  padding-top: 2vw;
}
.quiz-btn {
  width: 60px;
  height: 60px;
  color: var(--accent-color, #FF0000);
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  text-align: center;
  -webkit-transform: scale(1);
  transform: scale(1);
  overflow: hidden;
  margin: 0 15px;
}
.quiz-btn.large {
  width: 100px;
  height: 100px;
}

.quiz-btn.dark {
  color: var(--dark-color, #000000);
}
.quiz-btn:hover {
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
}
.quiz-btn i {
  display: block;
  font-size: 48px;
  height: 60px;
  line-height: 60px;

}
.quiz-btn.large i {
  font-size: 96px;
  height: 100px;
  line-height: 100px;
}
.quiz-enter-active,
.quiz-leave-active {
  -webkit-transition: all .7s ease;
  transition: all .7s ease;
}
.mobile .quiz-enter-active {
  position: absolute;
  top: 0;
  left: 0;
}
.desktop .quiz-enter{
  opacity: 0;
  transform: translateY(-20vh);
  -webkit-transform: translateY(-20vh);
}
.desktop .quiz-leave-to {
  opacity: 0;
  transform: translateY(20vh);
  -webkit-transform: translateY(20vh);
}
.mobile .quiz-enter{
  opacity: 0;
  transform: translateX(-20vh);
  -webkit-transform: translateX(-20vh);
}
.mobile .quiz-leave-to {
  opacity: 0;
  transform: translateX(20vh);
  -webkit-transform: translateX(20vh);
}
.results {
  position: relative;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  align-items: stretch;
  align-content: stretch;
  text-align: center;
  padding-top: 2vw;
}
.result-item {
  padding: 10px 30px;
  text-align: center;
}
.result-item p {
  font-size: 48px;
  font-weight: 700;
}
.result-item i {
  color: var(--accent-color, #FF0000);
}
.result-divider {
  width: 1px;
  background-color: var(--dark-color, #000000);
  opacity: 0.1;
}


/* Picture */
.desktop .picture .section-image {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
}
.desktop .picture .section-image-box {
  position: absolute;
  width: 100%;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  -webkit-transform: translateX(-50%) translateY(-50%);
  z-index: 1
}
.desktop .picture .section-image img {
  position: relative;
  width: 100%;
}
.desktop .picture .section-box {
  position: absolute;
  bottom: 2vw;
  left: 2vw;
  padding: 1vw 2vw;
  background-color: var(--light-color, #FFFFFF);
  max-width: 40vw;
  z-index: 55;
}

.mobile .picture .section-image {
  position: relative;
  display: block;
  width: 100%;
}
.mobile .picture .section-image img {
  position: relative;
  width: 100%;
}
.mobile .picture .section-box {
  max-width: 80vw;
  width: 100%;
  padding: 70px 0 35px 0;
}
.mobile .picture .section-footer {
  max-width: 80vw;
  width: 100%;
  padding: 35px 0 70px 0;
}

.desc-item {
  position: absolute;
  z-index: 55;
}
.desc-item.active {
  z-index: 60;
}
.desc-btn {
  position: absolute;
  top: -20px;
  left: -20px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
	transform: scale(1);
	animation: pulse 2s infinite;
}
.desc-btn:before,
.desc-btn:after {
  position: absolute;
  content: '';
  border-radius: 50%;
}
.desc-btn:before {
  top: 10px;
  left: 10px;
  width: 20px;
  height: 20px;
  background: var(--accent-color, #FF0000);
}
.desc-btn:after {
  top: 2px;
  left: 2px;
  width: 36px;
  height: 36px;
  border: 2px solid var(--accent-color, #FF0000);
}
.desktop .desc-content {
  position: absolute;
}
.desktop .desc-content.lefttop {
  top: -20px;
  right: 40px;
}
.desktop .desc-content.leftbottom {
  bottom: -20px;
  right: 40px;
}
.desktop .desc-content.righttop {
  top: -20px;
  left: 40px;
}
.desktop .desc-content.rightbottom {
  bottom: -20px;
  left: 40px;
}
.desktop .desc-container {
  position: relative;
  max-width: 500px;
  min-width: 300px;
  padding: 15px;
}

.desc-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--light-color, #FFFFFF);
  opacity: 0.9;
}
.desktop .desc-bg:before {
  position: absolute;
  content: '';
  width: 16px;
  height: 16px;
  transform: rotate(45deg);
  background-color: var(--light-color, #FFFFFF);
}
.desktop .desc-content.lefttop .desc-bg:before {
  top: 12px;
  right: -8px;
}
.desktop .desc-content.leftbottom .desc-bg:before {
  bottom: 12px;
  right: -8px;
}
.desktop .desc-content.righttop .desc-bg:before {
  top: 12px;
  left: -8px;
}
.desktop .desc-content.rightbottom .desc-bg:before {
  bottom: 12px;
  left: -8px;
}
.desc-box {
  position: relative;
}
.mobile .desc-content {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 66;
}
.mobile .desc-container {
  position: relative;
  width: 100%;
  padding: 30px;
}
.mobile .desc-bg {
  opacity: 1;
}
.mobile .desc-close {
  position: absolute;
  top: 0;
  right: 0;
  width: 40px;
  height: 40px;
  cursor: pointer;
  text-align: center;
  color: var(--accent-color, #FF0000);
}
.mobile .desc-close i {
  line-height: 40px;
  height: 40px;
}


@keyframes pulse {
	0% {
		transform: scale(0.95);
	}
	70% {
		transform: scale(1);
	}

	100% {
		transform: scale(0.95);
	}
}
.target-cursor {
  cursor: crosshair;
}


/* Video */
.desktop .videobox .section-box {
  position: absolute;
  bottom: 4vw;
  left: 4vw;
  width: 100%;
  max-width: 30vw;
}
.desktop .videobox .section-box p {
  font-weight: 500;
}
.desktop .videobox .section-bg-video {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.section-clone {
  -webkit-transition: all .8s ease;
  transition: all .8s ease;
  opacity: 0.5
}
.section-clone.hide {
  opacity: 0;
}
.desktop .videobox .section-ctrl {
  width: 100%;
  height: 100%;
}
.desktop .videobox .section-video {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}
.desktop .videobox .section-video video {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;

}
.desktop .videobox .section-video-box,
.desktop .videobox .section-video iframe {
  width: 100%;
  height: 100%;
}
.desktop .video-full {
  width: 100vw;
  height: 100vh;
}
.mobile .videobox .section-video-box,
.mobile .videobox .section-video-box video {
  position: relative;
  display: block;
  width: 100%;
}
.mobile .videobox .section-box {
  max-width: 80vw;
  width: 100%;
  padding: 70px 0 35px 0;
}
.mobile .videobox .section-footer {
  max-width: 80vw;
  width: 100%;
  padding: 35px 0 70px 0;
}


video::-webkit-media-controls-fullscreen-button {
  display: none;
}
video::-webkit-media-controls-download-button {
    display:none;
}
video::-internal-media-controls-download-button {
    display:none;
}
video::-webkit-media-controls-enclosure {
    overflow:hidden;
}
video::-webkit-media-controls-panel {
    width: calc(100% + 30px); /* Adjust as needed */
}
.video-ctrl {
  position: absolute;
  bottom: 10px;
  right: 10px;
  width: 100%;
  max-width: 40vw;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-align-items:  center;
  align-items:  center;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.mobile .video-ctrl {
  position: relative;
  width: 100%;
  max-width: 100%;
  height: 70px;
  margin-top: 20px;
  padding: 0 5px;

}
.video-ctrl p {
  padding: 0 10px;
  font-weight: bold;
  font-size: 16px;
  text-shadow: 0 0 5px var(--dark-color, #000000);
  cursor: pointer;
}
.video-seek__bar {
  position: relative;
  height: 40px;
  width: 60%;
  padding:  18px 0;
  cursor: pointer;
}
.mobile .video-seek__bar {
  width: 50%;
}

.video-seek__bar::before{
  position: absolute;
  content: '';
  top: 18px;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: var(--dark-color, #000000);
  opacity: 0.2;
}
.video-seek__bar span {
  position: relative;
  display: block;
  height: 4px;
  background-color: var(--accent-color, #FF0000);
}

.video-seek-bar span {
  position: relative;
  display: block;
  height: 100%;
  background-color: var(--accent-color, #FF0000);
}

/* Map */
.section-map-box {

}
.section-map-box img.landscape {
  width: 100%;
}
.section-map-box img.portrait {
  height: 100%;
}
.desktop .map .section-box {
  position: absolute;
  bottom: 2vw;
  left: 2vw;
  padding: 1vw 2vw;
  background-color: var(--light-color, #FFFFFF);
  max-width: 33vw;
}
.mobile .section-box {
  max-width: 80vw;
  width: 100%;
  padding: 70px 0 35px 0;
}
.mobile .section-footer {
  max-width: 80vw;
  width: 100%;
  padding: 35px 0 70px 0;
}
.mobile .section-map-full {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  visibility: hidden;
  opacity: 0;
}

.mobile .section-map {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  z-index: 555540;
}
.mobile .section-map-prev {
  position: relative;
  display: block;

}
.mobile .section-map-prev img {
  width: 100%;
}
.mobile .map .section-footer {
  max-width: 80vw;
  width: 100%;
  padding: 35px 0 70px 0;
}
.mobile .section-map-btn {
  position: absolute;
  top: calc(50% - 20px);
  left: calc(50% - 20px);
}

.map-ctrl {
  position: fixed;
  bottom: 10px;
  right: 10px;
  max-width: 30vw;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-align-items:  center;
  align-items:  center;
}
.map .section-desc {
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: 100%;
  max-width: 600px;
  background-color: var(--light-color, #FFFFFF);
  overflow-y: auto;
  z-index: 55555;
}
.map .section-desc-container {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;

}
.map .section-desc-image {
  position: relative;
  display: block;
}
.map .section-desc-image img {
  width: 100%;
}

.map .section-desc-box {
  position: relative;
  display: block;
  padding: 2vw;
}
.map .section-desc-box.noimage {
  margin-top: 2vw;
}
.mark-list {
  list-style: none;
}
.mark-item {
  position: absolute;
}
.mark-link {
  position: absolute;
}
.mark-pin {
  width: 40px;
  height: 40px;
  border-radius: 50% 50% 50% 0;
  background: #89849b;
  position: absolute;
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
  left: 50%;
  top: 50%;
  margin: -40px 0 0 -20px;
  background-color: var(--accent-color, #FF0000);
  cursor: pointer;
}
.mark-pin:after {
  content: '';
  width: 14px;
  height: 14px;
  margin: 13px 0 0 13px;
  background-color: var(--light-color, #FFFFFF);
  position: absolute;
  border-radius: 50%;
}
.mark-link-title {
  position: absolute;
  left: 50%;
  bottom: 55px;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all .5s ease;
  transition: all .5s ease;

}
.mark-link:hover .mark-link-title {
  opacity: 1;
  visibility: visible;
}
.mark-link-title h2 {
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  min-width: 200px;
  padding: 10px;
  text-align: center;
  background-color: var(--light-color, #FFFFFF);
}
.mark-link-title h2:before {
  position: absolute;
  content: '';
  bottom: -5px;
  left: calc(50% - 8px);
  width: 16px;
  height: 16px;
  transform: rotate(45deg);
  background-color: var(--light-color, #FFFFFF);
}

/* Slider */
.desktop .slider {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.desktop .slide-box {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
}
.desktop .slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
}
.desktop .slide-after {
  width: 50%;
  z-index: 55;
}
.desktop .slide-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.desktop .slide-image {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.desktop .slide-video {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
}
.desktop .slide-video video{
  object-fit: cover;
 width: 100%;
 height: 100%;
}
.desktop .slide-header {
  position: absolute;
  top: 20px;
  left: 20px;
  padding: 20px;
  background-color: var(--light-color, #FFFFFF);
  color: var(--dark-color, #000000);
  z-index: 700;
  max-width: 25vw;
}
.desktop .slide-header h1 {
  line-height: 1.4;
  margin: 0;
  padding: 0;
  color: var(--accent-color, #FF0000);
}
.desktop .slider-title {
  position: absolute;
  top: 20px;
  right: 60px;
  padding: 10px;
  z-index: 60;
  padding: 10px 20px;
  line-height: 1.6;
  font-weight: 500;
  margin: 0;
}
.slide-divider {
  position: absolute;
  top: 0;
  left: 50%;
  height: 100%;
  width: 2px;
  background-color: var(--accent-color, #FF0000);
  z-index: 555;
}
.slide-divider-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  transform: translateY(-50%) translateX(-50%);
  -webkit-transform: translateY(-50%) translateX(-50%);
  text-align: center;
  cursor: grab;
  z-index: 650;
  background-color: var(--accent-color, #FF0000);
  color: var(--accent-light, #FFFFFF);
}
.mobile .slide-divider-btn {
  width: 50px;
  height: 50px;
}
.slide-divider-btn span {
  position: relative;
  display: inline-block;
  height: 70px;
  line-height: 70px;
  width: 35px;
  font-size: 32px;
}
.mobile .slide-divider-btn span {
  height: 50px;
  line-height: 50px;
  font-size: 24px;
  width: 25px;
}
.slide-after .lightbox-desc {
  right: auto;
  left: 20px;
}

.mobile .slider .section-box {
  max-width: 80vw;
  width: 100%;
  padding: 70px 0 35px 0;
}
.mobile .slider .section-footer {
  width: 90vw;
}
.mobile .slide-box {
  position: relative;
  display: block;
}
.mobile .slide-container {
  line-height: 1;
  margin: 0;
  padding: 0;
}
.mobile .slide.slide-before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.mobile .slide.slide-after {
  overflow: hidden;
}
.mobile .slide-container {
  position: relative;
  width: 100%;
  height: 100%;
}
.mobile .slide-image {
  width: 100%;
  line-height: 1;
  margin: 0;
  padding: 0;
}
.mobile .slide-bg {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.mobile .slide-desc {
  position: relative;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
  width: 100%;
  padding: 20px 0;
}
.mobile .slide-desc p {
  width: calc(100% - 50px);
  padding-left: 14px;
}
.mobile .slide-tag {
  width: 36px;
  height: 36px;
  line-height: 36px;
  text-align: center;
  background-color: var(--accent-color, #FF0000);
  color: var(--light-color, #FFFFFF);
}
.mobile .slide-info {
  position: absolute;
  bottom: 20px;
}
.mobile .slide-after .slide-info {
  left: 20px;
}
.mobile .slide-before .slide-info {
  right: 20px;
}
/* Intro */
.intro .section-content {
  padding: 70px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  text-align: center;
}
.intro .section-header,
.intro .section-box,
.intro .section-footer {
  padding: 20px;
  width: 100%;
  max-width: 60vw;
}
.intro .section-footer img {
  height: 50px;
}
.intro .section-footer a {
  margin: 0 20px;
}
.intro h1 {
  color: var(--accent-color, #FF0000);
}
.mobile .intro .section-content {
  padding: 70px 0;
}
.mobile .intro .section-header,
.mobile .intro .section-box,
.mobile .intro .section-footer {
  padding: 20px 0;
  width: 100%;
  max-width: 80vw;
}
.mobile .intro .section-footer img {
  height: 30px;
}
/* Iframe */
.iframe iframe,
.vue-friendly-iframe {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
}
/* Panorama */
.panorama .v-pano > div {
  display: none;
}
.desktop .panorama .section-box {
  position: absolute;
  bottom: 2vw;
  left: 2vw;
  padding: 1vw 2vw;
  background-color: var(--light-color, #FFFFFF);
  max-width: 33vw;
}
.movile .panorama .v-pano {
  width: 100%;
  height: 100vh;
}

/* Controls */
.ctrl-close {
  position: absolute;
  top: 20px;
  right: 20px;
  margin-right: 0;
}
.ctrl-left {
  position: absolute;
  top: 50%;
  left: 20px;
  margin-right: 0;
}
.ctrl-right {
  position: absolute;
  top: 50%;
  right: 20px;
  margin-right: 0;
}
.ctrl-play {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100px;
  height: 100px;
  -webkit-transform: translateY(-50%) translateX(-50%);
  transform: translateY(-50%) translateX(-50%);
}
.ctrl-play .circle {
  width: 100px;
  height: 100px;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 50%;
  background-color: var(--accent-color, #FF0000);
  margin: auto;
  transform: scale(1, 1);
}
.ctrl-play .circle.pulse {
  -webkit-animation-timing-function: ease;
          animation-timing-function: ease;
  -webkit-animation: pulse 2s infinite;
          animation: pulse 2s infinite;
  background-color: var(--accent-color, #FF0000);
  opacity: 0.4;
}
.ctrl-play svg {
  fill: var(--light-color, #FFFFFF);
  stroke: var(--light-color, #FFFFFF);
  stroke-linejoin: round;
  stroke-width: 5;
  transition: all 0.3s;
}
.ctrl-play svg:hover {
  cursor: pointer;
}

@-webkit-keyframes pulse {
  0% {
    transform: scale(1, 1);
  }
  25% {
    transform: scale(1, 1);
  }
  50% {
    transform: scale(1.2, 1.2);
  }
  100% {
    transform: scale(1, 1);
  }
}

@keyframes pulse {
  0% {
    transform: scale(1, 1);
  }
  25% {
    transform: scale(1, 1);
  }
  50% {
    transform: scale(1.2, 1.2);
  }
  100% {
    transform: scale(1, 1);
  }
}
/* Themes */
.section.accent,
.section.accent .section-bg,
.section.accent .section-bg:after,
.section.accent .section-clone {
  color: var(--light-color, #FFFFFF);
  background-color: var(--accent-color, #FF0000);
}

.section.accent .section-box {
  color: var(--light-color, #FFFFFF);
}
.section.light,
.section.light .section-bg,
.section.light .section-bg:after,
.section.light .section-clone {
  color: var(--dark-color, #000000);
  background-color: var(--light-color, #FFFFFF);
}
.section.light .light-title,
.section.light .section-box {
  color: var(--dark-color, #000000);
}
.section.dark,
.section.dark .section-bg,
.section.dark .section-bg:after,
.section.dark .section-clone {
  color: var(--light-color, #FFFFFF);
  background-color: var(--dark-color, #000000);
}
.dark-title,
.section.dark .section-box {
  color: var(--light-color, #FFFFFF);
}
.accent-title {
  color: var(--accent-color, #FF0000);
}

/* Category info */
.category-info {
  position: absolute;
  top: 20px;
  left: calc(50% + 55px);
  z-index: 555;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
}
.category-info-link {
  position: relative;
  display: inline-block;
  cursor: pointer;
  padding-bottom: 10px;
  text-align: center;
}
.category-info-list {
  position: absolute;
  top: 60px;
  left: 50%;
  padding: 20px;
  list-style: none;
  min-width: 400px;
  max-height: 60vh;
  background-color: var(--light-color, #FFFFFF);
  transform: translateX(-50%) translateY(20px);
  -webkit-transform: translateX(-50%) translateY(20px);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-box-shadow: 0px 0px 15px 0px rgba(0,0,0,0.2);
  -moz-box-shadow: 0px 0px 15px 0px rgba(0,0,0,0.2);
  box-shadow: 0px 0px 15px 0px rgba(0,0,0,0.2);
  pointer-events: none;
}
.category-info-list.open {
  transform: translateX(-50%) translateY(0);
  -webkit-transform: translateX(-50%) translateY(0);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.category-info-list::after {
  position: absolute;
  content: '';
  top: -8px;
  left: calc(50% - 8px);
  width: 16px;
  height: 16px;
  transform: rotate(45deg);
  background-color: var(--light-color, #FFFFFF);
}
.category-info-list li {
  display: block;
  padding: 5px 0;
}
.category-info-list li a {
  display: block;
  color: var(--dark-color, #000000);
  opacity: 0.6;
  font-family: 'Roboto Slab';
  font-size: 16px;
  text-decoration: none;

}
.category-info-link h4,
.category-info-link i {
  text-shadow: 0px 0px 10px rgba(150, 150, 150, 1);
}
.category-info-list li a:hover {
  opacity: 1;
}
.category-info-list li a.active {
  color: var(--accent-color, #FF0000);
  opacity: 1;
}

.category-info h4 {
  text-transform: uppercase;
  letter-spacing: 2px;
}
@media screen and (max-width: 900px) {
  .category-info {
    left: 50%;
  }
}
.section-view {
  position: relative;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  padding: 2vw;
  min-height: 30vh;
}
.view-btn {
  width: 100px;
  height: 100px;
  color: var(--accent-color, #FF0000);
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  text-align: center;
  -webkit-transform: scale(1);
  transform: scale(1);
  overflow: hidden;
  margin: 0 15px;
}
.view-btn i {
    font-size: 96px;
    height: 100px;
    line-height: 100px;
}
.desktop .projector {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.mobile .projector {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  z-index: 555540;
  opacity: 0;
  background-color: #000000;
  visibility: hidden;
  transform: translateY(50%);
  -webkit-transform: translateY(50%);
  -webkit-transition: all .5s ease;
  transition: all .5s ease;
}
.mobile .projector.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  -webkit-transform: translateY(0);
}
