.banner-report {
  background-image: url('../assets/img/lazyload/bg-report-lazy.jpg');
}
.banner-report.loaded {
  background-image: url('../assets/img/bg-report.jpeg');
}
.report {
  padding-bottom: 140px;
}
.report p {
  color: #595566;
  font-size: 16px;
  font-weight: 400;
  line-height: 23.6px;
}
.report__text {
  max-width: 855px;
  margin-bottom: 60px;
}
.report__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 22px 75px;
  padding: 65px 0;
  background: #F5F5F5;
  border-radius: 30px;
}
.report__item {
  padding: 0 23px;
  max-width: 401px;
  width: 100%;
  height: 100px;
  font-size: 18px;
  font-weight: 500;
  line-height: 25.2px;
  text-decoration: none;
  opacity: 50%;
}
.report__item:hover {
  box-shadow:
    0px 7px 15px 0px rgba(0, 0, 0, 0.03),
    0px 28px 28px 0px rgba(0, 0, 0, 0.03),
    0px 63px 38px 0px rgba(0, 0, 0, 0.02),
    0px 112px 45px 0px rgba(0, 0, 0, 0),
    0px 175px 49px 0px rgba(0, 0, 0, 0);
  border-radius: 2000px;
  opacity: 100%;
}
.report__item-wrap {
  border-bottom: 1px solid #D5D5D5;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  height: 100%;
  width: 100%;
}
.report__item:hover .report__item-wrap {
  border-color: transparent;
}
.report__year {
  color: #BF0C10;
}
.report__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  min-width: 48px;
  height: 48px;
  background: #BF0C10;
  transition: transform 0.1s linear;
}
.report__item:hover .report__icon {
  transform: scale(1.2);
}
@media (max-width: 1024px) {
  .report {
    padding-bottom: 70px;
  }
}
@media (max-width: 560px) {
  .report {
    padding-bottom: 30px;
  }
  .report__list {
    padding: 20px 0;
  }
  .report__item {
    height: auto;
  }
  .report__item:hover {
    box-shadow: none;
    border-radius: 0;
    opacity: 100%;
  }
  .report__item-wrap {
    padding-bottom: 20px;
  }
  .report__item:hover .report__item-wrap {
    border-color: #D5D5D5;
  }
}