@charset "UTF-8";
/** Global styles */
/** Colors */
/** Fonts */
/**************************************************************
-> Define font-face custom typefaces
**************************************************************/
@font-face {
  font-family: "AktivGrotesk";
  src: url("../fonts/subset-AktivGrotesk-Light.woff2") format("woff2");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "AktivGrotesk";
  src: url("../fonts/subset-AktivGrotesk-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "AktivGrotesk";
  src: url("../fonts/subset-AktivGrotesk-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "AktivGrotesk";
  src: url("../fonts/subset-AktivGrotesk-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Compadre";
  src: url("../fonts/subset-Compadre-Regular.woff2") format("woff2");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
:root {
  accent-color: #696;
}

html {
  box-sizing: border-box;
  font-size: 10px;
  -webkit-overflow-scrolling: auto;
  /* Stops scrolling immediately */
  overscroll-behavior-y: none;
}

body {
  font-family: "AktivGrotesk", sans-serif;
  font-size: 1.6rem;
  line-height: 1.875;
  font-weight: 400;
  color: #25201d;
  margin: 0;
  padding: 0;
  background-color: #f5f5f5;
}

p {
  margin: 0 0 1.5rem;
}

::-moz-selection {
  background: #96cc9e;
  color: #40453b;
}

::selection {
  background: #96cc9e;
  color: #40453b;
}

h1 {
  font-family: "Compadre", sans-serif;
  text-transform: uppercase;
}

h2 {
  font-size: 2.5rem;
  line-height: 1.14;
  font-weight: 400;
  color: #000;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  position: relative;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-tap-highlight-color: transparent;
}
*:focus,
*::before:focus,
*::after:focus {
  outline: none !important;
}

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

figure {
  padding: 0;
  margin: 0;
}

.container {
  width: 100%;
  margin: 0 auto;
  padding: 0 9%;
}
@media (max-width: 768px) {
  .container {
    display: flex;
    flex-direction: column;
  }
}
@media (min-width: 769px) {
  .container {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 4rem;
  }
}
@media (min-width: 1400px) {
  .container {
    padding: 0 7.5%;
  }
}
@media (min-width: 1500px) {
  .container {
    padding: 0 12.5%;
  }
}
@media (min-width: 1900px) {
  .container {
    padding: 0 20%;
  }
}

button {
  border: 0;
  padding: 0;
  background: none;
  border: 0;
}
button:focus {
  outline: none;
}

.prose > *:first-child {
  margin-top: 0;
}
.prose > *:last-child {
  margin-bottom: 0;
}
.prose h2 {
  font-size: 3.5rem;
  line-height: 1.14;
  text-transform: none;
  font-weight: 400;
  color: #75b08a;
  margin: 4rem 0 2rem;
}
.prose h3 {
  font-size: 2.5rem;
  line-height: 1.14;
  text-transform: none;
  font-weight: 400;
  color: #75b08a;
  margin: 3rem 0 1.5rem;
}
.prose p {
  font-size: 1.5rem;
  line-height: 1.6;
  font-weight: 400;
  color: #25201d;
}
@media (min-width: 769px) {
  .prose p {
    font-size: 1.6rem;
    line-height: 1.875;
  }
}
.prose figure {
  width: 100%;
  max-width: 100%;
  margin: 4rem 0;
}
.prose figure img {
  margin: 0;
}
.prose img {
  display: block;
  width: 100%;
  margin: 4rem 0;
}
.prose figure {
  width: 135% !important;
  max-width: none;
  transform: translateX(-13%);
}
.prose figcaption {
  font-size: 1.4rem;
  line-height: 1.5;
  color: rgba(37, 32, 29, 0.6);
  margin-top: 1rem;
  text-align: center;
}
.prose hr {
  width: 100%;
  height: 1px;
  background: rgba(112, 112, 112, 0.2);
  border: none;
  margin: 3rem 0;
}
.prose blockquote {
  margin: 1.5rem 0;
  border-left: 1px solid rgba(37, 32, 29, 0.2);
}
.prose blockquote::before {
  content: "“";
  position: absolute;
  top: -0.5rem;
  left: -3rem;
  font-family: "Compadre", sans-serif;
  font-size: 4rem;
  line-height: 1.125;
}
.prose blockquote p {
  color: #25201d;
  padding-left: 1.5rem;
  font-style: italic;
}
.prose ul,
.prose ol {
  margin: 0 0 1.5rem;
  padding: 0;
}
.prose li {
  margin-left: 1.8rem;
}
.prose ol li {
  padding-left: 0.5rem;
}
.prose a {
  color: #75b08a;
  transition: color 0.3s ease;
}
.prose a:hover {
  color: #40453b;
}

.site-header {
  height: 7.5rem;
  background-color: #f5f5f5;
}
@media (min-width: 769px) {
  .site-header {
    height: 13rem;
  }
}
.site-header .container {
  display: flex;
  justify-content: center;
  height: 100%;
}
@media (max-width: 768px) {
  .site-header .container {
    align-items: center;
  }
}
@media (min-width: 1000px) {
  .site-header .container {
    justify-content: space-between;
  }
}
.site-header ul {
  display: flex;
  align-items: center;
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.site-header li {
  margin-right: 3rem;
  line-height: 1.2;
}
.site-header li:last-child {
  margin: 0;
}
.site-header li.current-menu-item a {
  color: #96cc9e;
}
.site-header a {
  font-size: 1.4rem;
  line-height: 1.2;
  font-weight: 400;
  color: #40453b;
  text-decoration: none;
  letter-spacing: 2.6px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: color 0.3s ease;
}
.site-header a:hover {
  color: #96cc9e;
}
.site-header .nav-primary {
  width: 37.75%;
  display: flex;
  align-items: center;
}
@media (max-width: 1000px) {
  .site-header .nav-primary {
    display: none;
  }
}
.site-header .nav-primary .menu-primary-navigation-container {
  display: flex;
  align-items: center;
  list-style-type: none;
}
.site-header .brand {
  width: 10rem;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #40453b;
  transition: color 0.3s ease;
}
@media (min-width: 1000px) {
  .site-header .brand {
    width: 17.6rem;
    padding: 0 3rem;
  }
}
@media (min-width: 1250px) {
  .site-header .brand {
    width: 24.5%;
  }
}
.site-header .brand:hover {
  color: #96cc9e;
}
.site-header .brand svg {
  width: 10rem;
  padding-bottom: 1px;
}
@media (min-width: 1000px) {
  .site-header .brand svg {
    width: 13.1rem;
  }
}
@media (min-width: 1250px) {
  .site-header .brand svg {
    width: 17.6rem;
  }
}
.site-header .nav-secondary {
  width: 37.75%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
@media (max-width: 1000px) {
  .site-header .nav-secondary {
    display: none;
  }
}

.newsletter-sign-up {
  background-color: #40453b;
  padding: 5rem 0;
}
@media (max-width: 768px) {
  .newsletter-sign-up {
    text-align: center;
  }
}
.newsletter-sign-up p {
  color: #fff;
}
.newsletter-sign-up .heading {
  font-size: 2.2rem;
  margin-bottom: 0.5rem;
}
.newsletter-sign-up .main {
  margin-bottom: 2.5rem;
}
.newsletter-sign-up .inner {
  grid-column: 1/span 12;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-footer {
  background-color: #25201d;
}
@media (max-width: 768px) {
  .page-footer {
    text-align: center;
  }
}
.page-footer a,
.page-footer p {
  color: #fff;
}
.page-footer ul {
  padding: 0;
  margin: 0;
}
.page-footer .top .container {
  padding-top: 9rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid rgba(245, 245, 242, 0.5);
}
.page-footer .top .column {
  grid-column: span 3;
}
@media (max-width: 768px) {
  .page-footer .top .column {
    margin-bottom: 3rem;
  }
}
@media (max-width: 768px) {
  .page-footer .top .column:last-child .heading {
    display: none;
  }
}
.page-footer .top .heading {
  text-transform: uppercase;
  letter-spacing: 0.25em;
  font-weight: 700;
}
.page-footer .top a {
  font-size: 1.3rem;
  line-height: 1.2;
  font-weight: 400;
  color: #96cc9e;
  text-decoration: none;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: color 0.3s ease;
}
.page-footer .top a:hover {
  color: #75b08a;
}
.page-footer .bottom {
  padding: 4rem 0;
}
.page-footer .nav-footer li {
  font-size: 1.3rem;
  line-height: 1.84;
}
.page-footer .social {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 0.5rem;
}
@media (min-width: 769px) {
  .page-footer .social {
    justify-content: flex-start;
    flex-direction: row;
  }
}
.page-footer .social svg {
  height: 2.3rem;
  margin-right: 2.5rem;
}
@media (max-width: 768px) {
  .page-footer .social svg {
    margin: 0 0 1.5rem;
  }
}
.page-footer .social a {
  color: #fff;
  transition: color 0.3s ease;
}
.page-footer .social a:hover {
  color: #96cc9e;
}
.page-footer .social a:last-child {
  margin-right: 0;
}
.page-footer .social a:last-child svg {
  margin-right: 0;
}
.page-footer .contact-details {
  line-height: 1.5;
}
.page-footer .contact-details a {
  color: #fff;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid #75b08a;
  text-transform: none;
  letter-spacing: 0;
  font-size: 1.6rem;
  line-height: 1.5;
}
.page-footer .legal {
  display: flex;
  flex-direction: column;
  align-items: center;
  grid-column: 1/-1;
  text-align: center;
  margin-top: 2rem;
}
.page-footer .legal p {
  margin: 0;
}
.page-footer .legal ul {
  display: flex;
}
@media (max-width: 768px) {
  .page-footer .legal ul {
    flex-direction: column;
    margin-bottom: 3rem;
  }
}
.page-footer .legal li {
  margin-right: 1.2rem;
}
.page-footer .legal li:last-child {
  margin: 0;
}
.page-footer .legal a {
  text-decoration: none;
}
.page-footer .logo {
  order: 1;
  grid-column: 6/span 2;
  color: #fff;
}
@media (max-width: 768px) {
  .page-footer .logo {
    order: 1;
    max-width: 22rem;
    margin: 0 auto;
  }
}
.page-footer .logo svg {
  color: #fff;
  width: 100%;
}
.page-footer .partner-logos {
  display: flex;
  align-items: center;
  justify-content: space-between;
  grid-column: 8/span 5;
  margin-top: 3rem;
}
@media (max-width: 500px) {
  .page-footer .partner-logos {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
}
@media (min-width: 501px) and (max-width: 768px) {
  .page-footer .partner-logos {
    display: flex;
    gap: 2rem;
  }
}
.page-footer .partner-logos.left {
  grid-column: 1/span 5;
  order: 2;
}
@media (min-width: 769px) {
  .page-footer .partner-logos.left {
    justify-content: flex-start;
    margin-top: 0;
    order: 1;
  }
}
.page-footer .partner-logos.right {
  order: 3;
  grid-column: 8/span 5;
}
@media (max-width: 500px) {
  .page-footer .partner-logos.right {
    margin-top: 1.5rem;
  }
}
@media (min-width: 769px) {
  .page-footer .partner-logos.right {
    justify-content: flex-end;
    margin-top: 0;
    order: 3;
  }
}
.page-footer .partner-logos svg,
.page-footer .partner-logos img {
  width: 100%;
  max-width: 15rem;
}
@media (min-width: 501px) {
  .page-footer .partner-logos svg,
.page-footer .partner-logos img {
    max-width: 100%;
    width: 50%;
    max-width: 20rem;
  }
}
@media (min-width: 769px) {
  .page-footer .partner-logos svg,
.page-footer .partner-logos img {
    max-width: 100%;
    width: 25%;
    margin-left: 5%;
  }
}
.page-footer .partner-logos svg:first-child,
.page-footer .partner-logos img:first-child {
  margin-left: 0;
}

.mobile-nav-icon {
  position: absolute;
  top: 2.5rem;
  right: 3.5rem;
  height: 30px;
  width: 32px;
  cursor: pointer;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 200;
}
@media (min-width: 1000px) {
  .mobile-nav-icon {
    display: none;
  }
}
.mobile-nav-icon.scroll-down {
  transform: translateY(-8rem);
}
.mobile-nav-icon .burger-button {
  position: relative;
  height: 3rem;
  width: 2.5rem;
  display: block;
  border: 0;
  border-radius: 0;
  background-color: transparent;
  pointer-events: all;
  cursor: pointer;
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.mobile-nav-icon .burger-bar {
  background-color: #25201d;
  position: absolute;
  top: 50%;
  right: 0;
  left: 0;
  height: 2px;
  width: auto;
  margin-top: -1px;
  border-radius: 1rem;
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1), opacity 0.3s cubic-bezier(0.165, 0.84, 0.44, 1), background-color 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.mobile-nav-icon .burger-bar--1 {
  transform: translateY(-6px);
}
.mobile-nav-icon .burger-bar--2 {
  transform-origin: 100% 50%;
  transform: scaleX(1);
}
.mobile-nav-icon .burger-button:hover .burger-bar--2 {
  transform: scaleX(1);
}
.mobile-nav-icon .no-touchevents .burger-bar--2:hover {
  transform: scaleX(1);
}
.mobile-nav-icon .burger-bar--3 {
  transform: translateY(6px);
}
.mobile-nav-icon .active .burger-button {
  transform: rotate(-180deg);
}
.mobile-nav-icon .active .burger-bar {
  background-color: #fff;
}
.mobile-nav-icon .active .burger-bar--1 {
  transform: rotate(45deg);
}
.mobile-nav-icon .active .burger-bar--2 {
  opacity: 0;
}
.mobile-nav-icon .active .burger-bar--3 {
  transform: rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 1.3rem 2rem 2rem;
  z-index: 5;
  overflow-y: scroll;
  -ms-overflow-style: none;
  z-index: 100;
  background: #40453b;
  opacity: 0;
  pointer-events: none;
  text-align: center;
  transition: transform 0s;
}
.mobile-menu::-webkit-scrollbar {
  display: none;
}
.mobile-menu.slide-out {
  transition: transform 1.5s ease-out;
  transform: translateX(-101%);
}
.mobile-menu a {
  color: #fff;
  text-decoration: none;
  font-size: 5.1vw;
  line-height: 3;
  text-transform: uppercase;
  letter-spacing: 0.2em;
}
.mobile-menu a .description {
  display: none;
}
.mobile-menu a .new-badge {
  display: none;
}
.mobile-menu ul {
  padding: 0;
}
.mobile-menu li.current-menu-item a {
  text-decoration: underline;
}
.mobile-menu .brand {
  position: absolute;
  top: 2rem;
  left: 50%;
  width: 25vw;
  transform: translateX(-50%);
}
.mobile-menu .brand svg {
  width: 100%;
}
.mobile-menu .button {
  margin: 5vh 1rem 0 0;
  padding: 1.3rem 2rem 1.1rem;
}
.mobile-menu .button.button-outline {
  background: transparent;
  border: 1px solid #fff;
  transition: border-color 0.3s ease;
}
.mobile-menu .button.button-outline:hover {
  border: 1px solid rgba(255, 255, 255, 0.5);
}
.mobile-menu .button.button-outline a {
  color: #fff;
}
.mobile-menu .button a {
  font-size: 1.8rem;
  color: #fff;
}
.mobile-menu ul {
  list-style-type: none;
}
.mobile-menu ul li {
  font-weight: 400;
}
.mobile-menu .nav-primary {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  transform: translateY(-50%);
}
.mobile-menu .mobile-search-trigger {
  color: #fff;
  padding: 1rem;
  cursor: pointer;
}
.mobile-menu .mobile-search-trigger svg {
  width: 1.6rem;
}

.fill {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.arch {
  border-top-left-radius: 100rem;
  border-top-right-radius: 100rem;
}

/** Dependancy styles */
@font-face {
  font-family: "swiper-icons";
  src: url("data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA") format("woff");
  font-weight: 400;
  font-style: normal;
}
:root {
  --swiper-theme-color: #007aff;
}

.swiper {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  /* Fix of Webkit flickering */
  z-index: 1;
}

.swiper-vertical > .swiper-wrapper {
  flex-direction: column;
}

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  box-sizing: content-box;
}

.swiper-android .swiper-slide,
.swiper-wrapper {
  transform: translate3d(0px, 0, 0);
}

.swiper-pointer-events {
  touch-action: pan-y;
}
.swiper-pointer-events.swiper-vertical {
  touch-action: pan-x;
}

.swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform;
}

.swiper-slide-invisible-blank {
  visibility: hidden;
}

/* Auto Height */
.swiper-autoheight,
.swiper-autoheight .swiper-slide {
  height: auto;
}
.swiper-autoheight .swiper-wrapper {
  align-items: flex-start;
  transition-property: transform, height;
}

.swiper-backface-hidden .swiper-slide {
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}

/* 3D Effects */
.swiper-3d, .swiper-3d.swiper-css-mode .swiper-wrapper {
  perspective: 1200px;
}
.swiper-3d .swiper-wrapper,
.swiper-3d .swiper-slide,
.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-slide-shadow-bottom,
.swiper-3d .swiper-cube-shadow {
  transform-style: preserve-3d;
}
.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-slide-shadow-bottom {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}
.swiper-3d .swiper-slide-shadow {
  background: rgba(0, 0, 0, 0.15);
}
.swiper-3d .swiper-slide-shadow-left {
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-3d .swiper-slide-shadow-right {
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-3d .swiper-slide-shadow-top {
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-3d .swiper-slide-shadow-bottom {
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

/* CSS Mode */
.swiper-css-mode > .swiper-wrapper {
  overflow: auto;
  scrollbar-width: none;
  /* For Firefox */
  -ms-overflow-style: none;
  /* For Internet Explorer and Edge */
}
.swiper-css-mode > .swiper-wrapper::-webkit-scrollbar {
  display: none;
}
.swiper-css-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: start start;
}

.swiper-horizontal.swiper-css-mode > .swiper-wrapper {
  -ms-scroll-snap-type: x mandatory;
      scroll-snap-type: x mandatory;
}

.swiper-vertical.swiper-css-mode > .swiper-wrapper {
  -ms-scroll-snap-type: y mandatory;
      scroll-snap-type: y mandatory;
}

.swiper-centered > .swiper-wrapper::before {
  content: "";
  flex-shrink: 0;
  order: 9999;
}
.swiper-centered.swiper-horizontal > .swiper-wrapper > .swiper-slide:first-child {
  -webkit-margin-start: var(--swiper-centered-offset-before);
          margin-inline-start: var(--swiper-centered-offset-before);
}
.swiper-centered.swiper-horizontal > .swiper-wrapper::before {
  height: 100%;
  width: var(--swiper-centered-offset-after);
}
.swiper-centered.swiper-vertical > .swiper-wrapper > .swiper-slide:first-child {
  -webkit-margin-before: var(--swiper-centered-offset-before);
          margin-block-start: var(--swiper-centered-offset-before);
}
.swiper-centered.swiper-vertical > .swiper-wrapper::before {
  width: 100%;
  height: var(--swiper-centered-offset-after);
}
.swiper-centered > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: center center;
}

/* a11y */
.swiper .swiper-notification {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  opacity: 0;
  z-index: -1000;
}

/* Preloader */
:root {
  /*
  --swiper-preloader-color: var(--swiper-theme-color);
  */
}

.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  transform-origin: 50%;
  box-sizing: border-box;
  border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
  border-radius: 50%;
  border-top-color: transparent;
}

.swiper:not(.swiper-watch-progress) .swiper-lazy-preloader,
.swiper-watch-progress .swiper-slide-visible .swiper-lazy-preloader {
  -webkit-animation: swiper-preloader-spin 1s infinite linear;
          animation: swiper-preloader-spin 1s infinite linear;
}

.swiper-lazy-preloader-white {
  --swiper-preloader-color: #fff;
}

.swiper-lazy-preloader-black {
  --swiper-preloader-color: #000;
}

@-webkit-keyframes swiper-preloader-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes swiper-preloader-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
:root {
  /*
  --swiper-pagination-color: var(--swiper-theme-color);
  --swiper-pagination-bullet-size: 8px;
  --swiper-pagination-bullet-width: 8px;
  --swiper-pagination-bullet-height: 8px;
  --swiper-pagination-bullet-inactive-color: #000;
  --swiper-pagination-bullet-inactive-opacity: 0.2;
  --swiper-pagination-bullet-opacity: 1;
  --swiper-pagination-bullet-horizontal-gap: 4px;
  --swiper-pagination-bullet-vertical-gap: 6px;
  */
}

.swiper-pagination {
  position: absolute;
  text-align: center;
  transition: 300ms opacity;
  transform: translate3d(0, 0, 0);
  z-index: 10;
}
.swiper-pagination.swiper-pagination-hidden {
  opacity: 0;
}

/* Common Styles */
.swiper-pagination-fraction,
.swiper-pagination-custom,
.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal {
  bottom: 10px;
  left: 0;
  width: 100%;
}

/* Bullets */
.swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0;
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transform: scale(0.33);
  position: relative;
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
  transform: scale(1);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
  transform: scale(1);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
  transform: scale(0.66);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
  transform: scale(0.33);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
  transform: scale(0.66);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
  transform: scale(0.33);
}

.swiper-pagination-bullet {
  width: var(--swiper-pagination-bullet-width, var(--swiper-pagination-bullet-size, 8px));
  height: var(--swiper-pagination-bullet-height, var(--swiper-pagination-bullet-size, 8px));
  display: inline-block;
  border-radius: 50%;
  background: var(--swiper-pagination-bullet-inactive-color, #000);
  opacity: var(--swiper-pagination-bullet-inactive-opacity, 0.2);
}
button.swiper-pagination-bullet {
  border: none;
  margin: 0;
  padding: 0;
  box-shadow: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer;
}
.swiper-pagination-bullet:only-child {
  display: none !important;
}

.swiper-pagination-bullet-active {
  opacity: var(--swiper-pagination-bullet-opacity, 1);
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
}

.swiper-vertical > .swiper-pagination-bullets,
.swiper-pagination-vertical.swiper-pagination-bullets {
  right: 10px;
  top: 50%;
  transform: translate3d(0px, -50%, 0);
}
.swiper-vertical > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-vertical.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: var(--swiper-pagination-bullet-vertical-gap, 6px) 0;
  display: block;
}
.swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
}
.swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,
.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  display: inline-block;
  transition: 200ms transform, 200ms top;
}

.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 4px);
}
.swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}
.swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: 200ms transform, 200ms left;
}

.swiper-horizontal.swiper-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: 200ms transform, 200ms right;
}

/* Progress */
.swiper-pagination-progressbar {
  background: rgba(0, 0, 0, 0.25);
  position: absolute;
}
.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transform: scale(0);
  transform-origin: left top;
}
.swiper-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  transform-origin: right top;
}
.swiper-horizontal > .swiper-pagination-progressbar, .swiper-pagination-progressbar.swiper-pagination-horizontal, .swiper-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite, .swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite {
  width: 100%;
  height: 4px;
  left: 0;
  top: 0;
}
.swiper-vertical > .swiper-pagination-progressbar, .swiper-pagination-progressbar.swiper-pagination-vertical, .swiper-horizontal > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite, .swiper-pagination-progressbar.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite {
  width: 4px;
  height: 100%;
  left: 0;
  top: 0;
}

