:root {
  --sandy-brown-2: #fff;
  --dark-khaki: #2da1e8;
  --steel-blue: #3b99d9;
  --steel-blue-2: #2e80b6;
  --medium-sea-green: #30ad64;
  --light-sea-green: #25ccbf;
  --light-sea-green-2: #20ac99;
  --sandy-brown: #f8c740;
  --goldenrod: #e2a62b;
  --khaki: #face6a;
  --salmon: #fd7072;
  --indian-red: #cf404d;
  --tan: #d39f9a;
  --dim-gray: #735260;
  --indian-red-2: #af4173;
  --brown: #822e50;
  --tomato: #e64c40;
  --firebrick: #bf3a30;
  --salmon-2: #fc7d64;
  --white-smoke: #ecf0f1;
  --silver: #bec3c7;
  --dim-gray-2: #49647b;
  --dark-slate-gray: #2d3e4f;
  --dark-slate-gray-2: #404047;
  --white-smoke-2: #f0f0f0;
  --white-smoke-3: #edeff2;
  --cadet-blue: #668cad;
  --pale-turquoise: #bfe0ff;
  --light-sky-blue: #69b9ff;
  --dodger-blue: #2e9dff;
  --black: #192024;
  --dim-gray-3: #676770;
  --light-slate-gray: #8e8e9c;
}

