/*!
	PLEASE DO NOT EDIT STYLE.CSS - YOUR EDITS WILL BE OVERWRITTEN
	Always edit style.scss and compile (see sass-lang.com for more info)

	@author development@bronte.co.nz
*/
@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");
/*
    Variables
*/
/*
    Animations, Mixins etc.
*/
.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

.w100p {
  width: 100%;
}

.h100p {
  height: 100%;
}

.bg-white {
  background-color: #fff !important;
}

.c-white {
  color: #fff;
}

.posr {
  position: relative;
}

.z-item {
  z-index: 10;
}

.z-item-max {
  z-index: 15;
}

.last {
  margin-bottom: 0;
}

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

.bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 15;
}

.btn,
button,
input[type=submit] {
  -webkit-appearance: none;
  border-radius: 0;
  display: inline-block;
  font-size: 16px;
  font-weight: 700;
  font-family: inherit;
  padding: 16px 24px;
  line-height: 1.5;
  cursor: pointer;
  transition: 0.2s all;
  border: 0;
  font-family: "Inter", sans-serif;
  text-align: center;
  border-radius: 8px;
}
.btn:focus,
button:focus,
input[type=submit]:focus {
  outline: none;
}
.btn.btn-primary,
button.btn-primary,
input[type=submit].btn-primary {
  background-color: #A8E063;
  color: #000;
  border: 2px solid #A8E063;
}
.btn.btn-primary:hover,
button.btn-primary:hover,
input[type=submit].btn-primary:hover {
  background-color: rgb(144.2727272727, 215.5454545455, 56.4545454545);
}
.btn.btn-primary:active,
button.btn-primary:active,
input[type=submit].btn-primary:active {
  background-color: rgb(118.1818181818, 184.3636363636, 36.6363636364);
}
.btn.btn-secondary,
button.btn-secondary,
input[type=submit].btn-secondary {
  background-color: transparent;
  border: 2px solid #56AB2F;
  color: #56AB2F;
}
.btn.btn-secondary:hover,
button.btn-secondary:hover,
input[type=submit].btn-secondary:hover {
  background-color: #56AB2F;
  color: #fff;
}
.btn.btn-secondary:active,
button.btn-secondary:active,
input[type=submit].btn-secondary:active {
  background-color: rgb(65.880733945, 130.995412844, 36.004587156);
  color: #fff;
}

.gform-button {
  background-color: #A8E063 !important;
  color: #000 !important;
  font-weight: 700 !important;
}
.gform-button:hover {
  background-color: rgb(144.2727272727, 215.5454545455, 56.4545454545) !important;
}
.gform-button:active {
  background-color: rgb(118.1818181818, 184.3636363636, 36.6363636364) !important;
}

.menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 14px;
}
.menu-main li {
  margin-left: 30px;
}
.menu-main a {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}
.menu-mobile {
  flex-direction: column;
}
.menu-mobile li {
  margin-bottom: 10px;
}
.menu-mobile a {
  font-weight: 700;
  color: #000;
  font-size: 16px;
}
.menu-footer {
  flex-direction: column;
}
.menu-footer li {
  margin-bottom: 10px;
  position: relative;
}
.menu-footer a {
  line-height: 1.428;
  font-weight: 400;
}
.menu-header {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 16px;
  gap: 24px;
}
.menu-header a {
  line-height: 1.428;
  font-weight: 700;
  color: #000;
}
.menu-header a:hover {
  color: #A8E063;
}
.menu-header .current-menu-item a {
  color: #56AB2F;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--wp-admin--admin-bar--height); /**
* @link https://make.wordpress.org/core/2022/01/07/theme-focused-changes-and-filters-in-wordpress-5-9/#adjusting-for-fixed-header-navigation
*/
}

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

body {
  font-family: "Inter", sans-serif;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  color: #111111;
  display: flex;
  flex-direction: column;
  margin: 0;
}

a {
  transition: 0.2s ease-in-out;
  text-decoration: none;
}
a:hover {
  text-decoration: none;
}

main {
  flex: 1;
}

svg,
img {
  max-width: 100%;
  height: auto;
  display: block;
}

p img {
  display: inline-block;
}