.swiper-pagination-lock {
  display: none;
}

/** Component styles */
.cookie-banner {
  position: fixed;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: auto;
  max-width: calc(100% - 10rem);
  bottom: 0;
  left: 0;
  background: #fff;
  padding: 2.5rem 3rem;
  transform: translateY(100%);
  transition: transform 1s ease;
  border-top-right-radius: 1rem;
  box-shadow: 0px 0px 50px 0px rgba(0, 0, 0, 0.16);
  z-index: 50;
}
@media (max-width: 768px) {
  .cookie-banner {
    flex-direction: column;
    text-align: center;
    width: calc(100% - 4rem);
    left: 2rem;
    border-radius: 1rem;
    max-width: 100%;
    padding: 2rem;
  }
}
.cookie-banner.active {
  transform: translateY(0);
  transition: transform 0 ease;
}
@media (max-width: 768px) {
  .cookie-banner.active {
    bottom: 2rem;
  }
}
.cookie-banner p {
  font-size: 1.6rem;
  font-weight: 300;
  margin: 0;
}
.cookie-banner strong {
  display: inline-block;
  font-weight: 700;
  text-transform: uppercase;
}
.cookie-banner strong a {
  text-decoration: none;
}
.cookie-banner a {
  display: inline-block;
  text-decoration: underline;
  color: #75b08a;
}
.cookie-banner .link {
  margin-left: 1.5rem;
}
.cookie-banner .button {
  margin-top: 1.5rem;
  padding: 1.2rem 3rem 1.1rem;
}
@media (min-width: 769px) {
  .cookie-banner .button {
    padding: 1.2rem 3rem 1.1rem;
    margin-top: 0;
    margin-left: 3rem;
  }
}

