.about_us {
    background: white;
}

.about_us .h1sattaname span {
    color: #3d464d;

    background-color: #ffd333;

    padding: 10px;

    border-radius: 10px;
}

.blinking {
    animation: blinkingText 1.2s infinite;
}

@keyframes blinkingText {
    0% {
        color: #ffd333;
    }

    49% {
        color: #fff;
    }

    60% {
        color: transparent;
    }

    99% {
        color: transparent;
    }

    100% {
        color: #ffd333;
    }
}

.highlight {
}

.result_table tr td {

    text-align: center;
}
