﻿@font-face {
  font-family: Manrope;
  src: url('/Fonts/SEMIBOLD.OTF') format("opentype");
  font-weight: 600;
  font-style: normal;
  font-display: auto;
}

@font-face {
  font-family: Manrope;
  src: url('/Fonts/THIN.OTF') format("opentype");
  font-weight: 100;
  font-style: normal;
  font-display: auto;
}

@font-face {
  font-family: Manrope;
  src: url('/Fonts/MEDIUM.OTF') format("opentype");
  font-weight: 500;
  font-style: normal;
  font-display: auto;
}

@font-face {
  font-family: Manrope;
  src: url('/Fonts/BOLD.OTF') format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: auto;
}

@font-face {
  font-family: Manrope;
  src: url('/Fonts/REGULAR.OTF') format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: auto;
}

@font-face {
  font-family: Manrope;
  src: url('/Fonts/LIGHT.OTF') format("opentype");
  font-weight: 300;
  font-style: normal;
  font-display: auto;
}

@font-face {
  font-family: Calibri;
  src: url('/Fonts/Calibri-Bold.TTF') format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: auto;
}

@font-face {
  font-family: Calibri;
  src: url('/Fonts/Calibri-Italic.ttf') format("truetype");
  font-weight: 400;
  font-style: italic;
  font-display: auto;
}

@font-face {
  font-family: Calibri;
  src: url('/Fonts/Calibri-Regular.ttf') format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: auto;
}

@font-face {
  font-family: Calibri;
  src: url('/Fonts/Calibri-Bold-Italic.ttf') format("truetype");
  font-weight: 700;
  font-style: italic;
  font-display: auto;
}

@font-face {
  font-family: Calibri;
  src: url('/Fonts/Calibri-Light.ttf') format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: auto;
}

@font-face {
  font-family: Calibri;
  src: url('/Fonts/Calibri-Light-Italic.ttf') format("truetype");
  font-weight: 300;
  font-style: italic;
  font-display: auto;
}

:root {
  --dark-grey: #333;
  --dark-orange: #f6921e;
  --grey-2: #666;
  --red: #ea2d2e;
  --white: white;
  --grey: #929497;
  --light-grey: #d4d4d4;
  --whitesmoke: whitesmoke;
  --yellow-green: #94c053;
  --green: #397426;
  --dark-green: #193308;
  --gold: #ffda20;
}

body {
  color: var(--dark-grey);
  font-family: Manrope, sans-serif;
  font-size: 14px;
  line-height: 24px;
}

h1 {
  color: var(--dark-orange);
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 38px;
  font-weight: 700;
  line-height: 44px;
}

h2 {
  color: var(--dark-orange);
  text-align: center;
  margin-top: 15px;
  margin-bottom: 15px;
  font-size: 30px;
  font-weight: 700;
  line-height: 36px;
}

h3 {
  color: var(--dark-grey);
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 24px;
  font-weight: 700;
  line-height: 30px;
}

h4 {
  color: var(--dark-grey);
}

h5 {
  color: var(--grey-2);
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
}

h6 {
  color: var(--grey-2);
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 12px;
  font-weight: 700;
  line-height: 18px;
}

p {
  margin-bottom: 10px;
}

a {
  color: var(--dark-orange);
  text-decoration: none;
  transition: color .2s;
}

a:hover {
  color: var(--red);
}

img {
  max-width: 100%;
  display: inline-block;
}

.brand {
  z-index: 1000;
  width: 125px;
  padding-top: 10px;
  padding-left: 0;
}

.navbar-container {
  z-index: 10000;
  background-color: var(--white);
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  min-width: 960px;
  height: 100%;
  display: flex;
}

.hero {
  flex-direction: row;
  height: 100vh;
  position: relative;
  overflow: hidden;
}

.nav-menu {
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  height: 100%;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  position: static;
}

.nav-link {
  color: #666;
  cursor: pointer;
  align-items: center;
  height: 100%;
  margin-left: 0;
  margin-right: 30px;
  padding-left: 0;
  padding-right: 0;
  font-size: 18px;
  font-weight: 600;
  line-height: 24px;
  text-decoration: none;
  transition: box-shadow .2s;
  display: flex;
  position: relative;
}

.nav-link:hover {
  box-shadow: inset 0 -5px 0 0 var(--dark-orange);
  color: var(--dark-grey);
}

.nav-link.w--current {
  color: var(--dark-grey);
}

.nav-link.dropdown {
  margin-right: 0;
  padding-right: 25px;
  position: relative;
  overflow: hidden;
}

.nav-link.left {
  margin-right: 0;
}

.nav-info {
  text-align: right;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  height: 100%;
  display: flex;
}

.nav-row {
  color: var(--dark-grey);
  flex-wrap: wrap;
  justify-content: flex-end;
  height: 24px;
  text-decoration: none;
  display: flex;
}

.nav-row.margin-bottom {
  margin-bottom: 10px;
}

.nav-row-note {
  color: var(--grey);
  font-size: 10px;
  line-height: 16px;
}

.brand-image {
  width: 100%;
}

.icon {
  width: 24px;
  height: 24px;
  margin-right: 10px;
}

.header {
  z-index: 100000;
  width: 100%;
  position: fixed;
}

.nav-dropdown-block3 {
  flex-direction: column;
  width: 33.3333%;
  padding-bottom: 60px;
  padding-right: 60px;
  display: flex;
}

.nav-dropdown-block3.hidden {
  opacity: 0;
  transform: translate(0, 30px);
}

.nav-dropdown-labels {
  border-bottom: 1px solid var(--light-grey);
  margin-bottom: 30px;
  padding-bottom: 20px;
  font-size: 18px;
  font-weight: 500;
  line-height: 24px;
}

.nav-dropdown-link {
  color: var(--grey-2);
  margin-bottom: 15px;
  font-size: 14px;
  line-height: 20px;
  text-decoration: none;
  transition: color .2s;
}

.nav-dropdown-link:hover {
  color: var(--dark-orange);
}

.nav-dropdown-link.hidden {
  display: none;
}

.dropdown-arrow {
  margin-left: 5px;
  margin-right: 0;
  position: absolute;
  inset: auto 30px auto auto;
}

.dropdown-arrow.menu {
  right: 0;
}

.dropdown {
  align-items: center;
  height: 100%;
  margin-right: 30px;
  position: static;
}

.dropdown-list {
  background-color: #33333380;
  flex-direction: column;
  align-items: flex-end;
  width: 100%;
  height: 100vh;
  min-height: 0;
  display: flex;
  position: absolute;
  inset: 110px 0% 0%;
}

.dropdown-list.w--open {
  display: flex;
}

.dropdown-list.hidden {
  opacity: 0;
  display: none;
}

.nav-dropdown-content {
  background-color: var(--whitesmoke);
  align-items: flex-start;
  width: 80%;
  height: 100%;
  padding: 30px 60px 180px;
  display: flex;
  overflow: auto;
}

.nav-dropdown-content.plan {
  flex-wrap: wrap;
  width: 100%;
  height: auto;
  padding: 0;
}

.section {
  text-align: justify;
  justify-content: center;
  align-items: flex-start;
  padding: 90px 60px;
  display: flex;
}

.section.contrast-bg {
  background-color: var(--whitesmoke);
  text-align: justify;
}

.section.contrast-bg.vertical {
  flex-direction: column;
}

.section.contrast-bg._2 {
  flex-direction: column;
  align-items: center;
}

.section.contrast-bg._2._3 {
  background-color: var(--white);
}

.section.contrast-bg.hidden {
  display: none;
}

.section.green-bg {
  background-color: var(--yellow-green);
}

.section.list-cms {
  background-color: var(--whitesmoke);
  min-height: 50vh;
}

.section.photo-cms {
  background-color: var(--whitesmoke);
  padding-top: 0;
  position: relative;
}

