@charset "UTF-8";
/**
 * Bootstrap 5.3 – Variabili SCSS di base
 * @see https://getbootstrap.com/docs/5.3/customize/sass/
 */
/* ----------------------------------------------------------
 * SPACING
 * ---------------------------------------------------------- */
/* ----------------------------------------------------------
 * COLOR SYSTEM
 * ---------------------------------------------------------- */
/* ----------------------------------------------------------
 * BODY
 * ---------------------------------------------------------- */
/* ----------------------------------------------------------
 * TYPOGRAPHY
 * ---------------------------------------------------------- */
/* ----------------------------------------------------------
 * LINK
 * ---------------------------------------------------------- */
/* ----------------------------------------------------------
 * BUTTONS
 * ---------------------------------------------------------- */
/* ----------------------------------------------------------
 * BORDER RADIUS
 * ---------------------------------------------------------- */
/* ----------------------------------------------------------
 * ACCORDION
 * ---------------------------------------------------------- */
/* ----------------------------------------------------------
 * TABS
 * ---------------------------------------------------------- */
.block_cards-feature .main-card,
.block_cards-feature .side-card {
  overflow: hidden;
  position: relative;
  text-decoration: none;
}
.block_cards-feature .main-card .content-card,
.block_cards-feature .side-card .content-card {
  position: relative;
  z-index: 10;
}
.block_cards-feature .main-card:after,
.block_cards-feature .side-card:after {
  content: "";
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 25.92%, rgba(0, 0, 0, 0.7) 100%);
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
}
.block_cards-feature .main-card::before,
.block_cards-feature .side-card::before {
  content: "";
  background-image: inherit;
  background-size: cover;
  background-position: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  transition: transform 0.5s ease;
}
.block_cards-feature .main-card:hover::before,
.block_cards-feature .side-card:hover::before {
  transform: scale(1.1);
}