#fv {
  height: 92vh;
  padding-top: calc(16vw + 85px);
  position: relative;
  min-height: 60vw;
}
@media only screen and (max-width: 768px) {
  #fv {
    padding-top: calc(16vw + 64px);
    height: 70vh;
  }
}
#fv .fv-img-container {
  position: absolute;
  z-index: -10;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
#fv .fv-img-container .swiper {
  width: 100%;
  height: 100%;
}
#fv .fv-img-container .swiper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 75% center;
}
#fv .fv-catch-container {
  margin: 0 auto;
  max-width: 1200px;
  padding: 80px 0 0;
  text-align: left;
}
@media only screen and (max-width: 1024px) {
  #fv .fv-catch-container {
    margin-left: 4%;
  }
}
#fv .fv-catch-container .fv-catch-title {
  font-weight: bold;
  font-size: 6.8rem;
  line-height: 1.2em;
  color: white;
  margin-left: 40px;
  margin-bottom: 20px;
}
@media only screen and (max-width: 1024px) {
  #fv .fv-catch-container .fv-catch-title {
    margin: 0;
    margin-bottom: 16px;
  }
}
@media only screen and (max-width: 768px) {
  #fv .fv-catch-container .fv-catch-title {
    font-size: 4rem;
  }
}
#fv .fv-catch-container .fv-catch-title .red {
  color: #d7000f;
}
#fv .fv-catch-container .fv-catch-text {
  margin-left: 40px;
  max-width: 550px;
}
@media only screen and (max-width: 1024px) {
  #fv .fv-catch-container .fv-catch-text {
    margin: 0;
  }
}
@media only screen and (max-width: 768px) {
  #fv .fv-catch-container .fv-catch-text {
    width: 330px;
    max-width: 80%;
    margin-top: 20px;
  }
}
#fv .fv-catch-container .fv-catch-text p {
  color: white;
  font-size: 1.8rem;
  line-height: 1.4em;
}
#fv .fv-scroll-bar-container {
  width: 1px;
  height: 80px;
  position: absolute;
  right: 12.5vw;
  z-index: 1;
  top: calc(100% - 14vw);
  transform: translateY(-50%);
}
@media only screen and (max-width: 768px) {
  #fv .fv-scroll-bar-container {
    display: none;
  }
}
#fv .fv-scroll-bar-container .fv-scroll-bar {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  animation: 2.4s ease infinite running bar-anim;
  background-color: #d7000f;
}
#fv .fv-scroll-bar-container:after {
  content: "SCROLL DOWN";
  font-family: "Poppins";
  position: absolute;
  text-align: center;
  color: #d7000f;
  width: 100px;
  height: 30px;
  top: -20px;
  left: -50px;
  z-index: 10;
}

@keyframes bar-anim {
  0% {
    height: 0;
  }
  45% {
    height: 100%;
  }
  55% {
    height: 100%;
    top: 0;
  }
  100% {
    height: 0;
    top: 100%;
  }
}/*# sourceMappingURL=fv.css.map */