@charset "UTF-8";
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "Inter";
}

:root {
  --blanc: #FFFFFF;
  --gris: #F5F2EE;
  --jaune: #F8BF0D;
  --noir: #000000;
  --rouge: #D52327;
  --rouge-fonce: #701717;
}

::after, ::before {
  box-sizing: inherit;
}

html, body {
  position: relative;
  font-size: 1em;
  overflow-x: hidden;
}

body {
  background-color: var(--gris);
}

img {
  max-width: 100%;
  height: auto;
}

h1, h2, h3, h4, h5, h6, p, ul, ol, li, dl, dt, dd {
  margin: 0;
  padding: 0;
  line-height: 1;
}

h2 {
  margin: 0.5em 0;
}

h3 {
  width: -moz-max-content;
  width: max-content;
  max-width: 100%;
  padding: 0.5em 1em;
  margin: 2em 0 1em;
}

h4 {
  margin: 0.5em 0;
}

h5 {
  margin: 0.8em 0;
}

h6 {
  margin: 0.6em 0;
}

p {
  font-size: 1.1em;
  line-height: 1.4;
  margin-bottom: 1em;
}
p > a {
  color: var(--rouge);
  position: relative;
}
p > a:after {
  content: "";
  width: 100%;
  height: 1px;
  background-color: var(--rouge);
  position: absolute;
  bottom: 0;
  left: 0;
  transition: ease-in-out 0.3s;
}
p > a:hover:after {
  width: 0;
}

a {
  text-decoration: none;
  line-height: 1.1;
  color: var(--noir);
}

ul, ol {
  margin: 0 0 1em 16px;
}
ul > li, ol > li {
  line-height: 1.2;
  margin-bottom: 0.6em;
}

.containerL {
  max-width: 1320px;
  width: 95%;
  margin: auto;
}

.container_small {
  max-width: 1100px;
  width: 90%;
  margin: auto;
}

.btn {
  display: flex;
  align-items: center;
  gap: 10px;
  width: -moz-max-content;
  width: max-content;
  max-width: 100%;
  padding: 0.6rem calc(1rem + 10px) 0.6rem 1rem;
  background-color: var(--rouge);
  border: 2px solid var(--rouge);
  border-radius: 50px;
  color: var(--blanc);
  font-weight: 600;
  text-transform: lowercase;
  transition: all 0.3s;
}
.btn:hover {
  gap: 20px;
  padding-right: 1rem;
}

/* MEDIA QUERIES */
@media screen and (max-width: 1440px) {
  .containerL {
    max-width: 1140px;
  }
}
@media screen and (max-width: 1200px) {
  .containerL {
    max-width: 960px;
  }
  .container_small {
    max-width: 900px;
  }
}
@media screen and (max-width: 990px) {
  .containerL {
    max-width: 720px;
  }
  .container_small {
    max-width: 680px;
  }
}
@media screen and (max-width: 768px) {
  p {
    font-size: 1em;
  }
  .containerL {
    max-width: 540px;
  }
  .container_small {
    max-width: 500px;
  }
}
/********************* SOMMAIRE *********************/
/* HEADER                              ligne :   12 */
/* MENU COLLAPSE                       ligne :  149 */
/* MEGA MENU                           ligne :  161 */
/* MEGA MENU MOBILE                    ligne :  433 */
/* MODAL DE RECHERCHE                  ligne :  572 */
/* MEDIA QUERIES                       ligne :  646 */
/* HEADER */
header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9;
  transition: all 0.3s;
}
header > .menu {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5em 5em;
  background-color: var(--blanc);
}
header > .menu > .custom-logo-link {
  max-width: 100px;
  display: block;
  transition: all 0.3s;
}
header > .menu > .custom-logo-link:hover {
  opacity: 0.5;
}
header > .menu > .ordi {
  display: flex;
  align-items: center;
  gap: 4em;
}
header > .menu > .ordi > div {
  display: flex;
  align-items: center;
}
header > .menu > .ordi > div:first-child {
  gap: 6em;
}
header > .menu > .ordi > div:first-child > p {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  text-transform: uppercase;
  font-weight: 900;
  cursor: pointer;
  position: relative;
}
header > .menu > .ordi > div:first-child > p:after {
  content: "";
  width: 0;
  height: 4px;
  background-color: var(--noir);
  position: absolute;
  left: 0;
  bottom: -5px;
  transition: all 0.3s;
}
header > .menu > .ordi > div:first-child > p:hover:after {
  width: 100%;
}
header > .menu > .ordi > div:last-child {
  gap: 2em;
}
header > .menu > .ordi > div:last-child > a {
  display: block;
  text-transform: uppercase;
  color: var(--rouge);
  font-weight: 500;
  border-radius: 100px;
  border: 1px solid var(--rouge);
  padding: 0.6em 1.5em;
  transition: all 0.3s;
}
header > .menu > .ordi > div:last-child > a:hover {
  color: var(--blanc);
  background-color: var(--rouge);
}
header > .menu > .ordi > div:last-child > p {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  border-radius: 100%;
  background-color: var(--rouge);
  color: var(--blanc);
  width: 40px;
  height: 40px;
  cursor: pointer;
  transition: all 0.3s;
}
header > .menu > .ordi > div:last-child > p:hover {
  background-color: #F5F3F3;
  color: var(--rouge);
}
header > .menu > .mobile {
  display: none;
  align-items: center;
  gap: 0.8em;
  cursor: pointer;
}
header > .menu > .mobile > p {
  text-transform: uppercase;
  font-weight: 700;
  font-size: 1.2em;
  margin: 3px 0 0;
  transition: all 0.3s;
}
header > .menu > .mobile .barre {
  width: 35px;
  height: 4px;
  margin-bottom: 5px;
  border-radius: 15px;
  background-color: var(--noir);
  transition: all 0.3s;
}
header > .menu > .mobile .barre:last-child {
  margin-bottom: 0;
}
header > .menu > .mobile:hover > p {
  color: var(--rouge);
}
header > .menu > .mobile:hover .barre {
  background-color: var(--rouge);
}
header > .menu > .mobile:hover .barre01, header > .menu > .mobile:hover .barre02 {
  margin-bottom: 10px;
}

/* MENU COLLAPSE */
header.collapse {
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}
header.collapse > .menu {
  padding: 0.8em 5em;
}
header.collapse > .menu > .custom-logo-link {
  max-width: 65px;
}

/* MEGA MENU */
.megaMenu {
  display: none;
  width: 100%;
  background-color: var(--blanc);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  border-radius: 0 0 50px 50px;
  padding-top: 3.4em;
  max-height: 98vh;
  overflow-y: auto;
  scrollbar-width: thin;
  position: absolute;
  top: 0;
}
.megaMenu > .close {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--rouge);
  text-transform: uppercase;
  font-weight: 600;
  margin: 0;
  position: absolute;
  right: 1em;
  top: 2em;
  cursor: pointer;
}
.megaMenu > .close > i {
  font-size: 1.6em;
  transition: all 0.3s;
}
.megaMenu > .close:hover > i {
  transform: rotate(360deg);
}
.megaMenu > div {
  position: relative;
}
.megaMenu > div:after {
  content: "";
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
}
.megaMenu > div:not(.territoire) {
  display: none;
}
.megaMenu > div:not(.territoire) > p {
  text-align: center;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 1.4em;
}
.megaMenu > div:not(.territoire) > ul {
  display: flex;
  align-items: stretch;
  margin: 0;
  list-style: none;
}
.megaMenu > div:not(.territoire) > ul > li {
  margin: 0;
  flex: 0 0 50%;
  max-width: 50%;
  position: relative;
}
.megaMenu > div:not(.territoire) > ul > li > a {
  display: block;
  text-align: center;
  color: var(--blanc);
  background-color: var(--rouge-fonce);
  padding: 1.8em 0.5em;
  font-weight: 900;
  font-size: 1.4em;
  text-transform: uppercase;
  position: relative;
  z-index: 1;
}
.megaMenu > div:not(.territoire) > ul > li > a:before {
  content: "";
  background-color: var(--rouge-fonce);
  width: 140px;
  height: 100px;
  border-radius: 20px;
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
}
.megaMenu > div:not(.territoire) > ul > li > a:after {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  transition: all 0.3s;
}
.megaMenu > div:not(.territoire) > ul > li > a:hover:after {
  opacity: 0.5;
}
.megaMenu > div:not(.territoire) > ul > li.vie_municipale > a:after {
  content: url("../img/vie_municipale_blanc.webp");
  top: -25px;
}
.megaMenu > div:not(.territoire) > ul > li.services > a:after {
  content: url("../img/les_services_blanc.webp");
  top: -15px;
}
.megaMenu > div:not(.territoire) > ul > li.education_jeunesse > a:after {
  content: url("../img/education_jeunesse_blanc.webp");
}
.megaMenu > div:not(.territoire) > ul > li.culture_loisirs > a:after {
  content: url("../img/culture_loisirs_blanc.webp");
}
.megaMenu > div:not(.territoire) > ul > li.sante > a:after {
  content: url("../img/sante_blanc.webp");
}
.megaMenu > div:not(.territoire) > ul > li.commerces_economie > a:after {
  content: url("../img/commerce_economie_blanc.webp");
}
.megaMenu > div:not(.territoire) > ul > li > ul {
  margin: 0;
  list-style: none;
}
.megaMenu > div:not(.territoire) > ul > li > ul > li {
  margin: 0;
}
.megaMenu > div:not(.territoire) > ul > li > ul > li > a {
  display: block;
  font-weight: 700;
  font-size: 1.4em;
  color: var(--rouge);
  padding: 1em 1em 1em 4em;
  border-bottom: 1px solid #ACACAC;
  max-width: 950px;
  margin: auto;
  position: relative;
}
.megaMenu > div:not(.territoire) > ul > li > ul > li > a:after {
  content: "\f061";
  font-weight: 900;
  font-family: "Font Awesome 6 Free";
  font-size: 1.4em;
  position: absolute;
  right: 4em;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.megaMenu > div:not(.territoire) > ul > li > ul > li > a:hover:after {
  right: 2em;
}
.megaMenu > div:not(.territoire) > ul > li > ul > li:last-child > a {
  border-bottom: none;
}
.megaMenu > div:not(.territoire) > ul > li:not(:last-child):after {
  content: "";
  width: 3px;
  height: 100%;
  background-color: var(--noir);
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
}
.megaMenu > div:not(.territoire).quotidien > ul > li {
  flex: 0 0 25%;
  max-width: 25%;
}
.megaMenu > div:not(.territoire).quotidien > ul > li > a {
  min-height: 130px;
  padding: 1.8em 5em;
}
.megaMenu > div:not(.territoire).quotidien > ul > li > ul > li > a {
  padding: 1em 5em 1em 2em;
}
.megaMenu > div:not(.territoire).quotidien > ul > li > ul > li > a:after {
  right: 2em;
}
.megaMenu > div:not(.territoire).quotidien > ul > li > ul > li > a:hover:after {
  right: 1em;
}
.megaMenu .territoire {
  display: none;
  margin-top: 1em;
}
.megaMenu .territoire > ul {
  margin: 0;
  list-style: none;
}
.megaMenu .territoire > ul > li {
  margin: 0;
}
.megaMenu .territoire > ul > li > a {
  display: block;
  text-align: center;
  color: var(--blanc);
  background-color: var(--rouge-fonce);
  padding: 1.8em 0.5em;
  font-weight: 900;
  font-size: 1.4em;
  text-transform: uppercase;
  transition: all 0.3s;
}
.megaMenu .territoire > ul > li > a:hover {
  color: rgba(255, 255, 255, 0.5);
}
.megaMenu .territoire > ul > li > ul {
  list-style: none;
  width: 95%;
  max-width: 1250px;
  margin: 3em auto 4em;
  display: flex;
  align-items: center;
  gap: 3em 2em;
  flex-wrap: wrap;
}
.megaMenu .territoire > ul > li > ul > li {
  margin: 0;
  flex: 0 0 calc(25% - 1.5em);
  max-width: calc(25% - 1.5em);
}
.megaMenu .territoire > ul > li > ul > li > a {
  display: block;
  background-color: var(--blanc);
  border-radius: 20px;
  box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.25);
  overflow: hidden;
}
.megaMenu .territoire > ul > li > ul > li > a > span.background {
  display: block;
  width: 100%;
  height: 220px;
  border-radius: 20px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  transition: all 0.3s;
}
.megaMenu .territoire > ul > li > ul > li > a > span.titre {
  display: block;
  font-weight: 700;
  font-size: 1.4em;
  text-align: center;
  color: var(--rouge);
  padding: 1em 0.5em;
  background-color: var(--blanc);
  position: relative;
}
.megaMenu .territoire > ul > li > ul > li > a:hover > span.background {
  transform: scale(1.2);
}
.megaMenu .territoire > ul > li > ul > li.menu-item-930 > a > span.background {
  background-image: url("https://dev.langogne.com/wp-content/uploads/2025/05/mairie_de_langogne_28.webp") !important;
}

