@charset "UTF-8";
.typologie {
  margin: 40px auto;
  overflow: hidden;
}
@media screen and (min-width: 1024px) {
  .typologie {
    margin: 64px auto;
  }
}
.typologie--container {
  max-width: 1124px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: clamp(24px, 5vw, 56px);
}
.typologie--heading {
  max-width: 713px;
  width: 100%;
  margin: auto;
}
.typologie--heading .uptitle {
  margin-bottom: 24px;
  text-align: center;
}
.typologie--heading h2 {
  text-align: center;
  color: var(--violet);
}
.typologie--slider {
  width: 100%;
  overflow: visible;
}
.typologie--wrapper {
  align-items: stretch;
}
.typologie--item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  height: 180px;
  padding: 40px;
  border-radius: 30px;
  background-color: var(--violet);
  color: #fff;
  text-align: center;
}
.typologie--item::before {
  content: "";
  display: block;
  width: 62px;
  height: 65px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
.typologie--item span {
  font-size: clamp(15px, 2vw, 20px);
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}
.typologie {
  /* =========================================================
     PICTOS
     ========================================================= */
}
.typologie--item-valise::before {
  background-image: url("../images/valise.svg");
}
.typologie--item-reseau::before {
  background-image: url("../images/reseau.svg");
}
.typologie--item-cube::before {
  background-image: url("../images/cube.svg");
}
.typologie--item-maison::before {
  background-image: url("../images/maison.svg");
}
.typologie--item-immeuble::before {
  background-image: url("../images/Immeuble.svg");
}
.typologie--navigation {
  display: flex;
}
@media screen and (min-width: 1024px) {
  .typologie--navigation {
    display: none;
  }
}
.typologie {
  /* =========================================================
     DESKTOP
     ========================================================= */
}
@media screen and (min-width: 1024px) {
  .typologie--container {
    padding: 0 24px;
  }
  .typologie--slider {
    overflow: visible;
  }
  .typologie--wrapper {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 24px;
    transform: none !important;
  }
  .typologie--item {
    width: auto !important;
    height: 180px;
  }
}
