
.feature-menu {
    margin: 0 10px;
  
    border-radius: 5px;
    box-shadow: 0 5px 7px 0 #f1f1f1;
    border: 1px solid rgb(228, 232, 236);
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}


.make-it-slow {
box-shadow: 0 1px 2px rgba(0,0,0,0.15);
transition: box-shadow 0.3s ease-in-out;
}

/* Transition to a bigger shadow on hover */
.make-it-slow:hover {
box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.feature-menu:hover {
    cursor: pointer;
}

.feature-menu img {
    transition: .5s ease all; 
    width: 100%; 
    object-fit:cover;
    border-radius: 5px;
}

.feature-menu:hover img {
transform: scale(1.1);
}

.settings-icon {
    font-size: 7rem;
    color: #495057;
}

h3.card-title {
    font-size: 1.2rem;
}

.text-right {
    text-align: right;
}