.slideContents {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -2;
  width: 100%;
  height: calc(100% + 90px);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  transition: all 3s;
  /* overflow: hidden; */
}

.slideBottom {
  display: flex;
  align-items: center;
  flex-direction: row;
  justify-content: space-between;
  padding: 0 20px 80px 60px;
  position: absolute;
  bottom: -64px;
  width: 100%;
  font-size: 14px;
  color: lightgray;
}

.buttonBox {
  width: 101px;
  height: 28px;
  display: flex;
  opacity: 0;
  border: 1px solid lightgray;
  border-radius: 20px;
  padding: 5px;
  margin: 20px;
  background: rgba(87, 87, 87, 0.4);
}
.buttonBox > div {
  text-align: center;
  line-height: 100%;
  cursor:pointer;
  display: flex;
  justify-content: center;
  align-items: center;
}
.buttonBox div:nth-child(1) {
  border-right: 1px solid lightgray;
}

.slideCont {
  position: absolute;
  left:0;
  top:0;
  width: 100%;
  height: 100%;
  padding: 30px;
  display: flex;
  transition: all 2s;
  opacity: 0;
  flex-direction: column;
  justify-content: space-around;
  background-size: cover;
  background-position: center center;
}
.slideCont.on {
  opacity: 1;
  /* display: flex; */
}

/* .slideCont::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, .5);
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  transition: all 1s;
} */

.slideTitle {
  font-size: 70px;
  width: 100%;
  /* height: 100%; */
  /* display: flex;
  flex-direction: row;
  align-items: center; */
  margin-left: 50px;
  font-weight: bold;
  color: white;
  margin-bottom: 100px;
  transition-delay: .6s;
  /* transform: translate3d(-10%, 0, 0); */
  /* transition: visibility 0s 0.6s, transform 1s cubic-bezier(0.16, 1.08, 0.38, 0.98) 0.6s; */
}

.slideTitle > div {
  overflow: hidden;
  /* line-height: 120%; */
}
.slideCont .slideTitle > div:nth-child(1){
  height: 180px;
  line-height: 100%;
}
.slideCont .slideTitle > div:nth-child(2){
  height: 150px;
}
/* .slideCont:nth-child(2) .slideTitle > div{
  height: 200px;
}
.slideCont:nth-child(3) .slideTitle > div{
  height: 80px;
} */
.slide_title {
  transition: all 1.5s;
  position: absolute;
  left: 0;
  top: 100%;
}
.slide_txt {
  font-size: 22px;
  font-weight: 300;
  transition: all 1.5s;
  position: absolute;
  left: 0;
  top: 100%;
}
.slide_title.on, .slide_txt.on {
  top: 0;
}

.slideNav {
  height: 80px;
  width: auto;
  display: flex;
  justify-content: center;
  align-items: center;
}
.scrollIcon {
  width: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-right: 20px;
}
.scrollIcon > div {
  width: 22px;
  height: 34px;
  border-radius: 20px;
  background: rgba(87, 87, 87, .4);
  border: 1px solid lightgray;
  text-align: center;
}
.mouseWheel {
  width:4px;
  height: 7px;
  border-radius: 10px;
  background: #f4ed51;
  margin-top: 5px;
  animation: scroll 2s ease-in-out infinite;
}
@keyframes scroll {
  0% {
    top: 0px
  }

  50% {
    top: 10px
  }

  100% {
    top: 0px
  }
}
.scrollIcon span {
  font-size: 11px;
  font-weight: 100;
  margin-top: 5px;
}
.slideBtn{
  width:8px;
  height: 8px;
  border-radius: 100px;
  background: rgba(241, 241, 241, .4);
  margin: 5px;
  transition: width .3s;
  cursor: pointer;
}

@media screen and (max-width: 900px) {
  .slideCont {
    padding-left: 7%;
  }
  .slideTitle {
    font-size: 1.4rem;
    margin-left: 0px;
  }
  .slideCont:nth-child(2) {
    background-position: 25% center;
  }
  .slideContents :nth-child(2) .slideTitle {
    font-size: 1.2rem;
  }
  .slideCont .slideTitle > div:nth-child(1) {
    height: 80px;
  }
  .slide_txt {
    font-size: 0.9rem;
    word-break: keep-all;
  }
  .scrollIcon {
    width: 65px;
    margin: 0px;
    opacity: 0;
  }
  .buttonBox {
    width: 65px;
    margin: 0px;
  }
  .slideBottom {
    padding: 0px 10px;
    bottom: 0;
  }
}