body.rtl {
    direction: rtl;
    text-align: right;
    font-family: 'Tajawal', 'Montserrat', sans-serif;
}


.mice-paragraph{
    direction:rtl;
    text-align:right;
}


.mice-card li {
    font-size: 1.25rem;
    font-weight: 500;
    line-height: 1.6;
    padding: 5px 0;
    position: relative;
    padding-right: 20px; /* Changed from padding-left to padding-right */
    padding-left: 0; /* Reset left padding */
    list-style-type: none; /* Remove default bullets */
}

    .mice-card li:before {
        content: "";
        position: absolute;
        right: 0; /* Changed from left to right */
        left: auto; /* Reset left positioning */
        top: 50%;
        transform: translateY(-50%);
        width: 8px;
        height: 8px;
        background-color: white;
        border-radius: 50%;
    }
.third-container{
    margin-right:27px;
}

@media (max-width: 480px) {
    body.rtl .third-container {

        padding: 1rem 0;
        gap: 5px;
        flex-direction: row !important;
        margin-right:-2%;
       
    }
}

