html,body {
	padding: 0;
	margin: 0;
	font-family: Sans-serif;
	height: 100%;
}
body{
  position:relative;
}
* {
	box-sizing: border-box;
}
h1 {
	font-family: Sans-serif;
	clear: both;
	display: block;
	font-size: 60px;
}
h2 {
	font-weight: 400;
	font-size: 28px;
	color: #000000;
}
header {
	height: 80px;
	text-align: center;
	display: flex;
	justify-content: center;
	align-items: center;
	color: white;
	background-color: black;
}
footer {
	background-repeat: repeat;
	background-position: center center;
	background-size: auto;
	background-attachment: scroll;
	min-height: 80px;
	background-color: black;
}
ul {
	text-align: center;
}
li {
	display: inline;
	margin-right: 25px;
}
a {
	text-decoration: none;
}
p {
	font-size: 20px;
	text-align: justify;
	color: #333333;
	line-height: 33px;
	letter-spacing: 0.1px;
}
img {
	width: 100%;
	height: auto;
}
input[type=text] {
	font-size: 16px;
	color: #334155;
}
input[type=submit] {
	background-color: #046bd2;
    color: #ffffff;
    font-size: 16px;
    cursor: pointer;
    border-radius: 0;
}
.form-field input {
	width: 100%;
    clear: both;
    margin-top: 5px;
    padding: 12px 20px;
    display: inline-block;
    border: 1px solid #ccc;
    border-radius: 2px;
    box-sizing: border-box;
}
/* The input-checkbox */
.input-checkbox {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 22px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* Hide the browser's default checkbox */
.input-checkbox input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* Create a custom checkbox */
.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: #eee;
}

/* On mouse-over, add a grey background color */
.input-checkbox:hover input ~ .checkmark {
  background-color: #ccc;
}

/* When the checkbox is checked, add a blue background */
.input-checkbox input:checked ~ .checkmark {
  background-color: #2196F3;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the checkmark when checked */
.input-checkbox input:checked ~ .checkmark:after {
  display: block;
}

/* Style the checkmark/indicator */
.input-checkbox .checkmark:after {
  left: 9px;
  top: 5px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.youtube-video {
	display: flex;
	justify-content: center;
}
@media (max-width: 1156px) {
	header {
		justify-content: space-around;
	}
}