/*
Theme Name: XT Grid Theme
Author: Xtensive Web Design
Author URI: https://www.xtensive.co.uk
Description: A base theme built with CSS Grid
Version: 1.0
*/
/* Breakpoints */
/* Colors */
.site-header {
  background: #FFF;
  display: flex;
  flex-wrap: wrap; }
  .site-header .container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 2rem; }
  .site-header .logo img {
    max-width: 14rem;
    height: auto; }
  .site-header #mobile-button {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    border: 0;
    background: none;
    cursor: pointer;
    -webkit-appearance: none;
    width: 50px; }
    .site-header #mobile-button .line {
      width: 100%;
      height: 2px;
      background: #000;
      position: relative;
      transition: .3s; }
      .site-header #mobile-button .line:before {
        content: ' ';
        position: absolute;
        width: 100%;
        height: 2px;
        background: #000;
        top: -10px;
        left: 0;
        transition: .3s; }
      .site-header #mobile-button .line:after {
        content: ' ';
        position: absolute;
        width: 100%;
        height: 2px;
        background: #000;
        bottom: -10px;
        left: 0;
        transition: .3s; }
      .site-header #mobile-button .line:hover, .site-header #mobile-button .line:focus {
        background: #2A5135; }
        .site-header #mobile-button .line:hover:before, .site-header #mobile-button .line:hover:after, .site-header #mobile-button .line:focus:before, .site-header #mobile-button .line:focus:after {
          background: #2A5135; }
    @media (min-width: 800px) {
      .site-header #mobile-button {
        display: none; } }
  .site-header #close-button {
    position: absolute;
    top: 50px;
    right: 1rem;
    -webkit-appearance: none;
    background: none;
    border: 0;
    cursor: pointer; }
    .site-header #close-button .line {
      width: 30px;
      height: 2px;
      background: #FFF;
      transform: rotate(45deg);
      position: relative; }
      .site-header #close-button .line:before {
        position: absolute;
        content: ' ';
        width: 30px;
        height: 2px;
        background: #FFF;
        transform: rotate(-90deg);
        top: 0;
        left: 0; }

#mobile-menu {
  width: 100%;
  height: 100%;
  position: fixed;
  top: -100%;
  left: 0;
  background: #2A5135;
  overflow: hidden;
  padding: 2rem;
  transition: .4s ease-in-out;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  text-align: left;
  margin-top: 0;
  z-index: 100; }
  #mobile-menu.active {
    top: 0;
    transition: .4s; }
  #mobile-menu .menu-main-menu-container {
    width: 100%; }
  #mobile-menu .menu li {
    padding: 0.5rem 0; }
    #mobile-menu .menu li a {
      display: block;
      font-family: "scotch-display", sans-serif;
      font-size: calc(1.5rem + 0.3vw);
      color: #FBF9F6;
      text-decoration-color: transparent;
      transition: .3s;
      position: relative; }
      #mobile-menu .menu li a:before {
        content: ' ';
        position: absolute;
        width: 10px;
        height: 2px;
        background: #ABC7B3;
        top: 14px;
        left: 0;
        opacity: 0;
        visibility: hidden;
        transition: .3s; }
      #mobile-menu .menu li a:hover, #mobile-menu .menu li a:focus {
        color: #ABC7B3;
        padding-left: 1rem; }
        #mobile-menu .menu li a:hover:before, #mobile-menu .menu li a:focus:before {
          opacity: 1;
          visibility: visible; }
  #mobile-menu .sub-menu {
    list-style-type: none;
    padding: 0;
    height: 0;
    overflow: hidden;
    transition: .3s ease-in-out; }
    #mobile-menu .sub-menu.active {
      height: 200px;
      margin-top: 1rem;
      padding: 1rem 0;
      border-top: 1px solid #CCC;
      border-bottom: 1px solid #CCC; }
    #mobile-menu .sub-menu li a {
      font-size: 1.3rem;
      padding-left: 1rem; }
      #mobile-menu .sub-menu li a:before {
        opacity: 1;
        visibility: visible;
        top: 10px;
        background: #FFF; }

