.row-why{
    display: flex;
}
.col-why{
    background-color: rgb(255, 255, 255);
    margin: 10px;
    padding: 20px;
}
.col-why h3{
    color: black;

}
.col-why p{
    color: black;
}
.cards{

    transition: all 0.2s ease;
    cursor: pointer;
    

  }
.cards:hover{

    box-shadow: 5px 6px 6px 2px #e9ecef;
    transform: scale(1.1);
}

