*,
::before,
::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  /* palette */
  --main-white: #dddddd;
  --shade-white: #d3d3d3;
  --main-black: #181818;
  --main-yellow: #e6d28c;
  --dark-yellow: #f4cb38;
  --main-green: #116004;
  --main-gris:#f1f1f1;
  --main-orange:#D96D00;

  /* Fonts */
  --base-font: "roboto", sans-serif;
  --title-font: Merriweather, serif;

  /* Font-size */
  --fs-14: 0.875rem;
  --fs-15: 0.9375rem;
  --fs-16: 1rem;
  --fs-17: 1.0625rem;
  --fs-18: 1.125rem;
  --fs-20: 1.25rem;
  --fs-24: 1.5rem;
  --fs-30: 1.875rem;
  --fs-36: 2.25rem;
  --fs-42: 2.625rem;
  --fs-50: 3.125rem;
  --fs-72: 4.5rem;

}

body {
  font-family: var(--base-font);
}

/* Global utility classes */

#espace {
  height: 1vh;
  width: 100%;
}

#lesreseaux-sociaux {
  width: 100vw;
  height: 50vh;
  background-color: #D96D00;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
}

/* Titre des pages et arrières plan */
.titre-text{
   font-family: var(--title-font);
   font-size: var(--fs-30);
   color:var(--main-green);
   text-transform : capitalize;
   
}

.arriere-plan {
 
}

.arriere-plan-content {
  display: flex;
  justify-content:flex-start;
}

.text-subtitle {
  font-size: var(--fs-20);
  margin-bottom: 20px;
  text-align:justify-all;
}

.section-title {
  font-family: var(--title-font);
  font-size: var(--fs-36);
  margin-bottom: 6px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  text-decoration-thickness: 2px;
  text-underline-offset: 6px;
}

.section-title img {
  width: 50px;
  margin-left: 8px;
}

.section-subtitle {
  font-size: var(--fs-20);
  margin-bottom: 72px;
  text-align: center;
}

.heading-h3 {
  font-size: var(--fs-20);
  display: flex;
  align-items: center;
}

.heading-h3 img {
  width: 36px;
  margin-right: 6px;
}

.heading-h4 {
  font-size: var(--fs-18);
}

.heading-h3,
.heading-h4 {
  font-family: var(--title-font);
  text-transform: uppercase;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
}

@media (max-width: 1024px) {
  .section-title {
    font-size: var(--fs-30);
  }

  .section-title img {
    width: 42px;
  }

  .section-subtitle {
    font-size: var(--fs-20);
    margin-bottom: 52px;
  }

  .heading-h3 {
    font-size: var(--fs-18);
  }

  .heading-h3 img {
    width: 30px;
  }

  .container {
    max-width: 700px;
  }
}

@media (max-width: 750px) {
  .section-title {
    font-size: var(--fs-24);
  }

  .section-title img {
    width: 30px;
  }

  .section-subtitle {
    font-size: var(--fs-16);
  }

  .heading-h3 {
    font-size: var(--fs-16);
  }
}

@media (max-width: 525px) {
  .section-title {
    font-size: var(--fs-20);
  }

  .section-subtitle {
    font-size: var(--fs-14);
  }

  .heading-h3 img {
    width: 20px;
  }
}

/* Navigation reseaux sociaux */

.reseaux-sociaux {
  height: 7vh;
  padding: 1rem 1rem;
  background-color: #D96D00;
  border-bottom: 1px solid var(--dark-yellow);
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
}

.reseaux-sociaux>items-sociaux {
  background-color: aqua;
  margin: 20px;
  padding: 20px;
  font-size: 2rem;
}

.items-sociaux{
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
}
/* Navigation */

/* Navigation cachée */

.header-cachee {
  height: 10vh;
  width: 100%;
  top:0px;
  margin:0px;
  position: fixed;
  background-color: #D96D00;
  border-bottom: 1px solid var(--dark-yellow);
  border-top: 1px solid var(--dark-yellow);
  padding: 0.5rem 2rem;
  z-index: 1;
  
}

.navigation-cachee{
  display: flex;
  justify-content:space-between;
  align-items: center;
  flex-wrap: wrap; /*Optionner - permet aux éléments de passer à la ligne en cas de besoin*/
  height: 66px;
	
}

