* {
  font-family: "Poppins", sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
  text-decoration: none;
  list-style: none;
}
body {
  width: 100vw;
 overflow-x: hidden;
}

header {
  /* position: sticky; */
  top: 0;
  /* left: 0; */
  width: 100%;
  max-height: 80px;
  background: white;
  padding: 15px 25%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
}

header .logo img {
  max-height: 70px;
}

nav ul {
  float: right;
  margin-right: 20px;
}
nav ul li {
  display: inline-block;
  line-height: 80px;
  margin: 0 5px;
}

nav ul li a {
  color: #000;
  /* padding: 10px; */
  transform: 0.3s ease;
}

/* SECTION APROPOS */
.apropos {
  width: 100%;
  display: flex;
  flex-direction: column;
  max-width: 50%;
  margin: 0 auto;
  flex-grow: 0;
  flex-shrink: 0;
}

.apropos h2 {
  font-size: 4vmin;
  width: auto;
}
.apropos button {
  align-items: center;
  width: 200px;
  padding: 7px 14px;
  border: none;
  text-align: center;
  font-family: "Instrument Sans";
  font-size: 18px;
  font-weight: 500;
  border-radius: 20px;
  color: #fff;
  background: #007b8a;

  box-shadow: rgba(12, 19, 35, 0.15) 0px 1px 8px 0px;
  opacity: 1;
  transition: color 200ms, background 200ms;
}

/* END */

/* SECTION AVANTAGES */
.avantage {
  width: 100%;
  margin-top: 5%;
  display: flex;
  justify-content: space-between;
  max-width: 50%;
  margin: 0 auto;
  flex-grow: 0;
  flex-shrink: 0;
}

.avantage .part-1 {
  display: flex;
  flex-direction: column;
  max-width: 560px;
  row-gap: 12px;
}

.avantage .part-1 .list-avantage {
  display: flex;
  flex-direction: column;
  row-gap: 36px;
}

.avantage button {
  border-radius: 50%;
}
.avantage .icon-avantage {
  font-size: 30px;
  margin-right: 15px;
  color: #007b8a;
}
#compare{
  max-width: 50%;
  margin: 2rem auto;
  width: 100%;
}

/* END */

/* SECTION FAQ */
.faq {
  max-width: 50%;
  margin: 0 auto;
  flex-grow: 0;
  flex-shrink: 0;
  width: 100%;
  margin-top: 5%;
}

/* END */

/* SECTION CONTACT */
.contact {
  width: 100%;
  display: flex;
  justify-content: center;
  max-width: 50%;
  margin: 0 auto;
  flex-grow: 0;
  flex-grow: 0;
  flex-shrink: 0;
}
.titles {
  font-size: 30px;
  font-weight: 500;
  line-height: 56px;
  margin-bottom: 20px;
  padding-bottom: 0;
  /* padding-top:25px; */
  color: #007b8a;
  font-family: "Poppins", sans-serif;
}

.contact .info {
  padding: 40px 40px;
  background: #f1f3f6;
  color: #47536e;
  text-align: center;
  border: 1px solid #fff;
  /* width: 500px; */
  margin-top: 15px;
}

footer {
  /* position: fixed; */
  display: flex;
  flex-direction: column;
  margin: 0 auto;
  justify-content: space-between;
  padding: 15px 25%;
  align-items: center;
  z-index: 1000;
  width: 100%;
  flex-grow: 0;
  flex-shrink: 0;
  margin-top: 5%;
}
footer img {
  max-height: 50px;
}
.bottom-footer {
  display: flex;
  justify-content: space-between;
  padding-top: 25px;
  border-top: 1px solid rgb(226, 232, 240);
}
.imgs {
  display: flex; 
  justify-content: center; 
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin: 0 auto;
  padding: 20px;
}

.imgs a img {
  width: 200px;
  height: 62px;
}

 .imgss{
       width: 500px;
    height: 430px;
    }

footer .social_icon a {
  font-size: 18px;
  display: inline-block;
  background: #005a9f;
  /* color: #F59c00; */
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}
@media (max-width: 1200px) {
  .avantage,
  .apropos,
  .faq,
  .contact {
    max-width: 80%;
  }
  footer {
    padding: 15px 10%;
  }
}
@media (max-width: 1084px) {
  header {
    padding: 64px;
  }

  .apropos {
    align-items: center;
  }

  /* .apropos h2 {
    font-size: 80%;
  } */

  footer {
    display: flex;
    flex-direction: column;
  }
  .bottom-footer {
    margin-top: 15px;
    align-items: center;
  }
  .avantage .part-1 {
    margin: 0 auto;
  }
}
@media (max-width: 768px) {
  nav ul {
    margin-right: 0px;
  }
}

@media (max-width: 610px) {
  .apropos {
    max-width: 80%;
  }

  .avantage {
    max-width: 80%;
  }
  .contact {
    max-width: 80%;
  }

  .bottom-footer {
    margin-top: 15px;
    align-items: center;
    flex-direction: column;
  }
  footer {
    padding: 15px;
  }
  .imgs {
    flex-direction: column;
  }
}
@media (max-width: 500px) {
  #compare {
    max-width: 98%;
  }
}
