@import '../fonts/SegoeUI.css';
@import 'https://fonts.googleapis.com/css2?family=Antonio:wght@100..700&family=Archivo+Narrow:ital,wght@0,400..700;1,400..700&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Prompt:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto+Condensed:ital,wght@0,100..900;1,100..900&display=swap';
:root {
  --dade-black: #000;
  --dade-white: #fff;
  --dade-gray: #666666;
  --dade-white-rgb: 255, 255, 255;
  --dade-black-rgb: 0, 0, 0;
  --dade-body-color-rgb: 9, 59, 30;
  --dade-body-bg-rgb: 164, 191, 150;
  --dade-font-sans-serif: 'Prompt', system-ui;
  --dade-font-monospace: SFMono-Regular, Menlo, Monaco, Consolas,
    'Liberation Mono', 'Courier New', monospace;
  --dade-gradient: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.15),
    rgba(255, 255, 255, 0)
  );
  --dade-body-font-family: var(--dade-font-sans-serif);
  --dade-body-font-size: 1rem;
  --dade-body-font-weight: 400;
  --dade-body-line-height: 1.7;
  --dade-body-color: #093b1e;
  --dade-body-bg: #a4bf96;
  --dade-border-width: 1px;
  --dade-border-style: solid;
  --dade-border-color: #dee2e6;
  --dade-border-color-translucent: rgba(0, 0, 0, 0.175);
  --dade-border-radius: 0.375rem;
  --dade-border-radius-sm: 0.25rem;
  --dade-border-radius-lg: 0.5rem;
  --dade-border-radius-xl: 1rem;
  --dade-border-radius-2xl: 2rem;
  --dade-border-radius-pill: 50rem;
  --dade-link-color: #0d6efd;
  --dade-link-hover-color: #0a58ca;
  --dade-code-color: #d63384;
  --dade-highlight-bg: #fff3cd;
}
:root {
  --dade-root-font-size: 14px;
  --dade-page-max-width: 100%;
  --dade-container-gutter-x: 60px;
  --dade-container-offset-x: var(--dade-container-gutter-x);
  --dade-container-max-width: calc(
    var(--dade-page-max-width) - var(--dade-container-gutter-x)
  );
  --dade-container-max-width: 78.67rem;
}
@media (min-width: 1280px) {
  :root {
    --dade-container-max-width: 1361px;
    --dade-container-offset-x: calc(
      var(--dade-page-max-width) - var(--dade-container-max-width)
    );
  }
}
@media (min-width: 1600px) {
  :root {
    --dade-container-max-width: 1702px;
  }
}
@media (min-width: 1280px) {
  :root {
    --dade-root-font-size: 17.3px;
    --dade-container-gutter-x: 7.4rem;
    --dade-page-max-width: 1600px;
  }
}
@media (min-width: 1600px) {
  :root {
    --dade-root-font-size: 21.63px;
    --dade-page-max-width: 1701.55px;
  }
}
*,
*::before,
*::after {
  box-sizing: border-box;
}
@media (prefers-reduced-motion: no-preference) {
  :root {
    scroll-behavior: smooth;
  }
}
body {
  margin: 0;
  font-family: var(--dade-body-font-family);
  font-size: var(--dade-body-font-size);
  font-weight: var(--dade-body-font-weight);
  line-height: var(--dade-body-line-height);
  color: var(--dade-body-color);
  text-align: var(--dade-body-text-align);
  background-color: var(--dade-body-bg);
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
hr {
  margin: 1rem 0;
  color: inherit;
  border: 0;
  border-top: 1px solid;
  opacity: 0.25;
}
h6,
h5,
h4,
h3,
h2,
h1 {
  margin-top: 0;
  margin-bottom: 0.5rem;
  font-weight: 700;
  line-height: 1.2;
}
h1 {
  font-size: calc(1.375rem + 1.5vw);
}
@media (min-width: 1200px) {
  h1 {
    font-size: 2.5rem;
  }
}
h2 {
  font-size: calc(1.325rem + 0.9vw);
}
@media (min-width: 1200px) {
  h2 {
    font-size: 2rem;
  }
}
h3 {
  font-size: calc(1.3rem + 0.6vw);
}
@media (min-width: 1200px) {
  h3 {
    font-size: 1.75rem;
  }
}
h4 {
  font-size: calc(1.275rem + 0.3vw);
}
@media (min-width: 1200px) {
  h4 {
    font-size: 1.5rem;
  }
}
h5 {
  font-size: 1.25rem;
}
h6 {
  font-size: 1rem;
}
p {
  margin-top: 0;
  margin-bottom: 1rem;
}
abbr[title] {
  -webkit-text-decoration: underline dotted;
  text-decoration: underline dotted;
  cursor: help;
  -webkit-text-decoration-skip-ink: none;
  text-decoration-skip-ink: none;
}
address {
  margin-bottom: 1rem;
  font-style: normal;
  line-height: inherit;
}
ol,
ul {
  padding-left: 2rem;
}
ol,
ul,
dl {
  margin-top: 0;
  margin-bottom: 1rem;
}
ol ol,
ul ul,
ol ul,
ul ol {
  margin-bottom: 0;
}
dt {
  font-weight: 700;
}
dd {
  margin-bottom: 0.5rem;
  margin-left: 0;
}
blockquote {
  margin: 0 0 1rem;
}
b,
strong {
  font-weight: 700;
}
small {
  font-size: 0.875em;
}
mark {
  padding: 0.1875em;
  background-color: var(--dade-highlight-bg);
}
sub,
sup {
  position: relative;
  font-size: 0.75em;
  line-height: 0;
  vertical-align: baseline;
}
sub {
  bottom: -0.25em;
}
sup {
  top: -0.5em;
}
a {
  color: var(--dade-link-color);
  text-decoration: underline;
}
a:hover {
  color: var(--dade-link-hover-color);
}
a:not([href]):not([class]),
a:not([href]):not([class]):hover {
  color: inherit;
  text-decoration: none;
}
pre,
code,
kbd,
samp {
  font-family: var(--dade-font-monospace);
  font-size: 1em;
}
pre {
  display: block;
  margin-top: 0;
  margin-bottom: 1rem;
  overflow: auto;
  font-size: 0.875em;
}
pre code {
  font-size: inherit;
  color: inherit;
  word-break: normal;
}
code {
  font-size: 0.875em;
  color: var(--dade-code-color);
  word-wrap: break-word;
}
a > code {
  color: inherit;
}
kbd {
  padding: 0.1875rem 0.375rem;
  font-size: 0.875em;
  color: var(--dade-body-bg);
  background-color: var(--dade-body-color);
  border-radius: 0.25rem;
}
kbd kbd {
  padding: 0;
  font-size: 1em;
}
figure {
  margin: 0 0 1rem;
}
img,
svg {
  vertical-align: middle;
}
table {
  caption-side: bottom;
  border-collapse: collapse;
}
caption {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  color: #6c757d;
  text-align: left;
}
th {
  text-align: inherit;
  text-align: -webkit-match-parent;
}
thead,
tbody,
tfoot,
tr,
td,
th {
  border-color: inherit;
  border-style: solid;
  border-width: 0;
}
label {
  display: inline-block;
}
button {
  border-radius: 0;
}
button:focus:not(:focus-visible) {
  outline: 0;
}
input,
button,
select,
optgroup,
textarea {
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}
button,
select {
  text-transform: none;
}
[role='button'] {
  cursor: pointer;
}
select {
  word-wrap: normal;
}
select:disabled {
  opacity: 1;
}
[list]:not([type='date']):not([type='datetime-local']):not([type='month']):not(
    [type='week']
  ):not([type='time'])::-webkit-calendar-picker-indicator {
  display: none !important;
}
button,
[type='button'],
[type='reset'],
[type='submit'] {
  -webkit-appearance: button;
}
button:not(:disabled),
[type='button']:not(:disabled),
[type='reset']:not(:disabled),
[type='submit']:not(:disabled) {
  cursor: pointer;
}
::-moz-focus-inner {
  padding: 0;
  border-style: none;
}
textarea {
  resize: vertical;
}
fieldset {
  min-width: 0;
  padding: 0;
  margin: 0;
  border: 0;
}
legend {
  float: left;
  width: 100%;
  padding: 0;
  margin-bottom: 0.5rem;
  font-size: calc(1.275rem + 0.3vw);
  line-height: inherit;
}
@media (min-width: 1200px) {
  legend {
    font-size: 1.5rem;
  }
}
legend + * {
  clear: left;
}
::-webkit-datetime-edit-fields-wrapper,
::-webkit-datetime-edit-text,
::-webkit-datetime-edit-minute,
::-webkit-datetime-edit-hour-field,
::-webkit-datetime-edit-day-field,
::-webkit-datetime-edit-month-field,
::-webkit-datetime-edit-year-field {
  padding: 0;
}
::-webkit-inner-spin-button {
  height: auto;
}
[type='search'] {
  outline-offset: -2px;
  -webkit-appearance: textfield;
}
::-webkit-search-decoration {
  -webkit-appearance: none;
}
::-webkit-color-swatch-wrapper {
  padding: 0;
}
::file-selector-button {
  font: inherit;
  -webkit-appearance: button;
}
output {
  display: inline-block;
}
iframe {
  border: 0;
}
summary {
  display: list-item;
  cursor: pointer;
}
progress {
  vertical-align: baseline;
}
[hidden] {
  display: none !important;
}
.fade {
  transition: opacity 0.15s linear;
}
@media (prefers-reduced-motion: reduce) {
  .fade {
    transition: none;
  }
}
.fade:not(.show) {
  opacity: 0;
}
.collapse:not(.show) {
  display: none;
}
.collapsing {
  height: 0;
  overflow: hidden;
  transition: height 0.35s ease;
}
@media (prefers-reduced-motion: reduce) {
  .collapsing {
    transition: none;
  }
}
.collapsing.collapse-horizontal {
  width: 0;
  height: auto;
  transition: width 0.35s ease;
}
@media (prefers-reduced-motion: reduce) {
  .collapsing.collapse-horizontal {
    transition: none;
  }
}
.d-none {
  display: none !important;
}
.d-block {
  display: block !important;
}
.d-inline-block {
  display: inline-block !important;
}
.d-inherit {
  display: inherit !important;
}
.d-reset {
  display: initial !important;
}
.text-left {
  text-align: left !important;
}
.text-right {
  text-align: right !important;
}
.text-center {
  text-align: center !important;
}
.text-justify {
  text-align: justify !important;
}
.uppercase {
  text-transform: uppercase !important;
}
.lowercase {
  text-transform: lowercase !important;
}
.capitalize {
  text-transform: capitalize !important;
}
.normal-case {
  text-transform: none !important;
}
.italic {
  font-style: italic !important;
}
.not-italic {
  font-style: normal !important;
}
.font-light {
  font-weight: 300 !important;
}
.font-normal {
  font-weight: 400 !important;
}
.font-medium {
  font-weight: 500 !important;
}
.font-semibold {
  font-weight: 600 !important;
}
.font-bold {
  font-weight: 700 !important;
}
.font-extrabold {
  font-weight: 800 !important;
}
.text-black {
  color: #000 !important;
}
.text-white {
  color: #fff !important;
}
.text-gray {
  color: #666 !important;
}
.text-body {
  color: #093b1e !important;
}
.text-inherit {
  color: inherit !important;
}
.bg-black {
  background-color: #000 !important;
}
.bg-white {
  background-color: #fff !important;
}
.bg-gray {
  background-color: #666 !important;
}
.m-0 {
  margin: 0 !important;
}
.m-1 {
  margin: 0.25rem !important;
}
.m-2 {
  margin: 0.5rem !important;
}
.m-3 {
  margin: 1rem !important;
}
.m-4 {
  margin: 1.5rem !important;
}
.m-5 {
  margin: 3rem !important;
}
.m-auto {
  margin: auto !important;
}
.mx-0 {
  margin-right: 0 !important;
  margin-left: 0 !important;
}
.mx-1 {
  margin-right: 0.25rem !important;
  margin-left: 0.25rem !important;
}
.mx-2 {
  margin-right: 0.5rem !important;
  margin-left: 0.5rem !important;
}
.mx-3 {
  margin-right: 1rem !important;
  margin-left: 1rem !important;
}
.mx-4 {
  margin-right: 1.5rem !important;
  margin-left: 1.5rem !important;
}
.mx-5 {
  margin-right: 3rem !important;
  margin-left: 3rem !important;
}
.mx-auto {
  margin-right: auto !important;
  margin-left: auto !important;
}
.my-0 {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}
.my-1 {
  margin-top: 0.25rem !important;
  margin-bottom: 0.25rem !important;
}
.my-2 {
  margin-top: 0.5rem !important;
  margin-bottom: 0.5rem !important;
}
.my-3 {
  margin-top: 1rem !important;
  margin-bottom: 1rem !important;
}
.my-4 {
  margin-top: 1.5rem !important;
  margin-bottom: 1.5rem !important;
}
.my-5 {
  margin-top: 3rem !important;
  margin-bottom: 3rem !important;
}
.my-auto {
  margin-top: auto !important;
  margin-bottom: auto !important;
}
.mt-0 {
  margin-top: 0 !important;
}
.mt-1 {
  margin-top: 0.25rem !important;
}
.mt-2 {
  margin-top: 0.5rem !important;
}
.mt-3 {
  margin-top: 1rem !important;
}
.mt-4 {
  margin-top: 1.5rem !important;
}
.mt-5 {
  margin-top: 3rem !important;
}
.mt-auto {
  margin-top: auto !important;
}
.mr-0 {
  margin-right: 0 !important;
}
.mr-1 {
  margin-right: 0.25rem !important;
}
.mr-2 {
  margin-right: 0.5rem !important;
}
.mr-3 {
  margin-right: 1rem !important;
}
.mr-4 {
  margin-right: 1.5rem !important;
}
.mr-5 {
  margin-right: 3rem !important;
}
.mr-auto {
  margin-right: auto !important;
}
.mb-0 {
  margin-bottom: 0 !important;
}
.mb-1 {
  margin-bottom: 0.25rem !important;
}
.mb-2 {
  margin-bottom: 0.5rem !important;
}
.mb-3 {
  margin-bottom: 1rem !important;
}
.mb-4 {
  margin-bottom: 1.5rem !important;
}
.mb-5 {
  margin-bottom: 3rem !important;
}
.mb-auto {
  margin-bottom: auto !important;
}
.ml-0 {
  margin-left: 0 !important;
}
.ml-1 {
  margin-left: 0.25rem !important;
}
.ml-2 {
  margin-left: 0.5rem !important;
}
.ml-3 {
  margin-left: 1rem !important;
}
.ml-4 {
  margin-left: 1.5rem !important;
}
.ml-5 {
  margin-left: 3rem !important;
}
.ml-auto {
  margin-left: auto !important;
}
.p-0 {
  padding: 0 !important;
}
.p-1 {
  padding: 0.25rem !important;
}
.p-2 {
  padding: 0.5rem !important;
}
.p-3 {
  padding: 1rem !important;
}
.p-4 {
  padding: 1.5rem !important;
}
.p-5 {
  padding: 3rem !important;
}
.px-0 {
  padding-right: 0 !important;
  padding-left: 0 !important;
}
.px-1 {
  padding-right: 0.25rem !important;
  padding-left: 0.25rem !important;
}
.px-2 {
  padding-right: 0.5rem !important;
  padding-left: 0.5rem !important;
}
.px-3 {
  padding-right: 1rem !important;
  padding-left: 1rem !important;
}
.px-4 {
  padding-right: 1.5rem !important;
  padding-left: 1.5rem !important;
}
.px-5 {
  padding-right: 3rem !important;
  padding-left: 3rem !important;
}
.py-0 {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}
.py-1 {
  padding-top: 0.25rem !important;
  padding-bottom: 0.25rem !important;
}
.py-2 {
  padding-top: 0.5rem !important;
  padding-bottom: 0.5rem !important;
}
.py-3 {
  padding-top: 1rem !important;
  padding-bottom: 1rem !important;
}
.py-4 {
  padding-top: 1.5rem !important;
  padding-bottom: 1.5rem !important;
}
.py-5 {
  padding-top: 3rem !important;
  padding-bottom: 3rem !important;
}
.pt-0 {
  padding-top: 0 !important;
}
.pt-1 {
  padding-top: 0.25rem !important;
}
.pt-2 {
  padding-top: 0.5rem !important;
}
.pt-3 {
  padding-top: 1rem !important;
}
.pt-4 {
  padding-top: 1.5rem !important;
}
.pt-5 {
  padding-top: 3rem !important;
}
.pr-0 {
  padding-right: 0 !important;
}
.pr-1 {
  padding-right: 0.25rem !important;
}
.pr-2 {
  padding-right: 0.5rem !important;
}
.pr-3 {
  padding-right: 1rem !important;
}
.pr-4 {
  padding-right: 1.5rem !important;
}
.pr-5 {
  padding-right: 3rem !important;
}
.pb-0 {
  padding-bottom: 0 !important;
}
.pb-1 {
  padding-bottom: 0.25rem !important;
}
.pb-2 {
  padding-bottom: 0.5rem !important;
}
.pb-3 {
  padding-bottom: 1rem !important;
}
.pb-4 {
  padding-bottom: 1.5rem !important;
}
.pb-5 {
  padding-bottom: 3rem !important;
}
.pl-0 {
  padding-left: 0 !important;
}
.pl-1 {
  padding-left: 0.25rem !important;
}
.pl-2 {
  padding-left: 0.5rem !important;
}
.pl-3 {
  padding-left: 1rem !important;
}
.pl-4 {
  padding-left: 1.5rem !important;
}
.pl-5 {
  padding-left: 3rem !important;
}
@media (min-width: 576px) {
  .d-sm-none {
    display: none !important;
  }
  .d-sm-block {
    display: block !important;
  }
  .d-sm-inline-block {
    display: inline-block !important;
  }
  .d-sm-inherit {
    display: inherit !important;
  }
  .d-sm-reset {
    display: initial !important;
  }
  .text-sm-left {
    text-align: left !important;
  }
  .text-sm-right {
    text-align: right !important;
  }
  .text-sm-center {
    text-align: center !important;
  }
  .text-sm-justify {
    text-align: justify !important;
  }
  .m-sm-0 {
    margin: 0 !important;
  }
  .m-sm-1 {
    margin: 0.25rem !important;
  }
  .m-sm-2 {
    margin: 0.5rem !important;
  }
  .m-sm-3 {
    margin: 1rem !important;
  }
  .m-sm-4 {
    margin: 1.5rem !important;
  }
  .m-sm-5 {
    margin: 3rem !important;
  }
  .m-sm-auto {
    margin: auto !important;
  }
  .mx-sm-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .mx-sm-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }
  .mx-sm-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }
  .mx-sm-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  .mx-sm-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }
  .mx-sm-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
  .mx-sm-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }
  .my-sm-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .my-sm-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
  .my-sm-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .my-sm-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .my-sm-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .my-sm-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .my-sm-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .mt-sm-0 {
    margin-top: 0 !important;
  }
  .mt-sm-1 {
    margin-top: 0.25rem !important;
  }
  .mt-sm-2 {
    margin-top: 0.5rem !important;
  }
  .mt-sm-3 {
    margin-top: 1rem !important;
  }
  .mt-sm-4 {
    margin-top: 1.5rem !important;
  }
  .mt-sm-5 {
    margin-top: 3rem !important;
  }
  .mt-sm-auto {
    margin-top: auto !important;
  }
  .mr-sm-0 {
    margin-right: 0 !important;
  }
  .mr-sm-1 {
    margin-right: 0.25rem !important;
  }
  .mr-sm-2 {
    margin-right: 0.5rem !important;
  }
  .mr-sm-3 {
    margin-right: 1rem !important;
  }
  .mr-sm-4 {
    margin-right: 1.5rem !important;
  }
  .mr-sm-5 {
    margin-right: 3rem !important;
  }
  .mr-sm-auto {
    margin-right: auto !important;
  }
  .mb-sm-0 {
    margin-bottom: 0 !important;
  }
  .mb-sm-1 {
    margin-bottom: 0.25rem !important;
  }
  .mb-sm-2 {
    margin-bottom: 0.5rem !important;
  }
  .mb-sm-3 {
    margin-bottom: 1rem !important;
  }
  .mb-sm-4 {
    margin-bottom: 1.5rem !important;
  }
  .mb-sm-5 {
    margin-bottom: 3rem !important;
  }
  .mb-sm-auto {
    margin-bottom: auto !important;
  }
  .ml-sm-0 {
    margin-left: 0 !important;
  }
  .ml-sm-1 {
    margin-left: 0.25rem !important;
  }
  .ml-sm-2 {
    margin-left: 0.5rem !important;
  }
  .ml-sm-3 {
    margin-left: 1rem !important;
  }
  .ml-sm-4 {
    margin-left: 1.5rem !important;
  }
  .ml-sm-5 {
    margin-left: 3rem !important;
  }
  .ml-sm-auto {
    margin-left: auto !important;
  }
  .p-sm-0 {
    padding: 0 !important;
  }
  .p-sm-1 {
    padding: 0.25rem !important;
  }
  .p-sm-2 {
    padding: 0.5rem !important;
  }
  .p-sm-3 {
    padding: 1rem !important;
  }
  .p-sm-4 {
    padding: 1.5rem !important;
  }
  .p-sm-5 {
    padding: 3rem !important;
  }
  .px-sm-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .px-sm-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }
  .px-sm-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  .px-sm-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  .px-sm-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }
  .px-sm-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
  .py-sm-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .py-sm-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
  .py-sm-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .py-sm-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .py-sm-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .py-sm-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .pt-sm-0 {
    padding-top: 0 !important;
  }
  .pt-sm-1 {
    padding-top: 0.25rem !important;
  }
  .pt-sm-2 {
    padding-top: 0.5rem !important;
  }
  .pt-sm-3 {
    padding-top: 1rem !important;
  }
  .pt-sm-4 {
    padding-top: 1.5rem !important;
  }
  .pt-sm-5 {
    padding-top: 3rem !important;
  }
  .pr-sm-0 {
    padding-right: 0 !important;
  }
  .pr-sm-1 {
    padding-right: 0.25rem !important;
  }
  .pr-sm-2 {
    padding-right: 0.5rem !important;
  }
  .pr-sm-3 {
    padding-right: 1rem !important;
  }
  .pr-sm-4 {
    padding-right: 1.5rem !important;
  }
  .pr-sm-5 {
    padding-right: 3rem !important;
  }
  .pb-sm-0 {
    padding-bottom: 0 !important;
  }
  .pb-sm-1 {
    padding-bottom: 0.25rem !important;
  }
  .pb-sm-2 {
    padding-bottom: 0.5rem !important;
  }
  .pb-sm-3 {
    padding-bottom: 1rem !important;
  }
  .pb-sm-4 {
    padding-bottom: 1.5rem !important;
  }
  .pb-sm-5 {
    padding-bottom: 3rem !important;
  }
  .pl-sm-0 {
    padding-left: 0 !important;
  }
  .pl-sm-1 {
    padding-left: 0.25rem !important;
  }
  .pl-sm-2 {
    padding-left: 0.5rem !important;
  }
  .pl-sm-3 {
    padding-left: 1rem !important;
  }
  .pl-sm-4 {
    padding-left: 1.5rem !important;
  }
  .pl-sm-5 {
    padding-left: 3rem !important;
  }
}
@media (min-width: 768px) {
  .d-md-none {
    display: none !important;
  }
  .d-md-block {
    display: block !important;
  }
  .d-md-inline-block {
    display: inline-block !important;
  }
  .d-md-inherit {
    display: inherit !important;
  }
  .d-md-reset {
    display: initial !important;
  }
  .text-md-left {
    text-align: left !important;
  }
  .text-md-right {
    text-align: right !important;
  }
  .text-md-center {
    text-align: center !important;
  }
  .text-md-justify {
    text-align: justify !important;
  }
  .m-md-0 {
    margin: 0 !important;
  }
  .m-md-1 {
    margin: 0.25rem !important;
  }
  .m-md-2 {
    margin: 0.5rem !important;
  }
  .m-md-3 {
    margin: 1rem !important;
  }
  .m-md-4 {
    margin: 1.5rem !important;
  }
  .m-md-5 {
    margin: 3rem !important;
  }
  .m-md-auto {
    margin: auto !important;
  }
  .mx-md-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .mx-md-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }
  .mx-md-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }
  .mx-md-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  .mx-md-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }
  .mx-md-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
  .mx-md-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }
  .my-md-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .my-md-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
  .my-md-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .my-md-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .my-md-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .my-md-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .my-md-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .mt-md-0 {
    margin-top: 0 !important;
  }
  .mt-md-1 {
    margin-top: 0.25rem !important;
  }
  .mt-md-2 {
    margin-top: 0.5rem !important;
  }
  .mt-md-3 {
    margin-top: 1rem !important;
  }
  .mt-md-4 {
    margin-top: 1.5rem !important;
  }
  .mt-md-5 {
    margin-top: 3rem !important;
  }
  .mt-md-auto {
    margin-top: auto !important;
  }
  .mr-md-0 {
    margin-right: 0 !important;
  }
  .mr-md-1 {
    margin-right: 0.25rem !important;
  }
  .mr-md-2 {
    margin-right: 0.5rem !important;
  }
  .mr-md-3 {
    margin-right: 1rem !important;
  }
  .mr-md-4 {
    margin-right: 1.5rem !important;
  }
  .mr-md-5 {
    margin-right: 3rem !important;
  }
  .mr-md-auto {
    margin-right: auto !important;
  }
  .mb-md-0 {
    margin-bottom: 0 !important;
  }
  .mb-md-1 {
    margin-bottom: 0.25rem !important;
  }
  .mb-md-2 {
    margin-bottom: 0.5rem !important;
  }
  .mb-md-3 {
    margin-bottom: 1rem !important;
  }
  .mb-md-4 {
    margin-bottom: 1.5rem !important;
  }
  .mb-md-5 {
    margin-bottom: 3rem !important;
  }
  .mb-md-auto {
    margin-bottom: auto !important;
  }
  .ml-md-0 {
    margin-left: 0 !important;
  }
  .ml-md-1 {
    margin-left: 0.25rem !important;
  }
  .ml-md-2 {
    margin-left: 0.5rem !important;
  }
  .ml-md-3 {
    margin-left: 1rem !important;
  }
  .ml-md-4 {
    margin-left: 1.5rem !important;
  }
  .ml-md-5 {
    margin-left: 3rem !important;
  }
  .ml-md-auto {
    margin-left: auto !important;
  }
  .p-md-0 {
    padding: 0 !important;
  }
  .p-md-1 {
    padding: 0.25rem !important;
  }
  .p-md-2 {
    padding: 0.5rem !important;
  }
  .p-md-3 {
    padding: 1rem !important;
  }
  .p-md-4 {
    padding: 1.5rem !important;
  }
  .p-md-5 {
    padding: 3rem !important;
  }
  .px-md-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .px-md-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }
  .px-md-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  .px-md-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  .px-md-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }
  .px-md-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
  .py-md-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .py-md-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
  .py-md-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .py-md-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .py-md-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .py-md-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .pt-md-0 {
    padding-top: 0 !important;
  }
  .pt-md-1 {
    padding-top: 0.25rem !important;
  }
  .pt-md-2 {
    padding-top: 0.5rem !important;
  }
  .pt-md-3 {
    padding-top: 1rem !important;
  }
  .pt-md-4 {
    padding-top: 1.5rem !important;
  }
  .pt-md-5 {
    padding-top: 3rem !important;
  }
  .pr-md-0 {
    padding-right: 0 !important;
  }
  .pr-md-1 {
    padding-right: 0.25rem !important;
  }
  .pr-md-2 {
    padding-right: 0.5rem !important;
  }
  .pr-md-3 {
    padding-right: 1rem !important;
  }
  .pr-md-4 {
    padding-right: 1.5rem !important;
  }
  .pr-md-5 {
    padding-right: 3rem !important;
  }
  .pb-md-0 {
    padding-bottom: 0 !important;
  }
  .pb-md-1 {
    padding-bottom: 0.25rem !important;
  }
  .pb-md-2 {
    padding-bottom: 0.5rem !important;
  }
  .pb-md-3 {
    padding-bottom: 1rem !important;
  }
  .pb-md-4 {
    padding-bottom: 1.5rem !important;
  }
  .pb-md-5 {
    padding-bottom: 3rem !important;
  }
  .pl-md-0 {
    padding-left: 0 !important;
  }
  .pl-md-1 {
    padding-left: 0.25rem !important;
  }
  .pl-md-2 {
    padding-left: 0.5rem !important;
  }
  .pl-md-3 {
    padding-left: 1rem !important;
  }
  .pl-md-4 {
    padding-left: 1.5rem !important;
  }
  .pl-md-5 {
    padding-left: 3rem !important;
  }
}
@media (min-width: 992px) {
  .d-lg-none {
    display: none !important;
  }
  .d-lg-block {
    display: block !important;
  }
  .d-lg-inline-block {
    display: inline-block !important;
  }
  .d-lg-inherit {
    display: inherit !important;
  }
  .d-lg-reset {
    display: initial !important;
  }
  .text-lg-left {
    text-align: left !important;
  }
  .text-lg-right {
    text-align: right !important;
  }
  .text-lg-center {
    text-align: center !important;
  }
  .text-lg-justify {
    text-align: justify !important;
  }
  .m-lg-0 {
    margin: 0 !important;
  }
  .m-lg-1 {
    margin: 0.25rem !important;
  }
  .m-lg-2 {
    margin: 0.5rem !important;
  }
  .m-lg-3 {
    margin: 1rem !important;
  }
  .m-lg-4 {
    margin: 1.5rem !important;
  }
  .m-lg-5 {
    margin: 3rem !important;
  }
  .m-lg-auto {
    margin: auto !important;
  }
  .mx-lg-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .mx-lg-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }
  .mx-lg-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }
  .mx-lg-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  .mx-lg-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }
  .mx-lg-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
  .mx-lg-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }
  .my-lg-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .my-lg-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
  .my-lg-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .my-lg-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .my-lg-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .my-lg-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .my-lg-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .mt-lg-0 {
    margin-top: 0 !important;
  }
  .mt-lg-1 {
    margin-top: 0.25rem !important;
  }
  .mt-lg-2 {
    margin-top: 0.5rem !important;
  }
  .mt-lg-3 {
    margin-top: 1rem !important;
  }
  .mt-lg-4 {
    margin-top: 1.5rem !important;
  }
  .mt-lg-5 {
    margin-top: 3rem !important;
  }
  .mt-lg-auto {
    margin-top: auto !important;
  }
  .mr-lg-0 {
    margin-right: 0 !important;
  }
  .mr-lg-1 {
    margin-right: 0.25rem !important;
  }
  .mr-lg-2 {
    margin-right: 0.5rem !important;
  }
  .mr-lg-3 {
    margin-right: 1rem !important;
  }
  .mr-lg-4 {
    margin-right: 1.5rem !important;
  }
  .mr-lg-5 {
    margin-right: 3rem !important;
  }
  .mr-lg-auto {
    margin-right: auto !important;
  }
  .mb-lg-0 {
    margin-bottom: 0 !important;
  }
  .mb-lg-1 {
    margin-bottom: 0.25rem !important;
  }
  .mb-lg-2 {
    margin-bottom: 0.5rem !important;
  }
  .mb-lg-3 {
    margin-bottom: 1rem !important;
  }
  .mb-lg-4 {
    margin-bottom: 1.5rem !important;
  }
  .mb-lg-5 {
    margin-bottom: 3rem !important;
  }
  .mb-lg-auto {
    margin-bottom: auto !important;
  }
  .ml-lg-0 {
    margin-left: 0 !important;
  }
  .ml-lg-1 {
    margin-left: 0.25rem !important;
  }
  .ml-lg-2 {
    margin-left: 0.5rem !important;
  }
  .ml-lg-3 {
    margin-left: 1rem !important;
  }
  .ml-lg-4 {
    margin-left: 1.5rem !important;
  }
  .ml-lg-5 {
    margin-left: 3rem !important;
  }
  .ml-lg-auto {
    margin-left: auto !important;
  }
  .p-lg-0 {
    padding: 0 !important;
  }
  .p-lg-1 {
    padding: 0.25rem !important;
  }
  .p-lg-2 {
    padding: 0.5rem !important;
  }
  .p-lg-3 {
    padding: 1rem !important;
  }
  .p-lg-4 {
    padding: 1.5rem !important;
  }
  .p-lg-5 {
    padding: 3rem !important;
  }
  .px-lg-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .px-lg-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }
  .px-lg-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  .px-lg-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  .px-lg-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }
  .px-lg-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
  .py-lg-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .py-lg-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
  .py-lg-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .py-lg-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .py-lg-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .py-lg-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .pt-lg-0 {
    padding-top: 0 !important;
  }
  .pt-lg-1 {
    padding-top: 0.25rem !important;
  }
  .pt-lg-2 {
    padding-top: 0.5rem !important;
  }
  .pt-lg-3 {
    padding-top: 1rem !important;
  }
  .pt-lg-4 {
    padding-top: 1.5rem !important;
  }
  .pt-lg-5 {
    padding-top: 3rem !important;
  }
  .pr-lg-0 {
    padding-right: 0 !important;
  }
  .pr-lg-1 {
    padding-right: 0.25rem !important;
  }
  .pr-lg-2 {
    padding-right: 0.5rem !important;
  }
  .pr-lg-3 {
    padding-right: 1rem !important;
  }
  .pr-lg-4 {
    padding-right: 1.5rem !important;
  }
  .pr-lg-5 {
    padding-right: 3rem !important;
  }
  .pb-lg-0 {
    padding-bottom: 0 !important;
  }
  .pb-lg-1 {
    padding-bottom: 0.25rem !important;
  }
  .pb-lg-2 {
    padding-bottom: 0.5rem !important;
  }
  .pb-lg-3 {
    padding-bottom: 1rem !important;
  }
  .pb-lg-4 {
    padding-bottom: 1.5rem !important;
  }
  .pb-lg-5 {
    padding-bottom: 3rem !important;
  }
  .pl-lg-0 {
    padding-left: 0 !important;
  }
  .pl-lg-1 {
    padding-left: 0.25rem !important;
  }
  .pl-lg-2 {
    padding-left: 0.5rem !important;
  }
  .pl-lg-3 {
    padding-left: 1rem !important;
  }
  .pl-lg-4 {
    padding-left: 1.5rem !important;
  }
  .pl-lg-5 {
    padding-left: 3rem !important;
  }
}
@media (min-width: 1280px) {
  .d-xl-none {
    display: none !important;
  }
  .d-xl-block {
    display: block !important;
  }
  .d-xl-inline-block {
    display: inline-block !important;
  }
  .d-xl-inherit {
    display: inherit !important;
  }
  .d-xl-reset {
    display: initial !important;
  }
  .text-xl-left {
    text-align: left !important;
  }
  .text-xl-right {
    text-align: right !important;
  }
  .text-xl-center {
    text-align: center !important;
  }
  .text-xl-justify {
    text-align: justify !important;
  }
  .m-xl-0 {
    margin: 0 !important;
  }
  .m-xl-1 {
    margin: 0.25rem !important;
  }
  .m-xl-2 {
    margin: 0.5rem !important;
  }
  .m-xl-3 {
    margin: 1rem !important;
  }
  .m-xl-4 {
    margin: 1.5rem !important;
  }
  .m-xl-5 {
    margin: 3rem !important;
  }
  .m-xl-auto {
    margin: auto !important;
  }
  .mx-xl-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .mx-xl-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }
  .mx-xl-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }
  .mx-xl-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  .mx-xl-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }
  .mx-xl-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
  .mx-xl-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }
  .my-xl-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .my-xl-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
  .my-xl-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .my-xl-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .my-xl-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .my-xl-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .my-xl-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .mt-xl-0 {
    margin-top: 0 !important;
  }
  .mt-xl-1 {
    margin-top: 0.25rem !important;
  }
  .mt-xl-2 {
    margin-top: 0.5rem !important;
  }
  .mt-xl-3 {
    margin-top: 1rem !important;
  }
  .mt-xl-4 {
    margin-top: 1.5rem !important;
  }
  .mt-xl-5 {
    margin-top: 3rem !important;
  }
  .mt-xl-auto {
    margin-top: auto !important;
  }
  .mr-xl-0 {
    margin-right: 0 !important;
  }
  .mr-xl-1 {
    margin-right: 0.25rem !important;
  }
  .mr-xl-2 {
    margin-right: 0.5rem !important;
  }
  .mr-xl-3 {
    margin-right: 1rem !important;
  }
  .mr-xl-4 {
    margin-right: 1.5rem !important;
  }
  .mr-xl-5 {
    margin-right: 3rem !important;
  }
  .mr-xl-auto {
    margin-right: auto !important;
  }
  .mb-xl-0 {
    margin-bottom: 0 !important;
  }
  .mb-xl-1 {
    margin-bottom: 0.25rem !important;
  }
  .mb-xl-2 {
    margin-bottom: 0.5rem !important;
  }
  .mb-xl-3 {
    margin-bottom: 1rem !important;
  }
  .mb-xl-4 {
    margin-bottom: 1.5rem !important;
  }
  .mb-xl-5 {
    margin-bottom: 3rem !important;
  }
  .mb-xl-auto {
    margin-bottom: auto !important;
  }
  .ml-xl-0 {
    margin-left: 0 !important;
  }
  .ml-xl-1 {
    margin-left: 0.25rem !important;
  }
  .ml-xl-2 {
    margin-left: 0.5rem !important;
  }
  .ml-xl-3 {
    margin-left: 1rem !important;
  }
  .ml-xl-4 {
    margin-left: 1.5rem !important;
  }
  .ml-xl-5 {
    margin-left: 3rem !important;
  }
  .ml-xl-auto {
    margin-left: auto !important;
  }
  .p-xl-0 {
    padding: 0 !important;
  }
  .p-xl-1 {
    padding: 0.25rem !important;
  }
  .p-xl-2 {
    padding: 0.5rem !important;
  }
  .p-xl-3 {
    padding: 1rem !important;
  }
  .p-xl-4 {
    padding: 1.5rem !important;
  }
  .p-xl-5 {
    padding: 3rem !important;
  }
  .px-xl-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .px-xl-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }
  .px-xl-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  .px-xl-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  .px-xl-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }
  .px-xl-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
  .py-xl-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .py-xl-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
  .py-xl-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .py-xl-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .py-xl-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .py-xl-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .pt-xl-0 {
    padding-top: 0 !important;
  }
  .pt-xl-1 {
    padding-top: 0.25rem !important;
  }
  .pt-xl-2 {
    padding-top: 0.5rem !important;
  }
  .pt-xl-3 {
    padding-top: 1rem !important;
  }
  .pt-xl-4 {
    padding-top: 1.5rem !important;
  }
  .pt-xl-5 {
    padding-top: 3rem !important;
  }
  .pr-xl-0 {
    padding-right: 0 !important;
  }
  .pr-xl-1 {
    padding-right: 0.25rem !important;
  }
  .pr-xl-2 {
    padding-right: 0.5rem !important;
  }
  .pr-xl-3 {
    padding-right: 1rem !important;
  }
  .pr-xl-4 {
    padding-right: 1.5rem !important;
  }
  .pr-xl-5 {
    padding-right: 3rem !important;
  }
  .pb-xl-0 {
    padding-bottom: 0 !important;
  }
  .pb-xl-1 {
    padding-bottom: 0.25rem !important;
  }
  .pb-xl-2 {
    padding-bottom: 0.5rem !important;
  }
  .pb-xl-3 {
    padding-bottom: 1rem !important;
  }
  .pb-xl-4 {
    padding-bottom: 1.5rem !important;
  }
  .pb-xl-5 {
    padding-bottom: 3rem !important;
  }
  .pl-xl-0 {
    padding-left: 0 !important;
  }
  .pl-xl-1 {
    padding-left: 0.25rem !important;
  }
  .pl-xl-2 {
    padding-left: 0.5rem !important;
  }
  .pl-xl-3 {
    padding-left: 1rem !important;
  }
  .pl-xl-4 {
    padding-left: 1.5rem !important;
  }
  .pl-xl-5 {
    padding-left: 3rem !important;
  }
}
@media (min-width: 1600px) {
  .d-xxl-none {
    display: none !important;
  }
  .d-xxl-block {
    display: block !important;
  }
  .d-xxl-inline-block {
    display: inline-block !important;
  }
  .d-xxl-inherit {
    display: inherit !important;
  }
  .d-xxl-reset {
    display: initial !important;
  }
  .text-xxl-left {
    text-align: left !important;
  }
  .text-xxl-right {
    text-align: right !important;
  }
  .text-xxl-center {
    text-align: center !important;
  }
  .text-xxl-justify {
    text-align: justify !important;
  }
  .m-xxl-0 {
    margin: 0 !important;
  }
  .m-xxl-1 {
    margin: 0.25rem !important;
  }
  .m-xxl-2 {
    margin: 0.5rem !important;
  }
  .m-xxl-3 {
    margin: 1rem !important;
  }
  .m-xxl-4 {
    margin: 1.5rem !important;
  }
  .m-xxl-5 {
    margin: 3rem !important;
  }
  .m-xxl-auto {
    margin: auto !important;
  }
  .mx-xxl-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .mx-xxl-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }
  .mx-xxl-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }
  .mx-xxl-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  .mx-xxl-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }
  .mx-xxl-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
  .mx-xxl-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }
  .my-xxl-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .my-xxl-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
  .my-xxl-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .my-xxl-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .my-xxl-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .my-xxl-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .my-xxl-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .mt-xxl-0 {
    margin-top: 0 !important;
  }
  .mt-xxl-1 {
    margin-top: 0.25rem !important;
  }
  .mt-xxl-2 {
    margin-top: 0.5rem !important;
  }
  .mt-xxl-3 {
    margin-top: 1rem !important;
  }
  .mt-xxl-4 {
    margin-top: 1.5rem !important;
  }
  .mt-xxl-5 {
    margin-top: 3rem !important;
  }
  .mt-xxl-auto {
    margin-top: auto !important;
  }
  .mr-xxl-0 {
    margin-right: 0 !important;
  }
  .mr-xxl-1 {
    margin-right: 0.25rem !important;
  }
  .mr-xxl-2 {
    margin-right: 0.5rem !important;
  }
  .mr-xxl-3 {
    margin-right: 1rem !important;
  }
  .mr-xxl-4 {
    margin-right: 1.5rem !important;
  }
  .mr-xxl-5 {
    margin-right: 3rem !important;
  }
  .mr-xxl-auto {
    margin-right: auto !important;
  }
  .mb-xxl-0 {
    margin-bottom: 0 !important;
  }
  .mb-xxl-1 {
    margin-bottom: 0.25rem !important;
  }
  .mb-xxl-2 {
    margin-bottom: 0.5rem !important;
  }
  .mb-xxl-3 {
    margin-bottom: 1rem !important;
  }
  .mb-xxl-4 {
    margin-bottom: 1.5rem !important;
  }
  .mb-xxl-5 {
    margin-bottom: 3rem !important;
  }
  .mb-xxl-auto {
    margin-bottom: auto !important;
  }
  .ml-xxl-0 {
    margin-left: 0 !important;
  }
  .ml-xxl-1 {
    margin-left: 0.25rem !important;
  }
  .ml-xxl-2 {
    margin-left: 0.5rem !important;
  }
  .ml-xxl-3 {
    margin-left: 1rem !important;
  }
  .ml-xxl-4 {
    margin-left: 1.5rem !important;
  }
  .ml-xxl-5 {
    margin-left: 3rem !important;
  }
  .ml-xxl-auto {
    margin-left: auto !important;
  }
  .p-xxl-0 {
    padding: 0 !important;
  }
  .p-xxl-1 {
    padding: 0.25rem !important;
  }
  .p-xxl-2 {
    padding: 0.5rem !important;
  }
  .p-xxl-3 {
    padding: 1rem !important;
  }
  .p-xxl-4 {
    padding: 1.5rem !important;
  }
  .p-xxl-5 {
    padding: 3rem !important;
  }
  .px-xxl-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .px-xxl-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }
  .px-xxl-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  .px-xxl-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  .px-xxl-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }
  .px-xxl-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
  .py-xxl-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .py-xxl-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
  .py-xxl-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .py-xxl-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .py-xxl-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .py-xxl-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .pt-xxl-0 {
    padding-top: 0 !important;
  }
  .pt-xxl-1 {
    padding-top: 0.25rem !important;
  }
  .pt-xxl-2 {
    padding-top: 0.5rem !important;
  }
  .pt-xxl-3 {
    padding-top: 1rem !important;
  }
  .pt-xxl-4 {
    padding-top: 1.5rem !important;
  }
  .pt-xxl-5 {
    padding-top: 3rem !important;
  }
  .pr-xxl-0 {
    padding-right: 0 !important;
  }
  .pr-xxl-1 {
    padding-right: 0.25rem !important;
  }
  .pr-xxl-2 {
    padding-right: 0.5rem !important;
  }
  .pr-xxl-3 {
    padding-right: 1rem !important;
  }
  .pr-xxl-4 {
    padding-right: 1.5rem !important;
  }
  .pr-xxl-5 {
    padding-right: 3rem !important;
  }
  .pb-xxl-0 {
    padding-bottom: 0 !important;
  }
  .pb-xxl-1 {
    padding-bottom: 0.25rem !important;
  }
  .pb-xxl-2 {
    padding-bottom: 0.5rem !important;
  }
  .pb-xxl-3 {
    padding-bottom: 1rem !important;
  }
  .pb-xxl-4 {
    padding-bottom: 1.5rem !important;
  }
  .pb-xxl-5 {
    padding-bottom: 3rem !important;
  }
  .pl-xxl-0 {
    padding-left: 0 !important;
  }
  .pl-xxl-1 {
    padding-left: 0.25rem !important;
  }
  .pl-xxl-2 {
    padding-left: 0.5rem !important;
  }
  .pl-xxl-3 {
    padding-left: 1rem !important;
  }
  .pl-xxl-4 {
    padding-left: 1.5rem !important;
  }
  .pl-xxl-5 {
    padding-left: 3rem !important;
  }
}
html {
  font-size: var(--dade-root-font-size);
}
.site {
  overflow: clip;
}
.clearfix::before,
.clearfix::after {
  content: '';
  display: table;
}
.clearfix::after {
  clear: both;
}

