*{

	margin: 0;
	padding: 0;
	
}

body{
	
	background-repeat: none;
	background-attachment: fixed;
	background-position: center top;
	
	width: 100%;
	clear: both;
	font-family: Roboto, "sans-serif";
	font-weight: 300; 
	text-align: justify;


}

.about-body{
	background-image: url('../images/about.jpg');
}

.services-body{
	background-image: url('../images/services.jpg');
}

.contact-body{
	background-image: url('../images/contact.jpg');
}

.tint{
	position: fixed;
	top:0;
	left:0;
	width: 100%;
	height: 100vh;
	background-color: rgba(2,28,19,0.62);
	z-index: -4;
}

header{
	position: fixed;
	top: -200px;
	left: 0;
	width: 100%;
	display: grid;
	grid-template-columns: 50% 50%;
	background-image: linear-gradient(to bottom, rgba(255, 255,255,0.95), rgba(255, 255,255,1));
	background-size: cover;
	box-shadow: 0px 5px 10px rgba(0,0,0,0.75);
	z-index:5;

}

.logo-container{
	width: 370px;
	margin-left: 2%;
}

.logo{
	width: 100%;
	margin: 0 auto;
	display: block;
}


.menu{

	display: none;
}

.drop-btn img{
	width: 20px;
	
}

.btn{
	border-bottom: 1px solid #d3591f;
}


nav{
	margin-right: 2%;
}

.nav ul{
	display:grid;
	grid-template-columns: auto auto auto auto;
	justify-content: right;
	padding-top: 40px;
	padding-left: 2%;
	color: #037241;
	font-family: Raleway, "sans-serif";
	font-weight: 300;
	font-size: 90%;
}

.nav li{
	list-style: none;
	margin-right: 20px;
	padding-bottom: 2px;
	
}


.nav a{

	text-decoration: none;
	color: #037241;
	transition: 0.3s ease;
}

.nav li a:link {

	border-bottom: none;
}

.nav li a:visited{

	border-bottom: 1px solid #d3591f;
}

.nav li a:hover{

	border-bottom: 1px solid #d3591f;
}

.active{

	border-bottom: 1px solid #d3591f;
}





.content-container{

	
	margin-top: 50vh;
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	grid-template-rows: auto;
	grid-template-areas: 
		". heading heading"
		"content content content";
	
	z-index: -4;
	
}

.content{
	background-color: rgba(255,255,255,0.9);
	grid-area: content;
	display: grid;
	grid-template-columns: repeat(2, auto 1fr) 1fr;
	grid-column-gap: 20px;
	grid-template-areas: "info info info info o"
						"heading2 g g g g"
						"i i i i i"
						"heading3 g2 g2 g2 g2"
						"i2 i2 i2 i2 i2"
						"heading4 g3 g3 g3 g3"
						"i3 i3 i3 i3 i3"
						"heading5 g4 g4 g4 g4"
						"i4 i4 i4 i4 i4"
						 ;
	padding: 30px 50px;
	color: white;

}

.info{
	grid-area: info;
	min-height: 250px;
	margin-bottom: 50px;
	color: #00533a;
	
}

