.ci {
    width: 100%;
    height: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #ddd;
    background: url(../images/grid.jpg) repeat;
    background-position: center;
    background-size: cover;
}

.ci img {
    height: 117px;
}

.ci-text {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 5rem;
}

.ci-text h5 {
    color: var(--epm-navy);
    font-size: 20px;
}

.ci-text p {
    color: #888;
    font-size: 17px;
    line-height: 1.7;
}

.ci-box-wrapper {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.ci-box {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.ci-box div:first-child {
    width: 130px;
    height: 130px;
}

.ci-box span {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0;
}

.ci-box ul {
    display: flex;
    flex-direction: column;
    gap: 3px;
    margin-top: 10px;
}

.ci-box ul li {
    color: #444;
    font-size: 15px;
    letter-spacing: 0;
}


/*==================================================*/
@media (max-width: 1150px) {
    .ci-text p br {
        display: none;
    }

    .ci-box {
        width: 100%;
        flex-direction: column;
    }

    .ci-box div:first-child {
        width: 100%;
        height: 50px;
    }

    .ci-box-text {
        width: 90%;
    }
}


@media (max-width: 768px) {
    .ci {
        height: 220px;
    }

    .ci img {
        width: 60%;
        height: auto;
    }

    .ci-text {
        gap: 1.5rem;
    }
}


@media (max-width: 650px) {
    .ci-box-wrapper {
        grid-template-columns: repeat(1, 1fr);
        gap: 1rem;
    }
    
    .ci-box {
        flex-direction: row;
        gap: 0;
    }

    .ci-box div:first-child {
        width: 40%;
        height: 100%;
    }

    .ci-box-text {
        padding: 20px;
    }
}


@media (max-width: 550px) {
    .ci {
        height: 180px;
    }

    .ci-text {
        margin-top: 3rem;
    }
    
    .ci-text h5 {
        font-size: 18px;
    }

    .ci-text p {
        font-size: 14px;
    }

    .ci-box span {
        font-size: 16px;
    }
    
    .ci-box ul li {
        font-size: 12px;
    }
}