@media (max-width: 575.98px) {
  .sr-only {
    position: absolute !important;
    width: 10px !important;
    height: 10px !important;
    padding: 0 !important;
    /* margin: 0px !important; */
    /* overflow: hidden !important; */
    /* clip: rect(0, 0, 0, 0) !important; */
    white-space: nowrap !important;
    border: 0 !important;
    color: #0b3b1f;
    margin: 10px -18px;
    font-size: 15px;
  }
}

@media (min-width: 576px) {
  .sr-only {
    position: absolute !important;
    width: 10px !important;
    height: 10px !important;
    padding: 0 !important;
    margin: 0px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
    color: #0b3b1f;
    margin: 10px -18px;
    font-size: 0px;
  }
}

.container,
.container-fluid {
  --dade-gutter-x: var(--dade-container-gutter-x);
  --dade-gutter-y: 0;
  width: 100%;
  padding-right: calc(var(--dade-gutter-x) * 0.5);
  padding-left: calc(var(--dade-gutter-x) * 0.5);
  margin-right: auto;
  margin-left: auto;
}

.page-contact .container,
.container-fluid {
  padding-right: 0;
  padding-left: 0;
  max-width: 100%;
}

.container {
  max-width: calc(
    var(--dade-container-max-width) + var(--dade-container-gutter-x)
  );
}
.submenu,
.menu {
  padding-left: 0;
  list-style: none;
  margin: 0;
  padding: 0;
}
.menu {
  display: flex;
}
.menu a {
  display: block;
  text-decoration: none;
  color: inherit;
}
.list-unstyled {
  padding-left: 0;
  list-style: none;
}
.sidenav {
  position: fixed;
  width: 275px;
  left: 0;
  top: 0;
  margin: 0;
  height: 100%;
  height: calc(100% + 60px);
  height: -moz-calc(100%);
  padding-bottom: 60px;
  z-index: 999;
  overflow-y: auto;
  will-change: transform;
  backface-visibility: hidden;
  transform: translateX(-105%);
}
.sidenav.right-aligned {
  right: 0;
  left: auto;
  transform: translateX(105%);
}
.sidenav-drag {
  height: 100%;
  width: 10px;
  position: fixed;
  top: 0;
  z-index: 998;
}
.sidenav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 120vh;
  background-color: rgba(0, 0, 0, 0.75);
  z-index: 997;
  will-change: opacity;
}
@media (min-width: 1280px) {
  .sidenav {
    display: none !important;
  }
  .sidenav-active {
    overflow: auto !important;
    width: auto !important;
  }
  .sidenav-drag,
  .sidenav-overlay {
    display: none !important;
  }
}
.site-header .social-media {
  display: none;
  padding-left: 0;
  list-style: none;
  margin: 0;
  gap: 0.83rem;
  position: absolute;
  right: 4.35rem;
  top: 1.85rem;
}
@media (min-width: 1280px) {
  .site-header .social-media {
    display: flex;
  }
}
.site-header .social-media a {
  filter: drop-shadow(0.09rem 0.09rem 0.14rem rgba(0, 0, 0, 0.53));
}
.site-header .social-media a::before {
  content: '';
  display: block;
  width: 1.73rem;
  aspect-ratio: 1;
  background-color: #fff;
}
.site-header .social-media a.facebook::before {
  -webkit-mask: url('../images/icon-facebook.png') center/contain no-repeat;
  mask: url('../images/icon-facebook.png') center/contain no-repeat;
}
.site-header .social-media a.twitter-x::before {
  -webkit-mask: url('../images/icon-twitter-x.png') center/contain no-repeat;
  mask: url('../images/icon-twitter-x.png') center/contain no-repeat;
}
.site-header .social-media a.instagram::before {
  -webkit-mask: url('../images/icon-instagram.png') center/contain no-repeat;
  mask: url('../images/icon-instagram.png') center/contain no-repeat;
}
.site-header .social-media a.youtube::before {
  -webkit-mask: url('../images/icon-youtube.png') center/contain no-repeat;
  mask: url('../images/icon-youtube.png') center/contain no-repeat;
}
.site-header .weather {
  display: flex;
  width: 40px;
}
@media (min-width: 1280px) {
  .site-header .weather {
    width: 40%;
    max-width: 22.93rem;
    position: absolute;
    left: 2.31rem;
    top: 0.6rem;
  }
}
.site-header .weather > img {
  max-width: 100%;
}
.site-header .header-inner {
  height: 100vh;
  min-height: 360px;
  position: relative;
}
@media (min-width: 1280px) {
  .site-header .header-inner {
    height: 34.21rem;
    min-height: auto;
    padding-top: 0.92rem;
    padding-bottom: 1.16rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  .site-header .header-inner > * {
    position: relative;
    z-index: 2;
  }
}
@media (min-width: 1280px) {
  .site-header .header-top {
    position: relative;
  }
}
.site-header .header-top .weather {
  display: none;
}
@media (min-width: 1280px) {
  .site-header .header-top .weather {
    display: block;
  }
}
.site-header .header-mobile {
  display: flex;
  padding: 24px calc(var(--dade-container-offset-x) * 0.5) 0;
  position: absolute;
  inset: 0 0 auto;
  z-index: 9;
}
@media (min-width: 1280px) {
  .site-header .header-mobile {
    display: none;
  }
}
.site-header .menu-toggler {
  flex-shrink: 0;
  align-self: flex-start;
  order: 99;
  width: 48px;
  height: 48px;
  margin-top: -6.5px;
  margin-left: auto;
  margin-right: -9px;
  padding: 0;
  border: 0;
  background-color: rgba(0, 0, 0, 0);
}
.site-header .menu-toggler .bars {
  display: block;
  width: 30px;
  height: 3px;
  margin: auto;
  background-color: #0b3b1f;
  position: relative;
}
.site-header .menu-toggler .bars::before,
.site-header .menu-toggler .bars::after {
  content: '';
  display: block;
  height: 3px;
  margin: 6px 0;
  background-color: #0b3b1f;
  position: absolute;
  left: 0;
  right: 0;
}
.site-header .menu-toggler .bars::before {
  bottom: 100%;
}
.site-header .menu-toggler .bars::after {
  top: 100%;
}
.site-header .search-toggler {
  width: 48px;
  height: 48px;
  margin-top: -6.5px;
  margin-left: -6.5px;
  padding: 0;
  border: 0;
  background: url('../images/icon-search.png') center/32px no-repeat;
}
@media only screen and (-webkit-min-device-pixel-ratio: 2),
  only screen and (min-resolution: 192dpi),
  only screen and (min-resolution: 2dppx) {
  .site-header .search-toggler {
    background-image: url('../images/icon-search@2x.png');
  }
}
.site-logo {
  margin: 0;
  width: 95%;
  max-width: 367px;
  font-size: 1rem;
  line-height: 2;
  transform: translate(-50%, -50%);
  position: absolute;
  top: calc(50% + 1rem);
  left: 50%;
  z-index: 2;
}
.site-logo a {
  display: block;
  width: 100%;
  height: 0;
  padding-top: 50.6811989101%;
  background: url('../images/logo-mob.png') center/contain no-repeat;
  overflow: hidden;
}
/* @media only screen and (-webkit-min-device-pixel-ratio: 2),
  only screen and (min-resolution: 192dpi),
  only screen and (min-resolution: 2dppx) {
  .site-logo a {
    background-image: url('../images/logo-mobile@2x.png');
  }
} */

@media (min-width: 1280px) {
  .site-logo {
    width: 100%;
    max-width: none;
    display: flex;
    justify-content: center;
    transform: none;
    position: static;
  }
  .site-logo::before,
  .site-logo::after {
    content: '';
    flex-grow: 1;
    background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 709 97' fill='none' stroke='%23fdf0d8' stroke-width='13.3747' stroke-linecap='round' preserveAspectRatio='none'%3e%3cpath d='M7 7.6731L701.744 7.67303'/%3e%3cpath d='M7 34.9717L701.744 34.9716'/%3e%3cpath d='M7 62.2705L701.744 62.2704'/%3e%3cpath d='M7 89.5691L701.744 89.569'/%3e%3c/svg%3e")
      100% 50%/100% 4.48rem no-repeat;
    position: relative;
  }
  .site-logo::before {
    margin-left: calc(var(--dade-container-offset-x) * -0.5 - 15px);
  }
  .site-logo::after {
    margin-right: calc(var(--dade-container-offset-x) * -0.5 - 15px);
    background-position: 0 50%;
  }
  .site-logo a {
    flex-shrink: 0;
    width: 19.63rem;
    margin-left: -1.62rem;
    margin-right: -1.39rem;
    padding-top: 14.43rem;
    background-image: url('../images/logo.png');
  }
}

.main-menu {
  order: 99;
  display: none;
  font-family: 'Antonio', sans-serif;
  font-weight: 700;
  font-size: 0.83rem;
  line-height: 1.5;
  color: #54a79a;
}
@media (min-width: 1280px) {
  .main-menu {
    display: block;
  }
}
.main-menu .menu {
  display: flex;
  justify-content: center;
  gap: 6.93rem;
}
.main-menu .menu > li {
  position: relative;
}
.main-menu .menu > li > a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.65rem;
  padding-bottom: 0.69rem;
  font-size: 1.5rem;
  line-height: 1;
  text-transform: uppercase;
  color: #fdf0d8;
  /* -webkit-text-stroke: 1px #083B1E; */
  text-shadow: -1px -1px 0 #000, 0 -1px 0 #000, 1px -1px 0 #000, 1px 0 0 #000,
    1px 1px 0 #000, 0 1px 0 #000, -1px 1px 0 #000, -1px 0 0 #000;
}
.main-menu .menu > li > a::before {
  content: '';
  display: block;
  width: 8.16rem;
  aspect-ratio: 1;
  background-color: #65c5c8;
  border-radius: 50%;
}
.main-menu .menu > li:hover > ul {
  display: block;
}
.main-menu .menu-item-home {
  display: none;
}
.main-menu .menu-item-chamber > a::before {
  background: url('../images/menu-chamber2.png') center/contain no-repeat;
}

