#header {
  opacity: 0.2;
  transition: opacity .4s;
}

#header:hover {
  opacity: 0.7;
}

/* Top Banner START */
.top-banner {
  width: 100%;
  height: 100vh;
  background: #000;
  position: relative;
  overflow: hidden;
}

.top-banner #slider {
  position: absolute;
  height: 100%;
  top: 0;
  left: 0;
  transition: left .3s;
}

.top-banner #slider .slide {
  position: absolute;
  height: 100%;
  width: 100vw;
  top: 0;
  left: 0;
}

.top-banner #slider .main-slide {
  position: relative;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
}

.top-banner #slider .main-slide .slider-image-back {
  position: absolute;
  opacity: 0;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  min-width: 120%;
  transition: opacity 1s;
  height: 120%;
  animation-name: imageBack;
  animation-duration: 6s;
  animation-timing-function: linear;
  animation-iteration-count: 1;
}

@keyframes imageBack {
  0% {
    min-width: 100%;
    height: 100%;
  }

  100% {
    min-width: 120%;
    height: 120%;
  }
}

.top-banner #slider .main-slide .logo {
  position: absolute;
  width: 300px;
  max-width: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.top-banner #slider .main-slide .logo img {
  width: 100%;
}

.top-banner #slider .main-slide .cloud {
  position: absolute;
  left: 10vw;
  width: 900px;
  bottom: 0;
  transform: translate(-50%, 20%);
}

.top-banner #slider .main-slide .cloud img {
  width: 100%;
  min-height: 100px;
}

.top-banner .slide-buttons {
  width: 60px;
  height: 60px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: white;
  font-size: 50px;
  line-height: 100px;
  text-align: center;
  z-index: 10;
}

.top-banner #slide-right {
  right: 2%;
  transition: right .1s;
}

.top-banner #slide-right:hover {
  right: 1%;
  padding-left: 1%;
}

.top-banner #slide-left {
  left: 2%;
  transition: left .1s;
}

.top-banner #slide-left:hover {
  left: 1%;
  padding-right: 1%;
}

.top-banner #slider .slide .x-slide {
  position: relative;
  width: 100%;
  height: 100%;
  color: white;
  box-sizing: border-box;
  padding-top: 100px;
  text-align: center;
  overflow: hidden;
}

.top-banner #slider .slide .x-slide .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
}

.top-banner #slider .slide .x-slide .x-slide-content {
  width: 100%;
  top: 50%;
  left: 50%;
  position: absolute;
  transform: translate(-50%, -50%);
}

.top-banner #slider .slide .snippet {
  margin: 0 auto;
  width: 700px;
  max-width: 70%;
  overflow: hidden;
  max-height: 400px;
  line-height: 40px;
  font-size: 25px;
  text-align: center;
}

.top-banner #slider .slide .x-slide .x-slide-team {
  top: 70%;
  left: 50%;
  position: absolute;
  transform: translate(-50%, -50%);
}

.top-banner #slider .slide .x-slide .x-slide-team #team-img {
  animation-name: team-img;
  animation-duration: 1s;
  animation-iteration-count: 1;
  animation-timing-function: ease-out;
}

.top-banner #slider .slide .x-slide .about-back {
  width: 100%;
  height: 150%;
  position: absolute;
  bottom: -100px;
  left: 0;
  background: url("../images/slider/main/team/back.png");
  animation-name: team-back;
  animation-duration: 2s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  background-repeat: repeat;
}

@keyframes team-back {
  0% {
    bottom: -100px;
  }

  100% {
    bottom: 0;
  }
}

@keyframes team-img {
  0% {
    transform: translateY(100%);
  }

  80% {
    transform: translateY(-10%);
  }

  90% {
    transform: translateY(5%);
  }

  100% {
    transform: translateY(0%);
  }
}

.slide .float-ing {
  position: absolute;
  animation-name: floating;
  animation-duration: 6s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
  width: calc(80px + 7vw);
  height: calc(80px + 7vw);
}

.float-ing.bigger {
  width: calc(80px + 10vw);
  height: calc(80px + 10vw);
}

.slide .float-ing img {
  position: absolute;
  max-width: 80%;
  max-height: 80%;
  left: 0;
  top: 0;
}

.float-ing.bigger img {
  max-width: 120%;
  max-height: 120%;
}

@keyframes floating {
  0% {
    transform: translateY(-35px);
  }

  50% {
    transform: translateY(35px);
  }

  100% {
    transform: translateY(-35px);
  }
}

.x-back {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.x-back img {
  min-width: 100%;
  min-height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%)
}

.next-event {
  min-height: 100px;
  max-height: 200px;
  box-sizing: border-box;
  position: absolute;
  bottom: 0;
  padding: 0 5%;
}

.next-event .left-sec {
  width: 300px;
  max-width: 30%;
  height: 100%;
  float: left;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  box-sizing: border-box;
  padding: 20px 5px;
}

.next-event .left-sec .nx-text {
  margin-top: -20px;
  line-height: 0;
}

.next-event .left-sec .nx-logo {
  width: 100%;
  height: 100%;
  position: relative;
  border-right: 1px solid #fff;
}

.next-event .left-sec .nx-logo img {
  max-width: 80%;
  max-height: 80%;
}

.next-event .right-sec {
  width: 400px;
  max-width: 70%;
  height: 100%;
  float: right;
  flex-wrap: wrap;
  justify-content: flex-end;
  box-sizing: border-box;
  padding: 20px 5px;
}

.next-event .right-sec {
  width: 100%;
  text-align: left;
  line-height: 20px;
}

.next-event .right-sec a {
  color: white;
}

/* Top Banner END */