/* Generated by less 3.11.1 */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
img {
  display: block;
}
a {
  text-decoration: none;
}
body {
  background-color: white;
  font-family: "Calibri", sans-serif;
  overflow-x: hidden;
}
/*------ VARIABLE ------*/
/*------ RECURRENTS ------*/
.center {
  width: 960px;
  margin: 0 auto;
}
h1 {
  font-family: "Homemade Apple", serif;
  font-size: 36px;
  color: #3f494a;
  text-align: center;
  font-weight: lighter;
  margin-bottom: 50px;
  padding-top: 50px;
}
h3 {
  color: #f3c59b;
  font-size: 25px;
  font-family: "Calibri", sans-serif;
  text-align: center;
  text-transform: uppercase;
  font-weight: bold;
  margin-bottom: 10px;
}
p {
  font-size: 20px;
  color: #3f494a;
}
span.bold {
  font-weight: bold;
}
/*-----BURGER-----*/
div.burger {
  display: none;
  position: fixed;
  right: 15px;
  top: 15px;
  width: 50px;
  height: 50px;
  background-color: white;
  border: 2px solid #c1dfe2;
  border-radius: 5px;
  z-index: 9999;
  cursor: pointer;
}
div.burger span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 30px;
  height: 2px;
  background-color: #c1dfe2;
  display: block;
  transition: all 0.3s ease-in-out;
}
div.burger span:before,
div.burger span:after {
  content: '';
  position: absolute;
  width: 30px;
  height: 2px;
  background-color: #c1dfe2;
  display: block;
  transition: all 0.3s ease-in-out;
}
div.burger span:before {
  top: -10px;
}
div.burger span:after {
  top: 10px;
}
/*-----NAVBAR -----*/
nav.menu {
  width: 100%;
  padding-top: 50px;
  background-color: white;
  text-align: center;
  position: fixed;
  z-index: 999;
}
nav.menu ul.center {
  font-size: 0;
}
nav.menu ul.center > li {
  position: relative;
  display: inline-block;
  font-size: 30px;
  line-height: 70px;
  font-weight: 500;
  text-transform: uppercase;
  color: #3f494a;
  padding: 0 20px;
  transition: all 0.5s;
  cursor: pointer;
}
nav.menu ul.center > li:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 20px;
  height: 4px;
  width: calc(100% - 40px);
  background-color: #f3c59b;
  transform-origin: center;
  transition: all 0.5s;
  transform: scale(0);
}
nav.menu ul.center > li:hover {
  color: #f3c59b;
}
nav.menu ul.center > li:hover:before {
  transform: scale(1);
}
nav.menu ul.center > li.icon:before {
  display: none;
}
nav.menu ul.center > li.deroulant {
  transition: color 0.5s;
}
nav.menu ul.center > li.deroulant:after {
  display: inline-block;
  content: '\f107';
  font-family: "Font Awesome 5 Free";
  font-weight: bold;
  font-size: 20px;
  line-height: 1;
  margin-left: 10px;
  transition: all 0.5s;
  transform: rotate(0deg);
}
nav.menu ul.center > li.is-open {
  background-color: white;
}
nav.menu ul.center > li.is-open:after {
  transform: rotate(180deg);
}
nav.menu ul.center > li.active {
  color: #f3c59b;
}
nav.menu ul.center > li.active:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 20px;
  height: 4px;
  width: calc(100% - 40px);
  background-color: #f3c59b;
  transform-origin: center;
  transition: all 0.5s;
  transform: scale(1);
}
nav.menu ul.center > li a {
  display: block;
  color: #3f494a;
  transition: color 0.5s;
}
nav.menu ul.center > li a i {
  color: #96aeb0;
  transition: color 0.5s;
}
nav.menu ul.center > li a i:hover {
  color: #f3c59b;
}
nav.menu ul.center > li a:hover {
  color: #f3c59b;
}
nav.menu ul.center > li a.active {
  color: #f3c59b;
}
nav.menu ul.center > li a.active:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 20px;
  height: 4px;
  width: calc(100% - 40px);
  background-color: #f3c59b;
  transform-origin: center;
  transition: all 0.5s;
  transform: scale(1);
}
nav.menu ul.center > li ul {
  position: absolute;
  background-color: white;
  width: 100%;
  left: 0;
}
nav.menu ul.center > li ul li {
  list-style-type: none;
}
nav.menu ul.center > li ul li a {
  display: block;
  text-transform: none;
  font-size: 24px;
  line-height: 24px;
  padding: 25px 0px;
}
/*-----HEADER -----*/
header {
  background-color: #c1dfe2;
  width: 100vw;
  padding: 175px 0 195px;
  /*H110*/
  position: relative;
  /*pour le after*/
  z-index: -2;
}
header img {
  margin: 0 auto;
  height: auto;
  max-width: 660px;
  z-index: 1;
  position: relative;
}
header:after {
  content: "";
  bottom: 0;
  left: 0;
  top: 100px;
  right: 0;
  max-width: 100vw;
  background-image: url(../img/header-nuagesb.png);
  background-repeat: repeat-x;
  height: auto;
  position: absolute;
}
/*------------------------------PAGE INDEX -----*/
/*-----SECTION a propos -----*/
section.a-propos {
  padding: 100px 40px;
}
section.a-propos article.presentation {
  display: flex;
  justify-content: space-around;
}
section.a-propos article.presentation img {
  max-width: calc(50% - 50px);
  height: auto;
  margin-right: 50px;
}
section.a-propos article.presentation div.texte {
  align-self: center;
  width: 50%;
}
section.a-propos article.presentation div.texte ul {
  font-size: 0;
  margin-bottom: 10px;
}
section.a-propos article.presentation div.texte ul li {
  color: #3f494a;
  font-weight: bold;
  font-family: "Calibri", sans-serif;
  font-size: 20px;
  list-style-type: none;
}
/*-----SECTION agenda -----*/
section.agenda {
  padding: 100px 70px;
}
section.agenda article {
  width: 100%;
  box-shadow: 0 0 40px rgba(193, 223, 226, 0.4);
  border-radius: 50px 50px 25px 25px;
}
section.agenda article h2 {
  font-size: 30px;
  font-weight: bold;
  color: #3f494a;
  text-transform: uppercase;
  text-align: center;
  background-color: #c1dfe2;
  border-radius: 50px 50px 0 0;
  padding: 40px 0;
}
section.agenda article div.container {
  display: flex;
  text-align: center;
}
section.agenda article div.container div.date {
  align-self: center;
  width: 40%;
}
section.agenda article div.container div.date p {
  text-transform: uppercase;
  color: #3f494a;
  font-family: "dunbar-low", sans-serif;
  font-weight: 500;
}
section.agenda article div.container div.date p:nth-of-type(1),
section.agenda article div.container div.date p:nth-of-type(3) {
  font-size: 30px;
}
section.agenda article div.container div.date p:nth-of-type(1) {
  line-height: 30px;
}
section.agenda article div.container div.date p:nth-of-type(2) {
  font-size: 100px;
  line-height: 90px;
}
section.agenda article div.container div.date p:nth-of-type(4) {
  font-size: 30px;
  margin-top: 25px;
}
section.agenda article div.container div.date p:nth-of-type(5),
section.agenda article div.container div.date p:nth-last-of-type(1) {
  font-size: 20px;
}
section.agenda article div.container div.date p:nth-last-of-type(1) {
  text-transform: none;
  line-height: 20px;
}
section.agenda article div.container div.date-responsive {
  display: none;
}
section.agenda article div.container div.date-responsive ul {
  font-size: 0;
}
section.agenda article div.container div.date-responsive ul li {
  font-size: 16px;
  list-style-type: none;
  font-family: "Calibri", sans-serif;
  font-weight: 500;
  color: #3f494a;
}
section.agenda article div.container div.date-responsive ul li:nth-of-type(1) {
  font-weight: bold;
}
section.agenda article div.container div.date-responsive ul li:nth-of-type(1),
section.agenda article div.container div.date-responsive ul li:nth-of-type(2) {
  text-transform: uppercase;
  font-size: 22px;
}
section.agenda article div.container div.affiche {
  border-left: 3px solid #c1dfe2;
  padding: 25px 0;
  align-self: center;
  width: 60%;
}
section.agenda article div.container div.affiche a {
  display: inline-block;
  border: 4px solid white;
  border-radius: 5px;
  transition: all 0.5s;
}
section.agenda article div.container div.affiche a img {
  max-width: 215px;
  height: auto;
}
section.agenda article div.container div.affiche a:hover {
  transform: scale(1.025);
  box-shadow: 0 0 40px rgba(150, 174, 176, 0.3);
}
/*------------------------------PAGE ACTIVITES -----*/
/*-----SECTION activités -----*/
section.activites {
  padding: 100px 40px;
}
section.activites article {
  display: flex;
}
section.activites article div.img {
  width: 50%;
  height: auto;
}
section.activites article div.texte {
  align-self: center;
  width: 50%;
}
section.activites article div.texte p:nth-of-type(1) {
  margin-bottom: 10px;
}
section.activites article.couture {
  margin-bottom: 100px;
}
section.activites article.couture div.img {
  align-self: center;
  margin-right: 50px;
}
section.activites article.dessin {
  flex-direction: row-reverse;
}
section.activites article.dessin div.img img {
  margin: 0 auto;
  max-height: 355px;
}
/*------------------------------PAGE BALLOCHARDS ---*/
section.ballochards {
  padding: 100px 10px;
}
section.ballochards article.theatre {
  display: flex;
  margin-bottom: 100px;
  padding: 0 40px;
}
section.ballochards article.theatre div.img {
  width: 50%;
  height: auto;
  margin-right: 50px;
}
section.ballochards article.theatre div.img img {
  max-height: 300px;
}
section.ballochards article.theatre div.texte {
  align-self: center;
  width: 50%;
}
section.ballochards article.theatre div.texte p:nth-of-type(1) {
  margin-bottom: 10px;
}
section.ballochards article.photos h3 {
  color: #3f494a;
  text-transform: inherit;
  margin-bottom: 25px;
}
section.ballochards article.photos div.gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}
section.ballochards article.photos div.gallery a.fancy {
  max-width: calc(33.333% - 20px);
  display: block;
  margin: 10px;
}
section.ballochards article.photos div.gallery a.fancy img {
  width: 100%;
  height: auto;
}
/*------------------------------PAGE SIONCHANTAY ---*/
section.sionchantay {
  padding: 100px 10px;
}
section.sionchantay article.chant-infos {
  display: flex;
  margin-bottom: 100px;
  padding: 0 40px;
}
section.sionchantay article.chant-infos div.img {
  width: 50%;
  height: auto;
  margin-right: 50px;
}
section.sionchantay article.chant-infos div.img img {
  max-height: 300px;
}
section.sionchantay article.chant-infos div.texte {
  align-self: center;
  width: 50%;
}
section.sionchantay article.chant-infos div.texte p:nth-of-type(1) {
  margin-bottom: 10px;
}
section.sionchantay article.photos h3 {
  color: #3f494a;
  text-transform: inherit;
  margin-bottom: 25px;
}
section.sionchantay article.photos div.gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}
section.sionchantay article.photos div.gallery a.fancy {
  max-width: calc(33.333% - 20px);
  display: block;
  margin: 10px;
}
section.sionchantay article.photos div.gallery a.fancy img {
  width: 100%;
  height: auto;
}
/*------------------------------PAGE CONTACT -----*/
section.formulaire {
  padding: 100px 150px;
}
section.formulaire h1 {
  margin-bottom: 25px;
}
section.formulaire p {
  text-align: center;
}
section.formulaire form {
  width: 100%;
  margin: 50px auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  position: relative;
}
section.formulaire form input {
  border: none;
  width: 100%;
  margin-bottom: 20px;
  color: #3f494a;
  background-color: #c1dfe2;
  padding: 15px 10px;
  border-radius: 5px;
  font-family: "Calibri", sans-serif;
  font-size: 20px;
}
section.formulaire form input:nth-of-type(1),
section.formulaire form input:nth-of-type(2) {
  width: calc(50% - 10px);
}
section.formulaire form input.bouton {
  position: absolute;
  right: 0;
  bottom: -65px;
  background-color: #96aeb0;
  color: white;
  text-transform: uppercase;
  font-weight: bold;
  font-style: inherit;
  padding: 10px;
  display: block;
  width: 50%;
  cursor: pointer;
}
section.formulaire form textarea {
  border: none;
  margin-bottom: 20px;
  width: 100%;
  padding: 10px;
  color: #3f494a;
  background-color: #c1dfe2;
  font-family: "Calibri", sans-serif;
  font-size: 20px;
  border-radius: 5px;
}
/*--------------- MEDIA SCREEN paysage ---------960px*/
@media screen and (max-width: 960px) {
  .center {
    width: 768px;
  }
  p {
    font-size: 18px;
  }
  h1 {
    font-size: 32px;
  }
  h3 {
    font-size: 24px;
  }
  /*-----NAVBAR -----*/
  nav.menu ul.center > li {
    font-size: 22px;
    line-height: 60px;
    padding: 0 20px;
  }
  nav.menu ul.center > li ul li a {
    font-size: 22px;
    line-height: 22px;
    padding: 20px 0px;
  }
  /*------------------------------PAGE INDEX -----*/
  /*-----SECTION a propos -----*/
  section.a-propos {
    padding: 100px 35px;
  }
  section.a-propos article.presentation div.texte ul li {
    font-size: 18px;
  }
  /*-----SECTION agenda -----*/
  section.agenda {
    padding: 100px 35px;
  }
  section.agenda article h2 {
    font-size: 28px;
  }
  section.agenda article div.container div.date p:nth-of-type(1),
  section.agenda article div.container div.date p:nth-of-type(3) {
    font-size: 28px;
  }
  section.agenda article div.container div.date p:nth-of-type(1) {
    line-height: 28px;
  }
  section.agenda article div.container div.date p:nth-of-type(2) {
    font-size: 90px;
    line-height: 80px;
  }
  section.agenda article div.container div.date p:nth-of-type(4) {
    font-size: 28px;
    margin-top: 24px;
  }
  section.agenda article div.container div.date p:nth-of-type(5),
  section.agenda article div.container div.date p:nth-last-of-type(1) {
    font-size: 18px;
  }
  section.agenda article div.container div.date p:nth-last-of-type(1) {
    line-height: 18px;
  }
  /*------------------------------PAGE ACTIVITES -----*/
  /*-----SECTION activités -----*/
  section.activites {
    padding: 100px 35px;
  }
  section.activites article.couture div.img {
    margin-right: 35px;
  }
  /*------------------------------PAGE BALLOCHARDS ---*/
  section.ballochards article.theatre {
    padding: 0 35px;
  }
  section.ballochards article.theatre div.img {
    margin-right: 35px;
  }
  /*------------------------------PAGE SIONCHANTAY ---*/
  section.sionchantay article.chant-infos {
    padding: 0 35px;
  }
  section.sionchantay article.chant-infos div.img {
    margin-right: 35px;
  }
  /*------------------------------PAGE CONTACT -----*/
  section.formulaire {
    padding: 100px 100px;
  }
}
/*--------------- MEDIA SCREEN paysage ---------768px*/
@media screen and (max-width: 768px) {
  .center {
    width: 100%;
  }
  p {
    font-size: 16px;
  }
  h1 {
    font-size: 30px;
    margin-bottom: 25px;
    padding-top: 0;
  }
  h3 {
    font-size: 22px;
  }
  /*----- BURGER -----*/
  div.burger {
    display: block;
  }
  div.burger.burger-open span {
    background-color: transparent;
  }
  div.burger.burger-open span:before {
    background-color: #c1dfe2;
    transform: rotate(135deg);
    top: 0;
  }
  div.burger.burger-open span:after {
    background-color: #c1dfe2;
    transform: rotate(-135deg);
    top: 0;
  }
  /*-----NAVBAR -----*/
  nav.menu {
    height: 100vh;
    padding-top: inherit;
    transform: translateX(-100%);
    transition: transform 0.5s;
    background-color: rgba(255, 255, 255, 0.9);
  }
  nav.menu.open {
    transform: translateX(0);
  }
  nav.menu ul.center {
    width: 100%;
    position: relative;
    top: 50%;
    transform: translateY(-50%);
  }
  nav.menu ul.center > li {
    width: 320px;
    margin: 0 auto;
    display: inherit;
    font-size: 30px;
    line-height: 70px;
  }
  nav.menu ul.center > li:before {
    display: none;
  }
  nav.menu ul.center > li:hover {
    color: #f3c59b;
  }
  nav.menu ul.center > li:hover:before {
    transform: inherit;
  }
  nav.menu ul.center > li.deroulant {
    transition: color 0.5s;
    position: relative;
  }
  nav.menu ul.center > li.deroulant:after {
    position: absolute;
    top: 25px;
    /*35-10 moitié de20 fs de la font*/
    right: 30px;
    display: inherit;
    content: '\f107';
    font-family: "Font Awesome 5 Free";
    font-weight: bold;
    font-size: 20px;
    line-height: 1;
    margin-left: 10px;
    transition: all 0.5s;
    transform: rotate(0deg);
  }
  nav.menu ul.center > li.is-open {
    background-color: inherit;
  }
  nav.menu ul.center > li.is-open:after {
    transform: rotate(180deg);
  }
  nav.menu ul.center > li.active:before {
    display: none;
  }
  nav.menu ul.center > li a.active {
    color: #f3c59b;
  }
  nav.menu ul.center > li a.active:before {
    display: none;
  }
  nav.menu ul.center > li ul {
    position: inherit;
    background-color: inherit;
  }
  nav.menu ul.center > li ul li a {
    display: block;
    text-transform: none;
    font-size: 24px;
    line-height: 24px;
    padding: 12.5px 0px;
  }
  /*-----HEADER -----*/
  header {
    padding: 100px 35px 170px;
  }
  header:after {
    top: 0px;
  }
  /*------------------------------PAGE INDEX -----*/
  /*-----SECTION a propos -----*/
  section.a-propos {
    padding: 100px 35px 50px;
  }
  section.a-propos article.presentation div.texte ul li {
    font-size: 16px;
  }
  /*-----SECTION agenda -----*/
  section.agenda {
    padding: 50px 35px 100px;
  }
  section.agenda article h2 {
    font-size: 24px;
    padding: 20px 0;
  }
  section.agenda article div.container div.date p:nth-of-type(1),
  section.agenda article div.container div.date p:nth-of-type(3) {
    font-size: 26px;
  }
  section.agenda article div.container div.date p:nth-of-type(1) {
    line-height: 26px;
  }
  section.agenda article div.container div.date p:nth-of-type(2) {
    font-size: 80px;
    line-height: 70px;
  }
  section.agenda article div.container div.date p:nth-of-type(4) {
    font-size: 26px;
    margin-top: 22px;
  }
  section.agenda article div.container div.date p:nth-of-type(5),
  section.agenda article div.container div.date p:nth-last-of-type(1) {
    font-size: 16px;
  }
  section.agenda article div.container div.date p:nth-last-of-type(1) {
    line-height: 16px;
  }
  /*------------------------------PAGE ACTIVITES -----*/
  /*-----SECTION activités -----*/
  section.activites article.couture div.img {
    margin-right: 25px;
  }
  /*------------------------------PAGE BALLOCHARDS ---*/
  section.ballochards article.theatre div.img {
    margin-right: 25px;
  }
  section.ballochards article.photos h3 {
    margin-bottom: 25px;
  }
  section.ballochards article.photos div.gallery a.fancy {
    max-width: calc(33.333% - 10px);
    margin: 5px;
  }
  /*------------------------------PAGE SIONCHANTAY ---*/
  section.sionchantay article.chant-infos div.img {
    margin-right: 25px;
  }
  section.sionchantay article.photos h3 {
    margin-bottom: 25px;
  }
  section.sionchantay article.photos div.gallery a.fancy {
    max-width: calc(33.333% - 10px);
    margin: 5px;
  }
  /*------------------------------PAGE CONTACT -----*/
  section.formulaire {
    padding: 100px 50px;
  }
}
/*--------------- MEDIA SCREEN paysage ---------600px*/
@media screen and (max-width: 600px) {
  .center {
    width: 100%;
  }
  h1 {
    font-size: 28px;
  }
  h3 {
    font-size: 22px;
  }
  /*-----NAVBAR -----*/
  /*-----HEADER -----*/
  header {
    padding: 100px 15px 170px;
  }
  header:after {
    top: -30px;
  }
  /*------------------------------PAGE INDEX -----*/
  /*-----SECTION a propos -----*/
  section.a-propos {
    padding: 100px 35px 50px;
  }
  section.a-propos article.presentation {
    flex-direction: column;
    justify-content: inherit;
  }
  section.a-propos article.presentation img {
    align-self: center;
    max-width: 75%;
    margin-right: 0;
    margin-bottom: 25px;
  }
  section.a-propos article.presentation div.texte {
    width: 100%;
  }
  /*-----SECTION agenda -----*/
  section.agenda {
    padding: 50px 15px 100px;
  }
  section.agenda article h2 {
    font-size: 22px;
    padding: 30px 0;
  }
  section.agenda article div.container {
    border: 2px solid #c1dfe2;
    border-radius: 0 0 25px 25px;
    flex-direction: column-reverse;
  }
  section.agenda article div.container div.date {
    display: none;
  }
  section.agenda article div.container div.date-responsive {
    padding: 12.5px 0 25px;
    display: block;
  }
  section.agenda article div.container div.affiche {
    padding: 25px 0 12.5px;
    border-left: none;
  }
  /*------------------------------PAGE ACTIVITES -----*/
  /*-----SECTION activités -----*/
  section.activites {
    padding: 100px 15px;
  }
  section.activites article {
    flex-direction: column;
  }
  section.activites article div.img {
    width: 75%;
    margin-bottom: 25px;
  }
  section.activites article div.texte {
    width: 100%;
  }
  section.activites article.couture div.img {
    margin-right: 0;
  }
  section.activites article.dessin {
    flex-direction: column;
  }
  section.activites article.dessin div.img {
    align-self: center;
  }
  section.activites article.dessin div.img img {
    max-height: 228px;
  }
  /*------------------------------PAGE BALLOCHARDS ---*/
  section.ballochards {
    padding: 100px 15px;
  }
  section.ballochards article.theatre {
    flex-direction: column;
    padding: 0;
  }
  section.ballochards article.theatre div.img {
    margin-right: 0;
    margin-bottom: 25px;
    width: 75%;
    align-self: center;
  }
  section.ballochards article.theatre div.img img {
    max-height: 228px;
  }
  section.ballochards article.theatre div.texte {
    width: 100%;
  }
  section.ballochards article.photos div.gallery a.fancy {
    max-width: calc(50% - 10px);
    margin: 5px;
  }
  /*------------------------------PAGE SIONCHANTAY ---*/
  section.sionchantay {
    padding: 100px 15px;
  }
  section.sionchantay article.chant-infos {
    flex-direction: column;
    padding: 0;
  }
  section.sionchantay article.chant-infos div.img {
    margin-right: 0;
    margin-bottom: 25px;
    width: 75%;
    align-self: center;
  }
  section.sionchantay article.chant-infos div.img img {
    max-height: 228px;
  }
  section.sionchantay article.chant-infos div.texte {
    width: 100%;
  }
  section.sionchantay article.photos h3 {
    margin-bottom: 25px;
  }
  section.sionchantay article.photos div.gallery a.fancy {
    max-width: calc(50% - 10px);
    margin: 5px;
  }
  /*------------------------------PAGE CONTACT -----*/
  section.formulaire {
    padding: 100px 25px;
  }
}
/*--------------- MEDIA SCREEN paysage ---------480px*/
@media screen and (max-width: 480px) {
  .center {
    width: 100%;
  }
  h1 {
    font-size: 26px;
  }
  h3 {
    font-size: 20px;
  }
  /*-----HEADER -----*/
  header {
    padding: 0 15px 0;
    height: 300px;
  }
  header img {
    top: 50%;
    transform: translateY(-50%);
  }
  header:after {
    top: -160px;
  }
  /*------------------------------PAGE INDEX -----*/
  /*-----SECTION a propos -----*/
  section.a-propos {
    padding: 100px 35px 50px;
  }
  section.a-propos article.presentation {
    flex-direction: column;
    justify-content: inherit;
  }
  section.a-propos article.presentation img {
    align-self: center;
    max-width: 100%;
    margin-right: 0;
    margin-bottom: 25px;
  }
  section.a-propos article.presentation div.texte {
    width: 100%;
  }
  /*-----SECTION agenda -----*/
  section.agenda article h2 {
    border-radius: 25px 25px 0 0;
    font-size: 20px;
    padding: 20px 0;
  }
  section.agenda article div.container div.affiche {
    width: 75%;
    padding: 25px 0 12.5px;
    border-left: none;
  }
  section.agenda article div.container div.affiche a {
    display: block;
  }
  section.agenda article div.container div.affiche a img {
    max-width: 100%;
  }
  /*------------------------------PAGE ACTIVITES -----*/
  /*-----SECTION activités -----*/
  section.activites article div.img {
    width: 100%;
  }
  /*------------------------------PAGE BALLOCHARDS ---*/
  section.ballochards {
    padding: 100px 15px;
  }
  section.ballochards article.theatre div.img {
    width: 100%;
  }
  section.ballochards article.photos div.gallery a.fancy {
    max-width: 100%;
  }
  /*------------------------------PAGE SIONCHANTAY ---*/
  section.sionchantay article.chant-infos div.img {
    width: 100%;
  }
  section.sionchantay article.photos div.gallery a.fancy {
    max-width: 100%;
  }
  /*------------------------------PAGE CONTACT -----*/
  section.formulaire {
    padding: 100px 15px;
  }
}