.main-menu .menu-item-visit > a::before {
  background: url('../images/menu-visit2.png') center/contain no-repeat;
}

.main-menu .menu-item-community > a::before {
  background: url('../images/menu-community2.png') center/contain no-repeat;
}

.main-menu .submenu {
  display: none;
  width: 11.14rem;
  margin: 0 -5.57rem;
  text-align: center;
  white-space: nowrap;
  color: #093b1e;
  background-color: #a4bf96;
  border: 0.23rem solid #0b3b1f;
  border-radius: 0.6rem;
  position: absolute;
  top: 100%;
  left: 50%;
  z-index: 9;
}
.main-menu .submenu a {
  padding: 0.09rem 0.55rem 0.18rem;
}
.main-menu .submenu li {
  padding: 1px 0;
}
.main-menu .submenu li:first-child {
  padding-top: 0.28rem;
}
.main-menu .submenu li:last-child {
  padding-bottom: 0.37rem;
}
.mobile-menu {
  font-family: 'Antonio', sans-serif;
  font-weight: 700;
  font-size: 15px;
  line-height: 1.5;
  color: #093b1e;
  background-color: #54a79a;
}
.mobile-menu .menu {
  display: block;
}
.mobile-menu .menu a {
  padding: 7px 25px 8px;
}
.mobile-menu .menu > li + li {
  border-top: 1px solid #0b3b1f;
}
.mobile-menu .menu > li > a {
  font-size: 20px;
  text-transform: uppercase;
}
.mobile-menu .submenu li {
  border-top: 1px solid #0b3b1f;
}
.mobile-menu .submenu li a {
  padding-left: 40px;
}
.main-title {
  margin-bottom: calc(1rem + 4vh);
  padding: 0 calc(var(--dade-container-offset-x) * 0.5);
  font-family: 'Antonio', sans-serif;
  /* font-size: 2.45rem; */
  font-size: 34px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
  text-align: center;
  color: #fdf0d8;
  /* text-shadow: 0 0.18rem 0.18rem rgba(0, 0, 0, 0.25); */
  position: absolute;
  inset: auto 0 0;
  z-index: 5;
  font-size: 1.5rem;
  text-shadow: -1px -1px 0 #000, 0 -1px 0 #000, 1px -1px 0 #000, 1px 0 0 #000,
    1px 1px 0 #000, 0 1px 0 #000, -1px 1px 0 #000, -1px 0 0 #000;
}
@media (min-width: 1280px) {
  .main-title {
    margin-bottom: 2rem;
  }
}
.main-image {
  background-color: #404040;
  position: absolute !important;
  inset: 0;
  z-index: 1 !important;
}
.main-image > img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  position: absolute;
  inset: 0;
}
@media (min-width: 1280px) {
  .main-image::before,
  .main-image::after {
    content: '';
    display: block;
    opacity: 50%;
    position: absolute;
    inset: 0;
    z-index: 1;
    mix-blend-mode: multiply;
  }
  .main-image::before {
    height: 40.5405405405%;
    background: linear-gradient(
      to bottom,
      #004aad 0%,
      rgba(0, 74, 173, 0.533334) 65.67%,
      rgba(255, 255, 255, 0) 100%
    );
    bottom: auto;
  }
  .main-image::after {
    height: 27.027027027%;
    background: linear-gradient(
      to top,
      #093b1e 0%,
      rgba(9, 59, 30, 0.5) 42.17%,
      rgba(255, 255, 255, 0) 100%
    );
    top: auto;
  }
}
.site-content {
  position: relative;
}
@media (min-width: 1280px) {
  .site-content::before {
    content: '';
    display: block;
    bottom: -6.93rem;
    background: #0b3b1f url('../images/bg-content.png') center -9.058rem;
    background-size: 8.6rem auto;
    -webkit-mask: linear-gradient(
      to bottom,
      #000 calc(100% - 53.74rem),
      transparent
    );
    mask: linear-gradient(to bottom, #000 calc(100% - 53.74rem), transparent);
    position: absolute;
    inset: 0;
    z-index: -1;
  }
  .site-content::after {
    content: '';
    display: block;
    width: 9.51rem;
    height: 9.44rem;
    margin: 0 -4.755rem;
    background: url('../images/clipart-footer.png') center/contain no-repeat;
    position: absolute;
    top: calc(100% - 3.47rem);
    left: calc(50% + 38.14rem);
    z-index: 2;
  }
}
@media (min-width: 1280px) and (min-width: 1280px) and (max-width: 1599.98px) {
  .site-content::after {
    margin-top: 0.46rem !important;
  }
}
@media (min-width: 1280px) {
  .site-content.bg-alt::before,
  .site-content.bg-transparent::before {
    display: none;
  }
}
.site-content img {
  max-width: 100%;
}
.site-content a {
  font-weight: 500;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.1em;
  overflow-wrap: break-word;
  color: inherit;
}
.site-content a > * {
  text-decoration: inherit;
}
.site-content .caption {
  margin-bottom: 0.1rem;
  font-family: 'Antonio', sans-serif;
  font-size: 1.66rem;
  font-weight: 700;
  line-height: 1.29;
  text-shadow: 0 0.18rem 0.18rem rgba(0, 0, 0, 0.25);
}
.page-section {
  padding-top: 1.39rem;
  padding-bottom: 1.39rem;
}
@media (min-width: 1280px) {
  .page-section {
    border-top: 1.39rem solid #54a79a;
  }
}

.page-section.bg-light {
  background: #a4bf96 url('../images/bg-content-alt.png') center 0;
  background-size: 7.77rem auto;
}

.page-section.bg-dark {
  color: #fff;
  background-color: #0b3b1f;
}

.page-section.bg-dark {
  background: #0b3b1f url('../images/bg-content.png') center 0;
  background-size: 8.6rem auto;
}

.page-section.section-banner {
  --dade-container-max-width: 41.15rem;
  display: none;
  padding: 0.37rem 0;
  background-color: #54a79a;
  border: 0;
}
@media (min-width: 1280px) {
  .page-section.section-banner {
    --dade-container-max-width: 712px;
    --dade-container-offset-x: calc(
      var(--dade-page-max-width) - var(--dade-container-max-width)
    );
  }
}
@media (min-width: 1600px) {
  .page-section.section-banner {
    --dade-container-max-width: 890px;
  }
}
@media (min-width: 1280px) {
  .page-section.section-banner {
    display: block;
  }
}
.page-section.section-excerpt {
  padding: 0;
  color: #fff;
  background-color: #194026;
}
@media (min-width: 1280px) {
  .page-section.section-excerpt {
    background-color: rgba(0, 0, 0, 0);
    position: relative;
    z-index: 1;
  }
  .page-section.section-excerpt::before {
    content: '';
    display: block;
    background: linear-gradient(
      to bottom,
      #093b1e 10%,
      rgba(25, 64, 38, 0) 90%
    );
    position: absolute;
    inset: 0;
    z-index: -1;
  }
}
.page-section.section-excerpt .inner-section {
  max-width: 24.26rem;
  margin: auto;
  padding: 2rem 0;
}
@media (min-width: 1280px) {
  .page-section.section-excerpt .inner-section {
    min-height: 13.87rem;
    display: flex;
    align-items: center;
    position: relative;
  }
  .page-section.section-excerpt .inner-section::before {
    content: '';
    display: block;
    width: 5.1rem;
    height: 12.52rem;
    margin-right: 2.31rem;
    background: url('../images/clipart-section-first.png') center/100% 100%
      no-repeat;
    transform: translateY(-50%);
    position: absolute;
    top: calc(50% + 0.46rem);
    right: 100%;
  }
}
.page-section.section-excerpt .inner-section p {
  margin-bottom: 0.69rem;
}
.page-section.section-excerpt .excerpt-text > *:last-child {
  margin-bottom: 0;
}
.page-section.section-excerpt .caption {
  margin-bottom: 0.92rem;
  font-size: 2rem;
  line-height: decima-round(1.4998844465);
  text-align: center;
}
/* @media (min-width: 1280px) { */
.bg-alt .page-section.section-excerpt,
.bg-transparent .page-section.section-excerpt {
  background: #0b3b1f url('../images/bg-content.png') center 0;
  background-size: 6.61rem auto;
}
/* } */
@media (min-width: 1280px) {
  .page-section.section-banner + .section-excerpt {
    border-top: 0;
  }
}
.page-section.section-main {
  --dade-container-max-width: 61.67rem;
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #a4bf96;
}
@media (min-width: 1280px) {
  .page-section.section-main {
    --dade-container-max-width: 1067px;
    --dade-container-offset-x: calc(
      var(--dade-page-max-width) - var(--dade-container-max-width)
    );
  }
}
@media (min-width: 1600px) {
  .page-section.section-main {
    --dade-container-max-width: 1334px;
  }
}
@media (min-width: 1280px) {
  .page-section.section-main {
    padding-top: 3.7rem;
    padding-bottom: 4.62rem;
    background-color: rgba(0, 0, 0, 0);
  }
  .page-section.section-main .inner-section {
    padding: 1rem 1.5rem;
    background-color: #a4bf96;
    border-radius: 1.6rem;
  }
}
/* @media (min-width: 1280px) { */
.bg-alt .page-section.section-main {
  padding-top: 2.77rem;
  background-image: linear-gradient(
      0deg,
      #a4bf96 0%,
      rgba(164, 191, 150, 0) 100%
    ),
    url('../images/bg-content-alt.png');
  background-size: 100% 55.48rem, 7.77rem auto;
  background-position: bottom, center 0;
  background-repeat: no-repeat, repeat;
}
/* } */
.page-section.section-main .holder-area {
  margin: 0;
  padding-top: 19.42rem;
  padding-bottom: 75.13rem;
  font-family: 'Inter', system-ui;
  font-weight: 700;
  font-size: 3.56rem;
  line-height: 1;
  text-align: center;
  color: rgba(0, 0, 0, 0.55);
}
.page-section.section-contact {
  padding: 0;
  border: 0;
  position: relative;
  z-index: 2;
}
.page-section.section-contact .contact-btn-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 16.74rem;
  height: 5.35rem;
  /* margin: auto; */
  background: url('../images/contact-button.png') center/contain no-repeat;
  cursor: pointer;
}
@media (min-width: 768px) and (max-width: 1279.98px) {
  .page-section.section-contact .contact-btn-wrapper {
    margin-bottom: -1.5rem;
  }
}
@media (min-width: 1280px) {
  .page-section.section-contact .contact-btn-wrapper {
    margin-bottom: -3.93rem;
  }
}
.page-section.section-contact .contact-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 5.96rem;
  height: 2.33rem;
  margin-bottom: 1px;
  margin-right: 1px;
  padding-bottom: 1px;
  color: #fbdd1b;
  background-color: #093b1e;
  border-radius: 1.04rem;
  font-family: 'Antonio', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  text-decoration: none !important;
}
.site-footer {
  color: #fff;
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 19px;
  font-weight: 300;
  line-height: 1.43;
  text-align: center;
  position: relative;
}
@media (min-width: 1280px) {
  .site-footer {
    font-size: 0.74rem;
  }
}

