body {
  padding: 0;
  margin: 0;
  font-family: "Open Sans";
  overflow: visible;
  height: 100%;
}


body.readable .overlay.open {
  background-color: rgba(255, 255, 255, 0.8);
}
body.readable .overlay.open .content {
  color: black !important;
}
body.readable .overlay.open .content p,
body.readable .overlay.open .content a {
  color: black !important;
}

body.readable .link-white {
  content: url("../img/Link\ Blau.png");
}
body:not(.readable) .link-white {
  content: url("../img/Link Weiß.png");
}


.overhide {
  overflow: hidden;
}


img {
  display: block;
}

p {
  padding: 0;
  margin: 0;
}

.wrapper {
  display: flex;
  flex-wrap: nowrap;
  height: 100vh;
}

.container {
  display: flex;
  flex-wrap: wrap;
  flex: 1 1 80%;
  height: 100vh;
  position: relative;
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #14387f;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #fff;
  border-radius: 20px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #555;
}

/* Main Content */

.main {
  position: relative;
  margin: 0 auto;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
  height: 100%;
  opacity: 1;
}

.content-container {
  pointer-events: none;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: 0 auto;
  height: 100%;
}

@media (max-width: 980px) {
  .content-container {
    height: 100% !important;
  }
}

/* Old Image*/
.background {
  max-width: 100%;
}

.background img {
  max-width: 100%;
  -webkit-tap-highlight-color: transparent;
}

.bg-image {
  position: relative;
  left: 0;
  top: 0;
  width: auto;
  height: auto;
  max-width: 100vw;
  right: 0;
  bottom: 0;
  margin: 0 auto;
  z-index: 99999;
}

.zoomHolder {
  width: 100%;
  height: auto;
  position: relative;
  overflow: hidden;
  margin: 0 auto;
}

/* Scene Hover */

.hover-container {
  position: absolute;
  z-index: 99999;
  background-color: #00964d;
  padding: 10px;
  transform: scale(0) translate(-50%, -25%);
  transform-origin: top left;
  transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
  left: 50%;
  top: 50%;
  display: none;
  width: 50vw;
  height: fit-content;
  max-width: 900px;
}
.hover-container img {
  width: 100%;
}
.hover-container p {
  font-weight: 600;
  padding: 10px;
  font-size: 20px;
}

.hover-container.open {
  transform: scale(1) translate(-50%, -50%);
}

.hover-container a {
  text-decoration: none;
  color: #fff;
}

.hover-container h2 {
  color: #fff;
  background-color: #14387f;
  font-size: 14px;
  font-weight: 400;
  margin: 0;
  padding: 0 4px 10px;
}

.scene-number {
  font-size: 30px;
  font-weight: 900;
  display: flex;
  height: 100%;
  justify-content: center;
  align-items: center;
  color: #fff;
  opacity: 0.8;
  z-index: 99999999;
}

/* Menu */

.white-line {
  height: 5px;
  color: white;
  width: -webkit-fill-available;
  overflow: hidden;
  background: white;
  border: 0 none;
}

.menu-desktop {
  position: relative;
  bottom: 0;
  right: 0;
  flex: 1 1 360px;
  height: 100vh;
  background-color: #fff;
  transition: all 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
  z-index: 99999999;
  pointer-events: all;
}

.menu-desktop::before {
  content: "";
  width: auto;
  left: 10px;
  right: 60px;
  height: 0;
  position: absolute;
  bottom: 50px;
  z-index: 999;
  background-color: #14387f;
  transition: all 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
  display: none;
}

.open.menu-desktop::before {
  height: 3px;
}

.menu-content {
  background-color: #14387f;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.menu-link-container ul li a {
  border: none;
  font-weight: 500;
}
.menu-link {
  color: #ffffff;
  /* background-color: #d9d9d9; */
  width: auto;
  display: block;
  padding: 8px 10px;
  margin-bottom: 10px;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
  font-size: 15px;
}

.primar-heading {
  color: #fff;
  margin: 5px 0px;
  text-align: center;
  font-size: 21px;
}
.secondary-heading {
  color: #ffcc00;
  text-align: center;
  margin: 5px 0px;
  font-size: 21px;
}
.primar-school {
  background: #00964d;
}
.secondary-school {
  background: #ffcc00;
  color: #000;
}

.menu-footer {
  background: #fff;
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  padding: 10px 10px 10px 10px;
  margin-top: auto;
}