.button {
  display: inline-block;
  font-size: 1.3rem;
  line-height: 1.875;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  padding: 1.2rem 3rem 0.7rem;
  background-color: transparent;
  color: #fff;
  border: 1px solid #fff;
  transition: border-color 0.3s ease, color 0.3s ease;
  max-width: 100%;
  overflow: hidden;
  cursor: pointer;
  white-space: nowrap;
  text-decoration: none;
}
.button:hover {
  border-color: #96cc9e;
  color: #96cc9e;
}

.link {
  display: inline-block;
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 1.5;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: #75b08a;
  transition: color 0.3s ease;
  max-width: 100%;
  overflow: hidden;
  cursor: pointer;
  white-space: nowrap;
  text-decoration: none;
  border-bottom: 1px solid #75b08a;
}
.link:hover {
  color: #96cc9e;
}

/** Template-specific styles */
@media (max-width: 768px) {
  .template-home .text-arch {
    padding: 3.5rem 9% 5rem;
  }
}
@media (min-width: 769px) {
  .template-home .text-arch {
    padding: 13rem 13rem 0;
  }
}
.template-home .text-arch h2 {
  max-width: 17ch;
}
@media (max-width: 768px) {
  .template-home .text-arch .video {
    display: none;
  }
}

.home-hero {
  background-color: #f5f5f5;
}
@media (max-width: 768px) {
  .home-hero {
    aspect-ratio: 16/9;
  }
}
.home-hero h1 {
  color: #fff;
  font-size: 3rem;
  line-height: 1;
  font-weight: 300;
  letter-spacing: 0.1em;
  margin: 1rem 0 0;
  width: 100%;
  text-align: center;
  padding: 0 3rem;
}
@media (min-width: 769px) {
  .home-hero h1 {
    font-size: 6rem;
  }
}
.home-hero .container {
  height: 100%;
  align-items: start;
  justify-content: start;
}
.home-hero .content {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  grid-column: 1/span 12;
  grid-row-start: 1;
  z-index: 3;
}
@media (max-width: 768px) {
  .home-hero .content {
    padding: 5rem 0 10rem;
  }
}
.home-hero .symbol {
  color: #fff;
}
.home-hero .symbol svg {
  width: 5rem;
}
.home-hero .image {
  z-index: 1;
}
@media (max-width: 768px) {
  .home-hero .image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
}
@media (min-width: 769px) {
  .home-hero .image {
    grid-column: 1/span 12;
    grid-row: 1;
    padding-bottom: 51.51%;
  }
}
.home-hero .image img {
  -o-object-fit: cover;
     object-fit: cover;
}
.home-hero .image figcaption {
  position: absolute;
  bottom: 1rem;
  left: 0;
  right: 0;
  font-size: 1.1rem;
  line-height: 1.5;
  font-weight: 400;
  color: #fff;
  width: 100%;
  text-align: center;
  padding: 0 1rem;
  z-index: 3;
}
@media (min-width: 769px) {
  .home-hero .image figcaption {
    font-size: 1.3rem;
  }
}

