/* 
__________________________________________________________________________

                  Font Family
__________________________________________________________________________ 
*/

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');

/*
__________________________________________________________________________

                    Reset
__________________________________________________________________________
 */

* {

  font-family: 'Poppins', sans-serif;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: rgba(44, 105, 105) #ffffff;
}

*::-webkit-scrollbar {
  width: 12px;
}

*::-webkit-scrollbar-track {
  background: #ffffff
}

*::-webkit-scrollbar-thumb {
  background-color: rgba(44, 105, 105);
  border-radius: 20px;
}

/*
__________________________________________________________________________

                    Header
__________________________________________________________________________
 */


header {
  position: fixed;
  width: 100%;
  min-height: 8vh;
  padding: 10px 100px 10px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 99;
  text-decoration: none;
  background: linear-gradient(to bottom, rgb(255, 255, 255), rgba(255, 255, 255, 0.850));
  box-shadow: 0 0 20px #c0c2c5;


}

header .Logo-title {
  display: flex;
  justify-content: center;
  align-items: center;
}

header .menu ul {
  display: flex;
  justify-content: center;
  list-style: none;
}

header .menu ul li a {
  color: rgba(0, 0, 0, 0.8);
  font-size: 21px;
  margin: 0 20px;
  border-bottom: 2px solid transparent;
  transition: all 0.8s ease;
  text-decoration: none;
  font-weight: bold !important;
}

header .menu ul li a i {
  margin: 0 3px;
}

header .menu ul .menu-deroulant:hover a {
  border-bottom: none;
  transition: none;
}

header .menu ul li:hover a {
  border-bottom: 2px solid #2C6969;
}


.menu-deroulant>a:after {
  content: '❯';
  font-size: 15px;
  margin-left: 7px;
  display: inline-block;
}

.menu-deroulant:hover>a:after {
  animation: rotationFleche 0.2s linear forwards;

}

@keyframes rotationFleche {
  0% {
    transform: rotate(0deg);
  }

  50% {
    transform: rotate(45deg);
  }

  100% {
    transform: rotate(90deg);
  }
}

.sous-menu {
  position: absolute;
  width: 200px;
  text-align: left;
  overflow: hidden;
  max-height: 0;
  border-radius: 2px;
  background-color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;

}

.menu-deroulant:hover>.sous-menu {
  animation: apparitionSousMenu 1s forwards;
}

@keyframes apparitionSousMenu {
  0% {
    box-shadow: 0px 3px 3px 1px rgba(0, 0, 0, 0);
    border-top: 3px solid #2C6969;
  }

  30% {
    box-shadow: 0px 3px 3px 1px rgba(0, 0, 0, 0.3);
  }

  100% {
    max-height: 50em;
    border-top: 3px solid #2C6969;
    box-shadow: 0px 3px 3px 1px rgba(0, 0, 0, 0.3);
  }
}

.sous-menu>li:hover {
  background-color: rgba(44, 105, 105, 0.404)
}

.sous-menu>li>a {
  align-items: center;
  display: flex;
  text-align: center;
  height: 50px;
  width: 100%;
}

.sous-menu li {
  width: 100%;
}

li.active {
  background-color: rgba(44, 105, 105, 0.8);
}

.sous-menu>li:hover>a {
  color: rgba(55, 105, 105, 0.5);
}

header .Logo-title img {
  width: 80px;
}

header .Logo-title h2 {
  color: rgba(0, 0, 0, 0.8);
  font-weight: bold;
  font-size: 23px;
  margin-left: 10px;
}



#menuToggle {
  display: none;
  position: absolute;
  top: 25px;
  right: 50px;
  z-index: 1;
  -webkit-user-select: none;
  user-select: none;
}

#menuToggle input {
  display: block;
  width: 40px;
  height: 32px;
  position: absolute;
  top: -7px;
  left: -5px;
  cursor: pointer;
  opacity: 0;
  /* hide this */
  z-index: 2;
  /* and place it over the hamburger */
  -webkit-touch-callout: none;
}

#menuToggle span {
  display: block;
  width: 33px;
  height: 4px;
  margin-bottom: 5px;
  position: relative;
  background: rgba(0, 0, 0, 0.8);
  border-radius: 3px;
  z-index: 1;
  transform-origin: 4px 0px;
  transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0),
    background 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0),
    opacity 0.55s ease;
}

#menuToggle span:first-child {
  transform-origin: 0% 0%;
}

#menuToggle span:nth-last-child(2) {
  transform-origin: 0% 100%;
}

#menuToggle input:checked~span {
  opacity: 1;
  transform: rotate(45deg) translate(-2px, -1px);
  background: #232323;
}

#menuToggle input:checked~span:nth-last-child(3) {
  opacity: 0;
  transform: rotate(0deg) scale(0.2, 0.2);
}

