/* http://meyerweb.com/eric/tools/css/reset/
   v5.0.1 | 20191019
   License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, menu, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
main, menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline; }

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, main, menu, nav, section {
  display: block; }

/* HTML5 hidden-attribute fix for newer browsers */
*[hidden] {
  display: none; }

body {
  line-height: 1; }

menu, ol, ul {
  list-style: none; }

blockquote, q {
  quotes: none; }

blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none; }

table {
  border-collapse: collapse;
  border-spacing: 0; }

/* variables */
:root {
  /* Colors */
  --primary: #7ca117;
  --highlight: rgba(166, 206, 57, 1);
  --white: rgba(255, 255, 255, 1);
  --off-white: rgba(255, 253, 252, 1);
  --grey-1: rgba(245, 243, 242, 1);
  --grey-2: rgba(235, 231, 230, 1);
  --grey-3: rgba(89, 87, 86, 1);
  --grey-4: rgba(66, 64, 64, 1);
  --black: rgba(43, 37, 35, 1);
  --black-transparent: rgba(0, 0, 0, 0.6);
  --white-transparent: rgba(255, 255, 255, 0.86);
  /* Typography */
  --font-family: Nunito Sans, -apple-system, BlinkMacSystemFont, "avenir next", avenir, helvetica, "helvetica neue",
    ubuntu, roboto, noto, "segoe ui", arial, sans-serif;
  --line-height: 1.5;
  --font-size: 18px;
  --font-size-m: 18px;
  --font-size-l: 18px;
  --body-font-weight: 400;
  --bold-font-weight: 700;
  /* Sizing */
  --spacing-none: 0;
  --spacing-extra-small: 0.25rem;
  --spacing-small: 0.5rem;
  --spacing-medium: 1rem;
  --spacing-large: 2rem;
  --spacing-extra-large: 4rem;
  --spacing-extra-extra-large: 8rem;
  --spacing-extra-extra-extra-large: 16rem;
  /* Miscelaneous */
  --border-radius: 0.25rem;
  --hover-transition: all 150ms ease; }

/* reset-extra */
input,
textarea {
  font-size: var(--spacing-medium);
  border: none;
  font-family: inherit;
  border: 0;
  margin: 0; }

button {
  font-family: inherit;
  border: 0;
  margin: 0;
  cursor: pointer; }

/* typography */
html {
  font-size: var(--font-size); }
  @media screen and (min-width: 30em) and (max-width: 60em) {
    html {
      font-size: var(--font-size-m); } }
  @media screen and (min-width: 60em) {
    html {
      font-size: var(--font-size-l); } }

body {
  font-family: var(--font-family);
  font-size: var(--spacing-medium);
  line-height: var(--line-height);
  font-weight: var(--body-font-weight); }

p {
  margin-bottom: var(--spacing-medium); }

strong {
  font-weight: var(--bold-font-weight); }

em {
  font-style: italic; }

sup {
  font-size: 0.6rem;
  font-weight: 700;
  vertical-align: super; }

h1,
h2,
h3,
h4,
h5,
h6,
.merienda {
  font-family: "Merienda One", handwriting, sans-serif;
  text-transform: uppercase; }

h2,
h3,
h4,
h5,
h6 {
  font-weight: normal; }

/* colors */
.primary {
  color: var(--primary); }

.highlight {
  color: var(--highlight); }

.white {
  color: var(--white); }

.off-white {
  color: var(--off-white); }

.grey-1 {
  color: var(--grey-1); }

.grey-2 {
  color: var(--grey-2); }

.grey-3 {
  color: var(--grey-3); }

.grey-4 {
  color: var(--grey-4); }

.black {
  color: var(--black); }

.bg-primary {
  background-color: var(--primary); }

.bg-highlight {
  background-color: var(--highlight); }

.bg-white {
  background-color: var(--white); }

.bg-off-white {
  background-color: var(--off-white); }

.bg-grey-1 {
  background-color: var(--grey-1); }

.bg-grey-2 {
  background-color: var(--grey-2); }

.bg-grey-3 {
  background-color: var(--grey-4); }

.bg-grey-4 {
  background-color: var(--grey-4); }

.bg-black {
  background-color: var(--black); }

.bg-fix-primary {
  padding: 0 var(--spacing-small); }

.bg-fix-primary:first-child {
  box-shadow: var(--spacing-small) 0 0 var(--primary), -var(--spacing-small) 0 0 var(--primary); }

@media screen and (min-width: 60em) {
  .bg-fixed {
    background-attachment: fixed; } }

.bg-black-transparent {
  background-color: rgba(0, 0, 0, 0.6); }

.bg-white-transparent {
  background-color: rgba(255, 255, 255, 0.86); }

.flex-1 {
  flex: 1; }

.flex-2 {
  flex: 2; }

