
/*CSS*/
body, html {
	font-family: 'Verdana', sans-serif;
    margin: 0;
    padding: 0;
	width: 100%;
	background-image: url("home-background.png");	
	background-size: 100%;
	background-attachment: fixed;
}

.maincontainer {
	width: 70%;
	background-color: none;
	text-align: center;
	margin: auto;
	padding: 0;
	height: 100%;
	padding-top: 30px;
	padding-bottom: 20px;
}
/*Header Content*/
.header {
	position: relative;
	width: 100%;
	background-color: none;
	color: black;
    margin: 0;
    padding: 1px;
}

/*title*/
#N-style {
	color: green;
}

#company-name {
	text-align: center;
	font-size: 50px;
	padding-bottom: 10px;
}

/* NAV BAR CSS */
/* The side navigation bar */
.homenav {
    width: 0; /* Initial width set to 0 to hide */
    height: 100%; /* Full height */
    position: fixed; /* Fix the position */
    z-index: 1; /* Stay on top */
    top: 0;
    left: 0;
    background-color: #c1fab9; /* background */
    overflow-x: hidden; /* Disable horizontal scroll */
    transition: 0.5s; /* Transition effect for sliding */
    padding-top: 60px; /* Space from the top */
}

/* Links inside the sidenav */
.homenav a {
    padding: 10px 15px;
    text-decoration: none;
    font-size: 30px;
    color: black;
    display: block;
    transition: 0.3s;
}

/* Hover effect on nav links */
.homenav a:hover {
    color: #8CA4B0;
}

/* Button to close the sidenav */
.homenav .closebtn {
    position: absolute;
    top: 0;
    right: 25px;
    font-size: 36px;
    margin-left: 50px;
    color: black;
}

/* Button to open the sidenav */
.open-btn {
    font-size: 60px;
    cursor: pointer;
    position: fixed;
    top: 30px;
    left: 20px;
    color: black;
}

/* Transition the main content to move left when the nav opens */
@media screen and (max-height: 450px) {
    .homenav {padding-top: 15px;}
    .homenav a {font-size: 18px;}
}

#logo {
	position: fixed;
	padding-left: 10px;
	padding-top: 0px;
	width: 90px;
	height: 90px;
	margin-right: 20px;
}


	
#homepage {
	font-size: 20px;
	color: black;
	text-decoration: none;
}

/*Join Us*/
.join-container {
	float: center;
	margin: auto;
	width: 80%;
	text-align: center;
	background-image: linear-gradient(to left, #40b870, #dbf2d8);
	padding: 15px;
	margin-bottom: 30px;
	box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
	border-radius: 20px;
}

/*Intro*/
.intro {
	padding-top: 10px;
	padding-bottom: 10px;
	background-image: linear-gradient(to left, #40b870, #dbf2d8);
	width: 60%;
	float: center;
	margin-left: auto;
	margin-right: auto;
	box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
	border-radius: 20px;
}
	
#intro-text {
	text-align: center;
}

/*Contact Form*/
.contact-form {
	text-align: center;
	width: 80%;
	margin: 0 auto;
	padding: 20px;
	background-image: linear-gradient(to left, #40b870, #dbf2d8);
	margin-top: 30px;
	box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
	border-radius: 20px;
}

.contact-form label {
	display: block;
	font-weight: bold;
	margin-bottom: 15px;
	color: black;
}
.contact-form input,
.contact-form textarea,
.contact-form file {
	width: 95%;
	padding: 10px;
	margin-bottom: 15px;
	border: 1px solid black;
	font-size: 16px;
}
.contact-form textarea {
	height: 100px;
}
.contact-form button {
	width: 30%;
    padding: 12px;
	margin-top: 10px;
    border-radius: 4px;
    font-size: 18px;
    cursor: pointer;
	display: block;
	float: center;
	margin: 0 auto;
	margin-top: 10px;
}
.g-recaptcha {
	display: inline-block;
}

/*Contact box*/
.manual-contact {
	text-align: center;
	width: 70%;
	margin-left: auto;
	margin-right: auto;
	margin-top: 30px;
	background-image: linear-gradient(to left, #40b870, #dbf2d8);
	height: 175px;
	margin-bottom: 20px;
	box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
	border-radius: 20px;
}

#contactemail {
	float: left;
	width: 50%;
	height: 100%;
}
#compinfo {
	float: right;
	width: 50%;
	font-size: 12px;
}

footer {
	width: 100%;
	text-align: center;
	border-top: 2px solid black;
	background-color: white;
}

@media (max-width: 1028px) {
	.intro {
		width: 100%;
	}
	.contact-form {
		width: 90%;
	}
	.manual-contact {
		width: 100%;
	}
	footer {
		height: 50px;
	}
}