html {
	scroll-behavior: smooth;
	overflow-y : scroll;
	overflow-x: hidden;
}

body {
	margin-top : 70px;
	background-color : silver;
  color: #797979;
	font-family: arial, sans-serif !important;
	background: #eeeeee;
	padding: 0px !important;
  margin: 0px !important;
	font-size:14px !important;
}

main{
	position:relative;
	font-family: arial, sans-serif;
	background-color : silver;
	width : 100%;
	top:60px;
	margin-bottom: 50px;
}

.subheader{
	background-color:white;
	height:100px;
}

a.logo {
    font-size: 22px;
    font-weight: 300;
    color: red;
    float: left;
    margin-left: 5%;
    text-transform: uppercase;
}

a.logo:hover, a.logo:focus {
    text-decoration: none;
    outline: none;
}

a.logo span {
    color: #688a7e;
}

.logo .lite{
    color: #fff !important;
}

#scroll-to-top {
  position: fixed; /* Fixed/sticky position */
  bottom: 20px; /* Place the button at the bottom of the page */
  right: 20px; /* Place the button 20px from the right */
  z-index: 9999; /* Make sure it does not overlap */
  border: none; /* Remove borders */
  outline: none; /* Remove outline */
  background: red; /* Set a background color */
  color: white; /* Text color */
  cursor: pointer; /* Add a mouse pointer on hover */
  padding: 20px; /* Some padding */
  font-size: 18px; /* Increase font size */
  border-radius: 3px; /* Rounded corners */
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  text-decoration: none;
    -ms-transform: scale(0, 0);
    -webkit-transform: scale(0, 0);
  transform: scale(0, 0);
  opacity: 0;
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

#scroll-to-top::after {
  font-family: FontAwesome;
  font-weight: normal;
  font-style: normal;
  font-size: 2em;
  line-height: 30px;
  color: #fff;
}

#scroll-to-top:hover {
  background-color: #f00; /* Add a dark-grey background on hover */
}

#scroll-to-top.displayed {
    -ms-transform: scale(1, 1);
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    opacity: 1 !important;
    z-index: 500;
}

#scroll-to-top.displayed:hover {
    opacity: 0.5 !important;
}