.nav-menus-cachee{
  display: flex;
  align-content:center;
  justify-content:center;
  height: 66px;
}

.nav-liens-menus-cachee {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap; /*Optionner - permet aux éléments de passer à la ligne en cas de besoin*/
  width: 100%;
  height: 131px;
  list-style: none;
  text-decoration: none;
  color: var(--main-green);

}

.nav-liens-menus-cachee a {
  margin: 0 0px;
  padding: 8px;
  border-radius: 2px;
  color: var(--main-black);
  font-weight: bold;
  text-transform: uppercase;
  text-decoration-style: dotted;
  text-underline-offset: 4px;
}

.nav-liens-menus-cachee a:hover {
  background-color: var(--main-black);
  color: var(--main-yellow);
}

.navigation-items-cachee {
  text-decoration: none;
  text-transform: capitalize;
  font-size: var(--fs-15);
  font-weight: bold;
}


/* Fin navigation cachée */

/* Navigation reseaux sociaux */

.header {
  height: 20vh;
  background-color: #D96D00;
  border-bottom: 1px solid var(--dark-yellow);
  padding: 0.5rem 2rem;
}

.navigation {
  display: flex;
  justify-content:space-between;
  align-items: center;
  flex-wrap: wrap; /*Optionner - permet aux éléments de passer à la ligne en cas de besoin*/
  height: 131px;
}

.nav-menus{
  display: flex;
  align-content:center;
  height: 131px;
}

.logo-drapeau {
  display: flex;
  align-items: center;
}

.drapeau {
  width: 9px;
}

.republique {
  list-style: none;
  color: var(--main-black);
  font-weight: 600;
}

.nom-republique {
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1rem;
}

.slogan-republique {
  line-height: 0.6rem;
  flex-direction: column;
  font-style: italic;
  font-size: 9px;
}

.nav-liens-menus {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap; /*Optionner - permet aux éléments de passer à la ligne en cas de besoin*/
  width: 100%;
  height: 131px;
  list-style: none;
  text-decoration: none;
  color: var(--main-green);

}

.nav-liens-menus a {
  margin: 0 0px;
  padding: 8px;
  border-radius: 2px;
  color: var(--main-black);
  font-weight: bold;
  text-transform: uppercase;
  text-decoration-style: dotted;
  text-underline-offset: 4px;
}

.nav-liens-menus a:hover {
  background-color: var(--main-black);
  color: var(--main-yellow);
}

.navigation-items {
  text-decoration: none;
  text-transform: capitalize;
  font-size: var(--fs-15);
  font-weight: bold;
}



