*{
    margin: 0;
    padding: 0;
    font-family: sans-serif;
}
body{ 
    height: 100px;
}
 /* Header */

.menu-btn{
    color: #ffffff;
    font-size: 23px;
    cursor: pointer;
    display: none;
}
.navbar{
    padding: 20px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position:sticky;
    z-index: 999;
    background-image:url() ;
    box-shadow: 0 0 14px rgba(255, 255, 255, 0.447);
}
.navbar .logo h1{
    color:#204fafb2; 
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
} 
.navbar .menu li{
    list-style: none;
    display: inline-block;
}
.navbar .menu li a{
    display: block;
    margin-left: 20px;
    color: #000000;
    border-bottom: 4px solid transparent;
    font-size:20px;
    font-weight: bold;
}
.navbar .menu  li .active{
    border-bottom: #ffffff;
   
}
.navbar .menu li a i{
    color:#ffffff;
}
.navbar .menu  li a:hover{
    border-bottom: 4px solid #fffdfd; 
} 

/*Content*/
.content h1{
    font-size: 40px;
}
.content p{
    font-size: 20px;
    margin-top: 20px;
}
.content button{
    margin-top: 30px ;
    padding:15px 30px;
    border: none;
    background: #204fafb2;
    color: #000000;
    font-size: 20px;
    border-radius: 5px;
    cursor: pointer;
}
.pheading{
    text-align: center;
    margin: 50px;
    color: #000000;
     
}
/* Products */

.sec{
    padding: 10px 5%;

}
.products{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px,0.5fr));

}
.products .card{
    width: 410px;
    background: #59c6f800;
    border-radius: 5px;
    padding: 10px;
    margin-bottom: 20px;
}


.products .card img{
    height: 300px;
    width: 100%;
}

.products .card .desc{
    color: #000000;
    padding: 5px 20px;
    opacity: 0.8;
}
.products .card .title{
    text-align: center;
    font-weight: 900;
    font-size: 20px;
    color: #000000;
    padding: 0 20px;
}
.products .card .box{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
}

.products .card .box .price{
    color: #000000;
    font-size: 20px;
    font-weight: bold;  
}

.products .card .box .btn{
    font-size: 13px;
    color: #000000;
    padding: 10px 18px;
    font-weight: 900;
    border: 1px solid #00000062;
    border-radius: 20px;
}
.products .card .box .btn:hover{
    cursor: pointer;
    background-color: #0000006a;
    color: #ffffff;
}
/*footer*/

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');
body{
	line-height: 1.5;
	font-family: 'Poppins', sans-serif;
}
*{
	margin:0;
	padding:0;
	box-sizing: border-box;
}
.container{
	max-width: 1170px;
	margin:auto;
}
.row{
	display: flex;
	flex-wrap: wrap;
}
ul{
	list-style: none;
}
.footer{
	background-color: #59c6f853;
    padding: 70px ;
}
.footer-col{
   width: 25%;
   padding: 0 15px;
}
.footer-col h4{
	font-size: 18px;
	color: #ffffff;
	text-transform: capitalize;
	margin-bottom: 35px;
	font-weight: 500;
	position: relative;
}
.footer-col h4::before{
	content: '';
	position: absolute;
	left:0;
	bottom: -10px;
	background-color: #59c6f8;
	height: 2px;
	box-sizing: border-box;
	width: 50px;
}
.footer-col ul li:not(:last-child){
	margin-bottom: 10px;
}
.footer-col ul li a{
	font-size: 16px;
	text-transform: capitalize;
	color: #ffffff;
	text-decoration: none;
	font-weight: 300;
	color: #000000;
	display: block;
	transition: all 0.3s ease;
}
.footer-col ul li a:hover{
	color: #ffffff;
	padding-left: 8px;
}
.footer-col .social-links a{
	display: inline-block;
	height: 40px;
	width: 30px;
	background-color: rgba(255, 255, 255, 0);
	margin:0 10px 10px 0;
	text-align: center;
	line-height: 40px;
	border-radius: 50%;
	color: #ffffff;
	transition: all 0.5s ease;
}
.footer-col .social-links a:hover{
	color: #24262b;
	background-color: #ffffff;
}

/* Resonsive*/

 @media(max-width:820px){
    .menu-btn{
        display: block;
        z-index: 999;
    }

    .menu-btn i.active::before{
        content:"\f00d"
    }

    .navbar .menu{
        height: 100vh;
        width: 100%;
        left: -100%;
        top: 0;
        background-color: #ffffff;
        text-align: center;
        padding-top: 80px;
        transition: all 0.3s ease;
    } 
    .navbar .menu li a{
        margin: 10px 0;
        font-size: 25px;
    }
 }    