:root {
  --sitecolor: #A2C612;
  --textcolor: #5F5F5F;
  --titlecolor: #003C3F;
  --linkcolor: #5F5F5F;
  --linkcolor-hov: #A2C612;
  --accentcolor: #A2C612;
  --headerHeight: 130px;
  --gridGap: 30px;
}
@media (max-width: 1023px) {
  :root {
    --headerHeight: 80px;
  }
}
.button {
  background-color: var(--sitecolor);
  font-family: 'Lato', sans-serif;
  font-weight: 900;
  font-size: clamp(1rem, 0.33149171vw + 0.92230663rem, 1.1875rem);
  line-height: clamp(1.5rem, 0.44198895vw + 1.39640884rem, 1.75rem);
  font-family: inherit;
  cursor: pointer;
  color: #003C3F;
  padding: 7px 40px 5px;
  appearance: none;
  border-radius: 0;
  box-sizing: border-box;
  text-align: center;
  text-decoration: none;
  border: none;
  display: inline-block;
  transition: all 0.4s cubic-bezier(0.76, 0, 0.24, 1);
  border-radius: 40px;
  box-shadow: inset 0em 0em 0em #003C3F;
}
@media (hover: hover) and (pointer: fine) {
  .button:hover,
  .button:focus {
    box-shadow: inset 0em 0em 15em #003C3F;
    color: #A2C612;
  }
}
.clearfix {
  *zoom: 1;
}
.clearfix:before,
.clearfix:after {
  display: table;
  content: '';
}
.clearfix:after {
  clear: both;
}
.area--one {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0 var(--gridGap);
}
.area--one .unit {
  grid-column: span 4;
}
.area--one .unitOne--1-3 {
  grid-column: span 2;
}
/*# sourceMappingURL=./screen-medium.css.map */