.site-footer::before {
  content: '';
  display: block;
  height: 70px;
  margin-top: -1px;
  background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 768 900' fill='none' stroke='%2354a79a' stroke-width='30' preserveAspectRatio='none'%3e%3cpath d='M-15,13v902h798V13c0,0-196.4,32-399,32C183.5,45-15,13-15,13z'/%3e%3c/svg%3e")
    top center/100% 900px no-repeat;
  position: absolute;
  inset: 0;
  z-index: 1;
}

@media (max-width: 575.98px) {
  .site-footer::before {
    margin-top: 122px;
  }
  .site-footer {
    margin-top: -90px;
  }
}

@media (min-width: 768px) and (max-width: 1279.98px) {
  .site-footer::before {
    height: 110px;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1280 900' fill='none' stroke='%2354a79a' stroke-width='30' preserveAspectRatio='none'%3e%3cpath d='M-15,12.5V915h1310V12.5c0,0-322.5,72.5-655,72.5 C310.8,85-15,12.5-15,12.5z'/%3e%3c/svg%3e");
  }
}
@media (min-width: 1280px) {
  .site-footer::before {
    height: 0;
    padding-top: 190px;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1920 900' fill='none' stroke='%2354a79a' stroke-width='30'%3e%3cpath d='M-15,11v904h1950V11c0,0-480,199-975,199C470,210-15,11-15,11z'/%3e%3c/svg%3e");
    background-size: 1600px auto;
    bottom: auto;
  }
}
@media (min-width: 1600px) {
  .site-footer::before {
    padding-top: 305px;
    background-size: 100% auto;
  }
}
.site-footer .footer-inner {
  padding-top: 160px;
  padding-bottom: 60px;
  background-color: #11212f;
  -webkit-mask: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 768 900' fill='black' stroke='black' stroke-width='30' preserveAspectRatio='none'%3e%3cpath d='M-15,13v902h798V13c0,0-196.4,32-399,32C183.5,45-15,13-15,13z'/%3e%3c/svg%3e")
    top center/100% 900px no-repeat;
  mask: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 768 900' fill='black' stroke='black' stroke-width='30' preserveAspectRatio='none'%3e%3cpath d='M-15,13v902h798V13c0,0-196.4,32-399,32C183.5,45-15,13-15,13z'/%3e%3c/svg%3e")
    top center/100% 900px no-repeat;
}
@media (min-width: 768px) and (max-width: 1279.98px) {
  .site-footer .footer-inner {
    -webkit-mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1280 900' fill='black' stroke='black' stroke-width='30' preserveAspectRatio='none'%3e%3cpath d='M-15,12.5V915h1310V12.5c0,0-322.5,72.5-655,72.5 C310.8,85-15,12.5-15,12.5z'/%3e%3c/svg%3e");
    mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1280 900' fill='black' stroke='black' stroke-width='30' preserveAspectRatio='none'%3e%3cpath d='M-15,12.5V915h1310V12.5c0,0-322.5,72.5-655,72.5 C310.8,85-15,12.5-15,12.5z'/%3e%3c/svg%3e");
  }
}
/* @media (min-width: 1280px) { */
.site-footer .footer-inner {
  padding-top: calc(190px + 2.08rem);
  padding-bottom: 4.62rem;
  -webkit-mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1920 900' fill='black' stroke='black' stroke-width='30'%3e%3cpath d='M-15,11v904h1950V11c0,0-480,199-975,199C470,210-15,11-15,11z'/%3e%3c/svg%3e");
  mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1920 900' fill='black' stroke='black' stroke-width='30'%3e%3cpath d='M-15,11v904h1950V11c0,0-480,199-975,199C470,210-15,11-15,11z'/%3e%3c/svg%3e");
  -webkit-mask-size: 1600px auto;
  mask-size: 1600px auto;
  background-color: #0b3b1f;
  background-image: linear-gradient(180deg, rgba(25, 64, 38, 0), #0b3b1f 80%),
    url('../images/bg-footer.png');
  background-position: center;
}
/* } */
@media (min-width: 1600px) {
  .site-footer .footer-inner {
    padding-top: 336px;
    -webkit-mask-size: 100% auto;
    mask-size: 100% auto;
  }
}
.site-footer a {
  text-decoration: none;
  color: inherit;
}
@media (min-width: 1280px) {
  .site-footer .footer-contact {
    display: none;
  }
}

@media (min-width: 1280px) {
  .site-footer .footer-contact .copyright {
    isplay: inline-block;
  }
}

.site-footer .footer-contact > * {
  margin: 0;
}
.site-footer .footer-contact > * span {
  display: inline-block;
}
.site-footer .copyright {
  margin-bottom: 60px;
}
@media (min-width: 1280px) {
  .site-footer .copyright {
    margin-bottom: 0.46rem;
  }
}
.site-footer .powered {
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: 'Segoe UI', sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.33;
  text-align: center;
}
@media (min-width: 1280px) {
  .site-footer .powered {
    font-size: 0.62rem;
    flex-direction: row;
  }
}
.site-footer .powered a {
  width: 237px;
  height: 0;
  padding-top: 77px;
  background: url('../images/365dtm-logo.png') center/contain no-repeat;
  overflow: hidden;
}
@media only screen and (-webkit-min-device-pixel-ratio: 2),
  only screen and (min-resolution: 192dpi),
  only screen and (min-resolution: 2dppx) {
  .site-footer .powered a {
    background-image: url('../images/365dtm-logo@2x.png');
  }
}
@media (min-width: 1280px) {
  .site-footer .powered a {
    width: 8.86rem;
    padding-top: 2.76rem;
  }
}
.page-history-legends .page-section.section-excerpt .inner-section {
  max-width: 40.1rem;
}
.page-history-legends .page-section.section-main {
  --dade-container-max-width: 67.43rem;
  line-height: 1.51;
}
@media (min-width: 1280px) {
  .page-history-legends .page-section.section-main {
    --dade-container-max-width: 1167px;
    --dade-container-offset-x: calc(
      var(--dade-page-max-width) - var(--dade-container-max-width)
    );
  }
}
@media (min-width: 1600px) {
  .page-history-legends .page-section.section-main {
    --dade-container-max-width: 1459px;
  }
}
.page-history-legends .page-section.section-main p {
  margin-bottom: 1.51rem;
}
@media (min-width: 1280px) {
  .page-history-legends .page-section.section-main .inner-section {
    padding: 5.87rem 0.97rem 2.17rem 5.55rem;
    border-radius: 6.43rem;
  }
}
.page-history-legends .page-section.section-main .row {
  max-width: 60.93rem;
  margin: auto;
}
@media (min-width: 768px) {
  .page-history-legends .page-section.section-main .row {
    display: flex;
    align-items: flex-start;
    gap: 1.76rem;
  }
}
.page-history-legends .page-section.section-main .row .col-image {
  float: left;
  width: 45%;
  max-width: 160px;
  margin-right: 1rem;
}
@media (min-width: 768px) {
  .page-history-legends .page-section.section-main .row .col-image {
    flex: 0 0 15.63rem;
    max-width: 25.6449165402%;
    margin: 0;
    padding-top: 0.25rem;
  }
}
.page-history-legends .page-section.section-main .row .col-image img {
  width: 100%;
  max-width: 15.63rem;
  margin-bottom: 1rem;
  border: 0.14rem solid #3c7f72;
  border-radius: 0.69rem;
}
@media (min-width: 768px) {
  .page-history-legends .page-section.section-main .row .col-image img + img {
    margin-top: 3.7rem;
  }
}
@media (min-width: 768px) {
  .page-history-legends .page-section.section-main .group-1 {
    margin-bottom: 0.5rem;
  }
  .page-history-legends .page-section.section-main .group-1 .col-text {
    max-width: 38.62rem;
  }
  .page-history-legends .page-section.section-main .group-2 .col-text {
    position: relative;
  }
  .page-history-legends .page-section.section-main .group-2 .col-text::before {
    content: '';
    display: block;
    width: 6.38rem;
    aspect-ratio: 138/161;
    background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 138 161' fill='%23466978'%3e%3cpath d='M75.805 68.6656L90.1293 0.236075L64.7172 64.2763L18.0525 20.0892L57.5277 71.8231L0.0578561 70.7825L57.083 80.0477L7.96467 128.235L63.15 87.4704L86.5141 160.189L74.3322 86.3304L126.86 117.71L77.9012 77.7379L137.126 50.7813L75.805 68.6656Z'/%3e%3c/svg%3e")
      center/contain no-repeat;
    position: absolute;
    bottom: -1.51rem;
    right: calc(100% + 0.69rem);
  }
  .page-history-legends .page-section.section-main .group-3 {
    margin-bottom: 0.5rem;
  }
  .page-history-legends .page-section.section-main .group-3 .col-text {
    max-width: 39.1rem;
  }
  .page-history-legends .page-section.section-main .group-4 .col-text {
    max-width: 39.15rem;
    position: relative;
  }
  .page-history-legends .page-section.section-main .group-4 .col-text::before {
    content: '';
    display: block;
    width: 8.08rem;
    aspect-ratio: 19/15;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 93 93' fill='%23466978'%3e%3cpath d='M0.720703 0.940918L47.5004 33.6867L92.7207 0.940918L67.7715 47.7206L92.7207 92.9409L47.5004 63.3138L0.720703 92.9409L30.3478 47.7206L0.720703 0.940918Z'/%3e%3c/svg%3e"),
      url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 93 93' fill='%23e6902b'%3e%3cpath d='M0.720703 0.940918L47.5004 33.6867L92.7207 0.940918L67.7715 47.7206L92.7207 92.9409L47.5004 63.3138L0.720703 92.9409L30.3478 47.7206L0.720703 0.940918Z'/%3e%3c/svg%3e");
    background-size: 4.25rem;
    background-position: 0 0, 100% 100%;
    background-repeat: no-repeat;
    position: absolute;
    top: -2.17rem;
    left: calc(100% - 1.48rem);
  }
  .page-history-legends .page-section.section-main .group-4 .col-image {
    position: relative;
  }
  .page-history-legends .page-section.section-main .group-4 .col-image::before {
    content: '';
    display: block;
    width: 10.55rem;
    height: 10.47rem;
    margin: -5.275rem -2.6175rem;
    background: url('../images/clipart-footer.png') center/contain no-repeat;
    position: absolute;
    left: 0;
    bottom: 1rem;
  }
}
.page-our-communities .page-section.section-main {
  --dade-container-max-width: 71.71rem;
  line-height: 1.51;
}
@media (min-width: 1280px) {
  .page-our-communities .page-section.section-main {
    --dade-container-max-width: 1241px;
    --dade-container-offset-x: calc(
      var(--dade-page-max-width) - var(--dade-container-max-width)
    );
  }
}
@media (min-width: 1600px) {
  .page-our-communities .page-section.section-main {
    --dade-container-max-width: 1551px;
  }
}
.page-our-communities .page-section.section-main p {
  margin-bottom: 1.51rem;
}
.page-our-communities .page-section.section-main .inner-section {
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.page-our-communities .page-section.section-main .inner-section > img {
  width: 100%;
}
.page-our-communities .page-section.section-main .inner-section > div {
  max-width: 57.32rem;
  padding-top: 1.5rem;
}
@media (min-width: 1280px) {
  .page-our-communities .page-section.section-main .inner-section {
    border-radius: 6.43rem;
  }
  .page-our-communities .page-section.section-main .inner-section > img {
    border: 0.55rem solid #a4bf96;
    border-radius: 6.29rem 6.29rem 0 0;
  }
  .page-our-communities .page-section.section-main .inner-section > div {
    padding-bottom: 0.5rem;
  }
}
@media (min-width: 1280px) {
  .page-our-communities .page-section.section-contact .contact-btn-wrapper {
    margin-top: -1rem;
  }
}
.page-community .page-section.section-excerpt .inner-section {
  max-width: 42.71rem;
}
@media (min-width: 1280px) {
  .page-community .page-section.section-excerpt .inner-section {
    padding-top: 1rem;
  }
  .page-community .page-section.section-excerpt .inner-section::before {
    width: 6.65rem;
    height: 16.3rem;
    margin-top: 1.39rem;
  }
}
.page-community .page-section.section-main {
  --dade-container-max-width: 64.21rem;
}
@media (min-width: 1280px) {
  .page-community .page-section.section-main {
    --dade-container-max-width: 1111px;
    --dade-container-offset-x: calc(
      var(--dade-page-max-width) - var(--dade-container-max-width)
    );
  }
}
@media (min-width: 1600px) {
  .page-community .page-section.section-main {
    --dade-container-max-width: 1389px;
  }
}
.page-community .page-section.section-main .card-1 {
  max-width: 51.35rem;
  margin: auto;
  line-height: 1.51;
}
@media (min-width: 1280px) {
  .page-community .page-section.section-main .card-1 {
    max-width: none;
    padding-top: 2.87rem;
    padding-left: 8.9rem;
    padding-right: 3.95rem;
    padding-bottom: 1.4rem;
    border-radius: 2.31rem;
  }
}
.page-community .page-section.section-main .card-1 ul {
  padding-left: 0;
  list-style: none;
}
.page-community .page-section.section-main .card-1 ul > li {
  padding-left: 0.85em;
}
.page-community .page-section.section-main .card-1 ul > li::before {
  content: '•';
  float: left;
  margin-left: -0.7em;
}
.page-community .page-section.section-main .card-1 ul > li + li {
  margin-top: 0.69rem;
}
.page-community .page-section.section-main .card-1 .caption {
  line-height: 1.42;
  margin-bottom: 0.92rem;
}
.page-community .page-section.section-main .card-1 .group-1 {
  max-width: 40.49rem;
}
.page-community .page-section.section-main .card-1 .group-1 .col-left ul {
  margin-left: 1.16rem;
}
@media (min-width: 768px) {
  .page-community .page-section.section-main .card-1 .group-1 {
    display: flex;
    gap: 2.13rem;
  }
  .page-community .page-section.section-main .card-1 .group-1 .col {
    max-width: 18.49rem;
  }
}
.page-community .page-section.section-main .card-1 .group-2 {
  max-width: 39.22rem;
}
.page-community .page-section.section-main .card-1 .group-2 p {
  margin-bottom: 0.69rem;
}
.page-community .page-section.section-main .card-1 .group-2 ul {
  margin-left: 2.31rem;
  margin-right: 1.16rem;
}
.page-community .page-section.section-main .card-1 .group-3 {
  max-width: 49.43rem;
  font-size: 1.11rem;
  line-height: 1.62;
}
.page-community .page-section.section-main .card-1 .group-3 p {
  margin-bottom: 0.92rem;
}
.page-community .page-section.section-main .card-2 {
  display: flex;
  min-height: 400px;
  margin: 2.5rem 0;
  padding: 0;
  border: 0.55rem solid #3c7f72;
  border-radius: 1.48rem;
  line-height: 1.51;
  text-align: center;
  color: #fff;
  overflow: hidden;
  position: relative;
}
@media (min-width: 1280px) {
  .page-community .page-section.section-main .card-2 {
    margin: 4.39rem 0;
  }
}
.page-community .page-section.section-main .card-2 .image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.page-community .page-section.section-main .card-2 .description {
  position: absolute;
  left: calc(var(--dade-container-gutter-x) * 0.5);
  right: calc(var(--dade-container-gutter-x) * 0.5);
  bottom: -0.23rem;
}
.page-community .page-section.section-main .card-2 .description > * {
  max-width: 35.63rem;
  margin: auto;
}
.page-community .page-section.section-main .card-2 .caption {
  margin-bottom: 0.5rem;
  font-size: 1.99rem;
  font-weight: 400;
  line-height: 1.1860465116;
}
.page-community .page-section.section-main .card-3 {
  max-width: 54.75rem;
  margin: auto;
  color: #365b43;
}
@media (min-width: 1280px) {
  .page-community .page-section.section-main .card-3 {
    max-width: none;
    padding-top: 3.01rem;
    padding-left: 4.05rem;
    padding-right: 5.41rem;
    border-radius: 6.43rem;
  }
}
.page-community .page-section.section-main .card-3 .caption {
  text-shadow: none;
  margin-bottom: 1.62rem;
}
.page-community .page-section.section-main .card-3 .group {
  margin-bottom: 4.16rem;
}
@media (min-width: 768px) {
  .page-community .page-section.section-main .card-3 .group-3 .caption {
    font-size: 2.82rem;
    margin-bottom: 4.16rem;
  }
}
.page-community .place-item {
  font-weight: 500;
  line-height: 1.51;
}
@media (min-width: 768px) {
  .page-community .place-item {
    display: flex;
    gap: 2.59rem;
  }
}
.page-community .place-item img {
  float: left;
  width: 45%;
  max-width: 160px;
  margin-right: 1rem;
  margin-bottom: 1rem;
  border: 0.36rem solid #3c7f72;
  border-radius: 1.48rem;
}
@media (max-width: 768px) {
  .page-community .place-item img {
    float: none;
    width: 100%;
    max-width: 100%;
    margin-right: 0rem;
    margin-bottom: 1rem;
  }
}

@media (min-width: 768px) {
  .page-community .place-item img {
    align-self: flex-start;
    flex: 0 0 15.23rem;
    max-width: 15rem;
    margin: 0;
    /* border-width: 0.65rem; */
  }
}
.page-community .place-item .info {
  flex-grow: 1;
}
.page-community .place-item .name {
  margin: 0;
  font-size: 1.66rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.page-community .place-list {
  padding-left: 0;
  list-style: none;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media (min-width: 768px) {
  .page-community .place-list {
    gap: 4.84rem;
  }
  /* .page-community .place-list > li:nth-child(1) .info {
    max-width: 18.08rem;
  }
  .page-community .place-list > li:nth-child(2) .info {
    max-width: 15.84rem;
  }
  .page-community .place-list > li:nth-child(3) .info {
    max-width: 24.56rem;
  }
  .page-community .place-list > li:nth-child(4) .info {
    max-width: 20.27rem;
  }
  .page-community .place-list > li:nth-child(5) .info {
    max-width: 27.03rem;
  }
  .page-community .place-list > li:nth-child(6) .info {
    max-width: 21.48rem;
  } */
}
.page-community .logo-item {
  max-width: 13.14rem;
  margin: auto;
  font-family: 'Antonio', sans-serif;
  font-weight: 700;
  line-height: 1.2939001848;
  text-align: center;
}
.page-community .logo-item img {
  display: block;
  width: 100%;
  border: 0.14rem solid #093b1e;
  border-radius: 0.69rem;
}
.page-community .logo-item .name {
  margin: 1.11rem 0.5rem 0;
  min-height: 2.5878003697em;
}
.page-community .logo-list {
  padding-left: 0;
  list-style: none;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1.94rem 1rem;
}
@media (min-width: 768px) {
  .page-community .logo-list {
    justify-content: space-between;
  }
}
.page-community .logo-list > li {
  flex: 0 0 calc(50% - 0.5rem);
}
@media (min-width: 768px) {
  .page-community .logo-list > li {
    flex-basis: calc(33.3333333333% - 0.6666666667rem);
    max-width: 13.14rem;
  }
}
.page-visit .page-section.section-excerpt {
  padding-bottom: 7.5%;
}
.page-visit .page-section.section-excerpt .inner-section {
  max-width: 25.35rem;
}
@media (min-width: 1280px) {
  .page-visit .page-section.section-excerpt .inner-section::before {
    height: 5.59rem;
    height: 13.71rem;
  }
}
.page-visit .page-section.section-excerpt .menu {
  font-family: 'Antonio', sans-serif;
  font-size: 1.76rem;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  color: #fff;
  display: flex;
  flex-wrap: wrap;
  width: 18.4271052632em;
  margin: auto;
}
@media (max-width: 575.98px) {
  .page-visit .page-section.section-excerpt .menu {
    font-size: 1.32rem;
    margin-left: -16px;
  }
}
@media (min-width: 1280px) {
  .page-visit .page-section.section-excerpt .menu {
    margin: 1.16rem auto;
  }
}
.page-visit .page-section.section-excerpt .menu > li {
  padding: 0.8421052632em 0 0.8947368421em;
  flex: 0 0 6.11em;
  border-left: 1px solid #e9f930;
}
@media (min-width: 1280px) {
  .page-visit .page-section.section-excerpt .menu > li {
    border-left-width: 0.06rem;
  }
}
.page-visit .page-section.section-excerpt .menu > li:nth-child(-n + 3) {
  border-bottom: 1px solid #e9f930;
}
@media (min-width: 1280px) {
  .page-visit .page-section.section-excerpt .menu > li:nth-child(-n + 3) {
    border-bottom-width: 0.06rem;
  }
}
/* .page-visit .page-section.section-excerpt .menu > li:nth-child(3n-2) {
  border-left: 0;
  flex-basis: 6.3660526316em;
} */
/* .page-visit .page-section.section-excerpt .menu > li:nth-child(5) {
  flex-grow: 1;
} */
.page-visit .page-section.section-main {
  --dade-container-max-width: 61.67rem;
  padding-top: 0;
  border-top: 0;
  line-height: 1.51;
}
@media (min-width: 1280px) {
  .page-visit .page-section.section-main {
    --dade-container-max-width: 1067px;
    --dade-container-offset-x: calc(
      var(--dade-page-max-width) - var(--dade-container-max-width)
    );
  }
}
@media (min-width: 1600px) {
  .page-visit .page-section.section-main {
    --dade-container-max-width: 1334px;
  }
}
@media (min-width: 1280px) {
  .page-visit .page-section.section-main {
    padding-bottom: 3.01rem;
  }
}
@media (max-width: 1279.98px) {
  .page-visit .page-section.section-main .container {
    max-width: calc(54.19rem + var(--dade-container-gutter-x));
  }
}
.page-visit .page-section.section-main .inner-section {
  padding: 0;
  padding-top: 24.7425495064%;
  position: relative;
}
@media (min-width: 1280px) {
  .page-visit .page-section.section-main .inner-section {
    padding-top: 21.7412491472%;
    padding-left: 3.24rem;
    padding-right: 3.06rem;
  }
}
.page-visit .page-section.section-main .inner-section::before {
  content: '';
  display: block;
  width: 95%;
  aspect-ratio: 1311.81/553.22;
  background: url('../images/visit-van-camper.png') center/contain no-repeat;
  position: absolute;
  transform: translate(1.1749394454%, 67.4162177795%);
  right: 0;
  bottom: 100%;
}
@media (min-width: 1280px) {
  .page-visit .page-section.section-main .inner-section::before {
    width: 98.3461656683%;
  }
}
.page-visit .page-section.section-main .group {
  position: relative;
}
.page-visit .page-section.section-main .group-1::before {
  content: '';
  display: block;
  float: right;
  height: 0;
  width: 37%;
  padding-top: 6%;
}
@media (min-width: 1280px) {
  .page-visit .page-section.section-main .group-1::before {
    width: 32%;
  }
}
.page-visit .page-section.section-main .group-2 .image {
  width: 27.75rem;
  max-width: 100%;
  margin-bottom: 1.25rem;
  padding-top: 2.77rem;
  position: relative;
}
@media (min-width: 768px) {
  .page-visit .page-section.section-main .group-2 .image {
    float: left;
    margin-right: 1.57rem;
    margin-bottom: 0.5rem;
  }
}
.page-visit .page-section.section-main .group-2 .image::before {
  content: '';
  display: block;
  width: 66.3189642244%;
  aspect-ratio: 398/274;
  background: url('../images/visit-hang-glider.png') center/contain no-repeat;
  position: absolute;
  top: 0.37rem;
  right: -0.92rem;
}
.page-visit .page-section.section-main .group-2 .image > img {
  border: 0.36rem solid #3c7f72;
  border-radius: 0.92rem;
}
.page-visit .page-section.section-main .group-3 {
  max-width: 54.11rem;
}
@media (min-width: 768px) {
  .page-visit .page-section.section-main .group-3 {
    padding-top: 0.5rem;
  }
}
.page-visit .page-section.section-main .group-4 {
  max-width: 54.19rem;
  font-size: 1.11rem;
}
.page-visit .page-section.section-main .group-4 p {
  margin-bottom: 1em;
}
.page-visit .page-section.section-main .group-4 .image {
  width: 19.7rem;
  max-width: 100%;
  margin-bottom: 1.25rem;
}
@media (min-width: 576px) {
  .page-visit .page-section.section-main .group-4 .image {
    float: right;
    margin-left: 1.72rem;
    margin-left: 1.62rem;
    margin-bottom: 0.5rem;
  }
}
.page-visit .page-section.section-main .group-4 .image > img {
  border: 0.36rem solid #3c7f72;
  border-radius: 0.92rem;
}
.page-visit .page-section.section-main .group-5 {
  padding: 4.16rem 1rem 1.78rem;
}
.page-visit .bordered-box {
  max-width: 420px;
  margin: auto;
  padding: 0.99rem 1.39rem;
  border: 0.23rem solid #0b3b1f;
  border-radius: 1.11rem;
  position: relative;
  font-size: 1.48rem;
  line-height: 1.511875;
  text-align: center;
}
@media (min-width: 768px) {
  .page-visit .bordered-box {
    max-width: 48.5rem;
  }
}
.page-visit .bordered-box::before {
  content: '';
  display: block;
  width: 8.08rem;
  aspect-ratio: 19/15;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 93 93' fill='%23e6902b'%3e%3cpath d='M0.720703 0.940918L47.5004 33.6867L92.7207 0.940918L67.7715 47.7206L92.7207 92.9409L47.5004 63.3138L0.720703 92.9409L30.3478 47.7206L0.720703 0.940918Z'/%3e%3c/svg%3e"),
    url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 93 93' fill='%23466978'%3e%3cpath d='M0.720703 0.940918L47.5004 33.6867L92.7207 0.940918L67.7715 47.7206L92.7207 92.9409L47.5004 63.3138L0.720703 92.9409L30.3478 47.7206L0.720703 0.940918Z'/%3e%3c/svg%3e");
  background-size: 4.25rem;
  background-position: 0 0, 100% 100%;
  background-repeat: no-repeat;
  position: absolute;
  bottom: calc(100% - 1.9rem);
  left: calc(100% - 3.47rem);
}
.page-visit .bordered-box p {
  margin: 0;
}
.page-visit .brochure-block {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  max-width: 45.62rem;
  margin: auto;
  font-weight: 500;
  line-height: 1.51;
  position: relative;
}
@media (max-width: 575.98px) {
  .page-visit .brochure-block {
    align-items: center;
  }
}
.page-visit .brochure-block img {
  width: 13.52rem;
  box-shadow: 0.14rem 0.22rem 0.36rem 0.07rem #365b43;
  transform: rotate(5.96deg);
  position: absolute;
  right: 26.3rem;
  right: 27.92rem;
  top: 0;
}
@media (max-width: 575.98px) {
  .page-visit .brochure-block img {
    position: static;
  }
}
.page-visit .brochure-block .info {
  width: 21.45rem;
  margin-bottom: 4.55rem;
  border-bottom: 0.14rem solid #fff;
  position: relative;
}
@media (max-width: 575.98px) {
  .page-visit .brochure-block .info {
    order: -1;
  }
}
.page-visit .brochure-block .info::before {
  content: '';
  display: block;
  width: 3.93rem;
  /* height: 9.63rem; */
  margin: 0 auto 1.05rem;
  /* background: url('../images/clipart-section-first.png') center/100% 100%
    no-repeat; */
  position: relative;
  left: -9%;
}
@media (max-width: 575.98px) {
  .page-visit .brochure-block .info {
    margin-bottom: 1rem;
    border-bottom: 0;
  }
  .page-visit .brochure-block .info::before {
    left: 0;
  }
}
.page-visit .brochure-block .arrow {
  width: 14.04rem;
  height: 4.55rem;
  border: 0 dashed #fff;
  background: linear-gradient(to bottom, transparent 50%, #fff 50%);
  background-size: 0.23rem 1.48rem;
  background-repeat: repeat-y;
  background-position: 100% 60%;
  position: absolute;
  top: 100%;
  right: 57%;
}
@media (max-width: 575.98px) {
  .page-visit .brochure-block .arrow {
    display: none;
  }
}
.page-visit .brochure-block .arrow::before,
.page-visit .brochure-block .arrow::after {
  content: '';
  display: block;
}
.page-visit .brochure-block .arrow::before {
  width: 100%;
  height: 0.23rem;
  background: linear-gradient(to right, transparent 50%, #fff 50%);
  background-size: 1.57rem 100%;
  position: absolute;
  bottom: 0;
}
.page-visit .brochure-block .arrow::after {
  width: 0;
  height: 0;
  border: 0 solid rgba(0, 0, 0, 0);
  border-width: 10px 15px 10px 0;
  border-right-color: #fff;
  transform: translate(0, -50%);
  position: absolute;
  top: calc(100% - 0.115rem);
  left: 0;
}
.page-visit .brochure-block .caption {
  width: 21.45rem;
  padding: 2.31rem 0;
  font-size: 2rem;
  line-height: 1.2939681072;
}
@media (max-width: 575.98px) {
  .page-visit .brochure-block .caption {
    width: 17.56rem;
  }
}
.page-annual-events .page-section.section-excerpt .inner-section {
  max-width: 37.32rem;
}
.page-annual-events .page-section.section-main {
  --dade-container-max-width: 50.66rem;
}
@media (min-width: 1280px) {
  .page-annual-events .page-section.section-main {
    --dade-container-max-width: 877px;
    --dade-container-offset-x: calc(
      var(--dade-page-max-width) - var(--dade-container-max-width)
    );
  }
}
@media (min-width: 1600px) {
  .page-annual-events .page-section.section-main {
    --dade-container-max-width: 1096px;
  }
}
@media (min-width: 1280px) {
  .page-annual-events .page-section.section-main .inner-section {
    padding: 3.14rem 4.13rem 2.87rem 3.46rem;
    border-radius: 1.31rem;
  }
}
.page-annual-events .event-item {
  padding: 1.21rem 1.17rem 1.21rem 1.48rem;
  font-size: 1rem;
  line-height: 1.5120147874;
  color: #fff;
  background-color: #0b3b1f;
  max-width: 43.07rem;
  margin: auto;
  display: flex;
  gap: 1.84rem;
}
@media (max-width: 575.98px) {
  .page-annual-events .event-item {
    gap: 1rem;
  }
}
.page-annual-events .event-item .col-image {
  align-self: flex-start;
  flex: 0 0 14.09rem;
  max-width: 34.8656593501%;
  -webkit-clip-path: polygon(
    0 0,
    100% 0,
    100% 6.2331867988%,
    91.1423134965% 16.7311856177%,
    100% 27.2291844367%,
    100% 100%,
    0 100%
  );
  clip-path: polygon(
    0 0,
    100% 0,
    100% 6.2331867988%,
    91.1423134965% 16.7311856177%,
    100% 27.2291844367%,
    100% 100%,
    0 100%
  );
}
.page-annual-events .event-item .col-text {
  display: flex;
  flex-direction: column;
}
.page-annual-events .event-item .date {
  margin-bottom: 1rem;
  font-family: 'Antonio', sans-serif;
  font-size: 2rem;
  font-weight: 400;
  line-height: 0.8368384562;
  text-transform: uppercase;
}
.page-annual-events .event-item .name {
  /* margin-top: auto; */
  margin-bottom: 0.2em;
  font-family: 'Antonio', sans-serif;
  font-size: 1.66rem;
  font-weight: 400;
  line-height: 1.2938888889;
  text-transform: uppercase;
}
.page-annual-events .event-item .name .small-size {
  display: block;
  font-size: 1.43rem;
}
.page-annual-events .event-item .info > * {
  margin: 0;
}
.page-annual-events .event-list {
  padding-left: 0;
  list-style: none;
  margin: 0;
}
.page-annual-events .event-list > li {
  margin-bottom: 1.5rem;
}
@media (min-width: 768px) {
  .page-annual-events .event-list > li:last-child {
    margin-bottom: 0;
  }
}
@media (min-width: 1280px) {
  .page-annual-events .event-list > li {
    margin-bottom: 2.83rem;
  }
}
.page-meeting-minutes .page-section.section-excerpt .inner-section {
  max-width: 28.61rem;
}
.page-meeting-minutes .page-section.section-excerpt .caption {
  font-size: 2rem;
  line-height: 1.29;
}
.page-meeting-minutes .page-section.section-main {
  --dade-container-max-width: 71.75rem;
  padding-top: 0;
}
@media (min-width: 1280px) {
  .page-meeting-minutes .page-section.section-main {
    --dade-container-max-width: 1242px;
    --dade-container-offset-x: calc(
      var(--dade-page-max-width) - var(--dade-container-max-width)
    );
  }
}
@media (min-width: 1600px) {
  .page-meeting-minutes .page-section.section-main {
    --dade-container-max-width: 1552px;
  }
}
.page-meeting-minutes .next-meeting {
  padding-top: 1.25rem;
  padding-bottom: 1rem;
  font-size: 0.97rem;
  font-weight: 600;
  line-height: 1.5119047619;
  text-align: center;
  color: #365b43;
}
.page-meeting-minutes .next-meeting .caption {
  margin-bottom: 0.46rem;
  font-size: 1.66rem;
  line-height: 1.2938888889;
  color: #0b3b1f;
}
.page-meeting-minutes .next-meeting .caption-lg {
  margin-bottom: 0;
  font-size: 2rem;
  line-height: 2.0799630229;
}
.page-meeting-minutes .meeting-board {
  max-width: 71.75rem;
  margin: auto;
  padding-bottom: 6.47rem;
  color: #fff;
  background-color: #0b3b1f;
  border: 1.39rem solid #54a79a;
  border-radius: 6.43rem;
  font-family: 'Antonio', sans-serif;
  font-weight: 600;
  text-align: center;
}
@media (max-width: 767.98px) {
  .page-meeting-minutes .meeting-board {
    border-width: 15px;
    border-radius: 75px;
  }
}
@media (min-width: 768px) {
  .page-meeting-minutes .meeting-board {
    position: relative;
  }
  .page-meeting-minutes .meeting-board::before {
    content: '';
    display: block;
    width: 15.58rem;
    height: 14.66rem;
    background: url('../images/clipart-content.png') center/contain no-repeat;
    position: absolute;
    top: -8.23rem;
    right: -1.48rem;
  }
}
@media (max-width: 1279.98px) {
  .page-meeting-minutes .meeting-board {
    margin-bottom: 1.5rem;
  }
}
.page-meeting-minutes .meeting-board a {
  text-decoration: none !important;
}
.page-meeting-minutes .meeting-board .caption {
  padding: 2.31rem;
  font-size: 2rem;
  line-height: 1;
  text-shadow: none;
}
.page-meeting-minutes .meeting-board .year {
  margin-bottom: 0.41rem;
  font-size: 2rem;
  font-weight: 700;
  line-height: 2.0799630229;
  display: flex;
  align-items: center;
  gap: 1.39rem;
}
.page-meeting-minutes .meeting-board .year::before,
.page-meeting-minutes .meeting-board .year::after {
  content: '';
  flex-grow: 1;
  height: 3px;
  background-color: #fff;
}
.page-meeting-minutes .meeting-board .year-list {
  padding-left: 0;
  list-style: none;
  margin: 0;
}
.page-meeting-minutes .meeting-board .year-list > li {
  display: flex;
  justify-content: center;
  padding: 0 2.54rem 1.62rem;
}
@media (max-width: 767.98px) {
  .page-meeting-minutes .meeting-board .year-list > li {
    padding-left: 25px;
    padding-right: 25px;
  }
}
.page-meeting-minutes .meeting-board .year-list > li:nth-child(odd) {
  background-color: #54a79a;
}
.page-meeting-minutes .meeting-board .year-list > li:nth-child(even) {
  padding-top: 0.23rem;
  padding-bottom: 1.9rem;
}
.page-meeting-minutes
  .meeting-board
  .year-list
  > li:nth-child(even):last-child {
  margin-bottom: -2.5rem;
}
.page-meeting-minutes .meeting-board .meeting-list {
  padding-left: 0;
  list-style: none;
  max-width: 61.01rem;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2.2rem 2.77rem;
}
@media (max-width: 767.98px) {
  .page-meeting-minutes .meeting-board .meeting-list {
    gap: 20px 25px;
  }
}
.page-meeting-minutes .meeting-board .meeting-list > li {
  flex: 0 0 7.86rem;
  max-width: 7.86rem;
  display: flex;
  justify-content: center;
}
.page-meeting-minutes .meeting-board .meeting-list a {
  flex: 7.86rem;
  min-width: 7.86rem;
  padding: 0.14rem 0.37rem 0.23rem;
  white-space: nowrap;
  font-family: 'Antonio', system-ui;
  font-optical-sizing: auto;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.2939001848;
  text-align: center;
  color: #3c7f72;
  background-color: #fff;
  border-radius: 0.46rem;
}
@media (min-width: 1280px) {
  .page-meet-the-team .site-content {
    margin-bottom: -1rem;
  }
}
.page-meet-the-team .page-section.section-excerpt .inner-section {
  max-width: 38.62rem;
}
.page-meet-the-team .page-section.section-main {
  --dade-container-max-width: 55.75rem;
  padding-bottom: 1.85rem;
}
@media (min-width: 1280px) {
  .page-meet-the-team .page-section.section-main {
    --dade-container-max-width: 965px;
    --dade-container-offset-x: calc(
      var(--dade-page-max-width) - var(--dade-container-max-width)
    );
  }
}
@media (min-width: 1600px) {
  .page-meet-the-team .page-section.section-main {
    --dade-container-max-width: 1206px;
  }
}
.page-meet-the-team .page-section.section-main .caption {
  margin-bottom: 0.69rem;
  font-size: 2rem;
  line-height: 1.5;
}
.page-meet-the-team .page-section.section-main .group-1 {
  margin-bottom: 1.39rem;
  font-size: 0.97rem;
  font-weight: 600;
  line-height: 1.5119047619;
}
@media (min-width: 768px) {
  .page-meet-the-team .page-section.section-main .group-1 {
    display: flex;
    -moz-column-gap: 1.6rem;
    column-gap: 1.6rem;
  }
}
.page-meet-the-team .page-section.section-main .group-1 .col-text {
  flex: 0 0 16.39rem;
}
.page-meet-the-team .page-section.section-main .group-1 .col-text > * {
  margin-bottom: 0.69rem;
}
.page-meet-the-team .page-section.section-main .group-1 .col-image {
  flex: 1;
  margin-bottom: 1rem;
  padding-top: 0.5rem;
}
.page-meet-the-team .page-section.section-main .group-1 .col-image img {
  width: 100%;
  border-radius: 0.42rem;
}
.page-meet-the-team .page-section.section-main .group-1 .subcaption {
  margin-bottom: 0.92rem;
  font-family: 'Antonio', sans-serif;
  font-size: 1.66rem;
  font-weight: 400;
  line-height: 1.28;
  text-shadow: 0 0.18rem 0.18rem rgba(0, 0, 0, 0.25);
}
.page-meet-the-team .page-section.section-main .group-2 {
  margin-bottom: 5.55rem;
}
@media (min-width: 1280px) {
  .page-meet-the-team .page-section.section-main .group-2 {
    margin-right: -4.14rem;
  }
}
.page-meet-the-team .page-section.section-main .group-3 {
  max-width: 52.16rem;
  margin-bottom: 1rem;
}
.page-meet-the-team .page-section.section-main .group-4 {
  max-width: 55.14rem;
}
.page-meet-the-team .page-section.section-main .group-4 .caption {
  line-height: 2.25;
}
@media (min-width: 768px) {
  .page-meet-the-team .staff-item {
    display: flex;
    flex-wrap: wrap;
    -moz-column-gap: 1.96rem;
    column-gap: 1.96rem;
  }
}
.page-meet-the-team .staff-item p {
  margin-bottom: 0.69rem;
}
.page-meet-the-team .staff-item .photo {
  float: left;
  width: 160px;
  margin-right: 1rem;
  margin-bottom: 0.25rem;
  position: relative;
}
@media (min-width: 768px) {
  .page-meet-the-team .staff-item .photo {
    align-self: flex-start;
    flex: 0 0 16.34rem;
    max-width: 27.2858510375%;
    margin-right: 0;
    margin-bottom: 1.04rem;
  }
}
.page-meet-the-team .staff-item .photo img {
  width: 100%;
  border-radius: 0.42rem;
  border-bottom-left-radius: 0px;
  border-bottom-right-radius: 0px;
}
.page-meet-the-team .staff-item .photo-data {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 8.26rem;
  min-height: 2.6rem;
  padding: 0.11rem 0rem;
  padding-right: 0.81rem;
  font-family: 'Inter', system-ui;
  font-size: 0.67rem;
  line-height: 1.2108183079;
  /*  background-color: rgba(255, 255, 255, 0.82);*/
  /*  border-top-right-radius: 0.42rem;*/
  position: relative;
  bottom: 0;
  left: 0;
}
.page-meet-the-team .staff-item .photo-data > * {
  margin: 0;
  font-size: 0.75rem;
}
.page-meet-the-team .staff-item .photo-data .name {
  font-size: 0.83rem;
  font-weight: 600;
  line-height: 2;
}
.page-meet-the-team .staff-item .info {
  flex: 0 0 calc(72.7141489625% - 1.96rem);
}
.page-meet-the-team .staff-item .extra {
  flex: 0 0 100%;
}
.page-meet-the-team .staff-list {
  padding-left: 0;
  list-style: none;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 3.47rem;
}
@media (min-width: 1280px) {
  .page-meet-the-team .staff-list > li:nth-child(1) .staff-item {
    max-width: 59.89rem;
  }
  .page-meet-the-team .staff-list > li:nth-child(1) .staff-item .photo {
    max-width: 27.2858510375%;
  }
  .page-meet-the-team .staff-list > li:nth-child(1) .staff-item .info {
    flex-basis: calc(72.7141489625% - 1.96rem);
  }
  .page-meet-the-team .staff-list > li:nth-child(2) .staff-item {
    max-width: 55.75rem;
  }
  .page-meet-the-team .staff-list > li:nth-child(2) .staff-item .photo {
    max-width: 29.3115172826%;
  }
  .page-meet-the-team .staff-list > li:nth-child(2) .staff-item .info {
    flex-basis: calc(70.6884827174% - 1.96rem);
  }
  .page-meet-the-team .staff-list > li:nth-child(3) .staff-item {
    max-width: 58.03rem;
  }
  .page-meet-the-team .staff-list > li:nth-child(3) .staff-item .photo {
    max-width: 28.1570645593%;
  }
  .page-meet-the-team .staff-list > li:nth-child(3) .staff-item .info {
    flex-basis: calc(71.8429354407% - 1.96rem);
  }
}
.page-meet-the-team .director-item {
  font-family: 'Inter', system-ui;
  font-size: 0.74rem;
  line-height: 1.690625;
}
.page-meet-the-team .director-item > img {
  display: block;
  border-radius: 0.42rem;
}
.page-meet-the-team .director-item > div {
  min-height: 4.94rem;
  margin-top: 0.82rem;
}
.page-meet-the-team .director-item > div > * {
  margin: 0;
}
.page-meet-the-team .director-list {
  padding-left: 0;
  list-style: none;
  margin: 0;
  display: contents;
}
.page-meet-the-team .director-list > li {
  flex: 0 0 12.34rem;
}
@media (max-width: 767.98px) {
  .page-meet-the-team .director-list > li {
    max-width: calc(50% - 10px);
  }
}
.page-meet-the-team .director-title {
  flex: 0 0 12.34rem;
  max-width: 12.34rem;
  margin-bottom: 1rem;
  font-size: 2rem;
  line-height: 1.2 !important;
}
@media (max-width: 767.98px) {
  .page-meet-the-team .director-title {
    max-width: calc(50% - 0.5rem);
  }
}
.page-meet-the-team .director-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.61rem 0.92rem;
}
@media (max-width: 767.98px) {
  .page-meet-the-team .director-wrapper {
    -moz-column-gap: 1rem;
    column-gap: 1rem;
  }
}
.page-meet-the-team .committee-item {
  display: flex;
  align-items: flex-start;
  gap: 1.01rem;
  font-family: 'Inter', system-ui;
  font-size: 0.83rem;
  line-height: 1.5;
}
@media (max-width: 575.98px) {
  .page-meet-the-team .committee-item {
    flex-wrap: wrap;
  }
}
.page-meet-the-team .committee-item .position {
  flex: 0 0 9.04rem;
  max-width: 9.04rem;
  margin: 0.65rem 0;
  font-family: 'Antonio', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.29;
  min-height: 3.88rem;
  display: flex;
  align-items: center;
}
@media (max-width: 575.98px) {
  .page-meet-the-team .committee-item .position {
    flex: 100%;
    max-width: none;
    min-height: auto;
    margin: 0;
  }
}
.page-meet-the-team .committee-item .photo {
  flex: 0 0 5.56rem;
  max-width: 5.56rem;
  aspect-ratio: 1;
  margin: 0.14rem 0;
  border-radius: 50%;
}
@media (max-width: 575.98px) {
  .page-meet-the-team .committee-item .photo {
    margin-left: 1rem;
  }
}
.page-meet-the-team .committee-item .info {
  flex: 1;
  padding-right: 0.23rem;
}
.page-meet-the-team .committee-item .name {
  margin: 0;
  font-weight: 600;
}
.page-meet-the-team .committee-item .members {
  padding-left: 0;
  list-style: none;
  margin: 0;
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 1.21;
}
.page-meet-the-team .committee-list {
  padding-left: 0;
  list-style: none;
  margin: 0;
  padding-top: 1rem;
}
@media (min-width: 768px) {
  .page-meet-the-team .committee-list {
    display: flex;
    flex-wrap: wrap;
  }
}
@media (min-width: 1280px) {
  .page-meet-the-team .committee-list {
    max-width: 52rem;
  }
}
.page-meet-the-team .committee-list > li {
  padding: 1.62rem 0;
}
.page-meet-the-team .committee-list > li:not(:last-child) {
  border-bottom: 1px solid #fff;
}
.page-meet-the-team .committee-list > li:first-child {
  padding-top: 0;
}
@media (min-width: 768px) {
  .page-meet-the-team .committee-list > li {
    flex: 0 0 50%;
    padding-bottom: 1.85rem;
  }
  .page-meet-the-team .committee-list > li:nth-child(odd) {
    flex-basis: 26.45rem;
    max-width: 50.8637782184%;
    border-right: 0.17rem solid #fff;
  }
}
@media (min-width: 768px) and (max-width: 1279.98px) {
  .page-meet-the-team .committee-list > li:nth-child(odd) {
    flex-basis: 50%;
  }
}
@media (min-width: 768px) {
  .page-meet-the-team .committee-list > li:nth-child(even) {
    flex-basis: 25.55rem;
    max-width: 49.1353326635%;
  }
}
@media (min-width: 768px) and (max-width: 1279.98px) {
  .page-meet-the-team .committee-list > li:nth-child(even) {
    flex-basis: 50%;
  }
}
@media (min-width: 768px) {
  .page-meet-the-team .committee-list > li:nth-child(even) .committee-item {
    padding-left: 8.9716446809%;
  }
  .page-meet-the-team .committee-list > li:nth-child(even) .position {
    flex-basis: 0 0 5.87rem;
    max-width: 7.87rem;
  }
  .page-meet-the-team .committee-list > li:nth-child(-n + 2) {
    padding-top: 0;
  }
  .page-meet-the-team .committee-list > li:nth-child(-n + 2) .committee-item {
    margin-top: -1rem;
  }
  .page-meet-the-team .committee-list > li:nth-child(-n + 2) .position {
    align-items: flex-start;
  }
  .page-meet-the-team .committee-list > li:not(:last-child) {
    border-bottom: 0.12rem solid #fff;
  }
  .page-meet-the-team .committee-list > li:nth-last-child(2):nth-child(odd) {
    border-bottom: 0;
  }
}
.page-chamber .page-section .caption-lg {
  font-size: 2rem;
  line-height: 1.5;
}
.page-chamber .page-section.section-excerpt .inner-section {
  max-width: 42.71rem;
}
@media (min-width: 1280px) {
  .page-chamber .page-section.section-excerpt .inner-section {
    padding-top: 1rem;
  }
  .page-chamber .page-section.section-excerpt .inner-section::before {
    width: 6.65rem;
    height: 16.3rem;
    margin-top: 1.39rem;
  }
}
.page-chamber .page-section.section-1 {
  --dade-container-max-width: 42.62rem;
  padding-bottom: 0.92rem;
}
@media (min-width: 1280px) {
  .page-chamber .page-section.section-1 {
    --dade-container-max-width: 738px;
    --dade-container-offset-x: calc(
      var(--dade-page-max-width) - var(--dade-container-max-width)
    );
  }
}
@media (min-width: 1600px) {
  .page-chamber .page-section.section-1 {
    --dade-container-max-width: 922px;
  }
}
.page-chamber .page-section.section-1 .container {
  position: relative;
}
.page-chamber .page-section.section-1 .container::before {
  content: '';
  display: block;
  width: 7.29rem;
  aspect-ratio: 19/15;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 93 93' fill='%23466978'%3e%3cpath d='M0.720703 0.940918L47.5004 33.6867L92.7207 0.940918L67.7715 47.7206L92.7207 92.9409L47.5004 63.3138L0.720703 92.9409L30.3478 47.7206L0.720703 0.940918Z'/%3e%3c/svg%3e"),
    url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 93 93' fill='%23e6902b'%3e%3cpath d='M0.720703 0.940918L47.5004 33.6867L92.7207 0.940918L67.7715 47.7206L92.7207 92.9409L47.5004 63.3138L0.720703 92.9409L30.3478 47.7206L0.720703 0.940918Z'/%3e%3c/svg%3e");
  background-size: 3.84rem;
  background-position: 0 0, 100% 100%;
  background-repeat: no-repeat;
  transform: rotate(98deg);
  position: absolute;
  right: calc(100% + 0.92rem);
  top: calc(100% - 2.77rem);
}
.page-chamber .page-section.section-1 .container::after {
  content: '';
  display: block;
  width: 8.74rem;
  aspect-ratio: 138/161;
  background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 138 161' fill='%23466978'%3e%3cpath d='M75.805 68.6656L90.1293 0.236075L64.7172 64.2763L18.0525 20.0892L57.5277 71.8231L0.0578561 70.7825L57.083 80.0477L7.96467 128.235L63.15 87.4704L86.5141 160.189L74.3322 86.3304L126.86 117.71L77.9012 77.7379L137.126 50.7813L75.805 68.6656Z'/%3e%3c/svg%3e")
    center/contain no-repeat;
  position: absolute;
  position: absolute;
  left: calc(100% - 0.46rem);
  bottom: 19%;
}
.page-chamber .page-section.section-1 .caption-lg {
  margin-bottom: 0.92rem;
}
.page-chamber .page-section.section-1 .group {
  max-width: 40.58rem;
  padding-top: 0.23rem;
}
.page-chamber .page-section.section-1 .group:first-child {
  position: relative;
}
.page-chamber .page-section.section-1 .group:first-child::before {
  content: '';
  display: block;
  width: 11.48rem;
  height: 11.4rem;
  background: url('../images/clipart-footer.png') center/contain no-repeat;
  position: absolute;
  top: 5.09rem;
  right: calc(100% + 1.39rem);
}
.page-chamber .page-section.section-1 .group-3 {
  max-width: 39.9rem;
}
.page-chamber .page-section.section-1 .group-4 {
  max-width: 100%;
}
.page-chamber .page-section.section-1 .group-4 p {
  letter-spacing: 0.05em;
}
.page-chamber .page-section.section-1 ul {
  padding-left: 0;
  list-style: none;
  margin-left: 2rem;
}
@media (min-width: 768px) {
  .page-chamber .page-section.section-1 ul {
    margin-left: 4.39rem;
  }
}
.page-chamber .page-section.section-1 ul > li {
  padding-left: 0.75em;
}
.page-chamber .page-section.section-1 ul > li::before {
  content: '•';
  float: left;
  margin-left: -0.6em;
}
.page-chamber .page-section.section-2 {
  --dade-container-max-width: 40.39rem;
}
@media (min-width: 1280px) {
  .page-chamber .page-section.section-2 {
    --dade-container-max-width: 699px;
    --dade-container-offset-x: calc(
      var(--dade-page-max-width) - var(--dade-container-max-width)
    );
  }
}
@media (min-width: 1600px) {
  .page-chamber .page-section.section-2 {
    --dade-container-max-width: 874px;
  }
}
@media (min-width: 1280px) {
  .page-chamber .page-section.section-2 {
    padding-top: 3.24rem;
    padding-bottom: 2.77rem;
  }
}
.page-chamber .page-section.section-2 .container {
  position: relative;
}
.page-chamber .page-section.section-2 .container::before,
.page-chamber .page-section.section-2 .container::after {
  content: '';
  display: block;
  width: 12.9rem;
  height: 14.1rem;
  background: url('../images/clipart-content.png') center/contain no-repeat;
  transform: rotate(272deg);
  position: absolute;
}
.page-chamber .page-section.section-2 .container::before {
  top: 11%;
  left: calc(100% - 1.62rem);
}
.page-chamber .page-section.section-2 .container::after {
  right: calc(100% - 2.54rem);
  bottom: 31%;
}
.page-chamber .page-section.section-2 .caption-lg {
  margin-bottom: 2.67rem;
}
.page-chamber .page-section.section-2 .feature-list {
  padding-left: 0;
  list-style: none;
  margin: 0;
}
.page-chamber .page-section.section-2 .feature-list > li + li {
  margin-top: 2.31rem;
}
.page-chamber .page-section.section-2 .feature-list .caption {
  margin-bottom: 0.69rem;
  font-weight: 400;
  text-shadow: none;
}
.page-chamber .page-section.section-3 {
  --dade-container-max-width: 41.49rem;
}
@media (min-width: 1280px) {
  .page-chamber .page-section.section-3 {
    --dade-container-max-width: 718px;
    --dade-container-offset-x: calc(
      var(--dade-page-max-width) - var(--dade-container-max-width)
    );
  }
}
@media (min-width: 1600px) {
  .page-chamber .page-section.section-3 {
    --dade-container-max-width: 897px;
  }
}
@media (min-width: 768px) {
  .page-chamber .page-section.section-3 {
    padding-bottom: 0;
  }
}
@media (min-width: 1280px) {
  .page-chamber .page-section.section-3 {
    padding-top: 2.08rem;
  }
}
.page-chamber .page-section.section-3 .container {
  position: relative;
}
.page-chamber .page-section.section-3 .container::before {
  content: '';
  display: block;
  width: 7.29rem;
  aspect-ratio: 19/15;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 93 93' fill='%23466978'%3e%3cpath d='M0.720703 0.940918L47.5004 33.6867L92.7207 0.940918L67.7715 47.7206L92.7207 92.9409L47.5004 63.3138L0.720703 92.9409L30.3478 47.7206L0.720703 0.940918Z'/%3e%3c/svg%3e"),
    url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 93 93' fill='%23e6902b'%3e%3cpath d='M0.720703 0.940918L47.5004 33.6867L92.7207 0.940918L67.7715 47.7206L92.7207 92.9409L47.5004 63.3138L0.720703 92.9409L30.3478 47.7206L0.720703 0.940918Z'/%3e%3c/svg%3e");
  background-size: 3.84rem;
  background-position: 0 0, 100% 100%;
  background-repeat: no-repeat;
  position: absolute;
  left: calc(100% + 1.92rem);
  bottom: calc(100% - 1.728rem);
}
.page-chamber .page-section.section-3 .container::after {
  content: '';
  display: block;
  width: 8.74rem;
  aspect-ratio: 138/161;
  background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 138 161' fill='%23466978'%3e%3cpath d='M75.805 68.6656L90.1293 0.236075L64.7172 64.2763L18.0525 20.0892L57.5277 71.8231L0.0578561 70.7825L57.083 80.0477L7.96467 128.235L63.15 87.4704L86.5141 160.189L74.3322 86.3304L126.86 117.71L77.9012 77.7379L137.126 50.7813L75.805 68.6656Z'/%3e%3c/svg%3e")
    center/contain no-repeat;
  position: absolute;
  position: absolute;
  right: 100%;
  top: 15%;
}
.page-chamber .page-section.section-3 .caption-lg {
  margin-bottom: 0.46rem;
}
.page-chamber .page-section.section-3 .group-1 {
  padding-bottom: 0.46rem;
}
@media (min-width: 1280px) {
  .page-chamber .page-section.section-3 .group-2 {
    margin-bottom: -6.24rem;
  }
}
.page-chamber .page-section.section-3 .group-2 .caption-lg {
  margin-bottom: -0.46rem;
}
.page-chamber .page-section.section-3 .group-2 .row {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-end;
  gap: 1rem 2.63rem;
  margin-bottom: 1.25rem;
  margin-right: -1rem;
}
.page-chamber .page-section.section-3 .group-2 .row .col:last-child {
  padding-bottom: 0.5rem;
}
.page-chamber .page-section.section-3 .click-btn-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 10.49rem;
  height: 6.85rem;
  padding: 0 0.92rem 0.92rem 0;
  margin: auto;
  color: #fdf3b2;
  background: url('../images/click-button.png') center/contain no-repeat;
  margin-top: 20px;
}
.page-chamber .page-section.section-3 .click-btn {
  font-family: 'Antonio', sans-serif;
  font-size: 1.85rem;
  font-weight: 700;
  line-height: 1.7000747943;
  text-decoration: none !important;
  color: inherit !important;
}
.page-chamber .page-section.section-3 .download-btn-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20.7rem;
  height: 6.62rem;
  margin: auto;
  background: url('../images/download-button.png') center/contain no-repeat;
}
.page-chamber .page-section.section-3 .download-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 7.37rem;
  height: 2.89rem;
  margin-bottom: 1px;
  margin-right: 1px;
  padding-bottom: 1px;
  color: #fbdd1b;
  background-color: #093b1e;
  border-radius: 1.29rem;
  font-family: 'Antonio', sans-serif;
  font-size: 1.11rem;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  text-decoration: none !important;
}
.page-chamber .page-section.section-3 .logo-list {
  padding-left: 0;
  list-style: none;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: center;
  gap: 2.31rem 5.09rem;
  margin-bottom: 155px;
}
.page-chamber .page-section.section-3 .logo-list > li:nth-child(1) img {
  width: 7.58rem;
}
.page-chamber .page-section.section-3 .logo-list > li:nth-child(2) img {
  width: 6.8rem;
}

.tourismmebers {
  margin-top: 50px;
}
.page-visit .logo-list {
  padding-left: 0;
  list-style: none;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.31rem 2rem;
}

.page-visit .logo-list li {
  /* border-top-left-radius: 110px; 
  border-top-right-radius: 110px; 
  border-bottom-right-radius: 110px; 
  border-bottom-left-radius: 110px;
  border: 40px solid #fff;
  background-color: #fff; */
  width: 200px;
  height: 200px;
  display: flex;
  align-items: center;
}

.page-visit .logo-list li img {
  width: 10rem;
}
@media (max-width: 575.98px) {
  .page-visit .logo-list li {
    width: 200px;
    height: 100px;
  }
}

/* .page-visit .logo-list > li:nth-child(2) img {
  width: 8rem;
  margin-top: 25px;
}

.page-visit .logo-list > li:nth-child(3) img {
  width: 8rem;
} */

/* .page-visit .logo-list > li:nth-child(3)  {
  border: 20px solid #fff;
} */

/* .page-visit .logo-list > li:nth-child(4) img {
  width:9rem;
} */

/* @media (max-width: 575.98px) {
  .page-visit .logo-list > li:nth-child(2) img {
    width: 10rem;
    margin-top: 25px;
  }
} */

/* .page-visit .logo-list > li:nth-child(1) img {
  width: 7.58rem;
}
.page-visit .logo-list > li:nth-child(2) img {
  width: 6.8rem;
}  */

.page-business-directory .section-excerpt .inner-section {
  max-width: 24.26rem;
}

@media (max-width: 575.98px) {
  .page-business-directory .section-excerpt .inner-section,
  .page-business-directory .gz-pagetitle {
    text-align: center;
  }
}

.page-join-the-alliance .section-excerpt .inner-section {
  max-width: 33.85rem;
}

@media (max-width: 575.98px) {
  .page-join-the-alliance .excerpt-text,
  .page-join-the-alliance .gz-pagetitle {
    text-align: center;
  }
  .page-join-the-alliance .inner-section {
    padding: 10px;
  }

  .page-join-the-alliance .membership-type-wrapper {
    display: flex;
    flex-wrap: wrap;
  }

  .page-join-the-alliance #registration-header img {
    max-width: 150px !important;
  }

  .page-join-the-alliance .TermsOfServiceController {
    text-align: center;
  }

  .page-join-the-alliance .mn-feesContainer {
    width: 95% !important;
    margin-left: 5px !important;
  }
}

.page-investor-directory .section-excerpt .inner-section {
  max-width: 31.03rem;
}
.page-chamber-events-calendar .section-excerpt .inner-section {
  max-width: 27.36rem;
}
.page-stay .section-excerpt .inner-section {
  max-width: 34.01rem;
  font-size: 0.75rem;
  line-height: 1.75;
}
.page-eat .section-excerpt .inner-section {
  max-width: 40.7rem;
  font-size: 0.75rem;
  line-height: 1.75;
}
.page-shop .section-excerpt .inner-section {
  max-width: 20.56rem;
  font-size: 0.75rem;
  line-height: 1.75;
}
.page-gather .section-excerpt .inner-section {
  max-width: 26.62rem;
  font-size: 0.75rem;
  line-height: 1.75;
}
@media (min-width: 1280px) {
  .page-home .site-content::after {
    width: 10.55rem;
    height: 10.47rem;
    margin: 0 -5.275rem;
    top: calc(100% - 2.77rem);
    left: calc(50% + 27.74rem);
  }
}
.page-home .page-section.section-1 {
  display: block;
  padding-top: 0.44rem;
  padding-bottom: 0.44rem;
}
@media (min-width: 1280px) {
  .page-home .page-section.section-1 {
    display: block;
  }
}
.page-home .page-section.section-1 .caption {
  margin-bottom: 0.83rem;
  font-size: 2.08rem;
  line-height: 1;
  text-shadow: none;
  color: #004aad;
}
.page-home .page-section.section-1 .event-item {
  width: 14.56rem;
}
.page-home .page-section.section-1 .event-list {
  padding-left: 0;
  list-style: none;
  margin: 0;
  display: flex;
  justify-content: center;
  gap: 0.61rem;
}
.page-home .page-section.section-1 .event-list > li {
  flex: 0 0 14.56rem;
}
.page-home .page-section.section-2 {
  --dade-container-max-width: 59.82rem;
  padding-top: 25px;
  padding-bottom: 50px;
}
@media (min-width: 1280px) {
  .page-home .page-section.section-2 {
    --dade-container-max-width: 1035px;
    --dade-container-offset-x: calc(
      var(--dade-page-max-width) - var(--dade-container-max-width)
    );
  }
}
@media (min-width: 1600px) {
  .page-home .page-section.section-2 {
    --dade-container-max-width: 1294px;
  }
}
@media (min-width: 1280px) {
  .page-home .page-section.section-2 .mobile-show {
    display: none !important;
  }
}
@media (max-width: 1279.98px) {
  .page-home .page-section.section-2 .mobile-hidden {
    display: none !important;
  }
}
/* .page-home .page-section.section-2 .col-image {
  display: none;
} */
@media (min-width: 1280px) {
  .page-home .page-section.section-2 {
    padding-top: 0.7rem;
    padding-bottom: 0.94rem;
    text-align: center;
  }
  .page-home .page-section.section-2 .row {
    display: flex;
    gap: 1.16rem;
  }
  .page-home .page-section.section-2 .row .col-text {
    flex: 0 0 33.21rem;
    max-width: 33.21rem;
  }
  .page-home .page-section.section-2 .row .col-image {
    display: initial;
    flex: 0 0 31.07rem;
    padding-top: 1.62rem;
  }
  .page-home .page-section.section-2 .row .col-image img {
    width: 31.07rem;
  }
}
.page-home .page-section.section-2 .title-image {
  width: 100%;
  max-width: 315px;
  aspect-ratio: 315/85;
  margin: 0 auto 30px;
  font-size: 1rem;
  background: url('../images/endless-adventure-sm.png') center/contain no-repeat;
  overflow: hidden;
}
@media only screen and (-webkit-min-device-pixel-ratio: 2),
  only screen and (min-resolution: 192dpi),
  only screen and (min-resolution: 2dppx) {
  .page-home .page-section.section-2 .title-image {
    background-image: url('../images/endless-adventure-sm@2x.png');
  }
}
.page-home .page-section.section-2 .title-image::before {
  content: '';
  display: block;
  padding-top: 26.9716789434%;
}
@media (min-width: 1280px) {
  .page-home .page-section.section-2 .title-image {
    max-width: 26.35rem;
    aspect-ratio: 570/162;
    margin-bottom: 0.69rem;
    background-image: url('../images/endless-adventure.png');
  }
}
@media only screen and (min-width: 1280px) and (-webkit-min-device-pixel-ratio: 2),
  only screen and (min-width: 1280px) and (min-resolution: 192dpi),
  only screen and (min-width: 1280px) and (min-resolution: 2dppx) {
  .page-home .page-section.section-2 .title-image {
    background-image: url('../images/endless-adventure@2x.png');
  }
}
@media (min-width: 1280px) {
  .page-home .page-section.section-2 .title-image::before {
    padding-top: 28.4210526316%;
  }
}
.page-home .page-section.section-2 .guide-btn {
  display: block;
  width: 239px;
  margin: 0 auto 50px;
  padding: 12px;
  color: #5cb5f5 !important;
  background-color: #fff;
  border-radius: 36px;
  font-family: 'Antonio', sans-serif;
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  text-decoration: none !important;
}
@media (min-width: 1px) {
  .page-home .page-section.section-2 .guide-btn {
    width: 5.61rem;
    height: 2.2rem;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    color: #fbdd1b !important;
    background-color: #093b1e;
    border-radius: 0.98rem;
  }
  .page-home .page-section.section-2 .guide-btn-wrapper {
    width: 15.75rem;
    height: 5.03rem;
    margin: auto;
    display: flex !important;
    align-items: center;
    justify-content: center;
    background: url('../images/contact-button.png') no-repeat;
    background-size: 100% 100%;
  }
}
.page-home .page-section.section-3 {
  --dade-container-max-width: 76.61rem;
  padding-top: 25px;
  padding-bottom: 60px;
}
@media (min-width: 1280px) {
  .page-home .page-section.section-3 {
    --dade-container-max-width: 1326px;
    --dade-container-offset-x: calc(
      var(--dade-page-max-width) - var(--dade-container-max-width)
    );
  }
}
@media (min-width: 1600px) {
  .page-home .page-section.section-3 {
    --dade-container-max-width: 1657px;
  }
}
@media (max-width: 1279.98px) {
  .page-home .page-section.section-3 {
    border-bottom: 30px solid #fff;
  }
}

.page-home .page-section.section-3 {
  padding-top: 2.41rem;
  padding-bottom: 2.35rem;
  background: #a4bf96 url('../images/circlular-background.png') repeat;
  background-position: calc(50% + 8.6535rem) 60%;
  background-size: 19.23rem auto;
}

.page-home .page-section.section-3 .card-mobile-item {
  font-size: 34px;
  font-weight: 700;
  line-height: 1.7;
  text-align: center;
  text-decoration: none !important;
  text-shadow: 0 0.18rem 0.18rem rgba(0, 0, 0, 0.25);
  color: #fff;
  display: block;
  max-width: 328px;
  height: 100%;
  margin: auto;
  border: 10px solid #fff;
  border-radius: 37px;
  box-shadow: 0 0.18rem 0.32rem 0.37rem rgba(0, 0, 0, 0.25);
  overflow: hidden;
  position: relative;
}
.page-home .page-section.section-3 .card-mobile-item span {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 35px;
}
.page-home .page-section.section-3 .card-mobile-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.page-home .page-section.section-3 .card-mobile-list {
  padding-left: 0;
  list-style: none;
  max-width: 686px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}
@media (min-width: 1280px) {
  .page-home .page-section.section-3 .card-mobile-list {
    display: none;
  }
}
.page-home .page-section.section-3 .card-desktop-item {
  display: block;
  max-width: 18.24rem;
  border: 0.41rem solid #54a79a;
  border-radius: 0.62rem;
  position: relative;
  overflow: hidden;
  text-decoration: none !important;
  box-shadow: 0.25rem 0.25rem 0.33rem rgba(0, 0, 0, 0.47);
  font-family: 'Inter', system-ui;
  font-optical-sizing: auto;
  font-size: 1.32rem;
  font-weight: 700;
  line-height: 1.2101017187;
  text-align: center;
  color: #fff !important;
  text-shadow: 0 0 0.04rem #004aad, 0 0.04rem 0 #004aad, 0.04rem 0 0 #004aad,
    0 -0.04rem 0 #004aad, -0.04rem 0 0 #004aad,
    0 0.16rem 0.16rem rgba(0, 0, 0, 0.5);
}
.page-home .page-section.section-3 .card-desktop-item span {
  position: absolute;
  left: 0;
  right: 0;
  top: 0.23rem;
}
.page-home .page-section.section-3 .card-desktop-item img {
  width: 100%;
}
.page-home .page-section.section-3 .card-desktop-list {
  padding-left: 0;
  list-style: none;
  margin: 0;
  display: block;
}
@media (min-width: 1280px) {
  .page-home .page-section.section-3 .card-desktop-list {
    display: flex;
    gap: 1.21rem;
  }
  .page-home .page-section.section-3 .card-desktop-list > li {
    flex: 0 0 18.24rem;
    max-width: calc(25% - 0.9075rem);
  }
}
.page-home .page-section.section-4 {
  --dade-container-max-width: 58.48rem;
  padding-top: 35px;
  padding-bottom: 65px;
}
@media (min-width: 1280px) {
  .page-home .page-section.section-4 {
    --dade-container-max-width: 1012px;
    --dade-container-offset-x: calc(
      var(--dade-page-max-width) - var(--dade-container-max-width)
    );
  }
}
@media (min-width: 1600px) {
  .page-home .page-section.section-4 {
    --dade-container-max-width: 1265px;
  }
}
@media (min-width: 1280px) {
  .page-home .page-section.section-4 {
    padding-top: 1.95rem;
    padding-bottom: 2.17rem;
  }
}
.page-home .page-section.section-4 .caption {
  margin-bottom: 35px;
  font-size: 40px;
  line-height: 1.27;
  color: #365b43;
}
@media (max-width: 1279.98px) {
  .page-home .page-section.section-4 .caption {
    text-shadow: none;
  }
}
@media (min-width: 1280px) {
  .page-home .page-section.section-4 .caption {
    margin-bottom: 1.62rem;
    font-size: 2rem;
    line-height: 1;
    color: #0b3b1f;
  }
}
.page-home .page-section.section-4 .logo-mobile-item {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 110px;
  margin: auto;
  aspect-ratio: 108.34/133.97;
  border-radius: 10px;
  overflow: hidden;
}
@media (min-width: 768px) and (max-width: 1279.98px) {
  .page-home .page-section.section-4 .logo-mobile-item {
    margin: 0;
  }
}
.page-home .page-section.section-4 .logo-mobile-item img {
  display: block;
  max-width: none;
  width: calc(100% + 2px);
}
.page-home .page-section.section-4 .logo-mobile-list {
  padding-left: 0;
  list-style: none;
  max-width: 310px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  row-gap: 28px;
  position: relative;
}
@media (min-width: 768px) and (max-width: 1279.98px) {
  .page-home .page-section.section-4 .logo-mobile-list {
    max-width: 690px;
    gap: 0 35px;
  }
}
@media (min-width: 1280px) {
  .page-home .page-section.section-4 .logo-mobile-list {
    display: none;
  }
}
.page-home .page-section.section-4 .logo-mobile-list:before {
  content: '';
  display: block;
  width: 70px;
  height: 81px;
  background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 70 81' fill='%23466978'%3e%3cpath d='M38.3273 34.75L45.5316 0.333777L32.7508 32.5424L9.28108 10.3188L29.1349 36.338L0.230771 35.8146L28.9112 40.4746L4.20745 64.7101L31.9626 44.2077L43.7134 80.7813L37.5866 43.6344L64.0053 59.4165L39.3816 39.3128L69.1685 25.7552L38.3273 34.75Z'/%3e%3c/svg%3e")
    center/contain no-repeat;
  position: absolute;
  top: 12px;
  left: 0;
}
@media (min-width: 768px) and (max-width: 1279.98px) {
  .page-home .page-section.section-4 .logo-mobile-list:before {
    left: -20px;
  }
}
.page-home .page-section.section-4 .logo-mobile-list > li {
  flex: 0 0 50%;
  padding: 0 0.5rem;
}
.page-home .page-section.section-4 .logo-mobile-list > li:first-child {
  flex-basis: 100%;
}
@media (min-width: 768px) and (max-width: 1279.98px) {
  .page-home .page-section.section-4 .logo-mobile-list > li {
    display: contents;
  }
  .page-home
    .page-section.section-4
    .logo-mobile-list
    > li:nth-child(4)::after {
    content: '';
    display: block;
    flex: 100%;
    height: 28px;
  }
}
.page-home .page-section.section-4 .logo-desktop-item {
  width: 8.74rem;
  height: 11.4rem;
}
.page-home .page-section.section-4 .logo-desktop-item img {
  width: 100%;
  border-radius: 0.54rem;
}
.page-home .page-section.section-4 .logo-desktop-list {
  padding-left: 0;
  list-style: none;
  display: none;
}
@media (min-width: 1280px) {
  .page-home .page-section.section-4 .logo-desktop-list {
    display: block;
  }
}
.page-home .page-section.section-4 .logo-desktop-list > li:not(:first-child) {
  display: none;
}
.page-home .page-section.section-4 .logo-desktop-list li {
  width: 8.74rem;
  height: 16.19rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.page-home .page-section.section-4 .logo-desktop-wrapper {
  margin-left: calc(var(--dade-container-offset-x) * -0.5);
  margin-right: calc(var(--dade-container-offset-x) * -0.5);
}
.page-home .page-section.section-4 .slick-arrow {
  margin-left: 300px;
}
.page-home .page-section.section-4 .slick-slide > * {
  transform: translateX(15%);
  transition: 0.2s;
}
.page-home .page-section.section-4 .slick-slide:not(.slick-active) > * {
  opacity: 0 !important;
}
.page-home .page-section.section-4 .slick-slide + .slick-active > * {
  opacity: 20%;
}
.page-home
  .page-section.section-4
  .slick-slide
  + .slick-active
  ~ .slick-active
  > * {
  opacity: 100%;
  transform: translateX(0);
  z-index: 7;
}
.page-home
  .page-section.section-4
  .slick-slide
  + .slick-active
  + .slick-active
  + .slick-active
  > * {
  transform: scale(1.1742832963);
  z-index: 8;
}
.page-home .page-section.section-4 .slick-slide.slick-active.slick-center > * {
  transform: scale(1.4203427483) !important;
  z-index: 9 !important;
}
.page-home
  .page-section.section-4
  .slick-slide.slick-active.slick-center
  + .slick-active
  ~ .slick-active
  > * {
  transform: translateX(0);
  z-index: 7;
}
.page-home
  .page-section.section-4
  .slick-slide.slick-active.slick-center
  + .slick-active
  ~ .slick-active
  + .slick-slide
  > * {
  opacity: 20%;
  z-index: 5;
}
.page-home
  .page-section.section-4
  .slick-slide.slick-active.slick-center
  + .slick-active
  ~ .slick-active
  ~ .slick-slide
  > * {
  transform: translateX(-15%);
  z-index: auto;
}
.page-home .page-section.section-5 {
  --dade-container-max-width: 68.23rem;
  padding-top: 75px;
  padding-bottom: 75px;
}
@media (min-width: 1280px) {
  .page-home .page-section.section-5 {
    --dade-container-max-width: 1181px;
    --dade-container-offset-x: calc(
      var(--dade-page-max-width) - var(--dade-container-max-width)
    );
  }
}
@media (min-width: 1600px) {
  .page-home .page-section.section-5 {
    --dade-container-max-width: 1476px;
  }
}
@media (max-width: 1279.98px) {
  .page-home .page-section.section-5 {
    border-top: 30px solid #fff;
    border-bottom: 30px solid #fff;
  }
}
@media (min-width: 1280px) {
  .page-home .page-section.section-5 {
    padding-top: 3.93rem;
    padding-bottom: 3.61rem;
    background-size: 4.99rem auto;
  }
}
.page-home .page-section.section-5 .video-btn-wrapper {
  width: 307px;
  height: 123px;
  margin: auto;
  color: #fff;
  background-color: #466978;
  border: 2px solid #fff;
  border-radius: 39px;
  position: relative;
}
@media (min-width: 1280px) {
  .page-home .page-section.section-5 .video-btn-wrapper {
    display: none;
  }
}
.page-home .page-section.section-5 .video-btn-wrapper::before {
  content: '';
  display: block;
  width: 115px;
  height: 116px;
  background: url('../images/video-star-mobile.png') center/contain no-repeat;
  position: absolute;
  bottom: calc(100% - 41px);
  right: calc(100% - 65px);
}
.page-home .page-section.section-5 .video-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  font-family: 'Antonio', sans-serif;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.27;
  text-align: center;
  text-decoration: none !important;
  color: inherit !important;
  position: relative;
  border-radius: 39px;
}
.page-home .page-section.section-5 .video-item {
  position: relative;
}
.page-home .page-section.section-5 .video-item::before {
  content: '';
  display: block;
  width: 5.55rem;
  height: 5.55rem;
  margin: -2.775rem;
  background: url('../images/video-star.png') center/contain no-repeat;
  position: absolute;
  right: calc(100% + 0.65rem);
  bottom: calc(100% + 1.16rem);
}
.page-home .page-section.section-5 .video-list {
  padding-left: 0;
  list-style: none;
  margin: 0;
  display: block;
  background: url('../images/tv-dots.png') repeat-x;
  background-position: center calc(50% + 1.39rem);
  background-size: 8.04rem auto;
}
@media (min-width: 1280px) {
  .page-home .page-section.section-5 .video-list {
    display: flex;
    justify-content: space-between;
  }
}
.page-home .page-section.section-5 .video-list > li {
  width: 28.78rem;
  height: 19.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}

@media (max-width: 576px) {
  .page-home .page-section.section-5 .video-list > li {
    width: 100%;
    height: 16.2rem;
    margin-bottom: 43px;
  }
}
.page-home .page-section.section-5 .video-list > li::before {
  content: '';
  display: block;
  background-color: #004986;
  border: 0.45rem solid #000;
  border-radius: 1.4rem;
  position: absolute;
  inset: 0;
}
.page-home .page-section.section-5 .video-list > li::after {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  background-color: #c15132;
  border: 0.45rem solid #000;
  border-radius: 1.4rem;
  position: absolute;
  top: 1.08rem;
  left: 1.05rem;
  z-index: -1;
}
.page-home .page-section.section-5 .video-list > li:last-child::after {
  left: auto;
  right: 1.05rem;
}
.page-home
  .page-section.section-5
  .video-list
  > li:last-child
  .video-item::before {
  right: auto;
  left: calc(100% + 1.16rem);
  bottom: calc(100% + 0.79rem);
}
.page-home .page-section.section-5 .video-wrapper {
  width: 25.92rem;
  aspect-ratio: 560.57/367.09;
  background-color: #000;
  border: 0.45rem solid #000;
  border-radius: 1.4rem;
  overflow: hidden;
  position: relative;
}

@media (max-width: 580px) {
  .page-home .page-section.section-5 .video-wrapper {
    width: 20.92rem;
  }
}

.page-home .page-section.section-5 .video-wrapper > * {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  opacity: 85%;
  position: absolute;
  inset: 0;
}
.page-home .page-section.section-6 {
  padding-top: 55px;
  padding-bottom: 45px;
  --dade-container-max-width: 1920px !important;
}
@media (min-width: 1280px) {
  .page-home .page-section.section-6 {
    padding-top: 6.4rem;
    padding-bottom: 1.75rem;
    border-top: 1.39rem solid #54a79a;
  }
}
.page-home .page-section.section-6 .photo-item {
  width: 280px;
  aspect-ratio: 280.62/380.69;
  margin: auto;
  border: 8px solid #fff;
  border-radius: 15px;
  overflow: hidden;
}
@media (min-width: 1280px) {
  .page-home .page-section.section-6 .photo-item {
    width: 14.12rem;
    aspect-ratio: 305.31/373.32;
    border: 0.37rem solid rgba(253, 243, 178, 0.5019607843);
    border-radius: 0.83rem;
  }
}
.page-home .page-section.section-6 .photo-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.page-home .page-section.section-6 .photo-list {
  padding-left: 0;
  list-style: none;
  margin: 0;
}
@media (min-width: 1280px) {
  .page-home .page-section.section-6 .photo-list li {
    padding: 0 0.8rem;
    display: flex;
    align-items: center;
    height: 21.88rem;
  }
}
.page-home .page-section.section-6 .photo-list > li:not(:first-child) {
  display: none;
}
.page-home .page-section.section-6 .photo-wrapper {
  margin-left: calc(var(--dade-container-offset-x) * -0.5);
  margin-right: calc(var(--dade-container-offset-x) * -0.5);
}
@media (min-width: 1280px) {
  .page-home .page-section.section-6 .slick-initialized .photo-item {
    opacity: 50%;
    transition: all 250ms ease;
    transform: translateX(-11.2737872982%);
  }
  .page-home
    .page-section.section-6
    .slick-initialized
    .slick-active.slick-center
    ~ .slick-slide
    .photo-item {
    transform: translateX(11.2737872982%);
  }
  .page-home
    .page-section.section-6
    .slick-initialized
    .slick-active.slick-center
    .photo-item {
    opacity: 100%;
    transform: scale(1.2679571583) !important;
    z-index: 9;
  }
}
.page-home .page-section.section-7 {
  --dade-container-max-width: 55.01rem;
  padding-bottom: to-rem-mobile(60px);
  border-top: 0;
  font-family: 'Roboto Condensed', system-ui;
  font-size: 32px;
  line-height: 1.43;
  text-align: center;
  color: #365b43;
}
@media (min-width: 1280px) {
  .page-home .page-section.section-7 {
    --dade-container-max-width: 952px;
    --dade-container-offset-x: calc(
      var(--dade-page-max-width) - var(--dade-container-max-width)
    );
  }
}
@media (min-width: 1600px) {
  .page-home .page-section.section-7 {
    --dade-container-max-width: 1190px;
  }
}
@media (min-width: 1280px) {
  .page-home .page-section.section-7 {
    margin-bottom: -3.01rem;
    padding-top: 3.34rem;
    padding-bottom: 1px;
    font-size: 0.83rem;
    line-height: 1.3292273236;
    text-align: left;
    color: #0b3b1f;
  }
}
.page-home .page-section.section-7 .heading {
  font-family: 'Archivo Narrow', system-ui;
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
}
@media (min-width: 1280px) {
  .page-home .page-section.section-7 .heading {
    margin-bottom: 0;
    font-size: 2rem;
    line-height: 1.7000231107;
    text-shadow: 0 0.18rem 0.18rem rgba(0, 0, 0, 0.25);
  }
}
@media (min-width: 1280px) {
  .page-home .page-section.section-7 .inner-section {
    display: flex;
    gap: 1.71rem;
  }
  .page-home .page-section.section-7 .inner-section::before {
    content: '';
    width: 6.68rem;
    height: 16.38rem;
    margin: -3.34rem 0;
    margin-right: 0.81rem;
    background: url('../images/clipart-section-first.png') center top/contain
      no-repeat;
    align-self: flex-start;
    position: relative;
    z-index: 2;
  }
}
@media (max-width: 1279.98px) {
  .page-home .page-section.section-7 .question .asdadsss {
    font-size: 48px;
    line-height: 1.7;
  }
}
.page-home .page-section.section-7 .question .contact-mobile {
  max-width: 296px;
  margin: auto;
  margin-bottom: 35px;
}
@media (min-width: 1280px) {
  .page-home .page-section.section-7 .question .contact-mobile {
    display: none;
  }
}
.page-home .page-section.section-7 .question .contact-mobile > * {
  margin: 0;
}
.page-home .page-section.section-7 .question .contact-desktop {
  display: none;
  width: 23.8rem;
}
@media (min-width: 1280px) {
  .page-home .page-section.section-7 .question .contact-desktop {
    display: block;
  }
}
.page-home .page-section.section-7 .question .contact-desktop > * {
  margin: 0;
}
.page-home .page-section.section-7 .newsletter {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.page-home .page-section.section-7 .newsletter::before {
  content: '';
  width: 108px;
  height: 108px;
  margin-bottom: 30px;
  background: url('../images/clipart-footer.png') center/contain no-repeat;
}
@media (min-width: 1280px) {
  .page-home .page-section.section-7 .newsletter::before {
    display: none;
  }
}
@media (max-width: 1279.98px) {
  .page-home .page-section.section-7 .newsletter .asdadsss {
    font-size: 66px;
    line-height: 1.04;
  }

  .mob-hide {
    display: none !important;
  }
}
.page-home .page-section.section-7 .newsletter-btn-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 340px;
  height: 212px;
  color: #fff;
  background: url('../images/newsletter-button.png') center/contain no-repeat;
  font-family: 'Antonio', sans-serif;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.7;
}
@media (min-width: 1280px) {
  .page-home .page-section.section-7 .newsletter-btn-wrapper {
    width: 7.77rem;
    height: 4.85rem;
    font-size: 1.5rem;
    line-height: 1.7;
    color: #fdf3b2;
  }
}
.page-home .page-section.section-7 .newsletter-btn {
  padding-bottom: 5%;
  padding-right: 2%;
  color: inherit !important;
  text-decoration: none !important;
}

#weatherWidget .currentTemp {
  color: #fff !important;
}

