*{
    margin: 0;
    padding: 0%;
    font-family: sans-serif;

}
.banner{
    width: 100%;
    height: 100vh;
    background-size: cover;
    background-position: center;
}
.navbar{
    width: 85%;
    margin-left: 30%;
    padding: 35px 0;
    display: flex;
    justify-content: space-between;
    margin-left: 60%;
    margin-Top: 5%;
}
.logo{
    width: 200px;
    cursor:pointer;
    position: fixed;
    margin-top: 3%;
    margin-left: 5%;
}
.navbar ul li{
    list-style: none;
    display: inline-block;
    margin: 0 20px;
position: relative;
}
.navbar ul li a{
    text-decoration: none;
    color: #000000;
    text-transform: uppercase;

}
.navbar ul li::after{
content:' ';
height: 3px;
width: 0%;
background: #04322e;
position: absolute;
left: 0;
bottom: -10px ;
transition: 0.5s;
}

.navbar ul li:hover::after{
 width: 100%;

}
#p1{
color: rgba(0,0,0,0);
    
}
body{
    background: rgb(211,214,214);
    display: flex;
    height: 100vh;
    justify-content: baseline;
    align-items: baseline;


}

.container{
    display: flex;
    height: 22vh;
    width: 100vh;
    justify-content: baseline;
    align-items: baseline;
}

.imgbox {
    background: rgb(249, 252, 252);
    height: 27vh;
    border-radius: 4px;
    width: 20vh;
    margin: 0px 40px;
    box-shadow: 6px 6px 14px black;
    transition: all .5s;
}
.imgbox:hover{
    transform: translateY(-50px);
}

.imgbox img{
    height: 20vh;
    width: 20vh;
}
.imgbox h2{
    font-weight: 600;
    font-family: 'Roboto',sans-serif;
    text-align: center;
}

h2{
    color: black;
}














