.cw3-three-cards {
    display: flex;
    flex-wrap: wrap;
    column-gap: 30px;
    row-gap: 30px;
}

.cw3-three-cards .item {
    display: flex;
    flex-direction: column;
    flex: 0 0 calc(33.3333% - 20px);
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
    background-color: #fff;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.cw3-three-cards a.item:hover {
    opacity: 0.9;
}

.cw3-three-cards .icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    margin-bottom: 10px;
    color: #011e41;
}

.cw3-three-cards .icon.icon-hand-point-up {
    width: 40px;
}

.cw3-three-cards .icon svg {
    flex: 1;
}

.cw3-three-cards .title {
    margin-bottom: 20px;
    font-size: 30px;
    line-height: 1.1;
    font-weight: bold;
}

@media screen and (max-width: 767px) {
    .cw3-three-cards .item {
        flex: 0 0 100%;
    }
}
