:root {
  --fz-html: 62.5%;
  --fz-base: 1.8rem;
  --fw-base: 400;
  --lh-base: 1.3333;
  --ff-base: "Figtree", Helvetica, Arial, sans-serif;
  --ff-tenold: "Ten Oldstyle VF", sans-serif;
  --c-body-bg: #fff;
  --c-base: #000;
  --c-black: #000;
  --c-white: #fff;
  --c-green: #1c2d23;
  --c-green-2: #1f603a;
  --c-green-3: #10301d;
  --c-gray: #f3f4f3;
  --c-gray-2: #f8f5f3;
  --c-gray-3: #f8f6f3;
  --c-gray-4: #e9e6e0;
  --t-duration: 0.3s;
}
@media (max-width: 1023px) {
  :root {
    --fz-base: 1.3rem;
  }
}
/* ------------------------------------------------------------ *\
	Bg Colour
\* ------------------------------------------------------------ */
/* ------------------------------------------------------------ *\
	Grid Col
\* ------------------------------------------------------------ */
/* ------------------------------------------------------------ *\
	Mask Image

	Usage: @include mask/bg-image(url('../assets/images/temp/image.png'));
\* ------------------------------------------------------------ */
* {
  padding: 0;
  margin: 0;
  outline: 0;
  box-sizing: border-box;
}
*:before,
*:after {
  box-sizing: inherit;
}
ol,
ul {
  padding-left: 2em;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
main {
  display: block;
}
template {
  display: none;
}
html {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  tap-highlight-color: rgba(0, 0, 0, 0);
}
body {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-smoothing: antialiased;
  text-size-adjust: none;
}
img,
iframe,
video,
audio,
object {
  max-width: 100%;
}
img,
iframe {
  border: 0 none;
}
img {
  height: auto;
  display: inline-block;
  vertical-align: middle;
}
img,
[style*=background-image] {
  image-rendering: -webkit-optimize-contrast;
}
b,
strong {
  font-weight: bold;
}
address {
  font-style: normal;
}
svg:not(:root) {
  overflow: hidden;
}
a,
button,
input[type=submit],
input[type=button],
input[type=reset],
input[type=file],
input[type=image],
label[for] {
  cursor: pointer;
}
a[href^=tel],
button[disabled],
input[disabled],
textarea[disabled],
select[disabled] {
  cursor: default;
}
button::-moz-focus-inner,
input::-moz-focus-inner {
  padding: 0;
  border: 0;
}
input[type=button],
input[type=text],
input[type=password],
input[type=date],
input[type=datetime],
input[type=datetime-local],
input[type=month],
input[type=week],
input[type=email],
input[type=number],
input[type=search],
input[type=tel],
input[type=time],
input[type=url],
input[type=color],
textarea,
a[href^=tel] {
  appearance: none;
}
input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-decoration {
  appearance: none;
}
textarea {
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  overflow-scrolling: touch;
}
button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-smoothing: antialiased;
}
button,
select {
  text-transform: none;
}
table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
}
nav ul,
nav ol {
  list-style: none outside none;
}
input::placeholder {
  color: inherit;
  opacity: 1;
}
textarea::placeholder {
  color: inherit;
  opacity: 1;
}
input:-webkit-autofill {
  -webkit-text-fill-color: inherit;
  -webkit-box-shadow: 0 0 0 1000px #fff inset;
}
@media (prefers-reduced-motion: no-preference) {
  :root {
    scroll-behavior: smooth;
  }
}
@media (prefers-reduced-motion: reduce) {
  * {
    transition: none !important;
    animation: none !important;
  }
}
@font-face {
  font-family: "Ten Oldstyle VF";
  src: url("../assets/fonts/ten-oldstyle-variable.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Figtree";
  src: url("../assets/fonts/Figtree-VariableFont_wght.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
html {
  font-size: var(--fz-html);
}
body {
  min-width: 320px;
  font-family: var(--ff-base);
  font-weight: var(--fw-base);
  font-size: var(--fz-base);
  line-height: var(--lh-base);
  color: var(--c-base);
  background-color: var(--c-body-bg);
}
@media (max-width: 1023px) {
  body.nav-open {
    overflow: hidden;
  }
}
a {
  color: inherit;
  text-decoration: underline;
}
@media (hover: hover) {
  a:where(:hover, :focus-visible) {
    text-decoration: none;
  }
}
a[href^=tel] {
  text-decoration: none;
}
.h1,
h1,
.h2,
h2,
.h3,
h3,
.h4,
h4,
.h5,
h5,
.h6,
h6 {
  font-family: var(--ff-tenold);
  font-weight: 400;
  font-variation-settings: "wght" 500;
  margin-bottom: calc(var(--lh-base) * 0.5em);
  color: var(--c-green);
}
.h1,
h1 {
  font-size: 4.2rem;
}
@media (max-width: 1023px) {
  .h1,
  h1 {
    font-size: 3.2rem;
  }
}
@media (max-width: 767px) {
  .h1,
  h1 {
    font-size: 2.1rem;
  }
}
.h2,
h2 {
  font-size: 3.2rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 3.9rem;
}
.h2:last-child,
h2:last-child {
  margin-bottom: 0;
}
@media (max-width: 1023px) {
  .h2,
  h2 {
    font-size: 2.4rem;
  }
}
@media (max-width: 767px) {
  .h2,
  h2 {
    font-size: 1.6rem;
    margin-bottom: 2rem;
  }
  .h2:last-child,
  h2:last-child {
    margin-bottom: 0;
  }
}
.h3,
h3 {
  font-size: 2.8rem;
}
@media (max-width: 1023px) {
  .h3,
  h3 {
    font-size: 2.2rem;
  }
}
@media (max-width: 767px) {
  .h3,
  h3 {
    font-size: 1.8rem;
  }
}
.h4,
h4 {
  font-size: 2.4rem;
}
@media (max-width: 1023px) {
  .h4,
  h4 {
    font-size: 2rem;
  }
}
.h5,
h5 {
  font-size: 2.1rem;
  line-height: 1.25;
}
@media (max-width: 1023px) {
  .h5,
  h5 {
    font-size: 1.8rem;
  }
}
.h6,
h6 {
  font-size: 1.6rem;
  font-family: var(--ff-base);
  letter-spacing: 0.1em;
  font-variation-settings: "wght" 600;
  text-transform: uppercase;
}
@media (max-width: 1023px) {
  .h6,
  h6 {
    font-size: 1.4rem;
  }
}
@media (max-width: 767px) {
  .h6,
  h6 {
    font-size: 1.3rem;
  }
}
p,
ul,
ol,
dl,
hr,
table,
blockquote {
  margin-bottom: calc(var(--lh-base) * 0.5em);
}
p {
  margin-bottom: 2.4rem;
}
p:last-child {
  margin-bottom: 0;
}
@media (max-width: 767px) {
  p {
    margin-bottom: 1.2rem;
  }
}
h1[class],
h2[class],
h3[class],
h4[class],
h5[class],
h6[class],
h1:last-child,
h2:last-child,
h3:last-child,
h4:last-child,
h5:last-child,
h6:last-child,
p:last-child,
ul:last-child,
ol:last-child,
dl:last-child,
table:last-child,
blockquote:last-child {
  margin-bottom: 0;
}
picture {
  display: block;
}
/* ------------------------------------------------------------ *\
	Includes
\* ------------------------------------------------------------ */
.bg--gray {
  background: var(--c-gray);
  --bg-color: var(--c-gray);
}
.bg--gray-2 {
  background: var(--c-gray-3);
  --bg-color: var(--c-gray-3);
}
.bg--green {
  background: var(--c-green);
  --bg-color: var(--c-green);
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
[hidden],
.hidden {
  display: none !important;
}
[disabled],
.disabled {
  cursor: default;
}
.visible-xs-block,
.visible-xs-inline,
.visible-xs-inline-block,
.visible-sm-block,
.visible-sm-inline,
.visible-sm-inline-block,
.visible-md-block,
.visible-md-inline,
.visible-md-inline-block,
.visible-lg-block,
.visible-lg-inline,
.visible-lg-inline-block {
  display: none !important;
}
@media (max-width: 767px) {
  .hidden-xs {
    display: none !important;
  }
  .visible-xs-block {
    display: block !important;
  }
  .visible-xs-inline {
    display: inline !important;
  }
  .visible-xs-inline-block {
    display: inline-block !important;
  }
}
@media (min-width: 767.02px) and (max-width: 1023px) {
  .hidden-sm {
    display: none !important;
  }
  .visible-sm-block {
    display: block !important;
  }
  .visible-sm-inline {
    display: inline !important;
  }
  .visible-sm-inline-block {
    display: inline-block !important;
  }
}
@media (min-width: 1023.02px) and (max-width: 1199px) {
  .hidden-md {
    display: none !important;
  }
  .visible-md-block {
    display: block !important;
  }
  .visible-md-inline {
    display: inline !important;
  }
  .visible-md-inline-block {
    display: inline-block !important;
  }
}
@media (min-width: 1199.02px) {
  .hidden-lg {
    display: none !important;
  }
  .visible-lg-block {
    display: block !important;
  }
  .visible-lg-inline {
    display: inline !important;
  }
  .visible-lg-inline-block {
    display: inline-block !important;
  }
}
/*  mask img  */
.mask-img {
  background-color: currentColor;
  mask-position: center;
  mask-repeat: no-repeat;
  mask-size: contain;
  mask-image: var(--url);
}
.mask-img img {
  opacity: 0;
}
/*  bg img  */
.bg-img {
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: var(--url);
}
.bg-img img {
  opacity: 0;
}
.btn {
  display: inline-flex;
  vertical-align: middle;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  text-decoration: none;
  appearance: none;
  background-color: var(--c-green-2);
  color: var(--c-white);
  font-variation-settings: "wght" 700;
  font-size: 1.2rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 1.5rem 1.1rem 1.2rem;
  transition-duration: var(--t-duration);
  transition-property: background-color, color, opacity;
}
@media (max-width: 767px) {
  .btn {
    font-size: 1rem;
    padding: 1rem 0.9rem 0.9rem;
  }
}
@media (hover: hover) and (pointer: fine) and (min-width: 1024px) {
  .btn:hover {
    background-color: var(--c-green);
  }
}
.btn--block {
  display: block;
  padding-inline: 0;
}
/* ------------------------------------------------------------ *\
	Colors
\* ------------------------------------------------------------ */
.btn--dark {
  background-color: var(--c-green-3);
}
@media (hover: hover) and (pointer: fine) and (min-width: 1024px) {
  .btn--dark:hover {
    background-color: var(--c-green-2);
  }
}
.btn--white {
  background-color: var(--c-white);
  color: var(--c-green-2);
}
/* ------------------------------------------------------------ *\
	Size
\* ------------------------------------------------------------ */
.btn--sm {
  font-size: 1.1rem;
  padding: 0.8rem 1.3rem 0.7rem;
}
@media (max-width: 767px) {
  .btn--sm {
    font-size: 1rem;
    padding: 0.8rem 1.2rem 0.7rem;
  }
}
/* ------------------------------------------------------------ *\
	.card
\* ------------------------------------------------------------ */
.card {
  font-size: 1.4rem;
  line-height: 1.7142;
  height: 100%;
  display: flex;
  flex-direction: column;
  background-color: var(--c-gray-3);
}
@media (max-width: 767px) {
  .card {
    font-size: 1.3rem;
  }
}
.card .card__image img {
  width: 100%;
  aspect-ratio: 1/0.56;
  object-fit: cover;
}
.card .card__body {
  padding: 2.9rem 2.9rem 3.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
@media (max-width: 767px) {
  .card .card__body {
    padding: 2.2rem 2rem 2.5rem;
  }
}
.card .card__entry {
  margin-bottom: 4.2rem;
}
.card .card__entry:last-child {
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .card .card__entry {
    margin-bottom: 2rem;
  }
}
.card .card__entry h5,
.card .card__entry .h5 {
  margin-bottom: 1.6rem;
}
.card .card__entry h5:last-child,
.card .card__entry .h5:last-child {
  margin-bottom: 0;
}
.card .btn {
  margin-top: auto;
  margin-left: auto;
  margin-right: 0.3rem;
}
.bg--gray .card,
.bg--gray-2 .card {
  background-color: var(--c-white);
}
/* ------------------------------------------------------------ *\
	.cards
\* ------------------------------------------------------------ */
.cards .grid {
  --gap-col: 2.3rem;
  --gap-row: 3rem;
}
@media (max-width: 767px) {
  .cards .grid {
    --gap-row: 5rem;
  }
}
@media (max-width: 1023px) {
  .cards .grid--4of12 .grid__col {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
/* ------------------------------------------------------------ *\
	.footer
\* ------------------------------------------------------------ */
.footer {
  padding-block: 6.7rem;
  background-color: var(--c-green-2);
  color: var(--c-white);
  font-size: 1.4rem;
  line-height: 1.7142;
}
@media (max-width: 767px) {
  .footer {
    padding-block: 4.6rem 6rem;
    font-size: 1.3rem;
  }
}
.footer .h1,
.footer h1,
.footer .h2,
.footer h2,
.footer .h3,
.footer h3,
.footer .h4,
.footer h4,
.footer .h5,
.footer h5,
.footer .h6,
.footer h6 {
  color: inherit;
}
.footer .footer__inner {
  display: flex;
  flex-flow: row wrap;
  --gap-col: clamp(4rem, 8.4722vw, 12.2rem);
  --gap-row: 8rem;
  margin-inline: calc(var(--gap-col, 0px) / 2 * -1);
  row-gap: var(--gap-row, 0px);
}
@media (max-width: 1199px) {
  .footer .footer__inner {
    --gap-col: 5rem;
  }
}
@media (max-width: 1023px) {
  .footer .footer__inner {
    flex-direction: column;
    --gap-row: 4.5rem;
  }
}
@media (max-width: 767px) {
  .footer .footer__inner {
    --gap-row: 3.2rem;
  }
}
.footer .footer__inner > * {
  padding-inline: calc(var(--gap-col, 0px) / 2);
}
.footer .footer__info {
  flex: 0 0 calc(40.8rem + var(--gap-col));
  max-width: calc(40.8rem + var(--gap-col));
  text-align: center;
}
@media (max-width: 1199px) {
  .footer .footer__info {
    flex: 0 0 calc(35rem + var(--gap-col));
    max-width: calc(35rem + var(--gap-col));
  }
}
@media (max-width: 1023px) {
  .footer .footer__info {
    flex: 0 0 auto;
    max-width: 100%;
  }
}
.footer .footer__main {
  flex: 0 0 55.5%;
  max-width: 55.5%;
}
@media (max-width: 1199px) {
  .footer .footer__main {
    flex: 1;
    max-width: 100%;
  }
}
@media (max-width: 1023px) {
  .footer .footer__main {
    flex: 0 0 auto;
  }
}
.footer .footer__cols {
  display: flex;
  flex-flow: row wrap;
  --gap-col: 3.2rem;
  --gap-row: 3.2rem;
  margin-inline: calc(var(--gap-col, 0px) / 2 * -1);
  row-gap: var(--gap-row, 0px);
  padding-top: 0.6rem;
}
@media (max-width: 767px) {
  .footer .footer__cols {
    --gap-row: 2.4rem;
  }
}
.footer .footer__cols > * {
  padding-inline: calc(var(--gap-col, 0px) / 2);
}
.footer .footer__cols h6,
.footer .footer__cols .h6 {
  font-size: 1.4rem;
  margin-bottom: 1.3rem;
}
.footer .footer__cols h6:last-child,
.footer .footer__cols .h6:last-child {
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .footer .footer__cols h6,
  .footer .footer__cols .h6 {
    font-size: 1.3rem;
    margin-bottom: 0.6rem;
  }
}
.footer .footer__cols h4,
.footer .footer__cols .h4 {
  margin-bottom: 3.3rem;
}
.footer .footer__cols h4:last-child,
.footer .footer__cols .h4:last-child {
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .footer .footer__cols h4,
  .footer .footer__cols .h4 {
    margin-bottom: 1rem;
  }
}
.footer .footer__cols address {
  margin-bottom: 2.9rem;
}
.footer .footer__cols address:last-child {
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .footer .footer__cols address {
    margin-bottom: 1.4rem;
  }
}
.footer .footer__cols a + .h6, .footer .footer__cols a + h6,
.footer .footer__cols p + .h6,
.footer .footer__cols p + h6,
.footer .footer__cols address + .h6,
.footer .footer__cols address + h6 {
  margin-top: 2.9rem;
}
@media (max-width: 767px) {
  .footer .footer__cols a + .h6, .footer .footer__cols a + h6,
  .footer .footer__cols p + .h6,
  .footer .footer__cols p + h6,
  .footer .footer__cols address + .h6,
  .footer .footer__cols address + h6 {
    margin-top: 1.3rem;
  }
}
.footer .footer__cols a {
  text-decoration: none;
  transition-duration: var(--t-duration);
  transition-property: opacity;
}
@media (hover: hover) and (pointer: fine) and (min-width: 1024px) {
  .footer .footer__cols a:hover {
    opacity: 0.6;
  }
}
.footer .footer__col {
  flex: 1;
  max-width: 100%;
}
@media (max-width: 767px) {
  .footer .footer__col {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
.footer .footer__nav {
  font-size: 1.4rem;
  font-family: var(--ff-base);
  letter-spacing: 0.1em;
  font-variation-settings: "wght" 600;
  text-transform: uppercase;
}
@media (max-width: 767px) {
  .footer .footer__nav {
    font-size: 1.3rem;
  }
}
.footer .footer__nav li {
  margin-bottom: 0.4rem;
}
.footer .footer__nav li:last-child {
  margin-bottom: 0;
}
.footer .footer__nav a {
  text-decoration: none;
  display: inline-block;
  white-space: nowrap;
  transition-duration: var(--t-duration);
  transition-property: opacity;
  line-height: 1.2;
}
@media (hover: hover) and (pointer: fine) and (min-width: 1024px) {
  .footer .footer__nav a:hover {
    opacity: 0.6;
  }
}
.footer .footer__logo {
  font-variation-settings: "wght" 500;
  line-height: 0.85;
  margin-bottom: 4.5rem;
}
.footer .footer__logo:last-child {
  margin-bottom: 0;
}
@media (max-width: 1023px) {
  .footer .footer__logo {
    margin-bottom: 2.3rem;
  }
}
.footer .footer__logo small {
  position: relative;
  top: 0.3rem;
  font-size: 1.2rem;
  letter-spacing: 0.4em;
}
.footer .footer__copy {
  font-size: 1.4rem;
  font-family: var(--ff-tenold);
  font-variation-settings: "wght" 400;
  line-height: 1.2857;
}
/* ------------------------------------------------------------ *\
	Grid
\* ------------------------------------------------------------ */
.grid {
  display: flex;
  flex-flow: row wrap;
  --gap-col: 2.5rem;
  --gap-row: 3rem;
  margin: 0 calc(var(--gap-col, 0px) / 2 * -1);
  row-gap: var(--gap-row, 0px);
}
.grid .grid__col {
  flex: 1;
  padding: 0 calc(var(--gap-col, 0px) / 2);
}
.grid--2of12 .grid__col {
  flex: 0 0 calc(8.3333333333% * 2);
  max-width: calc(8.3333333333% * 2);
}
.grid--3of12 .grid__col {
  flex: 0 0 calc(8.3333333333% * 3);
  max-width: calc(8.3333333333% * 3);
}
.grid--4of12 .grid__col {
  flex: 0 0 calc(8.3333333333% * 4);
  max-width: calc(8.3333333333% * 4);
}
.grid--5of12 .grid__col {
  flex: 0 0 calc(8.3333333333% * 5);
  max-width: calc(8.3333333333% * 5);
}
.grid--6of12 .grid__col {
  flex: 0 0 calc(8.3333333333% * 6);
  max-width: calc(8.3333333333% * 6);
}
.grid--7of12 .grid__col {
  flex: 0 0 calc(8.3333333333% * 7);
  max-width: calc(8.3333333333% * 7);
}
.grid--8of12 .grid__col {
  flex: 0 0 calc(8.3333333333% * 8);
  max-width: calc(8.3333333333% * 8);
}
.grid--9of12 .grid__col {
  flex: 0 0 calc(8.3333333333% * 9);
  max-width: calc(8.3333333333% * 9);
}
.grid--10of12 .grid__col {
  flex: 0 0 calc(8.3333333333% * 10);
  max-width: calc(8.3333333333% * 10);
}
.grid--11of12 .grid__col {
  flex: 0 0 calc(8.3333333333% * 11);
  max-width: calc(8.3333333333% * 11);
}
.grid--12of12 .grid__col {
  flex: 0 0 calc(8.3333333333% * 12);
  max-width: calc(8.3333333333% * 12);
}
/* ------------------------------------------------------------ *\
	.header
\* ------------------------------------------------------------ */
.header {
  padding-block: 6.2rem 5.1rem;
  color: var(--c-green);
}
@media (max-width: 1023px) {
  .header {
    position: relative;
    height: 14.8rem;
    padding-block: 2.5rem;
  }
}
.header.has-decoration .header__inner:before {
  position: absolute;
  top: -6.2rem;
  left: 0;
  width: 25.3rem;
  height: 2rem;
  background-color: #225631;
  content: "";
}
@media (max-width: 1023px) {
  .header.has-decoration .header__inner:before {
    top: 0;
    left: var(--shell-gutter);
    height: 1rem;
    width: 12.5rem;
  }
}
@media (max-width: 767px) {
  .header.has-decoration .header__inner:before {
    height: 0.5rem;
    width: 6.2rem;
  }
}
.header .header__inner {
  display: flex;
  flex-flow: row wrap;
  --gap-col: 8.1rem;
  --gap-row: 8.1rem;
  margin-inline: calc(var(--gap-col, 0px) / 2 * -1);
  row-gap: var(--gap-row, 0px);
  justify-content: space-between;
}
@media (max-width: 1289px) {
  .header .header__inner {
    --gap-col: 4.8rem;
  }
}
@media (max-width: 1199px) {
  .header .header__inner {
    --gap-col: 6rem;
  }
}
@media (max-width: 1023px) {
  .header .header__inner {
    flex-direction: column;
    align-items: center;
    --gap-row: 1rem;
    --gap-col: 0rem;
  }
}
.header .header__inner > * {
  padding-inline: calc(var(--gap-col, 0px) / 2);
}
.header .header__actions {
  font-weight: 400;
  font-variation-settings: "wght" 700;
  text-transform: uppercase;
  font-size: 1.4rem;
  letter-spacing: 0.2em;
  margin-bottom: 7.3rem;
}
.header .header__actions:last-child {
  margin-bottom: 0;
}
@media (max-width: 1199px) {
  .header .header__actions {
    margin-bottom: 2rem;
  }
}
@media (max-width: 1023px) {
  .header .header__actions {
    margin-top: 5rem;
    order: 1;
  }
}
@media (max-width: 767px) {
  .header .header__actions {
    font-size: 1.2rem;
  }
}
.header .header__actions ul {
  list-style-type: none;
  padding-left: 0;
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-end;
  --gap-col: 2rem;
  --gap-row: 0.3rem;
  margin-inline: calc(var(--gap-col, 0px) / 2 * -1);
  row-gap: var(--gap-row, 0px);
}
@media (max-width: 1023px) {
  .header .header__actions ul {
    flex-direction: column;
    align-items: center;
    --gap-row: 2rem;
  }
}
.header .header__actions ul > li {
  padding-inline: calc(var(--gap-col, 0px) / 2);
}
.header .header__actions a {
  text-decoration: none;
  transition-duration: var(--t-duration);
  transition-property: opacity;
}
@media (hover: hover) and (pointer: fine) and (min-width: 1024px) {
  .header .header__actions a:hover {
    opacity: 0.3;
  }
}
.header .header__actions a[href*="tel:"] {
  font-size: 2.1rem;
  font-variation-settings: "wght" 500;
  letter-spacing: 0;
  font-family: var(--ff-tenold);
  line-height: 0.8;
}
@media (max-width: 1023px) {
  .header .header__actions a[href*="tel:"] {
    font-size: 1.8rem;
  }
}
@media (max-width: 767px) {
  .header .header__actions a[href*="tel:"] {
    font-size: 1.6rem;
  }
}
.header .header__aside {
  flex: 0 0 auto;
  padding-top: 0.2rem;
}
.header .header__utilities {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 2.4rem 2.8rem;
}
@media (max-width: 1023px) {
  .header .header__utilities {
    flex-direction: column;
    align-items: center;
    gap: 4rem;
  }
}
@media (max-width: 1199px) {
  .header .header__utilities .nav {
    order: 1;
  }
}
@media (max-width: 1023px) {
  .header .header__utilities .nav {
    order: unset;
  }
}
.header .header__content {
  flex: 1;
  max-width: 100%;
}
.header .logo {
  color: var(--c-green-2);
}
@media (max-width: 1023px) {
  .header .logo {
    position: relative;
    z-index: 1;
    flex: 0 0 auto;
    max-width: 20.3rem;
  }
}
@media (max-width: 1023px) {
  .header .header__nav {
    position: absolute;
    top: 100%;
    left: calc(-1 * var(--shell-gutter));
    right: calc(-1 * var(--shell-gutter));
    height: calc(100vh - 14.5rem);
    background-color: var(--c-white);
    z-index: 2;
    padding: 5rem var(--shell-gutter);
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    pointer-events: none;
    opacity: 0;
    transition-duration: var(--t-duration);
    transition-property: opacity;
  }
}
@media (max-width: 1023px) {
  .nav-open .header .header__nav {
    opacity: 1;
    pointer-events: auto;
  }
}
/* ------------------------------------------------------------ *\
	.hero
\* ------------------------------------------------------------ */
.hero {
  color: var(--c-green);
}
.hero .hero__inner {
  display: flex;
  flex-flow: row wrap;
  --gap-col: 4rem;
  --gap-row: 0rem;
  margin-inline: calc(var(--gap-col, 0px) / 2 * -1);
  row-gap: var(--gap-row, 0px);
}
.hero .hero__inner > * {
  padding-inline: calc(var(--gap-col, 0px) / 2);
}
.hero .hero__content {
  flex: 1;
  padding-block: 4rem 5.1rem;
  align-self: center;
}
@media (max-width: 1023px) {
  .hero .hero__content {
    flex: 0 0 auto;
    align-items: unset;
  }
}
@media (max-width: 767px) {
  .hero .hero__content {
    flex: 0 0 100%;
    max-width: 100%;
    padding-block: 2.9rem 6.7rem;
  }
}
.hero .hero__aside {
  flex: 0 0 55.2%;
  max-width: 55.2%;
}
@media (max-width: 1199px) {
  .hero .hero__aside {
    flex: 0 0 46.2%;
    max-width: 46.2%;
  }
}
@media (max-width: 1023px) {
  .hero .hero__aside {
    order: -1;
    flex: 100%;
    max-width: unset;
    margin-inline: calc(-1 * var(--shell-gutter));
  }
}
.hero .hero__aside .hero__image {
  min-height: 100%;
  position: relative;
  margin-right: calc(max(var(--shell-gutter), (100vw - var(--shell-max-width)) / 2) * -1);
  padding-top: 80.2%;
  overflow: hidden;
}
@media (max-width: 1023px) {
  .hero .hero__aside .hero__image {
    margin-right: 0;
    padding-top: 37.5321%;
  }
}
@media (max-width: 767px) {
  .hero .hero__aside .hero__image {
    padding-top: 37.3%;
  }
}
.hero .hero__aside .hero__image:before {
  position: absolute;
  top: 0;
  left: 0;
  width: 35.6076%;
  height: 100%;
  pointer-events: none;
  background: linear-gradient(90deg, var(--bg-color, var(--c-body-bg)) 0%, rgba(0, 0, 0, 0) 100%);
  content: "";
  z-index: 1;
}
@media (max-width: 767px) {
  .hero .hero__aside .hero__image:before {
    width: 50%;
  }
}
.hero .hero__aside .hero__image img {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero .hero__entry {
  font-size: 2.3rem;
  line-height: 1.4347;
  margin-bottom: 4.8rem;
  max-width: 52.1rem;
}
.hero .hero__entry:last-child {
  margin-bottom: 0;
}
@media (max-width: 1023px) {
  .hero .hero__entry {
    font-size: 1.8rem;
  }
}
@media (max-width: 767px) {
  .hero .hero__entry {
    font-size: var(--fz-base);
    max-width: 26rem;
    margin-bottom: 1.9rem;
  }
}
.hero .hero__entry h1,
.hero .hero__entry .h1 {
  margin-bottom: 3rem;
}
.hero .hero__entry h1:last-child,
.hero .hero__entry .h1:last-child {
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .hero .hero__entry h1,
  .hero .hero__entry .h1 {
    margin-bottom: 1.4rem;
  }
}
.hero .hero__actions {
  padding-right: 0.5rem;
}
.hero .hero__actions ul {
  list-style-type: none;
  padding-left: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
@media (max-width: 1023px) {
  .hero .hero__actions ul {
    display: block;
  }
}
@media (max-width: 767px) {
  .hero .hero__actions ul li {
    margin-bottom: 1.7rem;
  }
  .hero .hero__actions ul li:last-child {
    margin-bottom: 0;
  }
}
/* ------------------------------------------------------------ *\
	.link
\* ------------------------------------------------------------ */
.link {
  text-decoration: underline;
  transition-duration: var(--t-duration);
  transition-property: opacity, text-decoration-color;
  font-size: 1.9rem;
  font-variation-settings: "wght" 500;
}
@media (max-width: 1023px) {
  .link {
    font-size: 1.6rem;
  }
}
@media (max-width: 767px) {
  .link {
    font-size: var(--fz-base);
  }
}
@media (hover: hover) and (pointer: fine) and (min-width: 1024px) {
  .link:hover {
    text-decoration: underline;
    text-decoration-color: transparent;
  }
}
/* ------------------------------------------------------------ *\
	.logo
\* ------------------------------------------------------------ */
.logo {
  display: inline-block;
  text-align: center;
  text-transform: uppercase;
  text-decoration: none;
  font-family: var(--ff-tenold);
  font-variation-settings: "wght" 600;
  font-size: 2.4rem;
  line-height: 1;
  letter-spacing: 0.2em;
  flex: 0 0 40.8rem;
  max-width: 40.8rem;
  color: inherit;
}
@media (max-width: 1289px) {
  .logo {
    flex: 0 0 35rem;
    max-width: 35rem;
  }
}
@media (max-width: 1023px) {
  .logo {
    max-width: 20.3rem;
  }
}
.logo small {
  font-family: var(--ff-base);
  font-size: 1.3rem;
  letter-spacing: 0.4em;
  font-variation-settings: "wght" 600;
}
.logo .mask-img {
  margin-bottom: 2.2rem;
}
.logo .mask-img:last-child {
  margin-bottom: 0;
}
/* ------------------------------------------------------------ *\
	.nav-btn
\* ------------------------------------------------------------ */
.nav-btn {
  position: relative;
  width: 2.9rem;
  z-index: 2;
  display: none;
  flex-direction: column;
  background-color: transparent;
}
@media (max-width: 1023px) {
  .nav-btn {
    display: inline-flex;
  }
}
@media (max-width: 767px) {
  .nav-btn {
    width: 1.5rem;
  }
}
.nav-btn span {
  display: block;
  height: 1px;
  background-color: currentColor;
  transition-duration: var(--t-duration);
  transition-property: background-color, transform, opacity;
}
.nav-btn span + span {
  margin-top: 0.5rem;
}
@media (max-width: 767px) {
  .nav-btn span + span {
    margin-top: 0.3rem;
  }
}
/* ------------------------------------------------------------ *\
	Nav Open
\* ------------------------------------------------------------ */
.nav-open .nav-btn span:nth-child(2) {
  opacity: 0;
}
.nav-open .nav-btn span:nth-child(1) {
  transform: translateY(0.6rem) translateX(0rem) rotate(45deg);
}
@media (max-width: 767px) {
  .nav-open .nav-btn span:nth-child(1) {
    transform: translateY(0.4rem) translateX(0rem) rotate(45deg);
  }
}
.nav-open .nav-btn span:nth-child(3) {
  transform: translateY(-0.6rem) translateX(0rem) rotate(-45deg);
}
@media (max-width: 767px) {
  .nav-open .nav-btn span:nth-child(3) {
    transform: translateY(-0.4rem) translateX(0rem) rotate(-45deg);
  }
}
/* ------------------------------------------------------------ *\
	.nav
\* ------------------------------------------------------------ */
.nav {
  font-size: 1.4rem;
  font-variation-settings: "wght" 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding-top: 0.8rem;
}
@media (max-width: 1023px) {
  .nav {
    font-size: 1.6rem;
  }
}
@media (max-width: 767px) {
  .nav {
    font-size: 1.2rem;
  }
}
.nav ul {
  list-style-type: none;
  padding-left: 0;
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-end;
  --gap-col: 1.2rem;
  --gap-row: 1rem;
  margin-inline: calc(var(--gap-col, 0px) / 2 * -1);
  row-gap: var(--gap-row, 0px);
}
@media (max-width: 1023px) {
  .nav ul {
    flex-direction: column;
    align-items: center;
    --gap-row: 2rem;
  }
}
.nav ul > * {
  padding-inline: calc(var(--gap-col, 0px) / 2);
}
.nav a {
  text-decoration: none;
  display: inline-block;
  transition-duration: var(--t-duration);
  transition-property: opacity;
}
@media (hover: hover) and (pointer: fine) and (min-width: 1024px) {
  .nav a:hover {
    opacity: 0.3;
  }
}
/* ------------------------------------------------------------ *\
	.section-blog
\* ------------------------------------------------------------ */
.section-blog {
  padding-block: 5.7rem 10.2rem;
}
@media (max-width: 767px) {
  .section-blog {
    padding-block: 3.5rem 6rem;
  }
}
.section-blog .section__inner {
  display: flex;
  flex-flow: row wrap;
  --gap-col: 8.1rem;
  --gap-row: 5rem;
  margin-inline: calc(var(--gap-col, 0px) / 2 * -1);
  row-gap: var(--gap-row, 0px);
}
@media (max-width: 1199px) {
  .section-blog .section__inner {
    --gap-col: 4rem;
  }
}
.section-blog .section__inner > * {
  padding-inline: calc(var(--gap-col, 0px) / 2);
}
.section-blog .section__aside {
  flex: 0 0 calc(31.9rem + var(--gap-col));
  max-width: calc(31.9rem + var(--gap-col));
  padding-top: 1.3rem;
}
@media (max-width: 1023px) {
  .section-blog .section__aside {
    flex: 0 0 calc(22rem + var(--gap-col));
    max-width: calc(22rem + var(--gap-col));
  }
}
@media (max-width: 767px) {
  .section-blog .section__aside {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
.section-blog .section__content {
  flex: 1;
  max-width: 100%;
}
.section-blog .section__entry {
  line-height: 1.555;
  padding-right: 1rem;
}
@media (max-width: 767px) {
  .section-blog .section__entry {
    padding-right: 0;
  }
}
.section-blog .section__entry h3,
.section-blog .section__entry .h3 {
  font-size: 2.6rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  line-height: 1.333;
  margin-bottom: 4.4rem;
}
.section-blog .section__entry h3:last-child,
.section-blog .section__entry .h3:last-child {
  margin-bottom: 0;
}
@media (max-width: 1023px) {
  .section-blog .section__entry h3,
  .section-blog .section__entry .h3 {
    font-size: 2.2rem;
    margin-bottom: 2.4rem;
  }
}
@media (max-width: 767px) {
  .section-blog .section__entry h3,
  .section-blog .section__entry .h3 {
    font-size: 1.8rem;
    margin-bottom: 1.8rem;
  }
}
.section-blog .section__entry img {
  float: left;
  margin: 4.2rem 5.1rem 2rem 0;
}
@media (max-width: 1199px) {
  .section-blog .section__entry img {
    margin: 2rem 2rem 2rem 0;
  }
}
@media (max-width: 1023px) {
  .section-blog .section__entry img {
    max-width: 22rem;
  }
}
@media (max-width: 767px) {
  .section-blog .section__entry img {
    max-width: 50%;
    display: inline-block;
  }
}
.section-blog .section__entry p {
  margin-bottom: 2.8rem;
}
.section-blog .section__entry p:last-child {
  margin-bottom: 0;
}
@media (max-width: 1023px) {
  .section-blog .section__entry p {
    margin-bottom: 1.8rem;
  }
}
.section-blog .section__info {
  font-size: 1.6rem;
  line-height: 1.5;
  margin-bottom: 2.5rem;
}
.section-blog .section__info:last-child {
  margin-bottom: 0;
}
@media (max-width: 1023px) {
  .section-blog .section__info {
    font-size: 1.4rem;
  }
}
@media (max-width: 767px) {
  .section-blog .section__info {
    font-size: 1.3rem;
  }
}
.section-blog .section__info h3,
.section-blog .section__info .h3 {
  font-size: 2.6rem;
  letter-spacing: 0;
  line-height: 1.33;
  margin-bottom: 2.8rem;
}
.section-blog .section__info h3:last-child,
.section-blog .section__info .h3:last-child {
  margin-bottom: 0;
}
@media (max-width: 1023px) {
  .section-blog .section__info h3,
  .section-blog .section__info .h3 {
    font-size: 2.2rem;
  }
}
@media (max-width: 767px) {
  .section-blog .section__info h3,
  .section-blog .section__info .h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
  }
}
.section-blog nav {
  font-size: 1.4rem;
  text-transform: uppercase;
  line-height: 2.285;
  letter-spacing: 0.1em;
  font-variation-settings: "wght" 600;
  margin-bottom: 4.3rem;
}
.section-blog nav:last-child {
  margin-bottom: 0;
}
@media (max-width: 1023px) {
  .section-blog nav {
    font-size: 1.3rem;
    margin-bottom: 3rem;
  }
  .section-blog nav:last-child {
    margin-bottom: 0;
  }
}
.section-blog nav a {
  text-decoration: none;
  transition-duration: var(--t-duration);
  transition-property: opacity;
}
@media (hover: hover) and (pointer: fine) and (min-width: 1024px) {
  .section-blog nav a:hover {
    opacity: 0.3;
  }
}
.section-blog .section__box {
  background-color: var(--c-green-2);
  color: var(--c-white);
  padding: 3.5rem 5rem 6.3rem;
  text-align: center;
  margin-right: -1.4rem;
  font-size: 1.6rem;
  line-height: 1.5;
}
@media (max-width: 1023px) {
  .section-blog .section__box {
    font-size: 1.4rem;
    padding: 3rem 1rem 4.5rem;
  }
}
@media (max-width: 767px) {
  .section-blog .section__box {
    font-size: 1.3rem;
    padding: 2rem 2rem 2.5rem;
  }
}
.section-blog .section__box h4,
.section-blog .section__box .h4 {
  color: var(--c-white);
  font-size: 2.2rem;
  font-variation-settings: "wght" 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  line-height: 1.2;
  margin-bottom: 2.4rem;
}
.section-blog .section__box h4:last-child,
.section-blog .section__box .h4:last-child {
  margin-bottom: 0;
}
@media (max-width: 1023px) {
  .section-blog .section__box h4,
  .section-blog .section__box .h4 {
    font-size: 1.8rem;
  }
}
@media (max-width: 767px) {
  .section-blog .section__box h4,
  .section-blog .section__box .h4 {
    font-size: 1.6rem;
    margin-bottom: 1.7rem;
  }
  .section-blog .section__box h4:last-child,
  .section-blog .section__box .h4:last-child {
    margin-bottom: 0;
  }
}
.section-blog .section__box p {
  margin-bottom: 2.7rem;
}
.section-blog .section__box p:last-child {
  margin-bottom: 0;
}
@media (max-width: 1023px) {
  .section-blog .section__box .btn {
    font-size: 1rem;
    padding: 0.7rem 0.6rem 0.6rem;
  }
}
/* ------------------------------------------------------------ *\
	.section-cards
\* ------------------------------------------------------------ */
.section-cards {
  padding-block: 3.3rem 14.3rem;
}
@media (max-width: 767px) {
  .section-cards {
    padding-block: 2rem 4rem;
  }
}
.section-cards .section__head {
  text-align: center;
  margin-bottom: 4.7rem;
}
.section-cards .section__head:last-child {
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .section-cards .section__head {
    margin-bottom: 4.2rem;
  }
}
.section-cards .section__head h3,
.section-cards .section__head .h3 {
  font-family: var(--ff-base);
  font-size: 2.1rem;
  letter-spacing: 0.1em;
  font-variation-settings: "wght" 600;
  text-transform: uppercase;
}
@media (max-width: 767px) {
  .section-cards .section__head h3,
  .section-cards .section__head .h3 {
    font-size: 1.4rem;
  }
}
.section-cards--lg {
  padding-top: 8.3rem;
}
@media (max-width: 767px) {
  .section-cards--lg {
    padding-top: 5rem;
  }
}
/* ------------------------------------------------------------ *\
	.section-cta
\* ------------------------------------------------------------ */
.section-cta {
  padding-block: 8.8rem 9rem;
  text-align: center;
}
@media (max-width: 767px) {
  .section-cta {
    padding-block: 5rem 7rem;
  }
}
.section-cta .h6 {
  margin-bottom: 2.7rem;
}
.section-cta .h6:last-child {
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .section-cta .h6 {
    margin-bottom: 1.7rem;
  }
}
.section-cta .h2 {
  font-size: 2.6rem;
  letter-spacing: 0.1em;
  margin-bottom: 1.1rem;
}
.section-cta .h2:last-child {
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .section-cta .h2 {
    font-size: 1.6rem;
    margin-bottom: 2rem;
  }
  .section-cta .h2:last-child {
    margin-bottom: 0;
  }
}
.section-cta .section__entry {
  max-width: 89rem;
  margin-inline: auto;
  font-size: 2.2rem;
  line-height: 1.0909;
  font-family: var(--ff-tenold);
  font-variation-settings: "wght" 400;
  margin-bottom: 3.5rem;
}
.section-cta .section__entry:last-child {
  margin-bottom: 0;
}
@media (max-width: 1023px) {
  .section-cta .section__entry {
    font-size: 1.8rem;
  }
}
@media (max-width: 767px) {
  .section-cta .section__entry {
    font-size: 1.6rem;
    margin-bottom: 2.3rem;
  }
}
/* ------------------------------------------------------------ *\
	.section-heading
\* ------------------------------------------------------------ */
.section-heading {
  padding-block: 5.4rem 6.8rem;
}
@media (max-width: 1023px) {
  .section-heading {
    padding-block: 4rem;
  }
}
@media (max-width: 767px) {
  .section-heading {
    padding-block: 3rem;
  }
}
/* ------------------------------------------------------------ *\
	.section-map
\* ------------------------------------------------------------ */
.section-map {
  padding-block: 9.9rem 6rem;
}
@media (max-width: 767px) {
  .section-map {
    padding-block: 4.5rem 2rem;
  }
}
.section-map .section__head {
  padding-left: 0.2rem;
  margin-bottom: 4.3rem;
}
.section-map .section__head:last-child {
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .section-map .section__head {
    margin-bottom: 3.8rem;
  }
}
.section-map .section__head h2,
.section-map .section__head .h2 {
  margin-bottom: 3.3rem;
}
.section-map .section__head h2:last-child,
.section-map .section__head .h2:last-child {
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .section-map .section__head h2,
  .section-map .section__head .h2 {
    margin-bottom: 1.9rem;
  }
}
.section-map .section__inner {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  --gap-col: 7.7rem;
  --gap-row: 0rem;
  margin-inline: calc(var(--gap-col, 0px) / 2 * -1);
  row-gap: var(--gap-row, 0px);
}
@media (max-width: 1199px) {
  .section-map .section__inner {
    --gap-col: 4rem;
  }
}
.section-map .section__inner > * {
  padding-inline: calc(var(--gap-col, 0px) / 2);
}
.section-map .section__content {
  flex: 1;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 4rem;
  padding-block: 5.1rem 5rem;
}
@media (max-width: 1199px) {
  .section-map .section__content {
    gap: 4rem 2rem;
  }
}
@media (max-width: 767px) {
  .section-map .section__content {
    gap: 3rem;
    padding-block: 3.5rem 4rem;
  }
}
.section-map .section__aside {
  flex: 0 0 56.3%;
  max-width: 56.3%;
}
@media (max-width: 1199px) {
  .section-map .section__aside {
    flex: 0 0 49.4%;
    max-width: 49.4%;
  }
}
@media (max-width: 1023px) {
  .section-map .section__aside {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
.section-map .section__aside picture {
  padding-left: 0.5rem;
}
@media (max-width: 1023px) {
  .section-map .section__aside picture {
    padding-left: 0;
  }
}
@media (max-width: 767px) {
  .section-map .section__aside picture {
    margin-inline: calc(-1 * var(--shell-gutter));
  }
}
.section-map .section__entry {
  flex: 0 0 42%;
  max-width: 42%;
  font-size: 1.6rem;
  line-height: 1.5;
}
@media (max-width: 1199px) {
  .section-map .section__entry {
    flex: 0 0 45%;
    max-width: 45%;
  }
}
@media (max-width: 767px) {
  .section-map .section__entry {
    font-size: 1.3rem;
    flex: 0 0 100%;
    max-width: 100%;
  }
}
.section-map .section__entry h3,
.section-map .section__entry .h3 {
  font-family: var(--ff-base);
  font-size: 1.8rem;
  letter-spacing: 0.1em;
  font-variation-settings: "wght" 600;
  text-transform: uppercase;
  margin-right: -2rem;
  margin-bottom: 1rem;
}
.section-map .section__entry h3:last-child,
.section-map .section__entry .h3:last-child {
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .section-map .section__entry h3,
  .section-map .section__entry .h3 {
    font-size: 1.4rem;
    margin-bottom: 0.6rem;
  }
}
.section-map .section__entry address {
  margin-bottom: 2rem;
}
.section-map .section__entry address:last-child {
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .section-map .section__entry address {
    margin-bottom: 0.2rem;
  }
}
.section-map .section__entry a {
  display: inline-block;
  text-decoration: none;
  color: var(--c-green-2);
  transition-duration: var(--t-duration);
  transition-property: opacity;
  font-variation-settings: "wght" 700;
}
@media (hover: hover) and (pointer: fine) and (min-width: 1024px) {
  .section-map .section__entry a:hover {
    opacity: 0.3;
  }
}
/* ------------------------------------------------------------ *\
	.section-quote
\* ------------------------------------------------------------ */
.section-quote {
  padding-block: 8.2rem 8.5rem;
  text-align: center;
  color: var(--c-green);
}
@media (max-width: 767px) {
  .section-quote {
    padding-block: 5.5rem 5.9rem;
  }
}
.section-quote .section__head {
  margin-bottom: 3.2rem;
}
.section-quote .section__head:last-child {
  margin-bottom: 0;
}
.section-quote .section__head h3,
.section-quote .section__head .h3 {
  font-family: var(--ff-base);
  font-size: 2.1rem;
  font-variation-settings: "wght" 600;
}
@media (max-width: 1023px) {
  .section-quote .section__head h3,
  .section-quote .section__head .h3 {
    font-size: 1.8rem;
  }
}
@media (max-width: 767px) {
  .section-quote .section__head h3,
  .section-quote .section__head .h3 {
    font-size: 1.4rem;
  }
}
.section-quote .section__entry {
  position: relative;
  max-width: 103.6rem;
  margin-inline: auto;
}
.section-quote .section__entry .section__decoration {
  position: absolute;
  top: -2.2rem;
  left: -2.7rem;
}
@media (max-width: 767px) {
  .section-quote .section__entry .section__decoration {
    max-width: 5rem;
    top: -1.5rem;
    left: -1.8rem;
  }
}
.section-quote .section__entry blockquote {
  font-size: 3.6rem;
  font-variation-settings: "wght" 500;
  font-family: var(--ff-tenold);
  line-height: 1.3888;
}
@media (max-width: 1023px) {
  .section-quote .section__entry blockquote {
    font-size: 2.4rem;
  }
}
@media (max-width: 767px) {
  .section-quote .section__entry blockquote {
    font-size: 1.6rem;
  }
}
/* ------------------------------------------------------------ *\
	.section-text_image
\* ------------------------------------------------------------ */
.section-text_image {
  padding-block: 5.4rem 13.4rem;
}
@media (max-width: 767px) {
  .section-text_image {
    padding-block: 5.4rem;
  }
}
@media (max-width: 767px) {
  .section-text_image .shell {
    --shell-gutter: 3.5rem;
  }
}
.section-text_image .section__inner {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  align-items: center;
  --gap-col: 5.4rem;
  --gap-row: 4.8rem;
  margin-inline: calc(var(--gap-col, 0px) / 2 * -1);
  row-gap: var(--gap-row, 0px);
}
.section-text_image .section__inner > * {
  padding-inline: calc(var(--gap-col, 0px) / 2);
}
.section-text_image .section__aside {
  flex: 1;
}
.section-text_image .section__content {
  flex: 0 0 56.9%;
  max-width: 56.9%;
  padding-top: 3.6rem;
}
@media (max-width: 1023px) {
  .section-text_image .section__content {
    flex: 0 0 100%;
    max-width: 100%;
    padding-top: 0;
  }
}
/* ------------------------------------------------------------ *\
	.section-tiles
\* ------------------------------------------------------------ */
.section-tiles {
  padding-block: 7.2rem 5rem;
}
@media (max-width: 767px) {
  .section-tiles {
    padding-block: 3.1rem 4rem;
  }
}
.section-tiles .section__head {
  margin-bottom: 5.9rem;
}
.section-tiles .section__head:last-child {
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .section-tiles .section__head {
    margin-bottom: 3rem;
  }
}
.shell {
  --shell-max-width: 124.8rem;
  --shell-gutter: 3rem;
  max-width: calc(var(--shell-max-width) + var(--shell-gutter) * 2);
  padding-inline: var(--shell-gutter);
  margin-inline: auto;
  width: 100%;
}
@media (max-width: 1023px) {
  .shell {
    --shell-gutter: 5rem;
  }
}
.shell--fluid {
  max-width: none;
}
/* ------------------------------------------------------------ *\
	.tile
\* ------------------------------------------------------------ */
.tile {
  position: relative;
  height: 100%;
  background-color: var(--c-gray-3);
  border: 1px solid var(--c-gray-4);
  font-size: 1.6rem;
  line-height: 1.5;
}
@media (max-width: 767px) {
  .tile {
    font-size: var(--fz-base);
  }
}
.tile .tile__icon {
  position: absolute;
  top: 1.9rem;
  right: 3rem;
}
@media (max-width: 767px) {
  .tile .tile__icon {
    top: 12px;
    right: 24px;
    height: 3rem;
  }
}
@media (max-width: 767px) {
  .tile .tile__icon img {
    height: 100%;
    width: auto;
  }
}
.tile .tile__inner {
  padding: 5.3rem 4rem 3.9rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
@media (max-width: 767px) {
  .tile .tile__inner {
    padding: 3.8rem 2.8rem 2.9rem;
  }
}
.tile .tile__inner h3,
.tile .tile__inner .h3 {
  margin-bottom: 2.5rem;
}
.tile .tile__inner h3:last-child,
.tile .tile__inner .h3:last-child {
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .tile .tile__inner h3,
  .tile .tile__inner .h3 {
    font-size: 2rem;
    margin-bottom: 1.7rem;
  }
}
.tile .tile__inner .tile__entry {
  padding-right: 0.5rem;
  margin-bottom: 2.9rem;
}
.tile .tile__inner .tile__entry:last-child {
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .tile .tile__inner .tile__entry {
    padding-right: 1rem;
    margin-bottom: 2rem;
  }
}
.tile .tile__inner .btn {
  margin-top: auto;
}
/* ------------------------------------------------------------ *\
	.tiles
\* ------------------------------------------------------------ */
@media (max-width: 767px) {
  .tiles .grid {
    --gap-row: 4.9rem;
  }
}
@media (max-width: 1023px) {
  .tiles .grid--4of12 .grid__col {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
.wrapper {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
}

/* Article Meta */
.article-meta {
  color: var(--c-green-2);
  font-size: 1.4rem;
  margin-bottom: 2rem;
}