.text-arch {
  padding: 5rem 9%;
  background-color: #f5f5f5;
}
@media (min-width: 769px) {
  .text-arch {
    padding: 13rem;
  }
}
.text-arch h2 {
  font-size: 2.5rem;
  line-height: 1.25;
  text-transform: none;
  font-weight: 400;
  color: #75b08a;
  max-width: 24ch;
}
@media (min-width: 769px) {
  .text-arch h2 {
    font-size: 3rem;
    line-height: 1.14;
  }
}
@media (min-width: 1000px) {
  .text-arch h2 {
    font-size: 3.5rem;
  }
}
.text-arch p {
  max-width: 50ch;
}
.text-arch .container {
  align-items: center;
}
@media (max-width: 1349px) {
  .text-arch .container {
    padding: 0;
  }
}
.text-arch .top-text {
  grid-column: span 12;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.text-arch .top-text h2 {
  text-align: center;
  max-width: 35ch;
}
.text-arch .top-text .heading {
  font-size: 1.3rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 500;
}
.text-arch .text {
  grid-column: 1/span 6;
  order: 2;
}
@media (min-width: 769px) {
  .text-arch .text {
    order: 1;
  }
}
@media (min-width: 1350px) {
  .text-arch .text {
    grid-column: 2/span 5;
  }
}
@media (max-width: 768px) {
  .text-arch .text p {
    font-size: 1.5rem;
    line-height: 1.6;
  }
}
.text-arch .text p:last-child {
  margin-bottom: 0;
}
.text-arch .text a {
  color: #75b08a;
  transition: color 0.3s ease;
}
.text-arch .text a:hover {
  color: #40453b;
}
@media (max-width: 768px) {
  .text-arch .text > *:first-child:not(h2) {
    margin-top: 3rem;
  }
}
.text-arch .image {
  width: 100%;
  grid-column: 8/span 5;
  order: 1;
}
@media (min-width: 769px) {
  .text-arch .image {
    order: 2;
  }
}
@media (min-width: 1000px) {
  .text-arch .image {
    grid-column: 8/span 4;
  }
}
@media (min-width: 1350px) {
  .text-arch .image {
    grid-column: 8/span 4;
  }
}
.text-arch .image::before {
  content: "";
  display: block;
  width: 100%;
  padding-bottom: 141.5%;
}
.text-arch .image img {
  -o-object-fit: cover;
     object-fit: cover;
}
.text-arch .video {
  width: 100%;
  grid-column: 8/span 5;
  order: 1;
}
@media (min-width: 769px) {
  .text-arch .video {
    order: 2;
  }
}
@media (min-width: 1000px) {
  .text-arch .video {
    grid-column: 8/span 4;
  }
}
@media (min-width: 1350px) {
  .text-arch .video {
    grid-column: 8/span 4;
  }
}
.text-arch .video::before {
  content: "";
  display: block;
  width: 100%;
  padding-bottom: 141.5%;
}
.text-arch .video video {
  -o-object-fit: cover;
     object-fit: cover;
}
.text-arch .link {
  margin-top: 2rem;
}

.full-width-image {
  width: 100%;
}
.full-width-image figcaption {
  position: absolute;
  bottom: 1rem;
  left: 0;
  right: 0;
  font-size: 1.1rem;
  line-height: 1.5;
  font-weight: 400;
  color: #fff;
  width: 100%;
  text-align: center;
  padding: 0 1rem;
  text-shadow: 0 0 6px rgba(0, 0, 0, 0.7);
  z-index: 3;
}
@media (min-width: 769px) {
  .full-width-image figcaption {
    font-size: 1.3rem;
  }
}
.full-width-image .image {
  width: 100%;
}
.full-width-image .image::before {
  content: "";
  display: block;
  width: 100%;
  padding-bottom: 54.51%;
}
.full-width-image img {
  -o-object-fit: cover;
     object-fit: cover;
}

.quotes {
  display: flex;
  padding: 8rem 0 6rem;
  background-color: #40453b;
}
@media (min-width: 769px) {
  .quotes {
    padding: 18rem 0 15rem;
  }
}
.quotes p {
  color: #e8e0d6;
  max-width: 45ch;
}
.quotes .quote-text {
  font-family: "Compadre", sans-serif;
  font-size: 1.8rem;
  line-height: 1.25;
  letter-spacing: 0.1em;
}
@media (max-width: 768px) {
  .quotes .quote-text {
    padding-right: 9%;
  }
}
@media (min-width: 769px) {
  .quotes .quote-text {
    font-size: 3rem;
    line-height: 1.125;
  }
}
@media (min-width: 1000px) {
  .quotes .quote-text {
    font-size: 4rem;
  }
}
.quotes .quote-text::before {
  content: "“";
  position: absolute;
  top: 0;
  left: -1.5rem;
  font-size: 2rem;
  line-height: 1.125;
}
@media (min-width: 769px) {
  .quotes .quote-text::before {
    font-size: 3rem;
  }
}
@media (min-width: 1000px) {
  .quotes .quote-text::before {
    font-size: 4rem;
    left: -3rem;
  }
}
.quotes .attribution {
  padding-left: 1.2rem;
  line-height: 1.5;
  margin-top: 4.2rem;
}
.quotes .attribution::before {
  content: "";
  position: absolute;
  top: 1px;
  left: 0;
  width: 1px;
  height: 1.9rem;
  background-color: #e8e0d6;
}
.quotes .swiper {
  grid-column: 2/span 9;
  width: 100%;
  overflow: visible;
}
.quotes .swiper-slide {
  display: flex;
  flex-direction: column;
  transition: opacity 0.2s linear;
}
.quotes .swiper-pagination {
  grid-column: 12/span 1;
  display: flex;
  flex-direction: column;
  width: auto;
  left: initial;
  right: 9%;
  top: 50%;
  bottom: initial;
  transform: translateY(-50%);
}
@media (min-width: 769px) {
  .quotes .swiper-pagination {
    right: 0;
  }
}
.quotes .swiper-pagination-bullet {
  margin: 0.4rem 0 !important;
  background: #fff !important;
  opacity: 1 !important;
  width: 1rem;
  height: 1rem;
}
.quotes .swiper-pagination-bullet-active {
  background: #96cc9e !important;
}

.recent-projects {
  display: flex;
  padding: 6rem 0;
  background-color: #f5f5f5;
}
@media (min-width: 769px) {
  .recent-projects {
    padding: 12rem 0;
  }
}
.recent-projects .container {
  justify-items: center;
}
.recent-projects .heading {
  font-size: 2rem;
  line-height: 1.25;
  grid-column: span 12;
  font-family: "Compadre", sans-serif;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #40453b;
}
@media (min-width: 769px) {
  .recent-projects .heading {
    font-size: 3rem;
    line-height: 1.125;
  }
}
@media (min-width: 1000px) {
  .recent-projects .heading {
    font-size: 5rem;
  }
}
.recent-projects .project {
  width: 100%;
  grid-column: span 5;
  text-decoration: none;
}
.recent-projects .project:hover .image img {
  transform: scale(1.1);
  will-change: transform;
}
.recent-projects .project:nth-child(even) {
  grid-column: 2/span 5;
}
.recent-projects .project .image {
  width: 100%;
  margin-bottom: 2rem;
  overflow: hidden;
}
.recent-projects .project .image::before {
  content: "";
  display: block;
  width: 100%;
  padding-top: 66.93%;
}
.recent-projects .project .image img {
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.65, 0, 0.35, 1);
}
.recent-projects .project .title {
  font-size: 1.8rem;
  color: #75b08a;
  line-height: 1.6;
  margin-bottom: 0;
}
@media (min-width: 769px) {
  .recent-projects .project .title {
    font-size: 2.2rem;
  }
}
.recent-projects .project .location {
  font-size: 1.3rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-weight: 400;
  line-height: 1.6;
  color: #25201d;
}
.recent-projects .project .excerpt {
  color: #25201d;
}
@media (max-width: 768px) {
  .recent-projects .project .excerpt {
    font-size: 1.5rem;
    line-height: 1.6;
  }
}
.recent-projects .link-container {
  grid-column: span 12;
  margin-top: 2rem;
}

