@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;300;400;500;700&display=swap");
:root {
  --main-color: #99cb99;
  --black: #13131a;
  --bg: white;
  --border: 0.1rem solid rgba(0, 0, 0, 0.3);
}
* {
  font-family: "Poppins", sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  outline: none;
  border: none;
  text-decoration: none;
  /* text-transform: capitalize; */
  transition: 0.2s linear;
}

html {
  font-size: 62.5%;
  overflow-x: hidden;
  scroll-padding-top: 9rem;
  scroll-behavior: smooth;
}

html::-webkit-scrollbar {
  width: 0.8rem;
}
html::-webkit-scrollbar-track {
  background: transparent;
}
html::-webkit-scrollbar-thumb {
  background: rgb(0, 0, 0);
  border-radius: 5rem;
}
body {
  background: var(--bg);
}
section {
  padding: 2rem 7%;
}
.heading {
  text-align: center;
  color: #fff;
  text-transform: uppercase;
  padding: 2rem;
  font-size: 3rem;
  background: black;
}
.heading span {
  color: var(--main-color);
  text-transform: uppercase;
}

.btn {
  margin-top: 1rem;
  display: inline-block;
  padding: 1em 3rem;
  font-size: 1.7rem;
  color: #fff;
  background: var(--main-color);
  cursor: pointer;
  text-decoration: none;
  border-radius: 10px;
}
.btn:hover {
  letter-spacing: 0.2rem;
}
/* HEADER */

.header {
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 7%;
  border-bottom: var(--border);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}

.header .logo img {
  height: 13rem;
  /* transform:translateX(110px); */
  transition-delay: 1s;
}

.header .navbar a {
  margin: 2.1rem;
  font-size: 2rem;
  color: black;
  text-decoration: none;
}

.header .navbar a:hover {
  color: var(--main-color);
  border-bottom: 0.1rem solid var(--main-color);
  padding-bottom: 0.5rem;
  transform: scale(1);
  text-decoration: none;
}

.header .icons div {
  color: black;
  cursor: pointer;
  font-size: 2.5rem;
  margin-left: 2rem;
}
.header .icons div:hover {
  color: var(--main-color);
}

#menu-btn {
  display: none;
}
/* <--- Home ---> */
.home {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background-image: url(../Img/photo-accueil.jpeg);
  background-size: cover;
  background-position: center;
}
.home .content {
  max-width: 50rem;
  background-color: white;
  border-radius: 20px;
  border: 1px solid var(--main-color);
  padding: 2rem;
  text-align: center;
  opacity: 0.94;
}

.home .content h1 {
  font-size: 4rem;
  /* text-transform: uppercase; */
  font-weight: normal;
  color: #b2b2b2;
  /* line-height: 1.8;
  padding: 1rem 0; */
  color: hsl(0, 0%, 30%);
  background: linear-gradient(
    to right,
    hsl(0, 0%, 0%) 0,
    hsl(0, 0%, 100%) 10%,
    hsl(0, 0%, 30%) 20%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shine 4s infinite linear;
}
@keyframes shine {
  0% {
    background-position: 0;
  }
  100% {
    background-position: 900px;
  }
  /* 100% {
    background-position: 900px; */
}

.home .content p {
  font-size: 3rem;
  font-weight: lighter;
  line-height: 1.8;
  padding: 1rem 0;
}

.home .content .shar {
  padding: 1rem 0;
}

.home .content .shar a {
  height: 5rem;
  width: 5rem;
  line-height: 5rem;
  font-size: 4rem;
  color: var(--main-color);
  border: white;
  margin: 3rem;
  border-radius: 50%;
}
.home .content .shar a:hover {
  color: #333;
}

/* LOGO HOME START */

.products .box-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
  gap: 1.5rem;
}

.products .box-container .box {
  text-align: center;
  border: var(--border);
  padding: 2rem;
}
/* .products .box-container .box .image {
  padding: 2.5rem 0;
} */
.products .box-container .box .image img {
  height: 5rem;
  width: 5rem;
  border-radius: 10px;
}
.products .box-container .box .content {
  color: black;
  font-size: 2.5rem;
}
.products .box-container .box .content h3 {
  color: rgb(169, 169, 169);
  font-size: 2.5rem;
  padding: 1rem;
  font-weight: normal;
}
/* .products .box-container .box .content h3:hover {
  color: var(--main-color);
}

.products .box-container .box:hover {
  background: whitesmoke;
  color: white;
} */

/* LOGO HOME END */

/* A PROPOS START */

.about {
  margin-top: 15rem;
  align-items: center;
}
.about .row {
  display: flex;
  align-items: center;
  background: rgb(255, 255, 255);
  color: black;
  flex-wrap: wrap;
}

.about .row .content2 {
  flex: 1 1 45rem;
  padding: 2rem;
  text-align: center;
}
.about .row .content2 h2 {
  font-size: 2.5rem;
  color: var(--main-color);
}
.about .row .content2 article p {
  font-size: 1.5rem;
  color: rgb(0, 0, 0);
  padding: 1rem 0;
  line-height: 1.8;
  text-align: start;
}
.about .row .content2 article p span {
  color: #99cb99;
}
.about .row .content2 i {
  font-size: 10rem;
  margin-left: 30px;
}
.heading span {
  color: var(--main-color);
  text-transform: uppercase;
}

/* A PROPOS END */

/* THERAPIE */

