/* firstview */
.firstview {
  height: 100vh;
}
.firstview__text {
  font-size: 2.7em;
  position: absolute;
  bottom: 120px;
  left: 30px;
  line-height: 1;
  text-shadow: 5px 5px #fff;
  color: #1DA1F2;
}
.firstview__text .fa-quote-left {
  font-size: 2em;
}
@media (min-width: 930px) {
  .firstview__text {
    font-size: 6em;
    bottom: 80px;
    left: 50px;
  }
  .firstview__text .fa-quote-left {
    font-size: 1em;
  }
}
.firstview__title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  text-align: center;
  width: 69.4444444444%;
}
@media (min-width: 930px) {
  .firstview__title {
    width: 37.037037037%;
  }
}

.firstview__slideshow {
  position: absolute;
  top: 50px;
  left: 50px;
  width: calc(100% - 100px);
  height: calc(100% - 100px);
  overflow: hidden;
}
.firstview__slideshow .slide {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
}
.firstview__slideshow .slide.active {
  opacity: 1;
}
@media (min-width: 930px) {
  .firstview__slideshow {
    top: 70px;
    left: 90px;
    width: calc(100% - 180px);
    height: calc(100% - 180px);
  }
}