/* MEGA MENU MOBILE */
.megaMenuM {
  display: none;
  width: 100%;
  background-color: var(--blanc);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  max-height: 100vh;
  padding: 4em 4em 2em;
  overflow-y: auto;
  scrollbar-width: thin;
  position: absolute;
  top: 0;
}
.megaMenuM > .close {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--rouge);
  text-transform: uppercase;
  font-weight: 600;
  margin: 0;
  position: absolute;
  right: 1em;
  top: 2em;
  cursor: pointer;
}
.megaMenuM > .close > i {
  font-size: 1.6em;
  transition: all 0.3s;
}
.megaMenuM > .close:hover > i {
  transform: rotate(360deg);
}
.megaMenuM > div:not(.outils) > p {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 1.4em;
  padding: 0.8em 0.4em;
  border-bottom: 1px solid var(--rouge-fonce);
  cursor: pointer;
  transition: all 0.3s;
}
.megaMenuM > div:not(.outils) > p:hover {
  color: var(--rouge-fonce);
}
.megaMenuM > div:not(.outils) > ul {
  display: none;
  background-color: rgba(112, 23, 23, 0.1);
  list-style: none;
  margin: 0;
  border-bottom: 1px solid var(--rouge-fonce);
}
.megaMenuM > div:not(.outils) > ul > li {
  margin: 0 0 0 2em;
}
.megaMenuM > div:not(.outils) > ul > li > a {
  display: block;
  padding: 0.8em 0.5em 0.8em 0;
  font-weight: 900;
  color: var(--rouge-fonce);
  transition: all 0.3s;
}
.megaMenuM > div:not(.outils) > ul > li > a:hover {
  padding-left: 2em;
}
.megaMenuM > div:not(.outils) > ul > li > ul {
  list-style: none;
  margin: 0;
}
.megaMenuM > div:not(.outils) > ul > li > ul > li {
  margin: 0 0 0 2em;
}
.megaMenuM > div:not(.outils) > ul > li > ul > li > a {
  display: block;
  padding: 0.8em 0.5em 0.8em 0;
  font-weight: 700;
  color: var(--rouge);
  transition: all 0.3s;
}
.megaMenuM > div:not(.outils) > ul > li > ul > li > a:hover {
  padding-left: 2em;
}
.megaMenuM .outils {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1em;
  flex-wrap: wrap;
  padding: 3em 0.5em 0;
}
.megaMenuM .outils > a {
  display: block;
  text-transform: uppercase;
  color: var(--rouge);
  font-weight: 500;
  border-radius: 100px;
  border: 1px solid var(--rouge);
  padding: 0.6em 1.5em;
  transition: all 0.3s;
}
.megaMenuM .outils > a:hover {
  color: var(--blanc);
  background-color: var(--rouge);
}
.megaMenuM .outils > p {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  border-radius: 100%;
  background-color: var(--rouge);
  color: var(--blanc);
  width: 40px;
  height: 40px;
  cursor: pointer;
  transition: all 0.3s;
}
.megaMenuM .outils > p:hover {
  background-color: #F5F3F3;
  color: var(--rouge);
}