.section.conseil {
  background-color: var(--whitesmoke);
  flex-wrap: wrap;
  justify-content: flex-start;
  padding-top: 0;
}

.nav-dropdown-block1 {
  flex-direction: column;
  width: 33.3333%;
  padding-bottom: 60px;
  padding-right: 60px;
  display: flex;
}

.nav-dropdown-block1.hidden {
  opacity: 0;
  transform: translate(0, 30px);
}

.nav-dropdown-block2 {
  flex-direction: column;
  width: 33.3333%;
  padding-bottom: 60px;
  padding-right: 60px;
  display: flex;
}

.nav-dropdown-block2.hidden {
  opacity: 0;
  transform: translate(0, 30px);
}

.primary-nav {
  width: 100%;
  height: 60%;
  display: flex;
}

.secondary-nav {
  border-bottom: 1px solid var(--light-grey);
  align-items: center;
  width: 100%;
  height: 40%;
  display: flex;
}

.nav-link-secondary {
  color: var(--grey);
  margin-right: 20px;
  font-size: 12px;
  line-height: 18px;
  text-decoration: none;
  transition: color .2s;
}

.nav-link-secondary:hover {
  color: var(--grey-2);
}

.nav-link-secondary.w--current {
  color: var(--dark-grey);
}

.nav-link-secondary.hidden {
  display: none;
}

.nav-link-secondary.left {
  margin-right: 0;
}

.navbar {
  border-bottom: 1px solid var(--light-grey);
  background-color: var(--white);
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  height: 110px;
  padding-left: 60px;
  padding-right: 60px;
  display: flex;
  box-shadow: 0 0 5px #00000040;
}

.slider {
  background-color: #0000;
  height: 100%;
}

.hero-slider-arrow {
  opacity: 0;
  display: none;
}

.hero-slide-nav {
  display: none;
}

.hero-slide-image-container {
  background-color: var(--dark-grey);
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
}

.hero-slide-image {
  opacity: .9;
  object-fit: cover;
  min-width: 100%;
  height: 100%;
}

.hero-content {
  z-index: 200;
  color: var(--white);
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  height: 100%;
  padding-top: 110px;
  padding-left: 120px;
  padding-right: 120px;
  display: flex;
  position: absolute;
  inset: 0%;
}

.hero-heading {
  color: var(--white);
  text-align: left;
  margin-top: 15px;
  margin-bottom: 30px;
  font-size: 60px;
  font-weight: 700;
  line-height: 66px;
}

.hero-welcome {
  text-transform: uppercase;
  align-items: center;
  display: flex;
}

.hero-line {
  background-color: var(--white);
  opacity: .75;
  width: 300px;
  height: 1px;
  margin-left: 15px;
}

.button {
  background-color: var(--dark-orange);
  color: var(--white);
  text-transform: uppercase;
  border-radius: 5px;
  padding: 20px;
  font-weight: 500;
  text-decoration: none;
  transition: background-color .2s;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 10px #00000040;
}

.button:hover {
  color: var(--white);
}

.button.green {
  background-color: var(--yellow-green);
}

.button.green.histoire {
  margin-bottom: 30px;
  margin-left: auto;
  margin-right: auto;
}

.button.margin-top-bottom {
  margin-top: 30px;
  margin-bottom: 30px;
}

.button.margin-top-bottom._2 {
  margin-top: 0;
  display: block;
}

.button.margin-top-bottom.bottom {
  margin-top: 0;
}

.button._2 {
  margin-left: 40px;
}

.navbar-mobile {
  display: none;
}

