@import url('https://fonts.googleapis.com/css?family=Allura|Josefin+Sans|Kalam');

*{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	outline: none;
	list-style: none;
	text-decoration: none;
	font-family: 'Josefin Sans', sans-serif;
}

h1.title{
	margin-bottom: 20px;
	color: #444444;
	/*font-family: 'Kalam', cursive;*/
	text-transform: uppercase;
	font-size: 28px;
	word-spacing: 25px;
	letter-spacing: 5px;
}

p{
	margin-bottom: 15px;
	font-size: 14px;
	line-height: 20px;
	color: #a9a9a9;
}

.btn a {
    width: 180px;
    height: 35px;
    line-height: 35px;
    border: 2px solid #a9a9a9;
	color: #a9a9a9;
    display: block;
    margin: 25px auto 0;
    text-align: center;
}

.main_container{
	position: relative;

}

/* Navigation Bar */
.navbar{
	width: 100%;
	height: 65px;
	position: absolute;
	display: flex;
	justify-content: space-around;
	align-items: center;
}

.logo a{
	font-family: 'Allura', cursive;
	font-size: 40px;
	color: #a9a9a9;
}

.navbar_items ul{
	display: flex;

}

.navbar_items ul li{
	margin: 0 10px;
	
}


/* banner_image */
.banner_image{
	background: url('images/p3.jpg') no-repeat top center;
	background-size: cover;
	width: 100%;
	height: 180px;
	display: flex;
	justify-content: center;
	align-items: center;
}

.banner_content{
	text-align: center;
	color: #fff;
}

.banner_content h1{
	/*font-family: 'Allura', cursive;*/
	font-size: 50px;

	/*text-transform: uppercase;*/
	line-height: 38px;
	margin-bottom: 15px;
}

.banner_content h1 span{
	color: #fff;
}


.all{
	padding-left: 15px;
}

/* About */
.about,
.services,
.contactus,
.ourteam{
	/* text-align: center; */
	padding: 2% 5%;
	padding-left: 50px;
}

.about p {
	font-size: 20px;
}

/*mainpage*/
.mainpage{
	display: flex;
	flex-wrap:0;
}
.lateralmenu{
	flex:1;
	order:1;
	padding:1.5em;
}
.lateralmenu li{
	border:0px solid black;
	margin:0.5em;
	padding:0.5em;
}

/* Products Master*/


/* Contact us */
.form_wrapper .form_input{
	margin-bottom: 25px;

}

.form_wrapper .form_input input[type="text"]{
	width: 250px;
	padding: 12px 20px; 
	border: 1px solid #ccc;
}

.form_wrapper .form_input textarea{
	width: 250px;
	padding: 12px 20px; 
	height: 80px;
	resize: none;
	border: 1px solid  #ccc;
	
}
.form_input label{
	font-size: 20px;
}

.form_input textarea{
	font-size: 20px;
}

.form_input select{
	font-size: 18px;
}

.form_input input{
	font-size: 20px;
}





@media (max-width: 720px){
	.title img{
		width: 98%;
	}
	.about,
	.services,
	.contactus,
	

	.all, .all h2, .all p, .all h3 {
		padding-left: 15px;
	}
	img{
		width: 100%;;
	}

	.mainpage{
		display: block;
		flex-wrap:0;
	}
	.lateralmenu{
		display: flex;
		padding:1.5em;
	}
	.lateralmenu li{
		flex: 1;
		border:0px solid black;
		margin:0.5em;
		padding:0.5em;
	}
	
	.navbar{
		height: auto;
		flex-direction: column;
	}

	.logo{
		margin-bottom: 25px;
	}

	.navbar_items ul{
		flex-direction: column;
		text-align: center;
	}

	.navbar_items ul li{
		margin-bottom:5px;
		font-size: 30px;

	}

	.banner_content{
		margin-top: 10px;
	}

	
	
	.giff_video img {
		width: 100%;
		margin-bottom: 25px;
	}

}

