.Post-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
    border-bottom: 1px solid #D8E6E9;
    padding: 0 0 80px;
}

.blog-grid .Post-grid .blog-date {
    height: 31px;
}

.service-section {
    background: linear-gradient(0deg, #EFFCFF 24.5%, rgba(241, 253, 255, 0.00) 94.17%);
}


.blog-section.section_padding.serBx {
    width: 100%;
    max-width: 1170px;
    border-bottom: 1px solid #D8E6E9;
    margin: 0 auto
}

.ContyentArea p {
    color: #000;
    font-size: 20px;
    font-weight: 400;
    line-height: 32px;
    margin: 29px 0 0
}

.CounterList {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    margin: 30px 0 0;
}

.ListingArea {
    background: linear-gradient(312deg, rgba(4, 241, 154, 0.23) 0%, rgba(0, 180, 245, 0.15) 97.88%), #EEFAFF;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    padding: 40px 30px;
    border-radius: 10px;
}

.ListingArea ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap
}


.ListingArea ul li {
    counter-increment: count;
    flex: 0 0 50%;
    display: flex;
    position: relative;
    padding: 0 45px 0 0;
    min-height: 30px;
    color: #000;
    font-size: 22px;
    font-weight: 400;
    line-height: 24px;
    margin: 20px 0 0;
}

.ListingArea ul li:before {
    content: counter(count);
    background: #110047;
    width: 30px;
    height: 30px;
    position: absolute;
    right: 0;
    text-align: center;
    line-height: 30px;
    border-radius: 100%;
    color: #FFF;
    font-size: 18px;
    top: -4px;

}

.ListingArea ul li:nth-child(-n+9):before {
    content: counter(count);
}

.ListingArea ul li a {
    color: #000;
    font-size: 22px;

}

@media (max-width:768px) {
    .ListingArea ul li a {
        font-size: 14px;

    }

    .ListingArea ul li::before {
        font-size: 14px;
    }

    .ContyentArea p {
        font-size: 14px;
    }

    .ListingArea ul li::before {
        top: 0;
    }
}

@media (max-width:660px) {
    .ListingArea ul {
        flex-direction: column;
    }

    .ListingArea {
        padding: 20px 30px;
    }
}

#chaiblogPost {
    overflow: hidden;
}