body {
	font-family: Segoe UI,SegoeUI,"Helvetica Neue",Helvetica,Arial,sans-serif;
	font-size: min(max(12px, 1.5vw), 20px);
	color: #393C41; 
	font-weight: ;
	background-color: #FFFFFF;
	max-width: 90%;
	margin: auto;
}


/*   HEADERS   */
h1 {
	font-size: min(max(16px, 3vw), 36px);
}
h2 {
	font-size: min(max(12px, 2.5vw), 24px);
}


/*   Paragraph   */
p {
  max-width: 100%;
}

div {
	text-align: center;
}

.whitespace_100 {
	min-height: 100px;
}
.whitespace {
	min-height: 80px;
}


/*   TABLE   */
th {
	font-size: 10px;
	font-weight: bold;
	color: #000000;
}
td {
	font-size: 10px;
}



/*   LINKS   */
a:link, a:visited {
  text-decoration: none;
  color: #393C41;
}
a:hover, a:active {
  text-decoration: underline;

}



/*   MENU   */
a.menu:link, a.menu:visited {
  color: #393C41; 
  font-size: min(max(15px, 2vw), 20px);
  font-weight: bold;
  padding: 14px 14px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  text-shadow: 0 2px 2px #dadada;
  cursor: pointer;
}
a.menu:hover, a.menu:active {
  color: #393C41; 
  font-size: min(max(15px, 2vw), 20px);
  font-weight: bold;
  background-color: #FF0800;
  text-decoration: none;  /*underline*/
  text-shadow: 0 2px 2px #dadada;
  border-radius: 2px;
}
.menu {
	overflow: hidden;
	list-style-type: none;
	text-align: right;
}
.menu_block {
	display: inline-block;
	width: 375px;
}
.menu_li {
	display: inline-block;
	padding: 1%;
}
.sticky {
	position: fixed;
	top: 0;
	height: 122px;
	width: 90%;
	background-color: white;
}
/* The progress container (grey background) */
.progress-container {
  width: 100%;
  height: 3px;
  background: #f2f2f2;
}
/* The progress bar (scroll indicator) */
.progress-bar {
  height: 3px;
  background: #FF0800;
  width: 0%;
}


/* SOCIAL MEDIA ICONS */
.fa:link, .fa:visited {
  padding: 10px;
  font-size: 1em;
  width: 1em;
  text-align: center;
  text-decoration: none;
  margin: 5px 5px;
  border-radius: 50%;
  color: white;
  background: gray;
  opacity: 0.6;
}
.fa:hover, .fa:active {
    opacity: 1;
}
.fa-facebook {
  background: #333;
}
.fa-google {
  background: #333;
}




.home {
	padding-top: 20px;
	padding-bottom: 30px;
	margin: auto;
}
.services {
	padding-top: 20px;
	padding-bottom: 20px;
	margin: auto;
	background-color: #f2f2f2;
}
.service_li {
	display: inline-block;
	width: 230px;
	padding: 10px;
}
.process {
	padding-top: 20px;
	padding-bottom: 20px;
	margin: auto;
	background-color: #f2f2f2;
}
.about{
	padding-bottom: 30px;
}
.footer {
	background-color: DarkGray;
	width: 100%;
	padding-top: 5px;
}
.footer2 {
	width: 100%;
	padding: 10px;
	display: inline-block;
}

.footer_HD{
	float: right;
	display: inline-block;
	padding: 10px;
}



/* CONTACT FORM ___________________________________________________________*/
/* Style inputs, select elements and textareas */
input[type=text], select, textarea{
  width: 80%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
  resize: vertical;
}

/* Style the label to display next to the inputs */
label {
  padding: 12px 12px 12px 0;
  display: inline-block;
}

/* Style the submit button */
input[type=submit] {
  background-color: #333;
  color: white;
  padding: 12px 40px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  margin: 8px;
  float: right;
}

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

/* Floating column for labels: 25% width */
.col-25 {
  float: left;
  width: 15%;
  margin-top: 6px;
  font-weight: bold;
  text-align: right;
}

/* Floating column for inputs: 75% width */
.col-75 {
  float: left;
  width: 85%;
  margin-top: 6px;
}

/* Clear floats after the columns */
.row:after {
  content: "";
  display: table;
  clear: both;
}

/* Responsive layout - when the screen is less than 600px wide, make the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 600px) {
  .col-25, .col-75, input[type=submit] {
    width: 95%;
    margin-top: 0;
	text-align: center;
  }
}