/* MODAL DE RECHERCHE */
.modalSearch {
  display: none;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.8);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
}
.modalSearch > div {
  width: 90%;
  max-width: 800px;
  background-color: var(--gris);
  border-radius: 20px;
  padding: 4em 2em;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.modalSearch > div > i {
  font-size: 3em;
  color: var(--rouge);
  cursor: pointer;
  position: absolute;
  top: 15px;
  right: 15px;
  transition: all 0.3s;
}
.modalSearch > div > i:hover {
  transform: rotate(360deg);
}
.modalSearch > div > h2 {
  margin: 0;
  text-align: center;
}
.modalSearch > div > form {
  margin-top: 2em;
}

form.search-form {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1em;
  background-color: var(--blanc);
  border-radius: 100px;
  padding: 0.8em 1.5em;
}
form.search-form > input {
  width: 100%;
  border: none;
}
form.search-form > input::-moz-placeholder {
  color: #737373;
  font-weight: 300;
}
form.search-form > input::placeholder {
  color: #737373;
  font-weight: 300;
}
form.search-form > button {
  font-size: 1.6em;
  border: none;
  background-color: transparent;
  color: var(--jaune);
  cursor: pointer;
  transition: all 0.3s;
}
form.search-form > button:hover {
  color: var(--rouge);
}

/* MEDIA QUERIES */
@media screen and (max-width: 1920px) {
  .megaMenu > div:not(.territoire).quotidien > ul > li > a {
    padding: 1.8em 4em;
  }
}
@media screen and (max-width: 1700px) {
  header > .menu {
    padding: 1.5em 2em;
  }
  header.collapse > .menu {
    padding: 0.8em 2em;
  }
  .megaMenu > div:not(.territoire) > ul > li > ul > li > a {
    padding-left: 2em;
  }
  .megaMenu > div:not(.territoire).quotidien > ul > li > a {
    padding: 1.8em 2em;
  }
  .megaMenu > div:not(.territoire).quotidien > ul > li > ul > li > a {
    padding-left: 1em;
    font-size: 1.1em;
  }
}
@media screen and (max-width: 1440px) {
  header > .menu > .ordi, header > .menu > .ordi > div:first-child {
    gap: 2em;
  }
  .megaMenu > div:not(.territoire) > ul > li > ul > li > a {
    font-size: 1.2em;
  }
  .megaMenu > div:not(.territoire) > ul > li > ul > li > a:after {
    right: 3em;
  }
  .megaMenu > div:not(.territoire).quotidien > ul {
    flex-wrap: wrap;
  }
  .megaMenu > div:not(.territoire).quotidien > ul > li {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .megaMenu > div:not(.territoire).quotidien > ul > li > a {
    min-height: auto;
  }
  .megaMenu > div:not(.territoire).quotidien > ul > li > ul {
    padding-bottom: 4em;
  }
  .megaMenu > div:not(.territoire).quotidien > ul > li:nth-child(2):after {
    content: none;
  }
  .megaMenu .territoire > ul > li > ul > li > a > span.background {
    height: 180px;
  }
  .megaMenu .territoire > ul > li > ul > li > a > span.titre {
    padding: 0.6em 0.5em;
  }
}
@media screen and (max-width: 1200px) {
  header > .menu {
    padding: 1.5em 1em;
  }
  header.collapse > .menu {
    padding: 0.8em 1em;
  }
  header > .menu > .custom-logo-link {
    max-width: 80px;
  }
  header > .menu > .ordi > div:last-child {
    gap: 1em;
  }
  header > .menu > .ordi > div:last-child > a {
    font-size: 0.9em;
  }
  .megaMenu > div:not(.territoire) > ul > li > a {
    padding: 2em 0.5em 1.2em;
  }
  .megaMenu > div:not(.territoire) > ul > li ul > li > a:after {
    right: 1.5em;
  }
  .megaMenu > div:not(.territoire) > ul > li ul > li > a:hover:after {
    right: 0.8em;
  }
  .megaMenu > div:not(.territoire).quotidien > ul > li > a {
    font-size: 1.2em;
  }
  .megaMenu .territoire > ul > li > ul {
    gap: 3em 1em;
  }
}
@media screen and (max-width: 990px) {
  header.collapse > .menu {
    padding: 0.5em 4em;
  }
  header > .menu {
    padding: 1em 4em;
  }
  header > .menu > .ordi {
    display: none;
  }
  header > .menu > .mobile {
    display: flex;
  }
  .modalSearch > div > i {
    font-size: 2.5em;
  }
}
@media screen and (max-width: 768px) {
  header > .menu {
    padding: 1em 2em;
  }
  header.collapse > .menu {
    padding: 0.5em 2em;
  }
  .megaMenuM {
    padding: 4em 2em 2em;
  }
  .modalSearch > div {
    padding: 4em 1em 2em;
  }
}
@media screen and (max-width: 576px) {
  header > .menu {
    padding: 1em;
  }
  header.collapse > .menu {
    padding: 0.5em 1em;
  }
  .megaMenuM > div:not(.outils) > p {
    font-size: 1.2em;
  }
  .megaMenuM > div:not(.outils) > ul > li, .megaMenuM > div:not(.outils) > ul > li > ul > li {
    margin-left: 1em;
  }
  .megaMenuM .outils > a {
    font-size: 0.9em;
  }
  .modalSearch > div {
    border-radius: 10px;
  }
  .modalSearch > div > i {
    font-size: 2em;
    top: 10px;
    right: 10px;
  }
  form.search-form > button {
    font-size: 1.2em;
  }
}
@media screen and (max-width: 450px) {
  header > .menu > .custom-logo-link {
    max-width: 60px;
  }
  header.collapse > .menu > .custom-logo-link {
    max-width: 50px;
  }
  header > .menu > .mobile > p {
    font-size: 1em;
  }
  header > .menu > .mobile .barre {
    height: 3px;
  }
  .megaMenuM {
    padding: 4em 1em 2em;
  }
}
/********************* SOMMAIRE *********************/
/* FOOTER                              ligne :   10 */
/* BESOIN CONSEIL                      ligne :  163 */
/* FOOTER LÉGAL                        ligne :  213 */
/* MEDIA QUERIES                       ligne :  233 */
/* FOOTER */
footer {
  background-color: var(--rouge-fonce);
  border-radius: 70px 70px 0 0;
}
footer > .hautF {
  padding: 4em 0;
}
footer > .hautF > div:last-child {
  display: flex;
  align-items: stretch;
  margin-top: 4em;
}
footer > .hautF > div:last-child > div {
  flex: 0 0 400px;
  max-width: 400px;
  border-right: 1px solid var(--blanc);
  padding-right: 2em;
}
footer > .hautF > div:last-child > div > div:first-child {
  display: flex;
  align-items: center;
  gap: 3em;
}
footer > .hautF > div:last-child > div > div:first-child > a {
  display: block;
  background-color: var(--blanc);
  border-radius: 15px;
  max-width: 190px;
  padding: 1em 2em;
}
footer > .hautF > div:last-child > div > div:first-child > a > img {
  transition: all 0.3s;
}
footer > .hautF > div:last-child > div > div:first-child > a:hover > img {
  transform: scale(0.9);
}
footer > .hautF > div:last-child > div > div:first-child > div {
  display: flex;
  align-items: center;
  gap: 2em;
}
footer > .hautF > div:last-child > div > div:first-child > div > a {
  display: block;
  font-size: 3em;
  color: var(--blanc);
  transition: all 0.3s;
}
footer > .hautF > div:last-child > div > div:first-child > div > a:hover {
  opacity: 0.5;
}
footer > .hautF > div:last-child > div > div:last-child {
  margin-top: 2em;
}
footer > .hautF > div:last-child > div > div:last-child * {
  color: var(--blanc);
}
footer > .hautF > div:last-child > div > div:last-child > h5 {
  line-height: normal;
  margin: 0;
  font-size: 1.6em;
}
footer > .hautF > div:last-child > div > div:last-child > p {
  margin: 1em 0 0;
  padding-top: 1em;
  line-height: normal;
  position: relative;
}
footer > .hautF > div:last-child > div > div:last-child > p:before {
  content: "";
  width: 170px;
  height: 1px;
  background-color: var(--blanc);
  position: absolute;
  top: 0;
  left: 0;
}
footer > .hautF > div:last-child > ul {
  flex: 1;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 2em;
  flex-wrap: wrap;
  margin: 0;
  list-style: none;
  padding-left: 2em;
}
footer > .hautF > div:last-child > ul > li {
  flex: 0 0 calc(33.33% - 1.4em);
  max-width: calc(33.33% - 1.4em);
  margin: 0;
}
footer > .hautF > div:last-child > ul > li > a {
  text-transform: uppercase;
  font-weight: 900;
  font-size: 1.2em;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--blanc);
  margin-bottom: 0.5em;
  transition: all 0.3s;
}
footer > .hautF > div:last-child > ul > li > a:hover {
  opacity: 0.5;
}
footer > .hautF > div:last-child > ul > li > ul {
  list-style: none;
  margin: 0;
}
footer > .hautF > div:last-child > ul > li > ul > li {
  margin: 0;
}
footer > .hautF > div:last-child > ul > li > ul > li > a {
  color: var(--blanc);
  line-height: 25px;
  font-weight: 600;
  transition: all 0.3s;
}
footer > .hautF > div:last-child > ul > li > ul > li > a:hover {
  opacity: 0.5;
}
footer > .hautF > div:last-child > ul > li > ul > li > ul {
  list-style: none;
  margin: 0;
}
footer > .hautF > div:last-child > ul > li > ul > li > ul > li {
  margin: 0 0 0 1em;
}
footer > .hautF > div:last-child > ul > li > ul > li > ul > li > a {
  color: var(--blanc);
  line-height: 25px;
  font-size: 0.9em;
  transition: all 0.3s;
}
footer > .hautF > div:last-child > ul > li > ul > li > ul > li > a:hover {
  opacity: 0.5;
}

/* BESOIN CONSEIL */
footer .conseil {
  background-color: var(--rouge);
  border-radius: 20px;
  padding: 2em 2em 2em 3em;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2em 1em;
}
footer .conseil > div {
  max-width: 500px;
}
footer .conseil > div > h6 {
  color: var(--blanc);
  font-weight: 500;
  margin: 0 0 0.4em;
  font-size: 1.8em;
}
footer .conseil > div p {
  color: var(--blanc);
  font-size: 0.9em;
  opacity: 0.6;
}
footer .conseil > div p:last-child {
  margin-bottom: 0;
}
footer .conseil > a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background-color: var(--jaune);
  border: 1px solid var(--jaune);
  color: var(--blanc);
  text-transform: uppercase;
  font-weight: 900;
  font-size: 1.2em;
  padding: 2.5em 4.5em;
  border-radius: 15px;
  transition: all 0.3s;
}
footer .conseil > a:hover {
  background-color: transparent;
}

/* FOOTER LÉGAL */
footer > .legalF {
  background-color: #310000;
  padding: 2em 0.5em;
}
footer > .legalF > p {
  margin: 0;
  text-align: center;
  color: var(--blanc);
  line-height: 1.4;
}
footer > .legalF > p > a {
  color: var(--blanc);
}
footer > .legalF > p > a:after {
  background-color: var(--blanc);
}

