html, body {
    height:100%;
}
body {
  background-color: white;
}
#footer-mobile{
	width: 100%;
	height: 85px;
	background-color: #FFB800;
}
input[type=text], select, textarea {
  width: 50%;  
  height: 50px;
  padding: 12px; 
  border: 1px solid #FFB800; 
  border-radius: 4px; /* Rounded borders */
  box-sizing: border-box; /* Make sure that padding and width stays in place */
  margin-top: 6px; /* Add a top margin */
  margin-bottom: 16px; /* Bottom margin */
  resize: vertical /* Allow the user to vertically resize the textarea (not horizontally) */
}

/* Style the submit button with a specific background color etc */
input[type=submit] {
  background-color: #000000;
  color: #FFB800;
  padding: 12px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}
button1{
  background-color: #000000;
  color: #FFB800;
  padding: 12px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}
input[type=submit]:hover {
  background-color: #FFB800;
  color: #000000;
}
input[type=reset]:hover {
  background-color: #FFB800;
  color: #000000;
}
/* Add a background color and some padding around the form */
.container {
  border-radius: 5px;
  background-color: #f2f2f2;
  padding: 20px;
}
button{
	background-color: #FFB800;
	color:#000000;
	padding: 0.75vw 0.5vw;
	border: none;
	border-radius: 4px;
	cursor: pointer;
}
input[type=reset] {
  background-color: #000000;
  color: #FFB800;
  padding: 12px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}
#logo_bottom{
	position: relative;
    bottom: 0%;
    right: 0%;
	left: 0;
	float: right;
    z-index: 1;
    padding: 0px;
    margin: 0px;
	width: 50%;
}
#logo_bottom-mobile{
	position: relative;
    bottom: 0%;
    right: 0%;
	left: 0;
	float: right;
    z-index: 1;
    padding: 0px;
    margin: 0px;
	width: 75%;
}
#black_button{
	background-color: #000000;
  color: #FFB800;
  padding: 12px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}
#left_column{
	width: 49%;
	float: left;
}
#right_column{
	width: 49%;
	height: 100%;
	float: right;
}
/* Navbar container */
.navbar {
  overflow: hidden;
  background-color: #333;
  font-family: Arial;
}

/* Links inside the navbar */
.navbar a {
  float: left;
  font-size: 16px;
  color: white;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
}

/* The dropdown container */
.dropdown {
  float: left;
  overflow: hidden;
}

/* Dropdown button */
.dropdown .dropbtn {
  font-size: 15px;
  border: none;
  outline: none;
  color: inherit;
  padding: 14px 16px;
  background-color: inherit;
  font-family: inherit; /* Important for vertical align on mobile phones */
  margin: 0; /* Important for vertical align on mobile phones */
}
.navbar a:hover, .dropdown:hover .dropbtn {
  color: #FFFFFF; 
}

/* Dropdown content (hidden by default) */
.dropdown-content {
  display: none;
  position: absolute;
  background-color: #000000;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

/* Links inside the dropdown */
.dropdown-content a {
  float: none;
  color: #FFB800;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  text-align: left;
}

/* Add a grey background color to dropdown links on hover */
.dropdown-content a:hover {
  background-color: #FFB800;
  color: #000000;
}

/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content {
  display: block;
}
#button2{
	font-size: 15px;
  border: none;
  outline: none;
  color: inherit;
  padding: 14px 16px;
  float: left;
  background-color: inherit;
  font-family: inherit; /* Important for vertical align on mobile phones */
  margin: 0;
}
.button2 a:hover {
	color: #FFFFFF;
}
#content-desktop {display: block;}
#content-mobile {display: none;}

@media screen and (max-width: 768px) {

#content-desktop {display: none;}
#content-mobile {display: block;}

}
/* Media Queries: Tablet Landscape */
@media screen and (max-width: 1060px) {
    #primary { width:67%; }
    #secondary { width:30%; margin-left:3%;}  
}

/* Media Queries: Tabled Portrait */
@media screen and (max-width: 768px) {
    #primary { width:100%; }
    #secondary { width:100%; margin:0; border:none; }
}
img { max-width: 100%; height: auto; }
@media (min-device-width:600px) {
    img[data-src-600px] {
        content: attr(data-src-600px, url);
    }
}

@media (min-device-width:800px) {
    img[data-src-800px] {
        content: attr(data-src-800px, url);
    }
}
table, th, td{
	font: MS Gothic;
}
th {
  text-align: left;
}
#myInput {
  background-repeat: no-repeat; /* Do not repeat the icon image */
  width: 100%; /* Full-width */
  font-size: 16px; /* Increase font-size */
  padding: 12px 20px 12px 40px; /* Add some padding */
  border: 1px solid #FFB800; /* Add a grey border */
  margin-bottom: 12px; /* Add some space below the input */
}

#myUL {
  /* Remove default list styling */
  list-style-type: none;
  padding: 0;
  margin: 0;
}

#myUL li a {
  border: 1px solid #ddd; /* Add a border to all links */
  margin-top: -1px; /* Prevent double borders */
  background-color: #FFB800; /* Grey background color */
  padding: 12px; /* Add some padding */
  text-decoration: none; /* Remove default text underline */
  font-size: 18px; /* Increase the font-size */
  color: black; /* Add a black text color */
  display: block; /* Make it into a block element to fill the whole list */
}

#myUL li a:hover:not(.header) {
  background-color: #000000; /* Add a hover effect to all links, except for headers */
  color: #FFB800;
}
#footer{
	width: 100%;
	height: 200px;
	background-color: #FFB800;
	position: relative;
	    bottom: 0%;
    right: 0%;
	left: 0;
	float: right;
    z-index: 1;
    padding: 0px;
    margin: 0px;
}