* {
  /* TO DELETE */
  font-family: "Greycliff CF", Arial, Helvetica, sans-serif;
  /* --------- */
}

html {
  min-height: 100vh;
}

body {
  width: 100%;
  min-height: 100vh;
}

body.no-scroll {
  overflow: hidden;
}

.layout-container {
  min-height: 78vh;
  margin: 0 auto;
  padding-top: var(--nav-height);
}

section {
  padding: 80px 0;
  width: 100%;
}

.wrapper {
  margin: 0 auto;
  width: 90%;
  max-width: var(--max-width);
}

.wrapper .wrapper-detail {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

.big-wrapper {
  margin: 0 auto;
  width: 90%;
  max-width: var(--max-width-big);
}

.flex_container {
  display: flex;
  width: 100%;
}

.flex_container.flex_column {
  flex-direction: column;
}

.flex_container.flex_row {
  flex-direction: row;
}

.flex_container.flex_start {
  justify-content: flex-start;
}

.flex_container.space_between {
  justify-content: space-between;
}

.flex_container.intems_center {
  align-items: center;
}

.flex_container.intems_start {
  align-items: flex-start;
}

.inner_box {
  width: 100%;
  border-radius: var(--big-radius);
  padding: 80px;
}

.grid_container {
  display: grid;
  width: 100%;
  gap: 25px;
  text-align: center;
}

.grid_container .grid_element {
  display: block;
  border-radius: var(--small-radius);
  padding: 20px;
  font-weight: bold;
  text-decoration: none;
}

.hide {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
}

.wrapper-grid {
  display: grid;
  grid-template-columns:
    minmax(var(--gutter-mobile), 1fr) minmax(0,
      calc(var(--max-width-big) / 3 * 2)) minmax(0, calc(var(--max-width-big) / 3)) minmax(var(--gutter-mobile), 1fr);
  padding: 0;
}

.wrapper-grid-left {
  grid-column: 2/3;
}

.wrapper-grid-right {
  grid-column: 3/5;
}

.event-banner {
  position: fixed;
  /* top: 70px; */
  top: var(--nav-height);
  left: 0;
  background: #8fd298;
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 5px 32px;
  align-items: center;
  z-index: 90;
  gap: 16px;

}

header {
  left: 0;
  top: 0;
}

.toolbar-icon-10 header {
  top: 94px;
}

.toolbar-icon-10 .event-banner {
  top: calc(var(--nav-height) + 94px);

}

.event-banner .event-title {
  font-size: 16px;
  line-height: 20px;
  font-weight: 600;
  font-family: "Greycliff CF", Arial, Helvetica, sans-serif;
  /* text-align: center; */
  /* width: 100%; */
}

.event-banner .event-cta a {
  border: 1px solid #ffff;
  padding: 6px;
  border-radius: 52px;
  background-color: #fff;
  display: flex;
  width: 32px;
  height: 32px;
  justify-content: center;
  align-items: center;
}

.event-card {
  width: 100%;
  max-width: 376px;
  position: absolute;
  right: 40px;
  bottom: 40px;
}

.event-card .event-date {
  background: #0e1a38;
  border: 1px solid #0e1a38;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  font-size: 18px;
  line-height: 16px;
  font-weight: 600;
  font-family: "Greycliff CF", Arial, Helvetica, sans-serif;
  color: #fff;
  padding: 12px 16px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;

}

.event-card .event-detail {
  display: flex;
  gap: 10px;
  background: #fff;
  padding: 29px 16.5px;
  display: flex;
  gap: 10px;
  background: #fff;
  flex-direction: column;
  padding: 20px;
  align-items: center;
  border: 1px solid #fff;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
}

.event-card .event-detail h2,
.event-card .event-detail p {
  margin-bottom: 0px;
}

.event-card .event-detail h2 {
  font-size: 22px;
  line-height: 28px;
  font-weight: 800;
  font-family: "Greycliff CF", Arial, Helvetica, sans-serif;

  text-align: center;

}

.event-card .event-detail p {
  font-family: "Greycliff CF", Arial, Helvetica, sans-serif;
  /* font-size: 17.5px; */
  /* line-height: 28px; */
  font-weight: 400;
  text-align: center;
  white-space: pre-wrap;
  font-size: 16px;
  line-height: 24px;
}

.event-card .event-detail a {
  background: #8fd298;
  color: #0e1a38;
  font-family: "Greycliff CF", Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 24px;
  font-weight: 600;
  border: 1px solid #8fd298;
  border-radius: 100px;
  padding: 6px 80px;
  text-decoration: none;
}

@media (max-width: 1024px) {
  .event-card .event-detail a {
    background: #8fd298;
    color: #0e1a38;
    font-family: "Greycliff CF", Arial, Helvetica, sans-serif;
    font-size: 16px;
    line-height: 24px;
    font-weight: 600;
    border: 1px solid #8fd298;
    border-radius: 100px;
    padding: 6px 20px;
    text-decoration: none;
  }

  body.has-backbutton {
    padding-top: var(--nav-height-mobile);
  }

  .wrapper-grid {
    grid-template-columns: 1fr;
  }

  .wrapper-grid-left {
    grid-column: 1;
  }

  .wrapper-grid-right {
    grid-column: 1;
  }
}

@media (max-width: 768px) {
  .content .planifier_cleanup .wrapper img {

    margin-top: 32px;
    max-width: 100%;
  }

  .region--top-return {
    position: fixed;
    display: flex;
    align-items: center;
    top: 13px !important;
    left: 0;
    width: 100%;
    background: white;
    padding: 1rem;
    border-bottom: 1px solid #8A8C8C4D;
    height: var(--nav-height-mobile);
    z-index: 99;
  }

  .wrapper {
    width: 100%;
  }

  .planifier_cleanup {
    padding: 4.5rem var(--gutter-mobile);
  }

  .page-node-130 .wrapper,
  .page-node-134 .wrapper,
  .page-node-135 .wrapper,
  .page-node-type-page .wrapper {
    padding: 0 var(--gutter-mobile);
  }

  .page-node-type-page a {
    max-width: 100%;
    word-break: break-all;
  }

  .layout-container {
    padding-top: 0;
  }

  section.content {
    width: 100%;
    padding-left: 3rem 5%;
  }

  .inner_footer .wrapper {
    padding: 0;
  }

  .event-banner {
    top: 53px;
  }

  .event-banner {
    padding: 17.5px 16px;
  }

  .event-card {
    max-width: 286px;
    right: 0;
    bottom: 6.5%;
    justify-self: anchor-center;

  }

  .event-card .event-detail a {
    background: #8fd298;
    color: #0e1a38;
    font-family: "Greycliff CF", Arial, Helvetica, sans-serif;
    font-size: 16px;
    line-height: 24px;
    font-weight: 600;
    border: 1px solid #8fd298;
    border-radius: 100px;
    padding: 6px 20px;
    text-decoration: none;
  }

  .event-card .event-date {
    font-size: 18px;
  }

  .event-card .event-detail h2 {
    font-size: 20px;
  }

  .event-card .event-detail p {
    font-size: 16px;
  }
}

@media (min-width: 768px) and (max-width: 1024px) {
  .layout-container {
    padding-top: var(--nav-height-mobile);
  }

  #bloc-infos-section .wrapper,
  .newsletter .wrapper {
    width: 100%;
  }

  body.has-backbutton {
    padding-top: var(--nav-height-mobile);
  }
}