@charset "utf-8";
/* Variable de couleurs */
html {
  --couleur-principal: #283993;
  --couleur-secondaire: #45d1fc;
  --couleur-second: #3097b6;
  --couleur-touche: #2fb774;
  --couleur-ecriture: #000000;
  --couleur-ecriture2: #010101;
  --autre-couleur1: #fff;
}

/* Polices */
@font-face {
  font-family: "montserrat_Thin";
  src: url(../font/Montserrat-Thin.otf);
}
@font-face {
  font-family: "montserrat_Light";
  src: url(../font/Montserrat-Light.otf);
}
@font-face {
  font-family: "montserrat_Regular";
  src: url(../font/Montserrat-Regular.otf);
}
@font-face {
  font-family: "montserrat_Medium";
  src: url(../font/Montserrat-Medium.otf);
}
@font-face {
  font-family: "montserrat_SemiBold";
  src: url(../font/Montserrat-SemiBold.otf);
}
@font-face {
  font-family: "montserrat_Bold";
  src: url(../font/Montserrat-Bold.otf);
}
@font-face {
  font-family: "montserrat_ExtraBold";
  src: url(../font/Montserrat-ExtraBold.otf);
}
@font-face {
  font-family: "montserrat_Black";
  src: url(../font/Montserrat-Black.otf);
}

/* Effet scroll */

/* Basiques */
* {
  padding: 0;
  margin: 0;
  font-family: "Montserrat_Light", sans-serif;
  cursor: default;
}

a {
  text-decoration: none;
  cursor: pointer;
}

/* effet */
.effet {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 100px;
}
.effet .cercle {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: aqua;
}
.cercle:nth-child(1) {
  background-color: var(--couleur-principal);
  position: absolute;
  left: 10px;
  animation: effet1 35s ease-in infinite;
  animation-delay: 0.4s;
}
.cercle:nth-child(2) {
  background-color: var(--couleur-touche);
  position: absolute;
  left: 10px;
  animation: effet2 35s ease-in infinite;
  animation-delay: 0.3s;
}
.cercle:nth-child(3) {
  background-color: rgb(136, 10, 10);
  position: absolute;
  left: 10px;
  top: 80px;
  animation: effet3 35s ease-in infinite;
  animation-delay: 0.5s;
}

@keyframes effet1 {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateX(1500px);
  }
  80% {
    transform: translateY(500px);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes effet2 {
  0% {
    transform: translateY(0);
  }
  30% {
    transform: translateY(400px);
  }
  70% {
    transform: translateX(2000px);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes effet3 {
  0% {
    transform: translateY(0);
  }
  30% {
    transform: translateX(1500px);
  }
  50% {
    transform: translateX(600px);
  }
  70% {
    transform: translateY(500px);
  }
  100% {
    transform: translateY(0);
  }
}
/* Fin effet */
/* Fin basique */
/* En tete */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 50px;
  margin: 0 2rem;
}

.reseaux {
  border-left: 3px solid var(--couleur-principal);
  padding-left: 3px;
}
.reseaux a img {
  height: 30px;
  background-color: #2fb774;
  border-radius: 5px;
  cursor: pointer;
  padding: 5px;
  transition: 0.2s;
}

.reseaux a img:hover {
  background-color: #0ffc86;
}

.contact {
  display: flex;
  justify-content: space-around;
  gap: 20px;
}

.contact a {
  text-decoration: none;
  color: var(--couleur-principal);
  align-items: center;
}
.contact a:hover {
  color: #0ffc86;
}
.contact a img {
  height: 20px;
  cursor: pointer;
}

/* Navbar */

main .navbar {
  position: sticky;
  display: flex;
  justify-content: space-around;
  width: 100%;
  background-color: var(--couleur-principal);
  height: 7vh;
  top: 0px;
  align-items: center;
  z-index: 500;
}
.navbar .logo {
  position: relative;
  top: -15px;
}
.navbar .nav-links {
  display: flex;
  justify-content: space-around;
  position: relative;
  top: -15px;
}
.nav-links ul {
  list-style: none;
  display: flex;
  width: 600px;
  gap: 45px;
  justify-content: center;
  padding: 0;
  margin: 0;
}

.navbar .nav-links a {
  text-decoration: none;
  color: var(--autre-couleur1);
  transition: 0.3s;
  cursor: pointer;
}

.navbar .nav-links a:hover {
  color: var(--couleur-secondaire);
  font-size: 1.05rem;
}

/* bannière */
.baniere {
  height: 60vh;
  width: 100%;
  position: relative;
  z-index: 100;
}

.baniere .text_banniere {
  position: absolute;
  top: 30px;
  text-align: center;
  margin: auto;
  margin-top: 5%;
  margin-bottom: 5%;
  padding: 20px;
  width: 100%;
  height: 60vh;
}

.text_banniere h1 {
  font-family: "Montserrat_Bold", sans-serif;
  font-size: 4rem;
  color: var(--autre-couleur1);
  line-height: 1;
  cursor: default;
  animation: scroll_vertical linear 0.4s;
}

.text_banniere p {
  font-family: "Montserrat_Light", sans-serif;
  color: var(--autre-couleur1);
  font-size: 1.3rem;
  cursor: default;
  animation: scroll_vertical linear 0.6s;
}
.bouton {
  background-color: var(--couleur-secondaire);
  border-radius: 20px;
  transition: 0.3s;
  cursor: pointer;
  padding: 10px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 35px;
  width: 200px;
  animation: scroll_horizontal_gauche linear 0.7s;
  animation-timeline: view();
  animation-range-start: cover 0;
  animation-range-end: 30%;
}
.bouton a {
  display: flex;
  gap: 10px;
  text-decoration: none;
  color: var(--couleur-ecriture);
  align-items: center;
  justify-content: center;
}
.bouton a img {
  height: 20px;
  width: 20px;
}
.bouton:hover {
  background-color: var(--couleur-second);
}

.photo_banniere {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center;
}

/* Articles */
.article {
  position: relative;
  top: -100px;
  display: flex;
  justify-content: center;
  width: 90%;
  margin-left: auto;
  margin-right: auto;
  padding: 0 0.5rem;
  gap: 50px;
}

.article1 {
  width: 350px;
  box-shadow: -2px -1px 15px #00000030;
  border-radius: 30px;
  padding: 30px;
  background-color: var(--autre-couleur1);
  cursor: pointer;
  z-index: 100;
  transition: 2s;
}
.article1:hover {
  position: relative;
  top: -40px;
}
.article1:nth-child(4) {
  display: none;
}

.p1 {
  display: flex;
  gap: 20px;
  width: 300px;
  margin-left: 0;
  cursor: pointer;
}

.article1 img {
  height: 30px;
  cursor: pointer;
}
.article1 h2 {
  color: var(--couleur-principal);
  align-items: center;
  font-size: 1.5rem;
  font-family: "Montserrat_Regular", sans-serif;
  cursor: pointer;
}
.article1 p {
  font-size: 0.9rem;
  padding: 4px 0;
  cursor: pointer;
  color: var(--couleur-ecriture2);
}

/* Profil */
.profil {
  display: flex;
  justify-content: center;
  position: relative;
  top: 20px;
  width: 90%;
  margin-left: auto;
  margin-right: auto;
  gap: 100px;
  height: 500px;
  padding: 0 9rem;
}

.profil .image_profil {
  height: 400px;
  width: 600px;
  z-index: 100;
}

.image_profil img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-bottom-left-radius: 50px;
  border-top-left-radius: 50px;
  animation: scroll_horizontal_gauche linear 1s;
  animation-timeline: view();
  animation-range-start: cover 0;
  animation-range-end: 20%;
  z-index: 200;
}

.profil .texte_Profil {
  margin-top: 40px;
  height: 600px;
  width: 500px;
  padding: 5px;
  z-index: 100;
  animation: scroll_horizontal_droite linear 1.1s;
  animation-timeline: view();
  animation-range-start: cover 0;
  animation-range-end: 30%;
}
.texte_Profil h2 {
  font-family: "Montserrat_Regular", sans-serif;
  font-size: 3rem;
  line-height: 50px;
}

.texte_Profil p {
  font-size: 1rem;
  color: var(--couleur-ecriture2);
}

/* Adresse */

#adresse {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 0 2rem;
  width: 90%;
  height: 500px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  top: 40px;
}
/* Programme */
#adresse .programme {
  height: 300px;
  width: 700px;
  display: flex;
  flex-direction: column;
  align-items: left;
  padding: 0;
  margin-left: 6rem;
  margin-top: 0px;
  animation: scroll_horizontal_droite linear 1s;
  animation-timeline: view();
  animation-range-start: cover 0;
  animation-range-end: 30%;
}
#adresse .programme h2 {
  font-size: 3rem;
  font-family: "Montserrat_Regular", sans-serif;
  text-align: left;
  width: 550px;
  z-index: 1;
  line-height: 50px;
}
.programme .date-heure {
  text-align: left;
  width: 500px;
  padding: 15px 0;
}
.date-heure h4 {
  font-size: 1.3rem;
  font-family: "Montserrat_Regular", sans-serif;
  margin-bottom: 20px;
  z-index: 1;
}
.date-heure ul {
  list-style-position: inside;
  padding: 0;
  z-index: 1;
  margin-top: 5px;
}
.carousel {
  position: relative;
  left: -80px;
}
.carousel button {
  display: none;
}
.carousel .adresse {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: 750px;
  gap: 60px;
  justify-content: center;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
}
/* Correction_adresse */
.adresse1 {
  height: 270px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  padding: 20px;
  align-items: center;
  transition: 0.5s;
  cursor: pointer;
  position: relative;
  z-index: 1;
}
.adresse1:nth-child(1) {
  background-color: #38ecf26c;
}
.adresse1:nth-child(2) {
  background-color: #a4fe708f;
}
.adresse1:nth-child(3) {
  background-color: #fe707077;
}
.adresse1:nth-child(4) {
  background-color: #a270fe75;
}
.adresse1:nth-child(5) {
  background-color: #f5a422a4;
}
/* .adresse1:hover {
  background-color: var(--autre-couleur1);
  box-shadow: 5px 5px 10px #00000056;
} */
.adresse1 .img1,
.img2,
.img3,
.img4,
.img5 {
  width: 60px;
  height: 60px;
  position: relative;
  margin-bottom: 10px;
  cursor: pointer;
  border-radius: 50%;
  padding: 10px;
  background-color: #fff;
}
.adresse1 .img1 {
  box-shadow: 4px 4px 10px #38ecf2;
}