.header-mobile-left {
  display: none;
}

#gzns .gz-share-btn i {
  margin-left: -7px;
  padding: 2px 0 !important;
}

@media (max-width: 575.98px) {
  .gz-btngroup-toolbar {
    display: none !important;
  }
}

/*.mn-pageId-28335 .mn-membership .panel-default:first-child .panel-title {
  display: none !important;
}*/

.radio .logo-item p {
  font-weight: normal;
  font-style: italic;
}

#gzns .gz-grid-col .gz-card-dday,
#gzns .gz-list-col .gz-card-dday {
  font-size: 100% !important;
}

#scroll {
  position: fixed;
  right: 10px;
  bottom: 10px;
  cursor: pointer;
  width: 50px;
  height: 50px;
  background-color: #ffaa22;
  text-indent: -9999px;
  display: none;
  -webkit-border-radius: 60px;
  -moz-border-radius: 60px;
  border-radius: 60px;
  z-index: 999999999;
}

#scroll span {
  position: absolute;
  top: 50%;
  left: 50%;
  margin-left: -8px;
  margin-top: -12px;
  height: 0;
  width: 0;
  border: 8px solid transparent;
  border-bottom-color: #fff;
}

#scroll:hover {
  background-color: #54a79a;
  opacity: 1;
  filter: 'alpha(opacity=100)';
  -ms-filter: 'alpha(opacity=100)';
}

