div.realisations {
  overflow: visible;
}
div.realisations div.swiper-wrapper div.realisation {
  display: flex;
  flex-direction: column;
  align-items: start;
}
div.realisations div.swiper-wrapper div.realisation div.head {
  width: 100%;
  position: relative;
  z-index: 1;
}
div.realisations div.swiper-wrapper div.realisation div.head:before {
  content: "";
  pointer-events: none;
  position: absolute;
  bottom: 0;
  left: 0;
  border-bottom: 186px solid var(--e-global-color-primary);
  border-right: 132px solid transparent;
  mix-blend-mode: multiply;
  z-index: 1;
}
div.realisations div.swiper-wrapper div.realisation div.head:after {
  content: "";
  pointer-events: none;
  position: absolute;
  top: -20px;
  right: 0;
  border-top: 186px solid var(--e-global-color-primary);
  border-left: 132px solid transparent;
  mix-blend-mode: multiply;
  z-index: 1;
}
div.realisations div.swiper-wrapper div.realisation div.head div.img-sizer {
  position: relative;
  padding-bottom: 100%;
  overflow: hidden;
}
div.realisations div.swiper-wrapper div.realisation div.head div.img-sizer:hover img {
  transform: scale(1.1);
}
div.realisations div.swiper-wrapper div.realisation div.head div.img-sizer img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.3s ease-out;
}
div.realisations div.swiper-wrapper div.realisation div.content {
  flex: 1;
  background-color: white;
  padding: 20px 20px 30px;
}
div.realisations div.swiper-wrapper div.realisation div.content span {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: rgba(46, 20, 0, 0.55);
  text-transform: uppercase;
  margin: 10px 0;
}
div.realisations div.swiper-wrapper div.realisation div.content h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--e-global-color-primary);
  margin: 0 0 10px;
  line-height: 1.25;
}
div.realisations div.swiper-wrapper div.realisation div.content h3 a {
  font-size: 20px;
  font-weight: 700;
  color: var(--e-global-color-primary);
}
div.realisations div.swiper-wrapper div.realisation div.content > a {
  color: var(--e-global-color-primary);
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  transition: 0.3s ease-out;
}
div.realisations div.swiper-wrapper div.realisation div.content > a:hover {
  color: var(--e-global-color-secondary);
}
div.realisations div.thumb {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 20px;
  background-color: var(--e-global-color-primary);
  border-radius: 50px;
  padding: 10px 30px;
  transition: 0.3s ease-out;
}
div.realisations div.thumb span {
  color: white;
  font-size: 16px;
}
div.realisations div.thumb.hidden {
  transform: translateX(-50%) translateY(100%);
  opacity: 0;
}
