﻿@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: #fdb800;
  --grey-2: #666;
  --red: #fe0000;
  --white: white;
  --grey: #929497;
  --light-grey: #d4d4d4;
  --whitesmoke: #f8fcff;
  --steel-blue: #006fbf;
  --yellow-green: #8fce4e;
  --dark-slate-blue: #003963;
  --green: #129a12;
  --gold: #ffda20;
  --dark-green: #193308;
}

body {
  color: var(--dark-grey);
  font-family: Calibri, sans-serif;
  font-size: 14px;
  font-style: italic;
  font-weight: 500;
  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;
}

strong {
  font-weight: bold;
}

.brand {
  z-index: 1000;
  background-color: var(--white);
  border-radius: 2px;
  width: 137px;
  margin-top: auto;
  margin-bottom: auto;
  padding: 2px;
  box-shadow: 1px 0 3px 1px #00000021;
}

.brand.w--current {
  background-color: var(--white);
}

.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-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.nav-phone {
  font-size: 18px;
}

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

.brand-image {
  width: 100%;
}

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

.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);
}

.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 {
  justify-content: center;
  align-items: flex-start;
  padding: 90px 60px;
  display: flex;
}

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

.section.contrast-bg.election {
  display: block;
}

.section.contrast-bg.no-bottom {
  padding-bottom: 0;
}

.section.blue-bg {
  background-color: var(--steel-blue);
}

.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;
}

.section.candidats {
  display: block;
}

.section.no-bottom {
  padding-bottom: 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;
}

.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);
  text-shadow: 0 0 10px #0000004d;
  background-color: #536c4e3d;
  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(--steel-blue);
  color: var(--white);
  text-transform: uppercase;
  border-radius: 50px;
  padding: 20px;
  font-weight: 700;
  text-decoration: none;
  transition: box-shadow .5s, transform .5s;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 10px #00000026;
}

.button:hover {
  color: var(--white);
  transform: scale(1.025);
  box-shadow: 0 0 20px #0000004d;
}

.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.left {
  margin-right: 10px;
}

.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);
}

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

.button-bg-color-anim {
  z-index: 0;
  background-color: var(--dark-slate-blue);
  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;
}

.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: 29%;
  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;
  width: 100%;
  height: 100%;
}

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

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

.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(--steel-blue);
  text-align: center;
  margin-top: 0;
  margin-bottom: 60px;
  font-size: 46px;
  font-weight: 700;
  line-height: 52px;
}

.heading.green {
  color: var(--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%;
  min-height: 350px;
  margin-bottom: 30px;
  padding: 30px 2%;
  text-decoration: none;
  display: flex;
}

.news-date {
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  width: 20%;
  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: 50%;
  padding-right: 60px;
  display: flex;
}

.news-image-container {
  border-radius: 20px;
  width: 30%;
  overflow: hidden;
  box-shadow: 0 0 10px #00000026;
}

.news-date-text {
  color: var(--steel-blue);
  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;
}

.footer-credits._2 {
  justify-content: center;
  padding-top: 0;
  display: flex;
}

.div-50 {
  width: 50%;
}

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

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

.div-50.contact-picture {
  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: 120px 60px 0;
}

.div-50.histoire-image {
  justify-content: center;
  align-items: stretch;
  padding-left: 30px;
  display: flex;
}

.div-50.padding-25 {
  padding-top: 30px;
  padding-left: 5%;
  padding-right: 5%;
}

.div-50.padding-25.centered {
  margin-left: auto;
  margin-right: auto;
}

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

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

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

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

.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);
}

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

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

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

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

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

.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(--whitesmoke);
  opacity: .5;
  color: var(--dark-grey);
  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: flex-start;
  align-items: flex-start;
  width: 100%;
  display: flex;
}

.section-dropdown-block {
  align-items: center;
  width: 31%;
  margin-bottom: 30px;
  margin-left: 1%;
  margin-right: 1%;
}

.conseil-dropdown-toggle {
  background-color: var(--white);
  color: var(--dark-slate-blue);
  border-radius: 20px;
  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(--steel-blue);
}

.conseil-dropdown-toggle.w--open {
  z-index: 1;
  color: var(--steel-blue);
}

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

.dropdown-list-block.w--open {
  border-bottom-right-radius: 20px;
  border-bottom-left-radius: 20px;
  height: auto;
  margin-top: -20px;
  padding-top: 20px;
}

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

.contact-services-title.hidden {
  display: none;
}

