@charset "UTF-8";
/*
COLORS:
  BASE - #000
  ACCENT - #6fb352
  HIGHLIGHT - #43328e
*/
.anchor {
  display: block;
  height: 80px;
  margin-top: -80px;
  visibility: hidden;
}
html {box-sizing: border-box;}
*, *:before, *:after {box-sizing: inherit;}
body {
  font-family: "Roboto Flex", sans-serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
  font-size: 20px;
  color: #000;
  padding: 0;
  margin: 0;
}
body a {
  text-decoration: none;
  color: #6fb352;
}
body a:hover {
  text-decoration: none;
  color: #43328e;
}
h1 {
  font-family: "Encode Sans SC", sans-serif;
  font-weight: 600;  
  color: #6fb352;
  font-size: 40px;
}
.easeload {
  opacity: 0;
  -webkit-transition: all 1s ease; 
  -moz-transition: all 1s ease; 
  -ms-transition: all 1s ease; 
  -o-transition: all 1s ease; 
}

h2 {
  color: #6fb352;
  text-align: center;
  font-family: "Encode Sans SC", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
  font-size: 26px;
}
hr {
  width: 85%; 
  margin: 20px auto;
}
.content {
  width: 100%; 
  max-width: 1000px; 
  margin: auto; 
  padding: 0 10px;
}
.footer {
  background-color: #e1e1e1; 
  clear: both;	
  height: auto; 
  overflow: hidden; 
  padding: 0 10px;
  border-top: 1px solid #000;
}
.footerthird {
  width: 33.3%; 
  float: left; 
  padding: 10px;
}
.heroimage {
  clear: both;
  position: relative;
  text-align: center;
  width: 100%; 
  margin: auto;
}
.centered {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  transform: translate(-50%, -50%);
  background-color: rgba(0,0,0,0.5);
  padding: 20px 0;
}
.leftfloat {
  float: left; 
  width: 50%; 
  height: auto; 
  padding-right: 15px;
  padding-bottom: 15px;
}
.divhide > img {
  animation: fade-in linear;
  animation-timeline: view();
  animation-range-start: 0;
  animation-range-end: 300px;
}
@keyframes fade-in {
  from {scale:.8; opacity: 0;}
  to {scale: 1; opacity: 1;}
}
.copyright {
  text-align: center; 
  font-size: 14px; 
  clear: both;
}
@media (min-width: 500px) {
  h1 {font-size: 8vw;}
}
@media screen and (max-width: 600px) {
  .footerthird {
    width: 100%;
    clear: both;
    float: none;
  }
}
@media (max-width: 700px) {
  .divhide {display: none;}
}
@media (min-width: 1500px) {
  h1 {font-size: 120px;}
}