.adresse1 .img2 {
  box-shadow: 4px 4px 10px #a4fe70;
}
.adresse1 .img3 {
  box-shadow: 4px 4px 10px #fe7070;
}
.adresse1 .img4 {
  box-shadow: 4px 4px 10px #a270fe;
}
.adresse1 .img5 {
  box-shadow: 4px 4px 10px #ff9c00;
}
.adresse1 p {
  text-align: left;
  cursor: pointer;
  font-size: 0.8rem;
  margin-bottom: 10px;
}
.adresse1 .Kin {
  font-family: "montserrat_Medium";
  height: auto;
  width: 100%;
}
.carousel .adresse1:hover {
  background-color: var(--autre-couleur1);
  box-shadow: 5px 5px 10px #00000056;
  .img1 {
    background-color: #38ecf2;
    box-shadow: none;
  }
  .img2 {
    background-color: #a4fe70;
    box-shadow: none;
  }
  .img3 {
    background-color: #fe7070;
    box-shadow: none;
  }
  .img4 {
    background-color: #a270fe;
    box-shadow: none;
  }
  .img5 {
    background-color: #f5a422a4;
    box-shadow: none;
  }
}
/* contact2 */
.con1 {
  height: 40vh;
  width: 100%;
  position: relative;
  top: 240px;
  z-index: 1;
}
.con1 .titre {
  position: absolute;
  display: flex;
  flex-direction: column;
  top: 0px;
  text-align: center;
  margin: auto;
  margin-top: 3%;
  margin-bottom: 5%;
  padding: 20px;
  width: 100%;
  color: var(--autre-couleur1);
}
.titre h4 {
  font-family: "Montserrat_Regular", sans-serif;
  font-size: 1.5rem;
  animation: scroll_vertical linear 0.4s;
  animation-timeline: view();
  animation-range-start: cover 0;
  animation-range-end: cover 30%;
}
.titre h2 {
  font-family: "Montserrat_Bold", sans-serif;
  font-size: 4rem;
  margin-top: -3px;
  margin-bottom: 20px;
  animation: scroll_vertical linear 0.6s;
  animation-timeline: view();
  animation-range-start: cover 0;
  animation-range-end: cover 30%;
}

.con1 .fond {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center;
}
/* Commentaire */
.commentaire {
  display: flex;
  justify-content: center;
  position: relative;
  top: 320px;
  width: 90%;
  margin-left: auto;
  margin-right: auto;
  gap: 100px;
  height: 500px;
  padding: 0 5rem;
  z-index: 1;
}
.commentaire .texte-commentaire {
  width: 550px;
  position: relative;
  margin: 4rem 0;
  animation: scroll_horizontal_gauche linear 1.1s;
  animation-timeline: view();
  animation-range-start: cover 0;
  animation-range-end: cover 30%;
}
.texte-commentaire h2 {
  font-family: "Montserrat_Regular", sans-serif;
  font-size: 3rem;
  line-height: 50px;
  margin-bottom: 20px;
}
.image-commetaire {
  height: 400px;
  width: 600px;
  align-items: center;
  animation: scroll_horizontal_droite linear 1.1s;
  animation-timeline: view();
  animation-range-start: cover 0;
  animation-range-end: cover 40%;
}
.image-commetaire img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-bottom-right-radius: 50px;
  border-top-right-radius: 50px;
}
/* contact 3 */
.con2 {
  background-color: var(--couleur-principal);
  border-radius: 50px;
  margin-left: auto;
  margin-right: auto;
  height: 200px;
  width: 60%;
  position: relative;
  top: 290px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  align-items: center;
}
.con2 h2 {
  font-family: "Montserrat_Regular", sans-serif;
  color: var(--autre-couleur1);
  font-size: 3rem;
  animation: scroll_vertical linear 1s;
  animation-timeline: view();
  animation-range-start: cover 0%;
  animation-range-end: cover 40%;
}
.con2 .bouton {
  margin-top: 3px;
}