.menu {
  list-style-type: none;
  padding: 0;
  margin: 0; }

#main-menu {
  display: flex;
  width: 100%;
  padding: 0;
  margin: 0;
  display: none; }
  @media (min-width: 800px) {
    #main-menu {
      display: block; } }
  #main-menu .menu {
    display: flex;
    justify-content: flex-end;
    align-items: center; }
    #main-menu .menu li {
      margin-left: 2rem;
      position: relative; }
      #main-menu .menu li:hover .sub-menu, #main-menu .menu li:focus .sub-menu {
        opacity: 1;
        visibility: visible; }
      #main-menu .menu li a {
        color: #000;
        text-decoration-color: transparent;
        transition: .3s; }
        #main-menu .menu li a:hover, #main-menu .menu li a:focus {
          color: #2A5135; }
      #main-menu .menu li:last-child a {
        border: 2px solid #2A5135;
        padding: 0.6rem 1.8rem;
        border-radius: 100px;
        color: #2A5135;
        transition: .3s; }
        #main-menu .menu li:last-child a:hover, #main-menu .menu li:last-child a:focus {
          background: #2A5135;
          color: #FBF9F6; }
  #main-menu .sub-menu {
    position: absolute;
    background: #FFF;
    left: -50px;
    top: 2rem;
    z-index: 100;
    width: 300px;
    margin: 0;
    padding: 2rem;
    list-style-type: none;
    opacity: 0;
    visibility: hidden;
    transition: .3s; }
    #main-menu .sub-menu li {
      margin-left: 0;
      margin-bottom: 0.5rem; }
      #main-menu .sub-menu li:last-child {
        margin-bottom: 0; }
        #main-menu .sub-menu li:last-child a {
          border: 0;
          padding: 0;
          color: #000; }
          #main-menu .sub-menu li:last-child a:hover, #main-menu .sub-menu li:last-child a:focus {
            background: none;
            color: #2A5135; }

