@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@300;400;500;600;700&family=Roboto:wght@300;400;500;700;900&display=swap');

:root{
    --white-light: rgba(255, 255, 255, 0.5);
    --alice-blue: #f8f9fa;
    --carribean-green: #40c9a2;
    --gray: #ededed;
}
*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
body{
    font-family: 'Quicksand', sans-serif;
}

/* Utility stylings */

.container{
    width: 100%;
    margin: 0 auto;
}
.container-pro{
    display: flex;
    flex-direction: column;
}
.lg-title{
    font-family: 'Roboto', sans-serif;
    text-transform: capitalize;
    font-size: 2.5rem;
    font-weight: 500;
    /* text-align: center; */
    padding: 1.75rem 0;
    opacity: 0.9;
    padding: 0 8%;
   margin-top: 8rem;
}

.text-light{
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.5;
    opacity: 0.8;
    margin: 0.4rem 0;
}

/* product section */
.container-global{
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
}

.products{
    
    /* background: var(--alice-blue); */
    padding: 1rem 0;
    display: flex;
    width: 50%;
    flex-direction: column;

}
.products .text-light{
    /* text-align: center; */
    width: 100%;
    padding: 0 8%;
}
.product{
    box-sizing: border-box;
    margin: 2rem;
    position: relative;
    width: 100%;
    background-color:aliceblue;
    display: flex;
    margin-bottom: 2%;
    height: 2vw;
    border-radius: 5px;
}


.product-content{
    display: flex;
    justify-content: space-between;  
    text-align: center;
    align-items: center;
    width: 100%;
    
}


.product-info{
    background: white;
    color: black;
    padding: 2rem;
}
.product-info-top{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

a{
    text-decoration: none;
    color:black;
}


.product-img{
    margin-left: 1%;
    display: flex;
}


 






.product-container{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin-left: 10%;
    margin-right: 10%;
    flex-direction: row ;
}


.list-product{
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    /* overflow: auto; */
    padding: 0 8%;
}

.container-list{
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
    /* overflow: auto; */
}


.btn{
    text-decoration: none;
    color: black;
    border: 0.001em solid #000000;
    border-radius: 00.8rem;
    width: 100%;
    /* margin-right:5%;
    margin-left: 5%; */
    margin-right: 2%;
    text-align: center;
}

.btn:hover{
    background-color: #2c2b2b;
    color:white
}

.btns{
    display: flex;
    flex-direction: row;
    width: 50%;
}

.invisible{

display: none;
margin: 2%;
}

.invisible:hover {
    text-decoration: underline;
    
  }

@media screen and (max-width: 1200px) {

    
   .products{
    width: 70%;
   }
}

@media screen and (max-width: 800px) {
    .btns{
    width: 25%;
    display: none;
    }
    .invisible{
        display: block;
    }
    .product{
        height: 4vw;
    }
    .product-img{
        display: none;
    }

}
@media screen and (max-width: 500px){
    .products{
        width: 80%;
       }
}
