section.block.block-contenu-et-image.background-light {
  background-color: #F7FAFB;
}
section.block.block-contenu-et-image.background-primary {
  background-color: var(--primary);
}
section.block.block-contenu-et-image.background-secondary {
  background-color: var(--secondary);
}
section.block.block-contenu-et-image.orientation-right .container {
  flex-direction: row-reverse;
}
@media screen and (max-width: 950px) {
  section.block.block-contenu-et-image.orientation-right .container {
    flex-direction: column;
  }
}
section.block.block-contenu-et-image .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 950px) {
  section.block.block-contenu-et-image .container {
    flex-direction: column;
    gap: 40px;
  }
}
section.block.block-contenu-et-image .container .content {
  width: var(--col-4);
}
@media screen and (max-width: 950px) {
  section.block.block-contenu-et-image .container .content {
    width: 100%;
  }
}
section.block.block-contenu-et-image .container .image {
  width: var(--col-7);
  position: relative;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 950px) {
  section.block.block-contenu-et-image .container .image {
    width: 100%;
    height: auto;
  }
}
section.block.block-contenu-et-image .container .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
section.block.block-contenu-et-image .container .image .image-secondary {
  width: 30%;
  position: absolute;
  top: 10px;
  left: -25px;
}
@media screen and (max-width: 1150px) {
  section.block.block-contenu-et-image .container .image .image-secondary {
    top: 70px;
  }
}
@media screen and (max-width: 950px) {
  section.block.block-contenu-et-image .container .image .image-secondary {
    width: 150px;
    top: -15px;
    left: -15px;
  }
}
@media screen and (max-width: 550px) {
  section.block.block-contenu-et-image .container .image .image-secondary {
    width: 150px;
    top: -15px;
  }
}
section.block.block-contenu-et-image .container .image .image-secondary img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}