@import url('https://fonts.googleapis.com/css2?family=Parkinsans:wght@300..800&display=swap');
body{
    font-family: Parkinsans;
}
/* bonus start  */
#bonusstage{
    height: 80px;
    background-image: linear-gradient(-45deg,red,green,blue,orange,brown,red);
    animation: gradient 5s ease infinite;
}
@keyframes gradient {
	0% {
		background-image: linear-gradient(to right,blue,green,pink);
	}
	50% {
		background-image: linear-gradient(to right,orange,black,green,blue);
	}
	100% {
		background-image: linear-gradient(to right,blue,brown,red);
	}
}

@media only screen and (max-width:575px){
    #bonusstage a{  
        font-size: 10px;
    }
}
@media only screen and (max-width:348px){
    #bonusstage a{  
        font-size: 9px;
    }
}

/* bonus end  */

/* navbar start ------------------------------------------------*/
#navbar{
    padding: 10px 50px;
    box-shadow: 0px 0px 5px 0px rgba(0, 0, 155, 0.5);
    margin-top: -50px;
    position: sticky;
    top: 0;
    z-index: 1000;
}
#navbar #logoimg{
    width: 220px;
    height: 90px;
}
#navbar #dropdwn li a{
    font-family: sans-serif;
    padding: 20px;
}
#navbar #dropdwn li a:hover{
    color: #4287f5;
}
#navbar #dropdwn #subdrpdwnhome{
    width:300px;
    padding: 10px;
    margin-top: 25px;
    font-family: sans-serif;
}
#navbar #dropdwn #subdrpdwnhome li a:hover{
    background-color: #b1c9f0;
    border-radius: 10px;
    transition: all 0.3s ease-in;
}
@media only screen and (max-width:450px){
    #navbar{
    padding: 0;
    }
}
/* navbar end --------------------------------------------------*/

/* section one starts */

    #itsection1{
        background-color: #0f2169;
    }
/* section one end */

/* it section two starts */

    #itsection2{
        background-color: #cadcf8;
    }
    #itsection2 #servprocess1 #ques1 a{
        text-decoration: none;
        color: black;
        font-size: 28px;
    }
    #itsection2 #servprocess1 #ques1:hover{
        color: #4287f5;
        transition: all 0.2s linear;
    }
    #itsection2 #servprocess1 #ques1 a:hover{
        color: #4287f5;
        transition: all 0.2s linear;
    }
/* it section two end */

/* footer starts ----------------------------------------------------------------*/

    #footer{
        background-color: #0f2169;
    }
    #footer #icons i{
        padding-right: 25px;
        color: #ffffff;
    }
    #footer #serv ul{
        list-style-type: none;
    }
    #footer #serv ul li{
        padding-bottom: 16px;
    }
     #footer #serv ul li a{
        text-decoration: none;
        color: #ffffff;
        font-size: 22px;
     }
     #footer #serv ul li a:hover{
        text-decoration: underline;
     }

/* footer end    ----------------------------------------------------------------*/