.ocves-sec {
    padding: 48px 20px;
    overflow: hidden;
}

.ocves-sec-container {
    max-width: 1280px;
    margin: 0 auto;
}

/* TOP */

.ocves-sec-top {
    text-align: center;
    margin-bottom: 60px;
}

.ocves-sec-title {
    margin: 0;
}

/* GRID */

.ocves-sec-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

/* CARD */

.ocves-sec-card {
    background: #fff;
    border-radius: 18px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,.06);
    transition: .35s ease;
}

.ocves-sec-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,.10);
}

/* ICON */

.ocves-sec-icon-wrap {
    width: 134px;
    height: 134px;
    border-radius: 50%;
    margin: 0 auto 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ocves-sec-icon {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* CONTENT */

.ocves-sec-card-title {
    font-size: 24px;
    line-height: 1.2;
    font-weight: 700;
    color: #000;
    margin: 0 0 20px;
}

.ocves-sec-card-content {
    font-size: 18px;
    line-height: 24px;
    color: #4b5563;
}

/* LAPTOP */

@media(max-width: 1199px) {

    .ocves-sec-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}

/* TABLET */

@media(max-width: 991px) {

    .ocves-sec-top {
        margin-bottom: 45px;
    }

    .ocves-sec-card {
        padding: 36px 24px;
    }

    .ocves-sec-icon-wrap {
        width: 120px;
        height: 120px;
        padding: 28px;
    }

    .ocves-sec-card-title {
        font-size: 28px;
    }

    .ocves-sec-card-content {
        font-size: 18px;
        line-height: 30px;
    }

}

/* MOBILE */

@media(max-width: 767px) {


    .ocves-sec-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .ocves-sec-top {
        margin-bottom: 35px;
    }

    .ocves-sec-card {
        padding: 30px 20px;
        border-radius: 16px;
    }

    .ocves-sec-icon-wrap {
        width: 100px;
        height: 100px;
        padding: 0px;
        margin-bottom: 24px;
    }

    .ocves-sec-card-title {
        font-size: 24px;
        margin-bottom: 16px;
    }

    .ocves-sec-card-content {
        font-size: 16px;
        line-height: 28px;
    }

}