main {
	width: 100%;
	background-attachment: fixed;
	/*height: calc(100vh - 70px)*/;
	background-color: #1A253A;
	margin-top: 70px;
	background-image: url(../images/hero.jpg);
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center center;
	display: flex;
	justify-content: center;
	/*align-items: center;*/
}

input[type=text], input[type=number], select, textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
  margin-top: 6px;
  margin-bottom: 16px;
  resize: vertical;
}

input[type=submit] {
  background-color: #4CAF50;
  color: white;
  padding: 12px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

input[type=submit]:hover {
  background-color: #45a049;
}

.contact-button {
  background-color: #4CAF50;
  color: white;
  padding: 12px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

.container {
  border-radius: 5px;
  background-color: #f2f2f2;
  padding: 20px;
  max-width: 900px;
  margin: 20px;

}

.banner {
		background: #009579;
		margin-bottom: 20px;
	}
	
	.banner__error {
		background: #FF4D4D;
	}
	
	.banner__content {
		padding: 16px;
		max_width: 800px;
		margin: 0 auto;
		display: flex;
		align-items: center;
	}
	
	.banner__text {
		flex-grow: 1;
		line-height: 1.4;
		font-family: 'Quicksand', sans-serif;
	}
	
	.banner__close {
		background: none;
		border: none;
		cursor: pointer;
	}
	
	.banner__link {
		text-decoration-style: dotted;
	}
	
	.banner__link,
	.banner__text,
	.banner__close>span {
		color:#ffffff;
	}
	
	.banner__highlight {
		width: 800px;
		background: #000000;
	}
	
	.banner__highlight__content {
		padding: 5px;
		/*max_width: 500px;*/
		margin: 0 auto;
		display: flex;
		align-items: center;
	}
	
	.banner__highlight__text {
		flex-grow: 1;
		line-height: 1.4;
		font-size: 32px;
		font-family: 'Quicksand', sans-serif;
	}
	
	.banner__highlight__close {
		background: none;
		border: none;
		cursor: pointer;
	}
	
	.banner__highlight__text,
	.banner__highlight__close>span {
		color:#ffffff;
	}

.info-msg,
.success-msg,
.warning-msg,
.error-msg {
  margin: 10px 0;
  padding: 10px;
  border-radius: 3px 3px 3px 3px;
}
.info-msg {
  color: #059;
  background-color: #BEF;
}
.success-msg {
  color: #270;
  background-color: #DFF2BF;
}
.warning-msg {
  color: #9F6000;
  background-color: #FEEFB3;
}
.error-msg {
  color: #D8000C;
  background-color: #FFBABA;
}

.submit-button {
  background-color: #4CAF50;
  color: white;
  padding: 12px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  
  margin-left: auto;
  margin-right: auto;
}

.btn-download {
  margin-top: 5px;
  margin-bottom: 10px;
  background-color: DodgerBlue;
  border: none;
  color: white;
  padding: 10px 20px;
  cursor: pointer;
  font-size: 20px;
}

/* Darker background on mouse-over */
.btn-download:hover {
  background-color: RoyalBlue;
}