.menu-footer img {
  align-self: center;
  max-width: 120px;
}
.btn-readable {
  cursor: pointer;
  background-color: #4f4f4f;
  color: #ffffff;
  font-size: 12px;
  font-weight: 600;
}
.readable .btn-readable {
  background-color: #ffffff;
  color: #4f4f4f;
}

.menu-header {
  background-color: #14387f;
  color: #fff;
  display: flex;
  padding: 14px;
  margin-top: 30px;
  margin-bottom: -4px;
  z-index: 9;
  justify-content: center;
  flex-direction: column;
  text-align: center;
}

.menu-header p {
  font-size: 22px;
  line-height: 1;
  margin: 0 6px;
  font-weight: 400;
  letter-spacing: 1px;
  border-bottom: 1px solid #fff;
  padding-bottom: 6px;
}

.menu-header h2 {
  padding: 6px 0 0 0;
  margin: 0;
  font-weight: 600;
  letter-spacing: 2px;
  font-size: 20px;
  text-transform: uppercase;
  cursor: pointer;
}

.menu-header h2 span {
  font-size: 38px;
  font-weight: 600;
  display: block;
  margin-top: -6px;
}

.menu-link-container {
  padding: 14px 10px 0 10px;
  margin-bottom: 0;
  overflow-y: auto;
}

.menu-link-container ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  width: 100%;
}

.menu-link-container ul li {
  overflow: hidden;
}

.menu-toggle-container {
  padding: 6px;
  display: flex;
  position: relative;
  bottom: 0;
  background-color: #fff;
  z-index: 99;
}

.menu-footer-logos img {
  max-width: 100%;
}