.div-bar {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.top-line {
  background-color: var(--dark-grey);
  width: 30px;
  height: 4px;
  margin: 5px auto;
  position: relative;
  left: 0;
  right: 0;
}

.middle-line {
  background-color: var(--dark-grey);
  width: 30px;
  height: 4px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.bottom-line {
  background-color: var(--dark-grey);
  width: 30px;
  height: 4px;
  margin: 5px auto;
  position: relative;
  left: 0;
  right: 0;
}

.header-message-urgence {
  background-color: var(--red);
  color: var(--white);
  text-align: center;
  justify-content: center;
  align-items: center;
  width: 100%;
  min-height: 40px;
  line-height: 20px;
  text-decoration: none;
  display: flex;
}

.header-message-urgence:hover {
  color: var(--light-grey);
}

.header-message-urgence.collection-link.hidden {
  display: none;
}

.warning-icon {
  width: 15px;
  margin-left: 10px;
  margin-right: 10px;
}

.button-bg-color-anim {
  z-index: 0;
  background-color: var(--red);
  position: absolute;
  inset: 0%;
  transform: translate(0, 100%);
}

.button-bg-color-anim.green {
  background-color: var(--green);
}

.button-text {
  z-index: 1;
  position: relative;
}

.button-text:hover {
  color: var(--white);
}

.container {
  flex-direction: column;
  align-items: center;
  width: 100%;
  min-width: 960px;
  display: flex;
}

.container.horizontal {
  flex-flow: wrap;
  align-items: flex-start;
}

.container.spacing {
  margin-bottom: 40px;
  display: none;
}

.container.spacing.show {
  display: flex;
}

.div-actualite-container {
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
  margin-bottom: 30px;
  display: flex;
}

.div-block {
  color: var(--dark-grey);
  flex-direction: column;
  width: 16%;
  margin-left: 2%;
  margin-right: 2%;
  text-decoration: none;
  display: flex;
}

.block-image-container {
  border-radius: 5px;
  width: 100%;
  overflow: hidden;
  box-shadow: 0 0 10px #00000040;
}

.section-heading-image {
  object-fit: cover;
  object-position: 50% 50%;
  width: 100%;
  height: 100%;
  margin-left: auto;
  margin-right: auto;
}

.section-heading-image.reglements {
  object-position: 50% 10%;
}

.section-heading-image.communiques, .section-heading-image.rapports, .section-heading-image.animaux {
  object-position: 50% 0%;
}

.section-heading-image.propriete {
  object-position: 50% 10%;
}

.section-heading-image.industriel, .section-heading-image.partage {
  object-position: 50% 100%;
}

.section-heading-image.fadoq {
  object-position: 50% 0%;
}

.section-heading-image.glissade {
  object-position: 50% 100%;
}

.section-heading-image.ski-de-fond {
  object-position: 50% 90%;
}

.section-heading-image.jeux-eau, .section-heading-image.baseball, .section-heading-image.cabane, .section-heading-image.montagnard {
  object-position: 50% 100%;
}

.actualite-content-container {
  padding-top: 20px;
  padding-bottom: 20px;
}

.div-block-row {
  flex-wrap: wrap;
  align-items: center;
  width: 100%;
  margin-bottom: 10px;
  display: flex;
}

.div-block-row.margin-bottom {
  margin-bottom: 20px;
}

.div-block-row.contact-vertical {
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 20px;
}

.div-block-row.no-margin {
  margin-bottom: 0;
}

.block-title {
  font-size: 30px;
  font-weight: 600;
  line-height: 36px;
}

.actualite-info {
  text-transform: uppercase;
  font-size: 12px;
  line-height: 18px;
}

.actualite-more {
  align-items: flex-start;
  height: 30px;
  font-size: 16px;
  font-weight: 500;
  line-height: 22px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.actualite-more-line {
  background-color: var(--green);
  width: 100%;
  height: 2px;
  position: absolute;
  inset: auto 0% 0%;
}

.heading {
  color: var(--dark-orange);
  text-align: center;
  margin-top: 0;
  margin-bottom: 60px;
  font-size: 46px;
  font-weight: 700;
  line-height: 52px;
}

.heading.green {
  color: var(--yellow-green);
}

.heading.white {
  color: var(--white);
}

.heading.page-heading {
  text-align: left;
  font-size: 60px;
  line-height: 66px;
}

.heading.page-heading.less-margin-bottom {
  margin-bottom: 30px;
}

.heading.page-heading.red {
  color: var(--red);
}

.div-events-container {
  flex-direction: column;
  width: 100%;
  margin-bottom: 30px;
  display: flex;
}

.news-block {
  border-bottom: 1px solid var(--light-grey);
  color: var(--dark-grey);
  align-items: stretch;
  width: 100%;
  margin-bottom: 30px;
  padding: 30px 2%;
  text-decoration: none;
  display: flex;
}

.news-date {
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  width: 20vw;
  padding-right: 60px;
  font-size: 20px;
  font-weight: 500;
  line-height: 26px;
  display: flex;
}

.news-title {
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  width: 48vw;
  padding-right: 60px;
  display: flex;
}

.news-image-container {
  border-radius: 5px;
  width: 20vw;
  height: 20vw;
  overflow: hidden;
  box-shadow: 0 0 10px #00000040;
}

.news-date-text {
  color: var(--dark-orange);
  text-transform: uppercase;
  font-size: 30px;
  font-weight: 700;
  line-height: 36px;
}

.footer {
  border-top: 1px solid var(--light-grey);
  background-color: var(--white);
  padding: 90px 60px 30px;
}

.footer-content {
  border-bottom: 1px solid var(--light-grey);
  flex-wrap: wrap;
  padding-bottom: 30px;
  display: flex;
}

.footer-credits {
  color: var(--grey);
  padding-top: 30px;
  padding-bottom: 30px;
  font-size: 12px;
  line-height: 18px;
  text-decoration: none;
}

.div-50 {
  width: 50%;
}

.div-50.footer-50 {
  padding-right: 60px;
}

.div-50.heading-info {
  background-color: var(--yellow-green);
  color: var(--white);
  padding: 90px 60px;
}

.div-50.contact-picture {
  object-fit: fill;
  object-position: 50% 100%;
  height: auto;
  display: flex;
  position: relative;
}

.div-50.heading-info-alt {
  background-color: var(--whitesmoke);
  padding: 90px 60px;
}

.div-50.urgence-heading {
  background-color: var(--whitesmoke);
  width: 100%;
  padding: 90px 60px;
}

.div-50.heading-info-conseil {
  background-color: var(--whitesmoke);
  width: 100%;
  padding: 200px 60px 0;
}

.footer-contact {
  padding-top: 30px;
}

.big-link {
  color: var(--yellow-green);
  font-size: 18px;
  font-weight: 500;
  line-height: 24px;
  text-decoration: none;
  transition: color .2s;
}

.big-link:hover {
  color: var(--green);
}

.big-link.red {
  color: var(--red);
}

.footer-menu {
  flex-wrap: wrap;
  justify-content: flex-start;
  display: flex;
}

.footer-link {
  color: var(--grey);
  width: 25%;
  margin-bottom: 20px;
  margin-right: 25%;
  font-size: 14px;
  line-height: 20px;
  text-decoration: none;
  transition: color .2s;
  display: block;
}

.footer-link:hover {
  color: var(--dark-grey);
}

.footer-link.hidden {
  display: none;
}

.div-breadcrumb {
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 15px;
  font-size: 12px;
  line-height: 18px;
  display: flex;
}

.breadcrumb-text {
  color: var(--green);
  margin-right: 15px;
  text-decoration: none;
}

.breadcrumb-text.w--current {
  color: var(--green);
}

.breadcrumb-text.active {
  color: var(--white);
}

.breadcrumb-text.active.green {
  color: var(--yellow-green);
}

.breadcrumb-text.active.orange {
  color: var(--dark-orange);
}

.breadcrumb-text.active.red {
  color: var(--red);
}

.breadcrumb-text.grey {
  color: var(--grey);
}

.breadcrumb-line {
  background-color: var(--green);
  opacity: .5;
  width: 1px;
  height: 18px;
  margin-right: 15px;
}

.breadcrumb-line.grey {
  background-color: var(--grey-2);
}

.breadcrumb-line.dark-grey {
  background-color: var(--dark-grey);
}

.section-heading-content {
  max-height: 500px;
  padding-top: 110px;
  display: flex;
}

.section-heading-content.alt {
  max-height: none;
}

.link {
  color: var(--grey-2);
  font-weight: 500;
  text-decoration: none;
  transition: color .2s;
}

.link:hover {
  color: var(--dark-grey);
}

.div-conseil-contact-container {
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: flex-start;
  width: 100%;
  display: flex;
}

.section-dropdown-block {
  align-items: center;
  width: 45%;
  margin-bottom: 30px;
  margin-left: 1%;
  margin-right: 1%;
  box-shadow: 0 0 10px #00000040;
}

.conseil-dropdown-toggle {
  background-color: var(--white);
  color: var(--dark-green);
  border-radius: 5px;
  justify-content: space-between;
  align-items: center;
  padding-left: 15px;
  padding-right: 15px;
  font-size: 16px;
  font-weight: 500;
  line-height: 22px;
  transition: color .2s;
  display: flex;
}

.conseil-dropdown-toggle:hover {
  color: var(--green);
}

.conseil-dropdown-toggle.w--open {
  color: var(--green);
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}

.dropdown-list-block {
  background-color: var(--whitesmoke);
  height: 0;
  display: none;
  position: relative;
  overflow: hidden;
}

.dropdown-list-block.w--open {
  border-bottom-right-radius: 5px;
  border-bottom-left-radius: 5px;
}

.dropdown-list-block.show {
  height: auto;
  display: block;
}

.dropdown-list-block.open {
  height: auto;
}

.contact-services-title {
  margin-bottom: 10px;
  font-size: 18px;
  font-weight: 500;
  line-height: 24px;
}

.contact-services-subtext {
  margin-bottom: 10px;
  font-size: 12px;
  font-weight: 700;
  line-height: 18px;
}

.link-services {
  color: var(--dark-grey);
  font-weight: 600;
  text-decoration: none;
  transition: color .2s;
}

.link-services:hover {
  color: var(--yellow-green);
}

.dropdown-close-express {
  z-index: 1;
  display: none;
  position: absolute;
  inset: 0%;
}

.dropdown-express-current {
  z-index: 10000;
  display: none;
  position: absolute;
  inset: 0%;
}

.breadcrumb-subdivision-container {
  align-items: center;
  margin-bottom: 15px;
  display: flex;
}

.breadcrumb-link {
  color: var(--green);
  margin-right: 15px;
  text-decoration: none;
  transition: color .2s;
}

.breadcrumb-link:hover {
  color: var(--dark-green);
}

.breadcrumb-link.w--current {
  color: var(--green);
}

.breadcrumb-link.grey {
  color: var(--grey);
}

.breadcrumb-link.grey:hover, .breadcrumb-link.dark-grey {
  color: var(--dark-grey);
}

.breadcrumb-link.dark-grey:hover {
  color: var(--white);
}

.info-link-container, .info-dropdown-text-container {
  border-top: 1px solid var(--light-grey);
  flex-direction: column;
  width: 960px;
  display: flex;
}

.info-dropdown {
  width: 100%;
}

.info-link-block {
  border-bottom: 1px solid var(--light-grey);
  color: var(--dark-grey);
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 30px 80px 30px 30px;
  font-size: 18px;
  font-weight: 500;
  line-height: 24px;
  text-decoration: none;
  transition: color .2s;
  display: flex;
  position: relative;
}

.info-link-block:hover {
  color: var(--dark-orange);
}

.info-link-block.w--open {
  color: var(--dark-orange);
  border-bottom-style: none;
}

.info-link-block.cms {
  background-color: #0000;
  padding: 15px 0;
}

.info-link-block.blank {
  background-color: #0000;
  padding: 15px 0;
  transition-property: none;
}

.info-link-block.blank:hover {
  color: var(--dark-grey);
}

.info-dropdown-list {
  border-bottom: 1px solid var(--light-grey);
  background-color: #0000;
  height: 0;
  position: relative;
  overflow: hidden;
}

.info-dropdown-list.w--open {
  height: auto;
}

.icon-container {
  justify-content: center;
  align-items: center;
  width: 20px;
  height: 20px;
  display: flex;
  position: absolute;
  inset: auto 30px auto auto;
}

.icon-absolute {
  opacity: 0;
  width: 20px;
  position: absolute;
  inset: 0%;
}

.icon-default {
  width: 20px;
}

.rich-text {
  flex-flow: wrap;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  margin-bottom: 15px;
  font-size: 18px;
  line-height: 28px;
}

.rich-text h4 {
  margin-top: 30px;
  margin-bottom: 15px;
}

.rich-text h3 {
  margin-top: 0;
  margin-bottom: 15px;
}

.rich-text a {
  color: var(--dark-orange);
  transition: color .2s;
}

.rich-text a:hover {
  color: var(--red);
}

.rich-text img {
  border-radius: 5px;
  transition: transform .2s;
  box-shadow: 0 0 10px #00000040;
}

.rich-text img:hover {
  transform: scale(1.05);
}

.rich-text.justified {
  text-align: justify;
}

.collection-link-block {
  color: var(--dark-grey);
  text-decoration: none;
}

.collection-link-block:hover {
  color: var(--dark-grey);
}

.text-content-container {
  justify-content: flex-start;
  align-items: flex-start;
  width: 960px;
  font-family: Calibri, sans-serif;
  font-size: 18px;
  line-height: 28px;
  display: flex;
}

.text-content-container.vertical {
  flex-direction: column;
}

.text-content-container.livres, .text-content-container.image-text-block {
  margin-bottom: 60px;
}

.text-content-container.image-text-block.reverse {
  flex-direction: row-reverse;
}

.text-content-container.centered {
  text-align: center;
  justify-content: center;
}

.text-content-container.biblio {
  flex-direction: column;
}

.text-content-container.left {
  text-align: left;
}

.text-content-container.bottom {
  margin-bottom: 37px;
}

.text-content-container.bottom.hidden {
  display: none;
}

.image {
  border-radius: 5px;
  width: 100%;
  transition: transform .2s;
  overflow: hidden;
  box-shadow: 0 0 10px #00000040;
}

.image:hover {
  transform: scale(1.05);
}

.image.left-image {
  max-width: 25%;
  margin-right: 30px;
}

.image.left-image:hover {
  transform: scale(1.05);
}

.image.left-image.no-shadow {
  box-shadow: none;
}

.image.left-image.no-shadow.les-5-s {
  width: auto;
}

.image.left-image.centre-multifonctionnel {
  max-width: 50%;
}

.image.left-image.hidden {
  display: none;
}

.image.margin-bottom {
  margin-bottom: 15px;
}

.image.right-image {
  max-width: 25%;
  margin-left: 30px;
}

.image.right-image:hover {
  transform: scale(1.05);
}

.image.right-image.image-text-block {
  max-width: 50%;
}

.image.image-50 {
  width: 48%;
}

.signature {
  font-size: 18px;
  font-style: italic;
  line-height: 24px;
}

.dropdown-content-container {
  flex-wrap: wrap;
  justify-content: center;
  padding-top: 15px;
  padding-bottom: 30px;
  display: flex;
}

.div-25 {
  width: 25%;
}

.div-25.vertical-center {
  text-align: center;
  flex-direction: column;
  align-items: center;
  padding-left: 15px;
  padding-right: 15px;
  display: flex;
}

.div-25.list {
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding-top: 10px;
  display: flex;
}

.div-33 {
  width: 33.3333%;
}

.div-33.vertical-center {
  text-align: center;
  flex-direction: column;
  align-items: center;
  padding-left: 15px;
  padding-right: 15px;
  display: flex;
}

.info-vertical-container {
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.info-link-subtext {
  color: var(--grey);
  font-size: 12px;
  font-weight: 300;
  line-height: 18px;
}

.info-dropdown-list-container {
  padding: 30px 30px 60px;
  font-family: Calibri, sans-serif;
  font-size: 16px;
  line-height: 26px;
}

.dropdown-block-container {
  justify-content: space-between;
  padding: 15px;
  display: flex;
}

.div-100 {
  flex-flow: column wrap;
  width: 100%;
  display: flex;
}

.div-100.heading-info {
  background-color: var(--dark-orange);
  padding: 90px 60px 30px;
  display: block;
}

.div-100.heading-info.green {
  background-color: var(--yellow-green);
}

.div-100.heading-info.cms-page {
  padding-bottom: 55px;
}

.div-100.heading-info.urgence {
  background-color: var(--red);
  padding-bottom: 55px;
}

.div-100.cms-text-container {
  text-align: justify;
  flex-direction: column;
  padding-top: 60px;
}

.div-100._2-pictures {
  flex-direction: row-reverse;
  justify-content: center;
  margin-top: 30px;
}

.div-100.plan-heading {
  border-bottom: 1px solid var(--light-grey);
  margin-bottom: 30px;
  padding-bottom: 20px;
}

.text-100 {
  width: 100%;
}

.cms-container {
  z-index: 1;
  background-color: var(--white);
  border-radius: 5px;
  flex-flow: wrap;
  align-items: flex-end;
  width: 100%;
  min-width: 960px;
  padding: 90px 60px;
  display: flex;
  position: relative;
  box-shadow: 0 0 10px #00000040;
}

.heading-cms {
  color: var(--dark-orange);
  text-align: left;
  min-height: 185px;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 38px;
  font-weight: 700;
  line-height: 44px;
}

.heading-cms.red {
  color: var(--red);
}

.heading-cms.green {
  color: var(--yellow-green);
}

.cms-text-date {
  color: var(--dark-grey);
  margin-bottom: 15px;
  font-size: 18px;
  font-weight: 700;
}

.cms-text-date.grey {
  color: var(--grey);
}

.cms-text-date.light-grey {
  color: var(--light-grey);
}

.cms-image {
  object-fit: cover;
  border-radius: 5px;
  max-height: 400px;
  position: absolute;
  inset: -192px 0% 0% auto;
  box-shadow: 0 0 10px #00000047;
}

.cms-image-container {
  justify-content: flex-end;
  width: 40%;
  margin-left: auto;
  display: flex;
  position: relative;
}

.cms-name {
  width: 60%;
  padding-right: 60px;
}

.cms-bg-color {
  z-index: 0;
  background-color: var(--dark-orange);
  width: 100%;
  height: 180px;
  position: absolute;
  inset: 0% 0% auto;
}

.cms-bg-color.green {
  background-color: var(--yellow-green);
}

.cms-bg-color.red {
  background-color: var(--red);
}

.header-message-empty {
  display: none;
}

.link-block-top-trigger {
  position: absolute;
  inset: 0%;
}

.emploi-container {
  border-top: 1px solid var(--light-grey);
  flex-direction: column;
  width: 100%;
  display: flex;
}

.empty-state {
  display: none;
}

.paragraph {
  margin-bottom: 15px;
}

.div-years-container {
  flex-direction: column;
  width: 30%;
  display: flex;
}

.div-content-listing {
  flex-wrap: wrap;
  width: 70%;
  padding-left: 60px;
  display: flex;
}

.listing-labels {
  border-bottom: 1px solid var(--light-grey);
  color: var(--grey-2);
  width: 100%;
  margin-top: 0;
  margin-bottom: 0;
  padding-bottom: 15px;
}

.year-link {
  color: var(--grey-2);
  align-items: center;
  padding: 15px;
  font-size: 18px;
  font-weight: 500;
  line-height: 24px;
  text-decoration: none;
  transition: color .2s;
  display: flex;
}

.year-link:hover, .year-link.w--current {
  color: var(--dark-orange);
}

.year-link.collection-link {
  justify-content: center;
}

.listing-year-container {
  flex-flow: column wrap;
  width: 20%;
}

.collection-list {
  flex-flow: wrap;
  justify-content: space-around;
  display: flex;
}

.collection-list-wrap {
  flex-wrap: wrap;
  width: 100%;
  display: flex;
}

.list-text {
  text-align: center;
}

.header-message-link {
  color: var(--white);
  justify-content: center;
  align-items: center;
  font-size: 12px;
  line-height: 18px;
  display: flex;
}

.header-message-link.collection-link:hover {
  color: #ffffffbf;
}

.rich-text-plus {
  opacity: 0;
  text-align: justify;
  flex-flow: wrap;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  height: 0;
  margin-bottom: 15px;
  font-size: 18px;
  line-height: 28px;
  display: none;
}

.rich-text-plus h4 {
  margin-top: 30px;
  margin-bottom: 15px;
}

.rich-text-plus h3 {
  margin-top: 0;
  margin-bottom: 15px;
}

.rich-text-plus a {
  color: var(--grey);
  transition: color .2s;
}

.rich-text-plus a:hover {
  color: var(--dark-grey);
}

.rich-text-plus img {
  border-radius: 5px;
  transition: transform .2s;
  box-shadow: 0 0 10px #00000040;
}

.rich-text-plus img:hover {
  transform: scale(1.05);
}

.div-maire-container {
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: 33.3333%;
  padding-right: 30px;
  display: flex;
}

.div-sieges-container {
  flex-wrap: wrap;
  width: 66.6667%;
  display: flex;
}

.maire-block {
  flex-direction: column;
  align-items: center;
  width: 100%;
  padding: 30px;
  display: flex;
}

.conseil-name {
  text-align: center;
  margin-bottom: 5px;
  font-size: 20px;
  font-weight: 700;
  line-height: 26px;
}

.conseil-telephone {
  text-align: center;
  margin-bottom: 5px;
  display: none;
}

.conseil-block {
  flex-direction: column;
  align-items: center;
  width: 40%;
  padding: 30px;
  display: flex;
}

.siege-text {
  margin-right: 5px;
}

.siege-row {
  border-bottom: 1px solid var(--light-grey);
  text-align: center;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-bottom: 5px;
  padding-bottom: 10px;
  display: flex;
}

.mandats-row {
  border-bottom: 1px solid var(--light-grey);
  text-align: center;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-bottom: 10px;
  padding-bottom: 5px;
  font-weight: 700;
  display: flex;
}

.mandats-row.maire {
  border-top: 1px solid var(--light-grey);
  padding-top: 5px;
}

.mandats-container {
  flex-direction: column;
  display: flex;
}

.mandat-text {
  text-align: left;
  margin-bottom: 5px;
  font-size: 11px;
  font-weight: 500;
  line-height: 19px;
}

.div-calendar-container {
  flex-wrap: wrap;
  width: 100%;
  display: flex;
}

.div-calendar-months {
  background-color: var(--red);
  color: var(--white);
  text-align: center;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 10px 15px;
  font-size: 18px;
  font-weight: 700;
  display: flex;
}

.div-calendar-day-names {
  border-left: 1px solid var(--light-grey);
  background-color: var(--light-grey);
  width: 100%;
  font-size: 16px;
  line-height: 22px;
  display: flex;
}

.calendar-arrows {
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  margin-left: 15px;
  margin-right: 15px;
  display: flex;
}

.calendar-arrows.right {
  transform: rotate(180deg);
}

.calendar-block {
  border-right: 1px solid var(--light-grey);
  border-bottom: 1px solid var(--light-grey);
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 14.2847%;
  min-height: 125px;
  padding: 15px;
  display: flex;
}

.calendar-block.greyed-out {
  background-color: var(--whitesmoke);
}

.calendar-block.current-day {
  background-color: #ffe7e7;
}

.div-calendar-days {
  border-left: 1px solid var(--light-grey);
  background-color: var(--white);
  flex-wrap: wrap;
  width: 100%;
  display: flex;
}

.day-name-block {
  border-right: 1px solid var(--light-grey);
  border-bottom: 1px solid var(--light-grey);
  justify-content: center;
  align-items: center;
  width: 14.2847%;
  padding: 15px;
  font-weight: 500;
  display: flex;
}

.div-calendar-filters {
  width: 100%;
  padding: 15px;
  display: flex;
}

.checkbox {
  border-color: var(--light-grey);
  border-radius: 5px;
  width: 20px;
  height: 20px;
  margin-top: 0;
  margin-left: 0;
  margin-right: 10px;
  padding: 5px;
}

.checkbox.w--redirected-checked {
  background-color: var(--red);
  background-size: 15px 15px;
  border-style: none;
}

.filter-block {
  align-items: center;
  margin-bottom: 0;
  margin-right: 30px;
  padding-left: 0;
  display: flex;
}

.calendar-date {
  width: 24px;
  margin-right: 10px;
  font-size: 20px;
}

.calendar-block-row {
  align-items: center;
  width: 100%;
  margin-bottom: 10px;
  display: flex;
}

.calendar-link {
  flex: 0 auto;
  align-items: flex-start;
  margin-bottom: 8px;
  display: flex;
}

.div-calendar-block {
  width: 100%;
  margin-bottom: 15px;
  box-shadow: 0 0 10px #00000040;
}

.div-calendar-activity {
  align-items: flex-start;
  display: flex;
}

.current-month {
  width: 120px;
}

.current-year {
  width: 60px;
}

.button-today {
  margin-left: 30px;
  margin-right: 30px;
}

.div-calendar-list-container {
  display: none;
}

.calendar-menu-block {
  align-items: center;
  display: flex;
}

.calendar-phone-block {
  border-right: 1px solid var(--light-grey);
  border-bottom: 1px solid var(--light-grey);
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 14.2847%;
  min-height: 125px;
  padding: 15px;
  display: flex;
}

.calendar-phone-block.greyed-out {
  background-color: var(--whitesmoke);
}

.calendar-phone-block.current-day {
  background-color: #ffe7e7;
}

.calendar-phone-date {
  width: 24px;
  margin-right: 10px;
  font-size: 20px;
}

.footer-social-link {
  color: var(--grey-2);
  align-items: center;
  font-weight: 500;
  display: flex;
}

.footer-social-link:hover {
  color: var(--dark-grey);
}

.iframe {
  width: 100%;
  height: 600px;
}

.link-block-2 {
  width: 24px;
  margin-right: 16px;
}

.div-proces {
  width: 100%;
  display: flex;
}

.text-block {
  display: inline-block;
}

.image-arrivants {
  margin-right: 15px;
}

.text-arrivants, .image-bienvenue {
  margin-left: auto;
  margin-right: auto;
}

.image-3 {
  z-index: 100;
  position: absolute;
}

.image-51 {
  margin-bottom: 20px;
}

.paragraph-2 {
  color: #65a30a;
  margin-bottom: 20px;
  font-weight: 700;
}

.div-50-2 {
  width: 50%;
}

.div-50-2.heures {
  text-align: center;
  border: 1px solid #ddd;
  border-radius: 5px;
  width: 50%;
  padding: 30px;
  box-shadow: 0 6px 10px #00000026;
}

.div-50-2.heure {
  border-left: 1px solid #ddd;
  width: 33%;
  padding: 10px;
}

.heading-2 {
  margin-top: 0;
  margin-bottom: 16px;
}

.div-100-2 {
  flex-wrap: wrap;
  width: 100%;
  display: flex;
}

.div-100-2.heures {
  border-top: 1px solid #ddd;
  border-right: 1px solid #ddd;
}

.div-100-2.heures.last {
  border-bottom: 1px solid #ddd;
}

.opacity-50 {
  opacity: .5;
}

.image-52 {
  margin-top: 28px;
  display: block;
}

.div-block-2 {
  width: 50%;
  padding-right: 16px;
}

.link-block-3 {
  flex: none;
  width: 48%;
}

.link-block-4 {
  flex: none;
}

.image2 {
  object-fit: cover;
  object-position: 50% 0%;
  width: 146px;
  height: 146px;
}

.image2.hidden {
  display: none;
}

.div-block-3 {
  flex-flow: column wrap;
  place-content: stretch flex-start;
  align-items: center;
  width: 100%;
  margin-top: 35px;
  display: flex;
}

.heading-3 {
  padding-bottom: 20px;
  display: block;
}

.paragraph-3 {
  width: 960px;
  padding-bottom: 20px;
}

.div-block-4 {
  align-items: flex-start;
  display: flex;
}

.div-block-4._2 {
  margin-top: 39px;
}

.text-span {
  margin-left: 20px;
  font-size: 33px;
  line-height: 0;
}

.form-grid {
  grid-template-areas: ". ."
                       ". ."
                       "Area Area";
}

.c-section {
  padding: 6.25rem 1.25rem;
  position: relative;
}

.c-container {
  max-width: 81.25rem;
  margin-left: auto;
  margin-right: auto;
}

.c-text-field {
  margin-bottom: 0;
  padding: 1.25rem 2rem;
  font-size: 1rem;
  line-height: 123%;
}

.p--lg {
  font-size: 1.25rem;
  line-height: 160%;
}

.c-textarea {
  min-width: 100%;
  max-width: 100%;
  min-height: 8rem;
  max-height: 12rem;
  margin-bottom: 0;
  padding: 1.25rem 2rem;
  font-size: 1rem;
  line-height: 100%;
}

.p--medium {
  font-weight: 500;
}

.tx--pink {
  color: #cf2e80;
}

.tx--align-left {
  text-align: right;
}

.c-button-primary {
  color: #000;
  text-align: center;
  letter-spacing: -.01em;
  background-color: #0000;
  min-width: 12.5rem;
  padding: 1rem 2rem;
  font-size: 1.1875rem;
  font-weight: 500;
  line-height: 90%;
  text-decoration: none;
  transition: color .3s ease-in-out, background-color .3s ease-in-out;
}

.c-button-primary:hover {
  color: #000;
}

.c-button-primary.c-button-primary--gainsboro {
  background-color: #dbe5e6;
  border: 2px solid #dbe5e6;
}

.c-button-primary.c-button-primary--gainsboro:hover {
  background-color: #0000;
}

.section-13 {
  background-color: #774f91;
  padding-top: 10px;
  padding-bottom: 10px;
}

.container-2 {
  height: auto;
}

.columns {
  margin: 0;
}

.firstcolumn {
  background-color: #0000;
  padding-left: 0;
  padding-right: 0;
}

.column {
  padding-left: 0;
  padding-right: 0;
}

.div-block-5 {
  border-radius: 4px;
  padding: 16px;
  display: block;
}

.html-embed-2 {
  height: 400px;
}

html.w-mod-js [data-ix="load-anim-slide-left"], html.w-mod-js [data-ix="load-anim-slide-left-2"], html.w-mod-js [data-ix="load-anim-slide-left-3"] {
  opacity: 0;
  transform: translate(-30px);
}

html.w-mod-js [data-ix="load-anim-opacity"] {
  opacity: 0;
}

html.w-mod-js [data-ix="scroll-anim-slide-up"], html.w-mod-js [data-ix="scroll-anim-slide-up-delay"] {
  opacity: 0;
  transform: translate(0, 30px);
}

@media screen and (max-width: 991px) {
  .brand {
    width: 100px;
  }

  .hero {
    height: 600px;
  }

  .nav-info {
    margin-left: 0;
  }

  .nav-row.margin-bottom.mobile {
    margin-bottom: 10px;
  }

  .icon {
    width: 20px;
  }

  .section {
    padding-left: 30px;
    padding-right: 30px;
  }

  .navbar {
    display: none;
  }

  .hero-content {
    padding-top: 90px;
    padding-left: 60px;
    padding-right: 60px;
  }

  .hero-heading {
    font-size: 38px;
    line-height: 44px;
  }

  .button {
    padding: 10px;
  }

  .button._2 {
    margin-left: 20px;
  }

  .navbar-mobile {
    border-bottom: 1px solid var(--light-grey);
    background-color: var(--white);
    align-items: flex-start;
    width: 100%;
    height: 90px;
    padding-left: 30px;
    padding-right: 30px;
    display: flex;
    position: fixed;
    box-shadow: 0 0 5px #00000040;
  }

  .menu-button {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-left: 20px;
    padding: 10px;
    display: flex;
  }

  .menu-button.w--open {
    background-color: #0000;
  }

  .nav-mobile-right-container {
    align-items: center;
    height: 100%;
    margin-left: auto;
    display: flex;
  }

  .nav-mobile-secondary {
    flex-direction: column;
    align-items: flex-start;
    padding: 30px;
    display: flex;
  }

  .nav-link-secondary-mobile {
    color: var(--grey-2);
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 22px;
    text-decoration: none;
  }

  .nav-link-secondary-mobile:hover {
    color: var(--dark-grey);
  }

  .nav-menu-mobile {
    background-color: var(--whitesmoke);
    height: 80vh;
    padding-top: 30px;
    padding-bottom: 30px;
    overflow: auto;
  }

  .dropdown-mobile-primary {
    width: 100%;
  }

  .dropdown-toggle-primary {
    border-bottom: 1px solid var(--light-grey);
    width: 100%;
    padding-left: 30px;
    font-size: 24px;
    font-weight: 600;
    line-height: 30px;
    transition: color .2s;
  }

  .dropdown-toggle-primary:hover {
    color: var(--dark-orange);
  }

  .dropdown-toggle-primary.w--open {
    border-bottom-color: var(--whitesmoke);
    color: var(--dark-orange);
  }

  .nav-link-mobile {
    border-bottom: 1px solid var(--light-grey);
    color: var(--dark-grey);
    text-align: left;
    width: 100%;
    padding: 20px 30px;
    font-size: 24px;
    font-weight: 600;
    line-height: 30px;
    text-decoration: none;
    transition: color .2s;
    display: block;
  }

  .nav-link-mobile:hover {
    color: var(--dark-orange);
  }

  .dropdown-list-mobile-primary {
    border-bottom: 1px solid var(--light-grey);
    background-color: #0000;
    height: 0;
    position: relative;
    overflow: hidden;
  }

  .dropdown-list-mobile-primary.w--open {
    height: auto;
  }

  .dropdown-mobile-secondary {
    width: 100%;
  }

  .dropdown-toggle-secondary {
    width: 100%;
    padding-left: 30px;
    font-size: 18px;
    font-weight: 500;
    line-height: 24px;
    transition: color .2s;
  }

  .dropdown-toggle-secondary:hover, .dropdown-toggle-secondary.w--open {
    color: var(--dark-orange);
  }

  .dropdown-list-mobile-secondary {
    background-color: #0000;
    height: 0;
    position: relative;
    overflow: hidden;
  }

  .dropdown-list-mobile-secondary.w--open {
    background-color: #0000;
    height: auto;
    position: static;
  }

  .nav-dropdown-link-mobile {
    padding-left: 30px;
    padding-right: 30px;
    transition: color .2s;
  }

  .nav-dropdown-link-mobile:hover, .nav-dropdown-link-mobile.w--current {
    color: var(--red);
  }

  .button-text {
    font-size: 12px;
  }

  .container {
    min-width: 0;
  }

  .div-block {
    width: 32%;
  }

  .block-image-container {
    width: 30vw;
    height: 30vw;
  }

  .block-title {
    font-size: 24px;
    line-height: 30px;
  }

  .heading.page-heading {
    font-size: 46px;
    line-height: 52px;
  }

  .news-block {
    min-height: 200px;
  }

  .news-image-container {
    width: 20vw;
  }

  .footer {
    padding-left: 30px;
    padding-right: 30px;
  }

  .div-50.heading-info {
    padding: 60px 30px;
  }

  .div-50.heading-info-alt, .div-50.urgence-heading {
    background-color: var(--whitesmoke);
    color: var(--dark-grey);
    padding: 60px 30px;
  }

  .div-50.heading-info-conseil {
    background-color: var(--whitesmoke);
    color: var(--dark-grey);
    padding-top: 60px;
    padding-left: 30px;
    padding-right: 30px;
  }

  .footer-link {
    width: 45%;
    margin-right: 5%;
  }

  .section-heading-content {
    padding-top: 90px;
  }

  .section-dropdown-block, .info-link-container, .info-dropdown-text-container, .text-content-container {
    width: 100%;
  }

  .div-25.list {
    width: 33.3333%;
  }

  .dropdown-container, .dropdown-block-container {
    padding-bottom: 20px;
  }

  .div-100.heading-info {
    padding: 60px 30px;
  }

  .div-100.heading-info.cms-page, .div-100.heading-info.urgence {
    padding-bottom: 30px;
  }

  .div-100.cms-align {
    flex-direction: column-reverse;
  }

  .div-100.cms-text-container {
    padding-top: 30px;
    padding-left: 30px;
    padding-right: 30px;
  }

  .cms-container {
    border-style: none;
    min-width: 0;
    padding: 0 0 60px;
  }

  .heading-cms {
    min-height: 0;
  }

  .cms-image {
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
    width: 100%;
    max-height: none;
    position: static;
  }

  .cms-image-container {
    justify-content: flex-start;
    width: 100%;
    margin-bottom: 30px;
    padding-top: 30px;
    padding-left: 30px;
    padding-right: 50%;
  }

  .cms-name {
    width: 100%;
    padding-left: 30px;
    padding-right: 30px;
  }

  .div-content-listing {
    padding-left: 30px;
  }

  .listing-year-container {
    width: 25%;
  }

  .div-maire-container, .div-sieges-container {
    width: 49%;
  }

  .conseil-block {
    width: 80%;
  }

  .calendar-block {
    min-height: 100px;
  }

  .calendar-date {
    font-size: 16px;
  }

  .calendar-link {
    font-size: 10px;
    line-height: 16px;
  }

  .calendar-phone-block {
    min-height: 100px;
  }

  .calendar-phone-date {
    font-size: 16px;
  }

  .div-50-2.heures {
    flex-direction: column;
    flex: none;
    display: flex;
  }

  .ici-qc {
    display: block;
  }

  .paragraph-3 {
    width: 100%;
  }

  .p--lg {
    font-size: 1.25rem;
  }

  .columns {
    margin-left: 0;
    margin-right: 0;
  }

  .div-block-5 {
    margin-left: 0;
  }
}

@media screen and (max-width: 767px) {
  .hero {
    height: 500px;
  }

  .icon {
    width: 24px;
  }

  .nav-dropdown-block3 {
    width: 50%;
  }

  .dropdown-arrow {
    right: 15px;
  }

  .section {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .nav-dropdown-block1, .nav-dropdown-block2 {
    width: 50%;
  }

  .hero-content {
    padding-left: 30px;
    padding-right: 30px;
  }

  .hero-line {
    width: 200px;
  }

  .button {
    padding: 10px;
  }

  .button._2 {
    margin-top: 10px;
    margin-left: 0;
  }

  .navbar-mobile {
    padding-left: 15px;
    padding-right: 15px;
  }

  .header-message-urgence {
    font-size: 12px;
    line-height: 18px;
  }

  .warning-icon {
    margin-left: 5px;
    margin-right: 5px;
  }

  .div-block {
    width: 100%;
    margin-bottom: 30px;
    margin-left: 0%;
    margin-right: 0%;
  }

  .block-image-container {
    width: 70vw;
    height: 70vw;
    margin-left: auto;
    margin-right: auto;
  }

  .heading {
    margin-bottom: 30px;
    font-size: 38px;
    line-height: 44px;
  }

  .news-block {
    flex-flow: wrap-reverse;
    padding-left: 0%;
    padding-right: 0%;
  }

  .news-date {
    flex-direction: row;
    justify-content: flex-start;
    width: 100%;
  }

  .news-title {
    width: 100%;
    padding-top: 15px;
    padding-bottom: 15px;
    padding-right: 0;
  }

  .news-image-container {
    width: 70vw;
    height: 70vw;
    margin-left: auto;
    margin-right: auto;
  }

  .news-date-text {
    margin-right: 10px;
    font-size: 20px;
    line-height: 26px;
  }

  .footer {
    padding-top: 60px;
  }

  .footer-content {
    padding-bottom: 0;
  }

  .div-50.footer-50 {
    width: 100%;
    margin-bottom: 30px;
    padding-right: 0;
  }

  .div-50.heading-info, .div-50.contact-picture, .div-50.heading-info-alt, .div-50.urgence-heading, .div-50.heading-info-conseil {
    width: 100%;
  }

  .section-heading-content {
    flex-direction: column-reverse;
    max-height: none;
  }

  .section-dropdown-block {
    width: 100%;
    margin-left: 0%;
    margin-right: 0%;
  }

  .info-link-block {
    padding-left: 15px;
    padding-right: 50px;
  }

  .icon-container {
    right: 15px;
  }

  .rich-text {
    width: 100%;
  }

  .rich-text.pad16 {
    width: 100%;
    padding-right: 0;
  }

  .text-content-container {
    flex-wrap: wrap;
    justify-content: center;
  }

  .image.left-image {
    max-width: 50%;
    margin-bottom: 30px;
    margin-right: 0;
  }

  .image.left-image.centre-multifonctionnel {
    width: 100%;
    max-width: 100%;
  }

  .image.right-image {
    max-width: 50%;
    margin-bottom: 30px;
    margin-left: 0;
  }

  .image.right-image.image-text-block {
    width: 100%;
    max-width: 100%;
  }

  .image.image-50 {
    width: 100%;
    margin-bottom: 30px;
  }

  .dropdown-content-container {
    padding-bottom: 0;
  }

  .div-25 {
    width: 50%;
  }

  .div-25.vertical-center {
    margin-bottom: 30px;
  }

  .div-33.vertical-center {
    width: 50%;
    margin-bottom: 30px;
  }

  .info-dropdown-list-container {
    padding: 15px 15px 30px;
  }

  .div-100.cms-text-container {
    padding-top: 0;
  }

  .div-100._2-pictures {
    flex-direction: column;
  }

  .heading-cms {
    margin-bottom: 30px;
    font-size: 38px;
    line-height: 44px;
  }

  .heading-cms.red, .heading-cms.green {
    font-size: 30px;
    line-height: 36px;
  }

  .div-years-container {
    width: 100%;
    margin-bottom: 30px;
  }

  .div-content-listing {
    width: 100%;
    padding-left: 0;
  }

  .year-link {
    border-bottom-style: none;
    justify-content: center;
  }

  .listing-year-container {
    width: 25%;
  }

  .header-message-link {
    line-height: 16px;
  }

  .div-maire-container {
    width: 100%;
    padding-right: 0;
  }

  .div-sieges-container {
    width: 100%;
  }

  .conseil-block {
    width: 90%;
  }

  .div-calendar-container {
    display: none;
  }

  .div-calendar-months {
    flex-wrap: wrap-reverse;
    justify-content: space-around;
  }

  .calendar-arrows {
    width: 30px;
    height: 30px;
    margin-left: 5px;
    margin-right: 5px;
    font-size: 14px;
    line-height: 20px;
  }

  .calendar-block {
    border-left: 1px solid var(--light-grey);
    flex-direction: row;
    width: 100%;
  }

  .div-calendar-days {
    border-left-style: none;
    flex-direction: column;
  }

  .calendar-date {
    margin-bottom: 10px;
    margin-right: 0;
    font-size: 20px;
    font-weight: 500;
    line-height: 26px;
  }

  .calendar-block-row {
    flex-direction: column;
    align-items: flex-start;
    width: auto;
  }

  .calendar-link {
    margin-bottom: 10px;
    font-size: 14px;
    line-height: 20px;
  }

  .current-month, .current-year {
    font-size: 18px;
    line-height: 20px;
  }

  .activity-text {
    font-size: 18px;
  }

  .button-today {
    width: 100%;
    margin-bottom: 5px;
    margin-left: 15px;
    margin-right: 15px;
    font-size: 18px;
    line-height: 20px;
  }

  .div-calendar-list-container {
    flex-flow: column wrap;
    width: 100%;
    display: flex;
    box-shadow: 0 0 10px #0000005c;
  }

  .calendar-list-block {
    border-right: 1px solid var(--light-grey);
    border-bottom: 1px solid var(--light-grey);
    border-left: 1px solid var(--light-grey);
    flex-direction: column;
    align-items: flex-start;
    padding: 15px;
    display: flex;
  }

  .calendar-list-block.current-day {
    background-color: #ffe7e7;
  }

  .calendar-list-title {
    width: 100%;
    margin-bottom: 10px;
    display: flex;
  }

  .calendar-month {
    border-bottom: 1px solid var(--light-grey);
    justify-content: center;
    align-items: center;
    margin-top: 0;
    margin-bottom: 0;
    padding-bottom: 10px;
    display: flex;
  }

  .calendar-month-title {
    margin-top: 0;
    margin-bottom: 0;
  }

  .calendar-block-link-container {
    flex-direction: column;
    padding-left: 15px;
    display: flex;
  }

  .calendar-phone-block {
    border-left: 1px solid var(--light-grey);
    flex-direction: row;
    width: 100%;
  }

  .calendar-phone-date {
    width: 80px;
    margin-bottom: 10px;
    margin-right: 0;
    font-size: 20px;
    font-weight: 500;
    line-height: 26px;
  }

  .text-arrivants {
    text-align: center;
    font-size: 16px;
  }

  .image-bienvenue {
    margin-bottom: 60px;
  }

  .div-50-2.heures {
    width: 100%;
  }

  .div-block-2 {
    width: 100%;
    padding-right: 0;
  }

  .div-block-4 {
    flex-direction: column;
  }

  .c-section {
    padding: 3.75rem 1.125rem;
  }

  .p--lg {
    font-size: 1.125rem;
    line-height: 144%;
  }

  .c-button-primary:hover {
    color: #000;
  }

  .div-block-5 {
    margin: 10px 10px 0;
  }
}

@media screen and (max-width: 479px) {
  .brand {
    width: 90px;
  }

  .nav-row {
    font-size: 10px;
    line-height: 16px;
  }

  .nav-row.margin-bottom.mobile {
    margin-bottom: 5px;
  }

  .nav-row-note {
    display: none;
  }

  .icon {
    margin-right: 5px;
  }

  .nav-dropdown-block3 {
    width: 100%;
  }

  .dropdown-arrow {
    right: 0;
  }

  .section {
    padding-left: 15px;
    padding-right: 15px;
  }

  .nav-dropdown-block1, .nav-dropdown-block2 {
    width: 100%;
  }

  .hero-content {
    padding-left: 15px;
    padding-right: 15px;
  }

  .hero-heading {
    font-size: 30px;
    line-height: 36px;
  }

  .hero-line {
    width: 150px;
  }

  .menu-button {
    margin-left: 10px;
  }

  .heading.page-heading.white {
    font-size: 30px;
    line-height: 36px;
  }

  .footer {
    padding-left: 15px;
    padding-right: 15px;
  }

  .footer-credits {
    text-align: center;
  }

  .div-50.heading-info, .div-50.heading-info-alt, .div-50.urgence-heading {
    padding: 30px 15px;
  }

  .div-50.heading-info-conseil {
    padding-top: 30px;
    padding-left: 15px;
    padding-right: 15px;
  }

  .info-link-block {
    padding-left: 0;
    padding-right: 35px;
    font-size: 16px;
    line-height: 22px;
  }

  .icon-container {
    right: 0;
  }

  .icon-absolute {
    width: 15px;
    margin-right: 5px;
  }

  .div-25.vertical-center {
    width: 100%;
  }

  .div-25.list {
    width: 50%;
    padding-left: 5px;
    padding-right: 5px;
  }

  .div-33.vertical-center {
    width: 100%;
  }

  .info-dropdown-list-container {
    padding-left: 0;
    padding-right: 0;
  }

  .div-100.heading-info {
    padding-bottom: 30px;
    padding-left: 15px;
    padding-right: 15px;
  }

  .div-100.heading-info.cms-page {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .div-100.heading-info.urgence {
    padding-bottom: 60px;
  }

  .div-100.cms-text-container {
    padding-left: 15px;
    padding-right: 15px;
  }

  .cms-container {
    padding-bottom: 30px;
    top: -60px;
  }

  .cms-image-container {
    padding-top: 0;
    padding-left: 0%;
    padding-right: 0%;
  }

  .cms-name {
    padding-left: 15px;
    padding-right: 15px;
  }

  .list-text {
    padding-left: 5px;
    padding-right: 5px;
  }

  .conseil-block {
    width: 100%;
  }

  .div-calendar-months {
    justify-content: center;
  }

  .calendar-arrows {
    margin-left: 5px;
    margin-right: 5px;
  }

  .button-today {
    margin-left: 15px;
    margin-right: 15px;
  }

  .calendar-phone-date {
    width: 60px;
  }

  .text-arrivants {
    font-size: 14px;
    line-height: 24px;
  }

  .div-50-2, .div-50-2.heure {
    width: 100%;
  }

  .columns {
    margin-top: 13px;
    margin-bottom: 24px;
  }
}


@font-face {
  font-family: 'Manrope';
  src: url('/Fonts/SEMIBOLD.OTF') format('opentype');
  font-weight: 600;
  font-style: normal;
  font-display: auto;
}
@font-face {
  font-family: 'Manrope';
  src: url('/Fonts/THIN.OTF') format('opentype');
  font-weight: 100;
  font-style: normal;
  font-display: auto;
}
@font-face {
  font-family: 'Manrope';
  src: url('/Fonts/MEDIUM.OTF') format('opentype');
  font-weight: 500;
  font-style: normal;
  font-display: auto;
}
@font-face {
  font-family: 'Manrope';
  src: url('/Fonts/BOLD.OTF') format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: auto;
}
@font-face {
  font-family: 'Manrope';
  src: url('/Fonts/REGULAR.OTF') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: auto;
}
@font-face {
  font-family: 'Manrope';
  src: url('/Fonts/LIGHT.OTF') format('opentype');
  font-weight: 300;
  font-style: normal;
  font-display: auto;
}
@font-face {
  font-family: 'Calibri';
  src: url('/Fonts/Calibri-Bold.TTF') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: auto;
}
@font-face {
  font-family: 'Calibri';
  src: url('/Fonts/Calibri-Italic.ttf') format('truetype');
  font-weight: 400;
  font-style: italic;
  font-display: auto;
}
@font-face {
  font-family: 'Calibri';
  src: url('/Fonts/Calibri-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: auto;
}
@font-face {
  font-family: 'Calibri';
  src: url('/Fonts/Calibri-Bold-Italic.ttf') format('truetype');
  font-weight: 700;
  font-style: italic;
  font-display: auto;
}
@font-face {
  font-family: 'Calibri';
  src: url('/Fonts/Calibri-Light.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
  font-display: auto;
}
@font-face {
  font-family: 'Calibri';
  src: url('/Fonts/Calibri-Light-Italic.ttf') format('truetype');
  font-weight: 300;
  font-style: italic;
  font-display: auto;
}