<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "UTF-8";

/*!
 * Pikaday
 * Copyright © 2014 David Bushell | BSD &amp; MIT license | https://dbushell.com/
 */

.pika-single {
  z-index: 9999;
  display: block;
  position: relative;
  color: #333;
  background: #fff;
  border: 1px solid #ccc;
  border-bottom-color: #bbb;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

/*
clear child float (pika-lendar), using the famous micro clearfix hack
http://nicolasgallagher.com/micro-clearfix-hack/
*/

.pika-single:before,
.pika-single:after {
  content: " ";
  display: table;
}

.pika-single:after {
  clear: both
}

.pika-single.is-hidden {
  display: none;
}

.pika-single.is-bound {
  position: absolute;
  box-shadow: 0 5px 15px -5px rgba(0,0,0,.5);
}

.pika-lendar {
  float: left;
  width: 240px;
  margin: 8px;
}

.pika-title {
  position: relative;
  text-align: center;
}

.pika-label {
  display: inline-block;
  position: relative;
  z-index: 9999;
  overflow: hidden;
  margin: 0;
  padding: 5px 3px;
  font-size: 14px;
  line-height: 20px;
  font-weight: bold;
  background-color: #fff;
}

.pika-title select {
  cursor: pointer;
  position: absolute;
  z-index: 9998;
  margin: 0;
  left: 0;
  top: 5px;
  opacity: 0;
}

.pika-prev,
.pika-next {
  display: block;
  cursor: pointer;
  position: relative;
  outline: none;
  border: 0;
  padding: 0;
  width: 20px;
  height: 30px;
  /* hide text using text-indent trick, using width value (it's enough) */
  text-indent: 20px;
  white-space: nowrap;
  overflow: hidden;
  background-color: transparent;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 75% 75%;
  opacity: .5;
}

.pika-prev:hover,
.pika-next:hover {
  opacity: 1;
}

.pika-prev,
.is-rtl .pika-next {
  float: left;
  background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAeCAYAAAAsEj5rAAAAUklEQVR42u3VMQoAIBADQf8Pgj+OD9hG2CtONJB2ymQkKe0HbwAP0xucDiQWARITIDEBEnMgMQ8S8+AqBIl6kKgHiXqQqAeJepBo/z38J/U0uAHlaBkBl9I4GwAAAABJRU5ErkJggg==');
}

.pika-next,
.is-rtl .pika-prev {
  float: right;
  background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAeCAYAAAAsEj5rAAAAU0lEQVR42u3VOwoAMAgE0dwfAnNjU26bYkBCFGwfiL9VVWoO+BJ4Gf3gtsEKKoFBNTCoCAYVwaAiGNQGMUHMkjGbgjk2mIONuXo0nC8XnCf1JXgArVIZAQh5TKYAAAAASUVORK5CYII=');
}

.pika-prev.is-disabled,
.pika-next.is-disabled {
  cursor: default;
  opacity: .2;
}

.pika-select {
  display: inline-block;
}

.pika-table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
  border: 0;
}

.pika-table th,
.pika-table td {
  width: 14.285714285714286%;
  padding: 0;
}

.pika-table th {
  color: #999;
  font-size: 12px;
  line-height: 25px;
  font-weight: bold;
  text-align: center;
}

.pika-button {
  cursor: pointer;
  display: block;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  outline: none;
  border: 0;
  margin: 0;
  width: 100%;
  padding: 5px;
  color: #666;
  font-size: 12px;
  line-height: 15px;
  text-align: center;
  background: #f5f5f5;
  height: initial;
}

.pika-week {
  font-size: 11px;
  color: #999;
}

.is-today .pika-button {
  color: #33aaff;
  font-weight: bold;
}

.is-selected .pika-button,
.has-event .pika-button {
  color: #fff;
  font-weight: bold;
  background: #33aaff;
  box-shadow: inset 0 1px 3px #178fe5;
  border-radius: 3px;
}

.has-event .pika-button {
  background: #005da9;
  box-shadow: inset 0 1px 3px #0076c9;
}

.is-disabled .pika-button,
.is-inrange .pika-button {
  background: #D5E9F7;
}

.is-startrange .pika-button {
  color: #fff;
  background: #6CB31D;
  box-shadow: none;
  border-radius: 3px;
}

.is-endrange .pika-button {
  color: #fff;
  background: #33aaff;
  box-shadow: none;
  border-radius: 3px;
}

.is-disabled .pika-button {
  pointer-events: none;
  cursor: default;
  color: #999;
  opacity: .3;
}

.is-outside-current-month .pika-button {
  color: #999;
  opacity: .3;
}

.is-selection-disabled {
  pointer-events: none;
  cursor: default;
}

.pika-button:hover,
.pika-row.pick-whole-week:hover .pika-button {
  color: #fff;
  background: #ff8000;
  box-shadow: none;
  border-radius: 3px;
}

/* styling for abbr */

.pika-table abbr {
  border-bottom: none;
  cursor: help;
}

@tailwind base;

@tailwind components;

@tailwind utilities;

/*!
 * Rich-text
 */

.rt-text h2{
  margin-bottom: 0.5em;
  font-size: 2.25rem;
  line-height: 1.2;
  --tw-text-opacity: 1;
  color: rgb(27 52 49 / var(--tw-text-opacity, 1));
}

@media (min-width: 768px){
  .rt-text h2{
    font-size: 60px;
  }
}

.rt-text h3{
  margin-bottom: 0.5em;
  font-size: 1.75rem;
  line-height: 1.2;
  --tw-text-opacity: 1;
  color: rgb(27 52 49 / var(--tw-text-opacity, 1));
}

@media (min-width: 768px){
  .rt-text h3{
    font-size: 32px;
  }
}

.rt-text h4{
  margin-bottom: 0.5em;
  font-size: 1.5rem;
  line-height: 1.2;
  --tw-text-opacity: 1;
  color: rgb(27 52 49 / var(--tw-text-opacity, 1));
}

@media (min-width: 768px){
  .rt-text h4{
    font-size: 36px;
  }
}

.rt-text h5{
  margin-bottom: 0.5em;
  font-size: 1.25rem;
  line-height: 1.2;
  --tw-text-opacity: 1;
  color: rgb(27 52 49 / var(--tw-text-opacity, 1));
}

@media (min-width: 768px){
  .rt-text h5{
    font-size: 28px;
  }
}

.rt-text p{
  margin-bottom: 1.25em;
  line-height: 1.5;
  --tw-text-opacity: 1;
  color: rgb(51 51 51 / var(--tw-text-opacity, 1));
}

.rt-text p:last-child,
.rt-text ol:last-child,
.rt-text ul:last-child{
  margin-bottom: 0px;
}

.rt-text .intro-p{
  margin-bottom: 1.25em;
  font-size: 1.25rem;
  line-height: 1.5;
}

.rt-text ul{
  margin-bottom: 1.25em;
  margin-left: 18px;
  list-style-type: disc;
}

.rt-text table{
  margin-bottom: 2rem;
  width: 100%;
  max-width: 720px;
}

.rt-text th{
  padding-bottom: 1rem;
  text-align: left;
}

@media (min-width: 768px){
  .rt-text th{
    padding-bottom: 0px;
  }
}

.rt-text td{
  border-top-width: 1px;
  border-bottom-width: 1px;
  --tw-border-opacity: 1;
  border-color: rgb(0 0 0 / var(--tw-border-opacity, 1));
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 0px;
  padding-right: 15px;
  vertical-align: top;
}

@media (min-width: 768px){
  .rt-text td{
    border-top-width: 0px;
  }

  .rt-text tbody tr td:last-child{
    text-align: end;
  }
}

.rt-text strong{
  font-weight: 600;
}

.rt-text--sm p{
  margin-bottom: 1.25em;
  font-size: 12px;
  line-height: 1.2;
}

.rt-text a:not(.c-btn){
  --tw-text-opacity: 1;
  color: rgb(0 173 89 / var(--tw-text-opacity, 1));
  text-decoration-line: none;
  opacity: 1;
  transition-property: all;
  transition-duration: 200ms;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

.rt-text a:not(.c-btn):hover{
  --tw-text-opacity: 1;
  color: rgb(0 106 49 / var(--tw-text-opacity, 1));
  text-decoration-line: underline;
}

.rt-text p img{
  border-bottom-right-radius: 20px;
  border-top-left-radius: 20px;
}

.rt-text--sm a:not(.c-btn){
  opacity: 1;
  transition-property: opacity;
  transition-duration: 200ms;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

.bg-green .rt-text h2,
.bg-green .rt-text h3,
.bg-green .rt-text h4,
.bg-green .rt-text h5,
.bg-green .rt-text p,
.bg-green .rt-text .intro-p,
.bg-green .rt-text ul,
.bg-green .rt-text table,
.bg-green .rt-text th,
.bg-green .rt-text td,
.bg-green .rt-text strong,
.bg-green .rt-text--sm p,
.bg-green .rt-text a:not(.c-btn),
.bg-green .rt-text p img,
.bg-green .rt-text--sm a:not(.c-btn),
.bg-green-dark .rt-text p,
.green-graphics-dark .rt-text h2,
.green-graphics-dark .rt-text h3,
.green-graphics-dark .rt-text h4,
.green-graphics-dark .rt-text h5,
.green-graphics-dark .rt-text p,
.green-graphics-dark .rt-text .intro-p,
.green-graphics-dark .rt-text ul,
.green-graphics-dark .rt-text table,
.green-graphics-dark .rt-text th,
.green-graphics-dark .rt-text td,
.green-graphics-dark .rt-text strong,
.green-graphics-dark .rt-text--sm p,
.green-graphics-dark .rt-text a:not(.c-btn),
.green-graphics-dark .rt-text p img,
.green-graphics-dark .rt-text--sm a:not(.c-btn),
.green-graphics-light .rt-text h2,
.green-graphics-light .rt-text h3,
.green-graphics-light .rt-text h4,
.green-graphics-light .rt-text h5,
.green-graphics-light .rt-text p,
.green-graphics-light .rt-text .intro-p,
.green-graphics-light .rt-text ul,
.green-graphics-light .rt-text table,
.green-graphics-light .rt-text th,
.green-graphics-light .rt-text td,
.green-graphics-light .rt-text strong,
.green-graphics-light .rt-text--sm p,
.green-graphics-light .rt-text a:not(.c-btn),
.green-graphics-light .rt-text p img,
.green-graphics-light .rt-text--sm a:not(.c-btn){
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity, 1));
}

.bg-green .rt-text a:not(.c-btn),
.bg-green .rt-text--sm a:not(.c-btn),
.green-graphics-dark .rt-text a:not(.c-btn),
.green-graphics-dark .rt-text--sm a:not(.c-btn),
.green-graphics-light .rt-text a:not(.c-btn),
.green-graphics-light .rt-text--sm a:not(.c-btn){
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity, 1));
}

.bg-green .rt-text a:not(.c-btn):hover,
.bg-green .rt-text--sm a:not(.c-btn):hover,
.green-graphics-dark .rt-text a:not(.c-btn):hover,
.green-graphics-dark .rt-text--sm a:not(.c-btn):hover,
.green-graphics-light .rt-text a:not(.c-btn):hover,
.green-graphics-light .rt-text--sm a:not(.c-btn):hover{
  color: rgba(255, 255, 255, 0.7);
}

@font-face {
  font-family: 'Guardian Sans';

  font-style: normal;

  font-weight: 400;

  src: url('../fonts/GuardianSansRegular.woff') format('woff');
}

@font-face {
  font-family: 'Guardian Sans';

  font-style: italic;

  font-weight: 400;

  src: url('../fonts/GuardianSansRegularIt.woff') format('woff');
}

@font-face {
  font-family: 'Guardian Sans';

  font-style: normal;

  font-weight: 500;

  src: url('../fonts/GuardianSansMedium.woff') format('woff');
}

@font-face {
  font-family: 'Guardian Sans';

  font-style: italic;

  font-weight: 500;

  src: url('../fonts/GuardianSansMediumIt.woff') format('woff');
}

@font-face {
  font-family: 'Guardian Sans';

  font-style: normal;

  font-weight: 600;

  src: url('../fonts/GuardianSansSemibold.woff') format('woff');
}

@font-face {
  font-family: 'Guardian Sans';

  font-style: italic;

  font-weight: 600;

  src: url('../fonts/GuardianSansSemiboldIt.woff') format('woff');
}

@font-face {
  font-family: 'Guardian Sans';

  font-style: normal;

  font-weight: 700;

  src: url('../fonts/GuardianSansBold.woff') format('woff');
}

@font-face {
  font-family: 'Guardian Sans';

  font-style: italic;

  font-weight: 700;

  src: url('../fonts/GuardianSansBoldIt.woff') format('woff');
}

@font-face {
  font-family: 'Guardian Sans';

  font-style: normal;

  font-weight: 900;

  src: url('../fonts/GuardianSansBlack.woff') format('woff');
}

@font-face {
  font-family: 'Guardian Sans';

  font-style: italic;

  font-weight: 900;

  src: url('../fonts/GuardianSansBlackIt.woff') format('woff');
}

/**
 * Swiper 11.2.4
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2025 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: February 14, 2025
 */

/* FONT_START */

@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');

  font-weight: 400;

  font-style: normal;
}

/* FONT_END */

:root {
  --swiper-theme-color: #007aff;
  /*
  --swiper-preloader-color: var(--swiper-theme-color);
  --swiper-wrapper-transition-timing-function: initial;
  */
}

:host {
  position: relative;
  display: block;
  margin-left: auto;
  margin-right: auto;
  z-index: 1;
}

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

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

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  transition-timing-function: var(--swiper-wrapper-transition-timing-function, initial);
  box-sizing: content-box;
}

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

.swiper-horizontal {
  touch-action: pan-y;
}

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

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

.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);
  backface-visibility: hidden;
}

/* 3D Effects */

.swiper-3d.swiper-css-mode .swiper-wrapper {
  perspective: 1200px;
}

.swiper-3d .swiper-wrapper {
  transform-style: preserve-3d;
}

.swiper-3d {
  perspective: 1200px;
}

.swiper-3d .swiper-slide,
.swiper-3d .swiper-cube-shadow {
  transform-style: preserve-3d;
}

/* CSS Mode */

.swiper-css-mode &gt; .swiper-wrapper {
  overflow: auto;
  scrollbar-width: none;
  /* For Firefox */
  -ms-overflow-style: none;
  /* For Internet Explorer and Edge */
}

.swiper-css-mode &gt; .swiper-wrapper::-webkit-scrollbar {
  display: none;
}

.swiper-css-mode &gt; .swiper-wrapper &gt; .swiper-slide {
  scroll-snap-align: start start;
}

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

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

.swiper-css-mode.swiper-free-mode &gt; .swiper-wrapper {
  scroll-snap-type: none;
}

.swiper-css-mode.swiper-free-mode &gt; .swiper-wrapper &gt; .swiper-slide {
  scroll-snap-align: none;
}

.swiper-css-mode.swiper-centered &gt; .swiper-wrapper::before {
  content: '';
  flex-shrink: 0;
  order: 9999;
}

.swiper-css-mode.swiper-centered &gt; .swiper-wrapper &gt; .swiper-slide {
  scroll-snap-align: center center;
  scroll-snap-stop: always;
}

.swiper-css-mode.swiper-centered.swiper-horizontal &gt; .swiper-wrapper &gt; .swiper-slide:first-child {
  margin-inline-start: var(--swiper-centered-offset-before);
}

.swiper-css-mode.swiper-centered.swiper-horizontal &gt; .swiper-wrapper::before {
  height: 100%;
  min-height: 1px;
  width: var(--swiper-centered-offset-after);
}

.swiper-css-mode.swiper-centered.swiper-vertical &gt; .swiper-wrapper &gt; .swiper-slide:first-child {
  margin-block-start: var(--swiper-centered-offset-before);
}

.swiper-css-mode.swiper-centered.swiper-vertical &gt; .swiper-wrapper::before {
  width: 100%;
  min-width: 1px;
  height: var(--swiper-centered-offset-after);
}

/* Slide styles start */

/* 3D Shadows */

.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-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));
}

.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 {
  animation: swiper-preloader-spin 1s infinite linear;
}

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

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

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

  100% {
    transform: rotate(360deg);
  }
}

/* Slide styles end */

:root {
  /*
  --swiper-pagination-color: var(--swiper-theme-color);
  --swiper-pagination-left: auto;
  --swiper-pagination-right: 8px;
  --swiper-pagination-bottom: 8px;
  --swiper-pagination-top: auto;
  --swiper-pagination-fraction-color: inherit;
  --swiper-pagination-progressbar-bg-color: rgba(0,0,0,0.25);
  --swiper-pagination-progressbar-size: 4px;
  --swiper-pagination-bullet-size: 8px;
  --swiper-pagination-bullet-width: 8px;
  --swiper-pagination-bullet-height: 8px;
  --swiper-pagination-bullet-border-radius: 50%;
  --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;
}

.swiper-pagination-disabled &gt; .swiper-pagination,
.swiper-pagination.swiper-pagination-disabled {
  display: none !important;
}

/* Common Styles */

.swiper-pagination-fraction,
.swiper-pagination-custom,
.swiper-horizontal &gt; .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal {
  bottom: var(--swiper-pagination-bottom, 8px);
  top: var(--swiper-pagination-top, auto);
  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: var(--swiper-pagination-bullet-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 &gt; .swiper-pagination-bullets,
.swiper-pagination-vertical.swiper-pagination-bullets {
  right: var(--swiper-pagination-right, 8px);
  left: var(--swiper-pagination-left, auto);
  top: 50%;
  transform: translate3d(0px, -50%, 0);
}

.swiper-vertical &gt; .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 &gt; .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 &gt; .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 &gt; .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 &gt; .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 &gt; .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 &gt; .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: 200ms transform,
    200ms right;
}

/* Fraction */

.swiper-pagination-fraction {
  color: var(--swiper-pagination-fraction-color, inherit);
}

/* Progress */

.swiper-pagination-progressbar {
  background: var(--swiper-pagination-progressbar-bg-color, 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 &gt; .swiper-pagination-progressbar,
.swiper-pagination-progressbar.swiper-pagination-horizontal,
.swiper-vertical &gt; .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,
.swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite {
  width: 100%;
  height: var(--swiper-pagination-progressbar-size, 4px);
  left: 0;
  top: 0;
}

.swiper-vertical &gt; .swiper-pagination-progressbar,
.swiper-pagination-progressbar.swiper-pagination-vertical,
.swiper-horizontal &gt; .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,
.swiper-pagination-progressbar.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite {
  width: var(--swiper-pagination-progressbar-size, 4px);
  height: 100%;
  left: 0;
  top: 0;
}

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

:root {
  --swiper-navigation-size: 44px;
  /*
  --swiper-navigation-top-offset: 50%;
  --swiper-navigation-sides-offset: 10px;
  --swiper-navigation-color: var(--swiper-theme-color);
  */
}

.swiper-button-prev,
.swiper-button-next {
  position: absolute;
  top: var(--swiper-navigation-top-offset, 50%);
  width: calc(var(--swiper-navigation-size) / 44 * 27);
  height: var(--swiper-navigation-size);
  margin-top: calc(0px - (var(--swiper-navigation-size) / 2));
  z-index: 10;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--swiper-navigation-color, var(--swiper-theme-color));
}

.swiper-button-prev.swiper-button-disabled,
.swiper-button-next.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none;
}

.swiper-button-prev.swiper-button-hidden,
.swiper-button-next.swiper-button-hidden {
  opacity: 0;
  cursor: auto;
  pointer-events: none;
}

.swiper-navigation-disabled .swiper-button-prev,
.swiper-navigation-disabled .swiper-button-next {
  display: none !important;
}

.swiper-button-prev svg,
.swiper-button-next svg {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  transform-origin: center;
}

.swiper-rtl .swiper-button-prev svg,
.swiper-rtl .swiper-button-next svg {
  transform: rotate(180deg);
}

.swiper-button-prev,
.swiper-rtl .swiper-button-next {
  left: var(--swiper-navigation-sides-offset, 10px);
  right: auto;
}

.swiper-button-next,
.swiper-rtl .swiper-button-prev {
  right: var(--swiper-navigation-sides-offset, 10px);
  left: auto;
}

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

/* Navigation font start */

.swiper-button-prev:after,
.swiper-button-next:after {
  font-family: swiper-icons;
  font-size: var(--swiper-navigation-size);
  text-transform: none !important;
  letter-spacing: 0;
  font-variant: initial;
  line-height: 1;
}

.swiper-button-prev:after,
.swiper-rtl .swiper-button-next:after {
  content: 'prev';
}

.swiper-button-next,
.swiper-rtl .swiper-button-prev {
  right: var(--swiper-navigation-sides-offset, 10px);
  left: auto;
}

.swiper-button-next:after,
.swiper-rtl .swiper-button-prev:after {
  content: 'next';
}

/* Navigation font end */

*, ::before, ::after{
  --tw-border-spacing-x: 0;
  --tw-border-spacing-y: 0;
  --tw-translate-x: 0;
  --tw-translate-y: 0;
  --tw-rotate: 0;
  --tw-skew-x: 0;
  --tw-skew-y: 0;
  --tw-scale-x: 1;
  --tw-scale-y: 1;
  --tw-pan-x:  ;
  --tw-pan-y:  ;
  --tw-pinch-zoom:  ;
  --tw-scroll-snap-strictness: proximity;
  --tw-gradient-from-position:  ;
  --tw-gradient-via-position:  ;
  --tw-gradient-to-position:  ;
  --tw-ordinal:  ;
  --tw-slashed-zero:  ;
  --tw-numeric-figure:  ;
  --tw-numeric-spacing:  ;
  --tw-numeric-fraction:  ;
  --tw-ring-inset:  ;
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: rgb(59 130 246 / 0.5);
  --tw-ring-offset-shadow: 0 0 #0000;
  --tw-ring-shadow: 0 0 #0000;
  --tw-shadow: 0 0 #0000;
  --tw-shadow-colored: 0 0 #0000;
  --tw-blur:  ;
  --tw-brightness:  ;
  --tw-contrast:  ;
  --tw-grayscale:  ;
  --tw-hue-rotate:  ;
  --tw-invert:  ;
  --tw-saturate:  ;
  --tw-sepia:  ;
  --tw-drop-shadow:  ;
  --tw-backdrop-blur:  ;
  --tw-backdrop-brightness:  ;
  --tw-backdrop-contrast:  ;
  --tw-backdrop-grayscale:  ;
  --tw-backdrop-hue-rotate:  ;
  --tw-backdrop-invert:  ;
  --tw-backdrop-opacity:  ;
  --tw-backdrop-saturate:  ;
  --tw-backdrop-sepia:  ;
  --tw-contain-size:  ;
  --tw-contain-layout:  ;
  --tw-contain-paint:  ;
  --tw-contain-style:  ;
}

::backdrop{
  --tw-border-spacing-x: 0;
  --tw-border-spacing-y: 0;
  --tw-translate-x: 0;
  --tw-translate-y: 0;
  --tw-rotate: 0;
  --tw-skew-x: 0;
  --tw-skew-y: 0;
  --tw-scale-x: 1;
  --tw-scale-y: 1;
  --tw-pan-x:  ;
  --tw-pan-y:  ;
  --tw-pinch-zoom:  ;
  --tw-scroll-snap-strictness: proximity;
  --tw-gradient-from-position:  ;
  --tw-gradient-via-position:  ;
  --tw-gradient-to-position:  ;
  --tw-ordinal:  ;
  --tw-slashed-zero:  ;
  --tw-numeric-figure:  ;
  --tw-numeric-spacing:  ;
  --tw-numeric-fraction:  ;
  --tw-ring-inset:  ;
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: rgb(59 130 246 / 0.5);
  --tw-ring-offset-shadow: 0 0 #0000;
  --tw-ring-shadow: 0 0 #0000;
  --tw-shadow: 0 0 #0000;
  --tw-shadow-colored: 0 0 #0000;
  --tw-blur:  ;
  --tw-brightness:  ;
  --tw-contrast:  ;
  --tw-grayscale:  ;
  --tw-hue-rotate:  ;
  --tw-invert:  ;
  --tw-saturate:  ;
  --tw-sepia:  ;
  --tw-drop-shadow:  ;
  --tw-backdrop-blur:  ;
  --tw-backdrop-brightness:  ;
  --tw-backdrop-contrast:  ;
  --tw-backdrop-grayscale:  ;
  --tw-backdrop-hue-rotate:  ;
  --tw-backdrop-invert:  ;
  --tw-backdrop-opacity:  ;
  --tw-backdrop-saturate:  ;
  --tw-backdrop-sepia:  ;
  --tw-contain-size:  ;
  --tw-contain-layout:  ;
  --tw-contain-paint:  ;
  --tw-contain-style:  ;
}

/*! tailwindcss v3.4.17 | MIT License | https://tailwindcss.com
 */

/*
1. Prevent padding and border from affecting element width. (https://github.com/mozdevs/cssremedy/issues/4)
2. Allow adding a border to an element by just adding a border-width. (https://github.com/tailwindcss/tailwindcss/pull/116)
*/

*,
::before,
::after {
  box-sizing: border-box;
  /* 1 */
  border-width: 0;
  /* 2 */
  border-style: solid;
  /* 2 */
  border-color: #e5e7eb;
  /* 2 */
}

::before,
::after {
  --tw-content: '';
}

/*
1. Use a consistent sensible line-height in all browsers.
2. Prevent adjustments of font size after orientation changes in iOS.
3. Use a more readable tab size.
4. Use the user's configured `sans` font-family by default.
5. Use the user's configured `sans` font-feature-settings by default.
6. Use the user's configured `sans` font-variation-settings by default.
7. Disable tap highlights on iOS
*/

html,
:host {
  line-height: 1.5;
  /* 1 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
  -moz-tab-size: 4;
  /* 3 */
  -o-tab-size: 4;
     tab-size: 4;
  /* 3 */
  font-family: Open Sans, sans-serif;
  /* 4 */
  font-feature-settings: normal;
  /* 5 */
  font-variation-settings: normal;
  /* 6 */
  -webkit-tap-highlight-color: transparent;
  /* 7 */
}

/*
1. Remove the margin in all browsers.
2. Inherit line-height from `html` so users can set them as a class directly on the `html` element.
*/

body {
  margin: 0;
  /* 1 */
  line-height: inherit;
  /* 2 */
}

/*
1. Add the correct height in Firefox.
2. Correct the inheritance of border color in Firefox. (https://bugzilla.mozilla.org/show_bug.cgi?id=190655)
3. Ensure horizontal rules are visible by default.
*/

hr {
  height: 0;
  /* 1 */
  color: inherit;
  /* 2 */
  border-top-width: 1px;
  /* 3 */
}

/*
Add the correct text decoration in Chrome, Edge, and Safari.
*/

abbr:where([title]) {
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
}

/*
Remove the default font size and weight for headings.
*/

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
}

/*
Reset links to optimize for opt-in styling instead of opt-out.
*/

a {
  color: inherit;
  text-decoration: inherit;
}

/*
Add the correct font weight in Edge and Safari.
*/

b,
strong {
  font-weight: bolder;
}

/*
1. Use the user's configured `mono` font-family by default.
2. Use the user's configured `mono` font-feature-settings by default.
3. Use the user's configured `mono` font-variation-settings by default.
4. Correct the odd `em` font sizing in all browsers.
*/

code,
kbd,
samp,
pre {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  /* 1 */
  font-feature-settings: normal;
  /* 2 */
  font-variation-settings: normal;
  /* 3 */
  font-size: 1em;
  /* 4 */
}

/*
Add the correct font size in all browsers.
*/

small {
  font-size: 80%;
}

/*
Prevent `sub` and `sup` elements from affecting the line height in all browsers.
*/

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/*
1. Remove text indentation from table contents in Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=999088, https://bugs.webkit.org/show_bug.cgi?id=201297)
2. Correct table border color inheritance in all Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=935729, https://bugs.webkit.org/show_bug.cgi?id=195016)
3. Remove gaps between table borders by default.
*/

table {
  text-indent: 0;
  /* 1 */
  border-color: inherit;
  /* 2 */
  border-collapse: collapse;
  /* 3 */
}

/*
1. Change the font styles in all browsers.
2. Remove the margin in Firefox and Safari.
3. Remove default padding in all browsers.
*/

button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  /* 1 */
  font-feature-settings: inherit;
  /* 1 */
  font-variation-settings: inherit;
  /* 1 */
  font-size: 100%;
  /* 1 */
  font-weight: inherit;
  /* 1 */
  line-height: inherit;
  /* 1 */
  letter-spacing: inherit;
  /* 1 */
  color: inherit;
  /* 1 */
  margin: 0;
  /* 2 */
  padding: 0;
  /* 3 */
}