.text > :first-child {
  margin-top: 0;
}
.text > :last-child {
  margin-bottom: 0;
}
.text ol,
.text ul {
  line-height: inherit;
  padding-left: 20px;
}
.text li:last-child {
  margin-bottom: 0;
}

h1,
h2,
h3,
h4,
h5 {
  margin-top: 0;
}

h1, .h1 {
  font-size: 48px;
  line-height: 1.2;
  font-weight: bold;
}
@media screen and (max-width: 992px) {
  h1, .h1 {
    font-size: 36px;
  }
}
@media screen and (max-width: 768px) {
  h1, .h1 {
    font-size: 30px;
  }
}

h2, .h2 {
  font-size: 36px;
  line-height: 1.3;
  font-weight: bold;
}
@media screen and (max-width: 992px) {
  h2, .h2 {
    font-size: 30px;
  }
}
@media screen and (max-width: 768px) {
  h2, .h2 {
    font-size: 24px;
  }
}

h3, .h3 {
  font-size: 24px;
  line-height: 1.4;
  font-weight: bold;
}
@media screen and (max-width: 992px) {
  h3, .h3 {
    font-size: 20px;
  }
}
@media screen and (max-width: 768px) {
  h3, .h3 {
    font-size: 18px;
  }
}

h4, .h4 {
  font-size: 20px;
  line-height: 1.5;
  font-weight: bold;
}
@media screen and (max-width: 992px) {
  h4, .h4 {
    font-size: 18px;
  }
}
@media screen and (max-width: 768px) {
  h4, .h4 {
    font-size: 16px;
  }
}

h5, .h5 {
  font-size: 18px;
  line-height: 1.6;
  font-weight: bold;
}
@media screen and (max-width: 992px) {
  h5, .h5 {
    font-size: 16px;
  }
}
@media screen and (max-width: 768px) {
  h5, .h5 {
    font-size: 14px;
  }
}

h6, .h6 {
  font-size: 16px;
  line-height: 1.7;
  font-weight: bold;
}
@media screen and (max-width: 992px) {
  h6, .h6 {
    font-size: 14px;
  }
}
@media screen and (max-width: 768px) {
  h6, .h6 {
    font-size: 12px;
  }
}

@media (min-width: 768px) {
  .alignleft,
  img.alignleft {
    float: left;
    margin-right: 1em;
    margin-bottom: 1em;
  }
}

@media (min-width: 768px) {
  .alignright,
  img.alignright {
    float: right;
    margin-left: 1em;
    margin-bottom: 1em;
  }
}

.aligncenter,
img.aligncenter {
  margin: 1em auto;
}

.text--green {
  color: #A8E063;
}
.text--green-alt {
  color: #56AB2F;
}

.wysiwyg h1, .wysiwyg h2, .wysiwyg h3, .wysiwyg h4, .wysiwyg h5, .wysiwyg h6 {
  margin-top: 0;
  margin-bottom: 16px;
  color: #56AB2F;
}
.wysiwyg a {
  color: #A8E063;
  font-weight: 700;
}
.wysiwyg a:hover {
  color: #56AB2F;
}

.side-menu {
  position: fixed;
  pointer-events: none;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 750;
  transition: all ease-in-out 0.4s;
  width: 100vw;
  border-left: 4px solid #56AB2F;
}
@media (min-width: 576px) {
  .side-menu {
    width: 410px;
  }
}
.side-menu .header-cta-mobile {
  margin-top: 24px;
}
.side-menu .header-cta-mobile .btn {
  width: 100%;
  display: block;
  font-size: 16px;
  font-weight: 700;
  text-align: center;
  padding: 16px 0;
}
.side-menu .side-menu-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 48px;
  height: 48px;
  background: #A8E063;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}
