.features-box {
    padding: 1.5rem;
    background: #f5f5f6;
    border-radius: 10px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    transition: .4s ease;
}

.features-icon {
    width: 70px;
    height: 70px;
    background: white;
    padding: 10px;
    display: grid;
    place-content: center;
    margin: 0 auto 1rem;
    border-radius: 100%;
    border: 1px solid #cdcdcd;
}

.features-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.features-box:hover {
    transform: translateY(-10px);
    box-shadow: rgba(17, 12, 46, 0.15) 0px 48px 100px 0px;
    background: #f9f9f9;
}