img {
  max-width: 100%;
  max-height: 100%;
}

body {
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  overflow: hidden;
  padding: 0;
  margin: 0;
}

#slide-container {
  width: 100vw;
  height: 100vh;
}

.image-container {
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 100;
  overflow: hidden;
}

#slide-transition {
  width: 200%;
  height: 100%;
  background-image: url("../Pictures/transition.png");
  background-size: cover;
  background-attachment: fixed;
  background-position: center center;
  position: relative;
  left: -200%;
}

.slide {
  width: 100%;
  height: 100%;
  position: absolute;
}

.slide-panel {
  width: 50%;
  height: 100%;
  float: right;
  position: relative;
  z-index: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

@media (orientation: portrait) {
  .slide-panel {
    width: 100%;
    height: 60%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.slide-panel-background {
  width: 100%;
  height: 100%;
  background-color: #0054A6;
  -webkit-clip-path: polygon(30% 0, 100% 0, 100% 100%, 30% 100%, 0 50%);
          clip-path: polygon(30% 0, 100% 0, 100% 100%, 30% 100%, 0 50%);
  position: absolute;
}

@media (orientation: portrait) {
  .slide-panel-background {
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 70%, 52% 100%, 0 70%);
            clip-path: polygon(0 0, 100% 0, 100% 70%, 52% 100%, 0 70%);
  }
}

.slide-panel-data {
  width: 100%;
  height: auto;
  max-height: 80vh;
  color: white;
  right: 10%;
  position: relative;
  z-index: 1;
}

@media (orientation: portrait) {
  .slide-panel-data {
    right: 0;
    width: 80%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

.slide-panel-data-title {
  width: 100%;
  max-height: 169px;
  font-weight: bold;
  font-size: 40px;
  text-shadow: 2px 2px 4px #000000;
  text-align: left;
  border-bottom: white solid 5px;
  padding: 10px 0;
  word-wrap: break-word;
}

.slide-panel-data-date {
  font-size: 20px;
  padding: 10px 0;
  text-align: right;
}

@media (orientation: portrait) {
  .slide-panel-data-date {
    width: 100%;
    font-size: 25px;
  }
}

.slide-panel-data-description {
  width: 100%;
  max-height: 380px;
  font-size: 22px;
  opacity: 0;
  position: relative;
  text-align: left;
  line-height: 35px;
  word-wrap: break-word;
  word-break: break-word;
  display: none;
}

@media (orientation: portrait) {
  .slide-panel-data-description {
    font-size: 30px;
  }
}

.slide-backgrounds {
  width: 80%;
  height: 100%;
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  overflow: hidden;
}

@media (orientation: portrait) {
  .slide-backgrounds {
    width: 100%;
    height: 60%;
    bottom: 0;
  }
}

.slide-backgrounds-background {
  width: 100%;
  height: 80%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: absolute;
  z-index: -1;
}

.slide-backgrounds-blur {
  width: 110%;
  height: 110%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: absolute;
  z-index: -2;
  -webkit-filter: blur(5px);
          filter: blur(5px);
  -webkit-filter: brightness(0.5);
          filter: brightness(0.5);
}

.slide-logo {
  width: 100%;
  height: 10%;
  position: absolute;
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding: 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

@media (orientation: portrait) {
  .slide-logo {
    width: 100%;
    height: 150px;
    padding: 40px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
}

.slide-logo-image {
  width: auto;
  height: 100%;
  padding: 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.slide-footer {
  width: 100%;
  height: 10%;
  bottom: 0;
  z-index: 2;
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  padding: 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

@media (orientation: portrait) {
  .slide-footer {
    width: 100%;
    height: 150px;
    padding: 25px 40px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
}

.slide-footer-text {
  font-size: 12px;
  color: white;
  margin: 20px;
}

@media (orientation: portrait) {
  .slide-footer-text {
    font-size: 20px;
  }
}

@-webkit-keyframes ClipBackgroundAnimation {
  0% {
    -webkit-clip-path: polygon(30% 0, 100% 0, 100% 100%, 30% 100%, 0 50%);
            clip-path: polygon(30% 0, 100% 0, 100% 100%, 30% 100%, 0 50%);
    left: 0px;
  }
  15% {
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%, 0 50%);
            clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%, 0 50%);
    left: -65vw;
  }
  70% {
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%, 0 50%);
            clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%, 0 50%);
    left: -65vw;
  }
  90% {
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%, 0 50%);
            clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%, 0 50%);
    left: -165vw;
  }
  100% {
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%, 0 50%);
            clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%, 0 50%);
    left: -165vw;
  }
}

@keyframes ClipBackgroundAnimation {
  0% {
    -webkit-clip-path: polygon(30% 0, 100% 0, 100% 100%, 30% 100%, 0 50%);
            clip-path: polygon(30% 0, 100% 0, 100% 100%, 30% 100%, 0 50%);
    left: 0px;
  }
  15% {
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%, 0 50%);
            clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%, 0 50%);
    left: -65vw;
  }
  70% {
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%, 0 50%);
            clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%, 0 50%);
    left: -65vw;
  }
  90% {
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%, 0 50%);
            clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%, 0 50%);
    left: -165vw;
  }
  100% {
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%, 0 50%);
            clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%, 0 50%);
    left: -165vw;
  }
}

