.offer-item {
  transition: all ease 150ms;
}
.offer-item__wrapper {
  position: relative;
}
.offer-item__image {
  position: relative;
  width: fit-content;
}
.offer-item__image::before {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: #00000036;
  display: block;
  z-index: 1;
  content: '';
  transition: all ease 150ms;
}
.offer-item__content {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 18px 38px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 2;
}
.offer-item__subtitle {
  padding: 6px 9px;
  background-color: white;
  color: var(--brand-primary-color);
  text-transform: uppercase;
  font-size: 14px;
  line-height: 120%;
  transition: all ease 150ms;
  width: fit-content;
}
.offer-item__title {
  color: white;
  font-size: 23px;
  line-height: 120%;
  font-weight: 400;
}
.offer-item:hover .offer-item__subtitle {
  color: white;
  background-color: var(--brand-primary-color);;
}
.offer-item:hover .offer-item__image::before {
    background: #0000009a;

}