.contact-services-subtext {
  margin-bottom: 10px;
  font-size: 14px;
  line-height: 20px;
}

.contact-services-subtext.hidden {
  display: none;
}

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

.link-services:hover {
  color: var(--steel-blue);
}

.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(--dark-orange);
  margin-right: 15px;
  text-decoration: none;
  transition: color .2s;
}

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

.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 {
  border-top: 1px solid var(--light-grey);
  flex-direction: column;
  width: 960px;
  display: flex;
}

.info-link-container.nobar {
  border-top-style: none;
  border-top-width: 0;
}

.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, .info-link-block.nolink: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 {
  text-align: justify;
  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(--gold);
}

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

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

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

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

.text-content-container {
  text-align: justify;
  flex-wrap: wrap;
  justify-content: center;
  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.no-wrap {
  flex-flow: column;
}

.text-content-container._2 {
  margin-top: 30px;
}

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

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

.image.left-image {
  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.full {
  width: 100%;
}

.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%;
}

.image.histoire-image {
  width: 75%;
}

.image.salle-multi {
  width: 35%;
  margin-right: 30px;
}

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

.image.salle-multi.no-shadow {
  box-shadow: none;
}

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

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

.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-25.links {
  width: 100%;
}

.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 {
  padding: 15px 15px 30px;
}

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

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

.div-100.heading-info.red {
  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: space-between;
  margin-top: 30px;
}

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

.div-100.text-pic {
  flex-direction: row;
  align-items: center;
  margin-bottom: 30px;
}

.div-100.salle-multi {
  flex-direction: row;
  align-items: flex-start;
}

.text-100 {
  width: 100%;
}

.text-100.margin-bottom {
  margin-bottom: 30px;
}

.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: center;
  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;
  justify-content: center;
  width: 100%;
  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: 30%;
  padding: 30px;
  display: flex;
}

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

.siege-row {
  text-align: center;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-bottom: 5px;
  display: flex;
}

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

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

.mandats-row.hidden {
  display: none;
}

.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(--steel-blue);
  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: #dff3ff;
}

.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 {
  color: var(--steel-blue);
  flex: 0 auto;
  align-items: flex-start;
  margin-bottom: 8px;
  display: flex;
}

.calendar-link:hover {
  color: var(--gold);
}

.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;
}

.hero-slide-image-container-2 {
  background-color: #333;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
}

.salle-multi-block {
  width: 50%;
}

.salle-multi-block.footer-50 {
  padding-right: 60px;
}

.salle-multi-block.heading-info {
  background-color: var(--red);
  color: var(--white);
  padding: 90px 60px;
}

.salle-multi-block.contact-picture {
  height: auto;
  position: relative;
}

.salle-multi-block.heading-info-alt {
  background-color: var(--whitesmoke);
  padding: 90px 60px;
}

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

.salle-multi-block.heading-info-conseil {
  background-color: var(--whitesmoke);
  width: 100%;
  padding: 120px 60px 0;
}

.salle-multi-block.histoire-image {
  justify-content: center;
  align-items: stretch;
  padding-left: 30px;
  display: flex;
}

.salle-multi-block.padding-25 {
  padding-top: 30px;
  padding-left: 5%;
  padding-right: 5%;
}

.salle-multi-block.padding-25.centered {
  margin-left: auto;
  margin-right: auto;
}

.image-row-container {
  flex-wrap: wrap;
  width: 960px;
  padding-top: 30px;
  display: flex;
}

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

.rich-text-block {
  letter-spacing: normal;
}

.mt-30 {
  margin-top: 30px;
}

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

.elu {
  color: var(--red);
  padding-right: 6px;
  font-size: 26px;
  line-height: 29px;
  display: inline-block;
}

.info {
  padding-right: 0;
  font-size: 21px;
  font-weight: 700;
  display: inline-block;
}

.info.colon {
  padding-right: 4px;
}

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

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

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

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

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

.text-block-2 {
  font-size: 20px;
  line-height: 26px;
}

.heading-2 {
  margin-bottom: 35px;
}

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

.div-block-2 {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 128px;
  height: 128px;
  display: flex;
}

.image-51 {
  object-fit: cover;
}

.div-block-3 {
  margin-top: 18px;
}

.div-block-4 {
  width: 900px;
  display: flex;
}

.rich-text-block-2 {
  margin-bottom: 30px;
  margin-left: 60px;
  font-size: 18px;
}