@media (orientation: portrait) {
  @-webkit-keyframes ClipBackgroundAnimation {
    0% {
      -webkit-clip-path: polygon(0 0, 100% 0, 100% 70%, 52% 100%, 0 70%);
              clip-path: polygon(0 0, 100% 0, 100% 70%, 52% 100%, 0 70%);
      top: 0px;
    }
    15% {
      -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 50% 100%, 0 100%);
              clip-path: polygon(0 0, 100% 0, 100% 100%, 50% 100%, 0 100%);
      top: 50vh;
    }
    80% {
      -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 50% 100%, 0 100%);
              clip-path: polygon(0 0, 100% 0, 100% 100%, 50% 100%, 0 100%);
      top: 50vh;
    }
    81% {
      -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 50% 100%, 0 100%);
              clip-path: polygon(0 0, 100% 0, 100% 100%, 50% 100%, 0 100%);
      top: 4500vh;
    }
    100% {
      -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 50% 100%, 0 100%);
              clip-path: polygon(0 0, 100% 0, 100% 100%, 50% 100%, 0 100%);
      top: 4500vh;
    }
  }
  @keyframes ClipBackgroundAnimation {
    0% {
      -webkit-clip-path: polygon(0 0, 100% 0, 100% 70%, 52% 100%, 0 70%);
              clip-path: polygon(0 0, 100% 0, 100% 70%, 52% 100%, 0 70%);
      top: 0px;
    }
    15% {
      -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 50% 100%, 0 100%);
              clip-path: polygon(0 0, 100% 0, 100% 100%, 50% 100%, 0 100%);
      top: 50vh;
    }
    80% {
      -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 50% 100%, 0 100%);
              clip-path: polygon(0 0, 100% 0, 100% 100%, 50% 100%, 0 100%);
      top: 50vh;
    }
    81% {
      -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 50% 100%, 0 100%);
              clip-path: polygon(0 0, 100% 0, 100% 100%, 50% 100%, 0 100%);
      top: 4500vh;
    }
    100% {
      -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 50% 100%, 0 100%);
              clip-path: polygon(0 0, 100% 0, 100% 100%, 50% 100%, 0 100%);
      top: 4500vh;
    }
  }
}

@-webkit-keyframes InformationAnimation {
  0% {
    right: 10%;
    width: 100%;
  }
  15% {
    right: 95%;
    width: 60%;
  }
  70% {
    right: 95%;
    width: 60%;
  }
  90% {
    right: 295%;
    width: 60%;
  }
  100% {
    right: 295%;
    width: 60%;
  }
}

