article {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    width: 100%;
    gap: 0 20px;
}

.item {
    padding: 50px 0;
    width: 260px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: all 0.3s;
}

.item b {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    color: #ffffff;
    background-color: #278be8;
    border-radius: 50%;
    margin-bottom: -15px;
    z-index: 99;
}

.icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100px;
    height: 100px;
    background-color: #f1f6ff;
    color: #278be8;
    font-size: 40px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-radius: 50%;
}

.title {
    color: #278be8;
    margin: 20px 0 10px;
    font-weight: 600;
}

.desc {
    font-size: 13px;
    color: #666666;
}


.item:hover {
    transform: translate3d(0, -2px, 0);
    box-shadow: 0 15px 30px rgba(0, 0, 0, .1);
}