/* reset*/
html, body, ul, ol, li, p, h1, h2, h3, h4, h5, h6, form, fieldset {
	margin: 0;
	padding: 0;
	border: 0;
	
}
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section { 
    display: block;
	margin: 0;
}

img {
	max-width: 100%;
	height: auto;
	border:0;
}
.video embed,
.video object,
.video iframe {
	width: 100%;
	height: auto;
}
video {
	width: 90%;
	height: auto;
}
* {
  box-sizing: border-box;
}
body {
	font-family: Times New Roman, adobe-times, Times;
	font-size: 100%;
	color: #000;
}
.wrapper {
  /*min-height: 90vh;*/
  display: flex;
  flex-direction: column;
}
.footer{
  /*height: 90px;*/
  background: #000;
  color: #fff;
}
.content {
  display: flex;
  flex: 1;
  color: #000; 
}
.columns {
  display: flex;
  flex:1;
	align-items: center;
}
.columns-about {
	display: flex;
	flex: 1;
	align-items: center;
	background: #e2c84f;
}
.columns-contact {
	display: flex;
	flex: 1;
	align-items: center;
	background: #000;
}
.main {
  flex: 1;
  order: 2;
}
.main-about {
  flex: 1;
  order: 2;
  background: #e2c84f;
  padding: 2%;
}
.main-contact {
  flex: 1;
  order: 2;
  background: #000;
  padding: 2%;
}
.sidebar {
  width: 10%;
  background: #e6c64b;
  order: 1;
}
.nostrech {
	align-self: center;
}
.navigation a {
   color: #fff;
   font-weight: 400;
   letter-spacing: 2px;
   text-decoration: none;
   padding: 18px 5px;
   display: inline-block;
   width: 100%;
   text-align: center;
  font-size: 288%;
}
.navigation a:visited {
	color: #fff;
}
.navigation a:hover {
   background: #F4CE53;
}
a {
	color: #fff;
	text-decoration: none;
}
a:visited {
	color: #fff;
}
a:hover {
	color: #F4CE53;
	text-decoration: underline;
}
.main-nav {
   max-width: 1400px;
   margin: 0 auto;
   padding: 0 3em 1.5em;
}
.navigation ul {
   list-style: none;
   margin: 0;
   padding: 0;
   display: flex;
}
.navigation li {
   flex: 3;    
}
.navigation .user {
   flex: 1;
}
.row {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  width: 100%;
}
.column {
  display: flex;
  flex-direction: column;
  flex-basis: 100%;
  flex: 1;
}
p {
	padding: 2%;
	line-height: 2.5;
	font-size: 125%;
}
.form-container {
	border-radius: 5px;
	background-color: #E6C13C;
	padding: 2%;
}
legend {
	padding: 2% 4%;
}
/* Clear floats after the columns */
.form-row:after {
  content: "";
  display: table;
  clear: both;
}
.col-25 {
	float: left;
	width: 12%;
	font-size: 125%;
}
.col-75 {
	float: left;
	width: 75%;
	margin-top: 6px;
}
label {
	padding: 12px 12px 12px 0;
	display: inline-block;
}
input[type="text"], select, textarea {
	width: 100%;
	padding: 12px;
	border: 1px solid #ccc;
	border-radius: 4px;
	resize: vertical;
}
input[type="tel"] {
	width: 100%;
	padding: 12px;
	border: 1px solid #ccc;
	border-radius: 4px;
	resize: vertical;
}
input[type="email"] {
	width: 100%;
	padding: 12px;
	border: 1px solid #ccc;
	border-radius: 4px;
	resize: vertical;
}
input[type="submit"] {
	background-color: #000;
	color: white;
	padding: 12px 20px;
	border: none;
	border-radius: 4px;
	cursor: pointer;
	float: right;
}
input[type="submit"]:hover {
	background-color: #dbcc8f;
}
.antispam {
	display: none;
}
.whtie-text {
	color: #fff;
}