.w-layout-grid {
  grid-row-gap: 16px;
  grid-column-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.w-layout-blockcontainer {
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

@media screen and (max-width: 991px) {
  .w-layout-blockcontainer {
    max-width: 728px;
  }
}

@media screen and (max-width: 767px) {
  .w-layout-blockcontainer {
    max-width: none;
  }
}

body {
  color: #6a859c;
  background-color: #edeff2;
  font-family: Open Sans, sans-serif;
  font-size: 16px;
  line-height: 20px;
}

h1 {
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 38px;
  font-weight: 700;
  line-height: 44px;
}

h2 {
  color: #676770;
  text-align: center;
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 32px;
  font-weight: 300;
  line-height: 36px;
}

h3 {
  color: #676770;
  letter-spacing: 7px;
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 20px;
  font-weight: 300;
  line-height: 30px;
}

h4 {
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 18px;
  font-weight: 700;
  line-height: 24px;
}

h5 {
  color: #676770;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 20px;
  font-size: 18px;
  font-weight: 300;
  line-height: 20px;
}

h6 {
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 12px;
  font-weight: 700;
  line-height: 18px;
}

p {
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 14px;
  font-weight: 300;
  line-height: 25px;
}

.button {
  color: #fff;
  text-align: center;
  letter-spacing: 2px;
  text-transform: uppercase;
  background-color: #69b9ff;
  border-radius: 4px;
  margin-left: 10px;
  margin-right: 10px;
  padding: 12px 30px;
  font-size: 16px;
  font-weight: 300;
  line-height: 21px;
  text-decoration: none;
  transition: background-color .3s;
  display: inline-block;
}

.button:hover {
  background-color: #2e9dff;
}

.button.w--current {
  background-color: #2e80b6;
}

.button.full-width {
  width: 100%;
  margin-left: 0;
  margin-right: 0;
  display: block;
}

.button.tab {
  background-color: #92a0ad;
  margin-left: 8px;
  margin-right: 8px;
}

.button.tab:hover, .button.tab.w--current {
  background-color: #2e80b6;
}

.navigation-link {
  color: #131d44;
  padding-top: 40px;
  font-family: quincy-cf, sans-serif;
  font-size: 18px;
  transition: all .3s ease-in-out;
}

.navigation-link:hover {
  color: #00d2e2;
}

.navigation-link.w--current {
  color: #131d44;
  letter-spacing: 0;
  padding-top: 40px;
  font-family: quincy-cf, sans-serif;
  font-size: 18px;
}

.navigation-link.w--current:hover {
  color: #00d2e2;
  -webkit-text-stroke-color: #948d71;
}

.navigation-link.w--current:active {
  color: #f76666;
}

.navigation-bar {
  background-color: #fff;
  padding-top: 0;
  padding-bottom: 0;
}

.brand-text {
  color: #69b9ff;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Open Sans, sans-serif;
  font-size: 25px;
  font-weight: 300;
  line-height: 25px;
}

.brand-link {
  padding-top: 16px;
  padding-bottom: 16px;
}

.brand-link.w--current {
  max-width: 300px;
}

.section {
  text-align: center;
  background-color: #fff;
  padding: 100px 10px;
  position: relative;
}

.section.accent {
  background-color: #192024;
}

.white-box {
  text-align: center;
  background-color: #fff;
  border: 1px solid #758e9c;
  border-radius: 5px;
  padding: 15px;
}

.white-box.transparent {
  background-color: #0000;
  border-style: none;
}

.hero-section {
  padding-top: 242px;
  padding-bottom: 242px;
}

.hero-section.centered {
  color: #fff;
  text-align: center;
  -webkit-text-fill-color: inherit;
  background-image: linear-gradient(#00000036, #00000036), url('../images/blue-background-1.png');
  background-position: 0 0, 50% 0;
  background-size: auto, cover;
  background-clip: border-box;
  border-bottom: 4px solid #fff;
  border-radius: 0;
  padding-top: 100px;
  padding-bottom: 100px;
}

.hero-heading {
  color: #fff;
  letter-spacing: 0;
  text-transform: uppercase;
  margin-top: 40px;
  margin-bottom: 40px;
  font-family: Lato, sans-serif;
  font-size: 60px;
  font-weight: 400;
  line-height: 70px;
}

.hero-subheading {
  color: #2e9dff;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 40px;
  font-size: 25px;
  font-weight: 300;
  line-height: 25px;
}

.hollow-button {
  color: #fff;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: 1px solid #fff;
  border-radius: 4px;
  margin-left: 10px;
  margin-right: 10px;
  padding: 10px 30px;
  font-weight: 300;
  line-height: 21px;
  text-decoration: none;
  transition: background-color .3s, border .3s, color .3s;
  display: inline-block;
}

.hollow-button:hover {
  color: #2e9dff;
  border-color: #2e9dff;
}

.hollow-button.all-caps {
  text-transform: uppercase;
}

.section-heading {
  margin-top: 0;
  margin-bottom: 16px;
}

.section-heading.centered {
  color: #00394f;
  text-align: center;
  letter-spacing: 2px;
  text-transform: capitalize;
  font-family: quincy-cf, sans-serif;
  font-size: 70px;
  font-weight: 400;
  line-height: 60px;
}

.section-heading.centered.white {
  color: #fff;
}

.section-heading.centered-copy {
  color: #758e9c;
  text-align: left;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-family: Lato, sans-serif;
  font-size: 35px;
  font-weight: 900;
}

.section-heading.centered-copy.white {
  color: #fff;
}

.section-subheading.center {
  color: #8e8e9c;
  text-align: center;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-size: 18px;
  font-weight: 300;
}

.section-subheading.center.off-white {
  color: #e8e8e8;
  padding-bottom: 0;
}

.section-title-group {
  margin-bottom: 60px;
}

.form-field {
  border: 0 solid #000;
  border-radius: 3px;
  height: 45px;
  margin-bottom: 17px;
  box-shadow: 0 0 0 1px #4040474d;
}

.form-field.text-area {
  height: 110px;
}

.footer {
  background-color: #948d71;
  padding-top: 35px;
  padding-bottom: 35px;
}

.footer.center {
  text-align: center;
  background-color: #383838;
  border-top: 1px solid #dbdbdb;
}

.footer-text {
  color: #9e9e9e;
  margin-top: 5px;
  margin-bottom: 5px;
  font-size: 16px;
}

.grid-image {
  background-color: #69b9ff;
  border: 10px solid #fff;
  border-radius: 50%;
  width: 35%;
  margin: 20px auto;
  padding: 20px;
  display: block;
  box-shadow: 0 0 0 1px #2e9dff;
}

.info-icon {
  float: left;
}

.footer-link {
  color: #668cad;
  border-bottom: 1px solid #d5d5e0;
  margin-bottom: 6px;
  padding-bottom: 10px;
  font-size: 14px;
  font-weight: 300;
  text-decoration: none;
  display: block;
}

.footer-link:hover {
  color: #008cffd6;
}

.footer-link.with-icon {
  margin-left: 30px;
}

.tab-menu {
  text-align: center;
  margin-bottom: 40px;
}

.tabs-wrapper {
  text-align: center;
}

.fullwidth-image {
  width: 100%;
  margin-bottom: 20px;
}

.white-text {
  color: #fff;
  margin-bottom: 20px;
}

.form {
  margin-top: 40px;
}

.utility-page-wrap {
  justify-content: center;
  align-items: center;
  width: 100vw;
  max-width: 100%;
  height: 100vh;
  max-height: 100%;
  display: flex;
}

.utility-page-content {
  text-align: center;
  flex-direction: column;
  width: 260px;
  display: flex;
}

.hero-without-image {
  background-color: #fff;
  border-bottom: 1px solid #e4ebf3;
  padding: 80px 30px;
  position: relative;
}

.container {
  width: 100%;
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
}

.hero-wrapper-two {
  text-align: left;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.margin-bottom-24px {
  color: #45494c;
  margin-bottom: 24px;
  font-family: Poppins, sans-serif;
  font-size: 18px;
  line-height: 30px;
}

.button-primary {
  color: #fff;
  letter-spacing: 2px;
  text-transform: uppercase;
  background-color: #1a1b1f;
  padding: 12px 25px;
  font-size: 12px;
  line-height: 20px;
  transition: all .2s;
}

.button-primary:hover {
  color: #fff;
  background-color: #32343a;
}

.button-primary:active {
  background-color: #43464d;
}

.heading {
  color: #948d71;
  margin-right: 0;
  padding-top: 20px;
  font-family: Poppins, sans-serif;
  font-size: 25px;
  font-weight: 600;
  line-height: 30px;
  display: block;
  position: static;
}

.hero-heading-right {
  color: #948d71;
  background-color: #e3ecef;
  border-bottom: 1px solid #e4ebf3;
  padding: 0 30px 50px;
  position: relative;
}

.container-2 {
  width: 100%;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.hero-wrapper {
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.hero-split {
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  max-width: 46%;
  display: flex;
}

.shadow-two {
  box-shadow: 0 4px 24px #96a3b514;
}

.margin-bottom-24px-2 {
  color: #131d44;
  margin-bottom: 24px;
  padding-left: 10px;
  font-family: Lato, sans-serif;
  font-size: 18px;
  line-height: 30px;
}

.button-primary-2 {
  color: #fff;
  letter-spacing: 2px;
  text-transform: uppercase;
  background-color: #1a1b1f;
  padding: 12px 25px;
  font-size: 12px;
  line-height: 20px;
  transition: all .2s;
}

.button-primary-2:hover {
  color: #fff;
  background-color: #32343a;
}

.button-primary-2:active {
  background-color: #43464d;
}

.button-primary-2.footer-form-button {
  padding: 8px 18px;
  position: absolute;
  right: 8px;
}

.heading-2 {
  color: #fff;
  font-family: Lato, sans-serif;
  font-weight: 600;
}

.image {
  padding-left: 0;
  padding-right: 0;
}

.heading-3 {
  font-family: Poppins, sans-serif;
}

.testimonial-slider-small {
  -webkit-text-stroke-color: #758e9c;
  background-color: #e8e8e8;
  border-bottom: 1px solid #e4ebf3;
  padding: 80px 30px;
  position: relative;
}

.centered-heading {
  color: #f7edd9;
  text-align: center;
  letter-spacing: 2px;
  -webkit-text-stroke-color: #45494c;
  margin-bottom: 16px;
  font-family: Poppins, sans-serif;
  font-size: 45px;
  font-weight: 900;
}

.centered-subheading {
  text-align: center;
  max-width: 530px;
  margin-left: auto;
  margin-right: auto;
}

.testimonial-slider {
  background-color: #0000;
  max-width: 800px;
  height: auto;
  margin-top: 50px;
  margin-left: auto;
  margin-right: auto;
}

.testimonial-slide-wrapper {
  max-width: 48%;
  margin-right: 4%;
}

.testimonial-card {
  background-color: #fff;
  flex-direction: column;
  align-items: flex-start;
  padding: 24px;
  display: flex;
}

.testimonial-info {
  align-self: stretch;
  align-items: center;
  margin-top: 24px;
  display: flex;
}

.testimonial-image {
  object-fit: cover;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  margin-right: 16px;
}

.testimonial-author {
  color: #c10037;
  margin-bottom: 2px;
  font-family: Poppins, sans-serif;
}

.tagline {
  color: #131d44;
  margin-bottom: 10px;
  font-family: Poppins, sans-serif;
  font-size: 12px;
  line-height: 16px;
}

.testimonial-icon-wrapper {
  flex: 1;
  justify-content: flex-end;
  display: flex;
}

.testimonial-slider-left {
  justify-content: center;
  align-items: center;
  width: 40px;
  display: flex;
  left: -70px;
}

.testimonial-slider-left:focus-visible {
  outline-offset: 0px;
  border-radius: 5px;
  outline: 2px solid #0050bd;
}

.testimonial-slider-left[data-wf-focus-visible] {
  outline-offset: 0px;
  border-radius: 5px;
  outline: 2px solid #0050bd;
}

.slider-arrow-embed {
  color: #1a1b1f;
}

.testimonial-slider-right {
  justify-content: center;
  align-items: center;
  width: 40px;
  display: flex;
  right: -70px;
}

.testimonial-slider-right:focus-visible {
  outline-offset: 0px;
  border-radius: 5px;
  outline: 2px solid #0050bd;
}

.testimonial-slider-right[data-wf-focus-visible] {
  outline-offset: 0px;
  border-radius: 5px;
  outline: 2px solid #0050bd;
}

.testimonial-slide-nav {
  display: none;
}

.paragraph {
  color: #131d44;
  font-family: Poppins, sans-serif;
  font-weight: 300;
}

.paragraph-2 {
  color: #45494c;
  text-align: left;
  font-family: Poppins, sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 30px;
}

.footer-subscribe {
  color: #758e9c;
  background-color: #00394f;
  border-bottom: 1px solid #e4ebf3;
  padding: 50px 30px 40px;
  position: relative;
}

.footer-form-two {
  background-color: #f5f7fa;
  margin-bottom: 40px;
  padding: 64px;
}

.footer-form-container-two {
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.footer-form-title {
  font-size: 24px;
  line-height: 32px;
}

.footer-form-block-two {
  justify-content: flex-end;
  align-items: center;
  display: flex;
  position: relative;
}

.footer-form-input {
  border: 1px #000;
  width: 460px;
  height: 48px;
  margin-bottom: 0;
  padding: 12px 180px 12px 20px;
}

.footer-form-input::placeholder {
  color: #1a1b1fcc;
}

.footer-wrapper-three {
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.footer-block-three {
  justify-content: flex-start;
  align-items: center;
  margin-left: -20px;
  margin-right: -20px;
  display: flex;
}

.footer-link-three {
  color: #fff;
  margin-left: 20px;
  margin-right: 20px;
  font-family: quincy-cf, sans-serif;
  font-size: 18px;
  text-decoration: none;
}

.footer-link-three:hover {
  color: #fedc09;
}

.footer-social-block-three {
  justify-content: flex-start;
  align-items: center;
  margin-left: -32px;
  display: flex;
}

.footer-social-link-three {
  margin-left: 32px;
}

.footer-divider-two {
  background-color: #fff;
  width: 100%;
  height: 1px;
  margin-top: 40px;
  margin-bottom: 40px;
}

.footer-bottom {
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.footer-copyright {
  color: #fff;
  font-family: Poppins, sans-serif;
}

.footer-legal-block {
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.footer-legal-link {
  color: #fff;
  margin-left: 24px;
  font-family: Lato, sans-serif;
  text-decoration: none;
}

.footer-legal-link:hover {
  color: #fedc09;
}

.image-2 {
  padding-left: 30px;
  padding-right: 30px;
}

.hero-heading-left {
  background-color: #fff;
  border-bottom: 1px solid #e4ebf3;
  padding: 80px 30px;
  position: relative;
}

.margin-bottom-24px-3 {
  margin-bottom: 24px;
}

.heading-copy {
  color: #948d71;
  margin-right: 0;
  padding-top: 20px;
  font-family: Poppins, sans-serif;
  font-size: 25px;
  font-weight: 600;
  line-height: 30px;
  display: block;
  position: static;
}

.footer-legal-link-copy {
  color: #fff;
  margin-left: 24px;
  font-family: Poppins, sans-serif;
}

.footer-legal-link-copy:hover {
  color: #3a4554;
}

.hero-without-image-2 {
  color: #758e9c;
  background-color: #fff;
  border-bottom: 1px solid #fff;
  padding: 80px 30px;
  position: relative;
}

.container-3 {
  width: 100%;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.hero-wrapper-two-2 {
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.margin-bottom-24px-4 {
  color: #131d44;
  margin-bottom: 0;
  font-family: Roboto Serif, sans-serif;
  font-size: 18px;
  font-weight: 300;
  line-height: 35px;
}

.button-primary-3 {
  color: #fff;
  letter-spacing: 2px;
  text-transform: uppercase;
  background-color: #1a1b1f;
  padding: 12px 25px;
  font-size: 12px;
  line-height: 20px;
  transition: all .2s;
}

.button-primary-3:hover {
  color: #fff;
  background-color: #32343a;
}

.button-primary-3:active {
  background-color: #43464d;
}

.heading-4 {
  color: #131d44;
  text-transform: none;
  font-family: Poppins, sans-serif;
  font-size: 35px;
  font-weight: 600;
}

.hero-heading-left-2 {
  background-color: #fff;
  border-bottom: 1px solid #e4ebf3;
  padding: 80px 30px;
  position: relative;
}

.hero-wrapper-2 {
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.hero-split-2 {
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  max-width: 46%;
  display: flex;
}

.margin-bottom-24px-5 {
  color: #090f08;
  margin-bottom: 24px;
  font-family: Roboto Serif, sans-serif;
  font-size: 17px;
  font-weight: 200;
  line-height: 30px;
}

.shadow-two-2 {
  box-shadow: 0 4px 24px #96a3b514;
}

.image-3 {
  max-width: 100%;
  display: block;
}

.footer-legal-link-copy-copy {
  color: #fff;
  margin-left: 24px;
  font-family: Poppins, sans-serif;
  text-decoration: none;
}

.footer-legal-link-copy-copy:hover {
  color: #f76666;
}

.container-4 {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  max-width: 1200px;
  display: block;
}

.grid {
  grid-column-gap: 30px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
}

.paragraph-3 {
  color: #fff;
  margin-top: 10px;
  font-family: Roboto Serif, sans-serif;
  font-size: 16px;
  font-weight: 100;
  line-height: 30px;
}

.div-block {
  justify-content: center;
  align-items: center;
  display: flex;
}

.link {
  color: #fffcfc;
  text-decoration: none;
}

.link:hover {
  color: #fedc09;
}

.container-5 {
  max-width: 1200px;
}

.image-4 {
  text-align: left;
}

.heading-5 {
  text-align: left;
  margin-top: 0;
  margin-bottom: 0;
  font-family: quincy-cf, sans-serif;
  font-size: 55px;
  line-height: 60px;
}

.heading-6 {
  color: #00394f;
  font-family: quincy-cf, sans-serif;
  font-size: 25px;
  line-height: 30px;
}

.paragraph-4 {
  color: #eae8e0;
  margin-top: 40px;
  margin-bottom: 40px;
  font-family: Roboto Serif, sans-serif;
  font-size: 30px;
}

.div-block-2 {
  flex-flow: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.div-block-3 {
  background-color: #128cab;
  border-bottom-right-radius: 50px;
  border-bottom-left-radius: 50px;
  padding-bottom: 20px;
  padding-left: 20px;
  padding-right: 20px;
}

.div-block-4 {
  margin-top: 30px;
  padding-left: 20px;
  padding-right: 20px;
}

.paragraph-5 {
  color: #1cb535;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  height: 45px;
  padding-bottom: 0;
  padding-left: 10px;
  padding-right: 10px;
  font-family: Roboto Serif, sans-serif;
  font-size: 16px;
  font-weight: 500;
  display: flex;
}

.button-2 {
  color: #fff;
  letter-spacing: 1px;
  background-color: #00394f;
  border-radius: 0;
  font-family: quincy-cf, sans-serif;
  font-size: 15px;
}

.div-block-5 {
  margin-top: 20px;
  margin-bottom: 10px;
  padding-left: 30px;
  padding-right: 30px;
}

.paragraph-6 {
  color: #00394f;
  margin-top: 20px;
  font-family: Roboto Serif, sans-serif;
  font-size: 15px;
  font-weight: 200;
}

.case-study-section {
  text-align: center;
  background-color: #00394f;
  border-radius: 0;
  padding: 80px 10px;
  position: relative;
}

.case-study-section.accent {
  background-color: #192024;
}

.paragraph-7 {
  color: #a4d836;
  text-align: left;
  letter-spacing: 1px;
  margin-top: 10px;
  font-family: quincy-cf, sans-serif;
  font-size: 40px;
  font-weight: 700;
  line-height: 50px;
  position: static;
  top: auto;
}

.div-block-6 {
  margin-bottom: 0;
}

.div-block-7 {
  margin-bottom: 60px;
}

.paragraph-8 {
  color: #fff;
  text-align: left;
  font-family: Roboto Serif, sans-serif;
  font-size: 15px;
  font-weight: 200;
  line-height: 30px;
}

.grid-2 {
  grid-column-gap: 29px;
  grid-template-rows: auto;
  grid-template-columns: 1.5fr;
  margin-top: 40px;
}

.paragraph-9, .paragraph-10 {
  color: #00394f;
  margin-top: 20px;
  font-family: Roboto Serif, sans-serif;
  font-size: 15px;
  font-weight: 200;
}

.div-block-8 {
  flex-flow: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.div-block-9 {
  margin-bottom: 10px;
  display: flex;
}

.div-block-10 {
  margin-top: 10px;
  display: flex;
}

.button-3 {
  color: #00394f;
  text-align: center;
  letter-spacing: 2px;
  text-transform: capitalize;
  background-color: #a4d836;
  padding: 20px;
  font-family: quincy-cf, sans-serif;
  font-size: 16px;
}

.div-block-11 {
  text-align: left;
  margin-top: 40px;
}

.section-2 {
  background-image: url('../images/pexels-yankrukov-8613312.jpg');
  background-position: 50% 0;
  background-size: cover;
  background-attachment: fixed;
  height: 500px;
}

.paragraph-11 {
  font-family: quincy-cf, sans-serif;
}

.paragraph-12 {
  color: var(--dark-khaki);
  letter-spacing: 4px;
  text-transform: uppercase;
  font-family: quincy-cf, sans-serif;
  font-size: 70px;
  font-weight: 400;
  line-height: 90px;
}

.testimonial-slider--the-orchard {
  -webkit-text-stroke-color: #758e9c;
  background-color: #e8e8e8;
  border-bottom: 1px solid #e4ebf3;
  padding: 80px 30px;
  position: relative;
}

.div-block-12 {
  height: auto;
  margin-top: 40px;
}

.div-block-13 {
  flex-flow: column;
  justify-content: center;
  align-items: center;
  height: 400px;
  margin-left: 0;
  margin-right: 0;
  display: flex;
}

.paragraph-13 {
  text-align: center;
  height: 10%;
  margin-left: 100px;
  margin-right: 100px;
}

.paragraph-14 {
  text-align: center;
  margin-top: 20px;
  margin-left: 100px;
  margin-right: 100px;
}

.slider {
  height: auto;
}

.mask {
  height: 650px;
}

.paragraph-15 {
  color: #2da1e8;
  text-align: center;
  margin-top: 0;
  margin-left: 100px;
  margin-right: 100px;
  font-family: Roboto Serif, sans-serif;
  font-weight: 200;
}

.paragraph-16 {
  color: #00394f;
  text-align: left;
  margin-top: 20px;
  margin-left: 40px;
  margin-right: 0;
  font-family: quincy-cf, sans-serif;
  line-height: 20px;
}

.div-block-14 {
  margin-top: 40px;
}

.div-block-15 {
  justify-content: center;
  align-items: center;
  display: flex;
}

.div-block-16 {
  margin-left: 100px;
  margin-right: 100px;
}

.grid-3 {
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  display: block;
}

.div-block-17 {
  justify-content: center;
  align-items: center;
  display: flex;
}

.div-block-18 {
  flex-flow: column;
  justify-content: center;
  align-items: center;
  height: 650px;
  display: flex;
}

.paragraph-17 {
  color: #00394f;
  margin-bottom: 0;
  font-family: Roboto Serif, sans-serif;
  font-size: 35px;
  font-weight: 500;
  line-height: 40px;
  display: flex;
}

.paragraph-18 {
  color: #1cb535;
  margin-top: 0;
  font-family: quincy-cf, sans-serif;
  font-size: 50px;
  line-height: 50px;
}

.div-block-19 {
  flex-flow: column;
  display: flex;
}

.div-block-20 {
  margin-top: 20px;
  padding-left: 26px;
}

.list1 {
  color: #00394f;
  margin-bottom: 10px;
  font-family: Roboto Serif, sans-serif;
  font-size: 18px;
  font-weight: 200;
  line-height: 25px;
}

.button-4 {
  letter-spacing: 2px;
  background-color: #00394f;
  padding: 20px;
  font-family: quincy-cf, sans-serif;
}

.section-3 {
  background-color: #00394f21;
  padding: 80px 30px;
}

.container-6 {
  max-width: 1000px;
}

.grid-4 {
  grid-column-gap: 31px;
  background-color: #0000;
  grid-template-rows: auto;
  grid-template-columns: .5fr 1fr;
}

.div-block-21 {
  background-color: #1cb535;
  border-top-left-radius: 50px;
  border-bottom-left-radius: 50px;
  justify-content: center;
  align-items: center;
  display: flex;
}

.paragraph-19 {
  color: #fff;
  font-family: quincy-cf, sans-serif;
  font-size: 50px;
}

.div-block-22 {
  color: #fff;
  background-color: #00394f;
  padding: 10px;
}

.paragraph-20 {
  margin-left: 10px;
  margin-right: 10px;
}

.div-block-23 {
  margin-top: 20px;
}

.div-block-24 {
  height: 120px;
}

.div-block-25 {
  margin-top: 40px;
}

.grid-5 {
  grid-column-gap: 33px;
  grid-template-rows: auto;
}

.div-block-26 {
  margin-left: 0%;
  margin-right: 0%;
}

.section-after-steps {
  padding: 40px 30px;
}

.paragraph-21 {
  color: #00394f;
  font-family: quincy-cf, sans-serif;
  font-size: 30px;
}

.paragraph-22 {
  color: #00394f;
  font-family: Roboto Serif, sans-serif;
  font-size: 18px;
  font-weight: 200;
  line-height: 40px;
}

.container-7 {
  max-width: 1000px;
}

.donate-section {
  background-color: #fff;
  padding: 80px 30px;
}

.paragraph-23 {
  color: #00394f;
  text-align: center;
  flex: 1;
  justify-content: center;
  align-items: center;
  font-family: quincy-cf, sans-serif;
  font-size: 60px;
  line-height: 60px;
  display: block;
}

.div-block-27 {
  flex-flow: column;
  justify-content: center;
  align-items: center;
  display: block;
}

.paragraph-24 {
  color: #00394f;
  text-align: center;
  margin-top: 40px;
  font-family: Roboto Serif, sans-serif;
  font-size: 20px;
  font-weight: 200;
  line-height: 30px;
}

.div-block-28 {
  justify-content: flex-start;
  align-items: center;
  margin-top: 40px;
  display: block;
}

.grid-6 {
  grid-template-rows: auto;
}

.paragraph-25 {
  color: #00394f;
  background-color: #fedc09;
  border-top-right-radius: 50px;
  border-bottom-right-radius: 50px;
  padding: 15px 20px 15px 10px;
  font-family: quincy-cf, sans-serif;
  font-size: 30px;
}

.div-block-29 {
  background-color: #d8ddde;
  padding: 30px 0;
  box-shadow: 0 7px 10px -5px #0003;
}

.div-block-30 {
  flex-flow: row;
  justify-content: flex-start;
  align-items: center;
  height: 40px;
  line-height: 30px;
  display: flex;
}

.div-block-31 {
  margin-top: 40px;
  margin-left: 40px;
  margin-right: 40px;
}

.paragraph-26 {
  color: #00394f;
  margin-top: 0;
  font-family: Roboto Serif, sans-serif;
  font-size: 15px;
  font-weight: 100;
}

.div-block-31-below {
  margin-top: 40px;
  margin-left: 40px;
  margin-right: 40px;
  padding-left: 0;
}

.paragraph-26-friends {
  color: #003a6c;
  margin-top: 0;
  margin-bottom: 30px;
  font-family: Roboto Serif, sans-serif;
  font-weight: 100;
}

.grid-6---friends {
  grid-template-rows: auto;
  grid-template-columns: 1fr;
}

.grid-7 {
  grid-column-gap: 28px;
  grid-template-rows: auto;
}

.div-block-32 {
  margin-left: 20px;
  margin-right: 20px;
}

.div-block-33 {
  background-color: var(--sandy-brown-2);
  padding: 20px;
  box-shadow: 13px 7px 5px #0003;
}

.button-5 {
  background-color: #2da1e8;
  margin-bottom: 10px;
  font-family: quincy-cf, sans-serif;
}

.paragraph-6-copy {
  text-align: left;
  margin-top: 20px;
  font-family: Roboto Serif, sans-serif;
  font-weight: 200;
}

.paragraph-5-copy {
  text-align: left;
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
  height: 45px;
  padding-bottom: 0;
  padding-left: 0;
  padding-right: 10px;
  font-family: Roboto Serif, sans-serif;
  font-size: 16px;
  font-weight: 500;
  display: flex;
}

.div-block-5-copy {
  text-align: left;
  margin-top: 20px;
  margin-bottom: 10px;
  padding-left: 0;
  padding-right: 0;
  display: flex;
}

.button-2-copy {
  font-family: Roboto Serif, sans-serif;
  font-size: 14px;
}

.grid-8 {
  grid-column-gap: 0px;
  grid-template-rows: auto;
}

.paragraph-27 {
  color: #2da1e8;
  text-align: left;
  font-family: quincy-cf, sans-serif;
  font-size: 20px;
  font-weight: 700;
}

.paragraph-27-copy {
  color: #00394f;
  text-align: left;
  font-family: Roboto Serif, sans-serif;
  font-weight: 300;
}

.div-block-34 {
  margin-top: 0;
}

.div-block-35 {
  flex-flow: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.div-block-36 {
  padding-left: 0;
  padding-right: 20px;
}

.div-block-35-copy {
  flex-flow: column;
  justify-content: center;
  align-items: center;
  padding-left: 20px;
  display: flex;
}

.div-block-37 {
  flex-flow: column;
  justify-content: center;
  align-items: center;
  padding-left: 0;
  padding-right: 20px;
  display: flex;
}

.image-5 {
  box-shadow: 0 2px 5px #fff9f933;
}

.italic-text, .italic-text-2, .italic-text-3, .italic-text-4, .italic-text-5, .italic-text-6, .italic-text-7 {
  color: #00394f;
}

.paragraph-15-copy {
  color: #00394f;
  text-align: center;
  margin-top: 0;
  margin-left: 100px;
  margin-right: 100px;
  font-family: Roboto Serif, sans-serif;
  font-weight: 200;
}

.section-copy-bottom {
  text-align: center;
  background-color: #d8ddde;
  padding: 100px 10px;
  position: relative;
}

.section-copy-bottom.accent {
  background-color: #192024;
}

.div-block-39 {
  margin-top: 40px;
}

.div-block-40 {
  text-align: center;
  margin-top: 40px;
}

.button-2-copy {
  color: #fff;
  letter-spacing: 1px;
  background-color: #00394f;
  border-radius: 0;
  padding: 15px 20px;
  font-family: quincy-cf, sans-serif;
  font-size: 18px;
}

.heading-6-copy {
  color: #00394f;
  letter-spacing: 2px;
  align-self: center;
  margin-bottom: 0;
  font-family: quincy-cf, sans-serif;
  font-size: 70px;
  line-height: 60px;
}

.hero-section-copy {
  padding-top: 242px;
  padding-bottom: 242px;
}

.hero-section-copy.centered {
  color: #fff;
  text-align: center;
  -webkit-text-fill-color: inherit;
  background-image: linear-gradient(#00000036, #00000036), url('../images/blue-background-1.png');
  background-position: 0 0, 50% 0;
  background-size: auto, cover;
  background-clip: border-box;
  border-bottom: 4px solid #fff;
  border-radius: 0;
  padding-top: 220px;
  padding-bottom: 220px;
}

.hero-section-copy.centered-copy {
  color: #fff;
  text-align: center;
  -webkit-text-fill-color: inherit;
  background-image: linear-gradient(#00000036, #00000036), url('../images/P1049180-min.jpg');
  background-position: 0 0, 50% 0;
  background-size: auto, cover;
  background-attachment: scroll, fixed;
  background-clip: border-box;
  border-bottom: 4px solid #fff;
  border-radius: 0;
  height: 700px;
  padding-top: 220px;
  padding-bottom: 220px;
}

.heading-6-copy {
  color: #00394f;
  text-align: left;
  height: 60px;
  margin-top: 50px;
  font-family: quincy-cf, sans-serif;
  font-size: 25px;
  line-height: 30px;
}

.margin-bottom-24px-4-copy {
  color: #131d44;
  text-align: left;
  margin-bottom: 0;
  font-family: Roboto Serif, sans-serif;
  font-size: 18px;
  font-weight: 300;
  line-height: 35px;
}

.grid-9 {
  grid-column-gap: 39px;
  grid-template-rows: auto auto;
}

.div-block-41 {
  flex-flow: row;
  margin-top: 20px;
  display: flex;
}

.div-block-42 {
  text-align: left;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.div-block-43 {
  text-align: left;
  margin-left: 40px;
}

.button-6 {
  letter-spacing: 3px;
  background-color: #a4d836;
  border: 1px #000;
  border-radius: 12px;
  padding: 15px 20px;
  font-family: quincy-cf, sans-serif;
}

.button-6:hover {
  color: #00394f;
  background-color: #e0f4b7;
}

.button-7 {
  letter-spacing: 3px;
  background-color: #00d2e2;
  border: 1px #000;
  border-radius: 12px;
  padding: 15px 20px;
  font-family: quincy-cf, sans-serif;
}

.button-7:hover {
  color: #00394f;
  background-color: #a3e2e6;
}

.heading-7 {
  color: #00394f;
  text-align: center;
  letter-spacing: 2px;
  text-transform: capitalize;
  border-bottom: 2px dashed #00394f;
  flex-flow: row;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 0;
  padding-bottom: 10px;
  font-family: quincy-cf, sans-serif;
  font-size: 60px;
  font-weight: 400;
  line-height: 60px;
  display: flex;
}

.section-4 {
  background-color: #e3ecef;
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 40px;
}

.container-8 {
  max-width: 1000px;
  padding-top: 0;
  padding-bottom: 0;
}

.div-block-44 {
  margin-bottom: 40px;
}

.heading-8 {
  color: #00394f;
  letter-spacing: 2px;
  font-family: quincy-cf, sans-serif;
  font-size: 70px;
  font-weight: 400;
  line-height: 60px;
}

.image-6 {
  display: block;
}

.about-us {
  color: #758e9c;
  background-color: #eff7f7;
  border-bottom: 1px solid #fff;
  padding: 80px 30px;
  position: relative;
}

.section-5 {
  padding-top: 60px;
  padding-bottom: 60px;
  position: relative;
}

.container-9 {
  max-width: 1000px;
}

.paragraph-28 {
  color: #00394f;
  text-align: center;
  font-family: Roboto Serif, sans-serif;
  font-size: 18px;
  font-weight: 200;
  line-height: 30px;
}

.grid-10 {
  grid-column-gap: 34px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
}

.image-7, .div-block-45 {
  text-align: center;
}

.div-block-46 {
  margin-top: 20px;
}

.paragraph-29 {
  color: #00394f;
  margin-bottom: 0;
  font-family: quincy-cf, sans-serif;
  font-size: 18px;
  font-weight: 400;
}

.paragraph-30 {
  color: #00394f;
  margin-top: 0;
  font-family: Roboto Serif, sans-serif;
}

.second-gridblock {
  margin-top: 40px;
}

.italic-text-9, .italic-text-10, .italic-text-11, .italic-text-12, .italic-text-13, .italic-text-14, .italic-text-15, .italic-text-16, .italic-text-17, .italic-text-18, .italic-text-19 {
  color: #1cb535;
}

.section-6 {
  height: 750px;
}

.image-8 {
  min-width: 100%;
  max-width: 0%;
  height: 100%;
  max-height: 100%;
  display: block;
}

.section-7 {
  padding-top: 60px;
  padding-bottom: 60px;
}

.image-9 {
  height: 100%;
}

.div-block-47 {
  margin-bottom: 100px;
}

.paragraph-31 {
  color: #00394f;
  text-align: center;
  font-family: Roboto Serif, sans-serif;
  font-size: 18px;
  font-weight: 200;
  line-height: 30px;
}

.list {
  margin-top: 40px;
}

.image-12, .image-13 {
  padding-left: 10px;
}

.div-block-48 {
  align-self: stretch;
}

.image-14, .image-15 {
  height: 100px;
}

.div-block-49 {
  justify-content: space-between;
  margin-top: 40px;
  display: flex;
}

.image-16, .image-17, .image-18, .image-19 {
  height: 120px;
}

@media screen and (max-width: 991px) {
  .navigation-link {
    color: #ffffff85;
    background-color: #00394f;
  }

  .navigation-link.w--current {
    color: #fff;
  }

  .hamburger-button {
    flex-flow: row;
    justify-content: center;
    align-items: center;
    padding-top: 0;
    padding-bottom: 0;
    display: block;
    top: 35px;
  }

  .hamburger-button.w--open {
    background-color: #0000;
    top: 35px;
  }

  .navigation-menu {
    color: #fff;
    background-color: #131d44;
  }

  .hero-section.centered {
    padding-top: 144px;
    padding-bottom: 144px;
  }

  .section-heading.centered {
    font-size: 60px;
  }

  .grid-image {
    width: 50%;
    padding: 15px;
  }

  .container, .container-2 {
    max-width: 728px;
  }

  .hero-wrapper {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    margin-bottom: -40px;
  }

  .hero-split {
    max-width: 100%;
    margin-bottom: 40px;
  }

  .testimonial-slider-left {
    left: -20px;
  }

  .testimonial-slider-right {
    right: -20px;
  }

  .footer-form-two {
    padding: 40px;
  }

  .footer-form-title {
    margin-right: 15px;
  }

  .footer-form-input {
    width: 400px;
    padding-right: 180px;
  }

  .footer-wrapper-three {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .footer-link-three {
    font-size: 16px;
  }

  .footer-social-block-three {
    margin-top: 40px;
  }

  .container-3 {
    max-width: 728px;
  }

  .hero-wrapper-2 {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    margin-bottom: -40px;
  }

  .hero-split-2 {
    max-width: 100%;
    margin-bottom: 40px;
  }

  .icon {
    color: #131d44;
  }

  .container-4 {
    max-width: 700px;
  }

  .heading-5 {
    font-size: 40px;
    line-height: 40px;
  }

  .paragraph-12 {
    font-size: 60px;
  }

  .paragraph-17 {
    font-size: 25px;
  }

  .paragraph-18 {
    font-size: 40px;
  }

  .list1 {
    font-size: 16px;
  }

  .paragraph-19 {
    font-size: 30px;
  }

  .paragraph-20 {
    font-size: 12px;
  }

  .div-block-24 {
    height: 140px;
  }

  .paragraph-21 {
    font-size: 20px;
  }

  .paragraph-22 {
    font-size: 16px;
  }

  .paragraph-26 {
    font-size: 14px;
  }

  .italic-text {
    font-size: 11px;
  }

  .div-block-38 {
    flex-flow: column;
    justify-content: center;
    align-items: center;
    display: flex;
  }

  .hero-section-copy.centered, .hero-section-copy.centered-copy {
    padding-top: 144px;
    padding-bottom: 144px;
  }

  .section-6 {
    height: 400px;
  }
}

@media screen and (max-width: 767px) {
  .button.full-width {
    margin-left: auto;
    margin-right: auto;
  }

  .button.tab {
    font-size: 12px;
  }

  .white-box {
    margin-bottom: 30px;
  }

  .hero-section.centered {
    padding-top: 119px;
    padding-bottom: 119px;
  }

  .hero-heading {
    margin-bottom: 15px;
    font-size: 50px;
  }

  .hero-subheading {
    font-size: 18px;
  }

  .section-heading.centered {
    font-size: 40px;
  }

  .form-field.text-area {
    display: block;
  }

  .grid-image {
    width: 20%;
    padding: 20px;
  }

  .spc {
    margin-bottom: 30px;
  }

  .hero-without-image, .hero-heading-right, .testimonial-slider-small {
    padding: 60px 15px;
  }

  .testimonial-slide-wrapper {
    max-width: 100%;
    margin-right: 0%;
  }

  .testimonial-card {
    margin-left: 10px;
    margin-right: 10px;
  }

  .testimonial-slider-left {
    left: -10px;
  }

  .testimonial-slider-right {
    right: -10px;
  }

  .footer-subscribe {
    padding-left: 15px;
    padding-right: 15px;
  }

  .footer-form-container-two {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .footer-form-title {
    margin-right: 0;
  }

  .footer-form-block-two {
    width: 100%;
    margin-top: 20px;
  }

  .footer-form-input {
    width: 100%;
  }

  .footer-wrapper-three {
    flex-flow: row;
    justify-content: center;
    align-items: center;
    display: flex;
  }

  .footer-block-three {
    flex-flow: column wrap;
    justify-content: flex-start;
    align-items: flex-start;
    display: block;
  }

  .footer-link-three {
    margin-bottom: 10px;
    font-size: 12px;
  }

  .footer-social-block-three {
    margin-top: 10px;
  }

  .footer-bottom {
    text-align: left;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .footer-copyright {
    font-family: Roboto Serif, sans-serif;
    font-size: 12px;
    line-height: 20px;
  }

  .footer-legal-block {
    margin-top: 15px;
    margin-left: -24px;
    font-size: 12px;
  }

  .footer-legal-link {
    font-family: Roboto Serif, sans-serif;
    font-size: 12px;
    line-height: 20px;
  }

  .footer-legal-link:hover {
    color: #fedc09;
  }

  .hero-heading-left {
    padding: 60px 15px;
  }

  .footer-legal-link-copy {
    font-size: 14px;
    line-height: 20px;
  }

  .hero-without-image-2 {
    padding: 60px 15px;
  }

  .margin-bottom-24px-4 {
    font-size: 14px;
    line-height: 25px;
  }

  .hero-heading-left-2 {
    padding: 60px 15px;
  }

  .footer-legal-link-copy-copy {
    font-family: Roboto Serif, sans-serif;
    font-size: 12px;
    line-height: 20px;
  }

  .footer-legal-link-copy-copy:hover {
    color: #fedc09;
  }

  .container-4 {
    max-width: 500px;
  }

  .grid {
    grid-auto-flow: row;
    display: block;
  }

  .link:hover {
    color: #fedc09;
  }

  .heading-5, .heading-6 {
    font-size: 20px;
  }

  .paragraph-4 {
    margin-bottom: 0;
    padding-top: 28px;
  }

  .paragraph-7 {
    font-size: 20px;
  }

  .paragraph-8 {
    font-size: 14px;
  }

  .grid-2 {
    display: block;
  }

  .paragraph-12 {
    font-size: 40px;
  }

  .testimonial-slider--the-orchard {
    padding: 60px 15px;
  }

  .mask {
    height: 650px;
  }

  .paragraph-15 {
    margin-left: 20px;
    margin-right: 20px;
    font-size: 10px;
  }

  .list1 {
    font-size: 14px;
  }

  .grid-4 {
    display: block;
  }

  .div-block-24 {
    height: 190px;
  }

  .paragraph-22 {
    font-size: 14px;
  }

  .paragraph-23 {
    font-size: 40px;
  }

  .paragraph-24 {
    font-size: 16px;
    line-height: 25px;
  }

  .grid-6, .grid-7 {
    display: block;
  }

  .div-block-33 {
    margin-bottom: 40px;
  }

  .grid-8 {
    display: block;
  }

  .paragraph-27 {
    font-size: 16px;
  }

  .div-block-35-copy {
    padding-left: 0;
  }

  .section-copy-bottom {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .hero-section-copy.centered, .hero-section-copy.centered-copy {
    padding-top: 119px;
    padding-bottom: 119px;
  }

  .heading-6-copy {
    font-size: 20px;
  }

  .margin-bottom-24px-4-copy {
    font-size: 14px;
    line-height: 25px;
  }

  .button-6, .button-7 {
    font-size: 12px;
  }

  .heading-7 {
    padding-left: 20px;
  }

  .about-us {
    padding: 60px 15px;
  }

  .grid-10 {
    grid-auto-flow: row;
    display: block;
  }

  .section-6 {
    height: 300px;
  }

  .paragraph-31 {
    font-size: 15px;
  }

  .div-block-49 {
    flex-flow: column;
  }

  .image-16 {
    height: auto;
  }

  .image-17, .image-18, .image-19 {
    height: auto;
    margin-top: 10px;
  }
}

@media screen and (max-width: 479px) {
  .button {
    margin-bottom: 25px;
  }

  .navigation-link {
    margin-top: 0;
    padding-top: 0;
  }

  .navigation-link:hover {
    color: #090f08;
  }

  .hamburger-button {
    color: #fff;
    background-color: #0000;
    margin-top: 0;
    padding-bottom: 0;
    top: -9px;
  }

  .hamburger-button.w--open {
    background-color: #0000;
    top: -2px;
  }

  .navigation-menu {
    background-color: #131d44;
  }

  .brand-link.w--current {
    max-width: 200px;
  }

  .section {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .hero-section.centered {
    background-image: linear-gradient(#0000, #0000), url('../images/blue-background-1.png');
    background-position: 0 0, 85%;
    border-bottom-color: #fff;
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .hero-heading {
    font-size: 20px;
    line-height: 30px;
  }

  .section-heading.centered {
    margin-bottom: -40px;
    font-size: 25px;
    line-height: 30px;
  }

  .section-heading.centered-copy {
    margin-bottom: 0;
    font-size: 35px;
  }

  .section-subheading.center {
    line-height: 30px;
  }

  .grid-image {
    width: 35%;
  }

  .container {
    max-width: none;
  }

  .margin-bottom-24px {
    font-size: 16px;
  }

  .heading {
    font-size: 20px;
  }

  .hero-heading-right {
    padding-bottom: 40px;
    padding-left: 40px;
    padding-right: 40px;
  }

  .container-2 {
    max-width: none;
  }

  .margin-bottom-24px-2 {
    padding-left: 0;
    padding-right: 0;
    font-size: 16px;
  }

  .button-primary-2.footer-form-button {
    position: relative;
    right: 0;
  }

  .heading-2 {
    font-size: 25px;
  }

  .centered-heading {
    margin-bottom: 24px;
    font-size: 30px;
  }

  .testimonial-slide-wrapper {
    max-width: 100%;
    margin-right: 0%;
  }

  .testimonial-card {
    margin-left: 10px;
    margin-right: 10px;
  }

  .testimonial-slider-left {
    left: -10px;
  }

  .testimonial-slider-right {
    right: -10px;
  }

  .paragraph-2 {
    padding-left: 0;
    padding-right: 0;
    font-size: 16px;
  }

  .footer-form-two {
    padding: 20px;
  }

  .footer-form-block-two {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .footer-form-input {
    margin-bottom: 10px;
    padding-right: 20px;
  }

  .footer-wrapper-three {
    display: block;
  }

  .footer-block-three {
    text-align: left;
    justify-content: center;
    align-self: center;
    align-items: center;
    margin-left: 0;
    margin-right: 0;
    padding-left: 80px;
    padding-right: 80px;
    display: flex;
  }

  .footer-link-three {
    text-align: center;
    margin-left: 0;
    margin-right: 0;
    padding-left: 0;
    font-size: 16px;
  }

  .footer-social-block-three {
    justify-content: center;
    align-self: center;
    align-items: center;
    margin-left: 0;
  }

  .footer-bottom {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    flex-flow: column;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    justify-content: center;
    align-items: center;
    display: flex;
  }

  .footer-copyright {
    text-align: center;
    align-self: center;
  }

  .footer-legal-link {
    flex: 1;
    order: 0;
    align-self: center;
    margin-top: -50px;
    margin-left: auto;
    padding-left: 21px;
    display: block;
  }

  .image-2 {
    text-align: center;
    padding-left: 30px;
  }

  .hero-heading-left {
    padding-top: 20px;
    padding-bottom: 40px;
  }

  .heading-copy {
    padding-top: 0;
    font-size: 20px;
  }

  .footer-legal-link-copy {
    margin-top: 30px;
    margin-left: -150px;
  }

  .hero-without-image-2 {
    border-bottom-color: #fff;
    padding-top: 60px;
    padding-left: 40px;
    padding-right: 40px;
  }

  .container-3 {
    max-width: none;
  }

  .margin-bottom-24px-4 {
    font-size: 13px;
    line-height: 25px;
  }

  .heading-4 {
    font-size: 25px;
    line-height: 30px;
  }

  .hero-heading-left-2 {
    padding: 40px;
  }

  .margin-bottom-24px-5 {
    font-size: 14px;
    line-height: 25px;
  }

  .footer-legal-link-copy-copy {
    margin-top: 20px;
    margin-left: -112px;
  }

  .icon {
    margin-top: 40px;
  }

  .container-4 {
    max-width: 250px;
    padding-left: 0;
    position: relative;
    left: -12px;
  }

  .grid {
    grid-auto-flow: row dense;
    display: block;
  }

  .paragraph-3 {
    text-align: left;
    font-size: 13px;
    line-height: 30px;
  }

  .heading-5 {
    color: var(--sandy-brown-2);
    font-size: 40px;
    line-height: 42px;
  }

  .heading-6 {
    font-size: 18px;
  }

  .paragraph-4 {
    font-size: 30px;
  }

  .paragraph-5 {
    font-size: 15px;
  }

  .button-2 {
    font-size: 14px;
  }

  .paragraph-6 {
    font-size: 15px;
  }

  .case-study-section {
    padding: 40px;
  }

  .paragraph-7 {
    font-size: 18px;
    line-height: 30px;
  }

  .paragraph-8 {
    font-size: 15px;
  }

  .grid-2 {
    display: flex;
  }

  .paragraph-9, .paragraph-10 {
    font-size: 15px;
  }

  .button-3 {
    margin-top: 40px;
    font-size: 15px;
  }

  .paragraph-12 {
    font-size: 30px;
  }

  .testimonial-slider--the-orchard {
    padding-top: 40px;
  }

  .div-block-12 {
    margin-top: 0;
  }

  .slider, .mask {
    height: 1100px;
  }

  .paragraph-16 {
    text-align: center;
    flex-flow: row;
    justify-content: center;
    align-items: center;
    margin-left: 0;
    font-size: 12px;
    display: block;
  }

  .grid-3 {
    flex-flow: row;
    display: block;
  }

  .div-block-17 {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    flex-flow: column;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    display: flex;
  }

  .div-block-18 {
    height: 1100px;
    display: flex;
  }

  .paragraph-17 {
    font-size: 20px;
    line-height: 25px;
  }

  .paragraph-18 {
    font-size: 25px;
    line-height: 30px;
    position: relative;
    top: auto;
    left: auto;
  }

  .div-block-20 {
    padding-left: 0;
  }

  .list1 {
    font-size: 15px;
  }

  .button-4 {
    font-size: 16px;
  }

  .section-3 {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .paragraph-20 {
    font-size: 14px;
  }

  .div-block-24 {
    height: auto;
  }

  .grid-5 {
    display: block;
  }

  .section-after-steps {
    padding-bottom: 40px;
    padding-left: 40px;
    padding-right: 40px;
  }

  .paragraph-21 {
    font-size: 18px;
  }

  .paragraph-22 {
    font-size: 15px;
  }

  .donate-section {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .paragraph-23 {
    font-size: 25px;
    line-height: 30px;
  }

  .paragraph-24 {
    font-size: 13px;
  }

  .paragraph-25 {
    font-size: 18px;
  }

  .div-block-29 {
    margin-bottom: 20px;
  }

  .paragraph-26 {
    font-size: 12px;
  }

  .div-block-31-below {
    margin-left: 0;
    margin-right: 0;
  }

  .paragraph-26-friends {
    font-size: 13px;
  }

  .paragraph-27 {
    font-size: 18px;
  }

  .paragraph-27-copy {
    font-size: 14px;
  }

  .image-5 {
    margin-top: 10px;
  }

  .italic-text {
    font-size: 10px;
    line-height: 12px;
  }

  .paragraph-15-copy {
    margin-left: 10px;
    margin-right: 10px;
  }

  .section-copy-bottom {
    padding: 40px;
  }

  .slide {
    height: 1100px;
  }

  .italic-text-8 {
    font-size: 12px;
    display: block;
  }

  .button-2-copy {
    font-size: 15px;
  }

  .hero-section-copy.centered, .hero-section-copy.centered-copy {
    border-bottom-color: #fff;
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .heading-6-copy {
    font-size: 18px;
  }

  .margin-bottom-24px-4-copy {
    font-size: 13px;
    line-height: 25px;
  }

  .grid-9 {
    flex-flow: column;
    display: flex;
  }

  .div-block-41 {
    flex-flow: column;
  }

  .div-block-43 {
    margin-top: 20px;
    margin-left: 0;
  }

  .heading-7 {
    justify-content: center;
    align-items: center;
    padding-left: 0;
    font-size: 30px;
    line-height: 40px;
  }

  .section-4 {
    padding-left: 40px;
    padding-right: 40px;
  }

  .heading-8 {
    font-size: 30px;
  }

  .image-6 {
    max-width: 60%;
  }

  .about-us {
    border-bottom-color: #fff;
  }

  .container-9 {
    padding-left: 20px;
    padding-right: 20px;
  }

  .paragraph-28 {
    font-size: 14px;
  }

  .section-6 {
    height: 170px;
  }

  .paragraph-31 {
    font-size: 14px;
    line-height: 25px;
  }

  .column, .column-2 {
    margin-top: 40px;
  }

  .image-10 {
    padding-top: 20px;
  }

  .image-11 {
    margin-top: 20px;
  }

  .list {
    margin-top: 30px;
    padding-left: 13px;
  }

  .div-block-49 {
    flex-flow: column;
  }

  .image-16 {
    height: auto;
  }

  .image-17, .image-18, .image-19 {
    height: auto;
    margin-top: 20px;
  }
}

#w-node-_04727c47-5a71-908f-9249-123d0b561e20-16aaa074 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: center;
}

#w-node-_7c2c3ce9-268d-7634-c1fc-73cde41acef4-16aaa074 {
  align-self: center;
}

#w-node-_2b93cddd-5c5f-f9ab-293b-74a585b8b5ea-16aaa074, #w-node-_1f8cf798-b468-e85b-fa7d-0b4c21370017-16aaa074 {
  justify-self: end;
}

#w-node-baecc5da-3ae0-6c14-1e0a-e6beb83aa8c5-16aaa074, #w-node-_71d505ab-8b7d-faa5-aad3-7d82331eb3ac-16aaa074, #w-node-c0301116-a7ab-b89a-dde0-3b9ac1581c87-16aaa074, #w-node-b18f8156-cadc-0271-4d07-ebbeb2d0b1b4-16aaa074, #w-node-c87208ff-0918-017d-2570-a625ac0e55ac-16aaa074, #w-node-_9638918a-deae-179b-1630-3a93557161bf-16aaa074, #w-node-_2d624a1f-51ec-1edb-2724-bb74088925a2-16aaa074 {
  justify-self: auto;
}


@font-face {
  font-family: 'Poppins';
  src: url('../fonts/Poppins-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Poppins';
  src: url('../fonts/Poppins-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Poppins';
  src: url('../fonts/Poppins-Light.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Poppins';
  src: url('../fonts/Poppins-SemiBold.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}