/*
Remove the inheritance of text transform in Edge and Firefox.
*/

button,
select {
  text-transform: none;
}

/*
1. Correct the inability to style clickable types in iOS and Safari.
2. Remove default button styles.
*/

button,
input:where([type='button']),
input:where([type='reset']),
input:where([type='submit']) {
  -webkit-appearance: button;
  /* 1 */
  background-color: transparent;
  /* 2 */
  background-image: none;
  /* 2 */
}

/*
Use the modern Firefox focus style for all focusable elements.
*/

:-moz-focusring {
  outline: auto;
}

/*
Remove the additional `:invalid` styles in Firefox. (https://github.com/mozilla/gecko-dev/blob/2f9eacd9d3d995c937b4251a5557d95d494c9be1/layout/style/res/forms.css#L728-L737)
*/

:-moz-ui-invalid {
  box-shadow: none;
}

/*
Add the correct vertical alignment in Chrome and Firefox.
*/

progress {
  vertical-align: baseline;
}

/*
Correct the cursor style of increment and decrement buttons in Safari.
*/

::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
  height: auto;
}

/*
1. Correct the odd appearance in Chrome and Safari.
2. Correct the outline style in Safari.
*/

[type='search'] {
  -webkit-appearance: textfield;
  /* 1 */
  outline-offset: -2px;
  /* 2 */
}

/*
Remove the inner padding in Chrome and Safari on macOS.
*/

::-webkit-search-decoration {
  -webkit-appearance: none;
}

/*
1. Correct the inability to style clickable types in iOS and Safari.
2. Change font properties to `inherit` in Safari.
*/

::-webkit-file-upload-button {
  -webkit-appearance: button;
  /* 1 */
  font: inherit;
  /* 2 */
}

/*
Add the correct display in Chrome and Safari.
*/

summary {
  display: list-item;
}

/*
Removes the default spacing and border for appropriate elements.
*/

blockquote,
dl,
dd,
h1,
h2,
h3,
h4,
h5,
h6,
hr,
figure,
p,
pre {
  margin: 0;
}

fieldset {
  margin: 0;
  padding: 0;
}

legend {
  padding: 0;
}

ol,
ul,
menu {
  list-style: none;
  margin: 0;
  padding: 0;
}

/*
Reset default styling for dialogs.
*/

dialog {
  padding: 0;
}

/*
Prevent resizing textareas horizontally by default.
*/

textarea {
  resize: vertical;
}

/*
1. Reset the default placeholder opacity in Firefox. (https://github.com/tailwindlabs/tailwindcss/issues/3300)
2. Set the default placeholder color to the user's configured gray 400 color.
*/

input::-moz-placeholder, textarea::-moz-placeholder {
  opacity: 1;
  /* 1 */
  color: #9ca3af;
  /* 2 */
}

input::placeholder,
textarea::placeholder {
  opacity: 1;
  /* 1 */
  color: #9ca3af;
  /* 2 */
}

/*
Set the default cursor for buttons.
*/

button,
[role="button"] {
  cursor: pointer;
}

/*
Make sure disabled buttons don't get the pointer cursor.
*/

:disabled {
  cursor: default;
}

/*
1. Make replaced elements `display: block` by default. (https://github.com/mozdevs/cssremedy/issues/14)
2. Add `vertical-align: middle` to align replaced elements more sensibly by default. (https://github.com/jensimmons/cssremedy/issues/14#issuecomment-634934210)
   This can trigger a poorly considered lint error in some tools but is included by design.
*/

img,
svg,
video,
canvas,
audio,
iframe,
embed,
object {
  display: block;
  /* 1 */
  vertical-align: middle;
  /* 2 */
}

/*
Constrain images and videos to the parent width and preserve their intrinsic aspect ratio. (https://github.com/mozdevs/cssremedy/issues/14)
*/

img,
video {
  max-width: 100%;
  height: auto;
}

/* Make elements with the HTML hidden attribute stay hidden by default */

[hidden]:where(:not([hidden="until-found"])) {
  display: none;
}

[type='text'],input:where(:not([type])),[type='email'],[type='url'],[type='password'],[type='number'],[type='date'],[type='datetime-local'],[type='month'],[type='search'],[type='tel'],[type='time'],[type='week'],[multiple],textarea,select{
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: #fff;
  border-color: #6b7280;
  border-width: 1px;
  border-radius: 0px;
  padding-top: 0.5rem;
  padding-right: 0.75rem;
  padding-bottom: 0.5rem;
  padding-left: 0.75rem;
  font-size: 1rem;
  line-height: 1.5rem;
  --tw-shadow: 0 0 #0000;
}

[type='text']:focus, input:where(:not([type])):focus, [type='email']:focus, [type='url']:focus, [type='password']:focus, [type='number']:focus, [type='date']:focus, [type='datetime-local']:focus, [type='month']:focus, [type='search']:focus, [type='tel']:focus, [type='time']:focus, [type='week']:focus, [multiple]:focus, textarea:focus, select:focus{
  outline: 2px solid transparent;
  outline-offset: 2px;
  --tw-ring-inset: var(--tw-empty,/*!*/ /*!*/);
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: #2563eb;
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
  border-color: #2563eb;
}

input::-moz-placeholder, textarea::-moz-placeholder{
  color: #6b7280;
  opacity: 1;
}

input::placeholder,textarea::placeholder{
  color: #6b7280;
  opacity: 1;
}

::-webkit-datetime-edit-fields-wrapper{
  padding: 0;
}

::-webkit-date-and-time-value{
  min-height: 1.5em;
  text-align: inherit;
}

::-webkit-datetime-edit{
  display: inline-flex;
}

::-webkit-datetime-edit,::-webkit-datetime-edit-year-field,::-webkit-datetime-edit-month-field,::-webkit-datetime-edit-day-field,::-webkit-datetime-edit-hour-field,::-webkit-datetime-edit-minute-field,::-webkit-datetime-edit-second-field,::-webkit-datetime-edit-millisecond-field,::-webkit-datetime-edit-meridiem-field{
  padding-top: 0;
  padding-bottom: 0;
}

select{
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");
  background-position: right 0.5rem center;
  background-repeat: no-repeat;
  background-size: 1.5em 1.5em;
  padding-right: 2.5rem;
  -webkit-print-color-adjust: exact;
          print-color-adjust: exact;
}

[multiple],[size]:where(select:not([size="1"])){
  background-image: initial;
  background-position: initial;
  background-repeat: unset;
  background-size: initial;
  padding-right: 0.75rem;
  -webkit-print-color-adjust: unset;
          print-color-adjust: unset;
}

[type='checkbox'],[type='radio']{
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  padding: 0;
  -webkit-print-color-adjust: exact;
          print-color-adjust: exact;
  display: inline-block;
  vertical-align: middle;
  background-origin: border-box;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  flex-shrink: 0;
  height: 1rem;
  width: 1rem;
  color: #2563eb;
  background-color: #fff;
  border-color: #6b7280;
  border-width: 1px;
  --tw-shadow: 0 0 #0000;
}

[type='checkbox']{
  border-radius: 0px;
}

[type='radio']{
  border-radius: 100%;
}

[type='checkbox']:focus,[type='radio']:focus{
  outline: 2px solid transparent;
  outline-offset: 2px;
  --tw-ring-inset: var(--tw-empty,/*!*/ /*!*/);
  --tw-ring-offset-width: 2px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: #2563eb;
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
}

[type='checkbox']:checked,[type='radio']:checked{
  border-color: transparent;
  background-color: currentColor;
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
}

[type='checkbox']:checked{
  background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 16 16' fill='white' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M12.207 4.793a1 1 0 010 1.414l-5 5a1 1 0 01-1.414 0l-2-2a1 1 0 011.414-1.414L6.5 9.086l4.293-4.293a1 1 0 011.414 0z'/%3e%3c/svg%3e");
}

@media (forced-colors: active) {
  [type='checkbox']:checked{
    -webkit-appearance: auto;
       -moz-appearance: auto;
            appearance: auto;
  }
}

[type='radio']:checked{
  background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 16 16' fill='white' xmlns='http://www.w3.org/2000/svg'%3e%3ccircle cx='8' cy='8' r='3'/%3e%3c/svg%3e");
}

@media (forced-colors: active) {
  [type='radio']:checked{
    -webkit-appearance: auto;
       -moz-appearance: auto;
            appearance: auto;
  }
}

[type='checkbox']:checked:hover,[type='checkbox']:checked:focus,[type='radio']:checked:hover,[type='radio']:checked:focus{
  border-color: transparent;
  background-color: currentColor;
}

[type='checkbox']:indeterminate{
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 16 16'%3e%3cpath stroke='white' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M4 8h8'/%3e%3c/svg%3e");
  border-color: transparent;
  background-color: currentColor;
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
}

@media (forced-colors: active) {
  [type='checkbox']:indeterminate{
    -webkit-appearance: auto;
       -moz-appearance: auto;
            appearance: auto;
  }
}

[type='checkbox']:indeterminate:hover,[type='checkbox']:indeterminate:focus{
  border-color: transparent;
  background-color: currentColor;
}

[type='file']{
  background: unset;
  border-color: inherit;
  border-width: 0;
  border-radius: 0;
  padding: 0;
  font-size: unset;
  line-height: inherit;
}

[type='file']:focus{
  outline: 1px solid ButtonText;
  outline: 1px auto -webkit-focus-ring-color;
}

.container{
  width: 100%;
}

@media (min-width: 640px){
  .container{
    max-width: 640px;
  }
}

@media (min-width: 768px){
  .container{
    max-width: 768px;
  }
}

@media (min-width: 1024px){
  .container{
    max-width: 1024px;
  }
}

@media (min-width: 1280px){
  .container{
    max-width: 1280px;
  }
}

@media (min-width: 1536px){
  .container{
    max-width: 1536px;
  }
}

.prose{
  color: var(--tw-prose-body);
  max-width: 65ch;
}

.prose :where(p):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  margin-top: 1.25em;
  margin-bottom: 1.25em;
}

.prose :where([class~="lead"]):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  color: var(--tw-prose-lead);
  font-size: 1.25em;
  line-height: 1.6;
  margin-top: 1.2em;
  margin-bottom: 1.2em;
}

.prose :where(a):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  color: var(--tw-prose-links);
  text-decoration: underline;
  font-weight: 500;
}

.prose :where(strong):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  color: var(--tw-prose-bold);
  font-weight: 600;
}

.prose :where(a strong):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  color: inherit;
}

.prose :where(blockquote strong):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  color: inherit;
}

.prose :where(thead th strong):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  color: inherit;
}

.prose :where(ol):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  list-style-type: decimal;
  margin-top: 1.25em;
  margin-bottom: 1.25em;
  padding-inline-start: 1.625em;
}

.prose :where(ol[type="A"]):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  list-style-type: upper-alpha;
}

.prose :where(ol[type="a"]):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  list-style-type: lower-alpha;
}

.prose :where(ol[type="A" s]):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  list-style-type: upper-alpha;
}

.prose :where(ol[type="a" s]):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  list-style-type: lower-alpha;
}

.prose :where(ol[type="I"]):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  list-style-type: upper-roman;
}

.prose :where(ol[type="i"]):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  list-style-type: lower-roman;
}

.prose :where(ol[type="I" s]):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  list-style-type: upper-roman;
}

.prose :where(ol[type="i" s]):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  list-style-type: lower-roman;
}

.prose :where(ol[type="1"]):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  list-style-type: decimal;
}

.prose :where(ul):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  list-style-type: disc;
  margin-top: 1.25em;
  margin-bottom: 1.25em;
  padding-inline-start: 1.625em;
}

.prose :where(ol &gt; li):not(:where([class~="not-prose"],[class~="not-prose"] *))::marker{
  font-weight: 400;
  color: var(--tw-prose-counters);
}

.prose :where(ul &gt; li):not(:where([class~="not-prose"],[class~="not-prose"] *))::marker{
  color: var(--tw-prose-bullets);
}

.prose :where(dt):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  color: var(--tw-prose-headings);
  font-weight: 600;
  margin-top: 1.25em;
}

.prose :where(hr):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  border-color: var(--tw-prose-hr);
  border-top-width: 1px;
  margin-top: 3em;
  margin-bottom: 3em;
}

.prose :where(blockquote):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  font-weight: 500;
  font-style: italic;
  color: var(--tw-prose-quotes);
  border-inline-start-width: 0.25rem;
  border-inline-start-color: var(--tw-prose-quote-borders);
  quotes: "\201C""\201D""\2018""\2019";
  margin-top: 1.6em;
  margin-bottom: 1.6em;
  padding-inline-start: 1em;
}

.prose :where(blockquote p:first-of-type):not(:where([class~="not-prose"],[class~="not-prose"] *))::before{
  content: open-quote;
}

.prose :where(blockquote p:last-of-type):not(:where([class~="not-prose"],[class~="not-prose"] *))::after{
  content: close-quote;
}

.prose :where(h1):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  color: var(--tw-prose-headings);
  font-weight: 800;
  font-size: 2.25em;
  margin-top: 0;
  margin-bottom: 0.8888889em;
  line-height: 1.1111111;
}

.prose :where(h1 strong):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  font-weight: 900;
  color: inherit;
}

.prose :where(h2):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  color: var(--tw-prose-headings);
  font-weight: 700;
  font-size: 1.5em;
  margin-top: 2em;
  margin-bottom: 1em;
  line-height: 1.3333333;
}

.prose :where(h2 strong):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  font-weight: 800;
  color: inherit;
}

.prose :where(h3):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  color: var(--tw-prose-headings);
  font-weight: 600;
  font-size: 1.25em;
  margin-top: 1.6em;
  margin-bottom: 0.6em;
  line-height: 1.6;
}

.prose :where(h3 strong):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  font-weight: 700;
  color: inherit;
}

.prose :where(h4):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  color: var(--tw-prose-headings);
  font-weight: 600;
  margin-top: 1.5em;
  margin-bottom: 0.5em;
  line-height: 1.5;
}

.prose :where(h4 strong):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  font-weight: 700;
  color: inherit;
}

.prose :where(img):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  margin-top: 2em;
  margin-bottom: 2em;
}

.prose :where(picture):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  display: block;
  margin-top: 2em;
  margin-bottom: 2em;
}

.prose :where(video):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  margin-top: 2em;
  margin-bottom: 2em;
}

.prose :where(kbd):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  font-weight: 500;
  font-family: inherit;
  color: var(--tw-prose-kbd);
  box-shadow: 0 0 0 1px rgb(var(--tw-prose-kbd-shadows) / 10%), 0 3px 0 rgb(var(--tw-prose-kbd-shadows) / 10%);
  font-size: 0.875em;
  border-radius: 0.3125rem;
  padding-top: 0.1875em;
  padding-inline-end: 0.375em;
  padding-bottom: 0.1875em;
  padding-inline-start: 0.375em;
}

.prose :where(code):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  color: var(--tw-prose-code);
  font-weight: 600;
  font-size: 0.875em;
}

.prose :where(code):not(:where([class~="not-prose"],[class~="not-prose"] *))::before{
  content: "`";
}

.prose :where(code):not(:where([class~="not-prose"],[class~="not-prose"] *))::after{
  content: "`";
}

.prose :where(a code):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  color: inherit;
}

.prose :where(h1 code):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  color: inherit;
}

.prose :where(h2 code):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  color: inherit;
  font-size: 0.875em;
}

.prose :where(h3 code):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  color: inherit;
  font-size: 0.9em;
}

.prose :where(h4 code):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  color: inherit;
}

.prose :where(blockquote code):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  color: inherit;
}

.prose :where(thead th code):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  color: inherit;
}

.prose :where(pre):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  color: var(--tw-prose-pre-code);
  background-color: var(--tw-prose-pre-bg);
  overflow-x: auto;
  font-weight: 400;
  font-size: 0.875em;
  line-height: 1.7142857;
  margin-top: 1.7142857em;
  margin-bottom: 1.7142857em;
  border-radius: 0.375rem;
  padding-top: 0.8571429em;
  padding-inline-end: 1.1428571em;
  padding-bottom: 0.8571429em;
  padding-inline-start: 1.1428571em;
}

.prose :where(pre code):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  background-color: transparent;
  border-width: 0;
  border-radius: 0;
  padding: 0;
  font-weight: inherit;
  color: inherit;
  font-size: inherit;
  font-family: inherit;
  line-height: inherit;
}

.prose :where(pre code):not(:where([class~="not-prose"],[class~="not-prose"] *))::before{
  content: none;
}

.prose :where(pre code):not(:where([class~="not-prose"],[class~="not-prose"] *))::after{
  content: none;
}

.prose :where(table):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  width: 100%;
  table-layout: auto;
  margin-top: 2em;
  margin-bottom: 2em;
  font-size: 0.875em;
  line-height: 1.7142857;
}

.prose :where(thead):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  border-bottom-width: 1px;
  border-bottom-color: var(--tw-prose-th-borders);
}

.prose :where(thead th):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  color: var(--tw-prose-headings);
  font-weight: 600;
  vertical-align: bottom;
  padding-inline-end: 0.5714286em;
  padding-bottom: 0.5714286em;
  padding-inline-start: 0.5714286em;
}

.prose :where(tbody tr):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  border-bottom-width: 1px;
  border-bottom-color: var(--tw-prose-td-borders);
}

.prose :where(tbody tr:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  border-bottom-width: 0;
}

.prose :where(tbody td):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  vertical-align: baseline;
}

.prose :where(tfoot):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  border-top-width: 1px;
  border-top-color: var(--tw-prose-th-borders);
}

.prose :where(tfoot td):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  vertical-align: top;
}

.prose :where(th, td):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  text-align: start;
}

.prose :where(figure &gt; *):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  margin-top: 0;
  margin-bottom: 0;
}

.prose :where(figcaption):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  color: var(--tw-prose-captions);
  font-size: 0.875em;
  line-height: 1.4285714;
  margin-top: 0.8571429em;
}

.prose{
  --tw-prose-body: #374151;
  --tw-prose-headings: #111827;
  --tw-prose-lead: #4b5563;
  --tw-prose-links: #111827;
  --tw-prose-bold: #111827;
  --tw-prose-counters: #6b7280;
  --tw-prose-bullets: #d1d5db;
  --tw-prose-hr: #e5e7eb;
  --tw-prose-quotes: #111827;
  --tw-prose-quote-borders: #e5e7eb;
  --tw-prose-captions: #6b7280;
  --tw-prose-kbd: #111827;
  --tw-prose-kbd-shadows: 17 24 39;
  --tw-prose-code: #111827;
  --tw-prose-pre-code: #e5e7eb;
  --tw-prose-pre-bg: #1f2937;
  --tw-prose-th-borders: #d1d5db;
  --tw-prose-td-borders: #e5e7eb;
  --tw-prose-invert-body: #d1d5db;
  --tw-prose-invert-headings: #fff;
  --tw-prose-invert-lead: #9ca3af;
  --tw-prose-invert-links: #fff;
  --tw-prose-invert-bold: #fff;
  --tw-prose-invert-counters: #9ca3af;
  --tw-prose-invert-bullets: #4b5563;
  --tw-prose-invert-hr: #374151;
  --tw-prose-invert-quotes: #f3f4f6;
  --tw-prose-invert-quote-borders: #374151;
  --tw-prose-invert-captions: #9ca3af;
  --tw-prose-invert-kbd: #fff;
  --tw-prose-invert-kbd-shadows: 255 255 255;
  --tw-prose-invert-code: #fff;
  --tw-prose-invert-pre-code: #d1d5db;
  --tw-prose-invert-pre-bg: rgb(0 0 0 / 50%);
  --tw-prose-invert-th-borders: #4b5563;
  --tw-prose-invert-td-borders: #374151;
  font-size: 1rem;
  line-height: 1.75;
}

.prose :where(picture &gt; img):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  margin-top: 0;
  margin-bottom: 0;
}

