.productstopblock {
    background-image: url('../assets/images/accreditationblock.png') !important;
}

.accblock {
    width: 100%;
    height: auto;
    margin-bottom: 2rem;
    /* border: #ff0000 1px solid; */
    display: flex;
    flex-direction: row;
    align-items: center;
}

.acclogo {
    top: 8rem;
    width: 8rem;
    aspect-ratio: 1;
    object-fit: contain;
    /* border: #0000ff 1px solid; */
}

.accdetailcontainer {
    flex: 1;
    height: 100%;
    /* border: #00ffff 1px solid; */
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 2rem;
}

.acctitle {
    font-family: Cairo-Bold, Thai-Bold, Chinese-Bold, sans-serif;
    font-size: 2rem;
    line-height: 1;
    margin: 0;
    color: var(--tntblack);
    /* border: #0000ff 1px solid; */

}

.accdetails {
    font-family: Cairo-Regular, Thai-Regular, Chinese-Regular;
    font-size: 1rem;
    line-height: 1;
    color: var(--tntblack);
    /* border: #0000ff 1px solid; */

}

.acclearnmore {
    font-family: Cairo-Regular, Thai-Regular, Chinese-Regular;
    text-decoration: underline;
    color: var(--tntgray);
    font-size: 1rem;
    transition: all ease-in-out 0.3s;

}

.acclearnmore:hover{
    transform: translateY(-3px);
    transition: all ease-in-out 0.3s;
}


@media screen and (max-width: 767px) {
    .mobileproductstopblock {
        background-image: url('../assets/images/accreditationmobiletopblock.png');
        display: block;
    }

    .accblock {
        flex-direction: column;
        align-items: flex-start;
    }

    .acclogo {
        padding-bottom: 1rem;
        height: auto;
        width: 7rem;
    }

    .accdetailcontainer {
        padding: 0;
    }
}