.menu-toggle {
  display: none;
  position: absolute;
  right: 0;
  bottom: -10px;
  height: 90px;
  width: 50px;
  height: 80px;
  width: 44px;
  background-color: #14387f;
  color: #fff;
  z-index: 99;
  transition: all 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.menu-toggle:hover {
  bottom: 0;
}

.menu-toggle a {
  position: absolute;
  width: 100%;
  height: 100%;
  color: #14387f;
}

.menu-toggle a::before {
  content: "";
  position: absolute;
  top: 14px;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 14px solid #fff;
  transition: all 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
  transform-origin: center;
}

.menu-desktop.open .menu-toggle a::before {
  transform: rotate(180deg);
}

.menu-toggle:hover a::before {
  top: 12px;
}

/* Overlay */

.overlay {
  position: absolute;
  z-index: 999999;
  top: 0;
  left: 0;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  pointer-events: none;
  opacity: 0;
  box-sizing: border-box;
}

.content-container.open .overlay.open {
  pointer-events: all;
  opacity: 1;
  width: 100%;
  height: 100%;
  transform: scale(1);
}

.overlay-image {
  min-width: 35%;
  text-align: center;
  width: 100%;
}

.overlay-image-wrapper {
  position: relative;
  transform: scale(0.5);
  transition: all 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.overlay.open .overlay-image-wrapper {
  transform: scale(1);
  margin-bottom: 50px;
}

.overlay-image img {
  width: 100%;
}

.overlay-image h2 {
  font-size: 18px;
  position: absolute;
  color: #fff;
  background: #14387f;
  margin: 10px;
  left: 0;
  right: 0;
  width: auto;
  padding: 16px 20px;
  font-weight: 600;
}

.overlay-content {
  padding-left: 16px;
  padding-right: 16px;
  text-align: justify;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  width: 100%;
  height: auto;
  transform: translateY(-50px);
  transform-origin: top;
  transition: all 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.overlay.open .overlay-content {
  transform: translateY(0);
  z-index: -1;
}

.overlay-content ul {
  padding-left: 20px;
}

.overlay-content li {
  padding: 4px 0;
}

.overlay-content ul ul {
  list-style: none;
  padding-left: 10px;
  text-indent: -12px;
  margin-top: 4px;
}

.overlay-content ul ul li:before {
  content: "✓";
  position: relative;
  left: -10px;
}

.content {
  max-width: 100%;
  width: 100%;
  margin: 25px 0 40px;
  position: relative;
  box-sizing: border-box;
}

.overlay-content .content:first-child {
  margin-top: 45px;
}

.content.download img.download-image {
  max-width: 80px;
  float: left;
  margin-right: 20px;
}

.content.text {
  color: #111;
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
  padding-right: 35px;
}

.content.text ul {
  margin-top: -6px;
}

.content.image {
  max-width: 100%;
  margin-top: -20px;
  padding-left: 0;
}

.content.image img {
  border: 6px solid #14387f;
  box-sizing: border-box;
  border-radius: 14px;
  width: 100%;
}

.content video {
  max-width: 100%;
  width: 100%;
  border: 6px solid #14387f;
  box-sizing: border-box;
  outline: none;
  position: relative;
  left: 0;
  top: 0;
  object-fit: cover;
}

.content.video {
  padding-left: 0;
}

.content h3 {
  color: #111;
  margin: 0;
  font-weight: 400;
  font-size: 16px;
  text-align: left;
}

.content a {
  color: #14387f;
  font-size: 14px;
  word-break: break-all;
}

.content .icon {
  width: 30px;
  height: 30px;
  display: block;
  position: absolute;
  left: 0;
  top: -36px;
  z-index: 999;
  background-color: #fff;
  border-radius: 100%;
  box-shadow: 0 0 4px #000;
  display: flex;
  align-items: center;
  text-align: center;
  justify-content: center;
}

.content .icon img {
  max-width: 84%;
  border-radius: 100%;
}

.close-btn {
  position: relative;
  bottom: 24px;
  color: #000;
  border: 1px solid #000;
  text-transform: uppercase;
  text-decoration: none;
  font-size: 18px;
  padding: 10px 20px;
  background: #ffcc00 !important;
  font-weight: 700;
  transition: all 0.3s ease-in-out;
  opacity: 1;
  -webkit-tap-highlight-color: transparent;
}

.overlay.open .close-btn {
  bottom: 14px;
  display: flex;
  flex-direction: row;
}

/* Media query 320 */
@media (min-width: 320px) {
  /* Image */
  /* New Image */

  .overhide .el-img , .overhide .ext-link-icon-mobile {
    display: none !important;
  }
    
  .ref-text img {
    display: none;
  }

  .el1 {
    background-image: url("../img/Kachel1.jpg");
  }
  .el2 {
    background-image: url("../img/Kachel2.jpg");
  }
  .el3 {
    background-image: url("../img/Kachel3.jpg");
  }
  .el4 {
    background-image: url("../img/Kachel4.jpg");
  }
  .el5 {
    background-image: url("../img/Kachel5.jpg");
  }
  .el6 {
    background-image: url("../img/Kachel6.jpg");
  }
  .el7 {
    background-image: url("../img/Kachel7.jpg");
  }
  .el8 {
    background-image: url("../img/Kachel8.jpg");
  }
  .el9 {
    background-image: url("../img/Kachel9.jpg");
  }
  .el10 {
    background-image: url("../img/Kachel10.jpg");
  }
  .el11 {
    background-image: url("../img/Kachel11.jpg");
  }
  .el12 {
    background-image: url("../img/Kachel12.jpg");
  }
  .el13 {
    background-image: url("../img/Kachel13.jpg");
  }
  .el14 {
    background-image: url("../img/Kachel14.jpg");
  }
  .el15 {
    background-image: url("../img/Kachel15.jpg");
  }
  .el16 {
    background-image: url("../img/Kachel16.jpg");
  }

  .el-img {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
    width: 100%;
    height: 0;
    padding-top: 66.64%;
  }
  .el-img:hover {
    transform: scale(1.1);
  }

  .el {
    flex: 1 1 100%;
    display: flex;
    /* height: 25vh; */
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    /* min-height: 500px; */
    overflow: hidden;
  }

  .menu-desktop {
    transform: translateX(100%);
    position: fixed;
  }

  .menu-desktop.menu-open {
    transform: translateX(0);
  }

  .mobile-menu-icon {
    /* display: block;
    position: fixed;
    right: 20px;
    font-size: x-large;
    cursor: pointer;
    z-index: 9999999; */

    position: fixed;
    color: white;
    background: #cf181c;
    width: 40px;
    height: 40px;
    font-size: x-large;
    text-align: center;
    right: 0px;
    z-index: 9999999;
    cursor: pointer;

  }

  .mobile-menu-close-icon {
    position: fixed;
    color: white;
    background: #cf181c;
    width: 40px;
    height: 40px;
    font-size: x-large;
    text-align: center;
    right: 0px;
    z-index: 9999999;
    cursor: pointer;
/* 
    display: block;
    position: fixed;
    right: 20px;
    font-size: x-large;
    cursor: pointer;
    z-index: 99999999; */
  }

  .mobile-menu-close-icon.hidden {
    display: none;
  }

  html {
    overflow-x: hidden;
  }

  .el[data-scene="15"] {
    position: relative;
  }
  .ext-link-icon-mobile {
    position: absolute;
    top: 20px;
    left: 20px;
    max-width: 30px;
    z-index: 1;
  }
  /* Position of single elements */
  .el.el5 {
    background-size: contain;
  }
  .el.el8 {
    background-position: right;
  }
  .overlay-image-wrapper p {
    color: black;
    display: flex;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    padding: 50px 0px 50px 0px;
    text-align: center;
  }
  #overlay-scene-16 .overlay-image-wrapper {
    padding: 40px 40px 0px 40px;
  }
    
  #overlay-scene-16 .overlay-image-wrapper p{
    font-size: 16px;
    padding: 25px 0px 0px 0px;
  }
    
  p.overlay-text {
    background: #00964d;
    color: white;
    font-weight: 600;
    padding: 10px;
    font-size: 20px;
  }
  p.overlay-text-yellow {
    background: #ffcc00;
    color: black;
    font-weight: 600;
    padding: 10px;
    font-size: 20px;
  }

  .green_textbox{
    border: 5px solid rgb(0,150,77);
    max-width: 50%;
    background: white;
    position: absolute;
    bottom: 0px;
    left: 0;
    display: none;
    font-size: 12px;
    transform: translateX(50%);
    padding: 20px;

  }

  .yellow_textbox {
    border: 5px solid #ffcc00;
    max-width: 50%;
    background: white;
    position: absolute;
    bottom: 0px;
    left: 0;
    display: none;
    font-size: 12px;
    padding: 20px;

  }
  .btn-readable {
    display: none;
  }
  
  .menu-footer {
    justify-content: space-around;
  }

}
/* Media query 450 */
@media (min-width: 450px) {
  .overlay-image h2 {
    font-size: 20px;
  }

  .content {
    padding-left: 40px;
    margin: 25px 0 25px;
  }

  .content .icon {
    width: 40px;
    height: 40px;
    left: -12px;
    top: -10px;
  }

  .overlay-content {
    padding-left: 30px;
    padding-right: 30px;
  }

  .content a {
    word-break: inherit;
  }
}


/* Media query 980 */
@media (min-width: 980px) {
  .overhide .el-img , .overhide .ext-link-icon-mobile {
      display: block !important;
    }
    
  .el[data-scene="15"] {
    position: static;
  }
  .ext-link-icon-mobile {
    display: none;
  }
  .green_textbox, .yellow_textbox {
    padding: 10px;
    font-size: 12px;
    right: 10%;
    bottom: -20%;
    left: unset;
    pointer-events: none;
    transform: translateX(0);
  }
  .green_textbox.tafari, .yellow_textbox.darko {
   right: -10%; 
  }
  .green_textbox.bojan, .yellow_textbox.makeda {
    right: -20%;
    bottom: 20%;
  }
  .green_textbox.lya, .yellow_textbox.sarah {
    right: -40%;
    bottom: 20%;
    max-width: 60%;
  }
  .green_textbox.marla, .yellow_textbox.tim {
    right: -55%;
    bottom: 0%;
    max-width: 70%;
  }
  .green_textbox.adeel, .yellow_textbox.djamal {
    right: 40%;
  }
  .green_textbox.amir, .yellow_textbox.rondek {
    right: 30%;
  }

  .hover-container {
    width: 75vw;
    position: fixed;
  }

  .background {
    max-height: 100vh;
  }

  .bg-image {
    max-height: 100vh;
  }

  [data-scene="1"] {
    /* padding: 0; */
  }

  [data-scene="5"] {
    /* padding: 0; */
    background-size: contain;
  }

  [data-scene="9"] {
    /* padding: 0; */
  }
  [data-scene="15"] {
    /* padding: 0; */
  }
  [data-scene="16"] {
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #ffffff;
  }
  a#scene-16 {
    background: #ffcc00;
}
  [data-scene="16"] .hover-container {
    background-color: #ffffff;
  }
  [data-scene="16"] a {
    text-align: center;
    flex-direction: column;
    display: flex;
    justify-content: center;
  }
  [data-scene="15"] p {
    color: black;
    display: flex;
    justify-content: center;
    font-size: 25px;
    font-weight: 700;
    text-align: center;
    padding-bottom: 20px;
  }
  [data-scene="15"] .hover-container {
    background-color: #fff;
  }
  [data-scene="16"] p {
    color: black;
    display: flex;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    padding: 20px 0px 20px 0px;
    text-align: center;
  }
  
  [data-scene="5"] p {
    color: black;
    display: flex;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    padding: 0px 0px 20px 0px;
    text-align: center;
  }

  [data-scene="9"],
  [data-scene="10"],
  [data-scene="11"],
  [data-scene="12"],
  [data-scene="13"],
  [data-scene="14"] {
    background-color: #ffcc00;
  }

  [data-scene="10"] p,
  [data-scene="11"] p,
  [data-scene="12"] p,
  [data-scene="13"] p,
  [data-scene="14"] p {
    color: #000;
  }

  .hover-container {
    display: block;
    box-shadow: 0px 0px 20px 0px #333;
  }

  .scene-number {
    display: none;
  }

  #scene-17-marker .hover-container {
    top: 180px;
  }
  .main {
    overflow: hidden;
    max-height: 100vh !important;
  }

  .content-container {
    position: absolute;
    overflow: hidden;
  }
  .menu-toggle-container {
    position: absolute;
  }

  .menu-toggle {
    display: block;
  }

  .menu-toggle.untouched {
    -webkit-animation: linear infinite alternate;
    -webkit-animation-name: initialToggle;
    -webkit-animation-duration: 2s;
    transform-origin: right;
  }
  @-webkit-keyframes initialToggle {
    0% {
      bottom: -20px;
      transform: scale(1);
    }
    50% {
      bottom: 0;
      transform: scale(1.1);
    }
    100% {
      bottom: -20px;
      transform: scale(1);
    }
  }

  .menu-link-container {
    margin-bottom: 10px;
    padding: 0px 10px 10px 10px;
  }

  .menu-link-container ul {
    padding: 0px;
  }

  .menu-link {
    padding: 8px 5px;
    font-size: 16px;
  }
  .menu-link#scene-15 img{
    height: 22px;
    width: 22px;
    position: relative;
    float: right;
  }

  .menu-link:hover {
    padding-left: 10px;
  }

  .menu-footer-logos {
    margin-right: 46px;
  }

  /* .menu-header {
    margin-top: 0;
  } */

  .menu-desktop::before {
    display: block;
  }
  .zoomHolder {
    height: 100vh;
  }

  .marker {
    width: 120px;
    height: 120px;
  }
  .overlay {
    z-index: 99999;
    flex-direction: row;
    background-color: rgba(11, 11, 11, 0.8);
    transition: none;
  }
  .overlay.readable {
    background-color: rgba(255, 255, 255, 0.8) !important;
  }

  .overlay-content {
    padding-left: 20px;
    overflow-y: scroll;
    text-align: left;
    height: 100%;
  }

  .overlay-image {
    width: 30%;
  }

  .content {
    padding-left: 0;
  }

  .content.text {
    color: #fff;
    letter-spacing: 0.5px;
  }

  .content.download img.download-image {
    max-width: 120px;
  }

  .content a {
    color: #fff;
    text-decoration: unset;
  }

  .content h3 {
    color: #fff;
  }
  body.readable .overlay.open .content h3 {
    color: #000;
  }
  .content .icon {
    width: 30px;
    height: 30px;
    left: 0;
    top: -34px;
  }

  .content.image {
    margin-top: -30px;
  }

  .overlay-image {
    text-align: left;
  }

  .overlay-image-wrapper {
    border: 10px solid #14387f;
    margin-left: 20px;
    margin-top: 20px;
  }

  /* Change border for certain overlay scenes */
  #overlay-scene-1 .overlay-image-wrapper {
    border: 0 none;
  }
  #overlay-scene-1 p {
    font-weight: 600;
  }

  #overlay-scene-2 .overlay-image-wrapper {
    border: 10px solid #00964d;
  }
  #overlay-scene-2 .content video {
    border: 6px solid #00964d;
  }

  #overlay-scene-3 .overlay-image-wrapper {
    border: 10px solid #00964d;
  }
  #overlay-scene-3 .content video {
    border: 6px solid #00964d;
  }
  #overlay-scene-4 .overlay-image-wrapper {
    border: 10px solid #00964d;
  }
  #overlay-scene-4 .content video {
    border: 6px solid #00964d;
  }
  #overlay-scene-5 .overlay-image-wrapper {
    border: 0 none;
  }
  #overlay-scene-6 .overlay-image-wrapper {
    border: 10px solid #00964d;
  }
  #overlay-scene-6 .content video {
    border: 6px solid #00964d;
  }
  #overlay-scene-7 .overlay-image-wrapper {
    border: 10px solid #00964d;
    background-color: #00964d;
  }
  #overlay-scene-7 .content video {
    border: 6px solid #00964d;
  }
  #overlay-scene-8 .overlay-image-wrapper {
    border: 10px solid #00964d;
  }
  #overlay-scene-8 .content video {
    border: 6px solid #00964d;
  }
  #overlay-scene-9 .overlay-image-wrapper {
    border: 0 none;
  }
  #overlay-scene-9 .content video,
  #overlay-scene-10 .content video,
  #overlay-scene-11 .content video,
  #overlay-scene-12 .content video,
  #overlay-scene-13 .content video,
  #overlay-scene-14 .content video,
  #overlay-scene-15 .content video,
  #overlay-scene-16 .content video {
    border: 10px solid #ffcc00;
  }

  #overlay-scene-10 .overlay-image-wrapper,
  #overlay-scene-11 .overlay-image-wrapper,
  #overlay-scene-12 .overlay-image-wrapper,
  #overlay-scene-13 .overlay-image-wrapper,
  #overlay-scene-14 .overlay-image-wrapper {
    border: 10px solid #ffcc00;
  }
  #overlay-scene-15 .overlay-image-wrapper,
  #overlay-scene-16 .overlay-image-wrapper {
    border: 0 none;
  }
  #overlay-scene-16 .overlay-image-wrapper {
    padding: 25px;
    text-align: center;
    flex-direction: column;
    display: flex;
    justify-content: center;
    background: #ffffff;
  }
  #overlay-scene-16 .overlay-image-wrapper p {
    color: black;
    display: flex;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    padding: 50px 0px 0px 0px;
    text-align: center;
  }
  #overlay-scene-16 .content.download p {
    color: #fff;
  }
  #overlay-scene-16 .ref-text {
    color: #fff;
    font-weight: 300;
  }
  .ref-text {
    display: flex;
    flex: 1 1 100%;
    flex-wrap: nowrap;
  }
  .ref-text img {
    display: block;
    max-width: 30px;
    max-height: 30px;
    padding: 0px 10px 0 0;
  }

  .overlay-image h2 {
    position: absolute;
    left: 6px;
    right: 6px;
    top: 6px;
    font-size: 20px;
    padding: 10px 20px;
    font-weight: 600;
    margin: 0;
    text-align: left;
  }

  .close-btn {
    position: absolute;
    left: 20px;
    bottom: 24px;
    transition: none;
    border: 1px solid #000;
    opacity: 0.9;
  }

  .overlay-content .content {
    padding-bottom: 20px;
  }
  .el {
    flex: 1 1 50%;
    display: flex;
    /* height: 25vh; */
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    /* min-height: 500px; */
  }
  .btn-readable {
    display: block;
  }
  .menu-footer {
    justify-content: space-between;
  }
}

