*{

	margin: 0;
	padding: 0;
	
}

body{
	width: 100%;
	clear: both;
	font-family: Roboto, "sans-serif";
	font-weight: 300; 

}

.background{
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	background-repeat: no-repeat;
	background-attachment: fixed;
	background-position: center top;
	background-size: cover;
	z-index: -5;
	text-align: justify;

}

.home-background{
	height: 100vh;
	background-image: url("../images/bg.jpg");

}

.about-image{
	
	width: 100%;
	display: block;
	margin: 0 auto;
}


.tint{
	position: fixed;
	top:0;
	left:0;
	width: 100%;
	height: 100vh;
	background-color: rgba(2,28,19,0.62);
	z-index: -4;
}

.welcome{
	
	position: absolute;
	top: 30vh;
	right:110%;
	
	color: #d3591f;
	font-size: 300%;
	font-weight: 200;
	text-align: right;
	font-style: italic;

}

.arrow{
	position: absolute;
	bottom: 110vh;
	left:50%;
	width:70px;
	margin-left: -50px;
	opacity: 1;
}

.arrow img{
	display: block;
	width: 100%;
}

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;
	transition: 1s ease;

}

.logo-container{
	
	width: 370px;
	margin-left: 2%;
}

.logo{
	width: 100%;
	margin: 0 auto;
	display: block;
}


.menu{

	display: none;
}


nav{
	
	margin-right: 2%;
}


.drop-btn img{
	width: 20px;
	
}

.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 a:hover {

	border-bottom: 1px solid #d3591f;
}


.btn{
	border-bottom: 1px solid #d3591f;
}


.home-content-container{
	margin-top: 100vh;
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	grid-template-rows: auto auto;
	grid-template-areas: 
		". heading heading"
		"introduction introduction side-image-container";
	
	z-index: -4;
}

.heading{
	grid-area: heading;
	text-align: right;
	height: 65px;
}

.heading h1{
	
	background-image: linear-gradient(to right, transparent, transparent, #d3591f);
	font-weight: 100;
	padding: 2%;
	color: white;
}

.introduction{
	grid-area: introduction;
	background-color: rgba(255,255,255,0.83);
	color: #00533a;
	padding-left: 2%;
}

.read-more{

	text-decoration: none;
	color: #d3591f;
}

.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;
	
}



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: 85%;
	

}
footer li{

	list-style: none;
	margin-top:10px;
	
}

.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%;
	
}

.arrow{
	width: 50px;
	margin-left: -25px;
}

.home-content-container{
	
	grid-template-areas: 
		"heading heading heading"
		"introduction introduction introduction";
	
}

.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;
}

}