.cta {
  width: 100%;
  background: #2A5135 url("/wp-content/uploads/2024/03/fern-faded.png");
  padding: 4rem 2rem;
  text-align: center; }
  .cta h2 {
    font-size: calc(2rem + 0.5vw);
    padding: 0;
    margin: 0 0 2rem 0;
    color: #FBF9F6; }
  .cta .btn {
    color: #FBF9F6;
    border-color: #FBF9F6; }
    .cta .btn:hover, .cta .btn:focus {
      background: #FBF9F6;
      color: #2A5135; }

.site-footer {
  background: #FFF;
  width: 100%;
  display: flex;
  flex-direction: column;
  text-align: center;
  padding: 2rem; }
  @media (min-width: 800px) {
    .site-footer {
      flex-direction: row;
      justify-content: space-between; } }
  .site-footer p {
    margin: 0;
    font-size: 0.8rem; }
  .site-footer a {
    color: #000;
    text-decoration-color: transparent; }
    .site-footer a:hover, .site-footer a:focus {
      color: #2A5135; }

.slides {
  max-height: 600px;
  overflow: hidden;
  margin: 0;
  border: 0 !important; }

.slide-img {
  width: 100%;
  height: 600px;
  background-size: cover !important;
  background-position: center center !important;
  position: relative; }
  .slide-img .overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center; }

.blog-header {
  width: 100%;
  background: #333;
  padding: 2rem;
  text-align: center; }
  .blog-header h2 {
    color: #FFF; }

.blog-main {
  display: flex;
  flex-wrap: wrap;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  grid-gap: 1.25rem;
  padding: 2rem;
  max-width: 75rem;
  margin: 0 auto; }
  @media (min-width: 576px) {
    .blog-main {
      grid-template-columns: repeat(2, 1fr); } }
  @media (min-width: 992px) {
    .blog-main {
      grid-template-columns: repeat(3, 1fr); } }

.blog-post {
  display: flex;
  flex-direction: column;
  text-decoration: none; }
  @media (min-width: 576px) {
    .blog-post {
      width: 48%;
      margin: 0 1%; }
      @supports (display: grid) {
        .blog-post {
          width: 100%;
          margin: 0; } } }
  .blog-post .image {
    width: 100%;
    height: 300px;
    background-size: cover !important;
    background-position: center center !important; }
  .blog-post .meta {
    color: #000;
    text-transform: uppercase;
    font-size: 0.9rem; }
  .blog-post .title {
    color: #000;
    font-size: 1.2rem; }
  .blog-post p {
    color: #000; }

.post-single {
  width: 100%;
  max-width: 75rem;
  padding: 2rem;
  margin: 0 auto; }
  .post-single .attachment-post-thumbnail {
    width: 100%;
    height: auto; }

.share-buttons {
  font-size: 0.7rem;
  line-height: 0.7rem;
  letter-spacing: 0.063rem;
  text-transform: uppercase;
  margin: 0 0 3.75rem;
  z-index: 2;
  position: relative;
  text-align: center;
  list-style-type: none;
  padding: 0;
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  align-content: flex-start; }
  .share-buttons li {
    height: auto;
    flex: 0 1 auto;
    width: calc(33.3333333% - 1px);
    margin-right: 0.063rem; }
    .share-buttons li:last-child {
      width: 33.3333333%;
      margin-right: 0; }
      .share-buttons li:last-child a {
        border-radius: 0 0.188rem 0.188rem 0; }
    .share-buttons li:first-child a {
      border-radius: 0.188rem 0 0 0.188rem; }
  .share-buttons svg {
    fill: #fff;
    margin-right: 0.313rem;
    width: 1rem;
    height: 1rem; }
  .share-buttons a {
    display: block;
    padding: 0.75rem 0.75rem 0.563rem;
    text-align: center;
    color: White; }

.share-twitter {
  background: #1da1f2; }

.share-facebook {
  background: #3b5998; }

.share-pinterest {
  background: #b5071a; }

.error {
  width: 100%;
  height: 100vh;
  background: #f6f6f6;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column; }
  .error .content {
    max-width: 61.25rem;
    width: 100%;
    padding: 2rem;
    text-align: center; }
    .error .content h1 {
      font-size: 14rem;
      font-weight: 900;
      margin: 0;
      padding: 0;
      color: #000; }
    .error .content h3 {
      font-size: 5rem;
      font-weight: 900;
      color: #000;
      margin: 0;
      padding: 0; }
    .error .content h4 {
      font-size: 2rem;
      color: #000;
      margin-top: 0.625rem; }
    .error .content a {
      background: #FFF;
      border: 3px solid #000;
      color: #000;
      margin-top: 0.625rem;
      padding: 0.5rem 2rem;
      display: inline-block; }
      .error .content a:hover {
        background: #000;
        text-decoration: none;
        color: #FFF; }

html {
  box-sizing: border-box; }

p {
  font-size: 1rem;
  line-height: 1.5rem; }

* {
  box-sizing: inherit;
  font-family: "indivisible", sans-serif; }

h1, h2, h3 {
  font-family: "scotch-display", sans-serif;
  font-weight: 400; }

body {
  font-size: 16px;
  padding: 0;
  margin: 0; }

.entry-content .alignwide {
  margin-left: -80px;
  margin-right: -80px; }

.entry-content .alignfull {
  margin-left: calc( -100vw / 2 + 100% / 2 );
  margin-right: calc( -100vw / 2 + 100% / 2 );
  max-width: 100vw; }

.alignfull img {
  width: 100vw; }

.js-scroll {
  opacity: 0;
  transition: opacity 500ms; }

.js-scroll.scrolled {
  opacity: 1; }

.scrolled.fade-in {
  animation: fade-in 1s ease-in-out both; }

@keyframes fadein {
  from {
    opacity: 0; }
  to {
    opacity: 1; } }
@-moz-keyframes fadein {
  from {
    opacity: 0; }
  to {
    opacity: 1; } }
@-webkit-keyframes fadein {
  from {
    opacity: 0; }
  to {
    opacity: 1; } }
@-ms-keyframes fadein {
  from {
    opacity: 0; }
  to {
    opacity: 1; } }
@-o-keyframes fadein {
  from {
    opacity: 0; }
  to {
    opacity: 1; } }
@keyframes fadeup {
  from {
    opacity: 0;
    transform: translateY(1rem); }
  to {
    opacity: 1;
    transform: translateY(0); } }
@keyframes faderight {
  from {
    opacity: 0;
    transform: translateX(1rem); }
  to {
    opacity: 1;
    transform: translateX(0); } }
.btn, #gform_submit_button_1 {
  color: #2A5135;
  padding: 0.7rem 1.5rem;
  border: 2px solid #2A5135;
  border-radius: 100px;
  text-decoration-color: transparent;
  background: none;
  transition: .3s; }
  .btn:hover, .btn:focus, #gform_submit_button_1:hover, #gform_submit_button_1:focus {
    background: #2A5135;
    color: #FBF9F6; }

.home-hero {
  width: 100%;
  background: #FBF9F6;
  overflow: hidden;
  position: relative;
  padding-bottom: 4rem; }
  @media (min-width: 800px) {
    .home-hero {
      background: #FBF9F6 url("/wp-content/uploads/2024/03/double-fern.png");
      background-size: 250px;
      background-repeat: no-repeat;
      background-position: bottom left;
      padding-bottom: 0; } }
  .home-hero .container {
    padding: 4rem 2rem;
    position: relative;
    overflow: hidden;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap; }
    @media (min-width: 800px) {
      .home-hero .container {
        align-items: center;
        overflow: visible;
        position: initial;
        height: calc(100svh - 94px); } }
    .home-hero .container .text {
      width: 100%; }
      @media (min-width: 800px) {
        .home-hero .container .text {
          width: 50%;
          padding-right: 4rem; } }
      .home-hero .container .text .title {
        font-family: "scotch-display", sans-serif;
        font-size: calc(2.5rem + 0.5vw);
        line-height: 3rem;
        font-weight: 400;
        padding: 0;
        margin: 0 0 0.5rem 0;
        opacity: 0;
        transform: translateY(1rem);
        animation: fadeup 1s ease;
        animation-fill-mode: forwards; }
      .home-hero .container .text p {
        font-size: 1.4rem;
        padding: 0;
        margin: 0;
        opacity: 0;
        transform: translateY(1rem);
        animation: fadeup 1s ease;
        animation-fill-mode: forwards;
        animation-delay: .2s; }
      .home-hero .container .text .btn {
        display: inline-block;
        margin: 2rem 0 3rem 0;
        text-decoration-color: transparent;
        opacity: 0;
        transform: translateY(1rem);
        animation: fadeup 1s ease;
        animation-fill-mode: forwards;
        animation-delay: .4s;
        font-size: 1.2rem; }
    .home-hero .container .front-image {
      width: 90%;
      height: 450px;
      margin-left: 5%;
      margin-top: 2rem;
      position: relative;
      z-index: 2;
      opacity: 0;
      transform: translateY(1rem);
      animation: fadeup 1s ease;
      animation-fill-mode: forwards;
      animation-delay: .6s; }
      @media (min-width: 800px) {
        .home-hero .container .front-image {
          width: 35%;
          margin-top: 0; } }
      @media (min-width: 2000px) {
        .home-hero .container .front-image {
          width: 45%;
          margin-top: 0; } }
      .home-hero .container .front-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: top center; }
    .home-hero .container .bg-image {
      width: 80%;
      position: absolute;
      bottom: 0;
      right: 0;
      z-index: 1;
      height: 450px;
      opacity: 0;
      transform: translateX(1rem);
      animation: faderight 1s ease;
      animation-fill-mode: forwards;
      animation-delay: .4s; }
      @media (min-width: 800px) {
        .home-hero .container .bg-image {
          width: 40%;
          height: 100%;
          right: -3rem; } }
      .home-hero .container .bg-image img {
        width: 100%;
        height: 100%;
        object-fit: cover; }
    .home-hero .container .fern-1 {
      position: absolute;
      width: 135px;
      right: -10px;
      top: 210px;
      transform: rotate(-5deg); }
      @media (min-width: 800px) {
        .home-hero .container .fern-1 {
          display: none; } }

.hero-1 {
  background: #FBF9F6 url("/wp-content/uploads/2024/03/fern-bg-2.png");
  background-size: 150px;
  background-repeat: no-repeat;
  background-position: top right !important; }
  @media (min-width: 800px) {
    .hero-1 {
      background-size: 200px; } }
  .hero-1 .fern-1 {
    display: none; }

@media (min-width: 800px) {
  .hero-about {
    background-position: bottom right; } }
@media (min-width: 800px) {
  .hero-about .container {
    flex-direction: row-reverse; }
    .hero-about .container .text {
      padding-right: 0;
      padding-left: 4rem; }
    .hero-about .container .front-image {
      margin-left: 0;
      margin-right: 5%; }
    .hero-about .container .bg-image {
      right: auto;
      left: -3rem; } }
.hero-about .container .text .subheading {
  font-size: 1.4rem;
  padding: 0;
  margin: 0;
  opacity: 0; }
.hero-about .container .text p {
  margin: 1rem 0;
  font-size: 1rem; }

.home-text {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 4rem 2rem;
  display: flex;
  flex-wrap: wrap;
  overflow: hidden; }
  @media (min-width: 1400px) {
    .home-text {
      overflow: visible;
      padding: 6rem 2rem; } }
  .home-text article {
    width: 100%; }
    @media (min-width: 800px) {
      .home-text article {
        width: 60%;
        padding-right: 4rem;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        margin-top: 4rem; } }
    .home-text article h1 {
      font-size: calc(2.5rem + 0.5vw);
      padding: 0;
      margin: 0; }
    .home-text article p {
      font-size: 1rem;
      line-height: 1.7rem; }
    .home-text article .signature {
      margin-top: 3rem;
      font-size: 3rem;
      font-family: lindsey-signature, sans-serif;
      transform: rotate(-5deg);
      padding-left: 1rem; }
  .home-text .image {
    width: 90%;
    height: 450px;
    position: relative; }
    .home-text .image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: top center; }
    @media (min-width: 800px) {
      .home-text .image {
        width: 40%; } }

.home-services {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column-reverse;
  margin-top: 3rem; }
  @media (min-width: 800px) {
    .home-services {
      flex-direction: row;
      margin-top: 0; } }
  .home-services .content {
    width: 100%;
    background: #2A5135 url("/wp-content/uploads/2024/03/Fern-pattern.png");
    padding: 6rem 2rem; }
    @media (min-width: 800px) {
      .home-services .content {
        width: 50%; } }
    .home-services .content h2 {
      font-size: calc(2.5rem + 0.5vw);
      padding: 0;
      margin: 0 0 1rem 0;
      color: #FFF; }
    .home-services .content h3 {
      font-size: calc(1.3rem + 0.5vw);
      padding: 0;
      margin: 2rem 0 0 0;
      color: #FFF; }
    .home-services .content p {
      color: #FFF; }
    .home-services .content ul {
      list-style-type: circle;
      padding-left: 1rem;
      margin: 0; }
      .home-services .content ul li {
        color: #FFF;
        margin-bottom: 1rem;
        line-height: 1.5rem; }
        .home-services .content ul li:last-child {
          margin-bottom: 0; }
    .home-services .content .btn {
      margin-top: 2rem;
      color: #FBF9F6;
      border-color: #FBF9F6;
      display: inline-block; }
      .home-services .content .btn:hover, .home-services .content .btn:focus {
        background: #FBF9F6;
        color: #2A5135; }
  .home-services .image {
    width: 100%;
    height: 400px; }
    .home-services .image img {
      width: 100%;
      height: 100%;
      object-fit: cover; }
    @media (min-width: 800px) {
      .home-services .image {
        width: 50%;
        height: auto; } }

.process {
  width: 100%;
  padding: 8rem 0;
  position: relative;
  overflow: hidden; }
  .process .fern-left {
    position: absolute;
    top: 3rem;
    left: -1rem; }
    .process .fern-left img {
      width: 200px; }
  .process .fern-right {
    position: absolute;
    bottom: 3rem;
    right: -0.8rem; }
    .process .fern-right img {
      width: 100px;
      filter: opacity(0.5); }
  .process .container {
    padding: 0 2rem;
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-wrap: wrap; }
    .process .container h2 {
      font-size: calc(2.5rem + 0.5vw);
      padding: 0;
      margin: 0;
      width: 100%; }
    .process .container h3 {
      font-size: calc(1.3rem + 0.2vw); }
    .process .container p {
      padding: 0;
      margin: 0;
      font-size: 1.2rem;
      width: 100%; }
    .process .container .step {
      width: 100%;
      margin-top: 2rem; }
      @media (min-width: 800px) {
        .process .container .step {
          width: 33.333333%;
          padding: 0 2rem;
          margin-top: 4rem; } }
      .process .container .step span {
        background: #2A5135;
        padding: 1rem 1.6rem;
        border-radius: 200px;
        font-family: "scotch-display", sans-serif;
        font-size: 1.7rem;
        color: #FBF9F6;
        display: inline-block; }
      .process .container .step p {
        font-size: 1rem;
        margin-top: 1rem; }

.home-testimonials {
  width: 100%;
  padding: 6rem 0;
  background: #FBF9F6; }
  .home-testimonials .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center; }
    .home-testimonials .container h2 {
      font-size: calc(2.5rem + 0.5vw);
      padding: 0;
      margin: 0 0 2rem 0; }
    .home-testimonials .container li {
      padding: 1rem; }
    .home-testimonials .container .block {
      background: #FFF;
      padding: 1rem;
      border-radius: 6px;
      font-size: 0.8rem; }
      .home-testimonials .container .block em {
        font-size: 1rem; }
    .home-testimonials .container .slick-dots {
      list-style-type: none;
      display: flex;
      padding: 0;
      align-items: center;
      justify-content: center;
      margin-top: 1rem; }
      .home-testimonials .container .slick-dots .slick-active button {
        background: #2A5135;
        color: #2A5135; }
      .home-testimonials .container .slick-dots li {
        padding: 0; }
        .home-testimonials .container .slick-dots li button {
          background: #FFF;
          color: #FFF;
          border: 1px solid #2A5135;
          border-radius: 100%;
          cursor: pointer;
          font-size: 0.5rem;
          margin: 0 0.3rem; }

.about-block {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 6rem 2rem;
  position: relative;
  display: flex;
  flex-wrap: wrap;
  overflow: hidden; }
  @media (min-width: 800px) {
    .about-block {
      padding-bottom: 8rem; } }
  .about-block.active .front-image img {
    transform: translate(0);
    transition-delay: .5s; }
  .about-block.active .front-image:before {
    bottom: -2rem;
    right: -4rem;
    transition-delay: .5s; }
  .about-block article {
    width: 100%;
    margin-bottom: 4rem;
    position: relative; }
    @media (min-width: 800px) {
      .about-block article {
        width: 50%;
        padding-right: 4rem;
        margin-bottom: 0; } }
    .about-block article h2 {
      font-size: calc(2.5rem + 0.5vw);
      padding: 0;
      margin: 0 0 2rem 0; }
  .about-block .front-image {
    width: 90%;
    height: 400px;
    position: relative;
    transition: .3s ease-in-out; }
    @media (min-width: 800px) {
      .about-block .front-image {
        width: 50%;
        height: 500px; } }
    @media (min-width: 992px) {
      .about-block .front-image {
        width: 35%;
        margin-left: 7.5%; } }
    .about-block .front-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: top center; }

.contact-page {
  width: 100%;
  background: #FBF9F6;
  padding: 4rem 0; }
  .contact-page .container {
    padding: 0 2rem;
    max-width: 900px;
    margin: 0 auto;
    text-align: center; }
    .contact-page .container h1 {
      font-size: calc(2.5rem + 0.5vw);
      padding: 0;
      margin: 0 0 2rem 0;
      opacity: 0;
      transform: translateY(1rem);
      animation: fadeup 1s ease;
      animation-fill-mode: forwards; }
    .contact-page .container #field_1_1, .contact-page .container #field_1_3, .contact-page .container #field_1_4, .contact-page .container #field_1_5, .contact-page .container #field_1_6, .contact-page .container #field_1_7 {
      opacity: 0;
      transform: translateY(1rem);
      animation: fadeup 1s ease;
      animation-fill-mode: forwards;
      animation-delay: .6s; }
    .contact-page .container .gform-body {
      text-align: left; }
      .contact-page .container .gform-body .gfield_label {
        font-weight: 400;
        font-size: 0.8rem; }
      .contact-page .container .gform-body input[type="text"], .contact-page .container .gform-body input[type="tel"], .contact-page .container .gform-body input[type="email"] {
        height: 40px;
        border-radius: 10px;
        border: 1px solid #CCC; }
        .contact-page .container .gform-body input[type="text"]:focus-visible, .contact-page .container .gform-body input[type="tel"]:focus-visible, .contact-page .container .gform-body input[type="email"]:focus-visible {
          outline: 2px solid #2A5135;
          border-radius: 10px;
          -webkit-appearance: none;
          appearance: none; }
      .contact-page .container .gform-body textarea {
        border-radius: 10px;
        border: 1px solid #CCC; }
        .contact-page .container .gform-body textarea:focus-visible {
          outline: 2px solid #2A5135;
          border-radius: 10px;
          -webkit-appearance: none;
          appearance: none; }
      .contact-page .container .gform-body .gfield_consent_label a {
        color: #2A5135; }
  .contact-page #gform_submit_button_1 {
    font-size: 1.3rem;
    cursor: pointer; }

.gform_footer {
  text-align: center;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center; }

.page-header {
  width: 100%;
  background: #4C9461 url("/wp-content/uploads/2024/03/fern-faded.png");
  padding: 4rem 2rem;
  text-align: center;
  height: 300px;
  position: relative; }
  .page-header .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(42, 81, 53, 0.6);
    display: flex;
    align-items: center;
    justify-content: center; }
  .page-header h1 {
    font-size: calc(3.5rem + 0.5vw);
    padding: 0;
    margin: 0;
    color: #FFF;
    opacity: 0;
    transform: translateY(1rem);
    animation: fadeup 1s ease;
    animation-fill-mode: forwards;
    animation-delay: .2s; }

.std-page {
  width: 100%;
  display: block; }

.std-content {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 2rem;
  opacity: 0;
  transform: translateY(1rem);
  animation: fadeup 1s ease;
  animation-fill-mode: forwards; }
  .std-content h2 {
    font-size: calc(2rem + 0.5vw);
    padding: 0;
    margin: 0 0 1rem 0; }

.include-box {
  background: #FBF9F6; }
  .include-box .wp-block-media-text__content {
    padding: 4rem 2rem; }
    .include-box .wp-block-media-text__content ul {
      list-style-type: circle;
      padding-left: 1rem; }

/* animation css
opacity: 0;
      -webkit-animation: fadein 2s;
      -moz-animation: fadein 2s;
      -ms-animation: fadein 2s;
      -o-animation: fadein 2s;
      animation: fadein 2s;
      animation-delay: 1s;
      -webkit-animation-fill-mode: forwards;   */

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