/* PinchZoom */

.zoomHolder {
  width: 100%;
  height: auto;
  position: relative;
  overflow: hidden;
  height: 60vh;
}

.marker,
.zoomHolder img {
  display: block;
}

.fullscreenToggle,
.zoomIn,
.zoomOut {
  background: url(../img/pz_sheet.png) no-repeat;
  width: 30px;
  height: 30px;
  overflow: hidden;
  position: relative;
  display: block;
  cursor: pointer;
  z-index: 100;
  margin: 5px 0;
}

.zoomIn {
  background-position: 0 0;
}

.zoomOut {
  background-position: -30px 0;
}

.fullscreenToggle {
  background-position: -60px 0;
  cursor: pointer;
  display: none;
}

.zoomIn.on,
.zoomOut.on {
  opacity: 1;
  -moz-opacity: 1;
  -khtml-opacity: 1;
  cursor: pointer;
}

.zoomIn.off,
.zoomOut.off {
  opacity: 0.5;
  -moz-opacity: 0.5;
  -khtml-opacity: 0.5;
  cursor: auto;
}

.controlHolder {
  border-radius: 5px;
  background: rgba(0, 0, 0, 0.4);
  position: absolute;
  left: 10px;
  top: 10px;
  padding: 5px;
  z-index: 99999;
}

