.pkd-top {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.pkd-check {
    width: fit-content;
    padding: 40rem;
    display: flex;
    align-items: center;
    gap: 20rem;
    color: #00d269;
    font-size: 20rem;
    font-weight: 600;
    line-height: 1.6;
    border-radius: 15rem;
    border: 1px solid #00d26a20;
    background-color: #00d26a10;
    margin-top: 50rem;
}

.pkd-check i {
    color: #00d26a;
    font-size: 40rem;
}

.pkd-box-wrapper {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 50rem;
}

.pkd-box {
    padding: 80rem;
    border-radius: 15rem;
    border: 1px solid #ddd;
    background-color: #f8f8f8;
}

.pkd-box h5 {
    color: #222;
    font-size: 30rem;
    font-weight: 700;
    line-height: 1.4;
}

.pkd-box p {
    color: #888;
    font-size: 22rem;
    line-height: 1.7;
    margin-top: 20rem;
}

.pkd-image {
    width: 35%;
}



/*==================================================*/
@media (max-width: 768px) {
    .pkd-top {
        flex-direction: column;
        margin-bottom: 0;
    }

    .ar-title {
        margin-bottom: 0;
    }

    .pkd-check {
        width: 100%;
    }

    .pkd-image {
        width: 70%;
        margin: 50rem auto;
    }

    .pkd-box {
        padding: 50rem;
    }
}