.cardwrap{
    float: left;
    width: 100%;
}
.card{
    height: 340px;
    border:1px solid white;
    border-radius:5px;
    padding:30px;
    min-height: 256px;
    transition: all 0.3s ease;
    cursor: pointer;
}
.card:hover{
    background: white;
    color: #ff571c;
}
.cardselected{
    background: white;
    color: #ff571c;
    border:1px solid white;
    border-radius:5px;
    transition: all 0.3s ease;
    cursor: pointer;
}
.card h3, .cardselected h3{
    margin:20px 0;
}
.card i, .cardselected i{
    font-size: 60px;
    margin-bottom:10px;
}