.got-question {
  display: flex;
  align-items: center;
  gap: 50px;
}
@media (max-width: 575.98px) {
  .got-question {
    gap: 25px;
  }
}

.got-question p {
  margin-bottom: 0;
  font-size: 20px;
}

.got-question span {
  font-weight: 700;
}

.got-question-row {
  display: flex;
  gap: 30px;
}

.got-question-img {
  width: 145px;
  height: 350px;
  /* margin-left: 100px; */
}

.got-question-img img {
  width: 100%;
  height: 100%;
}

.got-question-row .logo-list {
  display: flex;
  margin-right: -250px !important;
  flex-wrap: nowrap !important;
  gap: 20px !important;
}

.got-question-row .text-center {
  margin-top: 150px;
  margin-right: -100px !important;
  margin-left: 100px;
}

@media (max-width: 575.98px) {
  .got-question-img {
    width: 70px;
    height: 150px;
  }

  .got-question-row {
    flex-direction: column;
  }

  .got-question-row .text-center {
    margin-left: 0 !important;
    margin-top: 50px !important;
    margin-right: 0 !important;
    text-align: left !important;
  }

  .got-question-row .logo-list {
    margin-right: 0 !important;
    gap: 40px !important;
  }
}

.image-list {
  width: 19.7rem;
  max-width: 100%;
  margin-left: 1.62rem;
  margin-bottom: 0.5rem;
  float: right;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.image-list img {
  border: 5px #3c7f72 solid;
  border-radius: 20px;
}

.page-visit .got-question {
  /* margin-left: 60%; */
  margin-bottom: -3%;
}

@media (max-width: 575.98px) {
  .page-visit .got-question {
    margin-left: 0;
    margin-bottom: 0;
  }
  .image-list {
    width: 100%;
  }
}

.logo-circle {
  position: relative;
}

.logo-circle-list {
  list-style-type: none !important;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: absolute;
  right: 0;
  top: 0;
  margin: 30px 35px 0 0;
}

.logo-circle-list img {
  width: 150px;
}

@media (max-width: 575.98px) {
  .logo-circle-list {
    position: relative;
    flex-direction: row;
    margin: 0;
    margin-bottom: 20px;
    flex-wrap: wrap;
  }
  .logo-circle-list div {
    flex-basis: 45%;
    box-sizing: border-box;
  }
  .logo-circle-list img {
    width: 100%;
  }
}

.page-section .got-question {
}

.contact-section {
  display: flex;
  justify-content: center;
}

@media (max-width: 575.98px) {
  .contact-section {
    flex-direction: column;
  }
}

.container-list {
  width: 1530px;
  max-width: 100%;
  margin: 0 auto;
}

.plan-list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
}