.prose :where(li):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  margin-top: 0.5em;
  margin-bottom: 0.5em;
}

.prose :where(ol &gt; li):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  padding-inline-start: 0.375em;
}

.prose :where(ul &gt; li):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  padding-inline-start: 0.375em;
}

.prose :where(.prose &gt; ul &gt; li p):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  margin-top: 0.75em;
  margin-bottom: 0.75em;
}

.prose :where(.prose &gt; ul &gt; li &gt; p:first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  margin-top: 1.25em;
}

.prose :where(.prose &gt; ul &gt; li &gt; p:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  margin-bottom: 1.25em;
}

.prose :where(.prose &gt; ol &gt; li &gt; p:first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  margin-top: 1.25em;
}

.prose :where(.prose &gt; ol &gt; li &gt; p:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  margin-bottom: 1.25em;
}

.prose :where(ul ul, ul ol, ol ul, ol ol):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  margin-top: 0.75em;
  margin-bottom: 0.75em;
}

.prose :where(dl):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  margin-top: 1.25em;
  margin-bottom: 1.25em;
}

.prose :where(dd):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  margin-top: 0.5em;
  padding-inline-start: 1.625em;
}

.prose :where(hr + *):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  margin-top: 0;
}

.prose :where(h2 + *):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  margin-top: 0;
}

.prose :where(h3 + *):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  margin-top: 0;
}

.prose :where(h4 + *):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  margin-top: 0;
}

.prose :where(thead th:first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  padding-inline-start: 0;
}

.prose :where(thead th:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  padding-inline-end: 0;
}

.prose :where(tbody td, tfoot td):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  padding-top: 0.5714286em;
  padding-inline-end: 0.5714286em;
  padding-bottom: 0.5714286em;
  padding-inline-start: 0.5714286em;
}

.prose :where(tbody td:first-child, tfoot td:first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  padding-inline-start: 0;
}

.prose :where(tbody td:last-child, tfoot td:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  padding-inline-end: 0;
}

.prose :where(figure):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  margin-top: 2em;
  margin-bottom: 2em;
}

.prose :where(.prose &gt; :first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  margin-top: 0;
}

.prose :where(.prose &gt; :last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  margin-bottom: 0;
}

.prose-sm{
  font-size: 0.875rem;
  line-height: 1.7142857;
}

.prose-sm :where(p):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  margin-top: 1.1428571em;
  margin-bottom: 1.1428571em;
}

.prose-sm :where([class~="lead"]):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  font-size: 1.2857143em;
  line-height: 1.5555556;
  margin-top: 0.8888889em;
  margin-bottom: 0.8888889em;
}

.prose-sm :where(blockquote):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  margin-top: 1.3333333em;
  margin-bottom: 1.3333333em;
  padding-inline-start: 1.1111111em;
}

.prose-sm :where(h1):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  font-size: 2.1428571em;
  margin-top: 0;
  margin-bottom: 0.8em;
  line-height: 1.2;
}

.prose-sm :where(h2):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  font-size: 1.4285714em;
  margin-top: 1.6em;
  margin-bottom: 0.8em;
  line-height: 1.4;
}

.prose-sm :where(h3):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  font-size: 1.2857143em;
  margin-top: 1.5555556em;
  margin-bottom: 0.4444444em;
  line-height: 1.5555556;
}

.prose-sm :where(h4):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  margin-top: 1.4285714em;
  margin-bottom: 0.5714286em;
  line-height: 1.4285714;
}

.prose-sm :where(img):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  margin-top: 1.7142857em;
  margin-bottom: 1.7142857em;
}

.prose-sm :where(picture):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  margin-top: 1.7142857em;
  margin-bottom: 1.7142857em;
}

.prose-sm :where(picture &gt; img):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  margin-top: 0;
  margin-bottom: 0;
}

.prose-sm :where(video):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  margin-top: 1.7142857em;
  margin-bottom: 1.7142857em;
}

.prose-sm :where(kbd):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  font-size: 0.8571429em;
  border-radius: 0.3125rem;
  padding-top: 0.1428571em;
  padding-inline-end: 0.3571429em;
  padding-bottom: 0.1428571em;
  padding-inline-start: 0.3571429em;
}

.prose-sm :where(code):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  font-size: 0.8571429em;
}

.prose-sm :where(h2 code):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  font-size: 0.9em;
}

.prose-sm :where(h3 code):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  font-size: 0.8888889em;
}

.prose-sm :where(pre):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  font-size: 0.8571429em;
  line-height: 1.6666667;
  margin-top: 1.6666667em;
  margin-bottom: 1.6666667em;
  border-radius: 0.25rem;
  padding-top: 0.6666667em;
  padding-inline-end: 1em;
  padding-bottom: 0.6666667em;
  padding-inline-start: 1em;
}

.prose-sm :where(ol):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  margin-top: 1.1428571em;
  margin-bottom: 1.1428571em;
  padding-inline-start: 1.5714286em;
}

.prose-sm :where(ul):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  margin-top: 1.1428571em;
  margin-bottom: 1.1428571em;
  padding-inline-start: 1.5714286em;
}

.prose-sm :where(li):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  margin-top: 0.2857143em;
  margin-bottom: 0.2857143em;
}

.prose-sm :where(ol &gt; li):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  padding-inline-start: 0.4285714em;
}

.prose-sm :where(ul &gt; li):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  padding-inline-start: 0.4285714em;
}

.prose-sm :where(.prose-sm &gt; ul &gt; li p):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  margin-top: 0.5714286em;
  margin-bottom: 0.5714286em;
}

.prose-sm :where(.prose-sm &gt; ul &gt; li &gt; p:first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  margin-top: 1.1428571em;
}

.prose-sm :where(.prose-sm &gt; ul &gt; li &gt; p:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  margin-bottom: 1.1428571em;
}

.prose-sm :where(.prose-sm &gt; ol &gt; li &gt; p:first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  margin-top: 1.1428571em;
}

.prose-sm :where(.prose-sm &gt; ol &gt; li &gt; p:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  margin-bottom: 1.1428571em;
}

.prose-sm :where(ul ul, ul ol, ol ul, ol ol):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  margin-top: 0.5714286em;
  margin-bottom: 0.5714286em;
}

.prose-sm :where(dl):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  margin-top: 1.1428571em;
  margin-bottom: 1.1428571em;
}

.prose-sm :where(dt):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  margin-top: 1.1428571em;
}

.prose-sm :where(dd):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  margin-top: 0.2857143em;
  padding-inline-start: 1.5714286em;
}

.prose-sm :where(hr):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  margin-top: 2.8571429em;
  margin-bottom: 2.8571429em;
}

.prose-sm :where(hr + *):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  margin-top: 0;
}

.prose-sm :where(h2 + *):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  margin-top: 0;
}

.prose-sm :where(h3 + *):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  margin-top: 0;
}

.prose-sm :where(h4 + *):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  margin-top: 0;
}

.prose-sm :where(table):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  font-size: 0.8571429em;
  line-height: 1.5;
}

.prose-sm :where(thead th):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  padding-inline-end: 1em;
  padding-bottom: 0.6666667em;
  padding-inline-start: 1em;
}

.prose-sm :where(thead th:first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  padding-inline-start: 0;
}

.prose-sm :where(thead th:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  padding-inline-end: 0;
}

.prose-sm :where(tbody td, tfoot td):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  padding-top: 0.6666667em;
  padding-inline-end: 1em;
  padding-bottom: 0.6666667em;
  padding-inline-start: 1em;
}

.prose-sm :where(tbody td:first-child, tfoot td:first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  padding-inline-start: 0;
}

.prose-sm :where(tbody td:last-child, tfoot td:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  padding-inline-end: 0;
}

.prose-sm :where(figure):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  margin-top: 1.7142857em;
  margin-bottom: 1.7142857em;
}

.prose-sm :where(figure &gt; *):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  margin-top: 0;
  margin-bottom: 0;
}

.prose-sm :where(figcaption):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  font-size: 0.8571429em;
  line-height: 1.3333333;
  margin-top: 0.6666667em;
}

.prose-sm :where(.prose-sm &gt; :first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  margin-top: 0;
}

.prose-sm :where(.prose-sm &gt; :last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  margin-bottom: 0;
}

summary  {
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

.back-to-top-btn.show{
  pointer-events: auto;
  opacity: 1;
}

.bg-green .c-solid-button,
    .bg-green .c-solid-button-small,
    .green-graphics-light .c-solid-button,
    .green-graphics-light .c-solid-button-small{
  --tw-text-opacity: 1;
  color: rgb(0 132 61 / var(--tw-text-opacity, 1));
}

.bg-green .c-solid-button:hover,
    .bg-green .c-solid-button-small:hover,
    .green-graphics-light .c-solid-button:hover,
    .green-graphics-light .c-solid-button-small:hover{
  --tw-bg-opacity: 1;
  background-color: rgb(192 234 213 / var(--tw-bg-opacity, 1));
}

.bg-green .c-solid-button,
    .bg-green .c-solid-button-small,
    .green-graphics-light .c-solid-button,
    .green-graphics-light .c-solid-button-small {
  background-color: #fff;
}

.green-graphics-dark .c-solid-button,
    .green-graphics-dark .c-solid-button-small{
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity, 1));
}

.green-graphics-dark .c-solid-button:hover,
    .green-graphics-dark .c-solid-button-small:hover{
  --tw-bg-opacity: 1;
  background-color: rgb(0 106 49 / var(--tw-bg-opacity, 1));
}

.green-graphics-dark .c-solid-button,
    .green-graphics-dark .c-solid-button-small {
  background-color: #00843D;
}

.bg-green .c-outlined-button,
    .bg-green .c-outlined-button-small,
    .green-graphics-light .c-outlined-button,
    .green-graphics-light .c-outlined-button-small,
    .green-graphics-dark .c-outlined-button,
    .green-graphics-dark .c-outlined-button-small{
  --tw-border-opacity: 1;
  border-color: rgb(255 255 255 / var(--tw-border-opacity, 1));
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity, 1));
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.bg-green .c-outlined-button:hover,
    .bg-green .c-outlined-button-small:hover,
    .green-graphics-light .c-outlined-button:hover,
    .green-graphics-light .c-outlined-button-small:hover,
    .green-graphics-dark .c-outlined-button:hover,
    .green-graphics-dark .c-outlined-button-small:hover{
  --tw-border-opacity: 1;
  border-color: rgb(192 234 213 / var(--tw-border-opacity, 1));
  --tw-text-opacity: 1;
  color: rgb(192 234 213 / var(--tw-text-opacity, 1));
}

.c-solid-button{
  display: inline-block;
  width: 100%;
  border-radius: 100px;
  padding-left: 40px;
  padding-right: 40px;
  padding-top: 18px;
  padding-bottom: 18px;
  font-weight: 600;
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity, 1));
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.c-solid-button:hover{
  --tw-bg-opacity: 1;
  background-color: rgb(0 106 49 / var(--tw-bg-opacity, 1));
}

@media (min-width: 768px){
  .c-solid-button{
    width: -moz-fit-content;
    width: fit-content;
  }
}

.c-solid-button {
  background-color: #00843D;
}

.c-solid-button-small{
  display: inline-block;
  width: 100%;
  border-radius: 100px;
  padding-left: 40px;
  padding-right: 40px;
  padding-top: 13px;
  padding-bottom: 13px;
  font-weight: 600;
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity, 1));
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.c-solid-button-small:hover{
  --tw-bg-opacity: 1;
  background-color: rgb(0 106 49 / var(--tw-bg-opacity, 1));
}

@media (min-width: 768px){
  .c-solid-button-small{
    width: -moz-fit-content;
    width: fit-content;
  }
}

.c-solid-button-small {
  background-color: #00843D;
}

