/*-------products---------*/
.heading{
    margin-top: 5vh;
    margin-bottom: 5vh;
    text-align: center;
}
.grid{
    display: flex;
    justify-content: center;
    align-items: space-evenly;
    flex-wrap: wrap;
    gap: 1.5vw;
}
.link{
    display: flex;
    justify-content: flex-start;
    align-items: center;
    max-width: 25.5vw;
    min-width: 250px;
    background: rgba(172, 209, 242, 0.5);
    border-radius: 10px;
    box-sizing: border-box;
    padding: 2vh 1vw;
    transition: 0.3s;
    box-shadow: 0 0 20px 0px rgb(0,0,0,0.2);
    text-decoration: none;
    color: black;
}
.link:hover{
    box-shadow: 16px 16px 40px 0px rgb(0,0,0,0.2);   
}
.box{
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
}
.box img{
    max-width: 10vw;
    height: auto;
    filter: grayscale(1.0);
}
.box h4{
    text-align: center;
    margin: 10px 0;
}
.box p{
    color: black;
    font-size: 14px;
    font-weight: 300;
    line-height: 22px;
    padding: 10px;
}
    
@media(max-width: 700px){
}