/* Pied */
.pied {
  height: auto;
  background-color: var(--couleur-principal);
  width: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  top: 380px;
  margin: 0;
  padding: 0 9rem;
  align-items: center;
  justify-content: center;
}
.pied .basique {
  display: flex;
  gap: 10px;
  justify-content: center;
  align-items: center;
  padding: 10px;
  margin-top: 20px;
}
.basique .logo2 {
  height: 60px;
  width: 60px;
  background-color: var(--autre-couleur1);
  border-radius: 50%;
}
.basique .pied_reseaux {
  display: flex;
  flex-direction: column;
  align-items: left;
  justify-content: center;
  gap: 5px;
}
.pied_reseaux .reseaux {
  border: none;
  padding-left: 0;
}
.pied_reseaux .reseaux img {
  height: 25px;
  width: 25px;
}
.pied .con3 {
  display: flex;
  gap: 50px;
  margin-top: 20px;
  margin-bottom: 10px;
}
.con3 img {
  height: 20px;
  width: 20px;
}
.con3 a {
  text-decoration: none;
  color: var(--autre-couleur1);
}
.copyright {
  color: var(--autre-couleur1);
  font-family: "montserrat_Thin";
}
.con3 a:hover {
  color: var(--couleur-secondaire);
}
.con3 .mail,
.tel,
.localisation {
  display: flex;
  gap: 10px;
}
.monter {
  position: absolute;
  bottom: 60px;
  right: 30px;
  z-index: 40;
  background-color: var(--autre-couleur1);
  padding: 10px;
  border-radius: 50px;
  cursor: pointer;
}
.monter:hover {
  background-color: var(--couleur-secondaire);
  box-shadow: 1px 5px 7px #00000085;
}
.monter img {
  height: 40px;
  width: 40px;
  cursor: pointer;
}

/* onglet contact */
.text_banniere .cont_h1 {
  margin-top: 50px;
  font-size: 7rem;
}
.formulaire {
  display: flex;
  height: calc(100vh - 500px);
  margin-top: 10rem;
  z-index: 1;
  padding: 0 9rem;
}
.formulaire .pres,
form {
  flex: 1;
  position: relative;
  margin-bottom: 1rem;
}
.formulaire .pres {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 1rem;
  background-color: var(--couleur-secondaire);
  border-radius: 40px;
  animation: scroll_zoom linear 1s;
  animation-timeline: view();
  animation-range-start: cover 0;
  animation-range-end: cover 20%;
}
.pres p {
  padding: 0 4rem;
}
.formulaire h2 {
  font-family: "montserrat_Bold";
  font-size: 3rem;
  margin-bottom: 1rem;
  text-align: center;
}
.formulaire form {
  display: flex;
  flex-direction: column;
  width: 80%;
  margin: 1rem;
  z-index: 100;
}
form h2 {
  animation: scroll_vertical linear 1s;
  animation-timeline: view();
  animation-range-start: cover 0%;
  animation-range-end: cover 20%;
}
.formulaire form input:focus,
textarea:focus {
  border: 2px solid var(--couleur-secondaire);
}
.formulaire form input,
textarea {
  width: 100%;
  padding: 5px;
  border: 1px solid #ccc;
  border-radius: 10px;
  outline: none;
  margin-bottom: 15px;
}
.formulaire form textarea {
  margin-bottom: 15px;
  height: 150px;
}
.formulaire form ::placeholder {
  position: relative;
  left: 2px;
  padding: 2px;
}
.formulaire form .form1 {
  display: flex;
  flex-direction: row;
  gap: 15px;
}
.formulaire .button_action {
  background-color: var(--couleur-secondaire);
  border: none;
  height: 80px;
  animation: scroll_zoom linear;
  animation-timeline: view();
  animation-range-start: cover 0%;
  animation-range-end: cover 20%;
}
.formulaire .button_action:hover {
  background-color: var(--couleur-second);
}
.pied_contact {
  height: auto;
  background-color: var(--couleur-principal);
  width: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  top: 200px;
  margin: 0;
  padding: 0 9rem;
  align-items: center;
  justify-content: center;
}
.pied_contact .basique {
  display: flex;
  gap: 10px;
  justify-content: center;
  align-items: center;
  padding: 10px;
  margin-top: 20px;
}
.pied_contact .logo2 {
  height: 100px;
  width: 100px;
  background-color: var(--autre-couleur1);
  border-radius: 50%;
}
.pied_contact .con3 {
  display: flex;
  gap: 50px;
  margin-top: 20px;
  margin-bottom: 10px;
}
.con3 img {
  height: 20px;
  width: 20px;
}
.con3 a {
  text-decoration: none;
  color: var(--autre-couleur1);
}
.copyright {
  color: var(--autre-couleur1);
  font-family: "montserrat_Thin";
}
.con3 a:hover {
  color: var(--couleur-secondaire);
}
.con3 .mail,
.tel {
  display: flex;
  gap: 10px;
}
.monter {
  position: absolute;
  bottom: 60px;
  right: 30px;
  z-index: 40;
  background-color: var(--autre-couleur1);
  padding: 10px;
  border-radius: 50px;
  cursor: pointer;
}
.monter:hover {
  background-color: var(--couleur-secondaire);
  box-shadow: 1px 5px 7px #00000085;
}
.monter img {
  height: 40px;
  width: 40px;
  cursor: pointer;
}

/* About */
.profil_about {
  display: flex;
  justify-content: center;
  position: relative;
  top: 150px;
  width: 90%;
  margin-left: auto;
  margin-right: auto;
  gap: 100px;
  height: 500px;
  padding: 0 9rem;
}

.profil_about .image_profil1 {
  height: 400px;
  width: 600px;
  z-index: 100;
  animation: scroll_horizontal linear 2.2s;
  animation-timeline: view();
  animation-range-start: cover 0;
  animation-range-end: cover 25%;
}

.image_profil1 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-bottom-left-radius: 50px;
  border-top-left-radius: 50px;
}

.profil_about .texte_Profil {
  margin-top: 40px;
  height: 600px;
  width: 500px;
  padding: 5px;
  z-index: 100;
}
.texte_Profil h2 {
  font-family: "Montserrat_Regular", sans-serif;
  font-size: 3rem;
  line-height: 50px;
}

.texte_Profil p {
  font-size: 1rem;
  color: var(--couleur-ecriture2);
}
.profil_about2 {
  display: flex;
  justify-content: center;
  position: relative;
  top: 170px;
  width: 90%;
  margin-left: auto;
  margin-right: auto;
  gap: 100px;
  height: 500px;
  padding: 0 9rem;
}

.profil_about2 .image_profil2 {
  height: 400px;
  width: 600px;
  z-index: 100;
}

