.promo-fibulle {
  background-color: #264554;
  width: 100%;
  padding: 3rem;
}
.promo-fibulle h2 {
  color: white;
}
.promo-fibulle-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 2rem;
}
.promo {
  display: flex;
  height: 300px;
  align-items: end;
  justify-content: center;
  position: relative;
  width: 100%;
  height: 300px;
  overflow: hidden;
  z-index: 10;
  color: white;
}
.promo::after {
  content: "PROMO";
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  top: 1rem;
  left: 1rem;
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  border: 1px solid white;
  background-color: #f18667;
  transform: rotate(-20deg);
}
.promo figcaption {
  width: 100%;
  height: 5rem;
  padding: 1rem;
  background-color: rgba(38, 69, 84, 0.7);
}
.promo img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  z-index: -1;
}

@media all and (max-width: 1080px) {
  .promo-fibulle-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 2rem;
  }
  .promo {
    display: flex;
    align-items: end;
    justify-content: center;
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
    z-index: 10;
    color: white;
  }
}
