#header{
	display:flex;
	align-items:center;
	justify-content: space-between;
	padding: 20px 60px;
	background: white;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.06);
	position: sticky;

}
#navbar{
	display: flex;
	align-items: center;
	justify-content: space-between;
}
#navbar li{
	list-style: none;
	padding: 0 12px;
	position: relative;
}
#navbar li a{
	text-decoration: none;
	font-size: 18px;
	font-weight: 600;
	color: black;
}
#navbar li a:hover,
#navbar li a:active{
	color:red;
}
#navbar li a.active::after,
#navbar li a:hover::after
{
	content:"";
	width:50%;
	height: 2px;
	background:red;
	position: absolute;
	bottom: -4px;
	left: 15px;

}
#product1{
	text-align: center;
	font-size: 25px;
	margin: 70px 0 20px 40px;
	display: flex;
	justify-content: space-between;
	flex-direction: column;
}

#product1 .pro-container{
	display: flex;
	justify-content: space-between;
	
}
#product1 p{
	width: 100%;
	color: black;	
	align-items: center;
	margin: 0;
}
.pro{
	width: 80%;
	min-width: 100px;
	padding: 7px 10px;
	border: 1px;
	cursor: pointer;
	box-shadow: 20px 20px 20px rgba(0,0,0,0.05);
	position: relative;
}
/*.des span{
	text-align: left;
}*/
.pro:hover{
	box-shadow: 10px 10px 10px rgba(0,0,0,0.5);
}
#product1 .pro img{
	width: 70%;
	border-radius: 20px;

}
.scroll-tray{
	
	display: inline-flex;
	justify-content: space-between;
}
.srcoll-tray div{
	display: inline-flex;
	justify-content: space-between;
}
.scroll-tray img{
	border-radius: 0.3rem;
	margin: 7px 9px;
	padding: 0;
	width: 200px;
	padding-top: 20px;
	padding-bottom: 40px;
}
.scroll-holder{
	overflow: hidden;

}
.scroll-holder .scroll-tray:first-child{
	animation: scroll-tray-hero 180s linear infinite;
}
@keyframes scroll-tray-hero{
	0%{
		transform: translateX(0);
	}
	99.99%{
		transform: translateX(-5000px);
	}
	100%{
		transform: translateX(-80px);
	}

}
footer{
	width: 100%;
	position: relative;
	bottom: 0;
	background: black;
	color: white;
	padding: 20px 0 20px;
	border-top-left-radius: 125px;
	font-size: 15px;
	line-height: 20px;
}

.row{
	width: 85%;
	margin: auto;
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
	justify-content: space-between;
}
.logo{
	height: 140px;
	width: 140px;
}
.col{
	flex-basis: 25%;
	padding-right: 40px;

}
.col-1{
	flex-basis: 25%;
	padding-right: 40px;

}
.col h3{
	margin-bottom: 40px;
	position: relative;

}
.email-id{
	
	margin: 10px 0;
}
ul li{

	list-style: none;
	margin-bottom: 12px;
	
}
ul li a{
	text-decoration: none;
	color: white;
	padding-right: 40px;

}
.social-icon .fab{
	width: 30px;
	height: 30px;
	border-radius: 50%;
	font-size: 20px;
	color: white;	
	margin-right: 15px;
	cursor: pointer;

}
.rights{
	align-items: center;
	margin-left: 40px;
}

@media(max-width: 600px){
	#navbar{
		display: flex;
		flex-direction: column;
		align-items: flex-start;
		justify-content: flex-start;
		position: fixed;
		top: 0;
		right: 0px;
		height: 100vh;
		width: 300px;
		overflow: hidden;

	}
}