/* MEDIA QUERIES */
@media screen and (max-width: 1440px) {
  footer {
    border-radius: 50px 50px 0 0;
  }
  footer > .hautF > div:last-child > div > div:first-child > div {
    gap: 1em;
  }
  footer > .hautF > div:last-child > ul {
    gap: 1em;
    padding-left: 1em;
  }
  footer > .hautF > div:last-child > ul > li {
    flex: 0 0 calc(33.33% - 0.7em);
    max-width: calc(33.33% - 0.7em);
  }
}
@media screen and (max-width: 1200px) {
  footer .conseil {
    padding: 2em;
  }
  footer .conseil > a {
    padding: 2em 1.5em;
  }
  footer .conseil > div > h6 {
    font-size: 1.6em;
  }
  footer > .hautF > div:last-child > ul {
    justify-content: start;
  }
  footer > .hautF > div:last-child > ul > li {
    flex: 0 0 calc(50% - 0.5em);
    max-width: calc(50% - 0.5em);
  }
}
@media screen and (max-width: 990px) {
  footer {
    border-radius: 20px 20px 0 0;
  }
  footer .conseil {
    flex-wrap: wrap;
  }
  footer .conseil > div {
    max-width: 100%;
  }
  footer .conseil > a {
    margin: auto;
  }
  footer > .hautF > div:last-child {
    flex-wrap: wrap;
  }
  footer > .hautF > div:last-child > div {
    flex: 0 0 100%;
    max-width: 100%;
    border-right: none;
    border-bottom: 1px solid var(--blanc);
    padding: 0 0 2em;
    margin-bottom: 2em;
  }
  footer > .hautF > div:last-child > div > div:first-child {
    gap: 6em;
  }
}
@media screen and (max-width: 768px) {
  footer .conseil {
    padding: 2em 1em;
  }
  footer > .hautF {
    padding: 2em 0;
  }
  footer > .hautF > div:last-child > div > div:first-child {
    gap: 4em;
  }
  footer > .hautF > div:last-child > ul > li {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
@media screen and (max-width: 576px) {
  footer .conseil > div > h6 {
    font-size: 1.4em;
  }
  footer .conseil > a {
    padding: 1.2em 1.5em;
  }
  footer > .hautF > div:last-child > div > div:first-child {
    gap: 2em;
  }
}
@media screen and (max-width: 450px) {
  footer .conseil > a {
    font-size: 1em;
  }
}
/********************* SOMMAIRE *********************/
/* PAGE PAR DÉFAUT                     ligne :   11 */
/* PAGE D'ACCUEIL                      ligne :   78 */
/* REMONTÉE DES PAGES                  ligne :  296 */
/* FIL D'ARIANE                        ligne :  331 */
/* MEDIA QUERIES                       ligne :  366 */
/* PAGE PAR DÉFAUT */
.entete {
  margin: 10em auto -4em;
  border-radius: 30px;
  background-color: var(--blanc);
  box-shadow: 0 20px 50px 0 rgba(0, 0, 0, 0.1);
  padding: 3em;
  display: flex;
  align-items: flex-start;
  position: relative;
}
.entete:after {
  content: "";
  width: 550px;
  height: 625px;
  background-image: url("../img/icone_langogne.webp");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 0.2;
  position: absolute;
  bottom: -285px;
  left: -380px;
  z-index: -1;
}
.entete > div:first-child {
  flex: 0 0 845px;
  max-width: 845px;
}
.entete > div:first-child > div {
  border-radius: 20px 0 80px 20px;
  background-color: var(--gris);
  padding: 3em 6em 3em 3em;
  position: relative;
}
.entete > div:first-child > div h1 {
  color: var(--rouge);
  text-transform: uppercase;
  font-weight: 900;
  line-height: 1.3;
}
.entete > div:first-child > .date_event {
  width: 50%;
  margin: 1em 0 0;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--rouge-fonce);
}
.entete > div:last-child {
  flex: 0 0 775px;
  max-width: 775px;
  height: 460px;
  border-radius: 16px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  margin-left: calc(-100% + 828px);
}

/* PAGE D'ACCUEIL */
.enteteF {
  position: relative;
}
.enteteF > div:first-child {
  position: relative;
  position: relative;
}
.enteteF > div:first-child:before {
  content: "";
  width: 315px;
  height: 315px;
  background-image: url("../img/icone_langogne.webp");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 0.5;
  position: absolute;
  top: -90px;
  right: 35px;
  z-index: 1;
}
.enteteF > div:first-child:after {
  content: "";
  width: 550px;
  height: 550px;
  background-image: url("../img/icone_langogne.webp");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 0.5;
  position: absolute;
  bottom: -245px;
  left: -75px;
}
.enteteF > div:first-child > div:first-child {
  margin-top: 120px;
  position: relative;
}
.enteteF > div:first-child > div:first-child:after {
  content: "";
  width: 100%;
  height: 350px;
  opacity: 0.7;
  background: linear-gradient(to top, var(--rouge) 0%, transparent 100%);
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
}
.enteteF > div:first-child > div:first-child > .imgSlide {
  position: relative;
}
.enteteF > div:first-child > div:first-child > .imgSlide .paginator {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 3em;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
}
.enteteF > div:first-child > div:first-child > .imgSlide .paginator > div {
  cursor: pointer;
  transition: all 0.3s;
}
.enteteF > div:first-child > div:first-child > .imgSlide .paginator > div:first-child {
  margin-left: 0;
}
.enteteF > div:first-child > div:first-child > .imgSlide .paginator > div:first-child:hover {
  margin-left: -1em;
}
.enteteF > div:first-child > div:first-child > .imgSlide .paginator > div:last-child {
  margin-right: 0;
}
.enteteF > div:first-child > div:first-child > .imgSlide .paginator > div:last-child:hover {
  margin-right: -1em;
}
.enteteF > div:first-child > div:first-child > .imgSlide .slick > .slick-list {
  height: 750px;
}
.enteteF > div:first-child > div:first-child > .imgSlide .slick > .slick-list img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.enteteF > div:first-child > div:first-child > .imgSeule {
  height: 750px;
}
.enteteF > div:first-child > div:first-child > .imgSeule img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.enteteF > div:first-child > .onglet {
  display: flex;
  align-items: flex-start;
  gap: 3em;
  position: absolute;
  top: 5px;
  left: 300px;
  z-index: 2;
}
.enteteF > div:first-child > .onglet > a {
  display: block;
  text-align: center;
  color: var(--blanc);
  background-color: var(--rouge);
  padding: 10px 14px 8px;
  border-radius: 0 0 10px 10px;
  text-transform: uppercase;
  font-size: 0.8em;
  position: relative;
  transition: all 0.3s;
}
.enteteF > div:first-child > .onglet > a:before {
  content: url("../img/onglet_gauche.webp");
  position: absolute;
  top: 0;
  left: -22px;
}
.enteteF > div:first-child > .onglet > a:after {
  content: url("../img/onglet_droit.webp");
  position: absolute;
  top: 0;
  right: -22px;
}
.enteteF > div:first-child > .onglet > a:hover {
  padding-top: 20px;
}
.enteteF > div:first-child > .titre {
  max-width: 700px;
  position: absolute;
  left: 300px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
}
.enteteF > div:first-child > .titre > h1 {
  color: var(--blanc);
  text-transform: uppercase;
  text-shadow: 0 4px 4px rgba(0, 0, 0, 0.5);
  font-weight: 900;
}
.enteteF > div:first-child > .titre > h1 > span {
  display: block;
  font-size: 1.5em;
}
.enteteF > div:first-child > .titre > p {
  color: var(--blanc);
  text-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  font-size: 2.2em;
}
.enteteF > div:first-child > .titre > form {
  max-width: 650px;
}
.enteteF > .acces {
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
  background-color: var(--blanc);
  border-radius: 30px;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
  position: absolute;
  bottom: -97px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}
.enteteF > .acces > a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5em;
  flex: 0 0 16.66%;
  max-width: 16.66%;
  border-right: 2px solid var(--rouge);
  padding: 2em;
  transition: all 0.3s;
}
.enteteF > .acces > a:last-child {
  border-right: none;
}
.enteteF > .acces > a:hover {
  opacity: 0.5;
}
.enteteF > .acces > a > p {
  margin: 0;
  text-transform: uppercase;
  color: var(--rouge);
  text-align: center;
  font-size: 1em;
  font-weight: 700;
}

/* REMONTÉE DES PAGES */
.enteteB {
  margin: 7em 0 -6em;
  padding: 8em 0 15em;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
}
.enteteB:after {
  content: "";
  width: 100%;
  height: 100%;
  background-color: rgba(112, 23, 23, 0.8);
  position: absolute;
  top: 0;
  left: 0;
}
.enteteB > div {
  position: relative;
  z-index: 1;
}
.enteteB > div > h1 {
  color: var(--blanc);
  text-transform: uppercase;
  margin-bottom: 0.4em;
}
.enteteB > div .ariane > span, .enteteB > div .ariane > span a {
  color: var(--blanc);
}
.enteteB > div .ariane > span a:after {
  background-color: var(--blanc);
}

/* FIL D'ARIANE */
.ariane {
  margin-bottom: 2em;
}
.ariane > span {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 5px 10px;
  color: var(--rouge);
  text-transform: uppercase;
}
.ariane > span a {
  color: var(--rouge);
  position: relative;
}
.ariane > span a:after {
  content: "";
  width: 100%;
  height: 1px;
  background-color: var(--rouge);
  position: absolute;
  bottom: 0;
  left: 0;
  transition: all 0.3s;
}
.ariane > span a:hover:after {
  width: 0;
}
.ariane > span .breadcrumb_last {
  font-weight: 600;
}

