@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

:root {
    --normal_fonts: "Poppins", sans-serif;
    --heading_fonts: 'Times New Roman', Times, serif;
    --bg: #eef6fb;
    --btn_bg: #e53935;
    --btn_hover: #c50300;
    --heading_color: #d32f2f;
    --subheading_color: #1b3652;
}

.heading {
    text-align: center;
    font-size: 3rem;
    font-family: var(--heading_fonts);
    color: var(--heading_color);
}

.sub_heading {
    text-align: center;
    font-size: 2.4rem;
    font-family: var(--heading_fonts);
    color: var(--subheading_color);
}

html {
    scroll-behavior: smooth;
}

body {
    overflow-x: hidden;
    width: 100%;
    height: auto;
}

.small_link .active{
    color:red;
}


@media screen and (max-width:968px) {
    .heading{
        font-size: 2.5rem;
    }

    .sub_heading{
        font-size:2rem;
    }
    
}

@media screen and (max-width:768px) {
    .heading {
        font-size: 2.3rem;
    }

    .sub_heading {
        font-size: 1.8rem;
    }

}

@media screen and (max-width:448px) {

    .heading {
        font-size: 1.5rem;
    }

    .sub_heading {
        font-size: 1.1rem;
    }

}

/* @media screen and(max-width:390px) {

    .heading{
        font-size: 1.7rem;
    }
    
} */