.page-container,
.field--name-field-block .paragraph--type--richtext {
  width: 1200px;
  margin: auto;
}

.fade-in-centre {
  color: rgba(76, 85, 98, 1);
  text-align: center;
  font-weight: 400;
  font-style: normal;
  font-family: 'Oxygen', Arial, Helvetica, 'Nimbus Sans L', sans-serif;
  font-size: 32px;
  line-height: 40px;
  text-transform: none;
  text-decoration: none;
  opacity: 0;
  transform: scale(0.5);
  transform-origin: center;
  transition: opacity 1s ease, transform 1s ease;
  margin: 0 0 50px 0;
}

.fade-in-centre.animate {
  opacity: 1;
  transform: scale(1);
}

.fade-in-droite {
  font-family: 'Oxygen';
  text-align: left;
  font-weight: 400;
  font-style: normal;
  margin-top: 0px;
  margin-bottom: 20px;
  color: rgba(76, 85, 98, 1);
  font-size: 32px;
  line-height: 40px;
  opacity: 0;
}

.fade-in-droite.animate {
  animation: textFadeDroite 2s ease-in-out forwards;
}

.masquable {
  position: relative;
  border: 1px solid #aed957;
  background-color: #fbfdf6;
  padding: 20px;
  display: flex;
  transition: opacity 0.5s ease;
  margin-bottom: 50px;
}

.masquable-icon {
  margin-right: 20px;
}

.masquable-text {
  color: rgba(120, 114, 124, 1);
  font-family: Verdana, Geneva, 'DejaVu Sans', sans-serif;
  font-size: 13px;
  line-height: 20px;
  font-weight: 400;
  font-style: normal;
}

.masquable-text p {
  margin: 0;
}

.masquable-close {
  content: '';
  position: absolute;
  top: -10px;
  right: -10px;
  background-color: white;
  border: 1px solid rgba(229, 232, 236, 1);
  border-radius: 50%;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 384 512"><path fill="%23000000" d="M376.6 84.5c11.3-13.6 9.5-33.8-4.1-45.1s-33.8-9.5-45.1 4.1L192 206 56.6 43.5C45.3 29.9 25.1 28.1 11.5 39.4S-3.9 70.9 7.4 84.5L150.3 256 7.4 427.5c-11.3 13.6-9.5 33.8 4.1 45.1s33.8 9.5 45.1-4.1L192 306 327.4 468.5c11.3 13.6 31.5 15.4 45.1 4.1s15.4-31.5 4.1-45.1L233.7 256 376.6 84.5z"/></svg>');
  background-size: 12px 12px;
  background-repeat: no-repeat;
  background-position: center;
  transition: transform 0.3s ease-in-out, background-image 0.3s ease;
}

.masquable-close:hover {
  background-image: url('data:image/svg+xml;utf8,%3Csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 384 512"%3E%3C!--!Font Awesome Free 6.6.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2024 Fonticons, Inc.--%3E%3Cpath fill="%23dd0000" d="M376.6 84.5c11.3-13.6 9.5-33.8-4.1-45.1s-33.8-9.5-45.1 4.1L192 206 56.6 43.5C45.3 29.9 25.1 28.1 11.5 39.4S-3.9 70.9 7.4 84.5L150.3 256 7.4 427.5c-11.3 13.6-9.5 33.8 4.1 45.1s33.8 9.5 45.1-4.1L192 306 327.4 468.5c11.3 13.6 31.5 15.4 45.1 4.1s15.4-31.5 4.1-45.1L233.7 256 376.6 84.5z"%3E%3C/path%3E%3C/svg%3E');
  transform: scale(1.2);
}


.field--name-field-block .paragraph--type--richtext {
  color: var(--secondary-color--text-cdc)!important;
  font-family: Verdana, Geneva, 'DejaVu Sans', sans-serif;
  font-size: 13px;
  line-height: 20px;
  font-weight: 400;
  font-style: normal;
}

.field--name-field-block .paragraph--type--richtext a {
  transition: color .3s ease-in-out;
  color: rgba(88, 207, 144, 1);
  font-family: 'Oxygen', Arial, Helvetica, 'Nimbus Sans L', sans-serif;
  font-weight: 500;
  font-style: normal;
  text-transform: none;
}

.field--name-field-block .paragraph--type--richtext a:hover {
  color: #CBD0DC;
  text-decoration: none;
}

.field--name-field-block .paragraph--type--richtext h2 {
  font-family: 'Oxygen', Arial, Helvetica, 'Nimbus Sans L', sans-serif;
  font-size: 22px;
  line-height: 34px;
  font-weight: 300;
  font-style: normal;
  text-transform: none;
  text-decoration: none;
}

@keyframes textFadeDroite {
  0% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    -ms-transform: translateX(2000px);
    transform: translateX(2000px);
  }

  60% {
    opacity: 1;
    -webkit-transform: translateX(-30px);
    -ms-transform: translateX(-30px);
    transform: translateX(-30px);
  }

  80% {
    -webkit-transform: translateX(10px);
    -ms-transform: translateX(10px);
    transform: translateX(10px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes fadeInScale {
  0% {
    opacity: 0;
    transform: scale(0.5);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
@media (max-width: 1440px) {
  .page-container,
  .field--name-field-block .paragraph--type--richtext {
    width: 980px;
    padding: 0 20px;
  }
}

@media (max-width: 768px) {
  .page-container,
  .field--name-field-block .paragraph--type--richtext {
    width: 100%;
    padding: 0 20px;
  }
}