/* MEDIA QUERIES */
@media screen and (max-width: 1700px) {
  .entete:after {
    width: 450px;
    height: 450px;
    bottom: -230px;
    left: -250px;
  }
  .enteteF > div:first-child > .onglet, .enteteF > div:first-child > .titre {
    left: 100px;
  }
}
@media screen and (max-width: 1440px) {
  .entete > div:first-child {
    flex: 0 0 645px;
    max-width: 645px;
  }
  .entete > div:first-child > div {
    padding: 3em 2em;
  }
  .entete > div:last-child {
    flex: 0 0 650px;
    max-width: 650px;
    height: 425px;
    margin-left: calc(-100% + 793px);
  }
  .enteteF > div:first-child:before {
    width: 250px;
    height: 250px;
    top: -70px;
    right: 15px;
  }
  .enteteF > div:first-child:after {
    width: 450px;
    height: 450px;
    bottom: -175px;
    left: -125px;
  }
  .enteteF > div:first-child > .titre > p {
    font-size: 1.8em;
  }
  .enteteF > .acces > a {
    padding: 1.5em 1em;
  }
}
@media screen and (max-width: 1200px) {
  .entete > div:first-child {
    flex: 0 0 600px;
    max-width: 600px;
  }
  .entete > div:first-child > div {
    padding: 2em 2em;
  }
  .entete > div:last-child {
    flex: 0 0 500px;
    max-width: 500px;
    height: 375px;
    margin-left: calc(-100% + 594px);
  }
  .enteteB {
    margin-top: 6em;
    padding-bottom: 12em;
  }
  .enteteF > div:first-child > div:first-child {
    margin-top: 104px;
  }
  .enteteF > .acces {
    justify-content: center;
    bottom: -195px;
  }
  .enteteF > .acces > a {
    flex: 0 0 33.33%;
    max-width: 33.33%;
  }
  .enteteF > .acces > a:nth-child(3) {
    border-right: none;
  }
  .enteteF > .acces > a:nth-child(4), .enteteF > .acces > a:nth-child(5), .enteteF > .acces > a:last-child {
    border-top: 2px solid var(--rouge);
  }
  .travaux {
    padding-top: 15em;
  }
}
@media screen and (max-width: 990px) {
  .entete {
    flex-wrap: wrap;
    padding: 2em;
    margin-top: 8em;
  }
  .entete:after {
    width: 300px;
    height: 300px;
    bottom: -170px;
    left: -150px;
  }
  .entete > div:first-child {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .entete > div:first-child > .date_event {
    width: 100%;
    margin-bottom: 2.5em;
  }
  .entete > div:last-child {
    flex: 0 0 90%;
    max-width: 90%;
    height: 300px;
    margin: -2em auto 0;
  }
  .enteteB {
    margin-top: 5em;
    padding-top: 6em;
  }
  .enteteF > div:first-child:before {
    width: 175px;
    height: 175px;
    top: -50px;
    right: 10px;
  }
  .enteteF > div:first-child:after {
    bottom: -125px;
    left: -140px;
  }
  .enteteF > div:first-child > div:first-child {
    margin-top: 88px;
  }
  .enteteF > div:first-child > .onglet, .enteteF > div:first-child > .titre {
    left: 50px;
  }
  .enteteF > .acces > a > p {
    font-size: 0.9em;
  }
}
@media screen and (max-width: 768px) {
  .entete:after {
    width: 250px;
    height: 250px;
    bottom: -155px;
    left: -120px;
  }
  .entete > div:first-child > div {
    padding: 2em 1em;
  }
  .entete > div:first-child > .date_event {
    margin-bottom: 3em;
  }
  .entete > div:last-child {
    flex: 0 0 95%;
    max-width: 95%;
    height: 200px;
  }
  .enteteB {
    padding: 8em 0 10em;
  }
  .ariane {
    margin-bottom: 1em;
  }
  .ariane > span {
    gap: 5px 8px;
    font-size: 0.8em;
  }
  .enteteF > div:first-child > .titre > p {
    font-size: 1.5em;
  }
  .enteteF > div:first-child > .onglet, .enteteF > div:first-child > .titre {
    left: 20px;
  }
  .travaux > div {
    gap: 1em;
  }
}
@media screen and (max-width: 576px) {
  .entete {
    border-radius: 10px;
    padding: 1em;
  }
  .entete > div:first-child > div {
    padding: 1em;
    border-radius: 10px 0 50px 10px;
  }
  .ariane {
    display: none;
  }
  .enteteF > div:first-child > .onglet {
    gap: 2em;
  }
  .enteteF > div:first-child > .onglet > a {
    font-size: 0.7em;
  }
  .enteteF > div:first-child > .titre > p {
    font-size: 1.2em;
  }
  .enteteF > .acces > a > p {
    font-size: 0.8em;
  }
  .travaux > div {
    flex-wrap: wrap;
  }
}
@media screen and (max-width: 450px) {
  .entete {
    margin-top: 6em;
  }
  .enteteF > div:first-child > div:first-child {
    margin-top: 75px;
  }
  .enteteF > div:first-child > .onglet, .enteteF > div:first-child > .titre {
    left: 10px;
  }
  .enteteF > div:first-child > .onglet > a {
    padding: 10px 5px 8px;
  }
  .enteteF > .acces {
    border-radius: 10px;
  }
  .enteteF > .acces > a {
    padding: 1em 0.2em;
  }
  .enteteF > .acces > a > img {
    transform: scale(0.8);
  }
  .travaux > div > div:last-child > h6 {
    font-size: 1.5em;
  }
}
/********************* SOMMAIRE *********************/
/* REMONTÉE DES ARTICLES               ligne :    9 */
/* PAGINATION                          ligne :   60 */
/* MEDIA QUERIES                       ligne :  101 */
/* REMONTÉE DES ARTICLES */
.wrap_content_archive {
  position: relative;
}
.wrap_content_archive .content {
  margin-bottom: 4em;
}

.remontee_articles {
  display: flex;
  align-items: stretch;
  gap: 2em 1em;
  flex-wrap: wrap;
}
.remontee_articles > a {
  display: block;
  flex: 0 0 calc(33.33% - 0.7em);
  max-width: calc(33.33% - 0.7em);
  border-radius: 20px;
  background: var(--blanc);
  box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.25);
}
.remontee_articles > a > div:first-child {
  height: 245px;
  border-radius: 20px;
  overflow: hidden;
}
.remontee_articles > a > div:first-child > img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 0.3s;
}
.remontee_articles > a > div:last-child {
  padding: 1.8em 1.4em;
}
.remontee_articles > a > div:last-child > h5 {
  margin: 0;
  color: var(--rouge);
}
.remontee_articles > a > div:last-child > p {
  margin: 1em 0 0;
}
.remontee_articles > a:hover > div:first-child > img {
  transform: scale(1.1);
}

/* PAGINATION */
.pagination {
  margin-top: 4em;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  line-height: 1;
}
.pagination > p {
  text-transform: uppercase;
  color: var(--rouge);
  margin: 0;
  font-weight: 600;
  font-size: 1.6em;
}
.pagination > .current {
  font-size: 2.5em;
  border-bottom: 5px solid var(--rouge);
  font-weight: 600;
  color: var(--rouge);
}
.pagination > a {
  display: block;
  font-weight: 600;
  font-size: 1.6em;
  color: var(--rouge);
  transition: all 0.3s;
}
.pagination > a:hover {
  font-size: 2em;
  color: var(--rouge-fonce);
  font-weight: 700;
}

/* MEDIA QUERIES */
@media screen and (max-width: 1200px) {
  .remontee_articles > a > div:first-child {
    height: 200px;
  }
  .remontee_articles > a > div:last-child {
    padding: 1.8em 1em;
  }
}
@media screen and (max-width: 990px) {
  .remontee_articles > a {
    flex: 0 0 calc(50% - 0.5em);
    max-width: calc(50% - 0.5em);
  }
}
@media screen and (max-width: 768px) {
  .remontee_articles > a > div:first-child {
    height: 150px;
  }
}
@media screen and (max-width: 576px) {
  .remontee_articles > a {
    flex: 0 0 100%;
    max-width: 100%;
    border-radius: 10px;
  }
  .remontee_articles > a > div:first-child {
    height: 200px;
    border-radius: 10px;
  }
}
/********************* SOMMAIRE *********************/
/* TRAVAUX                             ligne :   12 */
/* LES ACTUS                           ligne :   71 */
/* LES ÉVÉNEMENTS                      ligne :  200 */
/* LES PHOTOS                          ligne :  319 */
/* NEWSLETTER                          ligne :  350 */
/* MEDIA QUERIES                       ligne :  500 */
/* TRAVAUX */
.travaux {
  background-color: var(--rouge-fonce);
  padding: 10em 1em 4em;
  margin-bottom: 2em;
  position: relative;
}
.travaux > div {
  max-width: 850px;
  margin: auto;
  display: flex;
  align-items: flex-start;
  gap: 2em;
}
.travaux > div > div:first-child {
  flex: 0 0 105px;
  max-width: 105px;
}
.travaux > div > div:last-child > h6 {
  color: var(--blanc);
  font-size: 2em;
  text-transform: uppercase;
  margin: 0;
  font-weight: 700;
  line-height: normal;
}
.travaux > div > div:last-child p {
  color: var(--blanc);
  font-weight: 500;
  line-height: normal;
}
.travaux > div > div:last-child > a {
  display: flex;
  align-items: center;
  gap: 10px;
  width: -moz-max-content;
  width: max-content;
  max-width: 100%;
  padding: 0.6rem calc(1rem + 10px) 0.6rem 1rem;
  border: 2px solid var(--blanc);
  border-radius: 50px;
  color: var(--blanc);
  font-weight: 600;
  text-transform: lowercase;
  transition: all 0.3s;
}
.travaux > div > div:last-child > a:hover {
  gap: 20px;
  padding-right: 1rem;
}

/* LES ACTUS */
.actus {
  margin: 5em auto 6em;
}
.actus > div:first-child {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1em;
}
.actus > div:first-child > h2 {
  text-transform: uppercase;
  font-size: 3em;
  padding-left: 2.5em;
  position: relative;
}
.actus > div:first-child > h2:before {
  content: "";
  width: 205px;
  height: 235px;
  background-image: url("../img/icone_langogne.webp");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  left: -110px;
  top: -65px;
  z-index: -1;
}
.actus > div:first-child > h2 > span {
  display: block;
  font-weight: 400;
  font-size: 0.6em;
}
.actus > div:first-child > .btn {
  text-transform: uppercase;
  background-color: var(--jaune);
  border-color: var(--jaune);
  font-size: 1.1em;
  padding: 0.8rem calc(1.5rem + 10px) 0.8rem 1.5rem;
}
.actus > div:last-child {
  display: flex;
  align-items: stretch;
  gap: 1.2em 1em;
  flex-wrap: wrap;
}
.actus > div:last-child > a {
  display: block;
  flex: 0 0 calc(25% - 0.75em);
  max-width: calc(25% - 0.75em);
  border-radius: 20px;
  background-color: var(--blanc);
  box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.25);
}
.actus > div:last-child > a.firstActu {
  flex: 0 0 calc(50% - 0.5em);
  max-width: calc(50% - 0.5em);
}
.actus > div:last-child > a > div:first-child {
  width: 100%;
  height: 245px;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
}
.actus > div:last-child > a > div:first-child > img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.actus > div:last-child > a > div:first-child > div {
  max-width: 70px;
  padding: 0.8em 1em;
  background-color: var(--jaune);
  color: var(--blanc);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  position: absolute;
  top: 0;
  right: 25px;
}
.actus > div:last-child > a > div:first-child > div > i {
  font-size: 1.8em;
}
.actus > div:last-child > a > div:first-child > div > p {
  text-transform: lowercase;
  font-weight: 700;
  text-align: center;
  margin: 0;
}
.actus > div:last-child > a > div:last-child {
  padding: 1.5em 1em;
}
.actus > div:last-child > a > div:last-child > h5 {
  margin-top: 0;
  color: var(--rouge);
  font-size: 1.1em;
}
.actus > div:last-child > a > div:last-child > p:last-child {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--rouge);
  font-weight: 600;
  text-transform: lowercase;
  transition: all 0.3s;
}
.actus > div:last-child > a:hover > div > p:last-child {
  gap: 1em;
}

