

* {
  box-sizing: border-box;
  margin:0;
  padding: 0;
  font-family: Arial, Helvetica, sans-serif;
}

html, body { 
	height: 100%; 
	width: 100%; 
	margin: 0; 
	background-color: #000;
  	color: #969292;
}

a {
  text-decoration: none;
  color: #f7921e;
}

a:hover{
	color: #fff;
	text-decoration: none;
}

p{
	text-align: left !important;
}

h2{
	margin: 0.5rem;
}

.color1 {
	background: #373737;
}

.box1{
	background: #1f1f1f;
	padding: 2rem;
	border-radius: 1rem;
}

.box2{
	background: #303030;
	padding: .3rem;
	border-radius: 1rem;
}


/*---------- Contact form ----------*/

#contact{
	display: flex;
	margin: auto;
	padding: 1rem;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	background: #515151;
	width: 90%;
	border-radius: 10px;
}

#contact label{
	margin-top: 1rem;
	background: #373737;
	width: 90%;
	padding: 0.5rem;
	height: 2rem;
	border-top-left-radius: 10px;
	border-top-right-radius: 10px;
}

#contact input{
	width: 90%;
	height: 1.5rem;
	background: #303030;
}

#contact textarea{
	width: 90%;
	height: 5rem;
	resize: none;
	background: #303030;
}

#submit_btn input[type=submit] {
	margin: 0.1rem;
	padding: 0.4rem;
	width: 6rem;
	height: 2rem;
	background: #C47216;
	border: none;
	font-weight: bold;
	font-size: 1rem;
}

#submit_btn input[type=submit]:hover {
  background-color: #f7921e;
 }

.h-captcha{
	margin: 1rem;
}

.max-width{
	max-width: 700px;
}

.quote{
	max-width: 90%;
	text-align: center !important;
	margin: 2rem;
}

/*---------- FOOTER ----------*/

#footer{
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
	margin: auto;
	width: 80%;
	padding: 0.5rem; 
	border-bottom-left-radius: 20px;
  	border-bottom-right-radius: 20px;
	font-size: 0.7rem;
	background: #373737;
}

#footer img{
	width: 1.2rem;
}