.image_profil2 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-bottom-right-radius: 50px;
  border-top-right-radius: 50px;
}

.profil_about2 .texte_Profil {
  margin-top: 40px;
  height: 600px;
  width: 500px;
  padding: 5px;
  z-index: 100;
}
/* Identité */
.Identite .article {
  top: 170px;
  gap: 90px;
  z-index: 1;
}
.Identite .id {
  width: 500px;
  height: 250px;
  box-shadow: -2px -1px 15px #00000030;
  border-radius: 30px;
  padding: 30px;
  background-color: var(--autre-couleur1);
  cursor: pointer;
  transition: 0.5s;
  z-index: 1;
}
.Identite .id:hover {
  background-color: var(--couleur-secondaire);
  position: relative;
  top: 0;
  box-shadow: none;
}
.id img {
  height: 30px;
  cursor: pointer;
  background-color: var(--couleur-principal);
  padding: 5px;
  border-radius: 5px;
}
.id h2 {
  color: var(--couleur-principal);
  align-items: center;
  font-size: 1.5rem;
  font-family: "Montserrat_Regular", sans-serif;
  cursor: pointer;
  margin-bottom: 25px;
}
.id p {
  font-size: 0.9rem;
  padding: 4px 0;
  cursor: pointer;
  color: var(--couleur-ecriture2);
  z-index: 100;
}
.con4 {
  background-color: var(--couleur-principal);
  border-radius: 50px;
  margin-left: auto;
  margin-right: auto;
  height: 320px;
  width: 60%;
  position: relative;
  top: 290px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  align-items: center;
  z-index: 1;
}
.con4 h2 {
  font-family: "Montserrat_Regular", sans-serif;
  color: var(--autre-couleur1);
  font-size: 3rem;
}
.con4 p {
  color: var(--autre-couleur1);
  width: 440px;
}
.con4 .bouton {
  margin-top: 3px;
}
.con4 .bouton a {
  display: flex;
  gap: 10px;
  text-decoration: none;
  color: var(--couleur-ecriture);
  align-items: center;
  justify-content: center;
}
.navbar .small_menu {
  display: none;
}

/* Services */
.service {
  width: 90%;
  height: auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  position: relative;
  top: 100px;
  gap: 40px;
  margin-left: auto;
  margin-right: auto;
}
.service1 {
  padding: 20px;
  text-align: center;
  background-color: #e7e7e73a;
  border-radius: 20px;
  box-shadow: 1px 1px 5px #00000066;
  z-index: 10;
}
.img_principal {
  height: 500px;
  width: 500px;
  margin-left: auto;
  margin-right: auto;
  border-radius: 20px;
}

.ecrit_service {
  width: 500px;
  display: flex;
  flex-direction: column;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  top: 30px;
  text-align: left;
  margin-bottom: 40px;
}

.ecrit_service h2 {
  font-family: "montserrat_Regular";
  font-size: 2rem;
  margin-bottom: 15px;
}
.ecrit_service p {
  font-size: 1rem;
}
.con4 ul {
  text-align: left;
  color: var(--autre-couleur1);
}
.pro {
  position: relative;
  top: 150px;
}
/* classes spéciales pour animation */
.Entrez_nom {
  animation: scroll_horizontal_gauche linear 4s;
  animation-timeline: view();
  animation-range-start: cover 0;
  animation-range-end: cover 25%;
}
.num {
  animation: scroll_horizontal_droite linear 2s;
  animation-timeline: view();
  animation-range-start: cover 0;
  animation-range-end: cover 25%;
}
.mail1 {
  animation: scroll_vertical linear 2.1s;
  animation-timeline: view();
  animation-range-start: cover 0;
  animation-range-end: cover 25%;
}
.adresse_input {
  animation: scroll_vertical linear 2.2s;
  animation-timeline: view();
  animation-range-start: cover 0;
  animation-range-end: cover 25%;
}
.message {
  animation: scroll_vertical linear 2.5s;
  animation-timeline: view();
  animation-range-start: cover 0;
  animation-range-end: cover 25%;
}