.entete-logo {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.text-logo {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-decoration: none;
  list-style: none;
  padding-top: 3rem;
}

.text-logo-size {
  font-size: 12px;
  font-weight: bold;
}

.text-logo-color {
  color: var(--main-green);
  font-style: italic;
}

.geo-logo {
  width: 6rem;
  margin-top: 2rem;

}

.logo-geoservices {
  width: 30%;
 
}
.logo{
  margin-top:-150px;
}

.oblique {
  font-size: 3rem;
  font-weight: 700;
}

.main-nav {
  position: fixed;
  z-index: 99;
  top: 0;
  width: 100%;
  padding: 16px;
  background-color: var(--main-yellow);
  border-bottom: 1px solid var(--main-black);
}

.main-nav ul {
  display: flex;
  justify-content: center;
  list-style-type: none;
}

.main-nav a {
  margin: 0 12px;
  padding: 8px;
  border-radius: 2px;
  color: var(--main-black);
  font-weight: 700;
  text-transform: uppercase;
  text-decoration-style: dotted;
  text-underline-offset: 4px;
}

.main-nav a:hover {
  background-color: var(--main-black);
  color: var(--main-yellow);
}

.nav-toggler {
  display: none;
}

@media (max-width: 1024px) {
  .main-nav a {
    font-size: var(--fs-14);
    padding: 6px;
  }
}

@media (max-width: 525px) {

  .main-nav {
    display: flex;
    order: 1;
  }

  .main-nav ul {
    padding: 52px 0 20px;
    display: none;
    flex-direction: column;
  }

  .main-nav ul li {
    margin: 6px 0;
  }

  .main-nav.active ul {
    display: flex;
  }

  .nav-toggler {
    order: 2;
    display: flex;
    justify-content: center;
    align-items: center;
    align-self: baseline;
    margin-left: auto;
    background: none;
    border: none;
    cursor: pointer;
  }

  .nav-toggler img {
    width: 20px;
  }
}

/* Hero section */

.hero {
  min-height: 750px;
  padding-top: 200px;
  background-image: url(ressources/hero-background.jpg);
  background-size: cover;
  background-position: 50% 20%;
  position: relative;
  text-align: center;
}

.main-title {
  font-family: var(--title-font);
  font-size: var(--fs-72);
  color: var(--main-white);
  font-weight: 900;
}

.main-subtitle {
  font-size: var(--fs-30);
  margin-bottom: 28px;
  color: var(--shade-white);
  font-weight: 300;
}

.hero-link {
  min-width: 120px;
  height: 5vh;
  margin-left: 12px;
  padding: 8px 12px;
  border-radius: 5px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  color: var(--main-white);
}

.hero-link span {
  text-decoration: underline dotted;
  text-decoration-color: var(--main-black);
  text-underline-offset: 4px;
  position: relative;
  bottom: 2px;
}

.hero-link img {
  margin-left: 2px;
  width: 24px;
}

.hero-link span,
.hero-link img {
  pointer-events: none;
}

.hero-link-1 {
  background-color: var(--main-black);
}

.hero-link-1:hover {
  background-color: var(--dark-yellow);
  color: var(--main-black);
}

.hero-link-2 {
  background-color: var(--main-white);
  color: var(--main-black);
  margin-left: 12px;
}

.hero-link-2:hover {
  background-color: var(--shade-white);
}

.push-down-hero {
  display: none;
}

@media (max-width: 1024px) {
  .hero {
    min-height: 600px;
    padding-top: 145px;
  }

  .main-title {
    font-size: var(--fs-50);
  }

  .main-subtitle {
    font-size: var(--fs-30);
  }
}

@media (max-width: 750px) {

  .main-title {
    font-size: var(--fs-36);
  }

  .main-subtitle {
    font-size: var(--fs-24);
  }

  .hero-link {
    min-width: 110px;
    padding: 8px 6px;
    font-size: var(--fs-14);
  }

  .hero-link img {
    display: none;
  }

  .push-down-hero {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--main-black);
    border: 1px solid var(--main-white);
    position: absolute;
    bottom: 0;
    margin-bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
  }

  .push-down-hero img {
    width: 20px;
    pointer-events: none;
  }
}

@media (max-width: 525px) {
  .hero {
    padding-top: 125px;
    min-height: 500px;
  }

  .hero-link {
    padding: 6px;
  }

  .main-title {
    font-size: var(--fs-24);
  }

  .main-subtitle {
    font-size: var(--fs-20);
  }

}

/* About */

.about {
  padding: 50px 20px 125px;
  background-color: var(--main-white);
}

.about-content {
  display: flex;
}

.about-text {
  width: 60%;
  margin-right: 96px;
}

.about-text .heading-h3 {
  margin-bottom: 12px;
}

.about-text p {
  line-height: 1.4;
}

.about-text p:nth-child(2) {
  margin-bottom: 44px;
}

.about-slideshow {
  width: 40%;
}

.slideshow-images-container {
  margin: 12px 0;
  display: grid;
}

.about-slideshow img {
  grid-area: 1/1/2/2;
  width: 100%;
  border-radius: 3px;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.3s ease-out,
    visibility 0.3s ease-out;
}

.about-slideshow img.active {
  opacity: 1;
  visibility: visible;
  z-index: 10;
}

.dots {
  display: flex;
  justify-content: center;
  align-items: center;
}

.dot {
  width: 15px;
  height: 15px;
  margin: 0 5px;
  border-radius: 50%;
  cursor: pointer;
  border: 1px solid var(--main-black);
  background-color: var(--main-white);
}

.dot.active {
  background-color: var(--main-black);
}

