*{
	margin: 0;
	padding: 0;
	list-style-type: none;
	text-decoration: none;
	box-sizing: border-box;
}

body{
	background-color: #e1e0df;
}

   						  /* header and navigatio menu */
#header{
	background-image: url('images/banner.jpg');
	background-position: center;
	background-size: cover;
	position: relative;
	min-height: 45dvh;
  	width: 100%;
}

#logo img{
	float: left;
	max-width: 250px;
	position: relative;
	display: block;
}

.nav{
	display:flex;
	float: right;
	position: relative;
	justify-content: space-between;
	line-height: 40px;
	align-items: center;
}

.menu{
	display:flex;
}

.nav li a{
	cursor: pointer;
	height: 100%;
	padding: 10px 20px;
	transition: 0.4s;
}

.nav li a{
	color: #fff;
	font-size: 16px;
	font-weight: bold;

}

.nav li a:hover{
	color: #fff;
	background: #f44336;
	font-size: 18px;
	padding: 3px 3px ;
}

.hamburger{
	position: relative;
	width: 30px;
	height: 4px;
	background: #fff;
	border-radius: 10px;
	z-index: 2;
	transition: 0.3s;
}

#hd-text-box{
	width: 90%;
	color: white;
	position: absolute;
	top: 53%;
	bottom: 35%;
	transform: translate(10%, 50%);
	text-align: center;
}
#hd-text-box h1{
	font-size: 35px;
	padding-bottom: 13px;
}
#hd-text-box p{
	margin: 3px 0 10px;
	font-size: 18px;
	color: #fff;
}
#store{
	display: inline-block;
	text-decoration: none;
	color: #fff;
	border: 1px solid #fff;
	border-radius: 10px;
	padding: 7px 34px;
	font-size: 18px;
	background: transparent;
	position: relative;
	cursor: pointer;
}
#store:hover{
	border: 1px solid #f44336;
	background: #f44336;
	transition: 1s;
}
#store:active{
	border: 1px solid #f44336;
	background: #f44336;
	transition: 1s;
}

							/* row - services */

.row{
	margin-top: 2%;
	display: flex;
	justify-content: space-between;
}

#services{
	width: 80%;
	margin: auto;
	text-align: center;
	padding-top: 30px;
}

h1{
	font-size: 28px;
	font-weight: 250;
}

p{
	color: #555;
	font-size: 18px;
	font-weight: 300;
	line-height: 22px;
	padding: 5px;
}

.services-col{
	flex-basis: 31%;
	background: #e7ebf9;
	border-radius: 10px;
	margin-bottom: 5px;
	padding: 10px 12px;
	box-sizing: border-box;
	transition: 0.5s;
}

.services-col1{
	flex-basis: 31%;


}

.services-col1 img{
	width: 100%;
	border-radius: 10px;
	overflow: hidden;
}

h3{
	text-align: center;
	font-weight: 600;
	margin: 10px 0;
}

.services-col:hover{
	box-shadow: 0 0 20px 0px rgba(0,0,0,0.40);
}

							/* row - bow string care */

#str-care{
	width: 80%;
	margin: auto;
	text-align: center;
	padding-top: 30px;	
}


.care-col{
	flex-basis: 31%;
	background: #e7f9ef;
	border-radius: 10px;
	margin-bottom: 5px;
	padding: 10px 12px;
	box-sizing: border-box;
	transition: 0.5s;
}

.care-col:hover{
	box-shadow: 0 0 20px 0px rgba(0,0,0,0.40);
}

									/* footer */



						/*for small screens ie, smart phones */
		
	@media(max-width:900px){
		nav .nav-list{
			display: block;
			position: absolute;
			background: #a0340b;
			width: 100%;
			top: -75px;
			/* transform: translateY(0%); */
			z-index: 2;
			transition: 0.6s;
		}
		nav .nav-list .nav-item{
			padding-left: 35px;
		}
		.row{
			flex-direction: column;
		}
		#hd-text-box h1{
			font-size: 25px;}
		#hd-text-box a{
			font-size: 20px;}
		#hd-text-box p{
			font-size: 20px;
		}
	}		
 					  /* end Header -- start Main */ 