/* LES ÉVÉNEMENTS */
.events {
  margin: 8em auto 6em;
}
.events > div:first-child {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1em;
}
.events > div:first-child > h2 {
  text-transform: uppercase;
  font-size: 3em;
  padding-left: 2.5em;
  position: relative;
}
.events > div:first-child > h2:before {
  content: "";
  width: 205px;
  height: 235px;
  background-image: url("../img/icone_langogne.webp");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  left: -110px;
  top: -65px;
  z-index: -1;
}
.events > div:first-child > h2 > span {
  display: block;
  font-weight: 400;
  font-size: 0.6em;
}
.events > div:first-child > .btn {
  text-transform: uppercase;
  background-color: var(--jaune);
  border-color: var(--jaune);
  font-size: 1.1em;
  padding: 0.8rem calc(1.5rem + 10px) 0.8rem 1.5rem;
}
.events > div:last-child {
  display: flex;
  align-items: stretch;
  gap: 1.2em 1em;
  flex-wrap: wrap;
}
.events > div:last-child > a {
  display: block;
  flex: 0 0 calc(50% - 0.5em);
  border-radius: 20px;
  background-color: var(--blanc);
  box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.25);
}
.events > div:last-child > a > div:first-child {
  width: 100%;
  height: 245px;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
}
.events > div:last-child > a > div:first-child > img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.events > div:last-child > a > div:last-child {
  padding: 1.5em 1em;
}
.events > div:last-child > a > div:last-child > h5 {
  margin: 0;
  color: var(--rouge);
  font-size: 1.2em;
}
.events > div:last-child > a > div:last-child > .date {
  text-transform: uppercase;
  color: var(--rouge);
  font-weight: 300;
  font-size: 1.2em;
  padding-bottom: 12px;
  margin-top: 5px;
  position: relative;
}
.events > div:last-child > a > div:last-child > .date:after {
  content: "";
  width: 115px;
  height: 3px;
  background-color: var(--rouge);
  position: absolute;
  bottom: 0;
  left: 0;
}
.events > div:last-child > a > div:last-child > p:last-child {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--rouge);
  font-weight: 600;
  text-transform: lowercase;
  transition: all 0.3s;
}
.events > div:last-child > a:hover > div > p:last-child {
  gap: 1em;
}

/* LES PHOTOS */
.baniere {
  width: 100%;
  height: 350px;
  overflow: hidden;
}
.baniere > img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.photos {
  display: flex;
  align-items: center;
  height: 350px;
}
.photos > div {
  flex: 0 0 33.33%;
  max-width: 33.33%;
  height: 100%;
}
.photos > div > img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/* NEWSLETTER */
.newsletter {
  height: 400px;
  position: relative;
}
.newsletter:before {
  content: "";
  width: 800px;
  height: 720px;
  background-image: url("../img/icone_langogne.webp");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  left: -145px;
  top: -215px;
  z-index: -1;
}
.newsletter > div {
  margin: 6em auto;
  padding: 4em 5em;
  background-color: var(--blanc);
  box-shadow: 0 10px 50px 0 rgba(97, 0, 0, 0.16);
  border-radius: 20px;
}
.newsletter > div > .dataNews {
  position: relative;
}
.newsletter > div > .dataNews > i {
  color: var(--rouge);
  transform: scaleX(-1);
  font-size: 5em;
  position: absolute;
  top: -30px;
  right: -30px;
}
.newsletter > div > .dataNews > h5 {
  color: var(--rouge);
  font-size: 2em;
  margin: 0 0 0.2em;
}
.newsletter > div > .dataNews > p {
  max-width: 1150px;
}
.newsletter > div > .dataNews > p:last-child {
  font-size: 0.9em;
}
.newsletter > div .sib-form {
  padding: 0;
}
.newsletter > div .sib-form .sib-form-message-panel {
  border: unset;
  padding: 0;
}
.newsletter > div .sib-form .sib-form-message-panel .sib-form-message-panel__text {
  width: -moz-max-content;
  width: max-content;
  margin: auto;
  border: 1px solid;
  gap: 10px;
  padding: 0.5rem 2em;
}
.newsletter > div .sib-form #success-message .sib-form-message-panel__text {
  color: #227700;
  border-color: #227700;
}
.newsletter > div .sib-form #error-message .sib-form-message-panel__text {
  color: #D8000C;
  border-color: #D8000C;
}
.newsletter > div #sib-container {
  background: unset;
  margin: 0;
  padding: 0;
}
.newsletter > div #sib-form {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
  position: relative;
}
.newsletter > div #sib-form .sib-input {
  padding: 0;
}
.newsletter > div #sib-form .sib-input .form__label-row {
  margin: 0;
}
.newsletter > div #sib-form .sib-input .form__label-row .entry__field {
  margin: 0;
  border-radius: 50px;
  border: none;
}
.newsletter > div #sib-form .sib-input .form__label-row .entry__field > input {
  padding: 0.4em 1em;
  background-color: #F9F7F7;
  border-radius: 100px;
}
.newsletter > div #sib-form > div:first-child {
  flex: 1;
  border: 1px solid #C2C2C2;
  border-radius: 100px;
}
.newsletter > div #sib-form > div:last-of-type {
  position: absolute;
  right: 5px;
  top: 50%;
  transform: translateY(-50%);
}
.newsletter > div #sib-form > div:last-of-type > .sib-form-block {
  padding: 0;
}
.newsletter > div #sib-form > div:last-of-type > .sib-form-block > button {
  border: 1px solid var(--jaune);
  background-color: var(--jaune);
  color: var(--blanc);
  text-transform: uppercase;
  font-family: "Inter";
  font-weight: 700;
  border-radius: 50px;
  font-size: 1.2em;
  padding: 10px 50px;
  transition: all 0.3s;
}
.newsletter > div #sib-form > div:last-of-type > .sib-form-block > button:hover {
  color: var(--jaune);
  background-color: transparent;
}

/* MEDIA QUERIES */
@media screen and (max-width: 1700px) {
  .newsletter {
    height: 300px;
  }
  .newsletter :before {
    width: 700px;
    height: 545px;
    top: -185px;
  }
}
@media screen and (max-width: 1200px) {
  .travaux {
    padding-top: 15em;
  }
  .actus > div:first-child > h2 {
    padding-left: 2em;
  }
  .actus > div:first-child > h2:before {
    width: 175px;
    height: 180px;
    left: -80px;
    top: -40px;
  }
  .actus > div:last-child > a {
    flex: 0 0 calc(33.33% - 0.67em);
    max-width: calc(33.33% - 0.67em);
  }
  .actus > div:last-child > a.firstActu {
    flex: 0 0 calc(66.66% - 0.33em);
    max-width: calc(66.66% - 0.33em);
  }
  .actus > div:last-child > a > div:first-child {
    height: 225px;
  }
  .events > div:first-child > h2 {
    padding-left: 2em;
  }
  .events > div:first-child > h2:before {
    width: 175px;
    height: 180px;
    left: -80px;
    top: -40px;
  }
  .events > div:last-child > a > div:first-child {
    height: 225px;
  }
  .baniere, .photos {
    height: 300px;
  }
  .newsletter:before {
    width: 600px;
    height: 600px;
    left: -80px;
    top: -200px;
  }
  .newsletter > div {
    padding: 4em 2em;
  }
  .newsletter > div > .dataNews > i {
    font-size: 4em;
    right: 0;
  }
}
@media screen and (max-width: 990px) {
  .actus > div:first-child > h2 {
    font-size: 2em;
  }
  .actus > div:first-child > h2:before {
    width: 145px;
    height: 135px;
  }
  .actus > div:last-child > a {
    flex: 0 0 calc(50% - 0.5em);
    max-width: calc(50% - 0.5em);
  }
  .actus > div:last-child > a.firstActu {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .events {
    margin: 6em auto 4em;
  }
  .events > div:first-child > h2 {
    font-size: 2em;
  }
  .events > div:first-child > h2:before {
    width: 145px;
    height: 135px;
  }
  .events > div:last-child > a > div:first-child {
    height: 175px;
  }
  .baniere, .photos {
    height: 250px;
  }
  .newsletter {
    height: 200px;
  }
  .newsletter:before {
    width: 400px;
    height: 400px;
    left: -55px;
    top: -160px;
  }
  .newsletter > div {
    padding: 3em 2em 2em;
  }
  .newsletter > div > .dataNews > i {
    font-size: 3em;
  }
  .newsletter > div #sib-form > div:last-of-type > .sib-form-block > button {
    font-size: 1em;
    padding: 10px 30px;
  }
}
@media screen and (max-width: 768px) {
  .travaux > div {
    gap: 1em;
  }
  .actus > div:first-child > h2 {
    font-size: 1.8em;
    padding-left: 1.5em;
  }
  .actus > div:first-child > h2:before {
    width: 115px;
    height: 110px;
    left: -70px;
    top: -20px;
  }
  .actus > div:first-child > .btn {
    font-size: 0.9em;
    padding: 0.6rem calc(1rem + 10px) 0.6rem 1rem;
  }
  .actus > div:last-child > a {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .events {
    margin-top: 4em;
  }
  .events > div:first-child > h2 {
    font-size: 1.8em;
    padding-left: 1.5em;
  }
  .events > div:first-child > h2:before {
    width: 115px;
    height: 110px;
    left: -70px;
    top: -20px;
  }
  .events > div:first-child > .btn {
    font-size: 0.9em;
    padding: 0.6rem calc(1rem + 10px) 0.6rem 1rem;
  }
  .newsletter > div {
    padding: 2em 1em 1em;
  }
  .newsletter > div > .dataNews > h5 {
    font-size: 1.5em;
  }
}
@media screen and (max-width: 576px) {
  .travaux > div {
    flex-wrap: wrap;
  }
  .actus > div:first-child {
    flex-wrap: wrap;
    gap: 0;
  }
  .actus > div:first-child > h2 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .actus > div:first-child > .btn {
    margin: 0 0 1em auto;
  }
  .actus > div:last-child > a > div:first-child > div {
    max-width: 60px;
    padding: 0.8em 0.5em;
    font-size: 0.9em;
  }
  .actus > div:last-child > a > div:first-child > div > i {
    font-size: 1.5em;
  }
  .events > div:first-child {
    flex-wrap: wrap;
    gap: 0;
  }
  .events > div:first-child > h2 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .events > div:first-child > .btn {
    margin: 0 0 1em auto;
  }
  .events > div:last-child > a {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .photos {
    height: 150px;
  }
  .newsletter {
    height: 50px;
  }
  .newsletter:before {
    width: 200px;
    height: 200px;
    left: -30px;
    top: -130px;
  }
  .newsletter > div {
    padding: 2em 1em;
    border-radius: 10px;
  }
  .newsletter > div > .dataNews > i {
    display: none;
  }
  .newsletter > div > .dataNews > h5 {
    font-size: 1.2em;
  }
  .newsletter > div #sib-form {
    flex-wrap: wrap;
    gap: 1em;
  }
  .newsletter > div #sib-form > div:first-child {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .newsletter > div #sib-form > div:last-of-type {
    margin: auto;
    transform: unset;
    position: unset;
  }
}
@media screen and (max-width: 450px) {
  .travaux > div > div:last-child > h6 {
    font-size: 1.5em;
  }
  .actus > div:last-child > a > div:first-child {
    height: 175px;
  }
  .photos {
    height: unset;
    flex-wrap: wrap;
  }
  .photos > div {
    flex: 0 0 100%;
    max-width: 100%;
    height: 200px;
  }
}
/********************* SOMMAIRE *********************/
/* CONTENU                             ligne :   11 */
/* MÊME THÉMATIQUE                     ligne :  119 */
/* CONTACT                             ligne :  127 */
/* BULLETIN MUNICIPAL                  ligne :  269 */
/* MEDIA QUERIES                       ligne :  305 */
/* CONTENU */
.content_page {
  margin-bottom: 6em;
}
.content_page > .content {
  background-color: var(--blanc);
  border-radius: 30px;
  padding: 8em 6em 5em;
}
.content_page > .content > .btn {
  color: var(--rouge);
  background-color: var(--blanc);
}
.content_page > .content > .btn:first-child {
  margin-bottom: 2em;
}
.content_page > .content > .btn:last-child {
  margin-top: 2em;
}
.content_page > .content > .image_thumbnail {
  width: 500px;
  margin: 0 auto 4em;
}
.content_page > .content > .image_thumbnail img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.25);
}
.content_page .wp-block-button > .wp-block-button__link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-right: calc(1rem + 10px);
  font-size: 1em;
  transition: all 0.3s;
}
.content_page .wp-block-button > .wp-block-button__link:after {
  content: "\f061";
  font-weight: 900;
  font-family: "Font Awesome 6 Free";
}
.content_page .wp-block-button > .wp-block-button__link:hover {
  gap: 20px;
  padding-right: 1rem;
}
.content_page blockquote {
  max-width: 640px;
  margin: 4em auto;
  padding: 2em 1.5em;
  position: relative;
}
.content_page blockquote:before {
  content: url("../img/guillemets.webp");
  position: absolute;
  top: -18px;
  left: -8px;
}
.content_page li {
  font-size: 1.1em;
}
.content_page li > a {
  color: var(--rouge);
  position: relative;
}
.content_page li > a:after {
  content: "";
  width: 100%;
  height: 1px;
  background-color: var(--rouge);
  position: absolute;
  bottom: 0;
  left: 0;
  transition: ease-in-out 0.3s;
}
.content_page li > a:hover:after {
  width: 0;
}
.content_page .wp-block-file .wp-block-file__button {
  background-color: var(--rouge);
  border: 2px solid var(--rouge);
  border-radius: 50px;
  color: var(--blanc);
  font-weight: 600;
  text-transform: lowercase;
  transition: all 0.3s;
}
.content_page .wp-block-file .wp-block-file__button:hover {
  gap: 20px;
  padding-right: 1rem;
}
.content_page .wp-block-embed iframe {
  width: 100%;
  height: 100%;
  aspect-ratio: 16/9;
}