.c-outlined-button{
  display: inline-block;
  width: 100%;
  border-radius: 100px;
  border-width: 1px;
  --tw-border-opacity: 1;
  border-color: rgb(0 132 61 / var(--tw-border-opacity, 1));
  padding-left: 40px;
  padding-right: 40px;
  padding-top: 18px;
  padding-bottom: 18px;
  font-weight: 600;
  --tw-text-opacity: 1;
  color: rgb(0 132 61 / var(--tw-text-opacity, 1));
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.c-outlined-button:hover{
  --tw-border-opacity: 1;
  border-color: rgb(0 106 49 / var(--tw-border-opacity, 1));
  --tw-text-opacity: 1;
  color: rgb(0 106 49 / var(--tw-text-opacity, 1));
}

@media (min-width: 768px){
  .c-outlined-button{
    width: -moz-fit-content;
    width: fit-content;
  }
}

.c-outlined-button-small{
  display: inline-block;
  width: 100%;
  border-radius: 100px;
  border-width: 1px;
  --tw-border-opacity: 1;
  border-color: rgb(0 132 61 / var(--tw-border-opacity, 1));
  padding-left: 40px;
  padding-right: 40px;
  padding-top: 13px;
  padding-bottom: 13px;
  font-weight: 600;
  --tw-text-opacity: 1;
  color: rgb(0 132 61 / var(--tw-text-opacity, 1));
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.c-outlined-button-small:hover{
  --tw-border-opacity: 1;
  border-color: rgb(0 106 49 / var(--tw-border-opacity, 1));
  --tw-text-opacity: 1;
  color: rgb(0 106 49 / var(--tw-text-opacity, 1));
}

@media (min-width: 768px){
  .c-outlined-button-small{
    width: -moz-fit-content;
    width: fit-content;
  }
}

.c-swiper-scrollbar .swiper-scrollbar-drag{
  height: 100%;
  cursor: grab;
  border-radius: 100px;
  --tw-bg-opacity: 1;
  background-color: rgb(0 173 89 / var(--tw-bg-opacity, 1));
}

.c-swiper-scrollbar .swiper-scrollbar-drag:active{
  cursor: grabbing;
}

.c-pdf-link{
  position: relative;
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
  font-weight: 600;
  --tw-text-opacity: 1;
  color: rgb(0 132 61 / var(--tw-text-opacity, 1));
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.c-pdf-link::before{
  height: 1.25rem;
  width: 1.25rem;
  content: var(--tw-content);
  min-width: 1.25rem;
}

.c-pdf-link::after{
  position: absolute;
  top: 5px;
  left: 0px;
  display: block;
  height: 1.25rem;
  width: 1.25rem;
  min-width: 1.25rem;
  border-radius: 9999px;
  --tw-bg-opacity: 1;
  background-color: rgb(27 52 49 / var(--tw-bg-opacity, 1));
  background-image: url('../images/vector/icons/pdf.svg');
  background-position: 4px 4px;
  background-repeat: no-repeat;
  content: var(--tw-content);
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.c-pdf-link:hover{
  --tw-text-opacity: 1;
  color: rgb(0 106 49 / var(--tw-text-opacity, 1));
}

.c-pdf-link:hover::after{
  content: var(--tw-content);
  --tw-bg-opacity: 1;
  background-color: rgb(0 106 49 / var(--tw-bg-opacity, 1));
}

.popup-wrapper a[href=""],
    .popup-wrapper [data-phone=""] {
  display: none;
}

.sr-only{
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.pointer-events-none{
  pointer-events: none;
}

.pointer-events-auto{
  pointer-events: auto;
}

.invisible{
  visibility: hidden;
}

.collapse{
  visibility: collapse;
}

.static{
  position: static;
}

.fixed{
  position: fixed;
}

.absolute{
  position: absolute;
}

.relative{
  position: relative;
}

.sticky{
  position: sticky;
}

.inset-0{
  inset: 0px;
}

.bottom-0{
  bottom: 0px;
}

.bottom-\[-142px\]{
  bottom: -142px;
}

.bottom-\[-52px\]{
  bottom: -52px;
}

.bottom-\[-62px\]{
  bottom: -62px;
}

.bottom-\[-72px\]{
  bottom: -72px;
}

.bottom-\[1rem\]{
  bottom: 1rem;
}

.bottom-\[20px\]{
  bottom: 20px;
}

.bottom-\[26px\]{
  bottom: 26px;
}

.left-0{
  left: 0px;
}

.left-1{
  left: 0.25rem;
}

.left-1\/2{
  left: 50%;
}

.left-\[-10px\]{
  left: -10px;
}

.left-\[100\%\]{
  left: 100%;
}

.left-\[14px\]{
  left: 14px;
}

.left-\[20px\]{
  left: 20px;
}

.left-\[30px\]{
  left: 30px;
}

.left-\[50\%\]{
  left: 50%;
}

.right-0{
  right: 0px;
}

.right-\[-10px\]{
  right: -10px;
}

.right-\[10px\]{
  right: 10px;
}

.right-\[1rem\]{
  right: 1rem;
}

.right-\[20px\]{
  right: 20px;
}

.right-\[5px\]{
  right: 5px;
}

.top-0{
  top: 0px;
}

.top-1\/2{
  top: 50%;
}

.top-\[-10px\]{
  top: -10px;
}

.top-\[-40px\]{
  top: -40px;
}

.top-\[-56px\]{
  top: -56px;
}

.top-\[-62px\]{
  top: -62px;
}

.top-\[0\]{
  top: 0;
}

.top-\[100\%\]{
  top: 100%;
}

.top-\[10px\]{
  top: 10px;
}

.top-\[13px\]{
  top: 13px;
}

.top-\[20px\]{
  top: 20px;
}

.top-\[26\%\]{
  top: 26%;
}

.top-\[50\%\]{
  top: 50%;
}

.top-\[60px\]{
  top: 60px;
}

.top-\[76px\]{
  top: 76px;
}

.top-full{
  top: 100%;
}

.z-10{
  z-index: 10;
}

.z-20{
  z-index: 20;
}

.z-30{
  z-index: 30;
}

.z-\[-1\]{
  z-index: -1;
}

.z-\[1000\]{
  z-index: 1000;
}

.z-\[1001\]{
  z-index: 1001;
}

.z-\[11\]{
  z-index: 11;
}

.z-\[1\]{
  z-index: 1;
}

.z-\[200\]{
  z-index: 200;
}

.z-\[2\]{
  z-index: 2;
}

.z-\[30\]{
  z-index: 30;
}

.z-\[998\]{
  z-index: 998;
}

.z-\[99\]{
  z-index: 99;
}

.row-span-2{
  grid-row: span 2 / span 2;
}

.mx-\[10px\]{
  margin-left: 10px;
  margin-right: 10px;
}

.mx-\[20px\]{
  margin-left: 20px;
  margin-right: 20px;
}

.mx-auto{
  margin-left: auto;
  margin-right: auto;
}

.my-\[30px\]{
  margin-top: 30px;
  margin-bottom: 30px;
}

.my-\[40px\]{
  margin-top: 40px;
  margin-bottom: 40px;
}

.mb-0{
  margin-bottom: 0px;
}

.mb-1{
  margin-bottom: 0.25rem;
}

.mb-2{
  margin-bottom: 0.5rem;
}

.mb-4{
  margin-bottom: 1rem;
}

.mb-5{
  margin-bottom: 1.25rem;
}

.mb-9{
  margin-bottom: 2.25rem;
}

.mb-\[10px\]{
  margin-bottom: 10px;
}

.mb-\[12px\]{
  margin-bottom: 12px;
}

.mb-\[13px\]{
  margin-bottom: 13px;
}

.mb-\[14px\]{
  margin-bottom: 14px;
}

.mb-\[15px\]{
  margin-bottom: 15px;
}

.mb-\[18px\]{
  margin-bottom: 18px;
}

.mb-\[20px\]{
  margin-bottom: 20px;
}

.mb-\[24px\]{
  margin-bottom: 24px;
}

.mb-\[30px\]{
  margin-bottom: 30px;
}

.mb-\[32px\]{
  margin-bottom: 32px;
}

.mb-\[36px\]{
  margin-bottom: 36px;
}

.mb-\[3px\]{
  margin-bottom: 3px;
}

.mb-\[40px\]{
  margin-bottom: 40px;
}

.mb-\[44px\]{
  margin-bottom: 44px;
}

.mb-\[50px\]{
  margin-bottom: 50px;
}

.mb-\[5px\]{
  margin-bottom: 5px;
}

.mb-\[6px\]{
  margin-bottom: 6px;
}

.ml-3{
  margin-left: 0.75rem;
}

.ml-\[10px\]{
  margin-left: 10px;
}

.ml-\[2px\]{
  margin-left: 2px;
}

.mr-\[10px\]{
  margin-right: 10px;
}

.mt-10{
  margin-top: 2.5rem;
}

.mt-16{
  margin-top: 4rem;
}

.mt-2{
  margin-top: 0.5rem;
}

.mt-4{
  margin-top: 1rem;
}

.mt-5{
  margin-top: 1.25rem;
}

.mt-6{
  margin-top: 1.5rem;
}

.mt-\[10px\]{
  margin-top: 10px;
}

.mt-\[12px\]{
  margin-top: 12px;
}

.mt-\[14px\]{
  margin-top: 14px;
}

.mt-\[15px\]{
  margin-top: 15px;
}

.mt-\[18px\]{
  margin-top: 18px;
}

.mt-\[20px\]{
  margin-top: 20px;
}

.mt-\[280px\]{
  margin-top: 280px;
}

.mt-\[28px\]{
  margin-top: 28px;
}

.mt-\[2px\]{
  margin-top: 2px;
}

.mt-\[30px\]{
  margin-top: 30px;
}

.mt-\[40px\]{
  margin-top: 40px;
}

.mt-\[50px\]{
  margin-top: 50px;
}

.mt-\[6px\]{
  margin-top: 6px;
}

.mt-\[7px\]{
  margin-top: 7px;
}

.mt-auto{
  margin-top: auto;
}

.line-clamp-1{
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}

.line-clamp-2{
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.line-clamp-3{
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.line-clamp-4{
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
}

.block{
  display: block;
}

.inline-block{
  display: inline-block;
}

.inline{
  display: inline;
}

.flex{
  display: flex;
}

.table{
  display: table;
}

.grid{
  display: grid;
}

.hidden{
  display: none;
}

.aspect-\[1\.12\/1\]{
  aspect-ratio: 1.12/1;
}

.aspect-\[1\.3\/1\]{
  aspect-ratio: 1.3/1;
}

.aspect-\[3\/2\]{
  aspect-ratio: 3/2;
}

.aspect-\[5\/3\]{
  aspect-ratio: 5/3;
}

.aspect-\[5\/4\]{
  aspect-ratio: 5/4;
}

.aspect-\[6\/5\]{
  aspect-ratio: 6/5;
}

.aspect-\[9\/8\]{
  aspect-ratio: 9/8;
}

.aspect-video{
  aspect-ratio: 16 / 9;
}

.size-\[16px\]{
  width: 16px;
  height: 16px;
}

.size-\[20px\]{
  width: 20px;
  height: 20px;
}

.size-\[40px\]{
  width: 40px;
  height: 40px;
}

.\!h-\[10px\]{
  height: 10px !important;
}

.\!h-\[12px\]{
  height: 12px !important;
}

.\!h-\[140px\]{
  height: 140px !important;
}

.\!h-\[16px\]{
  height: 16px !important;
}

.\!h-\[20px\]{
  height: 20px !important;
}

.\!h-\[21px\]{
  height: 21px !important;
}

.\!h-\[22px\]{
  height: 22px !important;
}

.\!h-\[24px\]{
  height: 24px !important;
}

.\!h-\[30px\]{
  height: 30px !important;
}

.\!h-\[40px\]{
  height: 40px !important;
}

.\!h-\[50px\]{
  height: 50px !important;
}

.\!h-\[5px\]{
  height: 5px !important;
}

.\!h-\[60px\]{
  height: 60px !important;
}

.h-0{
  height: 0px;
}

.h-\[100dvh\]{
  height: 100dvh;
}

.h-\[100px\]{
  height: 100px;
}

.h-\[12px\]{
  height: 12px;
}

.h-\[130px\]{
  height: 130px;
}

.h-\[15px\]{
  height: 15px;
}

.h-\[16px\]{
  height: 16px;
}

.h-\[18px\]{
  height: 18px;
}

.h-\[200px\]{
  height: 200px;
}

.h-\[20px\]{
  height: 20px;
}

.h-\[22px\]{
  height: 22px;
}

.h-\[24px\]{
  height: 24px;
}

.h-\[300px\]{
  height: 300px;
}

.h-\[30px\]{
  height: 30px;
}

.h-\[350px\]{
  height: 350px;
}

.h-\[36px\]{
  height: 36px;
}

.h-\[400px\]{
  height: 400px;
}

.h-\[40px\]{
  height: 40px;
}

.h-\[44px\]{
  height: 44px;
}

.h-\[48px\]{
  height: 48px;
}

.h-\[50\%\]{
  height: 50%;
}

.h-\[50px\]{
  height: 50px;
}

.h-\[600px\]{
  height: 600px;
}

.h-\[60px\]{
  height: 60px;
}

.h-\[6px\]{
  height: 6px;
}

.h-\[80px\]{
  height: 80px;
}

.h-auto{
  height: auto;
}

.h-fit{
  height: -moz-fit-content;
  height: fit-content;
}

.h-full{
  height: 100%;
}

.\!max-h-0{
  max-height: 0px !important;
}

.max-h-0{
  max-height: 0px;
}

.max-h-\[140px\]{
  max-height: 140px;
}

.max-h-\[20px\]{
  max-height: 20px;
}

.max-h-\[250px\]{
  max-height: 250px;
}

.max-h-\[300px\]{
  max-height: 300px;
}

.max-h-\[340px\]{
  max-height: 340px;
}

.max-h-\[400px\]{
  max-height: 400px;
}

.max-h-\[50px\]{
  max-height: 50px;
}

.max-h-\[60px\]{
  max-height: 60px;
}

.max-h-\[calc\(100\%_-_71px\)\]{
  max-height: calc(100% - 71px);
}

.max-h-\[calc\(100dvh-265px\)\]{
  max-height: calc(100dvh - 265px);
}

.max-h-\[calc\(100dvh_-_2rem\)\]{
  max-height: calc(100dvh - 2rem);
}

.max-h-full{
  max-height: 100%;
}

.min-h-\[100dvh\]{
  min-height: 100dvh;
}

.min-h-\[180px\]{
  min-height: 180px;
}

.min-h-\[200px\]{
  min-height: 200px;
}

.min-h-\[334px\]{
  min-height: 334px;
}

.min-h-\[40px\]{
  min-height: 40px;
}

.min-h-\[50px\]{
  min-height: 50px;
}

.min-h-\[60px\]{
  min-height: 60px;
}

.\!w-\[10px\]{
  width: 10px !important;
}

.\!w-\[12px\]{
  width: 12px !important;
}

.\!w-\[14px\]{
  width: 14px !important;
}

.\!w-\[16px\]{
  width: 16px !important;
}

.\!w-\[20px\]{
  width: 20px !important;
}

.\!w-\[22px\]{
  width: 22px !important;
}

.\!w-\[24px\]{
  width: 24px !important;
}

.\!w-\[30px\]{
  width: 30px !important;
}

.\!w-\[40px\]{
  width: 40px !important;
}

.\!w-\[60px\]{
  width: 60px !important;
}

.\!w-\[77px\]{
  width: 77px !important;
}

.\!w-\[8px\]{
  width: 8px !important;
}

.\!w-auto{
  width: auto !important;
}

.w-0{
  width: 0px;
}

.w-20{
  width: 5rem;
}

.w-24{
  width: 6rem;
}

.w-\[100dvw\]{
  width: 100dvw;
}

.w-\[110px\]{
  width: 110px;
}

.w-\[12px\]{
  width: 12px;
}

.w-\[16px\]{
  width: 16px;
}

.w-\[18px\]{
  width: 18px;
}

.w-\[200px\]{
  width: 200px;
}

.w-\[20px\]{
  width: 20px;
}

.w-\[220px\]{
  width: 220px;
}

.w-\[22px\]{
  width: 22px;
}

.w-\[240px\]{
  width: 240px;
}

.w-\[24px\]{
  width: 24px;
}

.w-\[280px\]{
  width: 280px;
}

.w-\[30px\]{
  width: 30px;
}

.w-\[340px\]{
  width: 340px;
}

.w-\[36px\]{
  width: 36px;
}

.w-\[37px\]{
  width: 37px;
}

.w-\[40px\]{
  width: 40px;
}

.w-\[480px\]{
  width: 480px;
}

.w-\[48px\]{
  width: 48px;
}

.w-\[50px\]{
  width: 50px;
}

.w-\[60\%\]{
  width: 60%;
}

.w-\[600px\]{
  width: 600px;
}

.w-\[60px\]{
  width: 60px;
}

.w-\[70px\]{
  width: 70px;
}

.w-\[77px\]{
  width: 77px;
}

.w-\[800px\]{
  width: 800px;
}

.w-\[80px\]{
  width: 80px;
}

.w-\[90\%\]{
  width: 90%;
}

.w-\[calc\(100\%-60px\)\]{
  width: calc(100% - 60px);
}

.w-fit{
  width: -moz-fit-content;
  width: fit-content;
}

.w-full{
  width: 100%;
}

.w-max{
  width: -moz-max-content;
  width: max-content;
}

.min-w-\[18px\]{
  min-width: 18px;
}

.min-w-\[20px\]{
  min-width: 20px;
}

.min-w-\[300px\]{
  min-width: 300px;
}

.min-w-\[40px\]{
  min-width: 40px;
}

.min-w-\[50px\]{
  min-width: 50px;
}

.min-w-\[60px\]{
  min-width: 60px;
}

.min-w-full{
  min-width: 100%;
}

.max-w-3xl{
  max-width: 48rem;
}

.max-w-\[1050px\]{
  max-width: 1050px;
}

.max-w-\[1070px\]{
  max-width: 1070px;
}

.max-w-\[140px\]{
  max-width: 140px;
}

.max-w-\[380px\]{
  max-width: 380px;
}

.max-w-\[400px\]{
  max-width: 400px;
}

.max-w-\[412px\]{
  max-width: 412px;
}

.max-w-\[480px\]{
  max-width: 480px;
}

.max-w-\[500px\]{
  max-width: 500px;
}

.max-w-\[518px\]{
  max-width: 518px;
}

.max-w-\[600px\]{
  max-width: 600px;
}

.max-w-\[620px\]{
  max-width: 620px;
}

.max-w-\[700px\]{
  max-width: 700px;
}

.max-w-\[800px\]{
  max-width: 800px;
}

.max-w-\[90\%\]{
  max-width: 90%;
}

.max-w-\[92\%\]{
  max-width: 92%;
}

.max-w-\[calc\(100\%-30px\)\]{
  max-width: calc(100% - 30px);
}

.max-w-\[calc\(100vw_-_2rem\)\]{
  max-width: calc(100vw - 2rem);
}

.max-w-full{
  max-width: 100%;
}

.max-w-max{
  max-width: 1324px;
}

.flex-1{
  flex: 1 1 0%;
}

.shrink-0{
  flex-shrink: 0;
}

.basis-0{
  flex-basis: 0px;
}

.border-collapse{
  border-collapse: collapse;
}

.origin-\[50\%_50\%\]{
  transform-origin: 50% 50%;
}

.translate-x-\[-50\%\]{
  --tw-translate-x: -50%;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.translate-y-\[-100\%\]{
  --tw-translate-y: -100%;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.translate-y-\[-50\%\]{
  --tw-translate-y: -50%;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.translate-y-\[50\%\]{
  --tw-translate-y: 50%;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.rotate-180{
  --tw-rotate: 180deg;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.transform{
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.cursor-grab{
  cursor: grab;
}

.cursor-pointer{
  cursor: pointer;
}

.select-none{
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.select-auto{
  -webkit-user-select: auto;
     -moz-user-select: auto;
          user-select: auto;
}

.resize-y{
  resize: vertical;
}

.resize{
  resize: both;
}

.scroll-pt-\[200px\]{
  scroll-padding-top: 200px;
}

.columns-1{
  -moz-columns: 1;
       columns: 1;
}

.columns-2{
  -moz-columns: 2;
       columns: 2;
}

.grid-cols-1{
  grid-template-columns: repeat(1, minmax(0, 1fr));
}

.grid-cols-2{
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-cols-3{
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-cols-4{
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.grid-cols-5{
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.grid-rows-\[0fr\]{
  grid-template-rows: 0fr;
}

.flex-row{
  flex-direction: row;
}

.flex-col{
  flex-direction: column;
}

.flex-col-reverse{
  flex-direction: column-reverse;
}

.flex-wrap{
  flex-wrap: wrap;
}

.items-start{
  align-items: flex-start;
}

.items-end{
  align-items: flex-end;
}

.items-center{
  align-items: center;
}

.items-baseline{
  align-items: baseline;
}

.justify-start{
  justify-content: flex-start;
}

.justify-end{
  justify-content: flex-end;
}

.justify-center{
  justify-content: center;
}

.justify-between{
  justify-content: space-between;
}

.gap-1{
  gap: 0.25rem;
}

.gap-10{
  gap: 2.5rem;
}

.gap-2{
  gap: 0.5rem;
}

.gap-3{
  gap: 0.75rem;
}

.gap-4{
  gap: 1rem;
}

.gap-5{
  gap: 1.25rem;
}

.gap-6{
  gap: 1.5rem;
}

.gap-\[10px\]{
  gap: 10px;
}

.gap-\[12px\]{
  gap: 12px;
}

.gap-\[14px\]{
  gap: 14px;
}

.gap-\[15px\]{
  gap: 15px;
}

.gap-\[16px\]{
  gap: 16px;
}

.gap-\[17px\]{
  gap: 17px;
}

.gap-\[18px\]{
  gap: 18px;
}

.gap-\[20px\]{
  gap: 20px;
}

.gap-\[24px\]{
  gap: 24px;
}

.gap-\[25px\]{
  gap: 25px;
}

.gap-\[2px\]{
  gap: 2px;
}

.gap-\[30px\]{
  gap: 30px;
}

.gap-\[32px\]{
  gap: 32px;
}

.gap-\[36px\]{
  gap: 36px;
}

.gap-\[38px\]{
  gap: 38px;
}

.gap-\[3px\]{
  gap: 3px;
}

.gap-\[40px\]{
  gap: 40px;
}

.gap-\[48px\]{
  gap: 48px;
}

.gap-\[50px\]{
  gap: 50px;
}

.gap-\[5px\]{
  gap: 5px;
}

.gap-\[6px\]{
  gap: 6px;
}

.gap-\[8px\]{
  gap: 8px;
}

.gap-x-2{
  -moz-column-gap: 0.5rem;
       column-gap: 0.5rem;
}

.gap-x-4{
  -moz-column-gap: 1rem;
       column-gap: 1rem;
}

.gap-x-\[140px\]{
  -moz-column-gap: 140px;
       column-gap: 140px;
}

.gap-x-\[15px\]{
  -moz-column-gap: 15px;
       column-gap: 15px;
}

.gap-x-\[30px\]{
  -moz-column-gap: 30px;
       column-gap: 30px;
}

.gap-y-2{
  row-gap: 0.5rem;
}

.gap-y-4{
  row-gap: 1rem;
}

.gap-y-5{
  row-gap: 1.25rem;
}

.gap-y-8{
  row-gap: 2rem;
}

.gap-y-\[30px\]{
  row-gap: 30px;
}

.self-start{
  align-self: flex-start;
}

.self-center{
  align-self: center;
}

.self-stretch{
  align-self: stretch;
}

.overflow-auto{
  overflow: auto;
}

.overflow-hidden{
  overflow: hidden;
}

.overflow-visible{
  overflow: visible;
}

.overflow-y-auto{
  overflow-y: auto;
}

.overflow-x-hidden{
  overflow-x: hidden;
}

.scroll-smooth{
  scroll-behavior: smooth;
}

.whitespace-nowrap{
  white-space: nowrap;
}

.break-all{
  word-break: break-all;
}

.rounded-\[100px\]{
  border-radius: 100px;
}

.rounded-\[10px\]{
  border-radius: 10px;
}

.rounded-\[16px\]{
  border-radius: 16px;
}

.rounded-\[20px\]{
  border-radius: 20px;
}

.rounded-\[24px\]{
  border-radius: 24px;
}

.rounded-\[25px\]{
  border-radius: 25px;
}

.rounded-\[4px\]{
  border-radius: 4px;
}

.rounded-\[50px\]{
  border-radius: 50px;
}

.rounded-\[5px\]{
  border-radius: 5px;
}

.rounded-full{
  border-radius: 9999px;
}

.rounded-sm{
  border-radius: 0.125rem;
}

.rounded-b-none{
  border-bottom-right-radius: 0px;
  border-bottom-left-radius: 0px;
}

.rounded-e-\[5px\]{
  border-start-end-radius: 5px;
  border-end-end-radius: 5px;
}

.rounded-s-\[5px\]{
  border-start-start-radius: 5px;
  border-end-start-radius: 5px;
}

.rounded-bl-\[10px\]{
  border-bottom-left-radius: 10px;
}

.rounded-bl-\[5px\]{
  border-bottom-left-radius: 5px;
}

.rounded-br-\[100px\]{
  border-bottom-right-radius: 100px;
}

.rounded-br-\[10px\]{
  border-bottom-right-radius: 10px;
}

.rounded-br-\[20px\]{
  border-bottom-right-radius: 20px;
}

.rounded-br-\[50px\]{
  border-bottom-right-radius: 50px;
}

.rounded-br-\[5px\]{
  border-bottom-right-radius: 5px;
}

.rounded-tl-\[100px\]{
  border-top-left-radius: 100px;
}

.rounded-tl-\[20px\]{
  border-top-left-radius: 20px;
}

.rounded-tl-\[50px\]{
  border-top-left-radius: 50px;
}

.rounded-tl-\[5px\]{
  border-top-left-radius: 5px;
}

.rounded-tr-\[0px\]{
  border-top-right-radius: 0px;
}

.rounded-tr-\[10px\]{
  border-top-right-radius: 10px;
}

.rounded-tr-\[5px\]{
  border-top-right-radius: 5px;
}

.border{
  border-width: 1px;
}

.border-0{
  border-width: 0px;
}

.border-\[1px\]{
  border-width: 1px;
}

.border-\[2px\]{
  border-width: 2px;
}

.border-b-\[0\]{
  border-bottom-width: 0;
}

.border-l-\[15px\]{
  border-left-width: 15px;
}

.border-r-\[15px\]{
  border-right-width: 15px;
}

.border-t{
  border-top-width: 1px;
}

.border-t-\[26px\]{
  border-top-width: 26px;
}

.border-solid{
  border-style: solid;
}

.border-dashed{
  border-style: dashed;
}

.border-none{
  border-style: none;
}

.border-black{
  --tw-border-opacity: 1;
  border-color: rgb(0 0 0 / var(--tw-border-opacity, 1));
}

.border-gray-600{
  --tw-border-opacity: 1;
  border-color: rgb(75 85 99 / var(--tw-border-opacity, 1));
}

.border-green{
  --tw-border-opacity: 1;
  border-color: rgb(0 132 61 / var(--tw-border-opacity, 1));
}

.border-green-dark{
  --tw-border-opacity: 1;
  border-color: rgb(27 52 49 / var(--tw-border-opacity, 1));
}

.border-green-link{
  --tw-border-opacity: 1;
  border-color: rgb(0 173 89 / var(--tw-border-opacity, 1));
}

.border-grey-border{
  --tw-border-opacity: 1;
  border-color: rgb(197 211 208 / var(--tw-border-opacity, 1));
}

.border-grey-light{
  --tw-border-opacity: 1;
  border-color: rgb(245 247 246 / var(--tw-border-opacity, 1));
}

.border-transparent{
  border-color: transparent;
}

.border-white{
  --tw-border-opacity: 1;
  border-color: rgb(255 255 255 / var(--tw-border-opacity, 1));
}

.border-b-\[transparent\]{
  border-bottom-color: transparent;
}

.border-l-\[transparent\]{
  border-left-color: transparent;
}

.border-r-\[transparent\]{
  border-right-color: transparent;
}

.border-t-grey-border{
  --tw-border-opacity: 1;
  border-top-color: rgb(197 211 208 / var(--tw-border-opacity, 1));
}

.border-t-white{
  --tw-border-opacity: 1;
  border-top-color: rgb(255 255 255 / var(--tw-border-opacity, 1));
}

.\!bg-orange{
  --tw-bg-opacity: 1 !important;
  background-color: rgb(195 83 9 / var(--tw-bg-opacity, 1)) !important;
}

.bg-\[\#00AD59\]{
  --tw-bg-opacity: 1;
  background-color: rgb(0 173 89 / var(--tw-bg-opacity, 1));
}

.bg-\[\#122220\]{
  --tw-bg-opacity: 1;
  background-color: rgb(18 34 32 / var(--tw-bg-opacity, 1));
}

.bg-\[\#182F2C\]{
  --tw-bg-opacity: 1;
  background-color: rgb(24 47 44 / var(--tw-bg-opacity, 1));
}

.bg-\[\#292929\]{
  --tw-bg-opacity: 1;
  background-color: rgb(41 41 41 / var(--tw-bg-opacity, 1));
}

.bg-\[\#353841\]{
  --tw-bg-opacity: 1;
  background-color: rgb(53 56 65 / var(--tw-bg-opacity, 1));
}

.bg-\[\#E9EEEB\]{
  --tw-bg-opacity: 1;
  background-color: rgb(233 238 235 / var(--tw-bg-opacity, 1));
}

.bg-\[\#FAFCFB\]{
  --tw-bg-opacity: 1;
  background-color: rgb(250 252 251 / var(--tw-bg-opacity, 1));
}

.bg-\[\#f5f7f6\]{
  --tw-bg-opacity: 1;
  background-color: rgb(245 247 246 / var(--tw-bg-opacity, 1));
}

.bg-\[\#fafafa\]{
  --tw-bg-opacity: 1;
  background-color: rgb(250 250 250 / var(--tw-bg-opacity, 1));
}

.bg-\[rgba\(0\2c 0\2c 0\2c 0\.3\)\]{
  background-color: rgba(0,0,0,0.3);
}

.bg-\[rgba\(27\2c 52\2c 49\2c 0\.7\)\]{
  background-color: rgba(27,52,49,0.7);
}

.bg-\[transparent\]{
  background-color: transparent;
}

.bg-black{
  --tw-bg-opacity: 1;
  background-color: rgb(0 0 0 / var(--tw-bg-opacity, 1));
}

.bg-black\/30{
  background-color: rgb(0 0 0 / 0.3);
}

.bg-black\/\[0\.3\]{
  background-color: rgb(0 0 0 / 0.3);
}

.bg-gray-600{
  --tw-bg-opacity: 1;
  background-color: rgb(75 85 99 / var(--tw-bg-opacity, 1));
}

.bg-green{
  --tw-bg-opacity: 1;
  background-color: rgb(0 132 61 / var(--tw-bg-opacity, 1));
}

.bg-green-bright{
  --tw-bg-opacity: 1;
  background-color: rgb(8 181 94 / var(--tw-bg-opacity, 1));
}

.bg-green-dark{
  --tw-bg-opacity: 1;
  background-color: rgb(27 52 49 / var(--tw-bg-opacity, 1));
}

.bg-green-darkest{
  --tw-bg-opacity: 1;
  background-color: rgb(21 40 37 / var(--tw-bg-opacity, 1));
}

.bg-green-hover{
  --tw-bg-opacity: 1;
  background-color: rgb(0 106 49 / var(--tw-bg-opacity, 1));
}

.bg-green-link{
  --tw-bg-opacity: 1;
  background-color: rgb(0 173 89 / var(--tw-bg-opacity, 1));
}

.bg-green-pale{
  --tw-bg-opacity: 1;
  background-color: rgb(192 234 213 / var(--tw-bg-opacity, 1));
}

.bg-green-transparent{
  background-color: rgba(0, 132, 61, 0.09);
}

.bg-grey-border{
  --tw-bg-opacity: 1;
  background-color: rgb(197 211 208 / var(--tw-bg-opacity, 1));
}

.bg-grey-light{
  --tw-bg-opacity: 1;
  background-color: rgb(245 247 246 / var(--tw-bg-opacity, 1));
}

.bg-transparent{
  background-color: transparent;
}

.bg-white{
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
}

.bg-white-lily{
  --tw-bg-opacity: 1;
  background-color: rgb(233 238 235 / var(--tw-bg-opacity, 1));
}

.bg-white-off{
  --tw-bg-opacity: 1;
  background-color: rgb(250 250 250 / var(--tw-bg-opacity, 1));
}

.bg-\[linear-gradient\(90deg\2c _rgba\(19\2c 38\2c 35\2c 0\.8\)_0\%\2c _rgba\(19\2c 38\2c 35\2c 0\.7\)_25\%\2c _rgba\(19\2c 38\2c 35\2c 0\)_100\%\)\]{
  background-image: linear-gradient(90deg, rgba(19,38,35,0.8) 0%, rgba(19,38,35,0.7) 25%, rgba(19,38,35,0) 100%);
}

.bg-\[url\(\'\/dist\/images\/bitmap\/graphics\/hero-bg-dark-sml\.png\'\)\]{
  background-image: url('/dist/images/bitmap/graphics/hero-bg-dark-sml.png');
}

.bg-\[url\(\'\/dist\/images\/bitmap\/graphics\/hero-bg-dark\.png\'\)\]{
  background-image: url('/dist/images/bitmap/graphics/hero-bg-dark.png');
}

.bg-cover{
  background-size: cover;
}

.bg-center{
  background-position: center;
}

.bg-no-repeat{
  background-repeat: no-repeat;
}

.object-contain{
  -o-object-fit: contain;
     object-fit: contain;
}

.object-cover{
  -o-object-fit: cover;
     object-fit: cover;
}

.object-center{
  -o-object-position: center;
     object-position: center;
}

.p-0{
  padding: 0px;
}

.p-10{
  padding: 2.5rem;
}

.p-2{
  padding: 0.5rem;
}

.p-8{
  padding: 2rem;
}

.p-\[10px\]{
  padding: 10px;
}

.p-\[15px\]{
  padding: 15px;
}

.p-\[17px_12px_17px_40px\]{
  padding: 17px 12px 17px 40px;
}

.p-\[20px\]{
  padding: 20px;
}

.p-\[24px\]{
  padding: 24px;
}

.p-\[25px_60px_45px_28px\]{
  padding: 25px 60px 45px 28px;
}

.p-\[30px_28px_20px_22px\]{
  padding: 30px 28px 20px 22px;
}

.p-\[3px\]{
  padding: 3px;
}

.p-\[4px\]{
  padding: 4px;
}

.px-3{
  padding-left: 0.75rem;
  padding-right: 0.75rem;
}

.px-4{
  padding-left: 1rem;
  padding-right: 1rem;
}

.px-5{
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

.px-7{
  padding-left: 1.75rem;
  padding-right: 1.75rem;
}

.px-\[10px\]{
  padding-left: 10px;
  padding-right: 10px;
}

.px-\[15px\]{
  padding-left: 15px;
  padding-right: 15px;
}

.px-\[18px\]{
  padding-left: 18px;
  padding-right: 18px;
}

.px-\[20px\]{
  padding-left: 20px;
  padding-right: 20px;
}

.px-\[21px\]{
  padding-left: 21px;
  padding-right: 21px;
}

.px-\[25px\]{
  padding-left: 25px;
  padding-right: 25px;
}

.px-\[30px\]{
  padding-left: 30px;
  padding-right: 30px;
}

.px-\[40px\]{
  padding-left: 40px;
  padding-right: 40px;
}

.px-\[45px\]{
  padding-left: 45px;
  padding-right: 45px;
}

.py-2{
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.py-3{
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}

.py-\[10px\]{
  padding-top: 10px;
  padding-bottom: 10px;
}

.py-\[12px\]{
  padding-top: 12px;
  padding-bottom: 12px;
}

.py-\[13px\]{
  padding-top: 13px;
  padding-bottom: 13px;
}

.py-\[18px\]{
  padding-top: 18px;
  padding-bottom: 18px;
}

.py-\[20px\]{
  padding-top: 20px;
  padding-bottom: 20px;
}

.py-\[25px\]{
  padding-top: 25px;
  padding-bottom: 25px;
}

.py-\[26px\]{
  padding-top: 26px;
  padding-bottom: 26px;
}

.py-\[30px\]{
  padding-top: 30px;
  padding-bottom: 30px;
}

.py-\[5px\]{
  padding-top: 5px;
  padding-bottom: 5px;
}

.py-\[60px\]{
  padding-top: 60px;
  padding-bottom: 60px;
}

.py-\[7px\]{
  padding-top: 7px;
  padding-bottom: 7px;
}

.py-\[80px\]{
  padding-top: 80px;
  padding-bottom: 80px;
}

.py-\[8px\]{
  padding-top: 8px;
  padding-bottom: 8px;
}

.py-\[9px\]{
  padding-top: 9px;
  padding-bottom: 9px;
}

.pb-3{
  padding-bottom: 0.75rem;
}

.pb-\[10px\]{
  padding-bottom: 10px;
}

.pb-\[120px\]{
  padding-bottom: 120px;
}

.pb-\[12px\]{
  padding-bottom: 12px;
}

.pb-\[140px\]{
  padding-bottom: 140px;
}

.pb-\[15px\]{
  padding-bottom: 15px;
}

.pb-\[160px\]{
  padding-bottom: 160px;
}

.pb-\[16px\]{
  padding-bottom: 16px;
}

.pb-\[17px\]{
  padding-bottom: 17px;
}

.pb-\[18px\]{
  padding-bottom: 18px;
}

.pb-\[200px\]{
  padding-bottom: 200px;
}

.pb-\[20px\]{
  padding-bottom: 20px;
}

.pb-\[21px\]{
  padding-bottom: 21px;
}

.pb-\[220px\]{
  padding-bottom: 220px;
}

.pb-\[22px\]{
  padding-bottom: 22px;
}

.pb-\[24px\]{
  padding-bottom: 24px;
}

.pb-\[28px\]{
  padding-bottom: 28px;
}

.pb-\[30px\]{
  padding-bottom: 30px;
}

.pb-\[32px\]{
  padding-bottom: 32px;
}

.pb-\[35px\]{
  padding-bottom: 35px;
}

.pb-\[36px\]{
  padding-bottom: 36px;
}

.pb-\[40px\]{
  padding-bottom: 40px;
}

.pb-\[48px\]{
  padding-bottom: 48px;
}

.pb-\[50px\]{
  padding-bottom: 50px;
}

.pb-\[55px\]{
  padding-bottom: 55px;
}

.pb-\[56px\]{
  padding-bottom: 56px;
}

.pb-\[60px\]{
  padding-bottom: 60px;
}

.pb-\[72px\]{
  padding-bottom: 72px;
}

.pb-\[80px\]{
  padding-bottom: 80px;
}

.pb-\[84px\]{
  padding-bottom: 84px;
}

.pb-\[8px\]{
  padding-bottom: 8px;
}

.pl-\[20px\]{
  padding-left: 20px;
}

.pl-\[24px\]{
  padding-left: 24px;
}

.pl-\[46px\]{
  padding-left: 46px;
}

.pl-\[50px\]{
  padding-left: 50px;
}

.pr-\[104px\]{
  padding-right: 104px;
}

.pr-\[14px\]{
  padding-right: 14px;
}

.pr-\[20px\]{
  padding-right: 20px;
}

.pr-\[40px\]{
  padding-right: 40px;
}

.pr-\[8px\]{
  padding-right: 8px;
}

.pt-2{
  padding-top: 0.5rem;
}

.pt-4{
  padding-top: 1rem;
}

.pt-\[100px\]{
  padding-top: 100px;
}

.pt-\[105px\]{
  padding-top: 105px;
}

.pt-\[10px\]{
  padding-top: 10px;
}

.pt-\[110px\]{
  padding-top: 110px;
}

.pt-\[120px\]{
  padding-top: 120px;
}

.pt-\[12px\]{
  padding-top: 12px;
}

.pt-\[140px\]{
  padding-top: 140px;
}

.pt-\[200px\]{
  padding-top: 200px;
}

.pt-\[20px\]{
  padding-top: 20px;
}

.pt-\[22px\]{
  padding-top: 22px;
}

.pt-\[24px\]{
  padding-top: 24px;
}

.pt-\[26px\]{
  padding-top: 26px;
}

.pt-\[30px\]{
  padding-top: 30px;
}

.pt-\[35px\]{
  padding-top: 35px;
}

.pt-\[40px\]{
  padding-top: 40px;
}

.pt-\[45px\]{
  padding-top: 45px;
}

.pt-\[46px\]{
  padding-top: 46px;
}

.pt-\[48px\]{
  padding-top: 48px;
}

.pt-\[55px\]{
  padding-top: 55px;
}

.pt-\[56px\]{
  padding-top: 56px;
}

.pt-\[5px\]{
  padding-top: 5px;
}

.pt-\[60px\]{
  padding-top: 60px;
}

.pt-\[80px\]{
  padding-top: 80px;
}

.pt-\[84px\]{
  padding-top: 84px;
}

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

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

.font-guardian{
  font-family: Guardian Sans, sans-serif;
}

.font-sans{
  font-family: Open Sans, sans-serif;
}

.text-\[0\.75rem\]{
  font-size: 0.75rem;
}

.text-\[12px\]{
  font-size: 12px;
}

.text-\[14px\]{
  font-size: 14px;
}

.text-\[15px\]{
  font-size: 15px;
}

.text-\[16px\]{
  font-size: 16px;
}

.text-\[18px\]{
  font-size: 18px;
}

.text-\[20px\]{
  font-size: 20px;
}

.text-\[21px\]{
  font-size: 21px;
}

.text-\[22px\]{
  font-size: 22px;
}

.text-\[24px\]{
  font-size: 24px;
}

.text-\[28px\]{
  font-size: 28px;
}

.text-\[32px\]{
  font-size: 32px;
}

.text-\[34px\]{
  font-size: 34px;
}

.text-\[36px\]{
  font-size: 36px;
}

.text-\[44px\]{
  font-size: 44px;
}

.text-base{
  font-size: 16px;
  line-height: 24px;
}

.font-\[400\]{
  font-weight: 400;
}

.font-bold{
  font-weight: 700;
}

.font-semibold{
  font-weight: 600;
}

.lowercase{
  text-transform: lowercase;
}

.italic{
  font-style: italic;
}

.leading-\[16px\]{
  line-height: 16px;
}

.leading-\[20px\]{
  line-height: 20px;
}

.leading-\[21px\]{
  line-height: 21px;
}

.leading-\[22px\]{
  line-height: 22px;
}

.leading-\[24px\]{
  line-height: 24px;
}

.leading-\[25px\]{
  line-height: 25px;
}

.leading-\[26px\]{
  line-height: 26px;
}

.leading-\[30px\]{
  line-height: 30px;
}

.leading-\[32px\]{
  line-height: 32px;
}

.leading-\[34px\]{
  line-height: 34px;
}

.leading-\[36px\]{
  line-height: 36px;
}

.leading-\[38px\]{
  line-height: 38px;
}

.leading-\[40px\]{
  line-height: 40px;
}

.leading-\[48px\]{
  line-height: 48px;
}

.leading-\[50px\]{
  line-height: 50px;
}

.tracking-\[-0\.5px\]{
  letter-spacing: -0.5px;
}

.\!text-white{
  --tw-text-opacity: 1 !important;
  color: rgb(255 255 255 / var(--tw-text-opacity, 1)) !important;
}

.text-\[\#07AA59\]{
  --tw-text-opacity: 1;
  color: rgb(7 170 89 / var(--tw-text-opacity, 1));
}

.text-\[\#111111\]{
  --tw-text-opacity: 1;
  color: rgb(17 17 17 / var(--tw-text-opacity, 1));
}

.text-\[red\]{
  --tw-text-opacity: 1;
  color: rgb(255 0 0 / var(--tw-text-opacity, 1));
}

.text-black{
  --tw-text-opacity: 1;
  color: rgb(0 0 0 / var(--tw-text-opacity, 1));
}

.text-black-text{
  --tw-text-opacity: 1;
  color: rgb(51 51 51 / var(--tw-text-opacity, 1));
}

.text-green{
  --tw-text-opacity: 1;
  color: rgb(0 132 61 / var(--tw-text-opacity, 1));
}

.text-green-bright{
  --tw-text-opacity: 1;
  color: rgb(8 181 94 / var(--tw-text-opacity, 1));
}

.text-green-dark{
  --tw-text-opacity: 1;
  color: rgb(27 52 49 / var(--tw-text-opacity, 1));
}

.text-green-darkish{
  --tw-text-opacity: 1;
  color: rgb(0 92 45 / var(--tw-text-opacity, 1));
}

.text-green-link{
  --tw-text-opacity: 1;
  color: rgb(0 173 89 / var(--tw-text-opacity, 1));
}

.text-green-pale{
  --tw-text-opacity: 1;
  color: rgb(192 234 213 / var(--tw-text-opacity, 1));
}

.text-red-800{
  --tw-text-opacity: 1;
  color: rgb(153 27 27 / var(--tw-text-opacity, 1));
}

.text-white{
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity, 1));
}

.placeholder-black::-moz-placeholder{
  --tw-placeholder-opacity: 1;
  color: rgb(0 0 0 / var(--tw-placeholder-opacity, 1));
}

.placeholder-black::placeholder{
  --tw-placeholder-opacity: 1;
  color: rgb(0 0 0 / var(--tw-placeholder-opacity, 1));
}

.placeholder-green-dark::-moz-placeholder{
  --tw-placeholder-opacity: 1;
  color: rgb(27 52 49 / var(--tw-placeholder-opacity, 1));
}

.placeholder-green-dark::placeholder{
  --tw-placeholder-opacity: 1;
  color: rgb(27 52 49 / var(--tw-placeholder-opacity, 1));
}

.opacity-0{
  opacity: 0;
}

.opacity-100{
  opacity: 1;
}

.opacity-30{
  opacity: 0.3;
}

.opacity-90{
  opacity: 0.9;
}

.opacity-\[30\%\]{
  opacity: 30%;
}

.shadow{
  --tw-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
  --tw-shadow-colored: 0 1px 3px 0 var(--tw-shadow-color), 0 1px 2px -1px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.shadow-2xl{
  --tw-shadow: 0 25px 50px -12px rgb(0 0 0 / 0.25);
  --tw-shadow-colored: 0 25px 50px -12px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.shadow-\[0_0_20px_0px_rgba\(0\2c 0\2c 0\2c 0\.20\)\]{
  --tw-shadow: 0 0 20px 0px rgba(0,0,0,0.20);
  --tw-shadow-colored: 0 0 20px 0px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.shadow-\[0_4px_10px_0px_rgba\(0\2c 0\2c 0\2c 0\.10\)\]{
  --tw-shadow: 0 4px 10px 0px rgba(0,0,0,0.10);
  --tw-shadow-colored: 0 4px 10px 0px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.shadow-\[0_8px_8px_rgba\(0\2c 0\2c 0\2c 0\.25\)\]{
  --tw-shadow: 0 8px 8px rgba(0,0,0,0.25);
  --tw-shadow-colored: 0 8px 8px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.shadow-\[2px_2px_8px_0px_rgba\(0\2c 0\2c 0\2c 0\.15\)\]{
  --tw-shadow: 2px 2px 8px 0px rgba(0,0,0,0.15);
  --tw-shadow-colored: 2px 2px 8px 0px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.shadow-lg{
  --tw-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --tw-shadow-colored: 0 10px 15px -3px var(--tw-shadow-color), 0 4px 6px -4px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.shadow-md{
  --tw-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --tw-shadow-colored: 0 4px 6px -1px var(--tw-shadow-color), 0 2px 4px -2px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.shadow-xl{
  --tw-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
  --tw-shadow-colored: 0 20px 25px -5px var(--tw-shadow-color), 0 8px 10px -6px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.outline{
  outline-style: solid;
}

.filter{
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}

.transition{
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, -webkit-backdrop-filter;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-backdrop-filter;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.transition-\[grid-template-rows\2c padding-bottom\]{
  transition-property: grid-template-rows,padding-bottom;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.transition-\[grid-template-rows\]{
  transition-property: grid-template-rows;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.transition-all{
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.transition-colors{
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.transition-opacity{
  transition-property: opacity;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.transition-shadow{
  transition-property: box-shadow;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.transition-transform{
  transition-property: transform;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.delay-100{
  transition-delay: 100ms;
}

.duration-100{
  transition-duration: 100ms;
}

.duration-300{
  transition-duration: 300ms;
}

.duration-500{
  transition-duration: 500ms;
}

.duration-\[300ms\]{
  transition-duration: 300ms;
}

.ease-in-out{
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

.content-visibility-auto{
  content-visibility: auto;
}

/* Tailwind can't generate from dynamic class names... */

/* put them in safelist in the config file */

.prose {
  --tw-prose-bullets: black;
  --tw-prose-counters: black;
  --tw-prose-body: black;
  max-width: unset;
}

.prose a.c-btn {
  text-decoration: none;
}

.umbraco-forms-hidden{
  display: none;
}

mark{
  --tw-bg-opacity: 1;
  background-color: rgb(149 252 200 / var(--tw-bg-opacity, 1));
}

strong{
  font-weight: 600;
}

.c-accordion-item:hover path:first-child{
  fill: #00843D;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.green-graphics-dark{
  --tw-bg-opacity: 1;
  background-color: rgb(27 52 49 / var(--tw-bg-opacity, 1));
  background-image: url('../images/bitmap/graphics/dark-green-graphic.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.green-graphics-dark .rt-text p{
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity, 1));
}

.green-graphics-light{
  background-image: url('../images/bitmap/graphics/light-green-graphic.png');
  background-size: cover;
  background-position: bottom;
  background-repeat: no-repeat;
}

.timeline-green{
  background-image: url('../images/bitmap/graphics/light-green-graphic.png');
  background-size: cover;
  background-position: bottom;
  background-repeat: no-repeat;
}

.timeline-grey{
  background-image: url('../images/bitmap/graphics/grey-graphic.png');
  background-size: cover;
  background-position: top;
  background-repeat: no-repeat;
}

.u-link-effect::before{
  position: absolute;
  left: 0px;
  right: 0px;
  bottom: -26px;
  display: block;
  height: 3px;
  width: 0%;
  --tw-bg-opacity: 1;
  background-color: rgb(27 52 49 / var(--tw-bg-opacity, 1));
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
  --tw-content: '';
  content: var(--tw-content);
}

.u-link-effect .rt-text p::before{
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity, 1));
}

.mixitup-control:not([type='checkbox']){
  display: flex;
  height: 30px;
  width: 30px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  border-width: 1px;
  --tw-border-opacity: 1;
  border-color: rgb(0 132 61 / var(--tw-border-opacity, 1));
  --tw-bg-opacity: 1;
  background-color: rgb(233 238 235 / var(--tw-bg-opacity, 1));
  font-size: 15px;
  font-weight: 600;
  line-height: 15px;
  --tw-text-opacity: 1;
  color: rgb(0 132 61 / var(--tw-text-opacity, 1));
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.mixitup-control:not([type='checkbox']):hover{
  --tw-bg-opacity: 1;
  background-color: rgb(180 197 187 / var(--tw-bg-opacity, 1));
}

.mixitup-control-active:not([type='checkbox'], label) .c-solid-button,.mixitup-control-active:not([type='checkbox'], label) .c-solid-button-small{
  --tw-text-opacity: 1;
  color: rgb(0 132 61 / var(--tw-text-opacity, 1));
}

.mixitup-control-active:not([type='checkbox'], label) .c-solid-button:hover,.mixitup-control-active:not([type='checkbox'], label) .c-solid-button-small:hover{
  --tw-bg-opacity: 1;
  background-color: rgb(192 234 213 / var(--tw-bg-opacity, 1));
}

.mixitup-control-active:not([type='checkbox'], label) .c-solid-button,.mixitup-control-active:not([type='checkbox'], label) .c-solid-button-small{
  --tw-text-opacity: 1;
  color: rgb(0 132 61 / var(--tw-text-opacity, 1));
}

.mixitup-control-active:not([type='checkbox'], label) .c-solid-button:hover,.mixitup-control-active:not([type='checkbox'], label) .c-solid-button-small:hover{
  --tw-bg-opacity: 1;
  background-color: rgb(192 234 213 / var(--tw-bg-opacity, 1));
}

.mixitup-control-active:not([type='checkbox'], label) .c-solid-button,.mixitup-control-active:not([type='checkbox'], label) .c-solid-button-small {
  background-color: #fff;
}

.mixitup-control-active:not([type='checkbox'], label) .c-outlined-button,.mixitup-control-active:not([type='checkbox'], label) .c-outlined-button-small{
  --tw-border-opacity: 1;
  border-color: rgb(255 255 255 / var(--tw-border-opacity, 1));
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity, 1));
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.mixitup-control-active:not([type='checkbox'], label) .c-outlined-button:hover,.mixitup-control-active:not([type='checkbox'], label) .c-outlined-button-small:hover{
  --tw-border-opacity: 1;
  border-color: rgb(192 234 213 / var(--tw-border-opacity, 1));
  --tw-text-opacity: 1;
  color: rgb(192 234 213 / var(--tw-text-opacity, 1));
}

.mixitup-control-active:not([type='checkbox'], label) .c-outlined-button,.mixitup-control-active:not([type='checkbox'], label) .c-outlined-button-small{
  --tw-border-opacity: 1;
  border-color: rgb(255 255 255 / var(--tw-border-opacity, 1));
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity, 1));
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.mixitup-control-active:not([type='checkbox'], label) .c-outlined-button:hover,.mixitup-control-active:not([type='checkbox'], label) .c-outlined-button-small:hover{
  --tw-border-opacity: 1;
  border-color: rgb(192 234 213 / var(--tw-border-opacity, 1));
  --tw-text-opacity: 1;
  color: rgb(192 234 213 / var(--tw-text-opacity, 1));
}

.mixitup-control-active:not([type='checkbox'], label){
  --tw-bg-opacity: 1;
  background-color: rgb(0 132 61 / var(--tw-bg-opacity, 1));
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity, 1));
}

.mixitup-control-active:not([type='checkbox'], label) .rt-text h2,.mixitup-control-active:not([type='checkbox'], label) .rt-text h3,.mixitup-control-active:not([type='checkbox'], label) .rt-text h4,.mixitup-control-active:not([type='checkbox'], label) .rt-text h5,.mixitup-control-active:not([type='checkbox'], label) .rt-text p,.mixitup-control-active:not([type='checkbox'], label) .rt-text .intro-p,.mixitup-control-active:not([type='checkbox'], label) .rt-text ul,.mixitup-control-active:not([type='checkbox'], label) .rt-text table,.mixitup-control-active:not([type='checkbox'], label) .rt-text th,.mixitup-control-active:not([type='checkbox'], label) .rt-text td,.mixitup-control-active:not([type='checkbox'], label) .rt-text strong,.mixitup-control-active:not([type='checkbox'], label) .rt-text--sm p,.mixitup-control-active:not([type='checkbox'], label) .rt-text a:not(.c-btn),.mixitup-control-active:not([type='checkbox'], label) .rt-text p img,.mixitup-control-active:not([type='checkbox'], label) .rt-text--sm a:not(.c-btn){
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity, 1));
}

.mixitup-control-active:not([type='checkbox'], label) .rt-text a:not(.c-btn),.mixitup-control-active:not([type='checkbox'], label) .rt-text--sm a:not(.c-btn){
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity, 1));
}

.mixitup-control-active:not([type='checkbox'], label) .rt-text a:not(.c-btn):hover,.mixitup-control-active:not([type='checkbox'], label) .rt-text--sm a:not(.c-btn):hover{
  color: rgba(255, 255, 255, 0.7);
}

.mixitup-control-active:not([type='checkbox'], label) .rt-text a:not(.c-btn),.mixitup-control-active:not([type='checkbox'], label) .rt-text--sm a:not(.c-btn){
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity, 1));
}

.mixitup-control-active:not([type='checkbox'], label) .rt-text a:not(.c-btn):hover,.mixitup-control-active:not([type='checkbox'], label) .rt-text--sm a:not(.c-btn):hover{
  color: rgba(255, 255, 255, 0.7);
}

.mixitup-control-active:not([type='checkbox'], label):hover .c-solid-button,.mixitup-control-active:not([type='checkbox'], label):hover .c-solid-button-small{
  --tw-text-opacity: 1;
  color: rgb(0 132 61 / var(--tw-text-opacity, 1));
}

.mixitup-control-active:not([type='checkbox'], label):hover .c-solid-button:hover,.mixitup-control-active:not([type='checkbox'], label):hover .c-solid-button-small:hover{
  --tw-bg-opacity: 1;
  background-color: rgb(192 234 213 / var(--tw-bg-opacity, 1));
}

.mixitup-control-active:not([type='checkbox'], label):hover .c-solid-button,.mixitup-control-active:not([type='checkbox'], label):hover .c-solid-button-small{
  --tw-text-opacity: 1;
  color: rgb(0 132 61 / var(--tw-text-opacity, 1));
}

.mixitup-control-active:not([type='checkbox'], label):hover .c-solid-button:hover,.mixitup-control-active:not([type='checkbox'], label):hover .c-solid-button-small:hover{
  --tw-bg-opacity: 1;
  background-color: rgb(192 234 213 / var(--tw-bg-opacity, 1));
}

.mixitup-control-active:not([type='checkbox'], label):hover .c-solid-button,.mixitup-control-active:not([type='checkbox'], label):hover .c-solid-button-small {
  background-color: #fff;
}

.mixitup-control-active:not([type='checkbox'], label):hover .c-outlined-button,.mixitup-control-active:not([type='checkbox'], label):hover .c-outlined-button-small{
  --tw-border-opacity: 1;
  border-color: rgb(255 255 255 / var(--tw-border-opacity, 1));
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity, 1));
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.mixitup-control-active:not([type='checkbox'], label):hover .c-outlined-button:hover,.mixitup-control-active:not([type='checkbox'], label):hover .c-outlined-button-small:hover{
  --tw-border-opacity: 1;
  border-color: rgb(192 234 213 / var(--tw-border-opacity, 1));
  --tw-text-opacity: 1;
  color: rgb(192 234 213 / var(--tw-text-opacity, 1));
}

.mixitup-control-active:not([type='checkbox'], label):hover .c-outlined-button,.mixitup-control-active:not([type='checkbox'], label):hover .c-outlined-button-small{
  --tw-border-opacity: 1;
  border-color: rgb(255 255 255 / var(--tw-border-opacity, 1));
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity, 1));
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.mixitup-control-active:not([type='checkbox'], label):hover .c-outlined-button:hover,.mixitup-control-active:not([type='checkbox'], label):hover .c-outlined-button-small:hover{
  --tw-border-opacity: 1;
  border-color: rgb(192 234 213 / var(--tw-border-opacity, 1));
  --tw-text-opacity: 1;
  color: rgb(192 234 213 / var(--tw-text-opacity, 1));
}

.mixitup-control-active:not([type='checkbox'], label):hover{
  --tw-bg-opacity: 1;
  background-color: rgb(0 132 61 / var(--tw-bg-opacity, 1));
}

.mixitup-control-disabled:not([type='checkbox']){
  pointer-events: none;
  --tw-border-opacity: 1;
  border-color: rgb(197 211 208 / var(--tw-border-opacity, 1));
  --tw-text-opacity: 1;
  color: rgb(197 211 208 / var(--tw-text-opacity, 1));
}

.mixitup-control-truncation-marker{
  border-width: 0px;
  background-color: transparent;
  --tw-text-opacity: 1;
  color: rgb(0 0 0 / var(--tw-text-opacity, 1));
}

.mixitup-control-prev{
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
  background-position: center;
  background-repeat: no-repeat;
  color: transparent !important;
  background-image: url('data:image/svg+xml,&lt;svg width="18px" height="18px" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="%2300843D" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"&gt;&lt;path d="M15 18l-6-6 6-6"/&gt;&lt;/svg&gt;');
}

.mixitup-control-prev.mixitup-control-disabled {
  background-image: url('data:image/svg+xml,&lt;svg width="18px" height="18px" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="%23C5D3D0" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"&gt;&lt;path d="M15 18l-6-6 6-6"/&gt;&lt;/svg&gt;') !important;
}

.mixitup-control-next{
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
  background-position: center;
  background-repeat: no-repeat;
  color: transparent !important;
  background-image: url('data:image/svg+xml,&lt;svg width="18px" height="18px" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="%2300843D" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"&gt;&lt;path d="M9 18l6-6-6-6"/&gt;&lt;/svg&gt;');
}

.mixitup-control-next.mixitup-control-disabled {
  background-image: url('data:image/svg+xml,&lt;svg width="18px" height="18px" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="%23C5D3D0" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"&gt;&lt;path d="M9 18l6-6-6-6"/&gt;&lt;/svg&gt;');
}

.gm-style .gm-style-iw-tc .c-solid-button::after,.gm-style .gm-style-iw-tc .c-solid-button-small::after,
.gm-style .gm-style-iw-c .c-solid-button,
.gm-style .gm-style-iw-c .c-solid-button-small{
  --tw-text-opacity: 1;
  color: rgb(0 132 61 / var(--tw-text-opacity, 1));
}

.gm-style .gm-style-iw-tc .c-solid-button:hover::after,.gm-style .gm-style-iw-tc .c-solid-button-small:hover::after,
.gm-style .gm-style-iw-c .c-solid-button:hover,
.gm-style .gm-style-iw-c .c-solid-button-small:hover{
  --tw-bg-opacity: 1;
  background-color: rgb(192 234 213 / var(--tw-bg-opacity, 1));
}

.gm-style .gm-style-iw-tc .c-solid-button::after,.gm-style .gm-style-iw-tc .c-solid-button-small::after,
.gm-style .gm-style-iw-c .c-solid-button,
.gm-style .gm-style-iw-c .c-solid-button-small{
  --tw-text-opacity: 1;
  color: rgb(0 132 61 / var(--tw-text-opacity, 1));
}

.gm-style .gm-style-iw-tc .c-solid-button:hover::after,.gm-style .gm-style-iw-tc .c-solid-button-small:hover::after,
.gm-style .gm-style-iw-c .c-solid-button:hover,
.gm-style .gm-style-iw-c .c-solid-button-small:hover{
  --tw-bg-opacity: 1;
  background-color: rgb(192 234 213 / var(--tw-bg-opacity, 1));
}

.gm-style .gm-style-iw-tc .c-solid-button::after,.gm-style .gm-style-iw-tc .c-solid-button-small::after,
.gm-style .gm-style-iw-c .c-solid-button,
.gm-style .gm-style-iw-c .c-solid-button-small {
  background-color: #fff;
}

.gm-style .gm-style-iw-tc .c-outlined-button::after,.gm-style .gm-style-iw-tc .c-outlined-button-small::after,
.gm-style .gm-style-iw-c .c-outlined-button,
.gm-style .gm-style-iw-c .c-outlined-button-small{
  --tw-border-opacity: 1;
  border-color: rgb(255 255 255 / var(--tw-border-opacity, 1));
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity, 1));
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.gm-style .gm-style-iw-tc .c-outlined-button:hover::after,.gm-style .gm-style-iw-tc .c-outlined-button-small:hover::after,
.gm-style .gm-style-iw-c .c-outlined-button:hover,
.gm-style .gm-style-iw-c .c-outlined-button-small:hover{
  --tw-border-opacity: 1;
  border-color: rgb(192 234 213 / var(--tw-border-opacity, 1));
  --tw-text-opacity: 1;
  color: rgb(192 234 213 / var(--tw-text-opacity, 1));
}

.gm-style .gm-style-iw-tc .c-outlined-button::after,.gm-style .gm-style-iw-tc .c-outlined-button-small::after,
.gm-style .gm-style-iw-c .c-outlined-button,
.gm-style .gm-style-iw-c .c-outlined-button-small{
  --tw-border-opacity: 1;
  border-color: rgb(255 255 255 / var(--tw-border-opacity, 1));
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity, 1));
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.gm-style .gm-style-iw-tc .c-outlined-button:hover::after,.gm-style .gm-style-iw-tc .c-outlined-button-small:hover::after,
.gm-style .gm-style-iw-c .c-outlined-button:hover,
.gm-style .gm-style-iw-c .c-outlined-button-small:hover{
  --tw-border-opacity: 1;
  border-color: rgb(192 234 213 / var(--tw-border-opacity, 1));
  --tw-text-opacity: 1;
  color: rgb(192 234 213 / var(--tw-text-opacity, 1));
}

.gm-style .gm-style-iw-tc::after,
.gm-style .gm-style-iw-c{
  overflow: hidden;
  --tw-bg-opacity: 1;
  background-color: rgb(0 132 61 / var(--tw-bg-opacity, 1));
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity, 1));
}

.gm-style .gm-style-iw-tc .rt-text h2::after,.gm-style .gm-style-iw-tc .rt-text h3::after,.gm-style .gm-style-iw-tc .rt-text h4::after,.gm-style .gm-style-iw-tc .rt-text h5::after,.gm-style .gm-style-iw-tc .rt-text p::after,.gm-style .gm-style-iw-tc .rt-text .intro-p::after,.gm-style .gm-style-iw-tc .rt-text ul::after,.gm-style .gm-style-iw-tc .rt-text table::after,.gm-style .gm-style-iw-tc .rt-text th::after,.gm-style .gm-style-iw-tc .rt-text td::after,.gm-style .gm-style-iw-tc .rt-text strong::after,.gm-style .gm-style-iw-tc .rt-text--sm p::after,.gm-style .gm-style-iw-tc .rt-text a:not(.c-btn)::after,.gm-style .gm-style-iw-tc .rt-text p img::after,.gm-style .gm-style-iw-tc .rt-text--sm a:not(.c-btn)::after,
.gm-style .gm-style-iw-c .rt-text h2,
.gm-style .gm-style-iw-c .rt-text h3,
.gm-style .gm-style-iw-c .rt-text h4,
.gm-style .gm-style-iw-c .rt-text h5,
.gm-style .gm-style-iw-c .rt-text p,
.gm-style .gm-style-iw-c .rt-text .intro-p,
.gm-style .gm-style-iw-c .rt-text ul,
.gm-style .gm-style-iw-c .rt-text table,
.gm-style .gm-style-iw-c .rt-text th,
.gm-style .gm-style-iw-c .rt-text td,
.gm-style .gm-style-iw-c .rt-text strong,
.gm-style .gm-style-iw-c .rt-text--sm p,
.gm-style .gm-style-iw-c .rt-text a:not(.c-btn),
.gm-style .gm-style-iw-c .rt-text p img,
.gm-style .gm-style-iw-c .rt-text--sm a:not(.c-btn){
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity, 1));
}

.gm-style .gm-style-iw-tc .rt-text a:not(.c-btn)::after,.gm-style .gm-style-iw-tc .rt-text--sm a:not(.c-btn)::after,
.gm-style .gm-style-iw-c .rt-text a:not(.c-btn),
.gm-style .gm-style-iw-c .rt-text--sm a:not(.c-btn){
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity, 1));
}

.gm-style .gm-style-iw-tc .rt-text a:not(.c-btn):hover::after,.gm-style .gm-style-iw-tc .rt-text--sm a:not(.c-btn):hover::after,
.gm-style .gm-style-iw-c .rt-text a:not(.c-btn):hover,
.gm-style .gm-style-iw-c .rt-text--sm a:not(.c-btn):hover{
  color: rgba(255, 255, 255, 0.7);
}

.gm-style .gm-style-iw-tc .rt-text a:not(.c-btn)::after,.gm-style .gm-style-iw-tc .rt-text--sm a:not(.c-btn)::after,
.gm-style .gm-style-iw-c .rt-text a:not(.c-btn),
.gm-style .gm-style-iw-c .rt-text--sm a:not(.c-btn){
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity, 1));
}

.gm-style .gm-style-iw-tc .rt-text a:not(.c-btn):hover::after,.gm-style .gm-style-iw-tc .rt-text--sm a:not(.c-btn):hover::after,
.gm-style .gm-style-iw-c .rt-text a:not(.c-btn):hover,
.gm-style .gm-style-iw-c .rt-text--sm a:not(.c-btn):hover{
  color: rgba(255, 255, 255, 0.7);
}

.gm-ui-hover-effect{
  --tw-invert: invert(100%);
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}

.gm-style-iw-d{
  width: 260px;
  overflow: hidden !important;
}

.banner-swiper .swiper-slide-active{
  --tw-bg-opacity: 1;
  background-color: rgb(245 247 246 / var(--tw-bg-opacity, 1));
  opacity: 1;
}

.region-page section:first-child{
  padding-top: 40px;
}

@media (min-width: 768px){
  .region-page section:first-child{
    padding-top: 120px;
  }
}

.region-page section:last-child{
  padding-bottom: 100px;
}

@media (min-width: 768px){
  .region-page section:last-child{
    padding-bottom: 200px;
  }
}

.active-store{
  border-width: 1px;
  --tw-border-opacity: 1;
  border-color: rgb(0 132 61 / var(--tw-border-opacity, 1));
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
  --tw-text-opacity: 1;
  color: rgb(27 52 49 / var(--tw-text-opacity, 1));
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.active-store:hover .c-solid-button,.active-store:hover .c-solid-button-small{
  --tw-text-opacity: 1;
  color: rgb(0 132 61 / var(--tw-text-opacity, 1));
}

.active-store:hover .c-solid-button:hover,.active-store:hover .c-solid-button-small:hover{
  --tw-bg-opacity: 1;
  background-color: rgb(192 234 213 / var(--tw-bg-opacity, 1));
}

.active-store:hover .c-solid-button,.active-store:hover .c-solid-button-small{
  --tw-text-opacity: 1;
  color: rgb(0 132 61 / var(--tw-text-opacity, 1));
}

.active-store:hover .c-solid-button:hover,.active-store:hover .c-solid-button-small:hover{
  --tw-bg-opacity: 1;
  background-color: rgb(192 234 213 / var(--tw-bg-opacity, 1));
}

.active-store:hover .c-solid-button,.active-store:hover .c-solid-button-small {
  background-color: #fff;
}

.active-store:hover .c-outlined-button,.active-store:hover .c-outlined-button-small{
  --tw-border-opacity: 1;
  border-color: rgb(255 255 255 / var(--tw-border-opacity, 1));
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity, 1));
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.active-store:hover .c-outlined-button:hover,.active-store:hover .c-outlined-button-small:hover{
  --tw-border-opacity: 1;
  border-color: rgb(192 234 213 / var(--tw-border-opacity, 1));
  --tw-text-opacity: 1;
  color: rgb(192 234 213 / var(--tw-text-opacity, 1));
}

.active-store:hover .c-outlined-button,.active-store:hover .c-outlined-button-small{
  --tw-border-opacity: 1;
  border-color: rgb(255 255 255 / var(--tw-border-opacity, 1));
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity, 1));
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.active-store:hover .c-outlined-button:hover,.active-store:hover .c-outlined-button-small:hover{
  --tw-border-opacity: 1;
  border-color: rgb(192 234 213 / var(--tw-border-opacity, 1));
  --tw-text-opacity: 1;
  color: rgb(192 234 213 / var(--tw-text-opacity, 1));
}

.active-store:hover{
  --tw-bg-opacity: 1;
  background-color: rgb(0 132 61 / var(--tw-bg-opacity, 1));
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity, 1));
}

.active-store circle{
  fill: #1B3431;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.active-store:hover circle{
  fill: #fff;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.active-store path{
  fill: #fff;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.active-store:hover path{
  fill: #00843D;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.active-store .store-link{
  --tw-border-opacity: 1;
  border-color: rgb(0 132 61 / var(--tw-border-opacity, 1));
  --tw-text-opacity: 1;
  color: rgb(0 132 61 / var(--tw-text-opacity, 1));
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.gm-style-iw-a{
  display: none;
}

@media (min-width: 768px){
  .gm-style-iw-a{
    display: block;
  }
}

.gm-style .gm-style-iw-c{
  padding: 0px;
}

.autocomplete-divider::after {
  content: "";
  display: block;
  border-bottom: 1px solid rgba(0, 56, 0, 0.2);
  /* Slight opacity for green-dark */
  width: calc(100% + 20px);
  position: relative;
  left: -30px;
  bottom: -8px;
}

.paused .orbit-wrapper {
  transition: none;
}

.hover\:bg-green:hover .c-solid-button,.hover\:bg-green:hover .c-solid-button-small{
  --tw-text-opacity: 1;
  color: rgb(0 132 61 / var(--tw-text-opacity, 1));
}

.hover\:bg-green:hover .c-solid-button:hover,.hover\:bg-green:hover .c-solid-button-small:hover{
  --tw-bg-opacity: 1;
  background-color: rgb(192 234 213 / var(--tw-bg-opacity, 1));
}

.hover\:bg-green:hover .c-solid-button,.hover\:bg-green:hover .c-solid-button-small{
  --tw-text-opacity: 1;
  color: rgb(0 132 61 / var(--tw-text-opacity, 1));
}

.hover\:bg-green:hover .c-solid-button:hover,.hover\:bg-green:hover .c-solid-button-small:hover{
  --tw-bg-opacity: 1;
  background-color: rgb(192 234 213 / var(--tw-bg-opacity, 1));
}

.hover\:bg-green:hover .c-solid-button,.hover\:bg-green:hover .c-solid-button-small {
  background-color: #fff;
}

.hover\:bg-green:hover .c-outlined-button,.hover\:bg-green:hover .c-outlined-button-small{
  --tw-border-opacity: 1;
  border-color: rgb(255 255 255 / var(--tw-border-opacity, 1));
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity, 1));
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.hover\:bg-green:hover .c-outlined-button:hover,.hover\:bg-green:hover .c-outlined-button-small:hover{
  --tw-border-opacity: 1;
  border-color: rgb(192 234 213 / var(--tw-border-opacity, 1));
  --tw-text-opacity: 1;
  color: rgb(192 234 213 / var(--tw-text-opacity, 1));
}

.hover\:bg-green:hover .c-outlined-button,.hover\:bg-green:hover .c-outlined-button-small{
  --tw-border-opacity: 1;
  border-color: rgb(255 255 255 / var(--tw-border-opacity, 1));
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity, 1));
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.hover\:bg-green:hover .c-outlined-button:hover,.hover\:bg-green:hover .c-outlined-button-small:hover{
  --tw-border-opacity: 1;
  border-color: rgb(192 234 213 / var(--tw-border-opacity, 1));
  --tw-text-opacity: 1;
  color: rgb(192 234 213 / var(--tw-text-opacity, 1));
}

.focus\:bg-green:focus .c-solid-button,.focus\:bg-green:focus .c-solid-button-small{
  --tw-text-opacity: 1;
  color: rgb(0 132 61 / var(--tw-text-opacity, 1));
}

.focus\:bg-green:focus .c-solid-button:hover,.focus\:bg-green:focus .c-solid-button-small:hover{
  --tw-bg-opacity: 1;
  background-color: rgb(192 234 213 / var(--tw-bg-opacity, 1));
}

.focus\:bg-green:focus .c-solid-button,.focus\:bg-green:focus .c-solid-button-small{
  --tw-text-opacity: 1;
  color: rgb(0 132 61 / var(--tw-text-opacity, 1));
}

.focus\:bg-green:focus .c-solid-button:hover,.focus\:bg-green:focus .c-solid-button-small:hover{
  --tw-bg-opacity: 1;
  background-color: rgb(192 234 213 / var(--tw-bg-opacity, 1));
}

.focus\:bg-green:focus .c-solid-button,.focus\:bg-green:focus .c-solid-button-small {
  background-color: #fff;
}

.focus\:bg-green:focus .c-outlined-button,.focus\:bg-green:focus .c-outlined-button-small{
  --tw-border-opacity: 1;
  border-color: rgb(255 255 255 / var(--tw-border-opacity, 1));
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity, 1));
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.focus\:bg-green:focus .c-outlined-button:hover,.focus\:bg-green:focus .c-outlined-button-small:hover{
  --tw-border-opacity: 1;
  border-color: rgb(192 234 213 / var(--tw-border-opacity, 1));
  --tw-text-opacity: 1;
  color: rgb(192 234 213 / var(--tw-text-opacity, 1));
}

.focus\:bg-green:focus .c-outlined-button,.focus\:bg-green:focus .c-outlined-button-small{
  --tw-border-opacity: 1;
  border-color: rgb(255 255 255 / var(--tw-border-opacity, 1));
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity, 1));
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.focus\:bg-green:focus .c-outlined-button:hover,.focus\:bg-green:focus .c-outlined-button-small:hover{
  --tw-border-opacity: 1;
  border-color: rgb(192 234 213 / var(--tw-border-opacity, 1));
  --tw-text-opacity: 1;
  color: rgb(192 234 213 / var(--tw-text-opacity, 1));
}

.group\/card:hover .group-hover\/card\:bg-green .c-solid-button,.group\/card:hover .group-hover\/card\:bg-green .c-solid-button-small{
  --tw-text-opacity: 1;
  color: rgb(0 132 61 / var(--tw-text-opacity, 1));
}

.group\/card:hover .group-hover\/card\:bg-green .c-solid-button:hover,.group\/card:hover .group-hover\/card\:bg-green .c-solid-button-small:hover{
  --tw-bg-opacity: 1;
  background-color: rgb(192 234 213 / var(--tw-bg-opacity, 1));
}

.group\/card:hover .group-hover\/card\:bg-green .c-solid-button,.group\/card:hover .group-hover\/card\:bg-green .c-solid-button-small{
  --tw-text-opacity: 1;
  color: rgb(0 132 61 / var(--tw-text-opacity, 1));
}

.group\/card:hover .group-hover\/card\:bg-green .c-solid-button:hover,.group\/card:hover .group-hover\/card\:bg-green .c-solid-button-small:hover{
  --tw-bg-opacity: 1;
  background-color: rgb(192 234 213 / var(--tw-bg-opacity, 1));
}

.group\/card:hover .group-hover\/card\:bg-green .c-solid-button,.group\/card:hover .group-hover\/card\:bg-green .c-solid-button-small {
  background-color: #fff;
}

.group\/card:hover .group-hover\/card\:bg-green .c-outlined-button,.group\/card:hover .group-hover\/card\:bg-green .c-outlined-button-small{
  --tw-border-opacity: 1;
  border-color: rgb(255 255 255 / var(--tw-border-opacity, 1));
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity, 1));
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.group\/card:hover .group-hover\/card\:bg-green .c-outlined-button:hover,.group\/card:hover .group-hover\/card\:bg-green .c-outlined-button-small:hover{
  --tw-border-opacity: 1;
  border-color: rgb(192 234 213 / var(--tw-border-opacity, 1));
  --tw-text-opacity: 1;
  color: rgb(192 234 213 / var(--tw-text-opacity, 1));
}

.group\/card:hover .group-hover\/card\:bg-green .c-outlined-button,.group\/card:hover .group-hover\/card\:bg-green .c-outlined-button-small{
  --tw-border-opacity: 1;
  border-color: rgb(255 255 255 / var(--tw-border-opacity, 1));
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity, 1));
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.group\/card:hover .group-hover\/card\:bg-green .c-outlined-button:hover,.group\/card:hover .group-hover\/card\:bg-green .c-outlined-button-small:hover{
  --tw-border-opacity: 1;
  border-color: rgb(192 234 213 / var(--tw-border-opacity, 1));
  --tw-text-opacity: 1;
  color: rgb(192 234 213 / var(--tw-text-opacity, 1));
}

@media (min-width: 1536px){
  .\32xl\:prose{
    color: var(--tw-prose-body);
    max-width: 65ch;
  }

  .\32xl\:prose :where(p):not(:where([class~="not-prose"],[class~="not-prose"] *)){
    margin-top: 1.25em;
    margin-bottom: 1.25em;
  }

  .\32xl\:prose :where([class~="lead"]):not(:where([class~="not-prose"],[class~="not-prose"] *)){
    color: var(--tw-prose-lead);
    font-size: 1.25em;
    line-height: 1.6;
    margin-top: 1.2em;
    margin-bottom: 1.2em;
  }

  .\32xl\:prose :where(a):not(:where([class~="not-prose"],[class~="not-prose"] *)){
    color: var(--tw-prose-links);
    text-decoration: underline;
    font-weight: 500;
  }

  .\32xl\:prose :where(strong):not(:where([class~="not-prose"],[class~="not-prose"] *)){
    color: var(--tw-prose-bold);
    font-weight: 600;
  }

  .\32xl\:prose :where(a strong):not(:where([class~="not-prose"],[class~="not-prose"] *)){
    color: inherit;
  }

  .\32xl\:prose :where(blockquote strong):not(:where([class~="not-prose"],[class~="not-prose"] *)){
    color: inherit;
  }

  .\32xl\:prose :where(thead th strong):not(:where([class~="not-prose"],[class~="not-prose"] *)){
    color: inherit;
  }

  .\32xl\:prose :where(ol):not(:where([class~="not-prose"],[class~="not-prose"] *)){
    list-style-type: decimal;
    margin-top: 1.25em;
    margin-bottom: 1.25em;
    padding-inline-start: 1.625em;
  }

  .\32xl\:prose :where(ol[type="A"]):not(:where([class~="not-prose"],[class~="not-prose"] *)){
    list-style-type: upper-alpha;
  }

  .\32xl\:prose :where(ol[type="a"]):not(:where([class~="not-prose"],[class~="not-prose"] *)){
    list-style-type: lower-alpha;
  }

  .\32xl\:prose :where(ol[type="A" s]):not(:where([class~="not-prose"],[class~="not-prose"] *)){
    list-style-type: upper-alpha;
  }

  .\32xl\:prose :where(ol[type="a" s]):not(:where([class~="not-prose"],[class~="not-prose"] *)){
    list-style-type: lower-alpha;
  }

  .\32xl\:prose :where(ol[type="I"]):not(:where([class~="not-prose"],[class~="not-prose"] *)){
    list-style-type: upper-roman;
  }

  .\32xl\:prose :where(ol[type="i"]):not(:where([class~="not-prose"],[class~="not-prose"] *)){
    list-style-type: lower-roman;
  }

  .\32xl\:prose :where(ol[type="I" s]):not(:where([class~="not-prose"],[class~="not-prose"] *)){
    list-style-type: upper-roman;
  }

  .\32xl\:prose :where(ol[type="i" s]):not(:where([class~="not-prose"],[class~="not-prose"] *)){
    list-style-type: lower-roman;
  }

  .\32xl\:prose :where(ol[type="1"]):not(:where([class~="not-prose"],[class~="not-prose"] *)){
    list-style-type: decimal;
  }

  .\32xl\:prose :where(ul):not(:where([class~="not-prose"],[class~="not-prose"] *)){
    list-style-type: disc;
    margin-top: 1.25em;
    margin-bottom: 1.25em;
    padding-inline-start: 1.625em;
  }

  .\32xl\:prose :where(ol &gt; li):not(:where([class~="not-prose"],[class~="not-prose"] *))::marker{
    font-weight: 400;
    color: var(--tw-prose-counters);
  }

  .\32xl\:prose :where(ul &gt; li):not(:where([class~="not-prose"],[class~="not-prose"] *))::marker{
    color: var(--tw-prose-bullets);
  }

  .\32xl\:prose :where(dt):not(:where([class~="not-prose"],[class~="not-prose"] *)){
    color: var(--tw-prose-headings);
    font-weight: 600;
    margin-top: 1.25em;
  }

  .\32xl\:prose :where(hr):not(:where([class~="not-prose"],[class~="not-prose"] *)){
    border-color: var(--tw-prose-hr);
    border-top-width: 1px;
    margin-top: 3em;
    margin-bottom: 3em;
  }

  .\32xl\:prose :where(blockquote):not(:where([class~="not-prose"],[class~="not-prose"] *)){
    font-weight: 500;
    font-style: italic;
    color: var(--tw-prose-quotes);
    border-inline-start-width: 0.25rem;
    border-inline-start-color: var(--tw-prose-quote-borders);
    quotes: "\201C""\201D""\2018""\2019";
    margin-top: 1.6em;
    margin-bottom: 1.6em;
    padding-inline-start: 1em;
  }

  .\32xl\:prose :where(blockquote p:first-of-type):not(:where([class~="not-prose"],[class~="not-prose"] *))::before{
    content: open-quote;
  }

  .\32xl\:prose :where(blockquote p:last-of-type):not(:where([class~="not-prose"],[class~="not-prose"] *))::after{
    content: close-quote;
  }

  .\32xl\:prose :where(h1):not(:where([class~="not-prose"],[class~="not-prose"] *)){
    color: var(--tw-prose-headings);
    font-weight: 800;
    font-size: 2.25em;
    margin-top: 0;
    margin-bottom: 0.8888889em;
    line-height: 1.1111111;
  }

  .\32xl\:prose :where(h1 strong):not(:where([class~="not-prose"],[class~="not-prose"] *)){
    font-weight: 900;
    color: inherit;
  }

  .\32xl\:prose :where(h2):not(:where([class~="not-prose"],[class~="not-prose"] *)){
    color: var(--tw-prose-headings);
    font-weight: 700;
    font-size: 1.5em;
    margin-top: 2em;
    margin-bottom: 1em;
    line-height: 1.3333333;
  }

  .\32xl\:prose :where(h2 strong):not(:where([class~="not-prose"],[class~="not-prose"] *)){
    font-weight: 800;
    color: inherit;
  }

  .\32xl\:prose :where(h3):not(:where([class~="not-prose"],[class~="not-prose"] *)){
    color: var(--tw-prose-headings);
    font-weight: 600;
    font-size: 1.25em;
    margin-top: 1.6em;
    margin-bottom: 0.6em;
    line-height: 1.6;
  }

  .\32xl\:prose :where(h3 strong):not(:where([class~="not-prose"],[class~="not-prose"] *)){
    font-weight: 700;
    color: inherit;
  }

  .\32xl\:prose :where(h4):not(:where([class~="not-prose"],[class~="not-prose"] *)){
    color: var(--tw-prose-headings);
    font-weight: 600;
    margin-top: 1.5em;
    margin-bottom: 0.5em;
    line-height: 1.5;
  }

  .\32xl\:prose :where(h4 strong):not(:where([class~="not-prose"],[class~="not-prose"] *)){
    font-weight: 700;
    color: inherit;
  }

  .\32xl\:prose :where(img):not(:where([class~="not-prose"],[class~="not-prose"] *)){
    margin-top: 2em;
    margin-bottom: 2em;
  }

  .\32xl\:prose :where(picture):not(:where([class~="not-prose"],[class~="not-prose"] *)){
    display: block;
    margin-top: 2em;
    margin-bottom: 2em;
  }

  .\32xl\:prose :where(video):not(:where([class~="not-prose"],[class~="not-prose"] *)){
    margin-top: 2em;
    margin-bottom: 2em;
  }

  .\32xl\:prose :where(kbd):not(:where([class~="not-prose"],[class~="not-prose"] *)){
    font-weight: 500;
    font-family: inherit;
    color: var(--tw-prose-kbd);
    box-shadow: 0 0 0 1px rgb(var(--tw-prose-kbd-shadows) / 10%), 0 3px 0 rgb(var(--tw-prose-kbd-shadows) / 10%);
    font-size: 0.875em;
    border-radius: 0.3125rem;
    padding-top: 0.1875em;
    padding-inline-end: 0.375em;
    padding-bottom: 0.1875em;
    padding-inline-start: 0.375em;
  }

  .\32xl\:prose :where(code):not(:where([class~="not-prose"],[class~="not-prose"] *)){
    color: var(--tw-prose-code);
    font-weight: 600;
    font-size: 0.875em;
  }

  .\32xl\:prose :where(code):not(:where([class~="not-prose"],[class~="not-prose"] *))::before{
    content: "`";
  }

  .\32xl\:prose :where(code):not(:where([class~="not-prose"],[class~="not-prose"] *))::after{
    content: "`";
  }

  .\32xl\:prose :where(a code):not(:where([class~="not-prose"],[class~="not-prose"] *)){
    color: inherit;
  }

  .\32xl\:prose :where(h1 code):not(:where([class~="not-prose"],[class~="not-prose"] *)){
    color: inherit;
  }

  .\32xl\:prose :where(h2 code):not(:where([class~="not-prose"],[class~="not-prose"] *)){
    color: inherit;
    font-size: 0.875em;
  }

  .\32xl\:prose :where(h3 code):not(:where([class~="not-prose"],[class~="not-prose"] *)){
    color: inherit;
    font-size: 0.9em;
  }

  .\32xl\:prose :where(h4 code):not(:where([class~="not-prose"],[class~="not-prose"] *)){
    color: inherit;
  }

  .\32xl\:prose :where(blockquote code):not(:where([class~="not-prose"],[class~="not-prose"] *)){
    color: inherit;
  }

  .\32xl\:prose :where(thead th code):not(:where([class~="not-prose"],[class~="not-prose"] *)){
    color: inherit;
  }

  .\32xl\:prose :where(pre):not(:where([class~="not-prose"],[class~="not-prose"] *)){
    color: var(--tw-prose-pre-code);
    background-color: var(--tw-prose-pre-bg);
    overflow-x: auto;
    font-weight: 400;
    font-size: 0.875em;
    line-height: 1.7142857;
    margin-top: 1.7142857em;
    margin-bottom: 1.7142857em;
    border-radius: 0.375rem;
    padding-top: 0.8571429em;
    padding-inline-end: 1.1428571em;
    padding-bottom: 0.8571429em;
    padding-inline-start: 1.1428571em;
  }

  .\32xl\:prose :where(pre code):not(:where([class~="not-prose"],[class~="not-prose"] *)){
    background-color: transparent;
    border-width: 0;
    border-radius: 0;
    padding: 0;
    font-weight: inherit;
    color: inherit;
    font-size: inherit;
    font-family: inherit;
    line-height: inherit;
  }

  .\32xl\:prose :where(pre code):not(:where([class~="not-prose"],[class~="not-prose"] *))::before{
    content: none;
  }

  .\32xl\:prose :where(pre code):not(:where([class~="not-prose"],[class~="not-prose"] *))::after{
    content: none;
  }

  .\32xl\:prose :where(table):not(:where([class~="not-prose"],[class~="not-prose"] *)){
    width: 100%;
    table-layout: auto;
    margin-top: 2em;
    margin-bottom: 2em;
    font-size: 0.875em;
    line-height: 1.7142857;
  }

  .\32xl\:prose :where(thead):not(:where([class~="not-prose"],[class~="not-prose"] *)){
    border-bottom-width: 1px;
    border-bottom-color: var(--tw-prose-th-borders);
  }

  .\32xl\:prose :where(thead th):not(:where([class~="not-prose"],[class~="not-prose"] *)){
    color: var(--tw-prose-headings);
    font-weight: 600;
    vertical-align: bottom;
    padding-inline-end: 0.5714286em;
    padding-bottom: 0.5714286em;
    padding-inline-start: 0.5714286em;
  }

  .\32xl\:prose :where(tbody tr):not(:where([class~="not-prose"],[class~="not-prose"] *)){
    border-bottom-width: 1px;
    border-bottom-color: var(--tw-prose-td-borders);
  }

  .\32xl\:prose :where(tbody tr:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)){
    border-bottom-width: 0;
  }

  .\32xl\:prose :where(tbody td):not(:where([class~="not-prose"],[class~="not-prose"] *)){
    vertical-align: baseline;
  }

  .\32xl\:prose :where(tfoot):not(:where([class~="not-prose"],[class~="not-prose"] *)){
    border-top-width: 1px;
    border-top-color: var(--tw-prose-th-borders);
  }

  .\32xl\:prose :where(tfoot td):not(:where([class~="not-prose"],[class~="not-prose"] *)){
    vertical-align: top;
  }

  .\32xl\:prose :where(th, td):not(:where([class~="not-prose"],[class~="not-prose"] *)){
    text-align: start;
  }

  .\32xl\:prose :where(figure &gt; *):not(:where([class~="not-prose"],[class~="not-prose"] *)){
    margin-top: 0;
    margin-bottom: 0;
  }

  .\32xl\:prose :where(figcaption):not(:where([class~="not-prose"],[class~="not-prose"] *)){
    color: var(--tw-prose-captions);
    font-size: 0.875em;
    line-height: 1.4285714;
    margin-top: 0.8571429em;
  }

  .\32xl\:prose{
    --tw-prose-body: #374151;
    --tw-prose-headings: #111827;
    --tw-prose-lead: #4b5563;
    --tw-prose-links: #111827;
    --tw-prose-bold: #111827;
    --tw-prose-counters: #6b7280;
    --tw-prose-bullets: #d1d5db;
    --tw-prose-hr: #e5e7eb;
    --tw-prose-quotes: #111827;
    --tw-prose-quote-borders: #e5e7eb;
    --tw-prose-captions: #6b7280;
    --tw-prose-kbd: #111827;
    --tw-prose-kbd-shadows: 17 24 39;
    --tw-prose-code: #111827;
    --tw-prose-pre-code: #e5e7eb;
    --tw-prose-pre-bg: #1f2937;
    --tw-prose-th-borders: #d1d5db;
    --tw-prose-td-borders: #e5e7eb;
    --tw-prose-invert-body: #d1d5db;
    --tw-prose-invert-headings: #fff;
    --tw-prose-invert-lead: #9ca3af;
    --tw-prose-invert-links: #fff;
    --tw-prose-invert-bold: #fff;
    --tw-prose-invert-counters: #9ca3af;
    --tw-prose-invert-bullets: #4b5563;
    --tw-prose-invert-hr: #374151;
    --tw-prose-invert-quotes: #f3f4f6;
    --tw-prose-invert-quote-borders: #374151;
    --tw-prose-invert-captions: #9ca3af;
    --tw-prose-invert-kbd: #fff;
    --tw-prose-invert-kbd-shadows: 255 255 255;
    --tw-prose-invert-code: #fff;
    --tw-prose-invert-pre-code: #d1d5db;
    --tw-prose-invert-pre-bg: rgb(0 0 0 / 50%);
    --tw-prose-invert-th-borders: #4b5563;
    --tw-prose-invert-td-borders: #374151;
    font-size: 1rem;
    line-height: 1.75;
  }

  .\32xl\:prose :where(picture &gt; img):not(:where([class~="not-prose"],[class~="not-prose"] *)){
    margin-top: 0;
    margin-bottom: 0;
  }

  .\32xl\:prose :where(li):not(:where([class~="not-prose"],[class~="not-prose"] *)){
    margin-top: 0.5em;
    margin-bottom: 0.5em;
  }

  .\32xl\:prose :where(ol &gt; li):not(:where([class~="not-prose"],[class~="not-prose"] *)){
    padding-inline-start: 0.375em;
  }

  .\32xl\:prose :where(ul &gt; li):not(:where([class~="not-prose"],[class~="not-prose"] *)){
    padding-inline-start: 0.375em;
  }

  .\32xl\:prose :where(.\32xl\:prose &gt; ul &gt; li p):not(:where([class~="not-prose"],[class~="not-prose"] *)){
    margin-top: 0.75em;
    margin-bottom: 0.75em;
  }

  .\32xl\:prose :where(.\32xl\:prose &gt; ul &gt; li &gt; p:first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)){
    margin-top: 1.25em;
  }

  .\32xl\:prose :where(.\32xl\:prose &gt; ul &gt; li &gt; p:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)){
    margin-bottom: 1.25em;
  }

  .\32xl\:prose :where(.\32xl\:prose &gt; ol &gt; li &gt; p:first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)){
    margin-top: 1.25em;
  }

  .\32xl\:prose :where(.\32xl\:prose &gt; ol &gt; li &gt; p:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)){
    margin-bottom: 1.25em;
  }

  .\32xl\:prose :where(ul ul, ul ol, ol ul, ol ol):not(:where([class~="not-prose"],[class~="not-prose"] *)){
    margin-top: 0.75em;
    margin-bottom: 0.75em;
  }

  .\32xl\:prose :where(dl):not(:where([class~="not-prose"],[class~="not-prose"] *)){
    margin-top: 1.25em;
    margin-bottom: 1.25em;
  }

  .\32xl\:prose :where(dd):not(:where([class~="not-prose"],[class~="not-prose"] *)){
    margin-top: 0.5em;
    padding-inline-start: 1.625em;
  }

  .\32xl\:prose :where(hr + *):not(:where([class~="not-prose"],[class~="not-prose"] *)){
    margin-top: 0;
  }

  .\32xl\:prose :where(h2 + *):not(:where([class~="not-prose"],[class~="not-prose"] *)){
    margin-top: 0;
  }

  .\32xl\:prose :where(h3 + *):not(:where([class~="not-prose"],[class~="not-prose"] *)){
    margin-top: 0;
  }

  .\32xl\:prose :where(h4 + *):not(:where([class~="not-prose"],[class~="not-prose"] *)){
    margin-top: 0;
  }

  .\32xl\:prose :where(thead th:first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)){
    padding-inline-start: 0;
  }

  .\32xl\:prose :where(thead th:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)){
    padding-inline-end: 0;
  }

  .\32xl\:prose :where(tbody td, tfoot td):not(:where([class~="not-prose"],[class~="not-prose"] *)){
    padding-top: 0.5714286em;
    padding-inline-end: 0.5714286em;
    padding-bottom: 0.5714286em;
    padding-inline-start: 0.5714286em;
  }

  .\32xl\:prose :where(tbody td:first-child, tfoot td:first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)){
    padding-inline-start: 0;
  }

  .\32xl\:prose :where(tbody td:last-child, tfoot td:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)){
    padding-inline-end: 0;
  }

  .\32xl\:prose :where(figure):not(:where([class~="not-prose"],[class~="not-prose"] *)){
    margin-top: 2em;
    margin-bottom: 2em;
  }

  .\32xl\:prose :where(.\32xl\:prose &gt; :first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)){
    margin-top: 0;
  }

  .\32xl\:prose :where(.\32xl\:prose &gt; :last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)){
    margin-bottom: 0;
  }
}

