.news {
    background-color: #008d4c;
}
.news p {
    margin: 0px;
    padding: 0px;
}

.socialLeft {
    position: fixed;
    top: 70%;
    left: 0%;
    z-index: 999;
    background-color: #008d4c;
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
    padding: 5px;
}
.socialLeft ul {
    margin: 0px;
    padding: 0px;
}
.socialLeft ul li {
    list-style-type: none;
    padding: 5px 5px !important;
    margin: 5px 0px !important;
    transition: 0.3s;
}
.socialLeft ul li {
    color: #fff;
}
.socialLeft .fab{ font-size: 32px; animation: rotation infinite 3s linear;}
.socialRight {
    position: fixed;
    top: 70%;
    right: 0%;
    z-index: 999;
    background-color: #008d4c;
    border-top-left-radius: 8px;
    border-bottom-left-radius: 8px;
    padding: 5px;
}
.socialRight ul {
    margin: 0px;
    padding: 0px;
}
.socialRight ul li {
    list-style-type: none;
    padding: 5px 5px !important;
    margin: 5px 0px !important;
    transition: 0.3s;
}
.socialRight ul li {
    color: #fff;
}
.socialRight .fa{ font-size: 32px; animation: rotation infinite 3s linear;}

 @keyframes rotation{
   from{
     transform:rotate(0deg);
   }
   
   to{
     transform:rotate(360deg);
   }
 }

.table {
    border: 1px #f1f1f1 solid;
    text-transform: capitalize;
    margin: 25px 0px;
}
.table tr td {
    border: 1px #f1f1f1 solid;
}
.table tr th {
    border: 1px #1f073b solid;
    background-color: #2d0d52;
    color: #fff;
    padding: 8px;
}
.table tr th a {
    color: #fff;
}

.table tr {
    border: 1px solid #d9e4e6;
}
.table tr:nth-child(odd) {
    background-color: #eaf3f3;
}

.news strong {
    color: #000;
    font-weight: bold;
    font-size: 16px;
    animation: blinkingText 2s infinite;
}
@keyframes strong {
    0% {
        color: #10c018;
    }
    25% {
        color: #ffff;
    }
    50% {
        color: #ef0a1a;
    }
    75% {
        color: #fff000;
    }
    100% {
        color: #04a1d5;
    }
}

.blink-text {
    color: #000;
    font-weight: bold;
    font-size: 16px;
    animation: blinkingText 2s infinite;
}
@keyframes blinkingText {
    0% {
        color: #10c018;
    }
    25% {
        color: #ffff;
    }
    50% {
        color: #ef0a1a;
    }
    75% {
        color: #fff000;
    }
    100% {
        color: #04a1d5;
    }
}

.register {
    position: fixed;
    left: 0px;
    bottom: 0px;
    z-index: 999;
    width: 135px;
    background: #fe0000;
    padding: 5px;
    border-top-right-radius: 25px;
    color: #fff;
    font-weight: bold;
    text-align: center;
    animation: blinkingBg 2s infinite;
}

.apply {
    position: fixed;
    right: 0px;
    bottom: 0px;
    z-index: 999;
    width: 135px;
    background: #014087;
    padding: 5px;
    border-top-left-radius: 25px;
    color: #fff;
    font-weight: bold;
    text-align: center;
    animation: blinkingBg 2s infinite;
}

@keyframes blinkingBg {
    0% {
        background-color: #10c018;
    }
    25% {
        background-color: #000;
    }
    50% {
        background-color: #ef0a1a;
    }
    75% {
        background-color: #c16c08;
    }
    100% {
        background-color: #04a1d5;
    }
}
