@media only screen and (max-width: 1200px) {
  * {
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    overflow: hidden;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding: 0;
    margin: 0;
    color: white;
  }
  .slide-container {
    width: 100vw;
    height: 100vh;
    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: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .slide {
    width: 100vw;
    height: 100vh;
    position: absolute;
    z-index: 2;
  }
  .slide-background {
    width: 100%;
    height: 70%;
    position: absolute;
    bottom: 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: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    position: absolute;
  }
  .slide-background-main {
    width: 100%;
    height: 800px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    margin-bottom: 90px;
    position: absolute;
    z-index: -1;
  }
  .slide-background-dark {
    width: calc(100% + 30px);
    height: calc(100% + 30px);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    position: absolute;
    z-index: -2;
    -webkit-filter: blur(5px) brightness(0.5);
            filter: blur(5px) brightness(0.5);
  }
  .slide-panel {
    width: 100%;
    height: 55%;
    top: 0;
    position: absolute;
    padding: 0 100px;
    overflow: visible;
    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: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -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(0 0, 100% 0, 100% 70%, 52% 100%, 0 70%);
            clip-path: polygon(0 0, 100% 0, 100% 70%, 52% 100%, 0 70%);
    position: absolute;
    z-index: -1;
  }
  .slide-panel-title {
    width: 100%;
    height: auto;
    padding-bottom: 20px;
    border-bottom: 5px solid white;
    margin-top: 300px;
    font-weight: bold;
    font-size: 55px;
    text-shadow: 2px 2px 4px #000000;
    word-wrap: break-word;
    position: relative;
    z-index: 1;
  }
  .slide-panel-date {
    width: 100%;
    height: auto;
    padding-top: 20px;
    text-align: right;
    font-size: 25px;
  }
  .slide-panel-description {
    width: 100%;
    max-height: 400px;
    text-align: left;
    display: none;
    margin-top: 10px;
    font-size: 30px;
    margin-top: 40px;
    line-height: 35px;
    word-wrap: break-word;
    word-break: break-word;
  }
  .transition-container {
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 100;
    overflow: hidden;
  }
  #transition {
    width: 100vw;
    height: 100vh;
    left: 100vw;
    background-image: url("../Pictures/transition.png");
    background-size: cover;
    background-attachment: fixed;
    background-position: center center;
    position: absolute;
    z-index: 11;
  }
  @-webkit-keyframes SwipeRight {
    0% {
      bottom: 0;
    }
    100% {
      bottom: 30vh;
    }
  }
  @keyframes SwipeRight {
    0% {
      bottom: 0;
    }
    100% {
      bottom: 30vh;
    }
  }
  @-webkit-keyframes SwipeLeft {
    0% {
      top: 0;
      height: 55vh;
    }
    100% {
      top: 50vh;
      height: 50vh;
    }
  }
  @keyframes SwipeLeft {
    0% {
      top: 0;
      height: 55vh;
    }
    100% {
      top: 50vh;
      height: 50vh;
    }
  }
  @-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%);
    }
    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%);
    }
  }
  @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%);
    }
    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%);
    }
  }
  @-webkit-keyframes TitleSwipeLeft {
    0% {
      font-size: 55px;
      top: 0;
      margin-top: 300px;
    }
    100% {
      font-size: 40px;
      top: 10px;
      margin-top: 100px;
    }
  }
  @keyframes TitleSwipeLeft {
    0% {
      font-size: 55px;
      top: 0;
      margin-top: 300px;
    }
    100% {
      font-size: 40px;
      top: 10px;
      margin-top: 100px;
    }
  }
  @-webkit-keyframes ShowDescription {
    0% {
      opacity: 0;
      max-height: 0;
    }
    100% {
      opacity: 1;
      max-height: 20vh;
    }
  }
  @keyframes ShowDescription {
    0% {
      opacity: 0;
      max-height: 0;
    }
    100% {
      opacity: 1;
      max-height: 20vh;
    }
  }
  @-webkit-keyframes MoveMainBackground {
    0% {
      margin-bottom: 90px;
    }
    100% {
      margin-bottom: 430px;
    }
  }
  @keyframes MoveMainBackground {
    0% {
      margin-bottom: 90px;
    }
    100% {
      margin-bottom: 430px;
    }
  }
  @-webkit-keyframes SlideIn {
    0% {
      left: 100vw;
    }
    100% {
      left: 0;
    }
  }
  @keyframes SlideIn {
    0% {
      left: 100vw;
    }
    100% {
      left: 0;
    }
  }
  @-webkit-keyframes SwipeLeftGone {
    0% {
      left: 0;
    }
    100% {
      left: -100vw;
    }
  }
  @keyframes SwipeLeftGone {
    0% {
      left: 0;
    }
    100% {
      left: -100vw;
    }
  }
  @-webkit-keyframes TransitionSlide {
    0% {
      left: 100vw;
    }
    100% {
      left: -100vw;
    }
  }
  @keyframes TransitionSlide {
    0% {
      left: 100vw;
    }
    100% {
      left: -100vw;
    }
  }
  * {
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    overflow: hidden;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding: 0;
    margin: 0;
  }
  .header {
    width: 100vw;
    height: 105px;
    padding: 20px;
    position: absolute;
    z-index: 10;
    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: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .header img {
    width: auto;
    height: 100%;
    -o-object-fit: contain;
       object-fit: contain;
  }
  .footer {
    width: 100vw;
    height: 100px;
    padding: 20px;
    bottom: 0;
    font-size: 1.2em;
    position: absolute;
    z-index: 10;
    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: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

@media only screen and (min-width: 1200px) {
  * {
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    overflow: hidden;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding: 0;
    margin: 0;
    color: white;
  }
  .slide-container {
    width: 100vw;
    height: 100vh;
    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: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .slide {
    width: 100vw;
    height: 100vh;
    position: absolute;
    z-index: 2;
  }
  .slide-background {
    width: 70%;
    height: 100%;
    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;
    position: absolute;
  }
  .slide-background-main {
    width: 100%;
    height: calc(100% - 150px);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    position: absolute;
    z-index: -1;
  }
  .slide-background-dark {
    width: calc(100% + 30px);
    height: calc(100% + 30px);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    position: absolute;
    z-index: -2;
    -webkit-filter: blur(4px) brightness(0.5);
            filter: blur(4px) brightness(0.5);
  }
  .slide-panel {
    width: 50%;
    height: 100%;
    right: 0;
    position: absolute;
    overflow: visible;
    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;
    z-index: -1;
  }
  .slide-panel-title {
    width: 100%;
    height: auto;
    margin-right: 200px;
    padding-bottom: 20px;
    border-bottom: 5px solid white;
    font-weight: bold;
    font-size: 40px;
    text-shadow: 2px 2px 4px #000000;
    word-wrap: break-word;
    position: relative;
    z-index: 1;
  }
  .slide-panel-date {
    width: 100%;
    height: auto;
    padding-top: 20px;
    margin-right: 200px;
    text-align: right;
    font-size: 20px;
  }
  .slide-panel-description {
    width: calc(100% - 110px);
    max-height: 400px;
    text-align: left;
    display: none;
    margin-top: 40px;
    font-size: 20px;
    line-height: 35px;
    word-wrap: break-word;
    word-break: break-word;
  }
  @-webkit-keyframes SwipeRight {
    0% {
      left: 0;
    }
    100% {
      left: 30vw;
    }
  }
  @keyframes SwipeRight {
    0% {
      left: 0;
    }
    100% {
      left: 30vw;
    }
  }
  @-webkit-keyframes SwipeLeft {
    0% {
      right: 0;
      width: 50%;
    }
    100% {
      right: 70vw;
      width: 30%;
    }
  }
  @keyframes SwipeLeft {
    0% {
      right: 0;
      width: 50%;
    }
    100% {
      right: 70vw;
      width: 30%;
    }
  }
  @-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%);
    }
    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%);
    }
  }
  @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%);
    }
    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%);
    }
  }
  @-webkit-keyframes TitleSwipeLeft {
    0% {
      font-size: 40px;
      width: 100%;
      margin-right: 200px;
    }
    100% {
      font-size: 30px;
      width: calc(100% - 110px);
      margin-right: 0;
    }
  }
  @keyframes TitleSwipeLeft {
    0% {
      font-size: 40px;
      width: 100%;
      margin-right: 200px;
    }
    100% {
      font-size: 30px;
      width: calc(100% - 110px);
      margin-right: 0;
    }
  }
  @-webkit-keyframes DateSwipteLeft {
    0% {
      font-size: 20px;
      width: 100%;
      margin-right: 200px;
    }
    100% {
      font-size: 15px;
      width: calc(100% - 110px);
      margin-right: 0;
    }
  }
  @keyframes DateSwipteLeft {
    0% {
      font-size: 20px;
      width: 100%;
      margin-right: 200px;
    }
    100% {
      font-size: 15px;
      width: calc(100% - 110px);
      margin-right: 0;
    }
  }
  @-webkit-keyframes ShowDescription {
    0% {
      opacity: 0;
      max-height: 0;
    }
    100% {
      opacity: 1;
      max-height: 430px;
    }
  }
  @keyframes ShowDescription {
    0% {
      opacity: 0;
      max-height: 0;
    }
    100% {
      opacity: 1;
      max-height: 430px;
    }
  }
  @-webkit-keyframes SlideIn {
    0% {
      left: 100vw;
    }
    100% {
      left: 0;
    }
  }
  @keyframes SlideIn {
    0% {
      left: 100vw;
    }
    100% {
      left: 0;
    }
  }
  @-webkit-keyframes SwipeLeftGone {
    0% {
      left: 0;
    }
    100% {
      left: -100vw;
    }
  }
  @keyframes SwipeLeftGone {
    0% {
      left: 0;
    }
    100% {
      left: -100vw;
    }
  }
  * {
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    overflow: hidden;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding: 0;
    margin: 0;
  }
  .header {
    width: 100vw;
    height: 90px;
    padding: 17px;
    position: absolute;
    z-index: 10;
    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: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .header img {
    width: auto;
    height: 100%;
    -o-object-fit: contain;
       object-fit: contain;
  }
  .footer {
    width: 100vw;
    height: 80px;
    padding: 0 20px;
    bottom: 0;
    z-index: 10;
    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: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
/*# sourceMappingURL=MainStyling.css.map */