@media (max-width: 768px) {
  .template-about .home-hero {
    margin: 3rem 0 0;
  }
}
.template-about .home-hero .image {
  padding-bottom: 60%;
}
@media (max-width: 768px) {
  .template-about .home-hero .image {
    position: relative;
    left: initial;
    width: 100%;
    width: auto;
  }
}
.template-about .home-hero .inner {
  width: 100%;
  grid-column: span 12;
  overflow: hidden;
}
.template-about .home-hero img,
.template-about .home-hero video {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: bottom center;
     object-position: bottom center;
  transform: scale(1.01);
}
.template-about .home-hero .image {
  opacity: 1;
  transition: opacity 0.3s ease;
  z-index: 2;
}
.template-about .home-hero .image:hover {
  cursor: crosshair;
}
.template-about .home-hero .image.hidden {
  opacity: 0;
}
.template-about .home-hero video {
  z-index: 1;
}
.template-about .text-arch .top-text {
  order: 1;
}
.template-about .text-arch .image {
  order: 2;
  grid-column: 2/span 4;
}
.template-about .text-arch .video {
  order: 2;
  grid-column: 2/span 4;
}
.template-about .text-arch .text {
  order: 3;
  grid-column: 7/span 5;
}

.about-main-content {
  padding: 5rem 0 0;
}
@media (min-width: 769px) {
  .about-main-content {
    padding: 9.5rem 0 3rem;
  }
}
.about-main-content blockquote {
  margin-bottom: 3rem;
}
.about-main-content h1,
.about-main-content h4 {
  font-size: 1.3rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 500;
  text-align: center;
  margin: 0 0 3rem;
}
.about-main-content hr {
  border: none;
  border-top: solid 1px rgba(37, 32, 29, 0.1);
  margin-bottom: 6rem;
}
.about-main-content .inner {
  grid-column: 4/span 6;
}
.about-main-content img {
  margin: 7.5rem 0;
}
@media (max-width: 768px) {
  .about-main-content p {
    font-size: 1.5rem;
    line-height: 1.6;
  }
}
.about-main-content p a {
  color: #75b08a;
  transition: color 0.3s ease;
}
.about-main-content p a:hover {
  color: #40453b;
}

.template-about .services-sections {
  margin-top: 0;
  margin-bottom: 5rem;
}
@media (min-width: 769px) {
  .template-about .services-sections {
    padding-top: 10rem;
    margin-bottom: 10rem;
  }
}