/* MÊME THÉMATIQUE  */
.thematique {
  margin-top: 5em;
}
.thematique > h2 {
  margin: 0 0 1em;
}

/* CONTACT */
.content_contact {
  margin-bottom: 0;
}
.content_contact .content {
  padding: 8em 4em 5em;
}
.content_contact .content > .wp-block-columns {
  justify-content: center;
  gap: 5em;
}
.content_contact .content > .wp-block-columns > div:nth-child(2) {
  flex: 1;
  max-width: 265px;
}
.content_contact .formulaires {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 2em;
  margin-top: 2em;
}
.content_contact .formulaires > div {
  flex: 0 0 calc(50% - 1em);
  max-width: calc(50% - 1em);
  border-radius: 30px;
  padding: 3em 1.5em 0;
}
.content_contact .formulaires > div:first-child {
  background-color: var(--blanc);
}
.content_contact .formulaires > div:first-child > h4 {
  color: var(--rouge);
}
.content_contact .formulaires > div:last-child {
  border: 4px solid var(--blanc);
}
.content_contact .formulaires > div:last-child > h4 {
  color: var(--noir);
}
.content_contact .formulaires > div > h4 {
  font-size: 2em;
  margin: 0 0 1em;
}
.content_contact .formulaires form .forminator-field {
  position: relative;
}
.content_contact .formulaires form .forminator-field > label {
  text-transform: lowercase;
  font-weight: 300;
  color: #A3A3A3;
  background-color: var(--blanc);
  padding: 0 4px;
  position: absolute;
  top: 8px;
  left: 1em;
  transition: all 0.3s;
}
.content_contact .formulaires form .forminator-field > label.focus {
  top: -14px;
}
.content_contact .formulaires form input, .content_contact .formulaires form select {
  width: 100%;
  border: 1px solid #A3A3A3;
  background-color: var(--blanc);
  border-radius: 50px;
  padding: 1em;
}
.content_contact .formulaires form textarea {
  width: 100%;
  border: 1px solid #A3A3A3;
  background-color: var(--blanc);
  border-radius: 30px;
  padding: 1em;
}
.content_contact .formulaires form .forminator-error-message {
  color: var(--rouge-fonce);
  font-weight: 300;
  font-style: italic;
  font-size: 0.8em;
}
.content_contact .formulaires form .forminator-field-consent .forminator-checkbox__wrapper {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.content_contact .formulaires form .forminator-field-consent .forminator-checkbox__wrapper input[type=checkbox] {
  display: block;
  width: 16px;
  height: 16px;
  margin-top: 2px;
}
.content_contact .formulaires form .forminator-field-consent .forminator-checkbox__wrapper p {
  font-size: 0.9em;
}
.content_contact .formulaires form .forminator-button {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0.6rem calc(1rem + 10px) 0.6rem 1rem;
  background-color: var(--rouge);
  border: 2px solid var(--rouge);
  border-radius: 50px;
  color: var(--blanc);
  font-weight: 600;
  text-transform: lowercase;
  margin: 0 0 0 auto;
  transition: all 0.3s;
}
.content_contact .formulaires form .forminator-button:after {
  content: "\f061";
  font-weight: 900;
  font-family: "Font Awesome 6 Free";
}
.content_contact .formulaires form .forminator-button:hover {
  gap: 20px;
  padding-right: 1rem;
}
.content_contact iframe {
  width: 100%;
  height: 700px;
  border: none;
  margin-top: 4em;
}

/* BULLETIN MUNICIPAL */
.bulletin {
  display: block;
  border-radius: 20px;
  background-color: var(--blanc);
  box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.25);
}
.bulletin > div:first-child {
  border-radius: 20px;
  overflow: hidden;
}
.bulletin > div:first-child > img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 0.3s;
}
.bulletin > div:last-child {
  padding: 1.8em 1.4em;
}
.bulletin > div:last-child > h5 {
  margin: 0;
  color: var(--rouge);
}
.bulletin > div:last-child > p {
  margin: 1em 0 0;
}
.bulletin:hover > div:first-child > img {
  transform: scale(1.1);
}

