/* entry: page-homepage */
@keyframes arrow-spring {
  20% {
    transform: translateX(0%);
  }
  40% {
    transform: translateX(15%);
  }
  60% {
    transform: translateX(0%);
  }
  80% {
    transform: translateX(7%);
  }
  90% {
    transform: translateX(0%);
  }
  95% {
    transform: translateX(3%);
  }
  100% {
    transform: translateX(0);
  }
}
.js--reveal,
.js--reveal-staggered {
  opacity: 0;
  transform: translateY(30px) translateX(0);
  transition: opacity 0.9s ease-out, transform 0.9s ease-out;
}
.js--reveal.is-revealed,
.js--reveal-staggered.is-revealed {
  opacity: 1;
  transform: translateY(0) translateX(0);
}

body.wp-admin .js--reveal,
body.wp-admin .js--reveal-staggered {
  opacity: 1 !important;
  transform: none !important;
  transition: none !important;
}

@media (prefers-reduced-motion: reduce) {
  .js--reveal,
  .js--reveal-staggered {
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}
.animations-disabled .js--reveal,
.animations-disabled .js--reveal-staggered {
  opacity: 1 !important;
  transform: none !important;
  transition: none !important;
}

.js--reveal,
.js--reveal-staggered {
  opacity: 0;
  transform: translateY(30px) translateX(0);
  transition: opacity 0.9s ease-out, transform 0.9s ease-out;
}
.js--reveal.is-revealed,
.js--reveal-staggered.is-revealed {
  opacity: 1;
  transform: translateY(0) translateX(0);
}
@media (prefers-reduced-motion: reduce) {
  .js--reveal,
  .js--reveal-staggered {
    transition: none;
    animation: none;
  }
  .js--reveal.is-revealed,
  .js--reveal-staggered.is-revealed {
    opacity: 1;
    transform: none;
  }
}

.animations-disabled .js--reveal,
.animations-disabled .js--reveal-staggered {
  opacity: 1 !important;
  transform: none !important;
  transition: none !important;
}

/* entry: page-homepage */
.services__list {
  z-index: 1;
  display: flex;
  position: relative;
  list-style: none;
  margin-block-end: 17.5rem;
}
@media only screen and (max-width: 1023px) {
  .services__list {
    padding-block: 2rem;
    display: grid;
    justify-content: center;
    width: fit-content;
    margin-inline: auto;
  }
  .services__list .service-item-wrapper {
    grid-area: 1/1/2/2;
    pointer-events: auto;
  }
  .services__list .service-item {
    pointer-events: auto;
  }
}
@media only screen and (min-width: 1024px) {
  .services__list {
    width: fit-content;
    margin: 0 auto 80px;
    transform: translate(clamp(50px, 50px + (100vw - 1024px) * 0.2272727273, 90px), 70px);
  }
}
@media only screen and (min-width: 1200px) {
  .services__list {
    transform: translate(120px, 70px);
    margin-bottom: 0;
  }
}
@media only screen and (min-width: 1440px) {
  .services__list {
    transform: translate(120px, 180px);
  }
}
.services__list .service-item-wrapper {
  position: relative;
  display: block;
  width: 280px;
  height: 400px;
  transform-origin: bottom center;
  cursor: pointer;
}
.services__list .service-item {
  position: relative;
  display: grid;
  overflow: hidden;
  isolation: isolate;
  width: 280px;
  height: 400px;
  border: 1px solid #C03E53;
  border-radius: 16px;
  padding: 2rem;
  background: #FFFFFF;
  text-align: left;
  cursor: pointer;
}
@media only screen and (min-width: 1024px) {
  .services__list .service-item {
    transition: all ease-in-out 0.3s;
  }
}
.services__list .service-item:before {
  position: absolute;
  z-index: 0;
  content: "";
  bottom: 2rem;
  left: 2rem;
  width: calc(100% - 4rem);
  height: 215px;
  border-radius: 16px;
  background-color: #FAE9E9;
  transition: all 0.6s ease-in-out;
}
.services__list .service-item__header {
  z-index: 1;
  grid-area: 1/1/2/2;
  display: flex;
  flex-direction: column;
}
.services__list .service-item__link {
  text-decoration: none;
  color: inherit;
}
.services__list .service-item__title {
  font-size: 0.875rem;
  letter-spacing: 1px;
  color: #C03E53;
  font-weight: 500;
}
.services__list .service-item__title .main-word {
  display: block;
  font-size: 1.9375rem;
  font-weight: 700;
  color: #8E2E3E;
  letter-spacing: -1px;
}
.services__list .service-item__front {
  grid-area: 2/1/3/2;
  display: flex;
  align-items: end;
  height: 100%;
  opacity: 1;
  overflow-y: clip;
  transition: height 0.5s ease-in-out, opacity 0.3s ease-in-out;
}
.services__list .service-item__icon {
  width: 170px;
  height: 170px;
  transform: translate(-20px, -20px);
}
.services__list .service-item__back {
  z-index: 1;
  overflow: hidden;
  grid-area: 2/1/3/2;
  height: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin-top: 250px;
  opacity: 0;
  transition: height 0.5s ease-in-out, margin-top 0.5s ease-in-out, opacity 0.7s ease-in-out;
}
.services__list .service-item__description {
  font-size: 0.95rem;
  color: #4B3235;
}
.services__list .service-item__arrow {
  max-width: 63px;
  align-self: flex-end;
  margin-top: auto;
  color: #C03E53;
}
.services__list .service-item:not(:disabled):hover:before, .services__list .service-item:not(:disabled):focus:before, .services__list .service-item:not(:disabled):active:before {
  width: 100%;
  height: 100%;
  max-height: unset;
  bottom: 0;
  left: 0;
}
.services__list .service-item:not(:disabled):hover .service-item__front, .services__list .service-item:not(:disabled):focus .service-item__front, .services__list .service-item:not(:disabled):active .service-item__front {
  height: 0;
  opacity: 0;
}
.services__list .service-item:not(:disabled):hover .service-item__back, .services__list .service-item:not(:disabled):focus .service-item__back, .services__list .service-item:not(:disabled):active .service-item__back {
  height: 100%;
  margin-top: 0;
  opacity: 1;
}
.services__list .service-item-wrapper:is(:hover, :focus-within) .service-item:before {
  width: 100%;
  height: 100%;
  max-height: unset;
  bottom: 0;
  left: 0;
}
.services__list .service-item-wrapper:is(:hover, :focus-within) .service-item .service-item__front {
  height: 0;
  opacity: 0;
}
.services__list .service-item-wrapper:is(:hover, :focus-within) .service-item .service-item__back {
  height: 100%;
  margin-top: 0;
  opacity: 1;
}
@media only screen and (min-width: 1024px) {
  .services__list .service-item-wrapper:nth-child(1) {
    transform: translate(0, 5px) rotate(-10deg);
    z-index: 1;
  }
  .services__list .service-item-wrapper:nth-child(2) {
    transform: translate(-70px, -50px) rotate(-3.333deg);
    z-index: 2;
  }
  .services__list .service-item-wrapper:nth-child(3) {
    transform: translate(-140px, -50px) rotate(3.333deg);
    z-index: 3;
  }
  .services__list .service-item-wrapper:nth-child(4) {
    transform: translate(-210px, 5px) rotate(10deg);
    z-index: 4;
  }
  .services__list:has(.service-item-wrapper:nth-child(1):is(:hover, :focus-within)) .service-item-wrapper:nth-child(1) {
    z-index: 10;
  }
  .services__list:has(.service-item-wrapper:nth-child(1):is(:hover, :focus-within)) .service-item-wrapper:nth-child(1) .service-item {
    transform: translate(-30px, -115px) rotate(0deg) scale(1.05);
  }
  .services__list:has(.service-item-wrapper:nth-child(1):is(:hover, :focus-within)) .service-item-wrapper:nth-child(2) .service-item {
    transform: translate(40px, 5px) rotate(2.333deg);
  }
  .services__list:has(.service-item-wrapper:nth-child(1):is(:hover, :focus-within)) .service-item-wrapper:nth-child(3) .service-item {
    transform: translate(50px, 10px) rotate(2.667deg);
  }
  .services__list:has(.service-item-wrapper:nth-child(2):is(:hover, :focus-within)) .service-item-wrapper:nth-child(2) {
    z-index: 10;
  }
  .services__list:has(.service-item-wrapper:nth-child(2):is(:hover, :focus-within)) .service-item-wrapper:nth-child(1) .service-item {
    transform: translate(20px, -5px) rotate(-2deg);
  }
  .services__list:has(.service-item-wrapper:nth-child(2):is(:hover, :focus-within)) .service-item-wrapper:nth-child(2) .service-item {
    transform: translate(5px, -70px) rotate(1.333deg) scale(1.05);
  }
  .services__list:has(.service-item-wrapper:nth-child(2):is(:hover, :focus-within)) .service-item-wrapper:nth-child(3) .service-item {
    transform: translate(40px, 15px) rotate(4.667deg);
  }
  .services__list:has(.service-item-wrapper:nth-child(2):is(:hover, :focus-within)) .service-item-wrapper:nth-child(4) .service-item {
    transform: translate(-15px, 0px) rotate(1deg);
  }
  .services__list:has(.service-item-wrapper:nth-child(3):is(:hover, :focus-within)) .service-item-wrapper:nth-child(3) {
    z-index: 10;
  }
  .services__list:has(.service-item-wrapper:nth-child(3):is(:hover, :focus-within)) .service-item-wrapper:nth-child(1) .service-item {
    transform: translate(10px, -5px) rotate(-1deg);
  }
  .services__list:has(.service-item-wrapper:nth-child(3):is(:hover, :focus-within)) .service-item-wrapper:nth-child(2) .service-item {
    transform: translate(-60px, 10px) rotate(-1.667deg);
  }
  .services__list:has(.service-item-wrapper:nth-child(3):is(:hover, :focus-within)) .service-item-wrapper:nth-child(3) .service-item {
    transform: translate(5px, -70px) rotate(-1.333deg) scale(1.05);
  }
  .services__list:has(.service-item-wrapper:nth-child(3):is(:hover, :focus-within)) .service-item-wrapper:nth-child(4) .service-item {
    transform: translate(25px, 5px) rotate(4deg);
  }
  .services__list:has(.service-item-wrapper:nth-child(4):is(:hover, :focus-within)) .service-item-wrapper:nth-child(4) {
    z-index: 10;
  }
  .services__list:has(.service-item-wrapper:nth-child(4):is(:hover, :focus-within)) .service-item-wrapper:nth-child(2) .service-item {
    transform: translate(-40px, 10px) rotate(-0.667deg);
  }
  .services__list:has(.service-item-wrapper:nth-child(4):is(:hover, :focus-within)) .service-item-wrapper:nth-child(3) .service-item {
    transform: translate(-50px, 5px) rotate(-2.333deg);
  }
  .services__list:has(.service-item-wrapper:nth-child(4):is(:hover, :focus-within)) .service-item-wrapper:nth-child(4) .service-item {
    transform: translate(20px, -115px) rotate(-2deg) scale(1.05);
  }
}

/* entry: page-homepage */
.video-overlay {
  z-index: 1;
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  cursor: pointer;
}
.video-overlay:before {
  position: absolute;
  inset: 0;
  content: "";
  background-color: transparent;
  transition: all ease-in-out 0.3s;
}
.video-overlay .icon-player {
  color: #FFFFFF;
  font-size: 75px;
  transition: all ease-in-out 0.3s;
}
@media only screen and (min-width: 768px) {
  .video-overlay .icon-player {
    font-size: 90px;
  }
}
@media only screen and (min-width: 1024px) {
  .video-overlay .icon-player {
    font-size: 120px;
  }
}
.video-overlay:not(:disabled):hover:before, .video-overlay:not(:disabled):focus:before, .video-overlay:not(:disabled):active:before {
  background-color: rgba(192, 62, 83, 0.3);
}
.video-overlay:not(:disabled):hover .icon-player, .video-overlay:not(:disabled):focus .icon-player, .video-overlay:not(:disabled):active .icon-player {
  color: #C03E53;
}

/* entry: page-homepage */
.hero-splash {
  position: fixed;
  z-index: 99;
  inset: 0;
  display: grid;
  place-items: center;
  width: 100vw;
  height: 100vh;
  background: #C03E53;
  transition: opacity 1s ease;
  pointer-events: none;
}
.hero-splash.loaded {
  opacity: 0;
  pointer-events: none;
}
.hero-splash__inner {
  display: flex;
  gap: 3rem;
  align-items: center;
  justify-content: center;
  width: min(1200px, 100%);
  padding: 3rem 20px;
}
@media only screen and (max-width: 1023px) {
  .hero-splash__inner {
    flex-flow: row wrap;
    width: min(400px, 80%);
    gap: 16px;
  }
}
.hero-splash .logo-content,
.hero-splash .illustration {
  flex: 0 0 auto;
  width: 100%;
}
@media only screen and (min-width: 1024px) {
  .hero-splash .logo-content,
  .hero-splash .illustration {
    width: 50%;
  }
}
.hero-splash .logo-content img,
.hero-splash .logo-content picture,
.hero-splash .illustration img,
.hero-splash .illustration picture {
  max-width: 100%;
  height: auto;
}
.hero-splash .logo-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media only screen and (min-width: 1024px) {
  .hero-splash .logo-content {
    gap: 2rem;
  }
}
.hero-splash .logo-content .logo,
.hero-splash .logo-content .slogan {
  color: #D3EBEC;
}
.hero-splash .logo-content svg {
  width: 100%;
  height: auto;
}

.hero {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: end;
  gap: 1.5rem;
  height: max(70vh, 600px);
  padding-block-end: 7rem;
  background-position: 0 30%;
  background-size: cover;
  text-align: center;
}
@media only screen and (min-width: 1024px) {
  .hero {
    margin-block-start: 110px;
    padding-block-end: 10rem;
    height: 80vh;
  }
}
.hero__background {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.hero__background img,
.hero__background picture {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero__title {
  z-index: 1;
  margin: 0 auto;
  max-width: 700px;
  width: 100vw;
  padding-inline-start: max((100vw - calc(100% - 32px)) / 2, 20px);
  padding-inline-end: max((100vw - calc(100% - 32px)) / 2, 20px);
  margin-block: 0 0;
  letter-spacing: -1px;
  font-size: clamp(2.1875rem, 1.25rem + 0.0319 * 100vw, 3.625rem);
  font-weight: 700;
  color: #FFFFFF;
}
.hero__subtitle {
  z-index: 1;
  margin: 0 auto 1.5rem;
  max-width: 700px;
  width: 100vw;
  padding-inline-start: max((100vw - calc(100% - 32px)) / 2, 20px);
  padding-inline-end: max((100vw - calc(100% - 32px)) / 2, 20px);
  color: #FFFFFF;
  font-size: clamp(1rem, 0.9375rem + 0.0028 * 100vw, 1.125rem);
  letter-spacing: 0.01em;
}
.hero__cta {
  z-index: 1;
}
.hero__cta a {
  display: inline-block;
  padding: 0.8125rem 1.25rem;
  border-radius: 99px;
  border: 1px solid #C03E53;
  color: #C03E53;
  background-color: #FFFFFF;
  font-family: "Fredoka", sans-serif;
  font-weight: 700;
  font-size: clamp(1rem, 0.9375rem + 0.0028 * 100vw, 1.125rem);
  letter-spacing: 0.01em;
  transition: all ease-in-out 0.3s;
  background-color: transparent;
  border-color: #FFFFFF;
  color: #FFFFFF;
}
.hero__cta a:not(:disabled):hover, .hero__cta a:not(:disabled):focus, .hero__cta a:not(:disabled):active {
  color: #FFFFFF;
  background-color: #8E2E3E;
}
.hero__cta a:not(:disabled):hover, .hero__cta a:not(:disabled):focus, .hero__cta a:not(:disabled):active {
  color: #C03E53;
  background-color: #FFFFFF;
}
.hero__blur {
  position: absolute;
  z-index: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 70%;
  mask: linear-gradient(360deg, rgb(0, 0, 0) 65.5%, rgba(0, 0, 0, 0) 100%);
  backdrop-filter: blur(6px);
}

.services {
  text-align: center;
  position: relative;
  background: linear-gradient(to bottom, #C03E53 0%, #C03E53 550px, transparent 550px, transparent 100%);
  padding: 0 1rem;
}
@media only screen and (min-width: 1440px) {
  .services {
    text-align: left;
  }
}
.services__illustration {
  z-index: 1;
  text-align: center;
}
@media only screen and (min-width: 1440px) {
  .services__illustration {
    position: absolute;
  }
}
.services__wave {
  width: min(500px, 90%);
  margin-top: -90px;
}
@media only screen and (min-width: 1440px) {
  .services__wave {
    top: -130px;
    left: 50%;
    transform: translateX(-50%);
    margin-top: unset;
    width: 650px;
  }
}
.services__arrow {
  width: min(100px, 20%);
  margin-block: -75px -20px;
  color: #D3EBEC;
  transform: translateX(45vw) rotate(-65deg);
}
@media only screen and (min-width: 768px) {
  .services__arrow {
    margin-block: -60px 0;
  }
}
.services__arrow svg {
  width: 100%;
}
@media only screen and (min-width: 1440px) {
  .services__arrow {
    z-index: 0;
    top: -150px;
    left: 60%;
    width: 200px;
    margin-top: unset;
    transform: rotate(-75deg);
  }
}
.services__container {
  margin: 0 auto;
}
@media only screen and (min-width: 1440px) {
  .services__container {
    display: flex;
    max-width: 1440px;
  }
}
@media only screen and (max-width: 1439px) {
  .services__container {
    position: relative;
  }
  .services__container:before {
    content: "";
    position: absolute;
    top: 0;
    left: -20px;
    width: calc(100% + 40px);
    height: 450px;
    background: #C03E53;
  }
}
.services .services-content {
  max-width: 750px;
  margin: 0 auto;
  text-align: left;
}
.services .services-content *::selection {
  color: #FFFFFF;
  background-color: #758947;
}
@media only screen and (max-width: 1439px) {
  .services .services-content {
    margin-block-end: 2rem;
  }
}
@media only screen and (min-width: 1440px) {
  .services .services-content {
    max-width: 25%;
    padding-block: 5rem;
  }
}
.services .services-content__title {
  position: relative;
  margin-block-end: 1.5rem;
  color: #FFFFFF;
  font-size: clamp(1.9375rem, 1.25rem + 0.0222 * 100vw, 2.9375rem);
  letter-spacing: -1px;
}
.services .services-content__subtitle {
  color: #FAE9E9;
  font-size: clamp(1rem, 0.9375rem + 0.0028 * 100vw, 1.125rem);
  letter-spacing: 0.01em;
}

.demarche {
  position: relative;
  padding-inline: 20px;
}
@media only screen and (max-width: 1023px) {
  .demarche {
    margin-block-start: 3rem;
  }
}
@media only screen and (min-width: 1024px) {
  .demarche {
    padding: 3rem;
  }
}
@media only screen and (min-width: 1440px) {
  .demarche {
    padding-block: 6rem;
  }
}
.demarche__arrow {
  color: #BDD684;
  text-align: center;
  transform: scaleX(-1);
}
.demarche__arrow svg {
  width: min(140px, 25%);
  height: auto;
}
@media only screen and (min-width: 1024px) {
  .demarche__arrow {
    transform: scaleX(-1) translate(-80px, 50px);
  }
}
@media only screen and (min-width: 1440px) {
  .demarche__arrow {
    transform: scaleX(-1) translate(-30px, 20px);
  }
}
.demarche__container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media only screen and (min-width: 1024px) {
  .demarche__container {
    flex-direction: row;
    justify-content: center;
  }
}
.demarche__image {
  position: relative;
  max-width: 750px;
}
@media only screen and (min-width: 1024px) {
  .demarche__image {
    transform: translateY(-80px);
  }
}
.demarche__image img,
.demarche__image picture {
  max-width: 100%;
  width: 100%;
  height: auto;
  margin-block-start: 2rem;
  mask: url("../../images/demarche-mask.svg");
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  object-fit: cover;
}
@media only screen and (min-width: 1024px) {
  .demarche__image img,
  .demarche__image picture {
    max-width: unset;
    margin-block-start: unset;
    width: 540px;
    height: 540px;
    mask-position: right;
  }
}
.demarche__image::before {
  position: absolute;
  z-index: 0;
  content: "";
  bottom: -40px;
  left: -40px;
  width: 100%;
  height: 100%;
  background-image: url("../../images/blob.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
@media only screen and (max-width: 767px) {
  .demarche__image::before {
    height: unset;
    aspect-ratio: 3/2;
    bottom: -20px;
    left: -30px;
  }
}
@media only screen and (min-width: 1024px) {
  .demarche__image::before {
    background-position: right;
  }
}
.demarche-content {
  position: relative;
  margin-block-start: 7rem;
  width: 100%;
}
@media only screen and (max-width: 1023px) {
  .demarche-content {
    margin-inline: auto;
    max-width: 750px;
  }
}
@media only screen and (min-width: 1024px) {
  .demarche-content {
    display: flex;
    flex-direction: column;
    margin-block-start: unset;
  }
}
.demarche-content:before {
  content: "";
  position: absolute;
  z-index: -1;
  opacity: 0.7;
  top: -50px;
  left: -30px;
  width: 100%;
  height: 100%;
  background-image: url("../../images/petits-animaux.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: left;
}
@media only screen and (min-width: 1024px) {
  .demarche-content:before {
    top: 0;
    left: 50px;
  }
}
@media only screen and (min-width: 1024px) {
  .demarche-content__wrapper {
    max-width: 250px;
    margin-left: 120px;
  }
}
.demarche-content__title {
  margin-block-end: 1.5rem;
  color: #C03E53;
  font-size: clamp(1.9375rem, 1.25rem + 0.0222 * 100vw, 2.9375rem);
  letter-spacing: -1px;
}
.demarche-content__subtitle {
  margin-block-end: 2.75rem;
  letter-spacing: 0.01em;
}
.demarche-content__button {
  display: inline-block;
  padding: 0.8125rem 1.25rem;
  border-radius: 99px;
  border: 1px solid #C03E53;
  color: #C03E53;
  background-color: #FFFFFF;
  font-family: "Fredoka", sans-serif;
  font-weight: 700;
  font-size: clamp(1rem, 0.9375rem + 0.0028 * 100vw, 1.125rem);
  letter-spacing: 0.01em;
  transition: all ease-in-out 0.3s;
}
.demarche-content__button:not(:disabled):hover, .demarche-content__button:not(:disabled):focus, .demarche-content__button:not(:disabled):active {
  color: #FFFFFF;
  background-color: #8E2E3E;
}

.resources {
  position: relative;
  padding-block-end: 3rem;
}
@media only screen and (min-width: 1024px) {
  .resources {
    padding-block-start: 3rem;
  }
}
.resources__arrow {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #DCC3E0;
}
.resources__arrow svg {
  width: min(140px, 20%);
  height: auto;
}
@media only screen and (min-width: 1024px) {
  .resources__arrow svg {
    width: 140px;
  }
}
@media only screen and (min-width: 1024px) {
  .resources__arrow {
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-80%);
  }
}
.resources__container {
  position: relative;
  background: #FFFFFF;
}
.resources__container::before {
  content: "";
  position: absolute;
  z-index: 0;
  inset: 0;
  width: 100%;
  height: 40%;
  background-image: url("../../images/pattern.svg");
  background-size: auto 100%;
}
.resources__container:after {
  content: "";
  position: absolute;
  z-index: 0;
  top: 40%;
  left: 0;
  width: 100%;
  height: 50%;
  background: #D3EBEC;
}
.resources .resources-content {
  z-index: 1;
  position: relative;
  max-width: 790px;
  margin: 0 auto;
  padding: 1rem 20px;
  background: #FFFFFF;
}
@media only screen and (min-width: 1024px) {
  .resources .resources-content {
    display: flex;
    align-items: center;
    gap: 3rem;
    max-width: 950px;
    padding: 4rem 4rem 2rem;
  }
}
.resources .resources-content__wrapper {
  margin-block-end: 2rem;
}
@media only screen and (min-width: 1024px) {
  .resources .resources-content__wrapper {
    max-width: 390px;
  }
}
.resources .resources-content__title {
  margin-block-end: 1rem;
  color: #C03E53;
  font-size: clamp(1.9375rem, 1.25rem + 0.0222 * 100vw, 2.9375rem);
  letter-spacing: -1px;
}
.resources .resources-content__subtitle {
  font-size: clamp(1rem, 0.9375rem + 0.0028 * 100vw, 1.125rem);
  letter-spacing: 0.01em;
}
.resources__book {
  text-align: center;
}
.resources__book svg {
  width: min(380px, 100%);
  margin: auto;
  height: auto;
}
.resources__book svg .background,
.resources__book svg .text {
  transition: all ease-in-out 0.3s;
}
.resources__book svg .background {
  fill: #DCC3E0;
}
.resources__book svg .text {
  fill: #C03E53;
}
.resources__book svg:not(:disabled):hover .background, .resources__book svg:not(:disabled):focus .background, .resources__book svg:not(:disabled):active .background {
  fill: rgba(220, 195, 224, 0.8);
}
.resources__book svg:not(:disabled):hover .text, .resources__book svg:not(:disabled):focus .text, .resources__book svg:not(:disabled):active .text {
  fill: #8E2E3E;
}
.resources__video {
  position: relative;
  z-index: 1;
  width: 100%;
  margin: auto;
  max-width: 950px;
  cursor: pointer;
}
.resources__video iframe {
  width: 100%;
  aspect-ratio: 16/9;
  background: #eeeeee;
  border: 0;
}

.actus {
  padding: 3rem 20px 6rem;
  background-color: #FFFFFF;
  overflow: hidden;
}
@media only screen and (min-width: 1024px) {
  .actus {
    padding-block-start: 6rem;
    overflow: visible;
  }
}
.actus__container {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
}
@media only screen and (min-width: 1024px) {
  .actus__container {
    flex-direction: row;
    justify-content: space-between;
    gap: 4rem;
  }
}
.actus__intro {
  position: relative;
  z-index: 1;
  flex: 1;
}
@media only screen and (min-width: 1024px) {
  .actus__intro {
    max-width: 400px;
  }
}
.actus__title {
  margin-block-end: 1.5rem;
  color: #C03E53;
  font-size: clamp(1.9375rem, 1.25rem + 0.0222 * 100vw, 2.9375rem);
  letter-spacing: -1px;
}
.actus__subtitle {
  margin-block-end: 2.75rem;
  font-size: clamp(1rem, 0.9375rem + 0.0028 * 100vw, 1.125rem);
  letter-spacing: 0.01em;
}
.actus__button {
  display: inline-block;
  padding: 0.8125rem 1.25rem;
  border-radius: 99px;
  border: 1px solid #C03E53;
  color: #C03E53;
  background-color: #FFFFFF;
  font-family: "Fredoka", sans-serif;
  font-weight: 700;
  font-size: clamp(1rem, 0.9375rem + 0.0028 * 100vw, 1.125rem);
  letter-spacing: 0.01em;
  transition: all ease-in-out 0.3s;
}
.actus__button:not(:disabled):hover, .actus__button:not(:disabled):focus, .actus__button:not(:disabled):active {
  color: #FFFFFF;
  background-color: #8E2E3E;
}
.actus .article-entry {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: row;
  gap: 1.5rem;
  padding: 1.875rem 30px;
  max-width: 710px;
  min-height: 420px;
  border: 1px solid #C03E53;
  border-radius: 16px;
  background-color: #FFFFFF;
  cursor: pointer;
}
.actus .article-entry:before {
  content: "";
  position: absolute;
  inset: 0;
  width: 0;
  height: 100%;
  z-index: -1;
  border-radius: 16px;
  background-color: #FAE9E9;
  transition: all ease-in-out 0.3s;
  transform-origin: left;
}
@media only screen and (max-width: 767px) {
  .actus .article-entry {
    flex-direction: column;
    align-items: center;
    width: min(100%, 430px);
  }
}
.actus .article-entry:not(:disabled):hover, .actus .article-entry:not(:disabled):focus, .actus .article-entry:not(:disabled):active {
  border-color: #8E2E3E;
}
.actus .article-entry:not(:disabled):hover:before, .actus .article-entry:not(:disabled):focus:before, .actus .article-entry:not(:disabled):active:before {
  width: 100%;
}
.actus .article-entry:not(:disabled):hover .article-entry__thumbnail img,
.actus .article-entry:not(:disabled):hover .article-entry__thumbnail picture, .actus .article-entry:not(:disabled):focus .article-entry__thumbnail img,
.actus .article-entry:not(:disabled):focus .article-entry__thumbnail picture, .actus .article-entry:not(:disabled):active .article-entry__thumbnail img,
.actus .article-entry:not(:disabled):active .article-entry__thumbnail picture {
  transform: scale(1.1);
}
.actus .article-entry:not(:disabled):hover .article-entry__arrow, .actus .article-entry:not(:disabled):focus .article-entry__arrow, .actus .article-entry:not(:disabled):active .article-entry__arrow {
  color: #8E2E3E;
  animation: arrow-spring 0.7s cubic-bezier(0.34, 1.56, 0.64, 1) both 0.1s;
}
.actus .article-entry__thumbnail {
  border-radius: 8px;
  overflow: hidden;
}
.actus .article-entry__thumbnail img,
.actus .article-entry__thumbnail picture {
  object-fit: cover;
  aspect-ratio: 1;
  width: 100%;
  height: 100%;
  border-radius: 8px;
  transition: all ease-in-out 0.3s;
}
.actus .article-entry__thumbnail img.default-thumbnail,
.actus .article-entry__thumbnail picture.default-thumbnail {
  max-width: 330px;
}
@media only screen and (max-width: 767px) {
  .actus .article-entry__thumbnail {
    width: 100%;
  }
}
.actus .article-entry__content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 0.25rem;
  flex: 1;
  padding-bottom: 0.75rem;
}
@media only screen and (max-width: 767px) {
  .actus .article-entry__content {
    width: 100%;
  }
}
.actus .article-entry__date {
  color: rgba(203, 127, 139, 0.5);
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.actus .article-entry__title {
  margin-block: 2.625rem 1.75rem;
  letter-spacing: -1px;
  font-size: clamp(1.1875rem, 0.9375rem + 0.0083 * 100vw, 1.5625rem);
  font-weight: 700;
  color: #8E2E3E;
}
.actus .article-entry__link {
  text-decoration: none;
  color: inherit;
}
.actus .article-entry__excerpt {
  letter-spacing: 0.01em;
}
.actus .article-entry__arrow {
  align-self: flex-end;
  max-width: 63px;
  margin-block-start: auto;
  color: #C03E53;
  transition: all ease-in-out 0.3s;
}
.actus__decor--left {
  position: absolute;
  z-index: 0;
  width: 1300px;
  top: -50px;
  left: -80%;
  height: auto;
  transform: scaleX(-1);
  color: #FAE9E9;
}
.actus__decor--left svg {
  width: 100%;
  height: auto;
}
@media only screen and (min-width: 768px) {
  .actus__decor--left {
    left: -50%;
  }
}
@media only screen and (min-width: 1024px) {
  .actus__decor--left {
    bottom: -1rem;
    top: unset;
    left: -70%;
    width: 1700px;
  }
}
.actus__decor--right {
  position: absolute;
  z-index: 0;
  bottom: -6rem;
  left: -20%;
  width: 1430px;
  height: auto;
}
@media only screen and (min-width: 768px) {
  .actus__decor--right {
    left: 50%;
  }
}
.actus__decor--right img,
.actus__decor--right picture {
  display: block;
  width: 100%;
  height: auto;
}