/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul[role=list],
ol[role=list] {
  list-style: none;
}

/* Set core root defaults */
html:focus-within {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img,
picture {
  max-width: 100%;
  display: block;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Remove all animations, transitions and smooth scroll for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
/* The font-size mixin */
/* ------------------------------------ */
.spacer {
  float: none;
  clear: both;
  margin: 0;
  border: 0;
  padding: 0;
  width: 0;
  height: 0;
}

body,
html {
  min-height: 100%;
}

body {
  background-color: rgba(249, 249, 248, 0.99);
  overflow-x: hidden;
  padding-top: 80px;
  padding-bottom: 0;
}
@media screen and (min-width: 1000px) {
  body {
    padding-top: 120px;
    padding-bottom: 0;
  }
}

* {
  box-sizing: border-box;
}

html,
body {
  font-size: 16px;
  font-size: 1rem;
  line-height: 28px;
  line-height: 1.75rem;
  font-optical-sizing: auto;
  font-family: "Poppins", Helvetica, Arial, sans-serif;
  font-weight: 300;
  font-style: normal;
  color: #000000;
}

a {
  text-decoration: none;
}
a:hover {
  text-decoration: none;
}

h1 {
  font-size: 45px;
  font-size: 2.8125rem;
  line-height: 50px;
  line-height: 3.125rem;
  margin: 0;
  font-family: "Poppins", Helvetica, Arial, sans-serif;
  font-weight: 700;
  font-style: normal;
  color: #000000;
}
@media screen and (min-width: 800px) {
  h1 {
    font-size: 55px;
    font-size: 3.4375rem;
    line-height: 60px;
    line-height: 3.75rem;
  }
}

h2 {
  font-size: 28px;
  font-size: 1.75rem;
  line-height: 36px;
  line-height: 2.25rem;
  margin-bottom: 40px;
  font-family: "Poppins", Helvetica, Arial, sans-serif;
  font-weight: 600;
  font-style: normal;
  color: #000000;
}
@media screen and (min-width: 800px) {
  h2 {
    font-size: 30px;
    font-size: 1.875rem;
    line-height: 40px;
    line-height: 2.5rem;
  }
}

h3, h4, h5, h6 {
  font-size: 22px;
  font-size: 1.375rem;
  line-height: 30px;
  line-height: 1.875rem;
  margin: 0 0 30px;
  font-family: "Poppins", Helvetica, Arial, sans-serif;
  font-weight: 600;
  font-style: normal;
  color: #000000;
}
@media screen and (min-width: 800px) {
  h3, h4, h5, h6 {
    font-size: 22px;
    font-size: 1.375rem;
    line-height: 30px;
    line-height: 1.875rem;
  }
}

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

p {
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 30px;
  line-height: 1.875rem;
  font-family: "Poppins", Helvetica, Arial, sans-serif;
  color: #566153;
  font-weight: 400;
  font-style: normal;
  margin-bottom: 40px;
}
@media screen and (min-width: 800px) {
  p {
    font-size: 20px;
    font-size: 1.25rem;
    line-height: 32px;
    line-height: 2rem;
  }
}
p strong {
  font-weight: 600;
  color: #000000;
}
p em {
  font-style: italic;
}

.content-block > :last-child {
  margin-bottom: 0;
}
.content-block ul,
.content-block ol {
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 30px;
  line-height: 1.875rem;
  margin-bottom: 40px;
  counter-reset: item;
  font-weight: 400;
  font-family: "Poppins", Helvetica, Arial, sans-serif;
  color: #566153;
}
@media screen and (min-width: 800px) {
  .content-block ul,
  .content-block ol {
    font-size: 20px;
    font-size: 1.25rem;
    line-height: 32px;
    line-height: 2rem;
  }
}
.content-block ol,
.content-block ul {
  padding: 0;
}
.content-block ul li {
  position: relative;
  list-style: none;
  padding-left: 20px;
  margin-bottom: 12px;
}
.content-block ul li::before {
  position: absolute;
  top: 11px;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 3px;
  background-color: #000000;
  content: "";
}
.content-block ol li {
  position: relative;
  counter-increment: item;
  list-style: none;
  padding-left: 20px;
  margin-bottom: 14px;
}
.content-block ol li::before {
  position: absolute;
  top: 0;
  left: 0;
  content: counters(item, "") ".";
  color: #566153;
}
.content-block p a,
.content-block li a,
.content-block h2 a,
.content-block h3 a,
.content-block h4 a,
.content-block h5 a,
.content-block h6 a {
  transition: all 0.25s ease 0s;
  color: #589F41;
  font-weight: 600;
}
.content-block p a:link,
.content-block p a:visited,
.content-block li a:link,
.content-block li a:visited,
.content-block h2 a:link,
.content-block h2 a:visited,
.content-block h3 a:link,
.content-block h3 a:visited,
.content-block h4 a:link,
.content-block h4 a:visited,
.content-block h5 a:link,
.content-block h5 a:visited,
.content-block h6 a:link,
.content-block h6 a:visited {
  color: #589F41;
  text-decoration: underline;
}
.content-block p a:link.button,
.content-block p a:visited.button,
.content-block li a:link.button,
.content-block li a:visited.button,
.content-block h2 a:link.button,
.content-block h2 a:visited.button,
.content-block h3 a:link.button,
.content-block h3 a:visited.button,
.content-block h4 a:link.button,
.content-block h4 a:visited.button,
.content-block h5 a:link.button,
.content-block h5 a:visited.button,
.content-block h6 a:link.button,
.content-block h6 a:visited.button {
  color: #589F41;
  text-decoration: none;
}
.content-block p a:hover,
.content-block li a:hover,
.content-block h2 a:hover,
.content-block h3 a:hover,
.content-block h4 a:hover,
.content-block h5 a:hover,
.content-block h6 a:hover {
  color: #589F41;
  text-decoration: underline;
}
.content-block img {
  display: block;
}

.container {
  margin: 0 auto;
  padding: 0 20px;
  max-width: 1500px;
}
.container--mid {
  max-width: 1020px;
}
.container--min {
  max-width: 900px;
}
@media screen and (min-width: 800px) {
  .container {
    padding: 0 50px;
  }
}

.layout {
  margin-bottom: 140px;
}
.layout--page {
  margin-top: 60px;
}
@media screen and (min-width: 800px) {
  .layout--page {
    margin-top: 100px;
  }
}
@media screen and (min-width: 800px) {
  .layout {
    margin-bottom: 240px;
  }
}

.content {
  margin-top: 80px;
}
@media screen and (min-width: 800px) {
  .content {
    margin-top: 120px;
  }
}

.wp-block-image {
  margin-bottom: 40px;
}
.wp-block-image .wp-element-caption {
  color: #566153;
  font-weight: 400;
}

.wp-block-embed {
  margin-bottom: 40px;
}

.wp-block-quote {
  background-color: transparent;
  max-width: 90%;
  margin: 60px auto;
  padding: 0 0 0 40px;
  background-repeat: no-repeat;
  background-position: top left;
  background-image: url("../img/blockquote.svg");
}
.wp-block-quote p {
  font-size: 22px;
  font-size: 1.375rem;
  line-height: 30px;
  line-height: 1.875rem;
  margin: 0;
  font-family: "Poppins", Helvetica, Arial, sans-serif;
  font-weight: 400;
  font-style: normal;
  color: #000000;
}
@media screen and (min-width: 800px) {
  .wp-block-quote p {
    font-size: 22px;
    font-size: 1.375rem;
    line-height: 30px;
    line-height: 1.875rem;
  }
}

.wp-block-separator {
  display: block;
  border: none;
  height: 8px;
  width: 42px;
  margin: 20px auto !important;
  background-repeat: no-repeat;
  background-size: 42px 8px;
  background-image: url("../img/separator.svg");
}
@media screen and (min-width: 800px) {
  .wp-block-separator {
    margin: 40px auto !important;
  }
}

.hero {
  display: grid;
  grid-template-columns: 20px 1fr 20px;
  min-height: 500px;
}
@media screen and (min-width: 800px) {
  .hero {
    grid-template-columns: 1fr 700px 1.5fr;
  }
}
@media screen and (min-width: 1100px) {
  .hero {
    grid-template-columns: 1fr 800px 1.5fr;
  }
}

.hero__bar {
  background-color: #589F41;
  grid-column: 1/3;
  grid-row: 1/1;
  border-top-right-radius: 150px;
}
@media screen and (min-width: 800px) {
  .hero__bar {
    grid-column: 1/3;
    grid-row: 1/1;
  }
}

.hero__box {
  position: relative;
  display: block;
  top: 20px;
  left: 0;
  background-color: #FBCE00;
  grid-column: 2/4;
  grid-row: 1/1;
  mix-blend-mode: hard-light;
  padding: 40px 60px 60px 20px;
  border-top-right-radius: 100px;
}
@media screen and (min-width: 800px) {
  .hero__box {
    top: 50px;
    left: 50px;
    grid-column: 2/3;
    grid-row: 1/1;
    padding: 60px 200px 110px 60px;
  }
}

.hero__header p {
  font-size: 37px;
  font-size: 2.3125rem;
  line-height: 40px;
  line-height: 2.5rem;
  margin: 0;
  font-family: "Poppins", Helvetica, Arial, sans-serif;
  font-weight: 700;
  font-style: normal;
  color: #23740B;
}
.hero__header p strong, .hero__header p em {
  color: #000000;
  font-weight: 700;
}
@media screen and (min-width: 800px) {
  .hero__header p {
    font-size: 50px;
    font-size: 3.125rem;
    line-height: 54px;
    line-height: 3.375rem;
  }
}

.hero__text {
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 30px;
  line-height: 1.875rem;
  margin: 30px 0 0 0;
  font-family: "Poppins", Helvetica, Arial, sans-serif;
  font-weight: 400;
  font-style: normal;
  color: #000000;
}
@media screen and (min-width: 800px) {
  .hero__text {
    font-size: 20px;
    font-size: 1.25rem;
    line-height: 32px;
    line-height: 2rem;
    max-width: 80%;
  }
}

.hero__cta {
  margin-top: 40px;
}

.event__date {
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 18px;
  line-height: 1.125rem;
  margin: 15px 0 0 0;
  font-family: "Poppins", Helvetica, Arial, sans-serif;
  font-weight: 600;
  font-style: normal;
  color: #fbce00;
}
@media screen and (min-width: 800px) {
  .event__date {
    font-size: 20px;
    font-size: 1.25rem;
    line-height: 20px;
    line-height: 1.25rem;
    text-align: center;
  }
}

.section {
  margin-top: 60px;
}
@media screen and (min-width: 500px) {
  .section {
    margin-top: 80px;
  }
}
@media screen and (min-width: 800px) {
  .section {
    margin-top: 100px;
  }
}

.section-header {
  margin-bottom: 40px;
}
@media screen and (min-width: 500px) {
  .section-header {
    margin-bottom: 60px;
  }
}
@media screen and (min-width: 800px) {
  .section-header {
    margin-bottom: 80px;
  }
}

.section-title {
  font-size: 40px;
  font-size: 2.5rem;
  line-height: 46px;
  line-height: 2.875rem;
  margin: 0;
  font-family: "Poppins", Helvetica, Arial, sans-serif;
  font-weight: 700;
  font-style: normal;
  color: #589F41;
}
@media screen and (min-width: 500px) {
  .section-title {
    font-size: 50px;
    font-size: 3.125rem;
    line-height: 57px;
    line-height: 3.5625rem;
  }
}
@media screen and (min-width: 800px) {
  .section-title {
    font-size: 60px;
    font-size: 3.75rem;
    line-height: 68px;
    line-height: 4.25rem;
  }
}
@media screen and (min-width: 1100px) {
  .section-title {
    font-size: 70px;
    font-size: 4.375rem;
    line-height: 79px;
    line-height: 4.9375rem;
  }
}
@media screen and (min-width: 1400px) {
  .section-title {
    font-size: 80px;
    font-size: 5rem;
    line-height: 90px;
    line-height: 5.625rem;
  }
}

.event-grid {
  display: grid;
  gap: 20px;
  width: calc(100% + 40px);
  margin: 0 0 0 -20px;
  padding: 0;
  list-style: none;
}
@media screen and (min-width: 800px) {
  .event-grid {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
  }
}
@media screen and (min-width: 1100px) {
  .event-grid {
    gap: 40px;
  }
}
@media screen and (min-width: 1400px) {
  .event-grid {
    gap: 80px;
  }
}

.event-card {
  transition: all 0.25s ease 0s;
  background-color: rgba(251, 206, 0, 0);
  border-top-right-radius: 80px;
}
.event-card:hover {
  background-color: #fbce00;
}

.event-card__link {
  display: block;
  padding: 20px 20px 40px 20px;
}
@media screen and (min-width: 800px) {
  .event-card__link {
    padding: 20px 20px 80px 20px;
  }
}

.event-card__title {
  font-size: 26px;
  font-size: 1.625rem;
  line-height: 30px;
  line-height: 1.875rem;
  margin: 20px 0 10px;
  font-family: "Poppins", Helvetica, Arial, sans-serif;
  font-weight: 700;
  font-style: normal;
  color: #589F41;
}
@media screen and (min-width: 800px) {
  .event-card__title {
    font-size: 30px;
    font-size: 1.875rem;
    line-height: 38px;
    line-height: 2.375rem;
    margin: 40px 0 10px;
  }
}

.event-card__date {
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 18px;
  line-height: 1.125rem;
  margin: 0;
  font-family: "Poppins", Helvetica, Arial, sans-serif;
  font-weight: 400;
  font-style: normal;
  color: #274D1C;
}
@media screen and (min-width: 800px) {
  .event-card__date {
    font-size: 20px;
    font-size: 1.25rem;
    line-height: 20px;
    line-height: 1.25rem;
  }
}

.event-card__image {
  border-top-right-radius: 60px;
  width: 100%;
  height: 320px;
  background-size: cover;
  background-position: center center;
}

.no-events {
  text-align: center;
}

.video__embed iframe {
  aspect-ratio: 16/9;
  width: 100%;
  height: auto;
}

.aligncenter {
  text-align: center;
}

.alignwide {
  width: auto;
  max-width: 1000%;
  margin-left: -20px;
  margin-right: -20px;
}
@media screen and (min-width: 800px) {
  .alignwide {
    margin-left: -50px;
    margin-right: -50px;
  }
}

.alignfull {
  width: auto;
  max-width: 1000%;
  margin-left: -20px;
  margin-right: -20px;
}
@media screen and (min-width: 800px) {
  .alignfull {
    margin-left: calc(50% - 50vw + 0px);
    margin-right: calc(50% - 50vw - 0px);
  }
}

.header {
  transition: all 0.25s ease 0s;
  grid-template-columns: 1fr 1fr;
  display: grid;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99999;
  width: 100%;
  background-color: #ffffff;
  height: 80px;
  padding: 0 20px;
}
@media screen and (min-width: 800px) {
  .header {
    padding: 0 50px;
  }
}
@media screen and (min-width: 1000px) {
  .header {
    height: 120px;
  }
}

.search-bar__wrap {
  display: none;
  position: absolute;
  top: 120px;
  left: 0;
  width: 100%;
  height: 80px;
  z-index: 2;
  background-color: #566153;
}
@media screen and (min-width: 1000px) {
  .search-bar__wrap {
    display: none;
  }
}
.search-bar__wrap.active {
  display: flex;
}

.search-form {
  height: 80px;
}

.search-field {
  height: 100%;
  width: 100%;
  border: none;
  padding: 0 100px 0 30px;
  background-color: #ffffff;
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 18px;
  line-height: 1.125rem;
  font-family: "Poppins", Helvetica, Arial, sans-serif;
  color: #566153;
  font-weight: 400;
  font-style: normal;
}
.search-field::-webkit-search-decoration, .search-field::-webkit-search-cancel-button, .search-field::-webkit-search-results-button, .search-field::-webkit-search-results-decoration {
  display: none;
}
.search-field::placeholder {
  color: rgba(86, 97, 83, 0.5);
}
.search-field:focus {
  outline: none;
}

.search-open {
  display: none;
  justify-content: center;
  align-items: center;
  margin: 0;
  padding: 0;
  width: 40px;
  height: 40px;
  background-color: transparent;
  border: none;
  cursor: pointer;
}
.search-open.active {
  display: flex;
}
.search-open svg {
  display: block;
  width: 20px;
  height: 20px;
}
.search-open .icon {
  fill: #ffffff;
}

.search-close {
  display: none;
  justify-content: center;
  align-items: center;
  margin: 0;
  padding: 0;
  width: 40px;
  height: 40px;
  background-color: transparent;
  border: none;
  cursor: pointer;
}
.search-close.active {
  display: flex;
}
.search-close svg {
  display: block;
  width: 20px;
  height: 20px;
}
.search-close .icon {
  stroke: #ffffff;
}

.footer {
  padding-bottom: 60px;
  background-color: #F1F5F0;
}
@media screen and (min-width: 800px) {
  .footer {
    padding-bottom: 60px;
  }
}

.connect {
  margin: 0 auto;
  padding-bottom: 20px;
  width: 100%;
  max-width: 800px;
}

.connect__header {
  position: relative;
  mix-blend-mode: multiply;
  margin-bottom: 0;
  top: -30px;
  width: 300px;
  margin: 0 auto;
}
@media screen and (min-width: 500px) {
  .connect__header {
    top: -50px;
    width: 500px;
  }
}
@media screen and (min-width: 800px) {
  .connect__header {
    margin-bottom: 20px;
    top: -80px;
    width: auto;
  }
}

.connect__form form {
  position: relative;
}
.connect__form .gfield {
  margin: 0px !important;
}
.connect__form .ginput_container_email {
  position: relative;
}
.connect__form .ginput_container_email::before {
  position: absolute;
  top: 15px !important;
  left: 15px !important;
  width: 100%;
  height: 60px;
  background-color: #FBCE00;
  border-radius: 30px;
  content: "";
  z-index: 0;
}
@media screen and (min-width: 800px) {
  .connect__form .ginput_container_email::before {
    top: 20px !important;
    left: 20px !important;
    border-radius: 40px;
    height: 80px;
  }
}
.connect__form .gfield input {
  position: relative;
  z-index: 1;
  transition: all 0.25s ease 0s;
  border: 1px solid transparent !important;
  padding: 0 140px 0 20px !important;
  height: 60px !important;
  box-shadow: none !important;
  background-color: #ffffff !important;
  border-radius: 30px !important;
  font-size: 18px !important;
  line-height: 18px !important;
  font-weight: 400 !important;
}
.connect__form .gfield input::placeholder {
  color: rgba(86, 97, 83, 0.5);
}
.connect__form .gfield input:focus {
  outline: none !important;
  background-color: rgba(86, 97, 83, 0.03);
}
@media screen and (min-width: 800px) {
  .connect__form .gfield input {
    height: 80px !important;
    padding: 0 180px 0 30px !important;
    border-radius: 40px !important;
  }
}
.connect__form .gform_footer {
  position: absolute;
  top: 0;
  right: 0;
  margin: 0 !important;
  z-index: 2;
}
.connect__form .gfield_description {
  margin-top: 30px !important;
}
.connect__form .button {
  margin: 10px !important;
  height: 40px !important;
  width: 120px !important;
  min-width: 120px !important;
  border-radius: 20px !important;
  border: 1px solid #589F41 !important;
  background: transparent !important;
  padding: 0 !important;
  font-size: 18px !important;
  line-height: 18px !important;
  font-weight: 600 !important;
  color: #589F41 !important;
}
@media screen and (min-width: 800px) {
  .connect__form .button {
    height: 60px !important;
    width: 180px !important;
    border-radius: 30px !important;
  }
}

.footer__grid {
  display: grid;
  gap: 20px;
}
@media screen and (min-width: 800px) {
  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 60px;
  }
}

.copyright {
  font-size: 16px;
  font-size: 1rem;
  line-height: 16px;
  line-height: 1rem;
  font-weight: 500;
  color: #566153;
  text-align: center;
}
@media screen and (min-width: 800px) {
  .copyright {
    text-align: left;
  }
}

.social-links {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (min-width: 800px) {
  .social-links {
    justify-content: end;
  }
}

.social-links__icon {
  display: block;
  margin: 0 15px;
}
@media screen and (min-width: 800px) {
  .social-links__icon {
    margin: 0 0 0 30px;
  }
}
.social-links__icon svg {
  transition: all 0.25s ease 0s;
  display: block;
  width: 24px;
  fill: #589F41;
}
.social-links__icon:hover svg {
  fill: #23740B;
}

.footer-menu {
  margin: 40px 0 40px 0;
}
@media screen and (min-width: 800px) {
  .footer-menu {
    margin: 60px 0 80px 0;
  }
}
.footer-menu .footer-menu__container {
  display: flex;
  justify-content: center;
}
.footer-menu .menu {
  display: flex;
  list-style: none;
  align-items: center;
  margin: 0;
  padding: 0;
}
@media screen and (min-width: 800px) {
  .footer-menu .menu {
    align-items: center;
  }
}
.footer-menu .menu-item {
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 18px;
  line-height: 1.125rem;
  font-weight: 600;
  margin: 0 10px;
}
@media screen and (min-width: 800px) {
  .footer-menu .menu-item {
    margin: 0 0 0 20px;
  }
}
.footer-menu .menu-item a {
  transition: all 0.25s ease 0s;
  color: #589F41;
}
.footer-menu .menu-item a:hover {
  color: #23740B;
}

.primary-menu {
  display: grid;
  grid-column: 1/1;
  grid-row: 1/1;
}
@media screen and (min-width: 1000px) {
  .primary-menu {
    position: relative;
    top: auto;
    left: auto;
    padding: 0;
    background-color: transparent;
    width: auto;
    height: auto;
  }
}
.primary-menu .menu {
  list-style: none;
  margin: 0;
  padding: 0;
}
@media screen and (min-width: 1000px) {
  .primary-menu .menu {
    display: flex;
  }
}
.primary-menu .menu .menu-item {
  position: relative;
}
@media screen and (min-width: 1000px) {
  .primary-menu .menu .menu-item {
    margin: 0 0 0 60px;
  }
}
.primary-menu .menu .menu-item a {
  display: inline-flex;
  transition: all 0.25s ease 0s;
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 18px;
  line-height: 1.125rem;
  font-weight: 600;
  color: #589F41;
  padding: 3px 0;
  border-bottom: 3px solid rgba(251, 206, 0, 0);
}
@media screen and (min-width: 800px) {
  .primary-menu .menu .menu-item a {
    font-size: 20px;
    font-size: 1.25rem;
    line-height: 20px;
    line-height: 1.25rem;
  }
}
.primary-menu .menu .menu-item a:hover {
  color: #23740B;
  border-bottom: 3px solid #fbce00;
}

.menu-wrap {
  display: none;
  position: absolute;
  top: 80px;
  left: 0;
  background-color: #ffffff;
  width: 100%;
  padding: 20px;
}
.menu-wrap.active {
  display: flex;
}
@media screen and (min-width: 800px) {
  .menu-wrap {
    padding: 50px;
  }
}
@media screen and (min-width: 1000px) {
  .menu-wrap {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    top: auto;
    left: auto;
    width: auto;
    padding: 0;
  }
}

.menu-toggle {
  position: absolute;
  right: 12px;
  display: flex;
  border: 0;
  margin: 0;
  padding: 15px 8px;
  background-color: transparent;
  cursor: pointer;
  width: 50px;
  height: 50px;
  background-repeat: no-repeat;
  background-size: 34px 20px;
  background-position: center center;
  justify-self: end;
  margin: 0;
}
.menu-toggle .hamburger {
  fill: #589F41;
}
@media screen and (min-width: 800px) {
  .menu-toggle {
    right: 42px;
  }
}
@media screen and (min-width: 1000px) {
  .menu-toggle {
    display: none;
  }
}

.btn {
  transition: all 0.25s ease 0s;
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  background-color: #566153;
  border: 2px solid #566153;
  min-width: 200px;
  height: 46px;
  padding: 0 36px;
  overflow: hidden;
  border-radius: 23px;
  font-size: 16px;
  font-size: 1rem;
  line-height: 16px;
  line-height: 1rem;
  color: #ffffff;
  font-weight: 700;
  font-family: "Poppins", Helvetica, Arial, sans-serif;
}
.btn:hover {
  border: 2px solid #274D1C;
  background-color: #274D1C;
}
.btn--outline {
  border: 2px solid #566153;
  background-color: transparent;
  color: #566153;
}
.btn--outline:hover {
  border: 2px solid #566153;
  background-color: #566153;
  color: #ffffff;
}
.btn--secondary {
  background-color: #566153;
  border: 2px solid #566153;
}
.btn--secondary:hover {
  border: 2px solid #000000;
  background-color: #000000;
}
.btn--connect {
  background-color: #566153;
  border: 2px solid #566153;
  color: #000000;
}
.btn--connect:hover {
  border: 2px solid #274D1C;
  background-color: #274D1C;
}

.contact-form .form__main {
  flex: 1;
}
.contact-form .gfield {
  margin-bottom: 40px !important;
}
.contact-form .gfield--type-textarea {
  margin-bottom: 10px !important;
}
.contact-form .gfield input {
  transition: all 0.25s ease 0s;
  border: 1px solid #566153 !important;
  background-color: white;
}
.contact-form .gfield input:focus {
  outline: none !important;
  border: 1px solid #274D1C !important;
}
.contact-form .gfield textarea.large {
  transition: all 0.25s ease 0s;
  border: 1px solid #566153 !important;
  background-color: white;
  height: 100% !important;
}
.contact-form .gfield textarea.large:focus {
  outline: none !important;
  border: 1px solid #274D1C !important;
}
.contact-form .gfield_label {
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 18px;
  line-height: 1.125rem;
  margin: 0 0 3px !important;
  color: #566153;
  font-weight: 500 !important;
}
.contact-form .gform-field-label--type-sub {
  color: #566153 !important;
}
.contact-form .gfield_description {
  margin-top: 0px !important;
  color: #566153 !important;
}
.contact-form .gfield_checkbox label {
  font-size: 16px !important;
  color: #566153 !important;
  font-weight: 400 !important;
}
.contact-form .gfield-choice-input {
  width: 16px !important;
  height: 16px !important;
  border: 1px solid #566153 !important;
  background-color: transparent !important;
}
.contact-form .gchoice {
  margin-bottom: 8px;
}

.button {
  transition: all 0.25s ease 0s;
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  background-color: #589F41 !important;
  border: 0 !important;
  min-width: 180px !important;
  height: 46px !important;
  padding: 0 30px !important;
  border-radius: 23px !important;
  font-size: 20px !important;
  line-height: 20px !important;
  margin: 0 !important;
  color: #ffffff;
  font-weight: 400;
  font-family: "Poppins", Helvetica, Arial, sans-serif;
}
.button:hover {
  background-color: #23740B !important;
}

.logo {
  display: inline-flex;
  align-items: center;
}

.logo__icon {
  display: block;
  height: 60px;
  flex-shrink: 0;
}
@media screen and (min-width: 1000px) {
  .logo__icon {
    height: 100px;
  }
}

.logo__text {
  display: block;
  margin-left: 10px;
  flex-shrink: 0;
}
@media screen and (min-width: 1000px) {
  .logo__text {
    margin-left: 16px;
  }
}

.banner {
  position: relative;
  display: grid;
  place-items: center;
  padding: 60px 0;
  background-color: #589F41;
  height: 100%;
  min-height: 200px;
}
@media screen and (min-width: 800px) {
  .banner {
    padding: 120px 0;
    min-height: 300px;
  }
}
.banner--home {
  min-height: 300px;
  background-color: transparent;
}
@media screen and (min-width: 800px) {
  .banner--home {
    min-height: 500px;
  }
}
.banner--home .banner__headline {
  font-size: 60px;
  font-size: 3.75rem;
  line-height: 60px;
  line-height: 3.75rem;
  color: #589F41;
}
@media screen and (min-width: 500px) {
  .banner--home .banner__headline {
    font-size: 70px;
    font-size: 4.375rem;
    line-height: 70px;
    line-height: 4.375rem;
  }
}
@media screen and (min-width: 800px) {
  .banner--home .banner__headline {
    font-size: 80px;
    font-size: 5rem;
    line-height: 80px;
    line-height: 5rem;
  }
}
@media screen and (min-width: 1100px) {
  .banner--home .banner__headline {
    font-size: 90px;
    font-size: 5.625rem;
    line-height: 90px;
    line-height: 5.625rem;
  }
}
@media screen and (min-width: 1400px) {
  .banner--home .banner__headline {
    font-size: 100px;
    font-size: 6.25rem;
    line-height: 100px;
    line-height: 6.25rem;
  }
}

.banner__container {
  position: relative;
  z-index: 2;
  margin: 0 auto;
  padding: 0 20px;
  max-width: 1500px;
}
@media screen and (min-width: 800px) {
  .banner__container {
    padding: 0 50px;
  }
}

.banner__headline {
  font-size: 50px;
  font-size: 3.125rem;
  line-height: 50px;
  line-height: 3.125rem;
  margin: 0;
  color: #ffffff;
  font-weight: 700;
  font-family: "Poppins", Helvetica, Arial, sans-serif;
}
@media screen and (min-width: 500px) {
  .banner__headline {
    font-size: 60px;
    font-size: 3.75rem;
    line-height: 60px;
    line-height: 3.75rem;
  }
}
@media screen and (min-width: 800px) {
  .banner__headline {
    font-size: 70px;
    font-size: 4.375rem;
    line-height: 70px;
    line-height: 4.375rem;
  }
}
@media screen and (min-width: 1100px) {
  .banner__headline {
    font-size: 80px;
    font-size: 5rem;
    line-height: 80px;
    line-height: 5rem;
  }
}

.banner__image {
  width: 100%;
  height: 300px;
  background-size: cover;
  background-position: center center;
}
@media screen and (min-width: 500px) {
  .banner__image {
    height: 400px;
  }
}
@media screen and (min-width: 800px) {
  .banner__image {
    height: 500px;
  }
}
@media screen and (min-width: 1100px) {
  .banner__image {
    height: 700px;
  }
}
@media screen and (min-width: 1400px) {
  .banner__image {
    height: 800px;
  }
}

@media screen and (min-width: 800px) {
  .contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 60px;
  }
}
.contact-grid span {
  text-transform: uppercase;
}
.contact-grid a {
  transition: all 0.25s ease 0s;
  color: #566153;
}
.contact-grid a:link,
.contact-grid a:visited {
  color: #566153;
  text-decoration: none;
}
.contact-grid a:hover {
  color: #566153;
  text-decoration: underline;
}
.contact-grid a:hover.button {
  color: #ffffff;
  text-decoration: none;
}

.page-template-contact .flex-content {
  margin-top: 60px;
}
.page-template-contact .flex-content--flat {
  margin: 0;
}

.contact__form {
  margin-top: 20px;
  margin-bottom: 60px;
}
.contact__form input[type=submit] {
  transition: all 0.25s ease 0s;
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 20px;
  line-height: 1.25rem;
  font-weight: 400;
  text-transform: uppercase;
  padding: 25px 30px;
  border-radius: 0 10px 0 0;
  background-color: #566153;
  border: 0;
}
.contact__form input[type=submit]:hover {
  background-color: #566153;
}