.orange-block{
	grid-area: o;
	margin-bottom: 50px;
	background-image: linear-gradient(to right, #d3591f, #bd5b1f);
	box-shadow: 3px 3px 10px rgba(0,0,0,0.5);
}

.green-block, .green-block2, .green-block3, .green-block4{
	
	height: 60px;
	margin-bottom: -5px;
	background-image: linear-gradient(to right, #00533a, #037241, #00533a);
	box-shadow: 3px 3px 10px rgba(0,0,0,0.5);
	z-index: 4;
}

.green-block{
	grid-area: g;
}

.green-block2{
	grid-area: g2;
}

.green-block3{
	grid-area: g3;

}

.green-block4{
	grid-area: g4;

}

.heading{
	grid-area: heading;
	text-align: right;
	height: 65px;
	
}

.sub-heading{
	
	color: #d3591f;
	text-align: center;
	font-weight: 300;
}

.items, .items2, .items3, .items4{

	grid-area: vision;
	border-top: 1px solid #bd5b1f;
	box-shadow: 3px 3px 10px rgba(0,0,0,0.5);
	padding:20px;
	margin-bottom: 50px;
	color: #00533a;
	
}

.items{
	grid-area: i;
}

.items2{
	grid-area: i2;
}

.items3{
	grid-area: i3;
}

.items4{
	grid-area: i4;
}

.heading h1{
	
	background-image: linear-gradient(to right, transparent, transparent, #d3591f);
	font-weight: 100;
	padding: 2%;
	color: white;
}


.side-image-container{

	grid-area: side-image-container;
	box-shadow: inset 5px 5px 10px rgba(0,0,0,0.75);

}

.side{
	width: 100%;
	display: block;
	margin: 0 auto;
	
}

.contact-info{
	grid-area: i;
	text-align: center;
	color: #00533a;

}


footer{

	
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	grid-template-areas: 
		"footer-nav footer-address footer-services"
		"credit credit credit";
	background-image: linear-gradient(to right, #00533a, #037241, #00533a);
	color: white;
	padding: 2%;
	font-size: 80%;
	

}
footer li{

	list-style: none;
	margin-top:10px;
	font-weight: 300;
}

.introduction p{
	padding: 2%;
}
h4, h3, span{
	color: #d3591f;
	font-weight: 300;
}

.footer-nav{
	grid-area: footer-nav;
	text-align: left;
}
.footer-address{
	grid-area: footer-address;
	text-align: center;
}
.footer-services{
	grid-area: footer-services;
	text-align: right;
}

.credit{
	grid-area: credit;
	text-align: center;
	color: lightgray;
	opacity: 7;
	margin-top:20px;
	border-top: 1px solid #d3591f;
}

.credit a{
	text-decoration: none;
	color: #d3591f;
	font-weight: 400;
	font-size: 120%;
}

@media(max-width:768px){


header{

	grid-template-columns: auto 30px;
}


.logo-container{
	width: 250px;
	margin-left: 2%;
}

.drop-btn{
	position: relative;
	right:20px;
	display: block;
	padding-top: 30px;
}

.menu{

	display: block;
}

.nav{

	position: absolute;

	display: none;
}

.drop-btn:hover .nav{

	display: block;
	right: 10px;
	background-color: white;
	transition: 0.3s ease;

}


.nav ul{
	display:grid;
	grid-template-columns: auto;
	grid-gap: 10px;
	padding: 20px;
	justify-content: center;
	
}



.welcome{
	font-size: 200%;
	width: 96%;
	right: 2%;
}

.arrow{
	width: 50px;
	margin-left: -25px;
}

.content-container{
	
	grid-template-areas: 
		"heading heading"
		"introduction introduction introduction";
	
}


.content{
	background-color: rgba(255,255,255,0.9);
	grid-area: content;
	display: grid;
	grid-template-columns: repeat(2, auto 1fr) 1fr;
	grid-gap: 20px;
	grid-template-areas: "info info info info info"
						"heading2 g g g g"
						"i i i i i"
						"heading3 g2 g2 g2 g2"
						"i2 i2 i2 i2 i2"
						"heading4 g3 g3 g3 g3"
						"i3 i3 i3 i3 i3"
						"heading5 g4 g4 g4 g4"
						"i4 i4 i4 i4 i4"
						 ;
	padding: 30px 20px;
	color: white;

}

.info{

	margin-bottom: 20px;
}

.orange-block{

	display: none;
}

.side-image-container{

	display: none;
}



footer{
	grid-template-columns: 1fr;
	grid-row-gap: 30px;
	grid-template-areas: 
		"footer-nav"
		"footer-address"
		"footer-services"
		"credit";
		

}

.footer-nav, .footer-services{

	text-align: center;
}

}