*{
	padding: 0;
	margin: 0;
	outline: 0;

}
a{
	text-decoration: none;
}
ul,ol{
	list-style: none;
}
body{

}
.container{
	width: 80%;
	margin: 0 auto;
}
.navclear{
	clear: both;
}
/* HEADER PART CSS START */
.header{
	background-color: rgb(236, 246, 252);
	height: 70px;
	width: 100%;
	/*background: #ECF6FC;*/
	text-align: center;
}
#icon{
	height: 100%;
	width: 8%;
	float: left;
}
.heading_option{
	height: 100%;
	width: 90%;
	float: left;
	line-height: 100%;
	display: flex;
	justify-content: right;
	align-items: center;
}
.heading_option h3{
	font-style: normal;
	font-size: 16px;
	color: orangered;
	font-family: monospace;
	font-weight: lighter;

}
.heading_option h3 span{
	font-style: normal;
	font-size: 28px;
	color: seagreen;
	font-family: sans-serif;
	font-weight: bold;

}
.heading_option input{
	height: 35px;
	width: 250px;
	padding-left: 10px;
	outline: none;
	border: none;
	background: transparent;
	border: 2px solid white;
	border-radius: 30px;
	margin-left: 200px;
	transition: all linear .2s;
	background-color: rgba(0, 0, 0, 0.2);

}
.heading_option input::placeholder{
	color: floralwhite;
	font-style: oblique;
	font-family: cursive;
}
.search_btn{
	height: 16px;
	width: 25px;
	outline: none;
	border: none;

}

.heading_option a{
	color: saddlebrown;
	background-color: rgb(46, 145, 145);
	padding: 10px 10px;
	font-size: 18px;
	color: white;
	border-radius: 10px;
	font-family: monospace;
	float: right;

}
.log_sign{
	margin-left: 5px;
	margin-right: 0px;
}

/* HEADER PART CSS END */

/* NAVIGATION PART CSS START */
nav{
	background-color: rgb(145, 164, 195);
	padding: 5px 5px;
}
.menu{
	width: 100%;
	float: right;

}
.menu ul{
	float: right;
}
.menu ul li{
	height: 50px;
	width: 130px;
	float: left;
	position: relative;
}
.menu ul li a{
	padding: 12px 12px;
	display: block;
	color: teal;
	font-size: 17px;
	font-family: sans-serif;
	font-weight: lighter;
	text-transform: capitalize;
	color: white;
}
.menu ul li a:hover{
	background-color: rgb(145, 164, 195);
	color: saddlebrown;
}
.new_products{
	visibility: hidden;

}
.menu ul li:hover .new_products{
	visibility: visible;
	position: absolute;
	/*top: 10;*/
	left: 0;

}
.menu ul li:hover .new_products ul{
	background-color: rgb(145, 164, 195);
	display: block;
}
.new_products ul li a{
	font-size: 12px;
	height: 30;
	line-height: 30px;

}
.new_products ul li:first-child a{
	padding-top: 8px;
}
/* NAVIGATION PART CSS END */




/* GALLERY PART START*/
.about_heading h4{
	text-align: center;
	margin: 80px 0px;
	background-color: teal;
	padding: 10px 0;
	border-radius: 10px;
	font-family: monospace;
	font-weight: bold;
	text-transform: uppercase;
	font-size: 30px;
	color: white;
}
.gallery_img{
	height: 300px;
	width: 32%;
	float: left;
	position: relative;
	overflow: hidden;
}
.gallery_img img{
	height: 100%;
	width: 100%;
	position: absolute;
}
.gallery_overlay{
	position: absolute;
	right: -100%;
	bottom: 0;
	height: 100%;
	width: 100%;
	background-color: rgba(0, 0, 0, 0.4);
	display: flex;
	justify-content: center;
	align-items: center;
	transform: scale(0);
	transition: all linear .8s;

}
.gallery_overlay a{
	height: 40px;
	width: 40px;
	background-color: blue;
	color: white;
	text-align: center;
	line-height: 40px;
	display: block;
	border-radius: 50%;
}
.gallery_img:hover .gallery_overlay{
	transform: scale(1.0);
	transition: all linear .7s;
	right: 0;
}
.gallery_middle{
	margin: 0% 2%;
}
/* GALLERY PART END*/



/* FOOTER PART CSS START */
.address{
	display: inline-flex;
	width: 30%;
	padding: 10px 5px;
	text-align: left;
	font-size: 20px;
	color: floralwhite;
	font-family: monospace;
}
.address ul li a{
	color: silver;
	font-size: 14px;
}
.footer_container{
	font-size: 16px;
	text-align: center;
	color: white;
	margin-top: 5px;
	padding: 10px 0px;
}
.footer_container p span{
	font-style: normal;
	font-size: 16px;
	color: seagreen;
	font-family: sans-serif;
	font-weight: bold;

}
footer{
	height: 250px;
	background-color: black;
	text-align: center;
	color: white;
	padding: 20px 0;
	margin-top: 60px;
	font-size: 16px;

}
.footer_icon a{
	height: 50px;
	width: 50px;
	background-color: rgb(192, 192, 155);
	color: white;
	text-align: center;
	line-height: 50px;
	display: inline-block;
	border-radius: 50%;
}


/* FOOTER PART CSS END */