@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,200;0,300;0,500;0,600;1,200;1,500&display=swap');


*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    font-family: 'Poppins', sans-serif;
}
.navbar{
    display: flex;
    align-items: center;
}

.logo img{
    width: 145px;
}

nav{
    flex: 1;
    text-align: right;
}

nav ul{
    display: inline-block;
    list-style-type: none;
}

nav ul li{
    display: inline-block;
    margin-right: 20px;
}

nav ul li a{
    text-decoration: none;
    color: #555;
}

.container{
    max-width: 1300px;
    margin: 25px auto;
    padding-left: 25PX;
    padding-right: 25px;
}

.row{
    display: flex;
    align-items: center;
    justify-content: space-around;
    flex-wrap: wrap;
}

.col-2{
    flex-basis: 50%;
    min-width: 300px;
}

.col-2 img{
    width: 100%;
    padding: 30px 0;
}

.col-2 h1{
    font-size: 50px;
    line-height: 60px;
    margin: 25px 0;
}

 .col-2 a{
     display: inline-block;
     text-decoration: none;
     padding: 10px 30px;
     background: #04cfe2;
     color: #fff;
     border-radius: 30px;
     margin-top: 25px;
     transition: background 0.5s; /* pour changer la clic*/
 }

 .col-2 a:hover{
     background: #106e77; /* pour colorer le clic*/
 }

p{
    color: #555;
}

.header-section{
    margin-top: -20px;
    background: radial-gradient(#fff,#eaf2fb);
} /*pour colorer le font*/


/*style de la section des categories*/

.categories{
    margin: 70px 0;
}
.col-3{
    flex-basis: 30%;
    min-width: 250px;
    margin: auto;
}

.col-3 img{
    width: 100%;
}

.container h2{
    text-align: center;
    font-size: 2.2rem;
    color:#444;
    margin: 50px 0;
}

/*section des meilleurs produit*/

.col-6{
    flex-basis: 25%;
    min-width: 200px;
    padding: 15px;
    transition: transform 0.4s; /*temps de transformation de l'image*/
}

.col-6 img{
    width: 100%;
}
/*transformation de l'image*/
.col-6:hover{
      transform: translateY(-10px);
}

.rating .fa{
    color: #16a7b4;
}