@media screen and (min-width: 60em) {
  .flex-1-l {
    flex: 1; }
  .flex-2-l {
    flex: 2; } }

@media screen and (min-width: 30em) and (max-width: 60em) {
  .flex-1-m {
    flex: 1; }
  .flex-2-m {
    flex: 2; } }

.opacity-50 {
  opacity: 50; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 3rem; }

.shadow-filter {
  filter: drop-shadow(4px 4px 4px black); }

.link {
  cursor: pointer; }

.divider {
  background-color: var(--black);
  height: 3px;
  width: 80px;
  display: inline-block;
  margin: 1em 1.5em; }

.divider-white {
  background-color: var(--white);
  height: 3px;
  width: 80px;
  display: inline-block;
  margin: 1em 1.5em; }

img:not(.w-100) {
  border-radius: var(--border-radius); }

.flex-same {
  flex: 1 1 0;
  width: 0; }

.w-sixth {
  width: calc(100% / 6); }

@media screen and (min-width: 60em) {
  .w-sixth-l {
    width: calc(100% / 6); } }

@media screen and (min-width: 30em) {
  .overlay-column-ns {
    max-width: 25em; } }

.btn {
  display: inline-block;
  padding: 18px 28px 16px;
  font-size: 0.7em;
  letter-spacing: 3px;
  line-height: 1.25;
  background-color: white;
  /* fallback */
  background-color: var(--primary);
  border-radius: 9999px;
  text-decoration: none;
  font-weight: var(--bold-font-weight);
  color: var(--white);
  text-align: center;
  text-transform: uppercase;
  box-shadow: 2px 2px 10px 0px rgba(0, 0, 0, 0.5);
  transition: var(--hover-transition);
  cursor: pointer; }

.btn:disabled {
  cursor: default;
  background-color: var(--grey-2);
  box-shadow: 2px 2px 5px 0px rgba(0, 0, 0, 0.2); }

.btn:hover:not(disabled) {
  background-color: var(--highlight);
  box-shadow: 2px 5px 15px 0px rgba(0, 0, 0, 0.5);
  text-decoration: none; }

.hard-shadow {
  box-shadow: 10px 10px 0px 1px rgba(0, 0, 0, 0.07);
  margin-bottom: 16px; }

@media screen and (min-width: 60em) {
  .pr-for-shadow {
    padding-right: 24px; } }

@media screen and (max-width: 30em) {
  .hide-if-small {
    display: none; } }

@media screen and (min-width: 30em) {
  .hide-if-not-small {
    display: none; } }

.page-title {
  font-size: 3rem; }

@media screen and (min-width: 60em) {
  .page-title {
    font-size: 5rem; } }

.maps-frame {
  min-height: 24rem; }

a {
  color: var(--primary);
  text-decoration: 0; }

a:hover {
  text-decoration: underline; }

.blockquote {
  margin-left: 1em;
  padding: 1em;
  border-left: 5px solid var(--grey-2);
  margin-bottom: 1em;
  font-style: italic; }

.blockquote > p:last-child {
  margin-bottom: 0; }

/* begin IE11 workaround */
.navbar #main-menu {
  background-color: white; }

@supports (display: grid) {
  .navbar #main-menu {
    background-color: unset; } }

/* end IE11 workaround */
.navbar {
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto 0;
  grid-template-areas: "left         right" "main-menu    main-menu  "; }

.menu-button {
  grid-area: right;
  text-align: right;
  justify-self: end;
  background-color: white;
  border-radius: 2px; }

.navbarbackground {
  background-color: var(--black-transparent);
  grid-area: left / left/ right / right;
  align-self: stretch; }

.social-icon {
  width: 2em;
  height: 2em;
  margin: 0 0.5em;
  border-radius: 9999px;
  text-decoration: none;
  color: var(--white);
  text-align: center;
  transition: var(--hover-transition);
  border: 0;
  display: flex;
  align-items: center;
  justify-content: center; }

@media screen and (max-width: 900px) {
  .navbar #main-menu {
    display: none;
    grid-area: main-menu;
    /* padding: 0 1.5rem; */
    background-color: rgba(255, 255, 255, 0.95);
    align-self: start;
    z-index: 1;
    box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.5);
    /* margin: 0.5rem; */
    /* border-radius: 4px; */
    text-align: center; }
  .navbar input:checked ~ #main-menu {
    display: block; }
  .social-icons {
    grid-area: left / left / right / right; }
  #main-menu a {
    color: var(--black);
    border-bottom: var(--grey-2) solid 1px;
    padding-right: 2em; } }

@media screen and (min-width: 900px) {
  .navbar #main-menu {
    display: flex;
    flex-direction: row;
    grid-area: left;
    justify-self: end; }
  .social-icons {
    grid-area: right; }
  .menu-button {
    display: none; }
  #main-menu a {
    color: var(--white); } }