.side-menu .side-menu-close .icon-close {
  color: #000;
  font-size: 2rem;
  line-height: 1;
}
.side-menu .inner {
  background: #fff;
  height: 100vh;
  padding: 40px 24px;
  overflow: auto;
}
.side-menu .inner .menu-mobile {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.opened .side-menu {
  transform: translateX(0) !important;
  pointer-events: all;
}

.menu-opener {
  z-index: 50;
  cursor: pointer;
  position: relative;
  width: 40px;
  height: 40px;
  aspect-ratio: 1/1;
  flex: 0 0 40px;
  border: none;
  margin-left: auto;
  background: #A8E063;
  display: flex;
  align-items: center;
  justify-content: center;
}
.menu-opener .icon-menu {
  color: #000;
}
.menu-opener:before, .menu-opener:after {
  content: "";
  backface-visibility: hidden;
  transition: all 0.4s;
  background: #000;
  height: 3px;
  left: 9px;
  right: 9px;
  top: 13px;
  position: absolute;
}
.menu-opener:before {
  box-shadow: 0 13px 0 0 #000;
}
.menu-opener:after {
  top: 19px;
}
.opened .menu-opener:before {
  box-shadow: 0 0 0 0 transparent;
  transform: rotate(225deg);
  top: 19px;
}
.opened .menu-opener:after {
  transform: rotate(315deg);
  top: 19px;
}

header {
  margin-top: 24px;
  margin-bottom: 40px;
}
header .right {
  gap: 24px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
@media screen and (max-width: 1200px) {
  header .right {
    display: none;
  }
}

footer {
  margin-top: 24px;
  margin-bottom: 80px;
}
footer .col-12 {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 24px;
}
footer p {
  margin: 0;
  font-weight: 700;
}

.hidden_label label {
  display: none;
}

.gform_submission_error {
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 20px;
}

.gfield_validation_message {
  position: relative;
  top: 2px;
  font-size: 12px;
}

.gform_footer {
  display: flex;
  align-items: center;
  padding-top: 30px;
}
.gform_footer img {
  position: absolute;
  right: -20px;
  top: 40px;
}

.gform_fields {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -12px;
}

.gfield {
  padding: 0 12px;
  width: 100%;
  margin-bottom: 10px;
}

.gform_fields > .gfield:last-child {
  margin-bottom: 6px;
}

.gfield_label {
  font-size: 12px;
  display: block;
  margin-bottom: 2px;
  line-height: 18px;
  font-weight: 300;
}

.gfield--width-half {
  width: 100%;
  max-width: 100%;
  flex: 0 0 100%;
}
@media (min-width: 768px) {
  .gfield--width-half {
    max-width: 50%;
    flex: 0 0 50%;
  }
}

select,
textarea,
input[type=text],
input[type=email] {
  border: 0;
  display: block;
  width: 100%;
  font-size: 18px;
  border-radius: 0;
  height: 40px;
  padding: 0 0 0 26px;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  color: #959a9e;
}
select:focus,
textarea:focus,
input[type=text]:focus,
input[type=email]:focus {
  outline: none;
}

textarea {
  height: 88px;
  resize: none;
  padding-top: 8px;
}

fieldset {
  border: 0;
  padding: 0;
  margin: 0;
}

legend {
  padding: 0;
}

.gfield_checkbox {
  display: flex;
  flex-wrap: wrap;
}

.ginput_container_checkbox {
  margin-top: 8px;
}

.gfield-choice-input {
  display: none;
}
.gfield-choice-input + label {
  position: relative;
  padding-left: 34px;
  line-height: 26px;
  cursor: pointer;
}
.gfield-choice-input + label:before {
  content: "";
  width: 24px;
  height: 24px;
  position: absolute;
  left: 0;
  top: -4px;
}
.gfield-choice-input:checked + label:after {
  position: absolute;
  content: "";
  left: 3px;
  top: 3px;
  width: 16px;
  height: 18px;
}

.gchoice {
  margin-right: 10px;
}

select {
  -webkit-appearance: none;
  background: transparent no-repeat calc(100% - 22px) 50%;
  font-size: 16px;
  font-family: "Inter", sans-serif;
  padding-right: 15px;
  border: 0;
}

.s-footer-cta {
  margin-top: 80px;
  margin-bottom: 80px;
}
.s-footer-cta h2 {
  margin-bottom: 16px;
  font-weight: 800;
  color: #56AB2F;
}
.s-footer-cta p {
  font-size: 16px;
  margin-bottom: 24px;
  font-weight: 700;
  margin-bottom: 0;
}
.s-footer-cta .gform_wrapper {
  width: 100%;
  --gf-form-gap-y: 16px;
}

.s-page-hero {
  margin-top: 40px;
  margin-bottom: 40px;
}
.s-page-hero .subtitle {
  margin-bottom: 16px;
  margin-top: 0px;
}
.s-page-hero .title {
  margin-top: 0px;
  margin-bottom: 16px;
}
.s-page-hero .above-the-fold-copy {
  margin-bottom: 24px;
  font-size: 18px;
}
.s-page-hero .buttons {
  display: flex;
  gap: 16px;
}
@media screen and (max-width: 768px) {
  .s-page-hero .buttons {
    flex-direction: column;
    margin-bottom: 24px;
  }
  .s-page-hero .buttons .btn {
    width: 100%;
  }
}
.s-page-hero .form-holder {
  padding: 40px;
  border-radius: 10px;
  background: #56AB2F;
}
.s-page-hero .form-holder .gform_wrapper {
  --gf-form-gap-y: 16px;
}
.s-page-hero .form-holder .gform_wrapper .button {
  background-color: #A8E063 !important;
  color: #000 !important;
  font-weight: 700 !important;
  margin: auto !important;
}
.s-page-hero .form-holder .gform_wrapper .button:hover {
  background-color: rgb(144.2727272727, 215.5454545455, 56.4545454545) !important;
}
.s-page-hero .form-holder .gform_wrapper .button:active {
  background-color: rgb(118.1818181818, 184.3636363636, 36.6363636364) !important;
}

.s-wysiwyg {
  margin-bottom: 40px;
  margin-bottom: 40px;
}

.s-cta {
  margin-top: 40px;
  margin-bottom: 40px;
}
.s-cta .title {
  margin: 0;
  margin-bottom: 16px;
  font-weight: 800;
  color: #fff;
}
.s-cta .text {
  margin-bottom: 24px;
  font-size: 18px;
  font-weight: 800;
  color: #fff;
}
.s-cta .holder {
  background: #56AB2F;
  padding: 40px;
  border-radius: 10px;
  position: relative;
}
@media screen and (max-width: 1200px) {
  .s-cta .holder {
    padding: 30px;
  }
}
.s-cta .holder .logo-mask {
  position: absolute;
  top: 0px;
  right: 40px;
  height: 100%;
}
@media screen and (max-width: 1200px) {
  .s-cta .holder .logo-mask {
    display: none;
  }
}
.s-cta .form-holder .gform_wrapper {
  --gf-form-gap-y: 16px;
}
.s-cta .form-holder .gform_wrapper .button {
  background-color: #A8E063 !important;
  color: #000 !important;
  font-weight: 700 !important;
  margin: auto !important;
}
.s-cta .form-holder .gform_wrapper .button:hover {
  background-color: rgb(144.2727272727, 215.5454545455, 56.4545454545) !important;
}
.s-cta .form-holder .gform_wrapper .button:active {
  background-color: rgb(118.1818181818, 184.3636363636, 36.6363636364) !important;
}

.s-image-slider {
  margin-top: 60px;
  margin-bottom: 60px;
}
.s-image-slider img {
  display: block;
  height: 290px;
  width: auto;
}

.s-benefits {
  margin-top: 40px;
  margin-bottom: 40px;
}
.s-benefits .header-section {
  gap: 16px;
  margin-bottom: 40px;
}
.s-benefits .header-section h2, .s-benefits .header-section p {
  margin: 0;
}
.s-benefits .benefit-item {
  display: flex;
  flex-direction: column;
  margin-bottom: 24px;
}
.s-benefits .benefit-item img {
  width: 40px;
  margin-bottom: 16px;
}
.s-benefits .benefit-item h3 {
  margin-top: 0;
  margin-bottom: 8px;
  font-weight: 700;
}
.s-benefits .benefit-item p {
  font-size: 16px;
  margin: 0;
  color: #000;
}

.s-2-col {
  margin-top: 40px;
  margin-bottom: 40px;
}
.s-2-col .extras {
  display: flex;
  gap: 16px;
}
@media screen and (max-width: 768px) {
  .s-2-col .extras {
    flex-direction: column;
  }
  .s-2-col .extras a {
    width: 100%;
  }
}

/*
	Page-specific styling. Please use as little as possible to ensure DRYness.
*/

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