* {
	padding:0;
	margin:0;
	box-sizing: border-box;
	font-family: 'Poppins', sans-serif;
}
html {
  scroll-behavior: smooth;
}

.heading {
	width: 100%;
	min-height: 100px;
	text-align: center;
	padding: 30px 5px;
	background-color: #39ac39;
	color: #fff;
}
.heading h1 {
	font-size: 39px;
}
.heading h3 {
	font-size: 29px;
}
.startPage {
	width: 100%;
	min-height: 530px;
	background-image: url(../images/bg1.jpg);
	background-size: cover;
	background-repeat: no-repeat;
}
.back {
	width: 100%;
	min-height: 530px;
	padding: 50px 0;
	background-color: rgba(0,0,0,0.8);
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	align-content: center;
}

/*-------------CONTACT FORM---------------*/
.leftBox {
	width: 40%;
	min-height: 530px;
	float: left;	
}
#contact {
	width: 100%;
	min-height: 400px;
	padding: 20px 10px;
}
.form {
	width: 90%;
	min-height: 450px;
	border-radius: 12px;
	background: rgba(255,255,255,0.2);
	text-align: center;
	padding: 5px;
	margin-left: 4%;
}
.form h1 {
	text-align: center;
	font-size: 24px;
	font-weight: bold; 
	color: #fff;
}
.contact-form {
	padding: 20px 0 0 0;
}
.contact-form input {
	min-width: 90%;
	min-height: 40px;
	padding: 5px;
	border-radius: 8px;
	border: 0px solid black;
}
.contact-form select {
	min-width: 90%;
	min-height: 40px;
	padding: 5px;
	border-radius: 8px;
	border: 0px solid black;
}
.contact-form textarea {
	min-width: 90%;
	min-height: 100px;
	padding: 5px;
	border-radius: 8px;
	border: 0px solid black;
}
.contact-form button {
	min-width: 20%;
	padding: 5px;
	border-radius: 8px;
	border: 0px solid black;
}
.contact-form button:hover {
	background: #ddd;
	font-weight: bold;
}

/*-------------RIGHT BOX---------------*/
.rightBox {
	width: 50%;
	min-height: 530px;
	float: right;
	padding: 20px;
	margin-right: 2%;
}
.rightBox h1{
	color: #fff;
	text-align: right;
}
.rightBox ul li {
	list-style: none;
	color: #fff;
	font-size: 18px;
	line-height: 38px;
	text-align: right;
}
.rightBox ul li i {
	color: #39ac39;
	font-size: 26px;
}

.footNote {
	width: 100%;
	min-height: 100px;
	text-align: center;
	background-color: #39ac39;
	padding: 35px 10px;
}
.footNote h1 a {
	text-decoration: none;
	color: #000;
}

@media screen and (max-width: 800px) {
	.leftBox {
		width: 40%;
	}
	.form {
		width: 100%;
		margin-left: 5%;
	}
	.rightBox {
		width: 58%;
	}
}
@media screen and (max-width: 600px) {
	.leftBox {
		width: 100%;
	}
	.form {
		margin-left: 0%;
	}
	.rightBox {
		width: 100%;
	}
}
