:root {

    /* background color */
    --bg-primary-color: #EE3B5B;
    --bg-secondary-color: #e8e4f2;
    --bg-tertiory: #F3A51E;



    /* font color */
    --text-primary-color: black;
    --text-secondary-color: #EE3B5B;
    --text-tertiory-color: #e8e4f2;


    /* font fammily */
    --font-familly-primary: "Arya", sans-serif;
    --font-familly-secondary: "Poppins", sans-serif;


}


.hero-section-bg {
    background-color: var(--bg-primary-color);

}

.heading {
    text-align: center;
    margin-top: 30px;
    font-size: 35px;
}

.para {
    font-size: 18px;
    margin-bottom: 20px;
    text-align: justify;
    margin: 0px !important;
    font-family:var(--font-familly-secondary);

}

.content-heading {
    font-size: 22px;
    margin-top: 20px;
    
    font-family: var(--font-familly-secondary);
}

.contact-info {
    font-size: 18px;
    font-weight: 600;
    
}


@media (max-width:997px) {
    .heading {
        font-size: 30px;
    }

    .para {
        font-size: 16px;

    }

    .content-heading {
        font-size: 18px;

    }

    .contact-info {
        font-size: 17px !important;
    }


}

