.block--image_button {
  display: inline-flex;
  flex-direction: row;
  cursor: pointer;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
  padding-right: 30px;
  margin: 30px 0px 15px 0px !important;
  background-color: #fff;
  color: black;
  align-items: stretch;
  text-decoration: none;
  min-height: unset;
  justify-content: space-between;
  border-radius: 8px;
  overflow: hidden;
  --hover-color: var(--primary);
}
.block--image_button:hover::after {
  color: white;
  transform: translateX(10px);
}
.block--image_button::after {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
  color: black;
  font-family: "Font Awesome 5 Free Solid";
  font-size: 26px;
  width: 22px;
  height: 22px;
  content: "\f061";
  transition-duration: 0.6s;
}
.block--image_button .image {
  position: relative;
  width: 150px;
  padding: 8px;
  background-color: var(--background-color);
}
.block--image_button .image.no_bg_attr {
  padding: 0;
}
.block--image_button .image.no_bg_attr img {
  object-fit: cover;
}
.block--image_button .image img {
  height: 100%;
  width: 100%;
  top: 0px;
  bottom: 0px;
  left: 0px;
  right: 0;
  object-fit: contain;
}
.block--image_button .text {
  width: 100%;
  text-transform: uppercase;
  font-weight: 700;
  margin: auto 25px;
}
.button-fill_frame::before {
  background-color: var(--hover-color);
}
.title_wrapper .block--image_button {
  color: black !important;
}