.team {
  background-color: #e8e0d6;
  padding: 5rem 0 0.5rem;
}
@media (min-width: 769px) {
  .team {
    padding: 9rem 0;
  }
}
.team h2 {
  font-size: 1.3rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 500;
  text-align: center;
  margin: 0 0 1rem;
}
@media (max-width: 768px) {
  .team p {
    font-size: 1.5rem;
    line-height: 1.6;
  }
}
.team .single-team {
  width: 100%;
  display: flex;
  align-items: center;
  flex-direction: column;
  grid-column: span 12;
}
.team .single-team .person {
  width: 100%;
  transform: none !important;
}
@media (min-width: 769px) {
  .team .single-team .person {
    width: 50%;
  }
}
@media (min-width: 1300px) {
  .team .single-team .person {
    width: 33.33%;
  }
}
.team .heading-text {
  grid-column: span 12;
}
@media (max-width: 768px) {
  .team .heading-text {
    margin-bottom: 3rem;
  }
}
.team .intro {
  text-align: center;
  max-width: 65ch;
  margin: 0 auto;
}
.team .person {
  grid-column: span 4;
}
.team .person:hover .text {
  opacity: 1;
}
.team .image {
  padding-top: 100%;
}
.team .image img {
  -o-object-fit: cover;
     object-fit: cover;
}
.team .text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 3rem 0;
  opacity: 0;
  transition: opacity 0.45s ease-in-out;
}
@media (max-width: 768px) {
  .team .text {
    display: none;
    margin-bottom: 3rem;
  }
}
@media (min-width: 769px) {
  .team .text {
    background-color: rgba(0, 0, 0, 0.8);
    padding: 3rem;
  }
}
.team .text.text-mobile {
  position: relative;
  display: block;
  opacity: 1;
}
@media (min-width: 769px) {
  .team .text.text-mobile {
    display: none;
  }
}
.team .text h3 {
  font-size: 1.3rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 500;
  margin: 0 0 1.5rem;
}
@media (min-width: 769px) {
  .team .text h3 {
    color: #fff;
  }
}
.team .text .bio {
  line-height: 1.5;
  margin: 0;
}
@media (min-width: 769px) {
  .team .text .bio {
    color: #fff;
  }
}

.about-community {
  padding: 6rem 0;
}
@media (min-width: 769px) {
  .about-community {
    padding: 10rem 0 11rem;
  }
}
.about-community h2 {
  grid-column: span 12;
  text-align: center;
  font-size: 1.3rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 500;
  text-align: center;
  margin: 0 0 1rem;
  color: #25201d;
}
.about-community .column {
  display: flex;
  flex-direction: column;
  align-items: center;
  grid-column: span 6;
}
.about-community .column > *:first-child {
  margin-top: 0;
}
.about-community .column > *:last-child {
  margin-bottom: 0;
}
.about-community p {
  max-width: 65ch;
}

.template-about .text-arch {
  background-color: #e8e0d6;
}

.approach-hero {
  background-color: #f5f5f5;
}
.approach-hero .heading-container {
  grid-column: 2/span 10;
  padding: 4rem 0 5rem;
}
@media (min-width: 769px) {
  .approach-hero .heading-container {
    padding: 9rem 0 10rem;
  }
}
.approach-hero h1 {
  width: 100%;
  max-width: 30ch;
  font-size: 3rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.1em;
  text-align: center;
  color: #40453b;
  margin: 0 auto;
  -webkit-hyphens: none;
      -ms-hyphens: none;
          hyphens: none;
}
@media (min-width: 769px) {
  .approach-hero h1 {
    font-size: 4rem;
  }
}
@media (min-width: 1000px) {
  .approach-hero h1 {
    font-size: 5rem;
  }
}

.top-images {
  padding: 2.5rem 0;
}
.top-images .image {
  grid-column: span 6;
  padding-bottom: 65.63%;
  overflow: hidden;
}
.top-images .image img {
  -o-object-fit: cover;
     object-fit: cover;
}

.approach-main-text {
  padding: 10rem 0 11rem;
}
.approach-main-text .column {
  display: flex;
  flex-direction: column;
  align-items: center;
  grid-column: span 6;
}
.approach-main-text .column > *:first-child {
  margin-top: 0;
}
.approach-main-text .column > *:last-child {
  margin-bottom: 0;
}
.approach-main-text p {
  max-width: 65ch;
}

.portfolio-hero {
  background-color: #f5f5f5;
}
.portfolio-hero .heading-container {
  grid-column: 2/span 10;
  padding: 2rem 0 5rem;
}
@media (min-width: 769px) {
  .portfolio-hero .heading-container {
    padding: 2rem 0 7rem;
  }
}
@media (min-width: 1000px) {
  .portfolio-hero .heading-container {
    padding: 9rem 0 10rem;
  }
}
.portfolio-hero h1 {
  width: 100%;
  max-width: 22ch;
  font-size: 3rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.1em;
  text-align: center;
  color: #40453b;
  margin: 0 auto;
  -webkit-hyphens: none;
      -ms-hyphens: none;
          hyphens: none;
}
@media (min-width: 769px) {
  .portfolio-hero h1 {
    font-size: 4rem;
  }
}
@media (min-width: 1000px) {
  .portfolio-hero h1 {
    font-size: 5rem;
  }
}

.card-list {
  display: flex;
  background-color: #f5f5f5;
}
@media (min-width: 769px) {
  .card-list {
    padding: 0 0 7rem;
  }
}
.card-list .container {
  justify-items: center;
}
.card-list .heading {
  grid-column: span 12;
  font-family: "Compadre", sans-serif;
  font-size: 5rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #40453b;
}
.card-list .card {
  width: 100%;
  grid-column: 2/span 10;
  text-decoration: none;
}
@media (max-width: 768px) {
  .card-list .card {
    margin-bottom: 3rem;
  }
}
.card-list .card:hover .image img {
  transform: scale(1.1);
  will-change: transform;
}
.card-list .card .image {
  width: 100%;
  margin-bottom: 2rem;
  overflow: hidden;
}
.card-list .card .image::before {
  content: "";
  display: block;
  width: 100%;
  padding-top: 66.93%;
}
.card-list .card .image img {
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.65, 0, 0.35, 1);
}
.card-list .card .title {
  font-size: 1.8rem;
  color: #75b08a;
  line-height: 1.6;
  margin-bottom: 0;
}
@media (min-width: 769px) {
  .card-list .card .title {
    font-size: 2.2rem;
  }
}
.card-list .card .location {
  display: flex;
  font-size: 1.3rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-weight: 400;
  line-height: 1.6;
  color: #25201d;
}
.card-list .card .excerpt {
  color: #25201d;
}
@media (max-width: 768px) {
  .card-list .card .excerpt {
    font-size: 1.5rem;
    line-height: 1.6;
  }
}

.template-blog .card-list {
  padding-top: 4rem;
}

.blog-hero {
  background-color: #f5f5f5;
}
.blog-hero h1 {
  width: 100%;
  max-width: 22ch;
  font-size: 3rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.1em;
  text-align: center;
  color: #40453b;
  margin: 0 auto;
  -webkit-hyphens: none;
      -ms-hyphens: none;
          hyphens: none;
}
@media (min-width: 769px) {
  .blog-hero h1 {
    font-size: 4rem;
  }
}
@media (min-width: 1000px) {
  .blog-hero h1 {
    font-size: 5rem;
  }
}
.blog-hero h2 {
  width: 100%;
  max-width: 22ch;
  font-family: "Compadre", sans-serif;
  font-size: 3rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #fff;
  -webkit-hyphens: none;
      -ms-hyphens: none;
          hyphens: none;
  margin: 0;
}
@media (min-width: 769px) {
  .blog-hero h2 {
    font-size: 4rem;
  }
}
@media (min-width: 1000px) {
  .blog-hero h2 {
    font-size: 5rem;
  }
}
.blog-hero .container {
  height: 100%;
  align-items: start;
  justify-content: start;
}
.blog-hero .content {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  grid-column: 1/span 12;
  grid-row-start: 1;
  padding-left: 5%;
  text-decoration: none;
  z-index: 3;
}
@media (max-width: 768px) {
  .blog-hero .content {
    padding: 11rem 0;
  }
}
@media (min-width: 769px) {
  .blog-hero .content:hover + .image img {
    transform: scale(1.1);
    will-change: transform;
  }
}
.blog-hero .content p {
  color: #fff;
  font-size: 3.5rem;
  line-height: 1.2;
  margin: 0;
}
.blog-hero .image {
  z-index: 1;
}
@media (max-width: 768px) {
  .blog-hero .image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
}
@media (min-width: 769px) {
  .blog-hero .image {
    grid-column: 1/span 12;
    grid-row: 1;
    overflow: hidden;
    padding-bottom: 51.51%;
  }
}
.blog-hero .image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgb(0, 0, 0) 0%, rgba(0, 0, 0, 0) 100%);
  opacity: 0.5;
  z-index: 2;
}
.blog-hero .image img {
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.65, 0, 0.35, 1);
  z-index: 1;
}
.blog-hero .heading-container {
  width: 100%;
  grid-column: 2/span 10;
  padding: 4rem 0 3rem;
}
@media (min-width: 769px) {
  .blog-hero .heading-container {
    padding: 9rem 0 10rem;
  }
}

