.reb {
  position: relative;
  overflow: hidden;
}
.reb h2 {
  font-size: 2.625rem;
  font-weight: 400;
  text-align: center;
  margin-bottom: 2.5rem;
}
@media (min-width: 768px) {
  .reb h2 {
    font-size: 3.25rem;
  }
}
.reb-box {
  max-width: 59.5625rem;
  margin: 0 auto;
  row-gap: 3.5rem;
}
@media (min-width: 992px) {
  .reb-box {
    --bs-gutter-x: 4.5rem;
  }
}
.reb-box-item {
  position: relative;
}
.reb-box-item-img {
  display: block;
  position: relative;
  background-color: rgb(246, 246, 246);
  padding: 3.75rem 2.5rem;
  margin-bottom: 2.8125rem;
}
@media (min-width: 992px) {
  .reb-box-item-img {
    padding: 5.3125rem 3.125rem;
  }
}
.reb-box-item-img-thumb {
  position: relative;
  overflow: hidden;
  padding-top: 105.844155844%;
}
.reb-box-item-img-thumb img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 6s ease;
}
.reb-box-item-link {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  gap: 0.125rem;
  font-size: 1.125rem;
  color: var(--black);
  margin-left: 1.875rem;
  transition: all 0.3s ease;
}
.reb-box-item-link span {
  font-weight: 400;
  font-size: 1rem;
  color: rgb(127, 127, 127);
}
.reb-box-item:hover .reb-box-item-img img {
  transform: scale(1.1);
}
.reb-box-item:hover .reb-box-item-link {
  color: var(--orange);
}
.reb-box-item:hover .reb-box-item-link span {
  color: rgb(127, 127, 127);
}