.after\:mx-3::after{
  content: var(--tw-content);
  margin-left: 0.75rem;
  margin-right: 0.75rem;
}

.after\:block::after{
  content: var(--tw-content);
  display: block;
}

.after\:font-\[inherit\]::after{
  content: var(--tw-content);
  font-family: inherit;
}

.after\:text-green::after{
  content: var(--tw-content);
  --tw-text-opacity: 1;
  color: rgb(0 132 61 / var(--tw-text-opacity, 1));
}

.after\:content-\[\'\|\'\]::after{
  --tw-content: '|';
  content: var(--tw-content);
}

.after\:content-\[none\]::after{
  --tw-content: none;
  content: var(--tw-content);
}

.hover\:cursor-pointer:hover{
  cursor: pointer;
}

.hover\:gap-\[20px\]:hover{
  gap: 20px;
}

.hover\:border-\[\#005C2B\]:hover{
  --tw-border-opacity: 1;
  border-color: rgb(0 92 43 / var(--tw-border-opacity, 1));
}

.hover\:border-black:hover{
  --tw-border-opacity: 1;
  border-color: rgb(0 0 0 / var(--tw-border-opacity, 1));
}

.hover\:border-green:hover{
  --tw-border-opacity: 1;
  border-color: rgb(0 132 61 / var(--tw-border-opacity, 1));
}

