@import url('https://fonts.googleapis.com/css2?family=Open+Sans&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@700&display=swap');

body{
	margin: 0;
	padding: 0;
	background-color: #f2f0eb;
	font-family: 'Open Sans', sans-serif;
	box-sizing: border-box;
}

*,
*:before,
*:after{
	box-sizing: inherit;
}

.row: :before,
.row: :after{
	display: table;
	content: "";
	clear: both;
}

.one-sixth,
.five-sixth,
.one,
.ones
{
	width: 100%;
	margin: 0;
}

@media only screen and (min-width: 800px){
	.one-sixth{
		width: calc(100%/6);
	}
	.five-sixth{
		width: calc(100%/6*5);
	}
	.one{
		width: 100%;
	}
	.ones{
		width: 100%;
	}
	.column{
		float: left;
	}
}

.header{
	background-color: #4f6367;
	width: 100%;
	margin: 0;
	height: 100px;
	position: fixed;
}

.one-sixth{
	float: left;
}

.logo{
	max-width: 100%;
	height: auto;
	padding-top: 15px;
	padding-left: 30px;
	margin: 0;
}

.five-sixth{
	text-align: right;
}

ul{
	list-style-type: none;
	text-decoration: none;
	padding-top: 38px;
	padding-right: 20px;
	margin: 0;
}

li{
	display: inline-block;
	text-decoration: none;
	color: white;
	padding-right: 40px;
}

a{
	color: white;
}

a:link{
	text-decoration: none;
}

.a:hover{
	color: white;
	text-decoration: underline;
}

h1{
	color: #4f6367;
	padding-top: 150px;
	margin-top: 0;
	margin-bottom: 0;
	font-size: 30pt;
	text-align: center;
}

.content{
  	padding: 20px;
  	max-width: 850px;
  	margin-left: auto;
 	margin-right: auto;
  	margin-top: 20px;
}

input[type=text],textarea{
  	width: 100%;
  	padding: 12px;
  	border: 1px solid #7a9e9f;
  	box-sizing: border-box;
  	margin-top: 6px;
  	margin-bottom: 16px;
  	resize: vertical;
  	background-color: #7a9e9f;
  	color: white;
  	font-size: 18px;
  	font-family: 'Open Sans', sans-serif;
}

::placeholder{
	color: white;
	font-size: 18px;
}

input[type=submit] {
  background-color: #eb5b52;
  color: white;
  padding: 12px 20px;
  width: 200px;
  font-size: 18px;
  border: none;
  cursor: pointer;
  text-align: center;
  display: block;
  margin-right: auto;
  margin-left: auto;
  margin-top: 20px;

}

input[type=submit]:hover {
  background-color: #4f6367;
}

.contact{
	text-align: center;
	display: block;
	margin-left: auto;
	margin-right: auto;
	max-width: 100%;
	height: auto;
	margin-top: 80px;
	margin-bottom: 100px;
}

.footer{
	background-color: #4f6367;
	margin: 0;
	height: 140px;
}

.one{
	text-align: center;
	display: block;
	margin-left: auto;
	margin-right: auto;
	max-width: 100%;
	height: auto;
	padding-top: 30px;
}

.img{
	max-width: 100%;
	height: auto;
	padding: 10px;
}

.ones{
	text-align: center;
	color: white;
}


@media only screen and (max-width: 799px){

.header{
	height: 150px;
}

.logo{
	text-align: center;
	display: block;
	margin-left: auto;
	margin-right: auto;
	max-width: 100%;
	height: auto;
}

ul{
	text-align: center;
	display: block;
	margin-left: auto;
	margin-right: auto;
	max-width: 100%;
	height: auto;
}

li{
	margin-top: 20px;
}

h1{
	padding-top: 200px;
}

.content{
  	max-width: 500px;
  	padding-left: 50px;
  	padding-right: 50px;
}

}
