html {
  box-sizing: border-box;
}
*,
*::before,
*::after {
  box-sizing: inherit;
}
img {
  max-width: 100%;
  height: auto;
}

.editor-styles-wrapper :where(.wp-site-blocks) > * {
  margin-block-start: 0 !important;
}
main {
  margin-block-start: 0 !important;
  margin-block-end: 0 !important;
}
.editor-styles-wrapper .edit-post-visual-editor__post-title-wrapper h1 {
  max-width: 1280px;
  margin-bottom: 2rem;
  text-align: center;
}
:where(.wp-site-blocks) > div {
  margin-block-start: 0 !important;
  margin-block-end: 0 !important;
}
:where(body .is-layout-constrained) > div {
  margin-block-start: 0 !important;
  margin-block-end: 0 !important;
}
.wp-block-video {
  margin: 0 !important;
}

/* grid */
._row {
  display: flex;
  flex-wrap: wrap;
}
._row-padded {
  padding-left: 1rem;
  padding-right: 1rem;
  display: flex;
  flex-wrap: wrap;
}
._col-8 {margin: 0 1rem;width: calc(8.333% - 2rem);}
._col-17 {margin: 0 1rem;width: calc(16.666% - 2rem);}
._col-20 {margin: 0 1rem;width: calc(20% - 2rem);}
._col-25 {margin: 0 1rem;width: calc(25% - 2rem);}
._col-30 {margin: 0 1rem;width: calc(30% - 2rem);}
._col-33 {margin: 0 1rem;width: calc(33.333% - 2rem);}
._col-40 {margin: 0 1rem;width: calc(40% - 2rem);}
._col-42 {margin: 0 1rem;width: calc(41.666% - 2rem);}
._col-45 {margin: 0 1rem;width: calc(45% - 2rem);}
._col-50 {margin: 0 1rem;width: calc(50% - 2rem);}
._col-55 {margin: 0 1rem;width: calc(55% - 2rem);}
._col-58 {margin: 0 1rem;width: calc(58.333% - 2rem);}
._col-60 {margin: 0 1rem;width: calc(60% - 2rem);}
._col-67 {margin: 0 1rem;width: calc(66.666% - 2rem);}
._col-70 {margin: 0 1rem;width: calc(70% - 2rem);}
._col-75 {margin: 0 1rem;width: calc(75% - 2rem);}
._col-80 {margin: 0 1rem;width: calc(80% - 2rem);}
._col-83 {margin: 0 1rem;width: calc(83.333% - 2rem);}
._col-92 {margin: 0 1rem;width: calc(91.666% - 2rem);}
._col-100 {margin: 0 1rem;width: calc(100% - 2rem);}

._col-8w {margin: 0;width: 8.333%;}
._col-17w {margin: 0;width: 16.666%;}
._col-20w {margin: 0;width: 20%;}
._col-25w {margin: 0;width: 25%;}
._col-30w {margin: 0;width: 30%;}
._col-33w {margin: 0;width: 33.333%;}
._col-40w {margin: 0;width: 40%;}
._col-42w {margin: 0;width: 41.666%;}
._col-45w {margin: 0;width: 45%;}
._col-50w {margin: 0;width: 50%;}
._col-55w {margin: 0;width: 55%;}
._col-58w {margin: 0;width: 58.333%;}
._col-60w {margin: 0;width: 60%;}
._col-67w {margin: 0;width: 66.666%;}
._col-70w {margin: 0;width: 70%;}
._col-75w {margin: 0;width: 75%;}
._col-80w {margin: 0;width: 80%;}
._col-83w {margin: 0;width: 83.333%;}
._col-92w {margin: 0;width: 91.666%;}

._col-fill {margin: 0 1rem;flex: 1;min-width: 0;}
._v-centered {align-items: center;}
._h-centered {text-align: center;}

h1, h2, h3, h4 {
  padding: 0 0 2rem;
}
p {
  margin: 0 0 2rem;
  font-size: var(--wp--preset--font-size--default);
  line-height: 1.5;
}