.hover\:border-green-dark:hover{
  --tw-border-opacity: 1;
  border-color: rgb(27 52 49 / var(--tw-border-opacity, 1));
}

.hover\:\!bg-orange-dark:hover{
  --tw-bg-opacity: 1 !important;
  background-color: rgb(166 75 15 / var(--tw-bg-opacity, 1)) !important;
}

.hover\:bg-black:hover{
  --tw-bg-opacity: 1;
  background-color: rgb(0 0 0 / var(--tw-bg-opacity, 1));
}

.hover\:bg-green:hover{
  --tw-bg-opacity: 1;
  background-color: rgb(0 132 61 / var(--tw-bg-opacity, 1));
}

.hover\:bg-green-dark:hover{
  --tw-bg-opacity: 1;
  background-color: rgb(27 52 49 / var(--tw-bg-opacity, 1));
}

.hover\:bg-green-highlight:hover{
  --tw-bg-opacity: 1;
  background-color: rgb(0 93 43 / var(--tw-bg-opacity, 1));
}

.hover\:bg-green-hover:hover{
  --tw-bg-opacity: 1;
  background-color: rgb(0 106 49 / var(--tw-bg-opacity, 1));
}

.hover\:bg-grey-light:hover{
  --tw-bg-opacity: 1;
  background-color: rgb(245 247 246 / var(--tw-bg-opacity, 1));
}

