@charset "UTF-8";
/* ---------------------------------------------------------------------------------------------------------- */
/* ---------------------------------------------------------------------------------------------------------- */
/* ICON BOX */
/* ---------------------------------------------------------------------------------------------------------- */
/* ---------------------------------------------------------------------------------------------------------- */
/* ----------------------------------------------------- */
/* ----------------------------------------------------- */
/* VARIABLES */
/* ----------------------------------------------------- */
/* ----------------------------------------------------- */
/* ----------------------------------------------------- */
/* Couleurs */
/* ----------------------------------------------------- */
/* Spécifiques au site */
/* ----------------------------------------------------- */
/* gris moyen fonce */
/* gris moyen */
/* gris clair */
/* Nuances de gris */
/* ----------------------------------------------------- */
/* Correspondances couleurs -> texte */
/* ----------------------------------------------------- */
/* ----------------------------------------------------- */
/* FONTS */
/* ----------------------------------------------------- */
/* ----------------------------------------------------- */
/* FONT-SIZES */
/* ----------------------------------------------------- */
/* ----------------------------------------------------- */
/* TRANSITIONS */
/* ----------------------------------------------------- */
/* ---------------------------------------------------------------------------------------------------------- */
/* BOX SHADOW */
/* ---------------------------------------------------------------------------------------------------------- */
/* ----------------------------------------------------- */
/* BASES PADDING & MARGIN */
/* ----------------------------------------------------- */
/* ----------------------------------------------------- */
/* BORDER RADIUS */
/* ----------------------------------------------------- */
/* ---------------------------------------------------------------------------------------------------------- */
/* SCREENS */
/* ---------------------------------------------------------------------------------------------------------- */
/* ----------------------------------------------------- */
/* ADMIN */
/* ----------------------------------------------------- */
/* ---------------------------------------------------------------------------------------------------------- */
/* PATHS */
/* ---------------------------------------------------------------------------------------------------------- */
/* ----------------------------------------------------- */
/* ----------------------------------------------------- */
/* MIXIN.SCSS */
/* ----------------------------------------------------- */
/* ----------------------------------------------------- */
/* ----------------------------------------------------- */
/* FONT FACE */
/* ----------------------------------------------------- */
/* ----------------------------------------------------- */
/* KEYFRAMES */
/* ----------------------------------------------------- */
/* ----------------------------------------------------- */
/* CENTRE UNE IMAGE */
/* ----------------------------------------------------- */
/* ----------------------------------------------------- */
/* CENTRE UN ELEMENT */
/* ----------------------------------------------------- */
/* ----------------------------------------------------- */
/* CENTRE UN BACKGROUND QUAND ON LE MET EN INLINE */
/* ----------------------------------------------------- */
/* ----------------------------------------------------- */
/* TRIANGLES */
/* ----------------------------------------------------- */
/* ----------------------------------------------------- */
/* Display flex */
/* ----------------------------------------------------- */
/* ----------------------------------------------------- */
/* Object Fit */
/* ----------------------------------------------------- */
/* ----------------------------------------------------- */
/* ----------------------------------------------------- */
/* FONCTIONS */
/* ----------------------------------------------------- */
/* ----------------------------------------------------- */
/* ----------------------------------------------------- */
/* CONVERSION PX -> EM */
/* ----------------------------------------------------- */
/* ----------------------------------------------------- */
/* CONVERSION PX -> REM */
/* ----------------------------------------------------- */
/* ----------------------------------------------------- */
/* CONVERSION PX -> % */
/* ----------------------------------------------------- */
.icon-box {
  /* ---------------------------------------------------------------------------------------------------------- */
  /* BOITE CARREE */
  /* ---------------------------------------------------------------------------------------------------------- */
  /* ---------------------------------------------------------------------------------------------------------- */
  /* ICONE SEULE */
  /* ---------------------------------------------------------------------------------------------------------- */
}
.icon-box.icon-box-square {
  position: relative;
  width: 100%;
  height: 0;
  padding-top: 100%;
}
.icon-box.icon-box-square .icon-box__content {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 0rem;
}
.icon-box.icon-box-square .icon-box__content > a {
  text-decoration: none;
}
.icon-box.icon-box-square .icon-box__icon {
  --icon-size: 2.5rem;
}
.icon-box.icon-box-square .icon-box__title {
  font-size: 1rem;
  margin-bottom: 0;
  white-space: nowrap;
  line-height: normal;
}
.icon-box.icon-box-square.icon-box-big .icon-box__icon {
  --icon-size: 4rem;
}
.icon-box.icon-box-square.icon-box-big .icon-box__title {
  font-size: 1.25rem;
  line-height: 1.25;
}
.editor-styles-wrapper .icon-box.icon-box-square {
  padding-top: 0;
  height: auto;
}
.editor-styles-wrapper .icon-box.icon-box-square .icon-box__content {
  position: relative;
}
.icon-box.icon-box-icon {
  --padding: 1rem;
  --iconsize: 4rem;
  text-align: center;
}
.icon-box.icon-box-icon .icon-box__content {
  padding: var(--padding);
}
.icon-box.icon-box-icon .icon-box__icon {
  display: inline-block;
  margin-bottom: 0;
  --icon-size: var(--iconsize);
  background-color: var(--icon-bgcolor);
  padding: calc(var(--icon-size) / 2);
  border-radius: 100rem;
}
.icon-box.icon-box-icon .icon-box__title {
  display: none;
}

/* ----------------------------------------------------- */
/* ----------------------------------------------------- */
/* -------------------- RESPONSIVE --------------------- */
/* ----------------------------------------------------- */
/* ----------------------------------------------------- */
/* ----------------------------------------------------- */
/* XS */
/* ----------------------------------------------------- */
@media (min-width: 576px) {
  .icon-box.icon-box-square .icon-box__icon {
    --icon-size: 5rem;
  }
  .icon-box.icon-box-square .icon-box__title {
    font-size: 1.25rem;
  }
  .icon-box.icon-box-square.icon-box-big .icon-box__icon {
    --icon-size: 6rem;
  }
}
/* ----------------------------------------------------- */
/* SM */
/* ----------------------------------------------------- */
/* ----------------------------------------------------- */
/* MD */
/* ----------------------------------------------------- */
@media (min-width: 992px) {
  .icon-box__content {
    padding: 2rem 1rem;
  }
  .icon-box__title {
    font-size: 1.125rem;
  }
}
/* ----------------------------------------------------- */
/* LG */
/* ----------------------------------------------------- */
@media (min-width: 1200px) {
  .icon-box {
    position: relative;
    overflow: hidden;
  }
  .icon-box__content {
    transition: var(--trans);
    position: relative;
    overflow: hidden;
  }
  .icon-box.icon-box-square:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgb(0, 0, 0);
    background: linear-gradient(45deg, rgba(0, 0, 0, 0.25) 0%, rgba(255, 255, 255, 0) 100%);
    transition: var(--trans);
    transform: translate(-100%, 100%);
  }
  .icon-box.icon-box-square:hover:before {
    transform: translate(0%, 0%);
  }
  .icon-box.icon-box-square:hover .icon-box__content {
    transform: translate(-50%, -50%) scale(1.1);
  }
}
/* ----------------------------------------------------- */
/* XL */
/* ----------------------------------------------------- */
/* ----------------------------------------------------- */
/* XXL */
/* ----------------------------------------------------- */
/* ----------------------------------------------------- */
/* HOVER */
/* ----------------------------------------------------- *//*# sourceMappingURL=style.css.map */