*{
    margin: 0;
    padding: 0;
    /* background-color: black; */
    font-family: poppins;
}
a{
    color: inherit;
    text-decoration: none
}
@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');

/* ------------------CODE STARTS HERE--------------------- */

/* nav Starts here ----------------------------------------------- */
nav{
    /* background-color: aqua; */
    width: 96%;
    height: auto;
    padding: 0.5% 2%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition-duration: 1s;
}
nav:hover{
    background-color: rgba(0, 0, 0, 0.028);
    transition-duration: 0.4s;
}
/* 'h1-AmoghVG.' in nav */
nav h1{
    transition-duration: 0.4s;
}
nav h1 span{
    color: rgb(0, 108, 248);
}
nav h1:hover{
    color: rgb(0, 108, 248);
    transition-duration: 0.4s;
}
nav h1:hover span{
    color: black;
}
/* list in nav */
nav ul{
    /* background-color: aqua; */
    width: 30%;
    list-style: none;
    display: flex;
    justify-content: space-around;
}
nav ul li{
    font-weight: 500;
    transition-duration: 0.4s;
}
nav ul li:hover{
    color: rgb(0, 108, 248);
    transition-duration: 0.4s;
    transform: scale(1.2);
}
nav img{
    width: 25px;
    padding: 4px;
    background-color: rgb(0, 108, 248);
    border-radius: 50% 50% 50% 5px;
    transition-duration: 0.4s;
}
nav img:hover{
    transform: scale(1.45);
    transition-duration: 0.4s;
}

/* BODY STARTS HERE -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- */

.b{
    /* background-color: aqua; */
    width: 80%;
    padding: 10% 10% 4%;
    text-align: center;
}
.b h1{
    font-size: 80px;
}
.b span{
    color: rgb(0, 108, 248);
}
.b hr{
    background-color: rgb(0, 108, 248);
    height: 5px;
    border: none;
    border-radius: 50px;

}
.b1{
    text-align: left;
    /* background-color: blue; */
    width: fit-content;
    margin: auto;
}
.b1  ul{
    margin: 0% 0% 10%;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.b1 ul li{
    display: flex;
    align-items: center;
    margin: 2% 4%;
}
.b1 ul li a{
    display: flex;
    align-items: center;
    transition-duration: 0.2s;
}
.b1 ul li a:hover{
    color: rgb(0, 108, 248);
    transform: scale(1.2);
    transition-duration: 0.2s;
}
.b1 img{
    width: 40px;
    margin: 0% 4% 0% 0%;
}
.b1 h1{
    font-size: 40px;
}

/* FOOTER STARTS HERE ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- */

footer{
    background-color: rgba(0, 0, 0, 0.248);
    padding: 0% 0% 4%;
    text-align: center;
}
.fh{
    margin: auto;
    width: 90%;
    display: flex;
    justify-content: center;
}
.fh h2{
    /* width: fit-content; */
    color: rgba(0, 108, 248);
    transition-duration: 0.2s;
    text-shadow: -2px 2px black;
    padding: 5px 0px;
}
.fh h2 span{
    color: black;
}
.fh h2:hover{
    transform: scale(1.1);
    transition-duration: 0.2s;
}
footer hr{
    height: 1px;
    background-color: black;
    border: none;
}
.f1{
    height: 150px;
    display: grid;
    place-items: center;
}
.f1 .l1{
    transition-duration: 0.2s;
}
.f1 span{
    color: rgba(0, 108, 248);
    transition-duration: 0.2s;
}
.f1 .l1:hover{
    text-shadow: -4px  4px rgba(0, 108, 248);
    transition-duration: 0.2s;
}
.f1 .l2:hover{
    text-shadow: -4px  4px black;
    transition-duration: 0.2s;
}
.f2{
    margin: auto;
    width: 60%;
    display: flex;
}
.f2 h3{
    font-weight: normal;
}
.f2a{
    width: 50%;
}
.f2a_{
    text-align: justify;
    /* background-color: aqua; */
    width: 200px;
    margin: auto;
}
.f2a_ hr{
    height: 2px;
    width: 80%;
    background-color: rgba(0, 108, 248);
    border: none;
    border-radius: 50px;
}
.f2a_ ul{
    list-style: none;
    margin: 5px 0px;
}
.f2a_ ul li a{
    display: flex;
    align-items: center;
    transition-duration: 0.2s;
}
.f2a_ ul li a:hover{
    cursor: pointer;
    color: rgba(0, 108, 248);
    font-weight: bold;
    transform: scale(1.2);
    transition-duration: 0.2s;
}
.f2a_ ul li img{
    width: 20px;
    height: 20px;
    margin: 5px 5px;
}
.f3{
    width: fit-content;
    margin: 5% auto;
}
.f3 ul{
    list-style: none;
}
.f3 ul li{
    line-height: 40px;
    transition-duration: 0.2s;
}
.f3 ul li:hover{
    cursor: pointer;
    color: rgba(0, 108, 248);
    font-weight: bold;
    transform: scale(1.2);
    transition-duration: 0.2s;
}