.hover\:bg-white:hover{
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
}

.hover\:text-\[\#005C2B\]:hover{
  --tw-text-opacity: 1;
  color: rgb(0 92 43 / var(--tw-text-opacity, 1));
}

.hover\:text-green:hover{
  --tw-text-opacity: 1;
  color: rgb(0 132 61 / var(--tw-text-opacity, 1));
}

.hover\:text-green-bright:hover{
  --tw-text-opacity: 1;
  color: rgb(8 181 94 / var(--tw-text-opacity, 1));
}

.hover\:text-green-dark:hover{
  --tw-text-opacity: 1;
  color: rgb(27 52 49 / var(--tw-text-opacity, 1));
}

.hover\:text-green-darkish:hover{
  --tw-text-opacity: 1;
  color: rgb(0 92 45 / var(--tw-text-opacity, 1));
}

.hover\:text-green-hover:hover{
  --tw-text-opacity: 1;
  color: rgb(0 106 49 / var(--tw-text-opacity, 1));
}

.hover\:text-green-link:hover{
  --tw-text-opacity: 1;
  color: rgb(0 173 89 / var(--tw-text-opacity, 1));
}

.hover\:text-white:hover{
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity, 1));
}

.hover\:text-white-transparent:hover{
  color: rgba(255, 255, 255, 0.7);
}

.hover\:underline:hover{
  text-decoration-line: underline;
}

.hover\:opacity-80:hover{
  opacity: 0.8;
}

.hover\:shadow-lg:hover{
  --tw-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --tw-shadow-colored: 0 10px 15px -3px var(--tw-shadow-color), 0 4px 6px -4px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.focus\:border-none:focus{
  border-style: none;
}

.focus\:border-green:focus{
  --tw-border-opacity: 1;
  border-color: rgb(0 132 61 / var(--tw-border-opacity, 1));
}

.focus\:bg-green:focus{
  --tw-bg-opacity: 1;
  background-color: rgb(0 132 61 / var(--tw-bg-opacity, 1));
}

.focus\:text-white:focus{
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity, 1));
}

.focus\:outline-green-link:focus{
  outline-color: #00AD59;
}

.focus\:ring-0:focus{
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
}

.focus\:ring-1:focus{
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
}

.focus\:ring-green:focus{
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(0 132 61 / var(--tw-ring-opacity, 1));
}

.focus\:ring-white:focus{
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(255 255 255 / var(--tw-ring-opacity, 1));
}

.focus-visible\:pointer-events-auto:focus-visible{
  pointer-events: auto;
}

.focus-visible\:w-\[200px\]:focus-visible{
  width: 200px;
}

.focus-visible\:opacity-100:focus-visible{
  opacity: 1;
}

.active\:cursor-grabbing:active{
  cursor: grabbing;
}

.group\/nav-group:focus-within .group-focus-within\/nav-group\:pointer-events-auto{
  pointer-events: auto;
}

.group\/nav-group:focus-within .group-focus-within\/nav-group\:opacity-100{
  opacity: 1;
}

.group\/nav-group:hover .group-hover\/nav-group\:pointer-events-auto{
  pointer-events: auto;
}

.group\/attribute:hover .group-hover\/attribute\:z-\[20\]{
  z-index: 20;
}

.group\/attribute:hover .group-hover\/attribute\:flex{
  display: flex;
}

.group\/alert-link:hover .group-hover\/alert-link\:translate-x-2{
  --tw-translate-x: 0.5rem;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.group\/card:hover .group-hover\/card\:translate-x-2{
  --tw-translate-x: 0.5rem;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.group\/link:hover .group-hover\/link\:translate-x-2{
  --tw-translate-x: 0.5rem;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.group\/link:hover .group-hover\/link\:translate-x-\[-10px\]{
  --tw-translate-x: -10px;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.group\/link:hover .group-hover\/link\:translate-x-\[10px\]{
  --tw-translate-x: 10px;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.group\/card:hover .group-hover\/card\:gap-\[20px\]{
  gap: 20px;
}

.group\/card:hover .group-hover\/card\:bg-green{
  --tw-bg-opacity: 1;
  background-color: rgb(0 132 61 / var(--tw-bg-opacity, 1));
}

.group\/pdflink:hover .group-hover\/pdflink\:bg-green-hover{
  --tw-bg-opacity: 1;
  background-color: rgb(0 106 49 / var(--tw-bg-opacity, 1));
}

.group\/share-button:hover .group-hover\/share-button\:\!fill-green-dark{
  fill: #1B3431 !important;
}

.group\/accordion:hover .group-hover\/accordion\:text-green{
  --tw-text-opacity: 1;
  color: rgb(0 132 61 / var(--tw-text-opacity, 1));
}

.group\/card:hover .group-hover\/card\:text-green-hover{
  --tw-text-opacity: 1;
  color: rgb(0 106 49 / var(--tw-text-opacity, 1));
}

.group\/card:hover .group-hover\/card\:text-white{
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity, 1));
}

.group\/nav-group:hover .group-hover\/nav-group\:text-green-dark{
  --tw-text-opacity: 1;
  color: rgb(27 52 49 / var(--tw-text-opacity, 1));
}

.group\/nav-group:hover .group-hover\/nav-group\:text-white{
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity, 1));
}

.group\/store-card:hover .group-hover\/store-card\:text-white{
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity, 1));
}

.group\/nav-group:hover .group-hover\/nav-group\:underline{
  text-decoration-line: underline;
}

.group\/result:hover .group-hover\/result\:underline{
  text-decoration-line: underline;
}

.group\/nav-group:hover .group-hover\/nav-group\:opacity-100{
  opacity: 1;
}

.group\/nav-group:hover .group-hover\/nav-group\:delay-0{
  transition-delay: 0s;
}

.group\/nav-group:hover .group-hover\/nav-group\:before\:w-full::before{
  content: var(--tw-content);
  width: 100%;
}

.group\/attribute:focus .group-focus\/attribute\:z-\[20\]{
  z-index: 20;
}

.group\/attribute:focus .group-focus\/attribute\:flex{
  display: flex;
}

.group\/header.has-search-panel .group-\[\.has-search-panel\]\/header\:pointer-events-none{
  pointer-events: none;
}

.group\/header.has-mobile-menu .group-\[\.has-mobile-menu\]\/header\:pointer-events-auto{
  pointer-events: auto;
}

.group\/header.has-search-panel .group-\[\.has-search-panel\]\/header\:pointer-events-auto{
  pointer-events: auto;
}

.group\/nav-group.is-active .group-\[\.is-active\]\/nav-group\:pointer-events-auto{
  pointer-events: auto;
}

.group\/card.swiper-slide-active .group-\[\.swiper-slide-active\]\/card\:pointer-events-auto{
  pointer-events: auto;
}

.group\/nav-group.is-active .group-\[\.is-active\]\/nav-group\:left-0{
  left: 0px;
}

.group\/petal.is-active .group-\[\.is-active\]\/petal\:z-\[999999\]{
  z-index: 999999;
}

.group\/header.has-mobile-menu .group-\[\.has-mobile-menu\]\/header\:block{
  display: block;
}

.group\/header.has-search-panel .group-\[\.has-search-panel\]\/header\:block{
  display: block;
}

.group\/header.has-mobile-menu .group-\[\.has-mobile-menu\]\/header\:flex{
  display: flex;
}

.group\/header.has-mobile-menu .group-\[\.has-mobile-menu\]\/header\:hidden{
  display: none;
}

.group\/header.has-search-panel .group-\[\.has-search-panel\]\/header\:hidden{
  display: none;
}

.group\/petal.is-active .group-\[\.is-active\]\/petal\:h-\[100px\]{
  height: 100px;
}

.group\/petal.is-active .group-\[\.is-active\]\/petal\:h-\[40px\]{
  height: 40px;
}

.group\/nav-group.is-active .group-\[\.is-active\]\/nav-group\:max-h-screen{
  max-height: 100vh;
}

.group\/petal.is-active .group-\[\.is-active\]\/petal\:w-\[110px\]{
  width: 110px;
}

.group\/petal.is-active .group-\[\.is-active\]\/petal\:w-\[40px\]{
  width: 40px;
}

