.textProduse{
    width: 100%;
    height: 20vh;
    background-color: black;
    margin-top: 20px;
    display: flex;
    text-align: left;
    margin-bottom: 30px;
    align-items: center;
}

.textProduse h1{
    text-align: center;
    color:#fff;
    font-size: 30px;
    margin-left: 100px;
    font-weight: 400;
    font-family:'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    letter-spacing: 6px;
}

.products{
    width: 80%;
    margin: auto;
    text-align: center;
    padding-top: 100px;
}

.rowProduse{
    margin-top: 5%;
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(250px, 1fr));
    justify-content: space-between;
    grid-gap: 30px;
    margin-bottom: 150px;
}

.products-col{
    background-color: #F7F9FA ;
    flex-basis: 31%;
    height: 90%;
    border-radius: 35px ;
    margin-bottom: 5%;
    padding: 20px 12px;
    box-sizing: border-box;
    transition: 1s;
}

.products-col:hover{
    box-shadow: 2px 2px red;
    transition: 0.5s;
}

.products-col a{
    text-decoration: none;
    color:black;
}

.products-col img{
    height: 80%;
    width: 100%;
    border-radius: 30px;
    
}

.products-col h3{
    color:black;
    font-size: 18px;
    margin-top: 30px;
    font-weight: 400;
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    letter-spacing: 3px;
}

.products-col .bigTexts{
    font-size: 17px;
}