.fullscreenDiv,
.marker {
  left: 0 !important;
  top: 0 !important;
}

.fullscreenToggle.on {
  background-position: -90px 0;
}

.fullscreenToggle.off {
  background-position: -60px 0;
}

.fullscreenDiv {
  width: auto !important;
  height: auto !important;
  right: 0 !important;
  bottom: 0 !important;
  position: absolute !important;
  background: #fff;
  z-index: 999999;
  overflow: hidden;
}

.marker {
  position: absolute !important;
  bottom: auto;
  right: auto;
  width: 40px;
  height: 40px;
  opacity: 0.8;
}

/* Media query 1280 */
@media (min-width: 1280px) {
  .green_textbox,.yellow_textbox {
    padding: 20px;
    font-size: 14px;
  }
  /* Position of single elements */
  .el8 {
    background-position: center;
  }

  .hover-container h2 {
    font-size: 18px;
  }
  .overlay-image h2 {
    font-size: 24px;
  }

  .overlay-content {
    padding-left: 100px;
  }

  .content.text {
    font-size: 16px;
    line-height: 24px;
  }

  .content a {
    font-size: 16px;
  }

  .content .icon {
    width: 50px;
    height: 50px;
    left: -60px;
    top: -16px;
  }

  .content video {
    left: -35px;
    top: 5px;
  }

  .content.download img.download-image {
    max-width: 140px;
    position: relative;
    left: -35px;
    top: 0;
  }


}
/* Media query 1440 */
@media (min-width: 1440px) {
  .hover-container {
    width: 50vw;
    position: absolute;
  }

  .el {
    display: flex;
    flex: 1 1 25%;
    height: 25vh;
    background-size: cover;
    background-repeat: no-repeat;
    min-height: 25vh;
  }
  .el-img {
    height: auto;

  }
  .mobile-menu-icon {
    display: none;
  }

  .menu-desktop {
    position: relative;
    display: flex;
    flex: 1 1 360px;
    height: 100vh;
    max-width: 360px;
    right: 0;
    transform: translateX(0);
  }

  .menu-link {
    font-size: 16px;
    padding: 8px 12px;
  }

  .menu-link:hover {
    padding-left: 20px;
  }

  .menu-header {
    margin-top: 10px;
  }

  .menu-header p {
    font-size: 27px;
    line-height: 30px;
  }

  .menu-header h2 {
    font-size: 23px;
    letter-spacing: inherit;
    text-align: center;
  }

  .menu-header h2 span {
    font-size: 43px;
    margin-top: -12px;
  }

  .menu-toggle-container {
    padding: 10px;
  }

  .menu-toggle {
    height: 90px;
    width: 50px;
  }

  .menu-footer-logos {
    margin-right: 54px;
  }

  .menu-desktop::before {
    bottom: 65px;
  }
  .overlay-content {
    padding-right: 360px;
  }
}