.group\/accordion.active .group-\[\&amp;\.active\]\/accordion\:rotate-\[180deg\]{
  --tw-rotate: 180deg;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.group\/nav-group.is-active .group-\[\.is-active\]\/nav-group\:rotate-180{
  --tw-rotate: 180deg;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.group\/read-more.is-active .group-\[\.is-active\]\/read-more\:rotate-180{
  --tw-rotate: 180deg;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.group\/card.swiper-slide-active .group-\[\.swiper-slide-active\]\/card\:select-none{
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.group\/accordion.active .group-\[\&amp;\.active\]\/accordion\:grid-rows-\[1fr\]{
  grid-template-rows: 1fr;
}

.group\/petal.is-active .group-\[\.is-active\]\/petal\:bg-\[rgba\(27\2c 52\2c 49\2c 0\.7\)\]{
  background-color: rgba(27,52,49,0.7);
}

.group\/nav-group.is-active .group-\[\.is-active\]\/nav-group\:text-green-dark{
  --tw-text-opacity: 1;
  color: rgb(27 52 49 / var(--tw-text-opacity, 1));
}

.group\/header:has(.has-dropdown:hover) .group-\[\&amp;\:has\(\.has-dropdown\:hover\)\]\/header\:opacity-90{
  opacity: 0.9;
}

.group\/header.has-active .group-\[\.has-active\]\/header\:opacity-50{
  opacity: 0.5;
}

.group\/header.has-mobile-menu .group-\[\.has-mobile-menu\]\/header\:opacity-100{
  opacity: 1;
}

.group\/header.has-search-panel .group-\[\.has-search-panel\]\/header\:opacity-100{
  opacity: 1;
}

.group\/nav-group.is-active .group-\[\.is-active\]\/nav-group\:opacity-100{
  opacity: 1;
}

.group\/petal.is-active .group-\[\.is-active\]\/petal\:opacity-100{
  opacity: 1;
}

.group\/header:has(.has-dropdown:hover) .group-\[\&amp;\:has\(\.has-dropdown\:hover\)\]\/header\:delay-0{
  transition-delay: 0s;
}

.group\/header:has(.has-dropdown:hover) .group-\[\&amp;\:has\(\.has-dropdown\:hover\)\]\/header\:duration-300{
  transition-duration: 300ms;
}

.group\/nav-group.is-active .group-\[\.is-active\]\/nav-group\:before\:w-full::before{
  content: var(--tw-content);
  width: 100%;
}

@media (max-width: 768px){
  .max-\[768px\]\:hidden{
    display: none;
  }
}

@media (min-width: 420px){
  .min-\[420px\]\:grid-cols-2{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 640px){
  .sm\:h-\[150px\]{
    height: 150px;
  }

  .sm\:h-\[560px\]{
    height: 560px;
  }

  .sm\:\!w-\[120px\]{
    width: 120px !important;
  }

  .sm\:w-\[120px\]{
    width: 120px;
  }

  .sm\:w-\[165px\]{
    width: 165px;
  }

  .sm\:w-\[260px\]{
    width: 260px;
  }

  .sm\:w-fit{
    width: -moz-fit-content;
    width: fit-content;
  }

  .sm\:columns-2{
    -moz-columns: 2;
         columns: 2;
  }

  .sm\:grid-cols-2{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .sm\:gap-\[20px\]{
    gap: 20px;
  }

  .sm\:rounded-br-\[80px\]{
    border-bottom-right-radius: 80px;
  }

  .sm\:rounded-tl-\[80px\]{
    border-top-left-radius: 80px;
  }

  .sm\:pb-\[120px\]{
    padding-bottom: 120px;
  }

  .sm\:pt-\[120px\]{
    padding-top: 120px;
  }

  .group\/petal.is-active .sm\:group-\[\.is-active\]\/petal\:h-\[150px\]{
    height: 150px;
  }

  .group\/petal.is-active .sm\:group-\[\.is-active\]\/petal\:w-\[165px\]{
    width: 165px;
  }
}

@media (min-width: 768px){
  .md\:fixed{
    position: fixed;
  }

  .md\:relative{
    position: relative;
  }

  .md\:bottom-0{
    bottom: 0px;
  }

  .md\:bottom-\[-103px\]{
    bottom: -103px;
  }

  .md\:bottom-\[-40px\]{
    bottom: -40px;
  }

  .md\:left-\[-30px\]{
    left: -30px;
  }

  .md\:left-\[initial\]{
    left: initial;
  }

  .md\:right-\[-30px\]{
    right: -30px;
  }

  .md\:right-\[20px\]{
    right: 20px;
  }

  .md\:right-\[26px\]{
    right: 26px;
  }

  .md\:top-0{
    top: 0px;
  }

  .md\:top-1\/2{
    top: 50%;
  }

  .md\:top-\[-100\%\]{
    top: -100%;
  }

  .md\:top-\[-100px\]{
    top: -100px;
  }

  .md\:top-\[-103px\]{
    top: -103px;
  }

  .md\:top-\[20px\]{
    top: 20px;
  }

  .md\:top-\[26px\]{
    top: 26px;
  }

  .md\:top-\[76px\]{
    top: 76px;
  }

  .md\:mx-auto{
    margin-left: auto;
    margin-right: auto;
  }

  .md\:mb-1{
    margin-bottom: 0.25rem;
  }

  .md\:mb-2{
    margin-bottom: 0.5rem;
  }

  .md\:mb-\[12px\]{
    margin-bottom: 12px;
  }

  .md\:mb-\[20px\]{
    margin-bottom: 20px;
  }

  .md\:mb-\[26px\]{
    margin-bottom: 26px;
  }

  .md\:mb-\[38px\]{
    margin-bottom: 38px;
  }

  .md\:mb-\[48px\]{
    margin-bottom: 48px;
  }

  .md\:mb-\[50px\]{
    margin-bottom: 50px;
  }

  .md\:mb-\[70px\]{
    margin-bottom: 70px;
  }

  .md\:mt-10{
    margin-top: 2.5rem;
  }

  .md\:mt-\[20px\]{
    margin-top: 20px;
  }

  .md\:mt-\[250px\]{
    margin-top: 250px;
  }

  .md\:mt-\[36px\]{
    margin-top: 36px;
  }

  .md\:mt-\[42px\]{
    margin-top: 42px;
  }

  .md\:mt-\[60px\]{
    margin-top: 60px;
  }

  .md\:block{
    display: block;
  }

  .md\:flex{
    display: flex;
  }

  .md\:hidden{
    display: none;
  }

  .md\:size-\[30px\]{
    width: 30px;
    height: 30px;
  }

  .md\:\!h-\[60px\]{
    height: 60px !important;
  }

  .md\:h-\[200px\]{
    height: 200px;
  }

  .md\:h-\[50px\]{
    height: 50px;
  }

  .md\:h-\[555px\]{
    height: 555px;
  }

  .md\:h-\[600px\]{
    height: 600px;
  }

  .md\:h-\[60px\]{
    height: 60px;
  }

  .md\:h-\[720px\]{
    height: 720px;
  }

  .md\:h-\[76px\]{
    height: 76px;
  }

  .md\:max-h-\[100\%\]{
    max-height: 100%;
  }

  .md\:max-h-\[500px\]{
    max-height: 500px;
  }

  .md\:max-h-\[calc\(100dvh-350px\)\]{
    max-height: calc(100dvh - 350px);
  }

  .md\:\!w-\[160px\]{
    width: 160px !important;
  }

  .md\:\!w-\[60px\]{
    width: 60px !important;
  }

  .md\:w-1\/2{
    width: 50%;
  }

  .md\:w-\[160px\]{
    width: 160px;
  }

  .md\:w-\[220px\]{
    width: 220px;
  }

  .md\:w-\[240px\]{
    width: 240px;
  }

  .md\:w-\[300px\]{
    width: 300px;
  }

  .md\:w-\[320px\]{
    width: 320px;
  }

  .md\:w-\[40\%\]{
    width: 40%;
  }

  .md\:w-\[400px\]{
    width: 400px;
  }

  .md\:w-\[50px\]{
    width: 50px;
  }

  .md\:w-\[530px\]{
    width: 530px;
  }

  .md\:w-\[60px\]{
    width: 60px;
  }

  .md\:w-\[auto\]{
    width: auto;
  }

  .md\:w-auto{
    width: auto;
  }

  .md\:w-fit{
    width: -moz-fit-content;
    width: fit-content;
  }

  .md\:min-w-\[240px\]{
    min-width: 240px;
  }

  .md\:min-w-\[300px\]{
    min-width: 300px;
  }

  .md\:min-w-\[320px\]{
    min-width: 320px;
  }

  .md\:max-w-\[380px\]{
    max-width: 380px;
  }

  .md\:max-w-\[600px\]{
    max-width: 600px;
  }

  .md\:max-w-\[800px\]{
    max-width: 800px;
  }

  .md\:max-w-none{
    max-width: none;
  }

  .md\:flex-1{
    flex: 1 1 0%;
  }

  .md\:translate-x-0{
    --tw-translate-x: 0px;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
  }

  .md\:columns-2{
    -moz-columns: 2;
         columns: 2;
  }

  .md\:grid-cols-1{
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }

  .md\:grid-cols-2{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .md\:grid-cols-3{
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .md\:grid-cols-4{
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .md\:grid-cols-5{
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .md\:flex-row{
    flex-direction: row;
  }

  .md\:flex-row-reverse{
    flex-direction: row-reverse;
  }

  .md\:items-start{
    align-items: flex-start;
  }

  .md\:items-end{
    align-items: flex-end;
  }

  .md\:items-center{
    align-items: center;
  }

  .md\:justify-center{
    justify-content: center;
  }

  .md\:gap-0{
    gap: 0px;
  }

  .md\:gap-2{
    gap: 0.5rem;
  }

  .md\:gap-8{
    gap: 2rem;
  }

  .md\:gap-\[100px\]{
    gap: 100px;
  }

  .md\:gap-\[10px\]{
    gap: 10px;
  }

  .md\:gap-\[30px\]{
    gap: 30px;
  }

  .md\:gap-\[36px\]{
    gap: 36px;
  }

  .md\:gap-\[40px\]{
    gap: 40px;
  }

  .md\:gap-\[50px\]{
    gap: 50px;
  }

  .md\:gap-\[60px\]{
    gap: 60px;
  }

  .md\:gap-\[70px\]{
    gap: 70px;
  }

  .md\:rounded-l-none{
    border-top-left-radius: 0px;
    border-bottom-left-radius: 0px;
  }

  .md\:rounded-bl-\[0\]{
    border-bottom-left-radius: 0;
  }

  .md\:rounded-bl-\[5px\]{
    border-bottom-left-radius: 5px;
  }

  .md\:rounded-br-\[110px\]{
    border-bottom-right-radius: 110px;
  }

  .md\:rounded-br-\[140px\]{
    border-bottom-right-radius: 140px;
  }

  .md\:rounded-br-\[180px\]{
    border-bottom-right-radius: 180px;
  }

  .md\:rounded-br-\[200px\]{
    border-bottom-right-radius: 200px;
  }

  .md\:rounded-br-\[50px\]{
    border-bottom-right-radius: 50px;
  }

  .md\:rounded-tl-\[10px\]{
    border-top-left-radius: 10px;
  }

  .md\:rounded-tl-\[110px\]{
    border-top-left-radius: 110px;
  }

  .md\:rounded-tl-\[140px\]{
    border-top-left-radius: 140px;
  }

  .md\:rounded-tl-\[180px\]{
    border-top-left-radius: 180px;
  }

  .md\:rounded-tl-\[200px\]{
    border-top-left-radius: 200px;
  }

  .md\:rounded-tl-\[20px\]{
    border-top-left-radius: 20px;
  }

  .md\:rounded-tr-\[0\]{
    border-top-right-radius: 0;
  }

  .md\:rounded-tr-\[10px\]{
    border-top-right-radius: 10px;
  }

  .md\:rounded-tr-\[50px\]{
    border-top-right-radius: 50px;
  }

  .md\:rounded-tr-\[5px\]{
    border-top-right-radius: 5px;
  }

  .md\:bg-\[rgba\(0\2c 0\2c 0\2c 0\.3\)\]{
    background-color: rgba(0,0,0,0.3);
  }

  .md\:bg-transparent{
    background-color: transparent;
  }

  .md\:\!bg-none{
    background-image: none !important;
  }

  .md\:bg-\[linear-gradient\(45deg\2c _rgba\(19\2c 38\2c 35\2c 0\.8\)_0\%\2c _rgba\(19\2c 38\2c 35\2c 0\.7\)_25\%\2c _rgba\(19\2c 38\2c 35\2c 0\)_50\%\)\]{
    background-image: linear-gradient(45deg, rgba(19,38,35,0.8) 0%, rgba(19,38,35,0.7) 25%, rgba(19,38,35,0) 50%);
  }

  .md\:bg-\[url\(\'\/dist\/images\/bitmap\/graphics\/hero-bg-dark\.png\'\)\]{
    background-image: url('/dist/images/bitmap/graphics/hero-bg-dark.png');
  }

  .md\:bg-none{
    background-image: none;
  }

  .md\:p-0{
    padding: 0px;
  }

  .md\:p-\[50px\]{
    padding: 50px;
  }

  .md\:px-4{
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .md\:px-\[138px\]{
    padding-left: 138px;
    padding-right: 138px;
  }

  .md\:px-\[20px\]{
    padding-left: 20px;
    padding-right: 20px;
  }

  .md\:px-\[25px\]{
    padding-left: 25px;
    padding-right: 25px;
  }

  .md\:px-\[30px\]{
    padding-left: 30px;
    padding-right: 30px;
  }

  .md\:px-\[36px\]{
    padding-left: 36px;
    padding-right: 36px;
  }

  .md\:px-\[60px\]{
    padding-left: 60px;
    padding-right: 60px;
  }

  .md\:px-\[65px\]{
    padding-left: 65px;
    padding-right: 65px;
  }

  .md\:px-\[87px\]{
    padding-left: 87px;
    padding-right: 87px;
  }

  .md\:py-\[100px\]{
    padding-top: 100px;
    padding-bottom: 100px;
  }

  .md\:py-\[17px\]{
    padding-top: 17px;
    padding-bottom: 17px;
  }

  .md\:py-\[18px\]{
    padding-top: 18px;
    padding-bottom: 18px;
  }

  .md\:py-\[30px\]{
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .md\:py-\[40px\]{
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .md\:py-\[50px\]{
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .md\:py-\[88px\]{
    padding-top: 88px;
    padding-bottom: 88px;
  }

  .md\:pb-0{
    padding-bottom: 0px;
  }

  .md\:pb-\[100px\]{
    padding-bottom: 100px;
  }

  .md\:pb-\[120px\]{
    padding-bottom: 120px;
  }

  .md\:pb-\[140px\]{
    padding-bottom: 140px;
  }

  .md\:pb-\[180px\]{
    padding-bottom: 180px;
  }

  .md\:pb-\[190px\]{
    padding-bottom: 190px;
  }

  .md\:pb-\[200px\]{
    padding-bottom: 200px;
  }

  .md\:pb-\[220px\]{
    padding-bottom: 220px;
  }

  .md\:pb-\[300px\]{
    padding-bottom: 300px;
  }

  .md\:pb-\[36px\]{
    padding-bottom: 36px;
  }

  .md\:pb-\[50px\]{
    padding-bottom: 50px;
  }

  .md\:pb-\[80px\]{
    padding-bottom: 80px;
  }

  .md\:pb-\[85px\]{
    padding-bottom: 85px;
  }

  .md\:pb-\[90px\]{
    padding-bottom: 90px;
  }

  .md\:pl-0{
    padding-left: 0px;
  }

  .md\:pl-\[125px\]{
    padding-left: 125px;
  }

  .md\:pr-\[60px\]{
    padding-right: 60px;
  }

  .md\:pr-\[65px\]{
    padding-right: 65px;
  }

  .md\:pt-0{
    padding-top: 0px;
  }

  .md\:pt-\[100px\]{
    padding-top: 100px;
  }

  .md\:pt-\[103px\]{
    padding-top: 103px;
  }

  .md\:pt-\[120px\]{
    padding-top: 120px;
  }

  .md\:pt-\[130px\]{
    padding-top: 130px;
  }

  .md\:pt-\[135px\]{
    padding-top: 135px;
  }

  .md\:pt-\[140px\]{
    padding-top: 140px;
  }

  .md\:pt-\[180px\]{
    padding-top: 180px;
  }

  .md\:pt-\[200px\]{
    padding-top: 200px;
  }

  .md\:pt-\[24px\]{
    padding-top: 24px;
  }

  .md\:pt-\[32px\]{
    padding-top: 32px;
  }

  .md\:pt-\[36px\]{
    padding-top: 36px;
  }

  .md\:pt-\[50px\]{
    padding-top: 50px;
  }

  .md\:pt-\[80px\]{
    padding-top: 80px;
  }

  .md\:pt-\[95px\]{
    padding-top: 95px;
  }

  .md\:text-left{
    text-align: left;
  }

  .md\:text-\[16px\]{
    font-size: 16px;
  }

  .md\:text-\[20px\]{
    font-size: 20px;
  }

  .md\:text-\[24px\]{
    font-size: 24px;
  }

  .md\:text-\[32px\]{
    font-size: 32px;
  }

  .md\:text-\[44px\]{
    font-size: 44px;
  }

  .md\:text-\[70px\]{
    font-size: 70px;
  }

  .md\:font-semibold{
    font-weight: 600;
  }

  .md\:leading-\[26px\]{
    line-height: 26px;
  }

  .md\:leading-\[34px\]{
    line-height: 34px;
  }

  .md\:leading-\[38px\]{
    line-height: 38px;
  }

  .md\:leading-\[44px\]{
    line-height: 44px;
  }

  .md\:leading-\[48px\]{
    line-height: 48px;
  }

  .md\:leading-\[76px\]{
    line-height: 76px;
  }

  .md\:text-green{
    --tw-text-opacity: 1;
    color: rgb(0 132 61 / var(--tw-text-opacity, 1));
  }

  .group\/petal.is-active .md\:group-\[\.is-active\]\/petal\:h-\[280px\]{
    height: 280px;
  }

  .group\/petal.is-active .md\:group-\[\.is-active\]\/petal\:w-\[350px\]{
    width: 350px;
  }
}

@media (min-width: 1024px){
  .lg\:absolute{
    position: absolute;
  }

  .lg\:bottom-0{
    bottom: 0px;
  }

  .lg\:bottom-\[50px\]{
    bottom: 50px;
  }

  .lg\:left-\[50px\]{
    left: 50px;
  }

  .lg\:ml-\[140px\]{
    margin-left: 140px;
  }

  .lg\:mt-0{
    margin-top: 0px;
  }

  .lg\:line-clamp-3{
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
  }

  .lg\:line-clamp-5{
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 5;
  }

  .lg\:block{
    display: block;
  }

  .lg\:flex{
    display: flex;
  }

  .lg\:hidden{
    display: none;
  }

  .lg\:h-\[260px\]{
    height: 260px;
  }

  .lg\:h-\[700px\]{
    height: 700px;
  }

  .lg\:h-\[860px\]{
    height: 860px;
  }

  .lg\:\!w-\[200px\]{
    width: 200px !important;
  }

  .lg\:w-\[200px\]{
    width: 200px;
  }

  .lg\:w-\[290px\]{
    width: 290px;
  }

  .lg\:w-\[330px\]{
    width: 330px;
  }

  .lg\:w-\[800px\]{
    width: 800px;
  }

  .lg\:grid-cols-3{
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .lg\:grid-cols-\[1fr_450px\]{
    grid-template-columns: 1fr 450px;
  }

  .lg\:flex-row{
    flex-direction: row;
  }

  .lg\:gap-\[10px\]{
    gap: 10px;
  }

  .lg\:gap-\[120px\]{
    gap: 120px;
  }

  .lg\:gap-\[40px\]{
    gap: 40px;
  }

  .lg\:gap-\[50px\]{
    gap: 50px;
  }

  .lg\:gap-\[60px\]{
    gap: 60px;
  }

  .lg\:rounded-br-\[140px\]{
    border-bottom-right-radius: 140px;
  }

  .lg\:rounded-tl-\[140px\]{
    border-top-left-radius: 140px;
  }

  .lg\:px-\[90px\]{
    padding-left: 90px;
    padding-right: 90px;
  }

  .lg\:py-\[60px\]{
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .lg\:pb-\[220px\]{
    padding-bottom: 220px;
  }

  .lg\:text-\[1rem\]{
    font-size: 1rem;
  }

  .lg\:text-\[44px\]{
    font-size: 44px;
  }

  .lg\:leading-\[54px\]{
    line-height: 54px;
  }

  .lg\:after\:content-\[\'\\\&amp;\#124\;\'\]::after{
    --tw-content: '\&amp;#124;';
    content: var(--tw-content);
  }

  .group\/petal.is-active .lg\:group-\[\.is-active\]\/petal\:h-\[358px\]{
    height: 358px;
  }

  .group\/petal.is-active .lg\:group-\[\.is-active\]\/petal\:h-\[60px\]{
    height: 60px;
  }

  .group\/petal.is-active .lg\:group-\[\.is-active\]\/petal\:w-\[475px\]{
    width: 475px;
  }

  .group\/petal.is-active .lg\:group-\[\.is-active\]\/petal\:w-\[60px\]{
    width: 60px;
  }
}

@media (min-width: 1280px){
  .xl\:top-auto{
    top: auto;
  }

  .xl\:mx-auto{
    margin-left: auto;
    margin-right: auto;
  }

  .xl\:mb-\[70px\]{
    margin-bottom: 70px;
  }

  .xl\:mr-\[40px\]{
    margin-right: 40px;
  }

  .xl\:inline-block{
    display: inline-block;
  }

  .xl\:w-\[35\%\]{
    width: 35%;
  }

  .xl\:grid-cols-4{
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .xl\:gap-\[10px\]{
    gap: 10px;
  }

  .xl\:gap-\[180px\]{
    gap: 180px;
  }

  .xl\:gap-\[30px\]{
    gap: 30px;
  }

  .xl\:gap-\[76px\]{
    gap: 76px;
  }

  .xl\:gap-\[80px\]{
    gap: 80px;
  }

  .xl\:gap-\[84px\]{
    gap: 84px;
  }

  .xl\:px-0{
    padding-left: 0px;
    padding-right: 0px;
  }

  .xl\:px-\[138px\]{
    padding-left: 138px;
    padding-right: 138px;
  }

  .xl\:px-\[140px\]{
    padding-left: 140px;
    padding-right: 140px;
  }

  .xl\:pb-\[12px\]{
    padding-bottom: 12px;
  }

  .xl\:pb-\[130px\]{
    padding-bottom: 130px;
  }

  .xl\:pb-\[50px\]{
    padding-bottom: 50px;
  }

  .xl\:pb-\[52px\]{
    padding-bottom: 52px;
  }

  .xl\:pb-\[70px\]{
    padding-bottom: 70px;
  }

  .xl\:pl-\[28px\]{
    padding-left: 28px;
  }

  .xl\:pr-\[50px\]{
    padding-right: 50px;
  }

  .xl\:pt-\[120px\]{
    padding-top: 120px;
  }

  .xl\:pt-\[130px\]{
    padding-top: 130px;
  }

  .xl\:pt-\[52px\]{
    padding-top: 52px;
  }

  .xl\:pt-\[80px\]{
    padding-top: 80px;
  }

  .xl\:text-right{
    text-align: right;
  }

  .xl\:text-\[18px\]{
    font-size: 18px;
  }

  .xl\:text-\[44px\]{
    font-size: 44px;
  }

  .xl\:leading-\[30px\]{
    line-height: 30px;
  }

  .xl\:leading-\[48px\]{
    line-height: 48px;
  }
}

@media (min-width: 1536px){
  .\32xl\:left-\[-50px\]{
    left: -50px;
  }

  .\32xl\:right-\[-50px\]{
    right: -50px;
  }
}

.\[\&amp;\.field-validation-error\]\:block.field-validation-error{
  display: block;
}

.\[\&amp;\.open\]\:h-\[600px\].open{
  height: 600px;
}

.\[\&amp;\.open\]\:opacity-100.open{
  opacity: 1;
}

.\[\&amp;\.show\]\:opacity-100.show{
  opacity: 1;
}

.\[\&amp;\&gt;\*\]\:overflow-hidden&gt;*{
  overflow: hidden;
}

.\[\&amp;\[hidden\]\]\:grid-rows-\[0fr\][hidden]{
  grid-template-rows: 0fr;
}

.\[\&amp;_path\]\:stroke-transparent path{
  stroke: transparent;
}</pre></body></html>