#menuToggle input:checked~span:nth-last-child(2) {
  opacity: 1;
  transform: rotate(-45deg) translate(0, -1px);
}

#menu {
  position: absolute;
  width: 350px;
  margin: -100px 0 0 0;
  padding: 50px;
  padding-top: 125px;
  right: -100px;
  background: rgb(255, 255, 255);
  list-style-type: none;
  -webkit-font-smoothing: antialiased;
  /* to stop flickering of text in safari */
  transform-origin: 0% 0%;
  transform: translate(100%, 0);
  transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0);
  box-shadow: rgba(9, 30, 66, 0.25) 0px 4px 8px -2px, rgba(9, 30, 66, 0.08) 0px 0px 0px 1px;
}

#menu li {
  padding: 10px 0;
  font-size: 22px;
}

#menu a {
  color: rgba(0, 0, 0, 0.8);
  font-size: 21px;
  border-bottom: 2px solid transparent;
  transition: all 0.8s ease;
}

#menuToggle input:checked~ul {
  transform: scale(1.0, 1.0);
  opacity: 1;
}

@media (max-width: 1100px) {

  #menuToggle {
    display: block;
  }

  header .menu ul {
    display: none;
  }
}

/* 
___________________________________________________________________________________________

                    Section  Home
___________________________________________________________________________________________
 */


.Home {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 100vh;
  position: relative;
  padding: 0 200px;
}

.Home .container {
  display: flex;
  justify-content: center;
  align-items: center
}

.Home .text-box {
  width: 40%;
  text-align: center;
}

.Home .text-box h1 {
  color: #2C6969;
  font-size: 90px;
  font-family: 'Original Surfer', cursive;
}

.Home .image-box {
  width: 60%;
}


.Home .image-box img {
  width: 100%;
}


@media (max-width: 1300px) {
  .Home .container {
    flex-direction: column;
  }
}

@media (max-width: 1100px) {
  .Home {
    padding: 100px 50px 0 50px;
  }

  .Home .text-box {
    width: 100%;
    text-align: center;
    margin-bottom: 50px;
  }

  .Home .text-box h1 {
    font-size: 80px;
  }

  .Home .image-box {
    width: 70%;
  }
}

@media (max-width: 900px) {

  .Home .text-box h1 {
    font-size: 60px;
  }

}

@media (max-width: 600px) {
  .Home {
    padding: 50px;
    min-height: 0vh;
  }

  .Home .image-box {
    width: 100%;
  }
}





/* 
___________________________________________________________________________________________

                     Section  About
___________________________________________________________________________________________
 */





.about {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 0 100px;
}

.about .container {
  display: flex;
  justify-content: center;
  align-items: center
}

.about .container {
  width: 100%
}

.about .container-image {
  width: 50%;
  max-width: 900px;
  margin-right: 80px;
  justify-content: center;
}

.about .container-image img {
  width: 100%
}

.about .container-text {
  width: 50%;
}

.about .container-text h3 {
  color: #282C34;
  font-size: 30px;
}

.about .container-text h3 span {
  color: #5EBF45
}

.about .container-text p {
  text-align: justify;
  font-size: clamp(12px, 1.7vw, 22px);
  color: rgba(0, 0, 0, 0.8);
  margin-top: 40px;
}

@media (max-width: 900px) {

  .about {
    padding: 0px 50px 0px 50px;
  }

  .about .container {
    flex-direction: column-reverse;
  }


  .about .container-image {
    margin-right: 0px;
    margin-top: 25px;
    justify-content: center;
    width: 70%;
  }

  .about .container-text {
    width: 100%;
  }

}

@media (max-width: 600px) {

  .about {
    padding: 0px 50px 0px 50px;
    min-height: 0vh;
    margin: 100px 0;
  }

}


/* 
___________________________________________________________________________________________

                     Section  Why
___________________________________________________________________________________________
 */





.Why {
  min-height: 100vh;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: column;
  padding: 0 100px;
}

.Why .container {
  display: flex;
  justify-content: center;
  align-items: center
}

.Why .container {
  width: 100%
}

.Why .container-text {
  width: 70%
}

.Why .container-text h3 {
  text-align: center;
  color: #282C34;
  font-size: clamp(30px, 4vw, 55px);
}

.Why .container-text h3 span {
  color: #5EBF45
}

.Why .container-text p {
  text-align: justify;
  font-size: clamp(12px, 1.7vw, 22px);
  color: rgba(0, 0, 0, 0.8);
  margin-top: 40px;
}

@media (max-width: 900px) {

  .Why {
    padding: 0px;
    min-height: 0vh;
  }


}

/* 
___________________________________________________________________________________________

                     Les produits
___________________________________________________________________________________________
 */