.news-filters {
  background-color: #f5f5f5;
}
.news-filters form {
  width: 100%;
  display: flex;
  justify-content: center;
}
.news-filters ul {
  display: flex;
  padding-left: 0;
  width: 100%;
  justify-content: center;
}
@media (max-width: 768px) {
  .news-filters ul {
    flex-wrap: wrap;
    justify-content: space-between;
  }
}
.news-filters li {
  display: flex !important;
  flex-shrink: 0;
  align-items: center;
  cursor: pointer;
}
@media (max-width: 768px) {
  .news-filters ul li {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .news-filters ul li ul li {
    width: 30%;
    display: flex;
    justify-content: center;
  }
  .news-filters ul li ul li label {
    padding: 0 !important;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}
@media (min-width: 769px) {
  .news-filters ul li ul li {
    margin: 0 0 0 4rem !important;
  }
}
.news-filters ul li ul li:first-child {
  margin-left: 0 !important;
}
.news-filters .inner {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  grid-column: span 12;
}
.news-filters .filter-heading {
  font-size: 2.2rem;
  line-height: 1;
  color: #75b08a;
}
.news-filters .sf-input-radio {
  display: none;
}
.news-filters .sf-label-radio {
  font-size: 1.2rem;
  text-transform: uppercase;
  font-weight: 500;
  letter-spacing: 0.2em;
  color: #40453b;
  transition: color 0.3s ease;
  text-align: center;
  cursor: pointer;
}
@media (min-width: 769px) {
  .news-filters .sf-label-radio {
    font-size: 1.3rem;
  }
}
.news-filters .sf-label-radio:hover {
  color: #96cc9e;
}
.news-filters .sf-label-radio::before {
  content: "";
  display: block;
  width: 5rem;
  height: 5rem;
  margin: 0 auto 1rem;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
@media (min-width: 769px) {
  .news-filters .sf-label-radio::before {
    width: 6rem;
    height: 6rem;
  }
}
.news-filters .sf-input-radio[value=""] + .sf-label-radio::before {
  background-color: #e8e0d6;
  border-radius: 100%;
}
.news-filters .sf-input-radio[value=""] + .sf-label-radio::before {
  background-image: url("../images/icon-all.svg");
}
.news-filters .sf-input-radio[value=craft] + .sf-label-radio::before {
  background-image: url("../images/icon-craft.svg");
}
.news-filters .sf-input-radio[value=design] + .sf-label-radio::before {
  background-image: url("../images/icon-design.svg");
}
.news-filters .sf-input-radio[value=garden] + .sf-label-radio::before {
  width: 7rem;
  height: 6rem;
  background-image: url("../images/icon-garden.svg");
}
.news-filters .sf-input-radio[value=inspire] + .sf-label-radio::before {
  background-image: url("../images/icon-inspire.svg");
}
.news-filters .sf-input-radio[value=nature] + .sf-label-radio::before {
  background-image: url("../images/icon-nature.svg");
}
.news-filters .sf-input-radio[value=news] + .sf-label-radio::before {
  background-image: url("../images/icon-news.svg");
}
.news-filters .sf-option-active .sf-label-radio {
  color: #96cc9e;
}

.pagination {
  grid-column: 2/span 10;
  width: 100%;
  display: flex;
  justify-content: center;
  border-top: 1px solid #e2e2e2;
  padding-top: 4rem;
}
.pagination .inner {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}
.pagination .page-numbers {
  text-decoration: none;
  color: #75b08a;
  margin: 0 0.5rem;
}
.pagination .current {
  color: #40453b;
}
.pagination .pagination-next-prev {
  display: flex;
  justify-content: center;
  align-items: center;
}
.pagination .pagination-icon {
  color: #75b08a;
  background-color: #e2e2e2;
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: color 0.3s ease, background-color 0.3s ease;
  transform: translateY(-1px);
}
.pagination .pagination-icon svg {
  width: 1.2rem;
  height: 1.2rem;
}
.pagination .prev {
  position: absolute;
  left: 0;
  top: 0;
}
.pagination .prev .pagination-icon {
  margin-right: 1rem;
}
.pagination .prev .pagination-icon svg {
  transform: rotate(180deg);
}
.pagination .next {
  position: absolute;
  right: 0;
  top: 0;
}
.pagination .next .pagination-icon {
  margin-left: 1rem;
}
.pagination .prev:hover .pagination-icon,
.pagination .next:hover .pagination-icon {
  background-color: #75b08a;
  color: #fff;
}

.form-outer {
  padding: 0 0 5rem;
}
@media (min-width: 769px) {
  .form-outer {
    padding: 0 0 10rem;
  }
}
.form-outer h1 {
  grid-column: span 12;
  font-family: "Compadre", sans-serif;
  font-size: 3rem;
  line-height: 1.2;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 300;
  color: #40453b;
  text-align: center;
  padding: 2rem 0 1.5rem;
}
@media (min-width: 769px) {
  .form-outer h1 {
    font-size: 4rem;
  }
}
@media (min-width: 1000px) {
  .form-outer h1 {
    font-size: 5rem;
  }
}
.form-outer h2 {
  font-size: 3.5rem;
  line-height: 1.14;
  text-transform: none;
  font-weight: 400;
  color: #75b08a;
  margin: 2rem 0 0;
}
.form-outer .gform_wrapper {
  grid-column: 4/span 6;
}
.form-outer .gform_wrapper.gravity-theme form {
  display: flex;
  flex-direction: column;
}
.form-outer .gform_wrapper.gravity-theme .gform_fields {
  gap: 2.5rem;
}
.form-outer .gform_wrapper.gravity-theme label,
.form-outer .gform_wrapper.gravity-theme legend {
  font-family: "AktivGrotesk", sans-serif;
  font-size: 1.6rem;
  line-height: 1.875;
  font-weight: 400;
  color: #25201d;
}
@media (max-width: 768px) {
  .form-outer .gform_wrapper.gravity-theme label,
.form-outer .gform_wrapper.gravity-theme legend {
    font-size: 1.5rem;
  }
}
.form-outer .gform_wrapper.gravity-theme .gfield_consent_label {
  font-size: 1.4rem;
  line-height: 1.7;
}
.form-outer .gform_wrapper.gravity-theme input[type=text],
.form-outer .gform_wrapper.gravity-theme input[type=email],
.form-outer .gform_wrapper.gravity-theme input[type=url],
.form-outer .gform_wrapper.gravity-theme textarea,
.form-outer .gform_wrapper.gravity-theme select {
  font-family: "AktivGrotesk", sans-serif;
  font-size: 1.6rem;
  line-height: 1.5;
  font-weight: 400;
  color: #25201d;
  border: 1px solid rgba(64, 69, 59, 0.2);
  border-radius: 0;
  padding: 1.4rem 1rem 1rem 1.5rem;
}
@media (max-width: 768px) {
  .form-outer .gform_wrapper.gravity-theme input[type=text],
.form-outer .gform_wrapper.gravity-theme input[type=email],
.form-outer .gform_wrapper.gravity-theme input[type=url],
.form-outer .gform_wrapper.gravity-theme textarea,
.form-outer .gform_wrapper.gravity-theme select {
    font-size: 1.5rem;
    padding: 0.8rem 0.5rem 0.5rem 1rem;
  }
}
.form-outer .gform_wrapper.gravity-theme input[type=submit],
.form-outer .gform_wrapper.gravity-theme .button {
  display: inline-block;
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 1.5;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: #75b08a !important;
  transition: color 0.3s ease;
  max-width: 100%;
  overflow: hidden;
  cursor: pointer;
  white-space: nowrap;
  text-decoration: none;
  border: none;
  border-bottom: 1px solid #75b08a;
  padding: 0;
  margin-top: 2rem;
  background: none !important;
}
@media (max-width: 768px) {
  .form-outer .gform_wrapper.gravity-theme input[type=submit],
.form-outer .gform_wrapper.gravity-theme .button {
    font-size: 1.5rem;
  }
}
.form-outer .gform_wrapper.gravity-theme input[type=submit]:hover,
.form-outer .gform_wrapper.gravity-theme .button:hover {
  color: #96cc9e !important;
}
.form-outer .gform_wrapper.gravity-theme .gfield_consent_description {
  height: auto !important;
  max-height: none !important;
  padding: 0 !important;
  border: 0 !important;
  overflow: auto !important;
  font-size: 1.4rem !important;
  line-height: 1.7;
}
.form-outer .gform_wrapper.gravity-theme .gfield_consent_description a {
  color: #75b08a;
  transition: color 0.3s ease;
}
.form-outer .gform_wrapper.gravity-theme .gfield_consent_description a:hover {
  color: #40453b;
}
.form-outer .gform_wrapper.gravity-theme .ginput_container_consent {
  padding: 1rem 0;
}
.form-outer .gform_wrapper.gravity-theme .validation_message {
  display: none;
}
.form-outer .gform_wrapper.gravity-theme .gform-icon.gform-icon--close {
  display: none;
}
.form-outer .gform_confirmation_wrapper {
  grid-column: 4/span 6;
  text-align: center;
}
.form-outer .gf_progressbar_wrapper {
  order: 2;
}
.form-outer .gf_progressbar_wrapper {
  margin-top: 5rem;
}
.form-outer .gf_progressbar_percentage.percentbar_blue {
  background-color: #40453b !important;
}
.form-outer h3.gsection_title {
  font-size: 2.5rem;
  line-height: 1.14;
  text-transform: none;
  font-weight: 400;
  color: #75b08a;
  margin: 0;
}
.form-outer .gfield.gsection {
  border: none !important;
}

.template-contact .main-contact-details {
  grid-column: span 12;
  text-align: center;
  margin: -2rem 0 4rem;
}
.template-contact .main-contact-details p {
  margin-bottom: 0;
  font-size: 2rem;
}
.template-contact .main-contact-details .phone {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
}
@media (max-width: 768px) {
  .template-contact .main-contact-details .phone span {
    display: block;
  }
  .template-contact .main-contact-details .phone .slash {
    display: none;
  }
}
.template-contact .form {
  grid-column: span 6;
}
@media (max-width: 768px) {
  .template-contact .form {
    margin: 3rem 0;
    order: 2;
  }
}
.template-contact .contact-details {
  grid-column: span 6;
}
.template-contact textarea {
  max-height: 11.7rem;
}

.news-content {
  margin: 0 0 5rem;
}
.news-content h1 {
  grid-column: span 12;
  font-family: "Compadre", sans-serif;
  font-size: 3rem;
  line-height: 1.2;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 300;
  color: #40453b;
  text-align: center;
  padding: 0 0 2rem;
}
@media (min-width: 769px) {
  .news-content h1 {
    font-size: 4rem;
    padding: 2rem 0 1.5rem;
  }
}
@media (min-width: 1000px) {
  .news-content h1 {
    font-size: 5rem;
  }
}
.news-content .main-image {
  width: 100%;
  grid-column: span 12;
  margin-bottom: 4rem;
}
@media (min-width: 1300px) {
  .news-content .main-image {
    grid-column: 3/span 8;
  }
}
.news-content .main-image figcaption {
  position: absolute;
  bottom: 1rem;
  left: 0;
  right: 0;
  font-size: 1.1rem;
  line-height: 1.5;
  font-weight: 400;
  color: #fff;
  width: 100%;
  text-align: center;
  padding: 0 1rem;
  text-shadow: 0 0 6px rgba(0, 0, 0, 0.7);
  z-index: 3;
}
@media (min-width: 769px) {
  .news-content .main-image figcaption {
    font-size: 1.3rem;
  }
}
.news-content .main-content {
  width: 100%;
  grid-column: span 12;
}
@media (min-width: 1000px) {
  .news-content .main-content {
    grid-column: 4/span 6;
  }
}

@media (min-width: 769px) {
  .single-portfolio .prose img {
    max-width: 136%;
    width: 140%;
    margin: 4rem 0 4rem -18%;
  }
}
@media (min-width: 769px) {
  .single-portfolio .prose figure {
    max-width: 140%;
    width: 136%;
    transform: translateX(0);
    margin: 4rem 0 4rem -18%;
  }
}
.single-portfolio .prose figure img {
  width: 100%;
  margin: 0;
  transform: translateX(0);
}

.services-sections {
  margin: 2rem 0 5rem;
}
@media (min-width: 769px) {
  .services-sections {
    margin-top: 10rem;
  }
}
.services-sections .services-section {
  margin-bottom: 6rem;
  padding-bottom: 6rem;
  border-bottom: 1px solid rgba(117, 176, 138, 0.5);
}
.services-sections .services-section:last-child {
  border: none;
  padding-bottom: 0;
}
.services-sections .container {
  align-items: baseline;
}
.services-sections .left {
  grid-column: 1/span 5;
}
@media (min-width: 1150px) {
  .services-sections .left {
    grid-column: 2/span 4;
  }
}
@media (max-width: 768px) {
  .services-sections .left {
    margin-bottom: 3rem;
  }
}
@media (min-width: 769px) {
  .services-sections .left {
    text-align: center;
  }
}
.services-sections .left h2 {
  font-family: "AktivGrotesk", sans-serif;
  font-size: 2.5rem;
  color: #75b08a;
  margin-top: 0;
}
@media (max-width: 768px) {
  .services-sections .left h2 {
    text-align: center;
  }
}
.services-sections .right {
  grid-column: 7/span 6;
}
.services-sections .right h3 {
  font-size: 1.3rem;
  line-height: 1.5;
  font-weight: 500;
  color: #25201d;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.services-sections .image {
  width: 100%;
  margin: 3rem 0;
}
.services-sections .image::before {
  content: "";
  display: block;
  width: 100%;
  padding-bottom: 141.5%;
}
.services-sections .image img {
  -o-object-fit: cover;
     object-fit: cover;
}
.services-sections .video {
  width: 100%;
  margin: 3rem 0;
}
.services-sections .video::before {
  content: "";
  display: block;
  width: 100%;
  padding-bottom: 141.5%;
}
.services-sections .video video {
  -o-object-fit: cover;
     object-fit: cover;
}
.services-sections .link {
  margin-top: 2rem;
}

.text-page-content {
  /* Default Table Style */
}
.text-page-content h1 {
  grid-column: span 12;
  width: 100%;
  max-width: 22ch;
  font-size: 3rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.1em;
  text-align: center;
  color: #40453b;
  margin: 0 auto;
  -webkit-hyphens: none;
      -ms-hyphens: none;
          hyphens: none;
  padding: 2rem 0 5rem;
}
@media (min-width: 769px) {
  .text-page-content h1 {
    font-size: 4rem;
    padding: 2rem 0 7rem;
  }
}
@media (min-width: 1000px) {
  .text-page-content h1 {
    font-size: 5rem;
    padding: 9rem 0 10rem;
  }
}
.text-page-content .main-content {
  width: 100%;
  grid-column: span 12;
  margin-bottom: 3rem;
}
@media (min-width: 1000px) {
  .text-page-content .main-content {
    grid-column: 2/span 10;
    margin-bottom: 6rem;
  }
}
.text-page-content table {
  margin: 0 auto;
}
.text-page-content table {
  border: 1px solid grey;
  font-size: 12pt;
  border-collapse: collapse;
  margin: 1.5rem 0;
}
.text-page-content table thead th,
.text-page-content table tfoot th {
  background: rgba(0, 0, 0, 0.1);
}
.text-page-content table caption {
  padding: 0.5em;
}
.text-page-content table th,
.text-page-content table td {
  padding: 0.5em;
  border: 1px solid lightgrey;
}

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