@import "blog-card.css";

.wrapper {
  overflow: auto;
  background-repeat: no-repeat;
  background-position: fit;
  background-size: cover;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  object-fit: cover;
  width: 100%;
  height: 60vh;
  background-image: linear-gradient(
      0deg,
      rgba(0, 0, 0, 0.2) 0%,
      rgba(0, 0, 0, 0.2) 100%
    ),
    url("../assets/images/report-bg-img.jpeg");
}
.overview {
  margin-bottom: 3rem;
  margin-top: 2rem;
}
.overview .title {
  color: #000;
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 700;
  line-height: 140%;
  text-align: center;
}
.overview .body {
  margin-top: 0.5rem;
  color: #000;
  font-size: 1rem;
  font-style: normal;
  font-weight: 500;
  line-height: 140%;
  text-align: center;
}
