@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__text_image .wrap-img {
  height: 100%;
  width: 100%;
  position: relative;
}
.block__text_image .wrap-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.block__text_image .wrap-img .square-blue,
.block__text_image .wrap-img .square-red {
  width: 80px;
  height: 80px;
  position: absolute;
  z-index: 1;
  will-change: transform;
}
@media (min-width: 576px) {
  .block__text_image .wrap-img .square-blue,
  .block__text_image .wrap-img .square-red {
    width: 100px;
    height: 100px;
  }
}
.block__text_image .wrap-img .square-blue {
  background-color: #20375d;
  left: 0;
  bottom: 0;
}
.block__text_image .wrap-img .square-red {
  background-color: #fa5947;
  top: 0;
  right: 0;
}