.div-block-5 {
  width: 300px;
  min-width: 300px;
}

.text-block-4 {
  width: 100%;
}

.collection.hidden {
  display: none;
}

.w-dyn-list.list-33 {
  justify-content: center;
  width: 100%;
  display: flex;
}

.w-dyn-items.c-grid-galerie._2 {
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
  display: flex;
}

.w-dyn-item.item-list {
  width: 30%;
  margin-bottom: 100px;
  padding-left: 20px;
  padding-right: 20px;
}

.img-fit--cover {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.date-cms {
  text-align: center;
}

.collection-list-wrapper-2 {
  width: 100%;
}

.conseil-name-2 {
  text-align: center;
  width: 100%;
  margin-bottom: 33px;
  font-size: 30px;
  font-weight: 700;
  line-height: 26px;
}

.conseil-block-2 {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  display: flex;
}

.link-2 {
  font-size: 18px;
}

.text-block-5 {
  margin-bottom: 26px;
}

.c-absolute--full {
  position: absolute;
  inset: 0%;
}

.image-52 {
  width: 34vw;
  margin-top: 19px;
}

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;
    box-shadow: 1px 0 3px 1px #00000021;
  }

  .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;
  }

  .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);
  }

  .container {
    min-width: 0;
  }

  .block-image-container {
    height: 200px;
  }

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

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

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

  .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 {
    width: 48%;
  }

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

  .image.left-image {
    width: 150%;
  }

  .image.histoire-image {
    width: 100%;
  }

  .image.salle-multi {
    width: 150%;
  }

  .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 {
    width: 49%;
  }

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

  .conseil-block {
    width: 40%;
  }

  .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;
  }

  .salle-multi-block.heading-info {
    padding: 60px 30px;
  }

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

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

  .image-row-container {
    width: 100%;
  }

  .mb-30 {
    margin-bottom: 30px;
  }

  .mt-30 {
    margin-top: 30px;
  }

  .div-block-4 {
    flex-direction: row;
    width: 90%;
  }

  .div-block-5 {
    margin-left: auto;
    margin-right: auto;
  }

  .image-52 {
    width: 58vw;
  }
}

@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: 15px;
  }

  .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 {
    height: 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: 100%;
  }

  .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;
  }

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

  .text-content-container.no-wrap {
    flex-wrap: wrap;
  }

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

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

  .image.left-image.full {
    max-width: 75%;
  }

  .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;
  }

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

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

  .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 {
    font-size: 10px;
    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;
  }

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

  .salle-multi-block.heading-info, .salle-multi-block.contact-picture, .salle-multi-block.heading-info-alt, .salle-multi-block.urgence-heading, .salle-multi-block.heading-info-conseil {
    width: 100%;
  }

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

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

  .rich-text-block-2 {
    margin-left: 0;
  }

  .div-block-6 {
    margin-top: 60px;
  }

  .w-dyn-items.c-grid-galerie._2 {
    flex-direction: column;
    align-items: center;
  }

  .w-dyn-item.item-list {
    width: 100%;
  }
}

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

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

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

  .nav-row.nav-phone {
    font-size: 14px;
    line-height: 20px;
  }

  .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;
  }

  .button.right, .button.left {
    font-size: 12px;
  }

  .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;
  }

  .div-50.histoire-image {
    width: 100%;
    padding-top: 30px;
    padding-left: 0;
  }

  .div-50.histoire-text, .div-50.padding-25 {
    width: 100%;
  }

  .div-50.vertical-center {
    width: 100%;
    max-width: 75%;
  }

  .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;
  }

  .image.left-image {
    max-width: 75%;
  }

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

  .image.salle-multi {
    max-width: 75%;
  }

  .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;
  }

  .salle-multi-block.heading-info, .salle-multi-block.heading-info-alt, .salle-multi-block.urgence-heading {
    padding: 30px 15px;
  }

  .salle-multi-block.heading-info-conseil {
    padding-top: 30px;
    padding-left: 15px;
    padding-right: 15px;
  }

  .salle-multi-block.histoire-image {
    width: 100%;
    padding-top: 30px;
    padding-left: 0;
  }

  .salle-multi-block.histoire-text, .salle-multi-block.padding-25 {
    width: 100%;
  }

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

  .div-block-5 {
    width: 200px;
    min-width: 200px;
  }

  .conseil-block-2 {
    width: 100%;
  }

  .image-52 {
    width: 90vw;
  }
}


@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;
}