.plan-list li {
  display: flex;
  height: 600px;
  flex-direction: column;
  justify-content: space-between;
  width: calc(33.333% - 30px);
  list-style-type: none;
  text-align: left;
  margin-bottom: 40px;
}

@media (max-width: 575.98px) {
  .plan-list li {
    width: 90%;
    height: 370px;
  }
}

.plan-list h5 {
  padding-top: 20px;
}

.plan-list p {
  max-width: 80%;
}

.learn-btn {
  display: block;
  margin: 0 auto;
  background-color: #86b7ab;
  border-radius: 10px;
  padding: 5px 50px;
  text-transform: uppercase;
}

.page-contact .excerpt-text {
  text-align: center;
}
.excerpt-text h4 {
  font-size: 43.27px;
  font-weight: 700;
  text-transform: uppercase;
}

.contact-content .text {
  width: 50%;
  text-align: center;
  display: flex;
  gap: 30px;
  flex-direction: column;
}

.page-contact .contact-content .text {
  width: 49%;
}

@media (max-width: 500px) {
  .page-contact .contact-content .text {
    width: 100%;
  }
}
.contact-content .form {
  width: 50%;
}

.contact-content .text span {
  font-weight: 700;
}

.contact-content .text p {
  margin-bottom: 0;
}

.contact-content .got-question-img {
  display: flex;
}