a {
  -moz-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.wp-element-button:hover {
  scale: 110%;
  box-shadow: 0px 0px 20px rgba(0,0,0,0.3);
}

body {
  background-image: url(../images/green-bg.webp);
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: 0 0;
}
/*body.home {
  background-position: 0 0;
}*/
body.block-editor-iframe__body {
  background-image: none;
}
@media (min-width: 850px) {
  body {
    background-size: 100% 1000px;
  }
}
@media (max-width: 781px) {
  .mobile-reverse {
    flex-direction: column-reverse;
    flex-wrap: nowrap !important;
  }
}

.green-bg {
  background-image: url(../images/green-bg.webp);
  background-size: 100%;
  background-repeat: no-repeat;
}
.purple-bg {
  background-image: url(../images/purple-bg.webp);
  background-size: 100%;
  background-repeat: no-repeat;
}
.bg-centered {
  background-position: center;
}
@media (max-width: 768px) {
  body,
  .green-bg,
  .purple-bg {
    background-size: 200%;
  }
}

.sr-only {
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  width: 1px;
  margin: -1px;
}

/* Simple Animations
--------------------------------------------- */
@keyframes simple-fadein {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes simple-fadeindown {
  0% {
    transform: translate3d(0,-200px,0);
    opacity: 0;
  }
  100% {
    transform: translate3d(0,0,0);
    opacity: 1;
  }
}
@keyframes simple-fadeinup {
  0% {
    transform: translate3d(0,200px,0);
    opacity: 0;
  }
  100% {
    transform: translate3d(0,0,0);
    opacity: 1;
  }
}
@keyframes simple-fadeinleft {
  0% {
    transform: translate3d(-200px,0,0);
    opacity: 0;
  }
  100% {
    transform: translate3d(0,0,0);
    opacity: 1;
  }
}
@keyframes simple-fadeinright {
  0% {
    transform: translate3d(200px,0,0);
    opacity: 0;
  }
  100% {
    transform: translate3d(0,0,0);
    opacity: 1;
  }
}

.is-vertical.wp-block-navigation,
.is-vertical.wp-block-navigation ul,
.is-vertical.wp-block-navigation ul li {
  width: 100%;
}
.wp-block-navigation-item.has-child {
  flex-wrap: wrap;
}
.wp-block-navigation .has-child .wp-block-navigation__submenu-container {
  padding: 0px 10px 0px 15px !important;
  width: 100% !important;
  background: var(--wp--preset--color--secondary);
  border: none;
  position: relative;
}
.wp-block-navigation .has-child .wp-block-navigation__submenu-container li a {
  padding: 10px 5px !important;
  font-size: 21px;
}
.wp-block-navigation .has-child .wp-block-navigation__submenu-container li:first-child a {
  padding-top: 25px !important;
}
.wp-block-navigation .has-child .wp-block-navigation__submenu-container li:last-child a {
  padding-bottom: 15px !important;
}

.site-main [class*="_fade"] {
  opacity: 0;
}
.acf-block-preview div[class*="_fade"],
.acf-block-preview a[class*="_fade"] {
  opacity: 1;
}
.in-view ._fadeIn {
  animation: 1s ease-in-out normal forwards simple-fadein;
}
.in-view ._fadeInSlow {
  animation: 2s ease-in-out normal forwards simple-fadein;
}
.in-view ._fadeInDown {
  animation: 1s ease-in-out normal forwards simple-fadeindown;
}
.in-view ._fadeInDownSlow {
  animation: 2s ease-in-out normal forwards simple-fadeindown;
}
.in-view ._fadeInUp {
  animation: 1s ease-in-out normal forwards simple-fadeinup;
}
.in-view ._fadeInUpSlow {
  animation: 2s ease-in-out normal forwards simple-fadeinup;
}
.in-view ._fadeInLeft {
  animation: 1s ease-in-out normal forwards simple-fadeinleft;
}
.in-view ._fadeInLeftSlow {
  animation: 2s ease-in-out normal forwards simple-fadeinleft;
}
.in-view ._fadeInRight {
  animation: 1s ease-in-out normal forwards simple-fadeinright;
}
.in-view ._fadeInRightSlow {
  animation: 2s ease-in-out normal forwards simple-fadeinright;
}

.filter-purple {
  filter: invert(35%) sepia(9%) saturate(5914%) hue-rotate(225deg) brightness(94%) contrast(88%);
}
.filter-white {
  filter: invert(100%) sepia(100%) saturate(0%) hue-rotate(327deg) brightness(106%) contrast(104%);
}

.form-input-row {
  padding-bottom: 8px;
}
.form-inputs input,
.form-inputs textarea {
  width: 100%;
  max-width: 100%;
  padding: 15px 10px;
  font-size: 1.125rem;
  background: #eef1f5;
  border: 1px solid #bbb;
  border-radius: 5px;
}
.form-inputs input:focus,
.form-inputs textarea:focus {
  outline: none;
}
.form-inputs textarea {
  margin-bottom: -8px;
  height: 175px;
  font-family: var(--wp--preset--font-family--roboto);
}
.form-inputs .btn-row-btn {
  position: relative;
}
.form-inputs p.faux-label {
  padding-bottom: 0;
  margin-bottom: 0.5rem;
}
.form-inputs label:not([class="sr-only"]) {
  font-size: 1rem;
}
.form-inputs .btn-row-btn {
  padding-top: 4px;
  position: relative;
}
.form-inputs .btn-row-btn input[type="submit"] {
  width: auto;
  min-width: 100px;
  padding: 1.5rem 2rem;
  height: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #fff;
  font-size: 1rem !important;
  background: var(--wp--preset--color--primary);
  border: none;
  border-radius: 5px;
  box-shadow: 0px 0px 15px rgba(0,0,0,0);
  position: relative;
  z-index: 2;
  -moz-transition: all 0.2s ease-in-out;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.form-inputs .btn-row-btn input[type="submit"]:hover,
.form-inputs .btn-row-btn input[type="submit"]:focus {
  transform: scale(110%);
  box-shadow: 0px 0px 15px rgba(0,0,0,0.3);
}
.form-inputs input.wpcf7-not-valid,
.form-inputs textarea.wpcf7-not-valid {
  outline: 1px solid #f33;
}
.wpcf7-form.invalid .form-inputs .btn-row-btn input[type="submit"],
.wpcf7-form.sent .form-inputs .btn-row-btn input[type="submit"] {
  transform: scale(100%);
  box-shadow: 0px 0px 15px rgba(0,0,0,0);
}
.form-inputs .btn-row-btn .wpcf7-spinner {
  top: 29px;
  position: absolute;
  z-index: 3;
}
.form-inputs .wpcf7-not-valid-tip {
  display: none;
}
.wpcf7-response-output {
  margin: 1.5em 0 0 !important;
  padding: 0.5em 0 !important;
  color: #121212;
  line-height: 1.2;
  background: transparent;
  border: none !important;
}
.form-inputs ._row ._col-100 {
  margin: 0;
  width: 100%;
}
.form-inputs ._row ._col-50:last-child {
  margin: 0 0 0 1rem;
  width: calc(50% - 1rem);
}
.form-inputs ._row ._col-50:first-child {
  margin: 0 1rem 0 0;
  width: calc(50% - 1rem);
}
.form-inputs .label-before,
.form-inputs .label-after {
  padding-left: 10px;
  display: block;
}
.form-inputs .label-before {
  padding-top: 1rem;
  font-weight: bold;
  display: block;
}
.form-inputs .asterisk {
  color: #f33;
}
.form-inputs .label-after {
  color: #666;
}
.form-inputs .char-count {
  padding-left: 10px;
  font-size: 0.75rem;
  color: #666
}
.form-inputs .btn-row-btn {
  padding-top: 1.5rem;
}
@media (max-width: 680px) {
  .form-inputs ._row ._col-50:last-child,
  .form-inputs ._row ._col-50:first-child {
    margin: 0;
    width: 100%;
  }
}

.block-editor-block-list__block .screen-reader-response {
  display: none;
}
.block-editor-block-list__layout .form-inputs .wpcf7-response-output {
  display: none;
}
.site-footer .divider-wrap {
  padding-top: 30px;
}
.base-footer a {
  color: #121212 !important;
}
.copyright {
  gap: 5px !important;
}

@media (max-width: 768px) {
  .site-footer .section-divider .divider-wrap {
    padding: 0 0 30px !important;
  }
}
@media (max-width: 500px) {
  .site-footer .all-rights {
    margin-top: -6px;
    display: inline-block;
  }
  .site-footer .footer-hyphen {
    display: none;
  }
}

.two-col-x2 {
  padding-top: 1rem;
}