/* scroll */
@keyframes scroll_zoom {
  from {
    transform: scale(0);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes scroll_vertical {
  0% {
    transform: translateY(100%);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes scroll_horizontal_droite {
  0% {
    transform: translateX(-30%);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes scroll_horizontal_gauche {
  0% {
    transform: translateX(30%);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

/* Responsive (14-15pouces) */
@media screen and (max-width: 1366px) {
  main .navbar {
    height: 11vh;
    justify-content: center;
    gap: 350px;
  }
  .navbar .logo {
    height: 80px;
    width: 80px;
  }
  .baniere {
    height: 400px;
  }
  .baniere .text_banniere {
    margin-top: 10px;
  }
  .text_banniere h1 {
    font-size: 3.2rem;
  }
  .article {
    top: -20px;
  }

  .text_banniere .cont_h1 {
    top: 30px;
    position: relative;
  }
  /* profil */
  .profil {
    padding: 0 0.5rem;
    margin-bottom: 50px;
    top: 70px;
    width: 80%;
  }
  .texte_Profil h2 {
    font-family: "Montserrat_Regular", sans-serif;
    font-size: 2rem;
    line-height: 35px;
  }
  .texte_Profil p {
    margin-top: 20px;
  }
  .profil .image_profil {
    width: 550px;
  }
  /* adresse */
  #adresse {
    display: flex;
    flex-direction: column;
    gap: 20px;
    top: 0;
  }
  #adresse .programme {
    width: 100%;
    align-items: center;
    margin-left: auto;
    margin-right: auto;
  }
  #adresse .programme h2 {
    width: 100%;
    text-align: center;
  }
  .programme .date-heure {
    width: 100%;
    align-items: center;
  }
  .date-heure h4 {
    text-align: center;
  }
  .date-heure ul li {
    text-align: center;
  }
  .carousel {
    align-items: center;
    width: 100%;
    left: 0;
    margin-left: auto;
    margin-right: auto;
  }
  /* contact2 */
  .con1 {
    height: 50vh;
    width: 100%;
    position: relative;
    top: 470px;
    z-index: 1;
  }
  .con1 .titre {
    position: absolute;
    display: flex;
    flex-direction: column;
    top: 0px;
    text-align: center;
    margin: auto;
    margin-top: 5%;
    margin-bottom: 5%;
    padding: 20px;
    width: 100%;
    color: var(--autre-couleur1);
  }
  .titre h4 {
    font-family: "Montserrat_Regular", sans-serif;
    font-size: 1.3rem;
  }
  .titre h2 {
    font-family: "Montserrat_Bold", sans-serif;
    font-size: 2rem;
    margin-top: -7px;
  }
  .con1 .fond {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
  }
  /* Commentaire */
  .commentaire {
    display: flex;
    justify-content: center;
    position: relative;
    top: 550px;
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    gap: 100px;
    height: 500px;
    padding: 0 5rem;
    z-index: 1;
  }
  .commentaire .texte-commentaire {
    width: 550px;
    position: relative;
    margin: 4rem 0;
  }
  .texte-commentaire h2 {
    font-family: "Montserrat_Regular", sans-serif;
    font-size: 2rem;
    line-height: 35px;
    margin-bottom: 20px;
  }
  .image-commetaire {
    height: 400px;
    width: 600px;
    align-items: center;
  }
  .image-commetaire img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-bottom-right-radius: 50px;
    border-top-right-radius: 50px;
  }
  /* contact 3 */
  .con2 {
    background-color: var(--couleur-principal);
    border-radius: 50px;
    margin-left: auto;
    margin-right: auto;
    height: 200px;
    width: 60%;
    position: relative;
    top: 500px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    align-items: center;
  }
  .con2 h2 {
    font-family: "Montserrat_Regular", sans-serif;
    color: var(--autre-couleur1);
    font-size: 2rem;
    margin-bottom: 10px;
  }
  /* page contact */
  .formulaire {
    position: relative;
    top: 70px;
  }
  /* Pied */
  .pied {
    height: auto;
    background-color: var(--couleur-principal);
    width: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    top: 580px;
    margin: 0;
    padding: 0 9rem;
    align-items: center;
    justify-content: center;
  }
  .pied .logo2 {
    height: 60px;
    width: 60px;
    background-color: var(--autre-couleur1);
    border-radius: 50%;
  }
  .pied .con3 {
    display: flex;
    gap: 50px;
    margin-top: 20px;
    margin-bottom: 10px;
  }
  .con3 img {
    height: 20px;
    width: 20px;
  }
  .con3 a {
    text-decoration: none;
    color: var(--autre-couleur1);
  }
  .copyright {
    color: var(--autre-couleur1);
    font-family: "montserrat_Thin";
  }
  .con3 a:hover {
    color: var(--couleur-secondaire);
  }
  .con3 .mail,
  .tel {
    display: flex;
    gap: 10px;
  }
  .monter {
    position: absolute;
    bottom: 60px;
    right: 30px;
    z-index: 40;
    background-color: var(--autre-couleur1);
    padding: 10px;
    border-radius: 50px;
    cursor: pointer;
  }
  .monter:hover {
    background-color: var(--couleur-secondaire);
    box-shadow: 1px 5px 7px #00000085;
  }
  .monter img {
    height: 40px;
    width: 40px;
    cursor: pointer;
  }

  /* onglet contact */
  .text_banniere .cont_h1 {
    margin-top: 50px;
    font-size: 5rem;
  }
  .formulaire {
    display: flex;
    height: calc(100vh - 150px);
    margin-top: 3rem;
  }
  .formulaire h2 {
    font-family: "montserrat_Bold";
    font-size: 2rem;
    margin-bottom: 1rem;
    text-align: center;
  }
  .formulaire form {
    display: flex;
    flex-direction: column;
    width: 80%;
    margin: 1rem;
  }
  .formulaire form input,
  textarea {
    width: 100%;
    padding: 5px;
    border: 1px solid #ccc;
    border-radius: 5px;
    outline: none;
    margin-bottom: 15px;
  }
  .formulaire form textarea {
    margin-bottom: 15px;
    height: 200px;
  }
  .formulaire .button_action {
    height: 45px;
  }
  .pied_contact {
    position: relative;
    top: 200px;
  }
  .pied_contact .logo2 {
    height: 60px;
    width: 60px;
    background-color: var(--autre-couleur1);
    border-radius: 50%;
  }
  /* About */
  .profil_about .texte_Profil,
  .profil_about2 .texte_Profil {
    margin-top: 20px;
  }
  .Identite .id {
    width: 400px;
  }
  .id h2 {
    margin-bottom: 10px;
  }
  .id p {
    font-size: 0.9rem;
  }
  .con4 h2 {
    font-size: 2.5rem;
  }
  .pied_about {
    top: 380px;
  }
  /* Services */
  .service {
    width: 90%;
    height: auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    position: relative;
    top: 100px;
    gap: 40px;
    margin-left: auto;
    margin-right: auto;
  }
  .service1 {
    padding: 20px;
    text-align: center;
    background-color: #e7e7e73a;
    border-radius: 20px;
    box-shadow: 1px 1px 5px #00000066;
    z-index: 10;
  }
  .img_principal {
    height: 400px;
    width: 400px;
    margin-left: auto;
    margin-right: auto;
    border-radius: 20px;
  }

  .ecrit_service {
    width: 400px;
    display: flex;
    flex-direction: column;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    top: 30px;
    text-align: left;
    margin-bottom: 40px;
  }

  .ecrit_service h2 {
    font-family: "montserrat_Regular";
    font-size: 1.7rem;
    margin-bottom: 15px;
  }
  .ecrit_service p {
    font-size: 0.9rem;
  }
  .con4 ul {
    text-align: left;
    color: var(--autre-couleur1);
  }
  .pro {
    position: relative;
    top: 150px;
  }
  .pied_service {
    top: 250px;
  }
}
/* Responsive pour la tablette */
@media screen and (max-width: 834px) {
  /* Generalite */
  p,
  a {
    font-size: 1rem;
  }
  h1 {
    font-size: 2rem;
  }
  /* Entete */
  header {
    display: none;
  }
  main .navbar {
    position: fixed;
    top: 0;
    display: flex;
    justify-content: space-between;
    padding: 0 1rem;
    align-items: center;
    height: 70px;
  }

  /* Menu_responsive */
  .navbar .small_menu {
    display: flex;
    position: absolute;
    right: 10px;
    width: 37px;
    height: 37px;
    z-index: 10;
    margin-right: 10px;
  }

  .navbar .nav-links {
    position: absolute;
    top: 0;
    right: 0;
    align-items: center;
    justify-content: center;
    background-color: #0f003a67;
    backdrop-filter: blur(7px);
    width: 80%;
    height: 100vh;
    margin-right: -100%;
    transition: 0.5s;
  }
  .navbar .mobile-menu {
    margin-right: 0;
  }
  .navbar .nav-links ul {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    top: -300px;
    padding: 25px;
    gap: 9px;
  }
  .navbar .nav-links ul li {
    width: 520px;
    border-bottom: 0.5px solid #fff;
    padding-bottom: 10px;
  }
  .navbar .nav-links ul li:nth-child(4) {
    border: none;
  }

  .navbar .nav-links ul li a {
    color: var(--autre-couleur1);
  }

  .navbar .logo {
    height: 70px;
    width: 70px;
    position: relative;
    top: 0px;
  }
  .nav-links ul li a:hover {
    font-size: 1.3rem;
    font-family: "montserrat_Regular";
    color: #38ecf2;
  }
  /* Accueil */
  .baniere {
    height: 300px;
    position: relative;
    top: 70px;
  }
  .baniere .text_banniere {
    position: absolute;
    top: 15px;
    padding: 15px;
    width: 100%;
    height: 250px;
  }

  .text_banniere h1 {
    font-family: "Montserrat_Bold", sans-serif;
    font-size: 2.4rem;
    color: var(--autre-couleur1);
    line-height: 1;
    cursor: default;
  }

  .text_banniere p {
    font-family: "Montserrat_Light", sans-serif;
    color: var(--autre-couleur1);
    font-size: 1rem;
    cursor: default;
  }
  .baniere .photo_banniere {
    object-fit: cover;
    object-position: left;
  }
  .bouton {
    background-color: var(--couleur-secondaire);
    border-radius: 20px;
    transition: 0.3s;
    cursor: pointer;
    padding: 10px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 20px;
    width: 200px;
    margin-bottom: 15px;
  }
  .bouton a {
    display: flex;
    gap: 10px;
    text-decoration: none;
    color: var(--couleur-ecriture);
    align-items: center;
    justify-content: center;
  }
  .bouton a img {
    height: 20px;
    width: 20px;
  }
  .bouton:hover {
    background-color: var(--couleur-second);
  }

  .photo_banniere {
    object-position: left;
  }
  /* article */
  .slider {
    width: 800px;
    margin: 100px auto;
    overflow: hidden;
  }
  .slider .article {
    display: flex;
    align-items: center;
    position: relative;
    top: 0px;
    animation: slider 20s infinite ease-in-out;
    width: 100%;
    justify-content: space-between;
    gap: 15px;
    margin: 0;
  }
  .article1 {
    flex-shrink: 0;
    width: 100%;
    box-shadow: none;
    z-index: 1;
    border-radius: 0;
    border-bottom: 3px solid var(--couleur-principal);
    padding-bottom: 5px;
  }
  .article1:hover {
    position: relative;
    top: 0;
  }
  .article1:nth-child(4) {
    display: flex;
    flex-direction: column;
  }
  .article1 .p1 {
    justify-content: center;
    width: 100%;
    z-index: 1;
  }
  .article1 p {
    text-align: center;
  }
  /* profil */
  .profil {
    flex-direction: column;
    width: 80%;
    gap: 5px;
    top: 30px;
  }
  .profil .image_profil {
    height: 600px;
    width: 100%;
    position: relative;
  }
  .image_profil img {
    border-radius: 0;
  }

  .profil .texte_Profil {
    width: 100%;
    text-align: center;
    position: relative;
  }
  .texte_Profil h2 {
    font-size: 2rem;
  }
  /* adresse */
  #adresse {
    display: flex;
    flex-direction: column;
    position: relative;
    top: 140px;
    width: 80%;
  }
  #adresse .programme {
    margin-top: -50px;
    margin-left: 0;
    align-items: center;
    width: 100%;
  }
  #adresse .programme h2 {
    text-align: center;
    font-size: 2rem;
    width: 100%;
  }
  #adresse .date-heure {
    align-items: center;
    justify-content: center;
    padding: 0 4rem;
    width: 100%;
  }
  #adresse .date-heure h4 {
    text-align: center;
    width: 100%;
  }
  #adresse .date-heure ul {
    list-style: none;
    text-align: center;
    width: 100%;
  }
  /* Carousel adresse */
  .carousel {
    position: relative;
    height: auto;
    top: 30px;
  }
  .carousel .btn {
    display: none;
  }
  #adresse .adresse {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    width: 90%;
  }
  .adresse .adresse1 {
    position: relative;
    top: 0;
  }
  /* commentaire */
  .con1 {
    position: relative;
    top: 850px;
    height: 250px;
  }

  .commentaire {
    display: flex;
    flex-direction: column;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    top: 750px;
    gap: 40px;
    width: 80%;
    padding: 0 1rem;
    height: 900px;
  }
  .commentaire .texte-commentaire {
    width: 100%;
    margin-top: 0px;
    margin-bottom: 0px;
    text-align: center;
  }
  .texte-commentaire h1 {
    font-size: 1.5rem;
  }

  .image-commetaire {
    height: 400px;
    width: 100%;
    position: relative;
  }
  .image-commetaire img {
    border-radius: 0;
  }
  .con2 {
    position: relative;
    top: 680px;
  }
  .con2 h2 {
    font-size: 1.5rem;
  }
  .pied {
    top: 750px;
  }
  /* Contact */
  .formulaire {
    display: flex;
    flex-direction: column-reverse;
    position: relative;
    top: 150px;
    width: 90%;
    height: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0;
    margin-top: 0;
    align-items: center;
    justify-content: center;
    margin-bottom: 0;
  }
  .formulaire form,
  .pres {
    width: 100%;
  }
  .formulaire p {
    font-size: 1.2rem;
  }
  form h2 {
    position: relative;
    top: -25px;
  }
  .form1 {
    margin-top: 10px;
  }
  .formulaire .pres {
    position: relative;
    top: -50px;
  }
  .pied_contact {
    top: 190px;
  }
  /* Partie Apropos */
  .profil_about,
  .profil_about2 {
    flex-direction: column;
    align-items: center;
    margin-top: 150px;
  }
  main .image_profil1 img,
  .image_profil2 img {
    border-radius: 0;
  }
  .texte_Profil {
    text-align: center;
    font-size: 1rem;
  }
  .texte_Profil h2 {
    font-size: 2.2rem;
  }
  .texte_Profil p {
    font-size: 1.2rem;
  }
  .profil_about {
    gap: 20px;
  }
  .profil_about2 {
    margin-top: 340px;
    flex-direction: column-reverse;
    gap: 20px;
  }
  .Identite {
    margin-top: 220px;
    width: 90%;
    margin-left: auto;
    margin-right: auto;
  }
  .Identite .article {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 10px;
  }
  .article .id {
    width: 80%;
    height: 300px;
  }
  .id p {
    font-size: 1.2rem;
  }
  main .con4 {
    width: 80%;
    position: relative;
    top: 250px;
  }
  .pied_about {
    top: 340px;
  }
  /* Partie service */
  .service {
    display: flex;
    flex-direction: column;
    width: 80%;
    align-items: center;
  }
  .service .service1 {
    width: 100%;
  }
  main .pro {
    position: relative;
    top: 150px;
  }
  .monter {
    display: none;
  }
  .text_banniere .cont_h1 {
    top: 5px;
  }
  .footer {
    height: auto;
    width: auto;
  }
  .pied {
    padding: 0 3rem;
  }
  .pied .con3 {
    justify-content: center;
  }
  .pied_service {
    top: 230px;
  }
  @keyframes slider {
    0%,
    20% {
      transform: translateX(0);
    }
    25%,
    45% {
      transform: translateX(-100%);
    }
    50%,
    70% {
      transform: translateX(-200%);
    }
    75%,
    90% {
      transform: translateX(-300%);
    }
    100% {
      transform: translateX(-400%);
    }
  }
}
/* Responsive pour le telephone (Mini-tablette)*/
@media screen and (max-width: 768px) {
  /* Generalite */
  p,
  a {
    font-size: 1rem;
  }
  h1 {
    font-size: 2rem;
  }
  /* Entete */
  header {
    display: none;
  }
  main .navbar {
    position: fixed;
    top: 0;
    display: flex;
    justify-content: space-between;
    padding: 0 1rem;
    align-items: center;
    height: 70px;
    width: 100vw;
  }

  /* Menu_responsive */
  .navbar .small_menu {
    display: flex;
    position: absolute;
    right: 0px;
    width: 37px;
    height: 37px;
    z-index: 10;
    margin-right: 10px;
  }

  .navbar .nav-links {
    position: absolute;
    top: 0;
    right: 0;
    align-items: center;
    justify-content: center;
    background-color: #0f003a86;
    backdrop-filter: blur(20px);
    width: 100%;
    height: 100vh;
    margin-right: -100%;
    transition: 0.5s;
  }
  .navbar .mobile-menu {
    margin-right: 0;
  }
  .navbar .nav-links ul {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    top: -300px;
    padding: 25px;
    gap: 9px;
  }
  .navbar .nav-links ul li {
    width: 520px;
    border-bottom: 0.5px solid #fff;
    padding-bottom: 10px;
  }
  .navbar .nav-links ul li:nth-child(4) {
    border: none;
  }

  .navbar .nav-links ul li a {
    color: var(--autre-couleur1);
  }

  .navbar .logo {
    height: 70px;
    width: 70px;
    position: relative;
    top: 0px;
  }
  .nav-links ul li a:hover {
    font-size: 1.3rem;
    font-family: "montserrat_Regular";
    color: #38ecf2;
  }
  /* Accueil */
  .baniere {
    height: 300px;
    position: relative;
    top: 70px;
  }
  .baniere .text_banniere {
    position: absolute;
    top: 15px;
    padding: 15px;
    width: 100%;
    height: 250px;
  }

  .text_banniere h1 {
    font-family: "Montserrat_Bold", sans-serif;
    font-size: 2.4rem;
    color: var(--autre-couleur1);
    line-height: 1;
    cursor: default;
  }

  .text_banniere p {
    font-family: "Montserrat_Light", sans-serif;
    color: var(--autre-couleur1);
    font-size: 1rem;
    cursor: default;
  }
  .baniere .photo_banniere {
    object-fit: cover;
    object-position: left;
  }
  .bouton {
    background-color: var(--couleur-secondaire);
    border-radius: 20px;
    transition: 0.3s;
    cursor: pointer;
    padding: 10px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 20px;
    width: 200px;
    margin-bottom: 15px;
  }
  .bouton a {
    display: flex;
    gap: 10px;
    text-decoration: none;
    color: var(--couleur-ecriture);
    align-items: center;
    justify-content: center;
  }
  .bouton a img {
    height: 20px;
    width: 20px;
  }
  .bouton:hover {
    background-color: var(--couleur-second);
  }

  .photo_banniere {
    object-position: left;
  }
  /* article */
  .slider {
    max-width: 70%;
    margin: 100px auto;
    overflow: hidden;
  }
  .slider .article {
    display: flex;
    align-items: center;
    position: relative;
    top: 0px;
    animation: slider 20s infinite ease-in-out;
    width: 100%;
    justify-content: space-between;
    gap: 15px;
    margin: 0;
  }
  .article1 {
    flex-shrink: 0;
    width: 100%;
    box-shadow: none;
    z-index: 1;
    border-radius: 0;
    border-bottom: 3px solid var(--couleur-principal);
    padding-bottom: 5px;
  }
  .article1:hover {
    position: relative;
    top: 0;
  }
  .article1:nth-child(4) {
    display: flex;
    flex-direction: column;
  }
  .article1 .p1 {
    justify-content: center;
    width: 100%;
    z-index: 1;
  }
  .article1 p {
    text-align: center;
  }
  /* profil */
  .profil {
    flex-direction: column;
    width: 80%;
    gap: 5px;
    top: 30px;
  }
  .profil .image_profil {
    height: 600px;
    width: 100%;
    position: relative;
  }
  .image_profil img {
    border-radius: 0;
  }

  .profil .texte_Profil {
    width: 100%;
    text-align: center;
    position: relative;
  }
  .texte_Profil h2 {
    font-size: 1.5rem;
  }
  /* effet */
  .effet {
    width: 100vw;
    height: 100vh;
  }
  /* adresse */
  #adresse {
    display: flex;
    flex-direction: column;
    position: relative;
    top: 100px;
    width: 80%;
  }
  #adresse .programme {
    margin-top: 0px;
    margin-left: 0;
    align-items: center;
    width: 100%;
  }
  #adresse .programme h2 {
    text-align: center;
    font-size: 2rem;
  }
  #adresse .date-heure {
    align-items: center;
    justify-content: center;
    padding: 0 4rem;
  }
  #adresse .date-heure h4 {
    text-align: center;
  }
  #adresse .date-heure ul {
    list-style: none;
    text-align: center;
    width: 100%;
  }
  /* Carousel adresse */
  .carousel {
    position: relative;
    height: auto;
    top: -100px;
    width: 70%;
  }
  .carousel .btn {
    position: absolute;
    display: flex;
    gap: 6px;
    z-index: 100;
    border: none;
    outline: none;
    background-color: #283a9382;
    color: white;
    font-size: 2rem;
    transform: translateY(-50%);
    top: 20px;
    border-radius: 30px;
    color: var(--autre-couleur1);
  }
  #adresse .carousel .btn:active {
    background-color: #ffffff7c;
    color: #283993;
  }
  #prev {
    left: -20px;
    background-color: #283a9382;
    color: white;
  }
  #next {
    right: -20px;
    background-color: #283a9382;
    color: white;
  }
  #adresse .adresse {
    display: flex;
    flex-direction: column;
    width: 100%;
    animation: none;
  }
  .adresse .adresse1 {
    position: absolute;
    top: -120px;
    width: 100%;
    opacity: 0;
    transition: 0.5s ease-in-out;
  }
  .adresse1.active {
    opacity: 1;
  }
  .adresse1 p {
    width: 90%;
    text-align: center;
    align-items: center;
    margin-bottom: 0;
    margin-top: 20px;
  }
  .con1 {
    position: relative;
    top: 300px;
    height: 250px;
  }

  .commentaire {
    display: flex;
    flex-direction: column;
    margin-left: auto;
    margin-right: auto;
    width: 80%;
    padding: 0 1rem;
    height: 900px;
    position: relative;
    top: 250px;
  }
  .commentaire .texte-commentaire {
    width: 100%;
    margin-top: 0px;
    margin-bottom: 0px;
    text-align: center;
  }
  .texte-commentaire h1 {
    font-size: 1.5rem;
  }

  .image-commetaire {
    height: 400px;
    width: 100%;
    position: relative;
  }
  .image-commetaire img {
    border-radius: 0;
  }
  .con2 {
    position: relative;
    top: 200px;
  }
  .con2 h2 {
    font-size: 1.5rem;
  }

  /* Pied de la page */
  .pied {
    position: relative;
    top: 300px;
  }
  .pied .basique {
    display: flex;
    flex-direction: column;
    position: relative;
    top: 15px;
  }
  .pied_reseaux {
    margin-top: 10px;
    align-items: center;
    justify-content: center;
    width: 180px;
  }
  .pied_reseaux .reseaux {
    gap: 10px;
    display: flex;
  }
  .con3 {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
  }
  .con3 .localisation {
    position: relative;
    top: 35px;
    left: -5px;
  }
  .con3 .mail {
    margin-top: -40px;
    margin-bottom: 20px;
  }
  .monter {
    display: none;
  }
  .copyright {
    width: 400px;
    font-size: 0.7rem;
    text-align: center;
  }

  /* Partie contact */
  .text_banniere .cont_h1 {
    font-family: "Montserrat_Bold", sans-serif;
    font-size: 5rem;
    color: var(--autre-couleur1);
    cursor: default;
    top: 5px;
  }
  .formulaire {
    display: flex;
    flex-direction: column-reverse;
    position: relative;
    top: 150px;
    width: 90%;
    height: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0;
    margin-top: 0;
    align-items: center;
    justify-content: center;
    margin-bottom: 0;
  }
  .formulaire form,
  .pres {
    width: 100%;
  }
  .formulaire p {
    font-size: 1.2rem;
  }
  form h2 {
    position: relative;
    top: -25px;
  }
  .form1 {
    margin-top: 10px;
  }
  .formulaire .pres {
    position: relative;
    top: -50px;
  }
  /* Partie Apropos */
  .profil_about,
  .profil_about2 {
    flex-direction: column;
    align-items: center;
    margin-top: 150px;
  }
  main .image_profil1 img,
  .image_profil2 img {
    border-radius: 0;
  }
  .texte_Profil {
    text-align: center;
    font-size: 1rem;
  }
  .texte_Profil h2 {
    font-size: 2.2rem;
  }
  .texte_Profil p {
    font-size: 1.2rem;
  }
  .profil_about {
    gap: 20px;
  }
  .profil_about2 {
    margin-top: 340px;
    flex-direction: column-reverse;
    gap: 20px;
  }
  .Identite {
    margin-top: 220px;
    width: 90%;
    margin-left: auto;
    margin-right: auto;
  }
  .Identite .article {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 10px;
  }
  .article .id {
    width: 80%;
    height: 300px;
  }
  .id p {
    font-size: 1.2rem;
  }
  /* Partie service */
  .service {
    display: flex;
    flex-direction: column;
    width: 80%;
    align-items: center;
  }
  .service .service1 {
    width: 100%;
  }
  .con4 {
    position: relative;
    top: 450px;
    width: 80%;
  }
  @keyframes slider {
    0%,
    20% {
      transform: translateX(0);
    }
    25%,
    45% {
      transform: translateX(-100%);
    }
    50%,
    70% {
      transform: translateX(-200%);
    }
    75%,
    90% {
      transform: translateX(-300%);
    }
    100% {
      transform: translateX(-400%);
    }
  }
}