#contact-section .site-header .social-media {
  top: 10px;
  left: 10px;
  position: relative;
}

.got-question-img a {
  color: #093b1e;
  font-size: 36px;
  font-weight: 700;
}

#contact-section .got-question-img {
  gap: 50px;
  align-items: center;
  width: 50%;
  margin-left: auto;
  margin-right: auto;
}

.contact-content {
  display: flex;
  flex-wrap: wrap;
  /* justify-content: center; */
}

@media (max-width: 575.98px) {
  .contact-content .text {
    width: 100%;
  }

  .contact-content .form {
    width: 100%;
  }

  #contact-section .got-question-img {
    gap: 30px;
    margin-left: 30px;
    margin-right: 0;
  }
}

.visitor-img {
  display: block;
  margin-right: 50px;
}

.contact-section {
  align-items: center;
}

.page-contact .contact-section {
  gap: 200px;
}

.site-header .header-top .weather {
  display: flex;
  align-items: center;
  gap: 20px;
}

@media (max-width: 786px) {
  .site-header .header-top .weather {
    display: flex;
    align-items: center;
    gap: 20px;
    position: relative;
    top: 21px;
    z-index: 10;
  }
}

.searchicon {
  margin-right: 30px;
}

.proudmemberof {
  margin-left: 30px;
}

.proudmemberof ul {
  list-style-type: none;
}

.proudmemberof li {
  margin-bottom: 20px;
  display: inline;
  margin-right: 50px;
}

.visitpage .got-question {
  justify-content: center;
  margin-bottom: 30px;
}

/* .page-chamber .got-question {
  margin-top: 140px;
} */

.page-chamber .got-question-img {
  margin-left: -300px;
}

@media (max-width: 600px) {
  .page-chamber .got-question-img {
    margin-left: 0px;
  }

  .page-chamber .got-question {
    margin-top: 40px;
  }
  .question-text h3 {
    font-size: 16px !important;
  }
  .question-text p {
    font-size: 14px !important;
  }
}

.got-question-img img {
  position: relative !important;
  width: 100px !important;
  box-shadow: none !important;
  transform: rotate(0) !important;
  right: 0 !important;
  top: 0 !important;
}

@media (max-width: 600px) {
  .got-question-img img {
    width: 50px !important;
  }
}
