/*Pour l'importation des googles fonts*/
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

/*Pour le reset css et tout ce qui est en liaison avec le menu*/
*{
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
  font-family: 'poppins', sans-serif;
}
header{
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 50px;
  padding: 0 10%;
  position: fixed;
  top:0;
  left:0;
  right:0;
  background-color: white;
  opacity: 0.8;
  box-shadow: 0px 0px 10px rgba(0,0,0,0.9);
  z-index: 10;
}

/*Pour la fenêtre*/
html{
  scroll-behavior: smooth;
  font-size: 62.5%;
}

/*Pour le body*/
body{
  position: relative;
}
section{
  margin-top: 50px;
}

/*Pour le menu*/
.menu{
  display: flex;
}
.logo{
  color: blue;
  font-weight: 700;
  font-size: 25px;
}
.logo span{
  color: black;
}
.menu li{
  margin: 0 15px;
  list-style: none;
}
.menu li a{
  font-size: 14px;
  text-decoration: 0;
  color: #999;
  position: relative;
}
.menu li a::before{
  position: absolute;
  top: -5px;
  left: 0;
  content: "";
  width: 0;
  height: 2px;
  border-radius: 10px;
  background-color: blue;
  transition: 0.5s;
}
.menu li a:hover::before{
  width: 100%;
}
.menu li a::after{
  position: absolute;
  bottom: -5px;
  right: 0;
  content: "";
  width: 0;
  height: 2px;
  border-radius: 10px;
  background-color: black;
  transition: 0.5s;
}
.menu li a:hover::after{
  width: 100%;
}
.menu li a:hover{
  color: black;
}

/*Pour la présentation des produits*/
#home{
  margin-top: 50px;
  display: flex;
  align-items: center;
  margin: 0 10%;
  height: calc(100vh - 50px);
  justify-content: space-between;
}
#home .left{
  width: 40%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
#home .left h4{
  font-size: 20px;
  color: skyblue;
}
#home .left h1{
  font-size: 40px;
}
#home .left p{
  font-size: 12px;
  color: #999;
}
#home .left button{
  margin-top: 20px;
  width: fit-content;
  padding: 5px 10px;
  background-color: #000;
  border: 0;
  transition: 0.5s;
  position: relative;
  cursor: pointer;
}
#home .left button a{
  text-decoration: none;
  color: white;
  font-weight: bold;
  text-transform: uppercase;
  transition: 0.2s;
}
#home .left button::before{
  position: absolute;
  left: 5px;
  top: 5px;
  height: 100%;
  width: 100%;
  content:"";
  z-index: -1;
  background-color: skyblue;
}
#home .left button:hover a{
  letter-spacing: 1px;
}
#home .right {
  width: 50%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
#home .right img{
  width: 100%;
  border-radius: 15px;
  animation: animate 2s linear;
  transition: 0.5s;
}
@keyframes animate{
  0%{opacity:0;}
  100%{opacity: 1}
}

/*Pour les différents produits*/
#menu{
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background-color: rgba(0,0,0,0.5);
  padding: 50px 10px;
}
.mini_title{
  margin-top: 25px;
  font-size: 16px;
  color: skyblue;
}
.title{
  font-size: 20px;
  text-transform: uppercase;
  color: #273e60;
  margin-bottom: 25px;
  text-align: center;
}