@media (min-width: 1440px) {
  .el-img {
    padding: 0;
  }
  .el1.el-img {
    background-color: rgb(0, 150, 78);
    background-size: contain;
  }
  .el9.el-img {
    background-color: #ffcc00;
    background-size: contain;
  }
  .el15.el-img {
    background-color: white;
    background-size: contain;
  }
  .el16.el-img {
    padding-top: 66.64%;
  }
  .el-img {
    background-color: white;
  }
}

i.close-icon {
  font-size: 34px;
  font-style: initial;
  position: absolute;
  right: 0;
  top: 0;
  width: 45px;
  height: 45px;
  text-align: center;
  cursor: pointer;
}
.hover-container[data-scene="5"] {
  background-color: white;
  padding: 0;
}
.menu-link#scene-15 img{
    height: 22px;
    width: 22px;
    position: relative;
    float: right;
}
.arrow-left {
  max-width: 24px;
  position: relative;
  left: -5px;
}
.ext-link-icon {
    max-width: 40px;
    position: absolute;
    top: 20px;
    left: 20px;
}
.img-container {
  max-height: 80vh;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center; 
}
[data-scene="9"] .img-container,[data-scene="1"] .img-container{
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  overflow: hidden;
  max-width: fit-content;
  height: 60vh;
  margin: auto;
}
[data-scene="9"] .img-container img,[data-scene="1"] .img-container img {
  max-height: 100%;
}
[data-scene="16"] .img-container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  overflow: hidden;
  max-width: fit-content;
  margin: auto;
  max-height: 70vh;
}
/* ../fonts */