/* MEDIA QUERIES */
@media screen and (max-width: 1440px) {
  .content_contact .content > .wp-block-columns {
    gap: 4em;
  }
  .bulletin > div:last-child > p {
    font-size: 1em;
  }
}
@media screen and (max-width: 1200px) {
  .content_page > .content {
    padding: 8em 3em 3em;
  }
  .content_contact .content > .wp-block-columns {
    gap: 2em;
  }
  .content_contact .content > .wp-block-columns > div:first-child {
    flex-basis: 150px !important;
  }
  .content_contact .formulaires > div {
    padding: 2em 1em 0;
  }
  .bulletin > div:last-child {
    padding: 1.8em 1em;
  }
  .bulletin > div:last-child > p {
    font-size: 0.9em;
  }
}
@media screen and (max-width: 990px) {
  .content_page > .content {
    padding: 6em 2em 3em;
  }
  .content_page > .content > .image_thumbnail {
    width: 400px;
  }
  .content_page blockquote:before {
    transform: scale(0.8);
    top: -20px;
    left: -12px;
  }
  .content_contact .content > .wp-block-columns > div:first-child {
    max-width: 210px;
  }
  .content_contact .content > .wp-block-columns > div:nth-child(2) {
    max-width: unset;
  }
  .content_contact .formulaires > div {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .content_contact iframe {
    height: 500px;
  }
}
@media screen and (max-width: 768px) {
  .content_page > .content > .image_thumbnail {
    width: 300px;
  }
}
@media screen and (max-width: 576px) {
  .content_page > .content {
    padding: 6em 1em 2em;
    border-radius: 15px;
  }
  .content_page blockquote:before {
    transform: scale(0.6);
    top: -24px;
    left: -18px;
  }
  .content_contact iframe {
    height: 400px;
  }
  .bulletin {
    border-radius: 10px;
  }
  .bulletin > div:first-child {
    border-radius: 10px;
  }
}
@media screen and (max-width: 451px) {
  .content_page > .content > .image_thumbnail {
    width: 250px;
  }
}
.content_event {
  margin-top: 8em;
}
.content_event > .btn {
  color: var(--rouge);
  background-color: var(--blanc);
  margin-bottom: 2em;
}
.content_event .flexEntete {
  display: flex;
  gap: 2em;
  flex-wrap: wrap;
  margin-bottom: 6em;
}
.content_event .flexEntete > div:first-child {
  flex: 0 0 700px;
  max-width: 700px;
}
.content_event .flexEntete > div:first-child #slide {
  border-radius: 15px;
  overflow: hidden;
  position: relative;
}
.content_event .flexEntete > div:first-child #slide .slick {
  margin: 0;
}
.content_event .flexEntete > div:first-child #slide .paginator {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: absolute;
  z-index: 1;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.content_event .flexEntete > div:first-child #slide .paginator > div {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: var(--rouge);
  color: var(--blanc);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2em;
  cursor: pointer;
  transition: all 0.3s;
}
.content_event .flexEntete > div:first-child #slide .paginator > div:first-child {
  margin-left: 10px;
}
.content_event .flexEntete > div:first-child #slide .paginator > div:first-child:hover {
  margin-left: 0;
}
.content_event .flexEntete > div:first-child #slide .paginator > div:last-child {
  margin-right: 10px;
}
.content_event .flexEntete > div:first-child #slide .paginator > div:last-child:hover {
  margin-right: 0;
}
.content_event .flexEntete > div:first-child #slide .slick-slide div, .content_event .flexEntete > div:first-child #imageSeule {
  background-color: var(--noir);
  height: 575px;
  border-radius: 15px;
  overflow: hidden;
}
.content_event .flexEntete > div:first-child #slide img, .content_event .flexEntete > div:first-child #imageSeule > img {
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.content_event .flexEntete > div:first-child .slick-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1em;
  width: 100%;
  list-style: none;
  position: absolute;
  left: 0;
  bottom: 1em;
}
.content_event .flexEntete > div:first-child .slick-dots > li {
  margin: 0;
}
.content_event .flexEntete > div:first-child .slick-dots > li > button {
  border-radius: 50%;
  background-color: var(--blanc);
  color: var(--blanc);
  width: 25px;
  height: 25px;
  cursor: pointer;
}
.content_event .flexEntete > div:first-child .slick-dots > li > button:before {
  color: unset;
}
.content_event .flexEntete > div:first-child .slick-dots > li > button:hover {
  background-color: var(--rouge);
  color: var(--rouge);
}
.content_event .flexEntete > div:first-child .slick-dots > li.slick-active > button {
  color: var(--jaune);
  background-color: var(--jaune);
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.66);
}
.content_event .flexEntete > div:first-child .slick-dots > li.slick-active > button:before {
  color: unset;
}
.content_event .flexEntete > div:last-child {
  flex: 1;
  box-shadow: 0 3px 14px rgba(2, 91, 129, 0.15);
  background-color: var(--blanc);
  border-radius: 15px;
}
.content_event .flexEntete > div:last-child > div {
  display: flex;
  align-items: center;
  gap: 2em;
  flex-wrap: wrap;
  padding: 2em;
}
.content_event .flexEntete > div:last-child > div > div {
  flex: 0 0 calc(50% - 1em);
  max-width: calc(50% - 1em);
}
.content_event .flexEntete > div:last-child > div > div:first-child {
  border-right: 1px solid var(--rouge);
  position: relative;
}
.content_event .flexEntete > div:last-child > div > div:first-child > p {
  font-weight: 500;
}
.content_event .flexEntete > div:last-child > div > div:first-child > div:first-of-type {
  display: flex;
  align-items: center;
  gap: 1em;
}
.content_event .flexEntete > div:last-child > div > div:first-child > div:first-of-type > * {
  font-size: 2em;
  margin: 0;
  cursor: pointer;
  transition: all 0.3s;
}
.content_event .flexEntete > div:last-child > div > div:last-child > div:first-child {
  display: flex;
  align-items: center;
  gap: 0.5em;
  margin-bottom: 1em;
}
.content_event .flexEntete > div:last-child > div > div:last-child > div:first-child > img {
  width: 35px;
}
.content_event .flexEntete > div:last-child > div > div:last-child > div:first-child > p {
  margin: 0;
  font-size: 0.9em;
  font-weight: 500;
}
.content_event .flexEntete > div:last-child > div > div:last-child > div:last-child:not(:first-child) > p {
  font-weight: 500;
  color: var(--jaune);
  margin: 0 0 0.4em;
}
.content_event .flexEntete > div:last-child > div > div:last-child > div:last-child:not(:first-child) .btnRond {
  display: flex;
  align-items: center;
  gap: 1em;
}
.content_event .flexEntete > div:last-child > div > div:last-child > div:last-child:not(:first-child) .btnRond > * {
  font-size: 1.8em;
  margin: 0;
  transition: all 0.3s;
}
.content_event .flexEntete > div:last-child > div > div:last-child > div:last-child:not(:first-child) .btnRond > *:hover {
  color: var(--rouge-fonce);
}
.content_event .flexEntete > div:last-child .modalTel {
  display: none;
  width: 90%;
  background-color: var(--noir);
  text-align: center;
  padding: 1.5em 1em 1em;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  position: absolute;
  z-index: 1;
  bottom: 4em;
  left: 35%;
  transform: translateX(-50%);
}
.content_event .flexEntete > div:last-child .modalTel:after {
  content: "";
  border-width: 19px;
  border-style: solid;
  border-color: var(--noir) transparent transparent transparent;
  position: absolute;
  bottom: -32px;
  left: 22px;
}
.content_event .flexEntete > div:last-child .modalTel > i {
  color: var(--blanc);
  font-size: 1.5em !important;
  cursor: pointer;
  position: absolute;
  top: 2px;
  right: 5px;
}
.content_event .flexEntete > div:last-child .modalTel > div {
  display: flex;
  align-items: center;
  gap: 5px;
  flex-wrap: wrap;
}
.content_event .flexEntete > div:last-child .modalTel > div > a {
  color: var(--blanc);
  text-decoration: underline;
}
.content_event .flexEntete > div > iframe {
  border: none;
  border-radius: 15px 15px 0 0;
  width: 100%;
  height: 450px;
}
.content_event .toggleBleu {
  margin: 3em 0 6em;
}
.content_event .toggleBleu > .enteteT {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--jaune);
  padding-bottom: 0.5em;
  cursor: pointer;
}
.content_event .toggleBleu > .enteteT > h4 {
  margin: 0;
  font-size: 2.5em;
}
.content_event .toggleBleu > .enteteT > i {
  color: var(--jaune);
  font-size: 2em;
  transition: all 0.3s;
}
.content_event .toggleBleu > .content {
  display: none;
  margin-top: 1.5em;
}
.content_event .toggleBleu > .content h5 {
  margin-top: 1.5em;
  color: var(--rouge);
}
.content_event .toggleBleu > .content h5:first-child {
  margin-top: 0;
}
.content_event .toggleBleu ul {
  display: flex;
  flex-wrap: wrap;
  gap: 1em;
  list-style: inside;
  margin: 0;
}
.content_event .toggleBleu ul > li {
  flex: 0 0 calc(33.33% - 0.7em);
  max-width: calc(33.33% - 0.7em);
}
.content_event .toggleBleu.open > .entete > i {
  transform: rotate(180deg);
}
.content_event .toggleBleu.open > .content {
  display: block;
}
.content_event .toggleBleu span {
  font-weight: 700;
}
.content_event .tableau {
  border-collapse: collapse;
  border-spacing: 0;
  table-layout: fixed;
  width: 100%;
  border: 1px solid #E6E6E6;
  word-wrap: break-word;
}
.content_event .tableau tr {
  border: 1px solid #E6E6E6;
}
.content_event .tableau tr > th {
  padding: 0.5em;
  font-weight: 900;
  vertical-align: middle;
  text-align: center;
  border: 1px solid #E6E6E6;
}
.content_event .tableau tr > td {
  padding: 0.5em;
  border: 1px solid #E6E6E6;
}

/* MEDIA QUERIES */
@media screen and (max-width: 1440px) {
  .content_event .flexEntete > div:first-child {
    flex: 0 0 600px;
    max-width: 600px;
  }
}
@media screen and (max-width: 1200px) {
  .content_event .flexEntete > div:first-child {
    flex: 0 0 500px;
    max-width: 500px;
  }
  .content_event .flexEntete > div:first-child #slide .slick-slide div, .content_event .flexEntete > div:first-child #imageSeule {
    height: 475px;
  }
  .content_event .flexEntete > div:last-child > div {
    padding: 1.5em 1em;
    gap: 1em;
  }
  .content_event .flexEntete > div:last-child > div > div {
    flex: 0 0 calc(50% - 0.5em);
    max-width: calc(50% - 0.5em);
  }
  .content_event .flexEntete > div:last-child > div > div:first-child > div:first-of-type > * {
    font-size: 1.5em;
  }
  .content_event .flexEntete > div:last-child > div > div:last-child > div > img {
    width: 30px;
  }
  .content_event .flexEntete > div > iframe {
    height: 350px;
  }
  .content_event .tableau > thead > tr > th, .content_event .tableau > tbody > tr > td {
    font-size: 0.9em;
  }
}
@media screen and (max-width: 990px) {
  .content_event .flexEntete > div:first-child, .content_event .flexEntete > div:last-child {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .content_event .toggleBleu ul > li {
    flex: 0 0 calc(50% - 0.5em);
    max-width: calc(50% - 0.5em);
  }
}
@media screen and (max-width: 768px) {
  .content_event .tableau > thead > tr > th, .content_event .tableau > tbody > tr > td {
    font-size: 0.8em;
  }
}
@media screen and (max-width: 576px) {
  .content_event .flexEntete > div:first-child #slide .slick-slide div, .content_event .flexEntete > div:first-child #imageSeule {
    height: 375px;
  }
  .content_event .flexEntete > div:last-child > div {
    padding: 1em;
  }
  .content_event .flexEntete > div > iframe {
    height: 250px;
  }
  .content_event .toggleBleu > .entete > i {
    font-size: 1.5em;
  }
  .content_event .toggleBleu ul > li {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .content_event .tableau > thead > tr > th, .content_event .tableau > tbody > tr > td {
    font-size: 0.7em;
  }
  .content_event .tableau > thead > tr > th:nth-child(2), .content_event .tableau > thead > tr > th:nth-child(3) {
    width: 80px;
  }
}
@media screen and (max-width: 450px) {
  .content_event .flexEntete > div:first-child #slide .slick-slide div, .content_event .flexEntete > div:first-child #imageSeule {
    height: 300px;
  }
  .content_event .flexEntete > div:last-child > div {
    gap: 1em;
  }
  .content_event .flexEntete > div:last-child > div > div {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .content_event .flexEntete > div:last-child > div > div:first-child {
    border-bottom: 1px solid var(--rouge);
    border-right: none;
    padding-bottom: 1em;
  }
  .content_event .tableau > thead > tr > th, .content_event .tableau > tbody > tr > td {
    font-size: 0.6em;
    padding: 0.5em 0.3em;
  }
}/*# sourceMappingURL=main.css.map */