@media (max-width: 1024px) {
  .about {
    padding: 50px 20px 100px;
  }

  .about-content {
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .about-text {
    width: 100%;
    margin-right: 0;
  }

  .about-slideshow {
    width: 80%;
  }

  .slideshow-images-container {
    margin: 72px auto 12px;
  }
}

@media (max-width: 750px) {
  .about-text p {
    font-size: var(--fs-14);
  }
}

@media (max-width: 525px) {
  .about {
    padding: 40px 14px 100px;
  }

  .about-slideshow {
    width: 100%;
  }
}

/* Prestations */

.prestations {
  padding: 50px 10px 150px;
  background-color: var(--main-black);
}

.prestations .section-title,
.prestations .section-subtitle {
  color: var(--main-white);
}

.prestations .section-title img {
  transform: rotate(5deg);
}

.prestations-container {
  display: flex;
  justify-content: center;
}

.prestations-card {
  width: 100%;
  box-shadow: 0 5px 5px rgba(0, 0, 0, 0.5);
  padding: 36px 36px 96px;
  background-color: var(--main-gris);
  border-radius: 5px;
}

.prestations-card:nth-child(1) {
  margin-right: 28px;
}

.prestations-category-title {
  font-family: var(--title-font);
  font-size: var(--fs-30);
  margin-bottom: 44px;
  text-transform: uppercase;
  color: var(--main-black);
  font-weight: 900;
  display: flex;
  justify-content: center;
  align-items: center;
}

.prestations-category-title img {
  width: 36px;
  margin-left: 12px;
  transform: rotateY(-180deg);
}

.prestations-list {
  list-style-type: none;
}

.prestations-list h4 {
  margin-bottom: 8px;
}

.prestations-list p {
  font-weight: 500;
  line-height: 1.4;
}

.prestations-list li:not(:last-of-type) {
  margin-bottom: 28px;
}

@media (max-width: 1024px) {
  .prestations-container {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .prestations-card {
    max-width: 530px;
  }

  .prestations-card:nth-child(1) {
    margin-right: 0;
    margin-bottom: 36px;
  }
}

@media (max-width: 525px) {
  .prestations {
    padding: 50px 10px 90px;
  }

  .prestations-category-title {
    font-size: var(--fs-20);
    margin-bottom: 36px;
  }

  .prestations-category-title img {
    width: 30px;
  }

  .prestations-card {
    padding: 28px 28px 60px;
  }

  .prestations-card h4 {
    font-size: var(--fs-16);
  }

  .prestations-list p {
    font-size: var(--fs-14);
  }
}

/* Team */

.team {
  padding: 50px 10px 150px;
  background-color: var(--main-white);
}

.team .section-subtitle {
  margin-bottom: 28px;
}

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

.team-card {
  flex-shrink: 0;
  width: 300px;
  color: var(--main-yellow);
  box-shadow: 0 5px 5px rgba(0, 0, 0, 0.4);
  margin: 20px;
  border-radius: 5px;
  background-color: var(--main-gris);
  background-image: repeating-linear-gradient(90deg,
      hsla(57, 0%, 42%, 0.09) 0px,
      hsla(57, 0%, 42%, 0.09) 1px,
      transparent 1px,
      transparent 60px),
    repeating-linear-gradient(0deg,
      hsla(57, 0%, 42%, 0.09) 0px,
      hsla(57, 0%, 42%, 0.09) 1px,
      transparent 1px,
      transparent 60px),
    repeating-linear-gradient(0deg,
      hsla(57, 0%, 42%, 0.09) 0px,
      hsla(57, 0%, 42%, 0.09) 1px,
      transparent 1px,
      transparent 10px),
    repeating-linear-gradient(90deg,
      hsla(57, 0%, 42%, 0.09) 0px,
      hsla(57, 0%, 42%, 0.09) 1px,
      transparent 1px,
      transparent 10px),
    linear-gradient(90deg, rgb(20, 20, 20), rgb(20, 20, 20));
}

.profile-image {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}

.card-content {
  padding: 20px;
}

.top-card-content {
  display: flex;
  align-items: center;
  margin-bottom: 36px;
}

.card-name {
  font-size: var(--fs-20);
}

.top-card-content img {
  width: 24px;
  cursor: pointer;
}

.top-card-content a:nth-child(2) {
  margin-left: auto;
  margin-right: 8px;
}

@media (max-width: 1024px) {
  .team {
    padding: 50px 20px 100px;
  }

}

@media (max-width: 750px) {
  .team-card {
    width: 100%;
    max-width: 430px;
  }
}

/* Testimonials */

.testimonial-section {
  background-image:url("../ressources/plateforme-2.jpg");                       
  background-size: cover;
  background-position: 0 80%;
  padding: 84px;
}

.testimonial-geomontage {                      
  background-size: cover;
  background-position: 0 80%;
  padding: 84px;
  height: 300px;
}

.testgraphique-section {                      
  background-size: cover;
  background-position: 0 80%;  
}

.text-slideshow-container {
  max-width: 100%;
  margin: 0 auto;
  position: relative;
  background-color: rgba(0, 0, 0, 0.345);
  overflow: hidden;
}

.sliding-container {
  display: flex;
  color: var(--main-white);
  animation: carousel 16s ease-in-out infinite;
}

@keyframes carousel {

  0%,
  20% {
    transform: translateX(0);
  }

  25%,
  45% {
    transform: translateX(-100%);
  }

  50%,
  70% {
    transform: translateX(-200%);
  }

  75%,
  95% {
    transform: translateX(-300%);
  }

  100% {
    transform: translateX(-400%);
  }
}

.text-slide {
  flex-shrink: 0;
  width: 100%;
  text-align: center;
  padding: 44px;
}

.testimonial-text {
  font-family: var(--title-font);
  font-size: var(--fs-36);
  margin-bottom: 6px;
}

.testimonial-author {
  font-size: var(--fs-20);
}

@media (max-width: 1024px) {
  .text-slideshow-container {
    max-width: 750px;
  }

  .testimonial-section {
    padding: 44px;
  }

  .testimonial-text {
    font-size: var(--fs-30);
  }

  .testimonial-author {
    font-size: var(--fs-16);
  }
}

@media (max-width: 750px) {
  .text-slideshow-container {
    max-width: 600px;
  }

  .testimonial-text {
    font-size: var(--fs-20);
  }
}

@media (max-width: 525px) {
  .text-slideshow-container {
    max-width: 100%;
    margin: 0;
  }

  .text-slide {
    padding: 36px 0;
  }

  .testimonial-section {
    padding: 44px 2px;
  }

  .testimonial-text {
    font-size: var(--fs-20);
  }
}

/* Contact */
.contact {
  padding: 50px 20px 150px;
  background-color: var(--main-yellow);
}

.contact-content {
  display: flex;
  justify-content: center;
}

.address-block {
  background-color: var(--main-black);
  padding: 20px;
  border-radius: 5px;
  color: var(--main-yellow);
  width: 350px;
}

.address-block:nth-child(1) {
  margin-bottom: 16px;
}

.address-block p:nth-child(1) {
  font-size: var(--fs-18);
  margin-bottom: 12px;
}

.address-block p:nth-child(2) {
  margin-bottom: 36px;
}

.address-block p:nth-child(3) {
  margin-bottom: 12px;
}

.address-block img {
  width: 24px;
}

.address-block a:not(:last-of-type) {
  margin-right: 10px;
}

.schedule {
  margin-left: 44px;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
}

.schedule-table p {
  display: flex;
  justify-content: space-between;
  margin: 12px 0;
  padding-bottom: 6px;
}

.schedule-table p:not(:last-of-type) {
  border-bottom: 1px solid var(--main-black);
}

.schedule-table p span:nth-child(1) {
  font-weight: 900;
}

@media (max-width: 750px) {
  .contact-content {
    flex-direction: column;
  }

  .address-block {
    width: auto;
  }

  .schedule {
    margin: 0;
  }

  .schedule-table,
  .address-block {
    max-width: 450px;
    margin: 0 auto;
  }

  .addresses {
    margin-bottom: 36px;
  }
}

@media (max-width: 525px) {
  .contact {
    padding: 30px 20px 90px;
  }

  .addresses .address-block p,
  .schedule p {
    font-size: var(--fs-14);
  }

  .address-block img {
    width: 20px;
  }

  .address-block a:not(:last-of-type) {
    margin-right: 6px;
  }
}

/* Les champs  */

#error{
      margin-top:25px;
      margin-left:25px;
      margin-right:25px; 
      height: 3.25rem; 
      width: 100%;
}

.class-p{
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    padding-left: 20px;
    padding-right: 20px;
}

.class-form{
    width: 598px;
}


.class-input{

font-size: inherit; /*on "force" la taille de police du document à être héritée-il faut définir une taille de police au préalable-vous pouvez aussi changer de taille*/
font-family: inherit; /*on "force" la police du document à être héritée-il faut définir une police au préalable-vous pouvez aussi changer de police*/
line-height: 1;
padding: 0 1em;
margin-top:25px;
margin-left:25px;
margin-right:25px;
background-color: #fff;
border: 2px solid silver;
width: clamp(550px, 50%, 300px);
height: 3.25rem;
border-radius: 5px;
}

.class-area{

font-size: inherit; /*on "force" la taille de police du document à être héritée-il faut définir une taille de police au préalable-vous pouvez aussi changer de taille*/
font-family: inherit; /*on "force" la police du document à être héritée-il faut définir une police au préalable-vous pouvez aussi changer de police*/
line-height: 1;
padding: 0 1em;
margin-top:25px;
margin-left:25px;
margin-right:25px;
background-color: #fff;
border: 2px solid silver;
width: clamp(550px, 50%, 300px);
height: 6.25rem;
border-radius: 5px;
}

.class-check{

font-size: inherit; /*on "force" la taille de police du document à être héritée-il faut définir une taille de police au préalable-vous pouvez aussi changer de taille*/
font-family: inherit; /*on "force" la police du document à être héritée-il faut définir une police au préalable-vous pouvez aussi changer de police*/
line-height: 1;
padding: 0 1em;
margin-top:25px;
margin-left:25px;
margin-right:25px;
background-color: #fff;
border: 2px solid silver;
border-radius: 5px;
}

.class-Bouton{

font-size: inherit; /*on "force" la taille de police du document à être héritée-il faut définir une taille de police au préalable-vous pouvez aussi changer de taille*/
font-family: inherit; /*on "force" la police du document à être héritée-il faut définir une police au préalable-vous pouvez aussi changer de police*/
line-height: 1;
padding: 0 1em;
margin-top:25px;
margin-left:25px;
margin-right:25px;
background-color: #fff;
border: 2px solid silver;
width: clamp(550px, 50%, 300px);
height: 3.25rem;
border-radius: 5px;
}

@media (max-width: 725px) {
  .class-input {
    width: clamp(50%, 50%, 300px);
}
}

@media (max-width: 525px) {
  .class-input {
    width: clamp(50%, 50%, 300px);
  }
}

@media (max-width: 725px) {
  .class-Bouton {
    width: clamp(50%, 50%, 300px);
  }
}

@media (max-width: 525px) {
  .class-Bouton {
    width: clamp(50%, 50%, 300px);
  }
}

@media (max-width: 725px) {
  .class-area {
    width: clamp(50%, 50%, 300px);
  }
}

@media (max-width: 525px) {
  .class-area {
    width: clamp(50%, 50%, 300px);
  }
}

@media (max-width: 725px) {
  .class-check {
    width: clamp(50%, 50%, 300px);
  }
}

@media (max-width: 525px) {
  .class-check {
    width: clamp(50%, 50%, 300px);
  }
}

@media (max-width: 725px) {
  .class-p {
    width: clamp(50%, 50%, 300px);
  }
}

@media (max-width: 525px) {
  .class-p {
    width: clamp(50%, 50%, 300px);
  }
}
/* Footer */

footer {
  height: 7vh;
  padding: 12px;
  text-align: center;
  background-color: var(--main-black);
}

footer a {
  color: var(--main-white);
}

/* message crowll */

.crowll {
  display: flex;
  justify-content: flex-start;
  width: 100%;
  height: 40px;
  padding: 12px;
  text-align: center;
  text-decoration : none;
  background-color: var(--main-black);
}

.crowll a {
  color: var(--main-white);
  text-decoration:none; 
}

.crowll-titre{
  display: flex;
  justify-content:flex-start;
  align-items: center;
  color: var(--main-white);
  font-weight:bold;
  text-decoration:none; 
  padding-left: 30px;
  font-size: 1.2rem;
}

.contenus {
  margin: 2rem 2rem;
  height: auto;
}