/* open-sans-300 - latin */
@font-face {
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 300;
  src: url("../fonts/open-sans-v18-latin-300.eot"); /* IE9 Compat Modes */
  src: local(""),
    url("../fonts/open-sans-v18-latin-300.eot?#iefix")
      format("embedded-opentype"),
    /* IE6-IE8 */ url("../fonts/open-sans-v18-latin-300.woff2") format("woff2"),
    /* Super Modern Browsers */ url("../fonts/open-sans-v18-latin-300.woff")
      format("woff"),
    /* Modern Browsers */ url("../fonts/open-sans-v18-latin-300.ttf")
      format("truetype"),
    /* Safari, Android, iOS */
      url("../fonts/open-sans-v18-latin-300.svg#OpenSans") format("svg"); /* Legacy iOS */
}
/* open-sans-regular - latin */
@font-face {
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/open-sans-v18-latin-regular.eot"); /* IE9 Compat Modes */
  src: local(""),
    url("../fonts/open-sans-v18-latin-regular.eot?#iefix")
      format("embedded-opentype"),
    /* IE6-IE8 */ url("../fonts/open-sans-v18-latin-regular.woff2")
      format("woff2"),
    /* Super Modern Browsers */ url("../fonts/open-sans-v18-latin-regular.woff")
      format("woff"),
    /* Modern Browsers */ url("../fonts/open-sans-v18-latin-regular.ttf")
      format("truetype"),
    /* Safari, Android, iOS */
      url("../fonts/open-sans-v18-latin-regular.svg#OpenSans") format("svg"); /* Legacy iOS */
}
/* open-sans-600 - latin */
@font-face {
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 600;
  src: url("../fonts/open-sans-v18-latin-600.eot"); /* IE9 Compat Modes */
  src: local(""),
    url("../fonts/open-sans-v18-latin-600.eot?#iefix")
      format("embedded-opentype"),
    /* IE6-IE8 */ url("../fonts/open-sans-v18-latin-600.woff2") format("woff2"),
    /* Super Modern Browsers */ url("../fonts/open-sans-v18-latin-600.woff")
      format("woff"),
    /* Modern Browsers */ url("../fonts/open-sans-v18-latin-600.ttf")
      format("truetype"),
    /* Safari, Android, iOS */
      url("../fonts/open-sans-v18-latin-600.svg#OpenSans") format("svg"); /* Legacy iOS */
}
/* open-sans-700 - latin */
@font-face {
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 700;
  src: url("../fonts/open-sans-v18-latin-700.eot"); /* IE9 Compat Modes */
  src: local(""),
    url("../fonts/open-sans-v18-latin-700.eot?#iefix")
      format("embedded-opentype"),
    /* IE6-IE8 */ url("../fonts/open-sans-v18-latin-700.woff2") format("woff2"),
    /* Super Modern Browsers */ url("../fonts/open-sans-v18-latin-700.woff")
      format("woff"),
    /* Modern Browsers */ url("../fonts/open-sans-v18-latin-700.ttf")
      format("truetype"),
    /* Safari, Android, iOS */
      url("../fonts/open-sans-v18-latin-700.svg#OpenSans") format("svg"); /* Legacy iOS */
}
/* open-sans-800 - latin */
@font-face {
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 800;
  src: url("../fonts/open-sans-v18-latin-800.eot"); /* IE9 Compat Modes */
  src: local(""),
    url("../fonts/open-sans-v18-latin-800.eot?#iefix")
      format("embedded-opentype"),
    /* IE6-IE8 */ url("../fonts/open-sans-v18-latin-800.woff2") format("woff2"),
    /* Super Modern Browsers */ url("../fonts/open-sans-v18-latin-800.woff")
      format("woff"),
    /* Modern Browsers */ url("../fonts/open-sans-v18-latin-800.ttf")
      format("truetype"),
    /* Safari, Android, iOS */
      url("../fonts/open-sans-v18-latin-800.svg#OpenSans") format("svg"); /* Legacy iOS */
}