/* .products2 {
  margin-top: 15rem;
}
.products2 .box-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(45rem, 1fr));
  gap: 1.5rem;
}

.products2 .box-container .box {
  text-align: center;
  border: var(--border);
  padding: 2rem;
}
.products2 .box-container .box .image {
  padding: 2.5rem 0;
}
.products2 .box-container .box .image img {
  height: 15rem;
  width: 15rem;
  border-radius: 10px;
}
.products2 .box-container .box .content {
  color: black;
  font-size: 2.5rem;
}
.products2 .box-container .box .content h3 {
  color: rgb(169, 169, 169);
  font-size: 3rem;
  font-weight: normal;
}
.products2 .box-container .box .content h3:hover {
  color: var(--main-color);
} */

/* .products2 .box-container .box:hover {
  background: whitesmoke;
  color: white;
} */

/* .products2 .box-container .box .content article p {
  font-size: 15px;
}
.products2 .box-container .box .content article p span {
  color: #99cb99;
  font-weight: normal;
  font-size: large;
  text-decoration: underline;
} */
.products2 {
  margin-top: 15rem;
}

#page #menu {
  padding: 1rem;
  margin-bottom: 2rem;
  border: 1px solid var(--main-color);
  text-align: center;
}

#page #menu a {
  margin: 2.1rem;
  font-size: 2rem;
  color: black;
  text-decoration: none;
}

#page #menu a:hover {
  background-color: var(--main-color);
  color: white;
  border-bottom: 0.1rem solid var(--black);
  padding-bottom: 0.5rem;
  transform: scale(1);
  text-decoration: none;
  padding: 5px;
  border-radius: 15px;
}

#page .box {
  text-align: center;
  border: var(--border);
  padding: 2rem;
}
#page .box .image {
  padding: 2.5rem 0;
}
#page .box .image img {
  height: 35rem;
  width: 35rem;
  border-radius: 10px;
}
#page .box .content {
  color: black;
  font-size: 2.5rem;
}
#page .box .content h2 {
  color: rgb(169, 169, 169);
  font-size: 3rem;
  font-weight: normal;
}
#page .box .content article p {
  font-size: 15px;
  text-align: center;
}
#page .box .content article p span {
  color: #99cb99;
  font-weight: normal;
  font-size: large;
  text-decoration: underline;
}

/* THERAPIE END */

/*CONTACT START */
.contact {
  margin-top: 15rem;
}
.contact .row {
  display: flex;
  background: black;
  flex-wrap: wrap;
  gap: 1rem;
  padding: 2rem;
}

.contact .row .map {
  flex: 1 1 45rem;
  width: 100%;
  object-fit: cover;
}
.contact .row .adress {
  flex: 1 1 45rem;
  padding: 5rem 2;
  text-align: center;
}

.contact .row .adress .contact2 {
  display: flex;
  align-items: center;
  margin-top: 2rem;
  margin-bottom: 2rem;
  background: black;
  border: var(--border);
}
.contact .row .adress .contact2 span {
  color: var(--main-color);
  font-size: 3rem;
  padding: 2rem;
}
.contact .row .adress .contact2 p {
  width: 90%;
  padding: 2rem;
  font-size: 1.7rem;
  color: #fff;
  text-transform: none;
  background: none;
  align-items: center;
}
.contact .row .adress .contact2 a {
  width: 90%;
  padding: 2rem;
  font-size: 1.7rem;
  color: var(--main-color);
  text-transform: none;
  background: none;
  align-items: center;
}

/* CONTACT END */

/* FOOTER */

.footer {
  background: rgb(0, 0, 0);
  text-align: center;
}
.footer .shar {
  padding: 1rem 0;
}

.footer .shar a {
  height: 5rem;
  width: 5rem;
  line-height: 5rem;
  font-size: 4rem;
  color: rgb(255, 255, 255);
  border: white;
  margin: 3rem;
  border-radius: 50%;
}
.footer .shar a:hover {
  background: var(--main-color);
}
.footer .links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 2rem 0;
  gap: 1rem;
}
.footer .links a {
  padding: 0.7rem 2rem;
  color: rgb(255, 255, 255);
  border: var(--border);
  font-size: 2rem;
  text-decoration: none;
}
.footer .links a:hover {
  background: var(--main-color);
}
.footer .credit {
  font-size: 2rem;
  color: #fff;
  font-weight: lighter;
  padding: 1.5rem;
}
.footer .credit span a {
  color: var(--main-color);
}

/* MEDIA QUERIES */

@media (max-width: 950px) {
  #menu-btn {
    display: inline-block;
  }

  .header .navbar {
    position: absolute;
    top: 100%;
    right: -100%;
    background: #fff;
    width: 30rem;
    height: calc(100vh - 9.5rem);
  }
  .header .navbar.active {
    right: 0;
  }

  .header .navbar a {
    color: var(--black);
    display: block;
    margin: 1.5rem;
    padding: 1rem;
    font-size: 2rem;
  }
  .header .logo img {
    height: 10rem;
  }

  .home {
    background-position: left;
    justify-content: center;
    text-align: center;
  }
  .home .content h3 {
    font-size: 2rem;
  }

  .about .heading {
    font-size: 3rem;
  }
  .contact .heading {
    font-size: 3rem;
  }
  .contact .row .adress .contact2 span {
    color: var(--main-color);
    font-size: 1.5rem;
    padding: 0;
  }
  /* @media (max-width:1070px){
    .products2 .box-container .box {
        width: 35rem;
    } */
}
/* .products .box-container{
        display:flex;
        justify-content: space-between;
        flex-wrap: wrap;
        
    } */
@media (max-width: 415px) {
  .products2 .box-container .box {
    width: 35rem;
  }
  #page .box .image img {
    height: 20rem;
    width: 20rem;
    border-radius: 10px;
  }
}
@media (max-width: 390px) {
  html {
    font-size: 50%;
  }
}
