.fv {
  width: 100%;
  height: 36rem;
  position: relative;
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .fv {
    height: 23rem;
  }
}
@media screen and (max-width: 767px) {
  .fv {
    height: 18rem;
  }
}
.fv .fv__image,
.fv .fv__text {
  height: inherit;
}
.fv .fv__text {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  content: "";
  width: 100%;
  height: auto;
}
.fv .fv__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}