@keyframes InformationAnimation {
  0% {
    right: 10%;
    width: 100%;
  }
  15% {
    right: 95%;
    width: 60%;
  }
  70% {
    right: 95%;
    width: 60%;
  }
  90% {
    right: 295%;
    width: 60%;
  }
  100% {
    right: 295%;
    width: 60%;
  }
}

@media (orientation: portrait) {
  @-webkit-keyframes InformationAnimation {
    0% {
      top: 0;
    }
    15% {
      top: 40vh;
    }
    80% {
      top: 40vh;
    }
    81% {
      top: 100vh;
    }
    100% {
      top: 100vh;
    }
  }
  @keyframes InformationAnimation {
    0% {
      top: 0;
    }
    15% {
      top: 40vh;
    }
    80% {
      top: 40vh;
    }
    81% {
      top: 100vh;
    }
    100% {
      top: 100vh;
    }
  }
}

@-webkit-keyframes TitleAnimation {
  0% {
    font-size: 40px;
    text-shadow: 2px 2px 4px #000000;
  }
  15% {
    font-size: 30px;
    text-shadow: 0px 0px 0px;
  }
  70% {
    font-size: 30px;
    text-shadow: 0px 0px 0px;
  }
  90% {
    font-size: 30px;
    text-shadow: 0px 0px 0px;
  }
  100% {
    font-size: 30px;
    text-shadow: 0px 0px 0px;
  }
}

@keyframes TitleAnimation {
  0% {
    font-size: 40px;
    text-shadow: 2px 2px 4px #000000;
  }
  15% {
    font-size: 30px;
    text-shadow: 0px 0px 0px;
  }
  70% {
    font-size: 30px;
    text-shadow: 0px 0px 0px;
  }
  90% {
    font-size: 30px;
    text-shadow: 0px 0px 0px;
  }
  100% {
    font-size: 30px;
    text-shadow: 0px 0px 0px;
  }
}

@-webkit-keyframes TextAnimation {
  12% {
    opacity: 0;
  }
  16% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}

@keyframes TextAnimation {
  12% {
    opacity: 0;
  }
  16% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}

@-webkit-keyframes BackgroundAnimation {
  0% {
    left: 0;
  }
  15% {
    left: 20vw;
  }
  70% {
    left: 20vw;
  }
  90% {
    left: -80vw;
  }
  100% {
    left: -80vw;
  }
}

@keyframes BackgroundAnimation {
  0% {
    left: 0;
  }
  15% {
    left: 20vw;
  }
  70% {
    left: 20vw;
  }
  90% {
    left: -80vw;
  }
  100% {
    left: -80vw;
  }
}

@media (orientation: portrait) {
  @-webkit-keyframes BackgroundAnimation {
    0% {
      bottom: 0;
    }
    15% {
      bottom: 45vh;
    }
    70% {
      bottom: 45vh;
    }
    90% {
      bottom: 45vh;
    }
    100% {
      bottom: 45vh;
    }
  }
  @keyframes BackgroundAnimation {
    0% {
      bottom: 0;
    }
    15% {
      bottom: 45vh;
    }
    70% {
      bottom: 45vh;
    }
    90% {
      bottom: 45vh;
    }
    100% {
      bottom: 45vh;
    }
  }
}

@-webkit-keyframes NextSlideAnimation {
  0% {
    left: 100vw;
  }
  15% {
    left: 100vw;
  }
  70% {
    left: 100vw;
  }
  90% {
    left: 0vw;
  }
  100% {
    left: 0vw;
  }
}

@keyframes NextSlideAnimation {
  0% {
    left: 100vw;
  }
  15% {
    left: 100vw;
  }
  70% {
    left: 100vw;
  }
  90% {
    left: 0vw;
  }
  100% {
    left: 0vw;
  }
}

@media (orientation: portrait) {
  @-webkit-keyframes TransitionAnimation {
    0% {
      left: -200%;
    }
    100% {
      left: 200%;
    }
  }
  @keyframes TransitionAnimation {
    0% {
      left: -200%;
    }
    100% {
      left: 200%;
    }
  }
}
/*# sourceMappingURL=main.css.map */