.Adv{
    display: block;
    padding: 30px;
    width: 90%;
    height: 150px;
    background-image:linear-gradient(to right bottom,
        rgba(255, 255, 255, 0.8),
        rgba(230, 225, 225, 0.8));
}
.text-box{  
    text-align:center;
}
.heading-primary{
color:rgb(8, 0, 0);
text-transform: uppercase;
margin-bottom: 60px;

}

.heading-primary-main{
    display: block;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 2px;
    animation: moveInLeft 3s ease-out;
   
}
.heading-primary-main1{
    display: block;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 2px;
    animation: moveInRight 3s ease-out;
}

.heading-primary-sub{
    display: block;
    font-size: 18px;
    font-weight: 600;
    color:rgb(44, 189, 87);
    letter-spacing: 2px;
    animation: moveInLeft 2s ease-in-out .40s;
    animation-fill-mode: backwards;
}
.Text-animated{
    display: block;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 1px;
    animation: moveInBottom 5s ease-out .75s;
    animation-fill-mode: backwards;
}


@keyframes moveInLeft{
    0%{
        opacity: 0;
        transform: translateX(-100px);
    }
    80%{
        transform: translateX(20);
    }
    100%{
        opacity: 1;
        transform: translate(0);
    }
}

@keyframes moveInRight{
    0%{
        opacity: 0;
        transform: translateX(100px);
    }
    80%{
        transform: translateX(-20);
    }
    100%{
        opacity: 1;
        transform: translate(0);
    }
}


@keyframes moveInBottom{
    0%{
        opacity: 0;
        transform: translateY(30px);
    }
    
    100%{
        opacity: 1;
        transform: translateY(0);
    }
}