.Produits {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 0 100px;
}

.Produits h2 {
  color: rgba(0, 0, 0, 0.712);
  font-size: clamp(28px, 4vw, 60px);
  margin: 110px 0;
  position: relative;
  cursor: default;
  text-align: center;
  width: 50%;
}


.container-Produits {
  margin-top: 50px;
  width: auto;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap
}

.div-produits {
  transition: all 0.5s ease;
  width: 500px;
  height: 380px;
  border-radius: 10px;
  margin: 25px;
  box-shadow: 0 0 20px #c0c2c5;
  border: 1px rgba(0, 0, 0, 0.322) solid;

}

.div-img {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.img-produits {
  height: 100%;
  overflow: hidden;
  border-radius: 10px;
}

.div-produits:hover {

  transform: translateY(-8px);
}

.div-produits:hover .logo-yeux {

  transform: translateY(-8px);
  opacity: 1;
}

.div-produits:hover .span-produits {
  transform: translateY(-8px);
  opacity: 1;
}

.div-produits:hover .container-hover {
  opacity: 1;
}

.logo-yeux {
  width: 90px;
}

.container-hover {
  background: rgba(0, 0, 0, 0.342);
  box-shadow: .2rem .2rem .5rem #cbced1, -.2rem -.2rem .5rem #fff;
  width: 500px;
  height: 380px;
  border-radius: 10px;
  position: absolute;
  opacity: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.5s ease;
}

@media (max-width: 900px) {

  .Produits {
    padding: 0;
  }

  .div-produits {
    width: 300px;
    height: 228px;

  }

  .container-hover {
    display: none;
  }

  .Produits h2 {
    margin: 110px 0 0 0;

  }


}




/* 
___________________________________________________________________________________________

                      FOOTER
___________________________________________________________________________________________
 */


footer {
  background-color: #26272b;
  padding: 45px 0 20px;
  font-size: 15px;
  line-height: 24px;
  color: #737373;
  margin-top: 50px;
}

.site-footer hr {
  border-top-color: #bbb;
  opacity: 0.5
}

.site-footer hr.small {
  margin: 20px 0
}

.site-footer h3 {
  color: #fff;
  font-size: 16px;
  text-transform: uppercase;
  margin-top: 5px;
  letter-spacing: 2px
}

.site-footer a {
  color: #737373;
}

.site-footer a:hover {
  color: #3366cc;
  text-decoration: none;
}

.footer-links {
  padding-left: 0;
  list-style: none
}

.footer-links li {
  display: block;
  margin-top: 10px;
}

.footer-links a {
  color: #737373
}

.footer-links a:active,
.footer-links a:focus,
.footer-links a:hover {
  color: #3366cc;
  text-decoration: none;
}

.footer-links.inline li {
  display: inline-block
}

.site-footer .social-icons {
  text-align: right
}

.site-footer .social-icons a {
  width: 40px;
  height: 40px;
  line-height: 40px;
  margin-left: 6px;
  margin-right: 0;
  border-radius: 100%;
  background-color: #33353d
}

.copyright-text {
  margin: 0
}

@media (max-width:991px) {
  .site-footer [class^=col-] {
    margin-bottom: 30px
  }
}

@media (max-width:767px) {
  .site-footer {
    padding-bottom: 0
  }

  .site-footer .copyright-text,
  .site-footer .social-icons {
    text-align: center
  }
}

.social-icons {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none
}

.social-icons li {
  display: inline-block;
  margin-bottom: 4px
}

.social-icons li.title {
  margin-right: 15px;
  text-transform: uppercase;
  color: #96a2b2;
  font-weight: 700;
  font-size: 13px
}

.social-icons a {
  background-color: #eceeef;
  color: #818a91;
  font-size: 16px;
  display: inline-block;
  line-height: 44px;
  width: 44px;
  height: 44px;
  text-align: center;
  margin-right: 8px;
  border-radius: 100%;
  -webkit-transition: all .2s linear;
  -o-transition: all .2s linear;
  transition: all .2s linear
}

.social-icons a:active,
.social-icons a:focus,
.social-icons a:hover {
  color: #fff;
  background-color: #29aafe
}

.social-icons.size-sm a {
  line-height: 34px;
  height: 34px;
  width: 34px;
  font-size: 14px
}

.social-icons a.facebook:hover {
  background-color: #3b5998
}

.social-icons a.twitter:hover {
  background-color: #00aced
}

.social-icons a.linkedin:hover {
  background-color: #007bb6
}

.social-icons a.dribbble:hover {
  background-color: #ea4c89
}

@media (max-width:767px) {
  .social-icons li.title {
    display: block;
    margin-right: 0;
    font-weight: 600
  }
}