@charset "UTF-8";
h1,
h2,
h3,
h4,
h5,
h5,
p {
  margin: 0;
  padding: 0;
}

img {
  max-width: calc(100vw - 4rem);
}

* {
  box-sizing: border-box;
}

body {
  font-family: "Lucida Sans", "Lucida Sans Regular", "Lucida Grande", "Lucida Sans Unicode", Geneva, Verdana, sans-serif;
  font-size: 16px;
  margin: 0;
  padding: 0;
}

.main-header {
  color: #065c1c;
  background-color: #f2f2f2;
  display: grid;
  grid-template-columns: [header-logo] 1fr [header-navs] auto;
  justify-content: space-between;
  align-items: center;
  padding: 0 2rem;
  height: 75px;
  border-bottom: 3px solid #065c1c;
}
.main-header img {
  height: 60px;
}
.main-header #mainNavToggle {
  position: relative;
  z-index: 100;
  width: 30px;
  height: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
}
.main-header #mainNavToggle span.bar {
  display: block;
  width: 100%;
  height: 4px;
  background-color: #065c1c;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.main-header #mainNavToggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 6px);
}
.main-header #mainNavToggle.active span:nth-child(2) {
  opacity: 0;
  transform: translateX(20px);
}
.main-header #mainNavToggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -6px);
}
@media screen and (min-width: 1200px) {
  .main-header #mainNavToggle {
    display: none;
  }
}
.main-header nav#mainNav {
  position: absolute;
  top: 75px;
  left: 0;
  z-index: 99;
  width: 100%;
  border-bottom: 1px solid black;
  background-color: #f2f2f2;
  height: 0;
  padding: 0rem 2rem;
  overflow: hidden;
  transition: height 0.3s ease, padding 0.3s ease;
  font-size: 18pt;
  interpolate-size: allow-keywords;
}
.main-header nav#mainNav ul {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  list-style: none;
  align-items: center;
  padding: 0;
  margin: 0;
}
.main-header nav#mainNav ul li {
  padding-left: 0;
}
.main-header nav#mainNav.active {
  height: auto;
  padding: 1rem 2rem;
}
@media screen and (min-width: 700px) {
  .main-header nav#mainNav ul {
    flex-direction: row;
    gap: 0.75rem;
    justify-content: space-between;
  }
}
@media screen and (min-width: 1200px) {
  .main-header nav#mainNav {
    height: 75px;
    position: static;
    grid-column-start: header-nav;
    border-bottom: 3px solid #065c1c;
    font-size: 16pt;
  }
  .main-header nav#mainNav ul {
    height: 100%;
    gap: 2rem;
    justify-content: flex-start;
  }
  .main-header nav#mainNav ul li:last-of-type {
    margin-left: auto;
  }
}

.button {
  text-decoration: none;
  font-weight: bold;
  display: inline-block;
}
.button.Link {
  color: #065c1c;
}
.button.Link:hover {
  text-decoration: underline;
}
.button.Primary_Button {
  padding: var(--vPadding, 0.5rem) var(--hPadding, 1rem);
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  color: #f2f2f2;
  background-color: #065c1c;
  border: 3px solid #065c1c;
}
.button.Primary_Button:hover {
  color: #065c1c;
  background-color: transparent;
}
.button.Secondary_Button {
  padding: var(--vPadding, 0.5rem) var(--hPadding, 1rem);
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  color: #065c1c;
  background-color: #f2f2f2;
  border: 3px solid #f2f2f2;
}
.button.Secondary_Button:hover {
  color: #f2f2f2;
  background-color: transparent;
}

.hero {
  height: 50vh;
  padding-top: 20%;
  border-bottom: 3px solid #065c1c;
  color: #f2f2f2;
  background-color: rgba(0, 0, 0, 0.25);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.hero::before {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  content: "";
  background-image: var(--bg-img, url("/images/hero_bg.png"));
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
.hero h2 {
  font-size: 2.5rem;
  text-shadow: 4px 2px 2px rgba(0, 0, 0, 0.25);
}
.hero h4 {
  font-size: 1.25rem;
}
.hero .hero-links {
  padding-top: 4rem;
  display: flex;
  gap: 0.5rem;
  font-size: 1.25rem;
}
@media screen and (min-width: 700px) {
  .hero {
    padding-top: 0;
    justify-content: center;
    background-position: center center;
  }
  .hero h2 {
    font-size: 3.5rem;
  }
  .hero h4 {
    font-size: 2rem;
  }
  .hero .hero-links {
    --hPadding: 1.5rem;
    gap: 1rem;
  }
}
@media screen and (min-width: 1220px) {
  .hero {
    height: 70vh;
  }
  .hero h2 {
    font-size: 5rem;
  }
  .hero h4 {
    font-size: 3rem;
  }
  .hero .hero-links {
    --hPadding: 2rem;
    --vPadding: 1rem;
    padding-top: 1.75rem;
    display: flex;
    gap: 1.5rem;
    font-size: 1.5rem;
  }
}

.section-container {
  padding: 4rem;
}
.section-container:nth-child(even) {
  background-color: rgb(235, 235, 235);
}

.container {
  width: 100%;
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
}
.container h5 {
  font-size: 1.3rem;
  text-align: center;
  color: #065c1c;
  margin-bottom: 0.5rem;
}
.container h3 {
  font-size: 1.5rem;
  padding-bottom: 1rem;
  text-align: center;
}
@media screen and (min-width: 700px) {
  .container h3 {
    font-size: 2rem;
  }
}

.two-column-grid {
  width: 100%;
  display: grid;
  gap: 3rem;
  align-items: center;
  justify-items: center;
}
.two-column-grid img {
  width: 90%;
}
@media screen and (min-width: 700px) {
  .two-column-grid {
    grid-template-columns: [left-column] 1fr [right-column] 1fr;
  }
}

.text-block {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}
@media screen and (min-width: 1000px) {
  .text-block {
    font-size: 16pt;
  }
}

.check-list ul {
  list-style: none;
}
.check-list ul li::before {
  content: "✓";
  color: #065c1c;
  font-size: 18pt;
  margin-right: 1rem;
}

.banner-list ul {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}
.banner-list ul li::before {
  content: "☸";
  display: inline-block;
  border-radius: 100%;
  width: 35px;
  height: 35px;
  background-color: #065c1c;
  color: #f2f2f2;
  font-size: 18pt;
  text-align: center;
  margin-right: 1rem;
}

.image-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, 200px);
  gap: 1rem;
}
.image-grid img {
  border-radius: 10px;
  border: 3px solid #065c1c;
}

.center {
  text-align: center;
}

/*# sourceMappingURL=main.css.map */