/* responsive telephone */

@media screen and (max-width: 430px) {
  /* Entete */

  header {
    display: none;
  }
  p {
    font-size: 0.8rem;
  }
  h2 {
    font-size: 1.8rem;
  }

  /* Navbar */
  main .navbar {
    width: 100%;
  }
  .navbar .small_menu {
    right: 20px;
  }
  .navbar .nav-links ul {
    position: relative;
    height: 100%;
    top: 0;
    width: 100%;
    padding: 0;
    margin: 0;
  }
  .navbar .nav-links ul li {
    position: relative;
    width: 90%;
    top: -120px;
  }

  .text_banniere h1 {
    font-size: 2.2rem;
  }
  .text_banniere p {
    font-size: 0.8rem;
  }

  /* Slider */
  .slider {
    width: 80%;
    max-width: 100%;
    margin-top: 70px;
  }
  .slider .article .article1 p {
    font-size: 0.8rem;
  }
  .article1 .p1 h2 {
    font-size: 1.8rem;
  }

  /* Profil */
  .profil .image_profil {
    top: -60px;
  }
  .texte_Profil {
    top: -60px;
  }
  .texte_Profil h2 {
    font-size: 2rem;
  }
  .texte_Profil p {
    font-size: 0.8rem;
  }
  /* adresse */
  #adresse {
    padding: 0;
    width: 90%;
    top: -30px;
    height: auto;
  }
  #adresse .programme {
    width: 100%;
    padding: 4 3rem;
  }
  .programme h2 {
    font-size: 2rem;
  }
  #adresse .date-heure {
    padding: 0 2rem;
    margin-top: 20px;
  }
  #adresse .carousel {
    width: 80%;
    top: 140px;
  }
  #adresse .adresse {
    margin-right: 0;
  }
  .adresse .adresse1 {
    right: 0;
  }

  /* Commentaire */
  .con1 .bouton {
    margin-top: 10px;
  }
  .commentaire {
    width: 90%;
  }
  .con2 {
    width: 80%;
  }
  .con2 h2 {
    padding: 5px 20px;
  }

  /* Partie apropos */
  /* Profil */
  .profil_about,
  .profil_about2 {
    width: 80%;
    margin: 0 auto;
    padding: 0;
  }
  .profil_about .image_profil1,
  .profil_about2 .image_profil2 {
    width: 100%;
  }
  .profil_about .texte_Profil,
  .profil_about2 .texte_Profil {
    width: 100%;
  }
  .profil_about {
    top: 140px;
  }
  .profil_about2 {
    top: 240px;
  }

  /* Identité */
  .Identite {
    margin: 0 auto;
    top: 300px;
    position: relative;
  }
  .Identite .article {
    top: 0;
    gap: 65px;
  }
  .article .id {
    height: auto;
    width: 100%;
  }
  .article .id .p1 {
    width: 100%;
  }
  .article .id p {
    font-size: 0.8rem;
    padding: 5px;
  }
  main .con4 {
    top: 350px;
    padding: 30px;
    width: 90%;
  }
  .con4 h2 {
    font-size: 2rem;
  }
  .con4 p {
    width: 100%;
  }
  .pied_about {
    position: relative;
    top: 420px;
  }

  /* Partie service */
  .text_banniere .cont_h1 {
    margin: 30px auto;
    font-size: 4rem;
    align-items: center;
    justify-content: center;
    display: flex;
  }
  .img_principal {
    width: 90%;
    height: 100%;
  }
  .service {
    top: 130px;
  }
  .ecrit_service {
    position: relative;
    top: 0px;
    width: 100%;
    padding: 15px;
  }
  main .pro {
    top: 180px;
    padding: 20px;
    height: auto;
  }
  .pro ul {
    font-size: 0.8rem;
  }
  .pied_service {
    top: 240px;
  }

  /* Partie contact */
  .formulaire {
    height: auto;
  }
  .formulaire p {
    font-size: 0.8rem;
  }
  .formulaire .pres {
    position: relative;
    top: 0px;
    padding: 20px;
  }
  .pres p {
    width: 100%;
    padding: 0 1rem;
  }
  .pied_contact {
    top: 180px;
  }
}

@media screen and (max-width: 360px) {
  .text_banniere h1 {
    font-size: 1.8rem;
  }
  #adresse {
    height: auto;
    margin-top: -40px;
  }
  #adresse .carousel {
    top: 200px;
  }
  .con1 {
    top: 360px;
  }
  .commentaire {
    top: 300px;
  }
  .con2 {
    top: 260px;
  }
  .copyright {
    width: 80%;
    font-size: 0.6rem;
  }
}
