@import '../fonts/SegoeUI.css';
@import '../fonts/Constantia.css';
:root {
  --jenkins-black: #000;
  --jenkins-white: #fff;
  --jenkins-gray: #707070;
  --jenkins-blue: #10384b;
  --jenkins-blue-light: #75a5d6;
  --jenkins-green: #69893a;
  --jenkins-white-rgb: 255, 255, 255;
  --jenkins-black-rgb: 0, 0, 0;
  --jenkins-body-color-rgb: 79, 79, 79;
  --jenkins-body-bg-rgb: 255, 255, 255;
  --jenkins-font-sans-serif: 'Segoe UI', sans-serif;
  --jenkins-font-monospace: SFMono-Regular, Menlo, Monaco, Consolas,
    'Liberation Mono', 'Courier New', monospace;
  --jenkins-gradient: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.15),
    rgba(255, 255, 255, 0)
  );
  --jenkins-body-font-family: var(--jenkins-font-sans-serif);
  --jenkins-body-font-size: 1rem;
  --jenkins-body-font-weight: 300;
  --jenkins-body-line-height: 1.5;
  --jenkins-body-color: #4f4f4f;
  --jenkins-body-bg: #fff;
  --jenkins-border-width: 1px;
  --jenkins-border-style: solid;
  --jenkins-border-color: #707070;
  --jenkins-border-color-translucent: rgba(0, 0, 0, 0.175);
  --jenkins-border-radius: 0.375rem;
  --jenkins-border-radius-sm: 0.25rem;
  --jenkins-border-radius-lg: 0.5rem;
  --jenkins-border-radius-xl: 1rem;
  --jenkins-border-radius-2xl: 2rem;
  --jenkins-border-radius-pill: 50rem;
  --jenkins-link-color: #69893a;
  --jenkins-link-hover-color: #546e2e;
  --jenkins-code-color: #d63384;
  --jenkins-highlight-bg: #fff3cd;
}
:root {
  --jenkins-root-font-size: 19px;
  --jenkins-page-max-width: 100%;
  --jenkins-container-gutter-x: 2.0833333333rem;
  --jenkins-container-offset-x: var(--jenkins-container-gutter-x);
  --jenkins-container-max-width: calc(
    var(--jenkins-page-max-width) - var(--jenkins-container-gutter-x)
  );
}
@media (min-width: 992px) {
  :root {
    --jenkins-container-offset-x: calc(
      var(--jenkins-page-max-width) - var(--jenkins-container-max-width)
    );
  }
}
@media (min-width: 1280px) {
  :root {
    --jenkins-container-max-width: 1184px;
  }
}
@media (min-width: 1600px) {
  :root {
    --jenkins-container-max-width: 1480px;
  }
}
@media (min-width: 992px) {
  :root {
    --jenkins-page-max-width: 66.6666666667rem;
  }
}
@media (min-width: 1280px) {
  :root {
    --jenkins-page-max-width: 1600px;
  }
}
@media (min-width: 1600px) {
  :root {
    --jenkins-root-font-size: 24px;
    --jenkins-page-max-width: 1920px;
  }
}
*,
*::before,
*::after {
  box-sizing: border-box;
}
@media (prefers-reduced-motion: no-preference) {
  :root {
    scroll-behavior: smooth;
  }
}
body {
  margin: 0;
  font-family: var(--jenkins-body-font-family);
  font-size: var(--jenkins-body-font-size);
  font-weight: var(--jenkins-body-font-weight);
  line-height: var(--jenkins-body-line-height);
  color: var(--jenkins-body-color);
  text-align: var(--jenkins-body-text-align);
  background-color: var(--jenkins-body-bg);
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
hr {
  margin: 1.5rem 0;
  color: inherit;
  border: 0;
  border-top: 1px solid #000;
  opacity: 1;
}
h6,
h5,
h4,
h3,
h2,
h1 {
  margin-top: 0;
  margin-bottom: 0.5rem;
  font-weight: 500;
  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: 1.5rem;
}
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: 1.5rem;
}
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 1.5rem;
}
b,
strong {
  font-weight: 700;
}
small {
  font-size: 0.875em;
}
mark {
  padding: 0.1875em;
  background-color: var(--jenkins-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(--jenkins-link-color);
  text-decoration: underline;
}
a:hover {
  color: var(--jenkins-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(--jenkins-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(--jenkins-code-color);
  word-wrap: break-word;
}
a > code {
  color: inherit;
}
kbd {
  padding: 0.1875rem 0.375rem;
  font-size: 0.875em;
  color: var(--jenkins-body-bg);
  background-color: var(--jenkins-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-normal {
  font-weight: 400 !important;
}
.font-semibold {
  font-weight: 600 !important;
}
.font-bold {
  font-weight: 700 !important;
}
.font-black {
  font-weight: 900 !important;
}
.text-sm {
  font-size: 0.9166666667rem !important;
}
.text-base {
  font-size: 1rem !important;
}
.text-md {
  font-size: 1.25rem !important;
}
.text-lg {
  font-size: 1.5rem !important;
}
.text-xl {
  font-size: 2.0833333333rem !important;
}
.text-black {
  color: #000 !important;
}
.text-white {
  color: #fff !important;
}
.text-gray {
  color: #707070 !important;
}
.text-blue {
  color: #10384b !important;
}
.text-blue-light {
  color: #75a5d6 !important;
}
.text-green {
  color: #69893a !important;
}
.text-body {
  color: #4f4f4f !important;
}
.text-inherit {
  color: inherit !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;
}
.m-n1 {
  margin-left: -0.25rem !important;
}
.m-n2 {
  margin-left: -0.5rem !important;
}
.m-n3 {
  margin-left: -1rem !important;
}
.m-n4 {
  margin-left: -1.5rem !important;
}
.m-n5 {
  margin-left: -3rem !important;
}
.mx-n1 {
  margin-right: -0.25rem !important;
  margin-left: -0.25rem !important;
}
.mx-n2 {
  margin-right: -0.5rem !important;
  margin-left: -0.5rem !important;
}
.mx-n3 {
  margin-right: -1rem !important;
  margin-left: -1rem !important;
}
.mx-n4 {
  margin-right: -1.5rem !important;
  margin-left: -1.5rem !important;
}
.mx-n5 {
  margin-right: -3rem !important;
  margin-left: -3rem !important;
}
.my-n1 {
  margin-top: -0.25rem !important;
  margin-bottom: -0.25rem !important;
}
.my-n2 {
  margin-top: -0.5rem !important;
  margin-bottom: -0.5rem !important;
}
.my-n3 {
  margin-top: -1rem !important;
  margin-bottom: -1rem !important;
}
.my-n4 {
  margin-top: -1.5rem !important;
  margin-bottom: -1.5rem !important;
}
.my-n5 {
  margin-top: -3rem !important;
  margin-bottom: -3rem !important;
}
.mt-n1 {
  margin-top: -0.25rem !important;
}
.mt-n2 {
  margin-top: -0.5rem !important;
}
.mt-n3 {
  margin-top: -1rem !important;
}
.mt-n4 {
  margin-top: -1.5rem !important;
}
.mt-n5 {
  margin-top: -3rem !important;
}
.mr-n1 {
  margin-right: -0.25rem !important;
}
.mr-n2 {
  margin-right: -0.5rem !important;
}
.mr-n3 {
  margin-right: -1rem !important;
}
.mr-n4 {
  margin-right: -1.5rem !important;
}
.mr-n5 {
  margin-right: -3rem !important;
}
.mb-n1 {
  margin-bottom: -0.25rem !important;
}
.mb-n2 {
  margin-bottom: -0.5rem !important;
}
.mb-n3 {
  margin-bottom: -1rem !important;
}
.mb-n4 {
  margin-bottom: -1.5rem !important;
}
.mb-n5 {
  margin-bottom: -3rem !important;
}
.ml-n1 {
  margin-left: -0.25rem !important;
}
.ml-n2 {
  margin-left: -0.5rem !important;
}
.ml-n3 {
  margin-left: -1rem !important;
}
.ml-n4 {
  margin-left: -1.5rem !important;
}
.ml-n5 {
  margin-left: -3rem !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;
  }
  .text-sm-sm {
    font-size: 0.9166666667rem !important;
  }
  .text-sm-base {
    font-size: 1rem !important;
  }
  .text-sm-md {
    font-size: 1.25rem !important;
  }
  .text-sm-lg {
    font-size: 1.5rem !important;
  }
  .text-sm-xl {
    font-size: 2.0833333333rem !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;
  }
  .m-sm-n1 {
    margin-left: -0.25rem !important;
  }
  .m-sm-n2 {
    margin-left: -0.5rem !important;
  }
  .m-sm-n3 {
    margin-left: -1rem !important;
  }
  .m-sm-n4 {
    margin-left: -1.5rem !important;
  }
  .m-sm-n5 {
    margin-left: -3rem !important;
  }
  .mx-sm-n1 {
    margin-right: -0.25rem !important;
    margin-left: -0.25rem !important;
  }
  .mx-sm-n2 {
    margin-right: -0.5rem !important;
    margin-left: -0.5rem !important;
  }
  .mx-sm-n3 {
    margin-right: -1rem !important;
    margin-left: -1rem !important;
  }
  .mx-sm-n4 {
    margin-right: -1.5rem !important;
    margin-left: -1.5rem !important;
  }
  .mx-sm-n5 {
    margin-right: -3rem !important;
    margin-left: -3rem !important;
  }
  .my-sm-n1 {
    margin-top: -0.25rem !important;
    margin-bottom: -0.25rem !important;
  }
  .my-sm-n2 {
    margin-top: -0.5rem !important;
    margin-bottom: -0.5rem !important;
  }
  .my-sm-n3 {
    margin-top: -1rem !important;
    margin-bottom: -1rem !important;
  }
  .my-sm-n4 {
    margin-top: -1.5rem !important;
    margin-bottom: -1.5rem !important;
  }
  .my-sm-n5 {
    margin-top: -3rem !important;
    margin-bottom: -3rem !important;
  }
  .mt-sm-n1 {
    margin-top: -0.25rem !important;
  }
  .mt-sm-n2 {
    margin-top: -0.5rem !important;
  }
  .mt-sm-n3 {
    margin-top: -1rem !important;
  }
  .mt-sm-n4 {
    margin-top: -1.5rem !important;
  }
  .mt-sm-n5 {
    margin-top: -3rem !important;
  }
  .mr-sm-n1 {
    margin-right: -0.25rem !important;
  }
  .mr-sm-n2 {
    margin-right: -0.5rem !important;
  }
  .mr-sm-n3 {
    margin-right: -1rem !important;
  }
  .mr-sm-n4 {
    margin-right: -1.5rem !important;
  }
  .mr-sm-n5 {
    margin-right: -3rem !important;
  }
  .mb-sm-n1 {
    margin-bottom: -0.25rem !important;
  }
  .mb-sm-n2 {
    margin-bottom: -0.5rem !important;
  }
  .mb-sm-n3 {
    margin-bottom: -1rem !important;
  }
  .mb-sm-n4 {
    margin-bottom: -1.5rem !important;
  }
  .mb-sm-n5 {
    margin-bottom: -3rem !important;
  }
  .ml-sm-n1 {
    margin-left: -0.25rem !important;
  }
  .ml-sm-n2 {
    margin-left: -0.5rem !important;
  }
  .ml-sm-n3 {
    margin-left: -1rem !important;
  }
  .ml-sm-n4 {
    margin-left: -1.5rem !important;
  }
  .ml-sm-n5 {
    margin-left: -3rem !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;
  }
  .text-md-sm {
    font-size: 0.9166666667rem !important;
  }
  .text-md-base {
    font-size: 1rem !important;
  }
  .text-md-md {
    font-size: 1.25rem !important;
  }
  .text-md-lg {
    font-size: 1.5rem !important;
  }
  .text-md-xl {
    font-size: 2.0833333333rem !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;
  }
  .m-md-n1 {
    margin-left: -0.25rem !important;
  }
  .m-md-n2 {
    margin-left: -0.5rem !important;
  }
  .m-md-n3 {
    margin-left: -1rem !important;
  }
  .m-md-n4 {
    margin-left: -1.5rem !important;
  }
  .m-md-n5 {
    margin-left: -3rem !important;
  }
  .mx-md-n1 {
    margin-right: -0.25rem !important;
    margin-left: -0.25rem !important;
  }
  .mx-md-n2 {
    margin-right: -0.5rem !important;
    margin-left: -0.5rem !important;
  }
  .mx-md-n3 {
    margin-right: -1rem !important;
    margin-left: -1rem !important;
  }
  .mx-md-n4 {
    margin-right: -1.5rem !important;
    margin-left: -1.5rem !important;
  }
  .mx-md-n5 {
    margin-right: -3rem !important;
    margin-left: -3rem !important;
  }
  .my-md-n1 {
    margin-top: -0.25rem !important;
    margin-bottom: -0.25rem !important;
  }
  .my-md-n2 {
    margin-top: -0.5rem !important;
    margin-bottom: -0.5rem !important;
  }
  .my-md-n3 {
    margin-top: -1rem !important;
    margin-bottom: -1rem !important;
  }
  .my-md-n4 {
    margin-top: -1.5rem !important;
    margin-bottom: -1.5rem !important;
  }
  .my-md-n5 {
    margin-top: -3rem !important;
    margin-bottom: -3rem !important;
  }
  .mt-md-n1 {
    margin-top: -0.25rem !important;
  }
  .mt-md-n2 {
    margin-top: -0.5rem !important;
  }
  .mt-md-n3 {
    margin-top: -1rem !important;
  }
  .mt-md-n4 {
    margin-top: -1.5rem !important;
  }
  .mt-md-n5 {
    margin-top: -3rem !important;
  }
  .mr-md-n1 {
    margin-right: -0.25rem !important;
  }
  .mr-md-n2 {
    margin-right: -0.5rem !important;
  }
  .mr-md-n3 {
    margin-right: -1rem !important;
  }
  .mr-md-n4 {
    margin-right: -1.5rem !important;
  }
  .mr-md-n5 {
    margin-right: -3rem !important;
  }
  .mb-md-n1 {
    margin-bottom: -0.25rem !important;
  }
  .mb-md-n2 {
    margin-bottom: -0.5rem !important;
  }
  .mb-md-n3 {
    margin-bottom: -1rem !important;
  }
  .mb-md-n4 {
    margin-bottom: -1.5rem !important;
  }
  .mb-md-n5 {
    margin-bottom: -3rem !important;
  }
  .ml-md-n1 {
    margin-left: -0.25rem !important;
  }
  .ml-md-n2 {
    margin-left: -0.5rem !important;
  }
  .ml-md-n3 {
    margin-left: -1rem !important;
  }
  .ml-md-n4 {
    margin-left: -1.5rem !important;
  }
  .ml-md-n5 {
    margin-left: -3rem !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;
  }
  .text-lg-sm {
    font-size: 0.9166666667rem !important;
  }
  .text-lg-base {
    font-size: 1rem !important;
  }
  .text-lg-md {
    font-size: 1.25rem !important;
  }
  .text-lg-lg {
    font-size: 1.5rem !important;
  }
  .text-lg-xl {
    font-size: 2.0833333333rem !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;
  }
  .m-lg-n1 {
    margin-left: -0.25rem !important;
  }
  .m-lg-n2 {
    margin-left: -0.5rem !important;
  }
  .m-lg-n3 {
    margin-left: -1rem !important;
  }
  .m-lg-n4 {
    margin-left: -1.5rem !important;
  }
  .m-lg-n5 {
    margin-left: -3rem !important;
  }
  .mx-lg-n1 {
    margin-right: -0.25rem !important;
    margin-left: -0.25rem !important;
  }
  .mx-lg-n2 {
    margin-right: -0.5rem !important;
    margin-left: -0.5rem !important;
  }
  .mx-lg-n3 {
    margin-right: -1rem !important;
    margin-left: -1rem !important;
  }
  .mx-lg-n4 {
    margin-right: -1.5rem !important;
    margin-left: -1.5rem !important;
  }
  .mx-lg-n5 {
    margin-right: -3rem !important;
    margin-left: -3rem !important;
  }
  .my-lg-n1 {
    margin-top: -0.25rem !important;
    margin-bottom: -0.25rem !important;
  }
  .my-lg-n2 {
    margin-top: -0.5rem !important;
    margin-bottom: -0.5rem !important;
  }
  .my-lg-n3 {
    margin-top: -1rem !important;
    margin-bottom: -1rem !important;
  }
  .my-lg-n4 {
    margin-top: -1.5rem !important;
    margin-bottom: -1.5rem !important;
  }
  .my-lg-n5 {
    margin-top: -3rem !important;
    margin-bottom: -3rem !important;
  }
  .mt-lg-n1 {
    margin-top: -0.25rem !important;
  }
  .mt-lg-n2 {
    margin-top: -0.5rem !important;
  }
  .mt-lg-n3 {
    margin-top: -1rem !important;
  }
  .mt-lg-n4 {
    margin-top: -1.5rem !important;
  }
  .mt-lg-n5 {
    margin-top: -3rem !important;
  }
  .mr-lg-n1 {
    margin-right: -0.25rem !important;
  }
  .mr-lg-n2 {
    margin-right: -0.5rem !important;
  }
  .mr-lg-n3 {
    margin-right: -1rem !important;
  }
  .mr-lg-n4 {
    margin-right: -1.5rem !important;
  }
  .mr-lg-n5 {
    margin-right: -3rem !important;
  }
  .mb-lg-n1 {
    margin-bottom: -0.25rem !important;
  }
  .mb-lg-n2 {
    margin-bottom: -0.5rem !important;
  }
  .mb-lg-n3 {
    margin-bottom: -1rem !important;
  }
  .mb-lg-n4 {
    margin-bottom: -1.5rem !important;
  }
  .mb-lg-n5 {
    margin-bottom: -3rem !important;
  }
  .ml-lg-n1 {
    margin-left: -0.25rem !important;
  }
  .ml-lg-n2 {
    margin-left: -0.5rem !important;
  }
  .ml-lg-n3 {
    margin-left: -1rem !important;
  }
  .ml-lg-n4 {
    margin-left: -1.5rem !important;
  }
  .ml-lg-n5 {
    margin-left: -3rem !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;
  }
  .text-xl-sm {
    font-size: 0.9166666667rem !important;
  }
  .text-xl-base {
    font-size: 1rem !important;
  }
  .text-xl-md {
    font-size: 1.25rem !important;
  }
  .text-xl-lg {
    font-size: 1.5rem !important;
  }
  .text-xl-xl {
    font-size: 2.0833333333rem !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;
  }
  .m-xl-n1 {
    margin-left: -0.25rem !important;
  }
  .m-xl-n2 {
    margin-left: -0.5rem !important;
  }
  .m-xl-n3 {
    margin-left: -1rem !important;
  }
  .m-xl-n4 {
    margin-left: -1.5rem !important;
  }
  .m-xl-n5 {
    margin-left: -3rem !important;
  }
  .mx-xl-n1 {
    margin-right: -0.25rem !important;
    margin-left: -0.25rem !important;
  }
  .mx-xl-n2 {
    margin-right: -0.5rem !important;
    margin-left: -0.5rem !important;
  }
  .mx-xl-n3 {
    margin-right: -1rem !important;
    margin-left: -1rem !important;
  }
  .mx-xl-n4 {
    margin-right: -1.5rem !important;
    margin-left: -1.5rem !important;
  }
  .mx-xl-n5 {
    margin-right: -3rem !important;
    margin-left: -3rem !important;
  }
  .my-xl-n1 {
    margin-top: -0.25rem !important;
    margin-bottom: -0.25rem !important;
  }
  .my-xl-n2 {
    margin-top: -0.5rem !important;
    margin-bottom: -0.5rem !important;
  }
  .my-xl-n3 {
    margin-top: -1rem !important;
    margin-bottom: -1rem !important;
  }
  .my-xl-n4 {
    margin-top: -1.5rem !important;
    margin-bottom: -1.5rem !important;
  }
  .my-xl-n5 {
    margin-top: -3rem !important;
    margin-bottom: -3rem !important;
  }
  .mt-xl-n1 {
    margin-top: -0.25rem !important;
  }
  .mt-xl-n2 {
    margin-top: -0.5rem !important;
  }
  .mt-xl-n3 {
    margin-top: -1rem !important;
  }
  .mt-xl-n4 {
    margin-top: -1.5rem !important;
  }
  .mt-xl-n5 {
    margin-top: -3rem !important;
  }
  .mr-xl-n1 {
    margin-right: -0.25rem !important;
  }
  .mr-xl-n2 {
    margin-right: -0.5rem !important;
  }
  .mr-xl-n3 {
    margin-right: -1rem !important;
  }
  .mr-xl-n4 {
    margin-right: -1.5rem !important;
  }
  .mr-xl-n5 {
    margin-right: -3rem !important;
  }
  .mb-xl-n1 {
    margin-bottom: -0.25rem !important;
  }
  .mb-xl-n2 {
    margin-bottom: -0.5rem !important;
  }
  .mb-xl-n3 {
    margin-bottom: -1rem !important;
  }
  .mb-xl-n4 {
    margin-bottom: -1.5rem !important;
  }
  .mb-xl-n5 {
    margin-bottom: -3rem !important;
  }
  .ml-xl-n1 {
    margin-left: -0.25rem !important;
  }
  .ml-xl-n2 {
    margin-left: -0.5rem !important;
  }
  .ml-xl-n3 {
    margin-left: -1rem !important;
  }
  .ml-xl-n4 {
    margin-left: -1.5rem !important;
  }
  .ml-xl-n5 {
    margin-left: -3rem !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;
  }
  .text-xxl-sm {
    font-size: 0.9166666667rem !important;
  }
  .text-xxl-base {
    font-size: 1rem !important;
  }
  .text-xxl-md {
    font-size: 1.25rem !important;
  }
  .text-xxl-lg {
    font-size: 1.5rem !important;
  }
  .text-xxl-xl {
    font-size: 2.0833333333rem !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;
  }
  .m-xxl-n1 {
    margin-left: -0.25rem !important;
  }
  .m-xxl-n2 {
    margin-left: -0.5rem !important;
  }
  .m-xxl-n3 {
    margin-left: -1rem !important;
  }
  .m-xxl-n4 {
    margin-left: -1.5rem !important;
  }
  .m-xxl-n5 {
    margin-left: -3rem !important;
  }
  .mx-xxl-n1 {
    margin-right: -0.25rem !important;
    margin-left: -0.25rem !important;
  }
  .mx-xxl-n2 {
    margin-right: -0.5rem !important;
    margin-left: -0.5rem !important;
  }
  .mx-xxl-n3 {
    margin-right: -1rem !important;
    margin-left: -1rem !important;
  }
  .mx-xxl-n4 {
    margin-right: -1.5rem !important;
    margin-left: -1.5rem !important;
  }
  .mx-xxl-n5 {
    margin-right: -3rem !important;
    margin-left: -3rem !important;
  }
  .my-xxl-n1 {
    margin-top: -0.25rem !important;
    margin-bottom: -0.25rem !important;
  }
  .my-xxl-n2 {
    margin-top: -0.5rem !important;
    margin-bottom: -0.5rem !important;
  }
  .my-xxl-n3 {
    margin-top: -1rem !important;
    margin-bottom: -1rem !important;
  }
  .my-xxl-n4 {
    margin-top: -1.5rem !important;
    margin-bottom: -1.5rem !important;
  }
  .my-xxl-n5 {
    margin-top: -3rem !important;
    margin-bottom: -3rem !important;
  }
  .mt-xxl-n1 {
    margin-top: -0.25rem !important;
  }
  .mt-xxl-n2 {
    margin-top: -0.5rem !important;
  }
  .mt-xxl-n3 {
    margin-top: -1rem !important;
  }
  .mt-xxl-n4 {
    margin-top: -1.5rem !important;
  }
  .mt-xxl-n5 {
    margin-top: -3rem !important;
  }
  .mr-xxl-n1 {
    margin-right: -0.25rem !important;
  }
  .mr-xxl-n2 {
    margin-right: -0.5rem !important;
  }
  .mr-xxl-n3 {
    margin-right: -1rem !important;
  }
  .mr-xxl-n4 {
    margin-right: -1.5rem !important;
  }
  .mr-xxl-n5 {
    margin-right: -3rem !important;
  }
  .mb-xxl-n1 {
    margin-bottom: -0.25rem !important;
  }
  .mb-xxl-n2 {
    margin-bottom: -0.5rem !important;
  }
  .mb-xxl-n3 {
    margin-bottom: -1rem !important;
  }
  .mb-xxl-n4 {
    margin-bottom: -1.5rem !important;
  }
  .mb-xxl-n5 {
    margin-bottom: -3rem !important;
  }
  .ml-xxl-n1 {
    margin-left: -0.25rem !important;
  }
  .ml-xxl-n2 {
    margin-left: -0.5rem !important;
  }
  .ml-xxl-n3 {
    margin-left: -1rem !important;
  }
  .ml-xxl-n4 {
    margin-left: -1.5rem !important;
  }
  .ml-xxl-n5 {
    margin-left: -3rem !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(--jenkins-root-font-size);
}
.site {
  overflow: clip;
}
.clearfix::before,
.clearfix::after {
  content: '';
  display: table;
}
.clearfix::after {
  clear: both;
}
.container,
.container-fluid {
  --jenkins-gutter-x: var(--jenkins-container-gutter-x);
  --jenkins-gutter-y: 0;
  width: 100%;
  padding-right: calc(var(--jenkins-gutter-x) * 0.5);
  padding-left: calc(var(--jenkins-gutter-x) * 0.5);
  margin-right: auto;
  margin-left: auto;
}
.container {
  max-width: calc(
    var(--jenkins-container-max-width) + var(--jenkins-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;
}
.submenu {
  display: none;
}
.list-unstyled {
  padding-left: 0;
  list-style: none;
}
.site-header {
  padding-top: 12px;
  padding-bottom: 12px;
  background-color: #fff;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.25);
  position: sticky;
  top: 0;
  z-index: 9;
}
@media (min-width: 1280px) {
  .site-header {
    padding-top: 1.4583333333rem;
    padding-bottom: 0;
    position: relative;
  }
  .site-header .container-fluid {
    padding-left: 2.6041666667%;
    padding-right: 2.6041666667%;
  }
}
@media (min-width: 1280px) {
  .site-header::before {
    content: '';
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 1920/162;
    background-color: #fff;
    position: absolute;
    top: calc(100% - 1px);
    left: 0;
    z-index: -1;
    -webkit-mask: url('../images/header-bg.svg') top center/80rem auto repeat-x;
    mask: url('../images/header-bg.svg') top center/80rem auto repeat-x;
    -webkit-mask-size: contain;
    mask-size: contain;
  }
}
.site-header-inner {
  display: flex;
}
.site-header-inner .navbar-toggler {
  margin-left: auto;
}
.site-logo {
  width: 120px;
  margin: 0;
  margin-right: auto;
  flex-shrink: 0;
}
@media (min-width: 1280px) {
  .site-logo {
    width: 27.1978021978%;
    margin-top: 0.9340659341%;
    margin-bottom: -4.3956043956%;
  }
}
.site-logo a {
  display: block;
  font: 0/0 a;
  color: rgba(0, 0, 0, 0);
  text-shadow: none;
  border: 0;
  aspect-ratio: 3/1;
  background: url('../images/logo-text.png') center/contain 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-logo a {
    background-image: url('../images/logo-text@2x.png');
  }
}
@media (min-width: 1280px) {
  .site-logo a {
    aspect-ratio: 495/270;
    background-image: url('../images/logo.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) {
  .site-logo a {
    background-image: url('../images/logo@2x.png');
  }
}
.beside-logo {
  display: none;
  flex-grow: 1;
  padding-left: 2.5%;
}
@media (min-width: 1280px) {
  .beside-logo {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 1.4583333333rem;
  }
}
.site-menu {
  display: none;
}
@media (min-width: 1280px) {
  .site-menu {
    display: flex;
    justify-content: center;
  }
}
.site-menu .menu {
  color: #000407;
  font-size: 1.1666666667rem;
  line-height: 1.2142857143;
}
@media (min-width: 1280px) {
  .site-menu .menu {
    display: flex;
    gap: 1rem;
    border-top: 1px solid #707070;
    padding-left: 1.75rem;
    padding-right: 1.75rem;
  }
}
.site-menu .menu a {
  display: block;
  text-decoration: none;
  color: inherit;
}
.site-menu .menu > li {
  position: relative;
}
@media (min-width: 1280px) {
  .site-menu .menu > li {
    width: 7.0833333333rem;
    flex: auto;
    white-space: nowrap;
  }
}
@media (min-width: 1280px) {
  .site-menu .menu > li > a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-top: 0.25rem solid #dfdfdf;
    padding-top: 0.625rem;
    padding-bottom: 0.625rem;
    transition: border 0.2s ease 0.1s;
  }
}
.site-menu .menu > li > a:hover {
  outline: 0;
}
.site-menu .menu > li > a > * {
  font-weight: bold;
  color: #69893a;
}
@media (min-width: 1280px) {
  .site-menu .menu > li .submenu {
    display: block;
    visibility: hidden;
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: 0.25s ease 0.1s;
  }
  .site-menu .menu > li:last-child > .submenu {
    left: auto;
    right: 0;
  }
  .site-menu .menu > li:hover > a {
    border-top-color: #69893a;
  }
  .site-menu .menu > li:hover > .submenu {
    visibility: visible;
    opacity: 1;
    max-height: 20rem;
    overflow: visible;
  }
}
.site-menu .submenu {
  font-size: 1rem;
}
@media (min-width: 1280px) {
  .site-menu .submenu {
    min-width: calc(100% + 2em);
    box-shadow: 0 0.1rem 0.25rem rgba(0, 0, 0, 0.25);
    position: absolute;
    top: 100%;
    left: -1em;
    background-color: #fff;
  }
}
.site-menu .submenu li + li {
  border-top: 1px solid #dfdfdf;
}
.site-menu .submenu a {
  padding: 0.5em 1em;
}
@media (min-width: 1280px) {
  .header-menu {
    width: 100%;
  }
  .header-menu .menu {
    width: 100%;
    max-width: 51rem;
    padding-left: 3.431372549%;
    padding-right: 3.431372549%;
    gap: 1.9607843137%;
    justify-content: space-evenly;
  }
  .header-menu .menu > li {
    max-width: 7.0833333333rem;
  }
}
.above-menu {
  display: flex;
  gap: 0.75rem;
}
.site-contact {
  padding-left: 0;
  list-style: none;
  margin: 0;
  padding: 0;
  color: #000407;
  font-size: 0.8333333333rem;
  line-height: 1.5;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
}
@media (min-width: 1280px) {
  .site-contact {
    flex-direction: row;
    gap: 1rem;
  }
}
.site-contact a {
  color: inherit;
  text-decoration: none;
}
.site-contact > li {
  display: flex;
  flex-direction: column;
  padding-left: 1.3333333333rem;
  position: relative;
}
@media (min-width: 1280px) {
  .site-contact > li {
    flex-direction: row;
  }
}
.site-contact > li::before {
  content: '';
  display: block;
  background-color: #69893a;
  position: absolute;
  left: 0;
  top: 0.25rem;
}
.site-contact > li.address::before {
  width: 0.75rem;
  height: 1.0416666667rem;
  margin-right: 0.5833333333rem;
  -webkit-mask: url('../images/icon-add-location.svg') center/contain no-repeat;
  mask: url('../images/icon-add-location.svg') center/contain no-repeat;
}
.site-contact > li.phone::before {
  width: 0.875rem;
  height: 0.8333333333rem;
  margin-right: 0.375rem;
  -webkit-mask: url('../images/icon-phone-alt.svg') center/contain no-repeat;
  mask: url('../images/icon-phone-alt.svg') center/contain no-repeat;
  transform: rotate(31deg);
}
@media (min-width: 1280px) {
  .site-contact > li > *:not(:first-child)::before {
    content: '|';
    padding: 0 0.3em;
  }
}
.social-media {
  padding-left: 0;
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}
@media (min-width: 1280px) {
  .social-media {
    gap: 0.4166666667rem;
  }
}
.social-media a {
  display: block;
  font: 0/0 a;
  color: rgba(0, 0, 0, 0);
  text-shadow: none;
  border: 0;
  background-color: #a7a7a7;
}
.social-media a.facebook-f {
  width: 12px;
  height: 22px;
  -webkit-mask: url('../images/icon-facebook-f.svg') center/contain no-repeat;
  mask: url('../images/icon-facebook-f.svg') center/contain no-repeat;
}
@media (min-width: 1280px) {
  .social-media a.facebook-f {
    width: 0.5rem;
    height: 0.9166666667rem;
  }
}
.social-media a.x-twitter {
  width: 24px;
  height: 22px;
  -webkit-mask: url('../images/icon-x-twitter.svg') center/contain no-repeat;
  mask: url('../images/icon-x-twitter.svg') center/contain no-repeat;
}
@media (min-width: 1280px) {
  .social-media a.x-twitter {
    width: 1rem;
    height: 0.9166666667rem;
  }
}
.social-media a.instagram {
  width: 22px;
  height: 22px;
  -webkit-mask: url('../images/icon-instagram.svg') center/contain no-repeat;
  mask: url('../images/icon-instagram.svg') center/contain no-repeat;
}
@media (min-width: 1280px) {
  .social-media a.instagram {
    width: 0.9166666667rem;
    height: 0.9166666667rem;
  }
}
.search-form {
  max-width: 9.4166666667rem;
  display: flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.8333333333rem;
  line-height: 1;
}
.search-form input {
  width: 100%;
  height: 0.9166666667rem;
  padding: 0.0416666667rem;
  outline: 0 !important;
  border: 1px solid #a7a7a7;
}
.search-form label {
  flex-shrink: 0;
  width: 0.9166666667rem;
  height: 0;
  padding-top: 0.9166666667rem;
  background-color: #a7a7a7;
  overflow: hidden;
  -webkit-mask: url('../images/icon-search.svg') center/contain no-repeat;
  mask: url('../images/icon-search.svg') center/contain no-repeat;
}
.navbar-toggler {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 48px;
  height: 40px;
  background: rgba(0, 0, 0, 0);
  border: 1px solid #dfdfdf;
  border-radius: 3px;
}
@media (min-width: 1280px) {
  .navbar-toggler {
    display: none;
  }
}
.navbar-toggler .bars {
  width: 24px;
  height: 2px;
  border-radius: 1px;
  background-color: #707070;
}
.navbar-toggler .bars::before,
.navbar-toggler .bars::after {
  content: '';
  display: block;
  width: 100%;
  height: 2px;
  border-radius: 1px;
  background-color: #707070;
  position: relative;
}
.navbar-toggler .bars::before {
  top: -8px;
}
.navbar-toggler .bars::after {
  bottom: -6px;
}
#mobile-navigation {
  background: #fff;
}
#mobile-navigation .inner {
  padding: 15px 20px;
}
#mobile-navigation .site-logo {
  width: 220px;
  margin: auto;
  margin-bottom: 1rem;
}
#mobile-navigation .site-logo a {
  aspect-ratio: 495/270;
  background-image: url('../images/logo.png');
}
@media only screen and (-webkit-min-device-pixel-ratio: 2),
  only screen and (min-resolution: 192dpi),
  only screen and (min-resolution: 2dppx) {
  #mobile-navigation .site-logo a {
    background-image: url('../images/logo@2x.png');
  }
}
#mobile-navigation .search-form {
  max-width: 100%;
  position: relative;
  font-size: 1rem;
}
#mobile-navigation .search-form input {
  height: auto;
  padding: 0.25rem;
  padding-left: 1.75rem;
}
#mobile-navigation .search-form label {
  position: absolute;
  left: 0.5rem;
}
#mobile-navigation .site-menu {
  display: block;
  margin: 1rem -20px;
}
#mobile-navigation .site-menu .menu {
  display: block;
  padding: 0;
  border-top: 1px solid #dfdfdf;
  border-bottom: 1px solid #dfdfdf;
}
#mobile-navigation .site-menu .menu a {
  font-size: 18px;
  line-height: 1.5;
  padding: 5px 20px;
}
#mobile-navigation .site-menu .menu > li + li {
  border-top: 1px solid #dfdfdf;
}
#mobile-navigation .site-menu .menu > li > a {
  font-size: 20px;
}
#mobile-navigation .site-menu .menu > li.has-submenu > a {
  padding-right: 60px;
}
#mobile-navigation .site-menu .submenu {
  border-top: 1px solid #dfdfdf;
}
#mobile-navigation .site-menu .submenu a {
  padding-left: calc(20px + 0.75em);
}
#mobile-navigation .site-menu .submenu a::before {
  content: '-';
  float: left;
  margin-left: -0.75em;
}
#mobile-navigation .site-menu .dropdown-button {
  font: 0/0 a;
  color: rgba(0, 0, 0, 0);
  text-shadow: none;
  border: 0;
  background: rgba(0, 0, 0, 0);
  width: 60px;
  height: 40px;
  border: 0;
  outline: 0 !important;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 9;
}
#mobile-navigation .site-menu .dropdown-button::before,
#mobile-navigation .site-menu .dropdown-button::after {
  content: '';
  height: 8px;
  width: 2px;
  background-color: #707070;
  border-radius: 2px;
  position: absolute;
  top: calc(50% - 3px);
  left: calc(50% - 1px);
  transition: ease-in-out 0.2s;
}
#mobile-navigation .site-menu .dropdown-button::before {
  transform: rotate(45deg);
  margin-left: 3px;
}
#mobile-navigation .site-menu .dropdown-button::after {
  transform: rotate(-45deg);
  margin-left: -3px;
}
#mobile-navigation .site-menu .dropdown-button.active::before {
  margin-left: -3px;
}
#mobile-navigation .site-menu .dropdown-button.active::after {
  margin-left: 3px;
}
#mobile-navigation .site-contact {
  margin-bottom: 1rem;
}
#mobile-navigation-head {
  padding: 15px 20px;
  background-color: #fff;
}
#mobile-navigation-head .logo {
  margin: auto;
  margin-bottom: 20px;
  overflow: hidden;
}
#mobile-navigation-head .logo a {
  display: block;
  height: 0;
  background: url('../images/logo.png') center/contain no-repeat;
}
#mobile-navigation-main {
  font-size: 16px;
  line-height: 1.25;
  color: #fff;
  background-color: #10384b;
}
#mobile-navigation-main a {
  display: block;
  text-decoration: none;
  color: inherit;
}
#mobile-navigation-main .menu > li + li {
  border-top: 1px solid rgba(255, 255, 255, 0.25);
}
#mobile-navigation-main .menu > li > a {
  padding: 10px 20px;
  font-size: 1.1em;
  font-weight: 600;
}
#mobile-navigation-main .submenu li {
  border-top: 1px solid rgba(255, 255, 255, 0.25);
}
#mobile-navigation-main .submenu a {
  display: flex;
  padding: 10px 20px;
}
#mobile-navigation-main .submenu a::before {
  content: '• ';
}
#mobile-navigation-foot {
  padding: 20px;
}
.sidenav {
  position: fixed;
  width: 300px;
  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.5);
  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,
  .sidenav-button {
    display: none !important;
  }
}
.site-content img {
  max-width: 100%;
}
.site-content a {
  font-weight: 700;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.1em;
  overflow-wrap: break-word;
}
.site-content a > * {
  text-decoration: inherit;
}
.site-content .list-bullet {
  padding-left: 0;
  list-style: none;
  --jenkins-list-bullet-space: 1em;
}
.site-content .list-bullet > li {
  padding-left: var(--jenkins-list-bullet-space);
}
.site-content .list-bullet > li::before {
  content: '•';
  float: left;
  margin-left: calc(var(--jenkins-list-bullet-space) * -1);
  font-weight: 700;
}
.site-content .heading-text {
  font-size: inherit;
  line-height: inherit;
  font-weight: 700;
  color: #10384b;
  margin-bottom: 0;
}
.site-content .heading-block {
  margin-bottom: 0.75rem;
  padding: 0.375rem 0.7916666667rem 0.4583333333rem;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  background-color: #75a5d6;
}
.site-content .highlight-box {
  max-width: 28.7916666667rem;
  margin-bottom: 1.5rem;
  padding: 0.5rem 1.0416666667rem;
}
.site-content .highlight-box > *:last-child {
  margin-bottom: 0.25rem;
}
.site-content .highlight-box.bg-blue {
  color: #000407;
  background-color: #d1e7ff;
}
.site-content .highlight-box.bg-darkblue {
  color: #fff;
  background-color: #53789d;
}
.site-content .highlight-box.bg-darkblue a {
  color: inherit;
}
.site-content .highlight-box.bg-lightblue {
  background-color: rgba(117, 165, 214, 0.3);
}
.site-content .table {
  width: 100%;
  margin: 0;
}
.site-content .table tr > * {
  vertical-align: top;
}
.site-content .table-wrapper {
  margin-bottom: 1.5rem;
  overflow-x: auto;
}
.page-header {
  position: relative;
}
.page-image {
  min-height: 240px;
  position: relative;
}
.page-image::before {
  content: '';
  display: block;
  height: 44.7488584475%;
  background: linear-gradient(
    to top,
    #fff,
    rgba(255, 255, 255, 0.87) 45%,
    rgba(255, 255, 255, 0)
  );
  position: absolute;
  inset: 0;
  top: auto;
}
.page-image::after {
  content: '';
  display: block;
  aspect-ratio: 1920/657;
}
.page-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  position: absolute;
  inset: 0;
  z-index: -1;
}
.page-title {
  margin: 0;
  font-family: 'Constantia', serif;
  font-size: calc(1.5vw + 1.5rem);
  font-weight: 400;
  letter-spacing: -0.02em;
  text-align: center;
  color: #10384b;
  padding-bottom: 0.5714285714em;
}
@media (min-width: 1280px) {
  .page-title {
    font-size: 2.9166666667rem;
  }
}
.page-title:not(:last-child) {
  padding-top: 1rem;
}
@media (min-width: 768px) {
  .page-title:not(:last-child) {
    padding-top: 0;
    padding-right: calc(15.5375rem - var(--jenkins-container-offset-x) / 2);
  }
}
@media (min-width: 1280px) {
  .page-title:not(:last-child) {
    padding-right: calc(28.25rem - var(--jenkins-container-offset-x) / 2);
  }
}
.page-title-wrapper {
  position: relative;
}
@media (min-width: 992px) {
  .page-title-wrapper {
    --jenkins-container-offset-x: calc(
      var(--jenkins-page-max-width) - var(--jenkins-container-max-width)
    );
  }
}
@media (min-width: 1280px) {
  .page-title-wrapper {
    --jenkins-container-max-width: 1437px;
  }
}
@media (min-width: 1600px) {
  .page-title-wrapper {
    --jenkins-container-max-width: 1796px;
  }
}
@media (min-width: 768px) {
  .page-title-wrapper {
    margin-top: 0;
    position: absolute;
    inset: 0;
    top: auto;
  }
}
.page-title-wrapper > .container {
  position: relative;
}
.page-title-wrapper .circle {
  width: 12.5rem;
  height: 6.8833333333rem;
  background: linear-gradient(to bottom, #10384b 81.1138014528%, #fff);
  position: absolute;
  bottom: 100%;
  right: calc(
    -1.2rem + (
        var(--jenkins-container-offset-x) - var(--jenkins-container-gutter-x)
      ) / -2
  );
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  padding-top: 0.5%;
  padding-right: calc(1.2rem + var(--jenkins-container-offset-x) / 2);
  font-size: 0.8333333333rem;
  line-height: 1.12;
  letter-spacing: -0.02em;
  text-align: right;
  color: #d1e7ff;
  -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='100' height='100'><circle r='50' cx='50' cy='50' /></svg>");
  mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='100' height='100'><circle r='50' cx='50' cy='50' /></svg>");
  -webkit-mask-size: 100% auto;
  mask-size: 100% auto;
}
@media (min-width: 576px) {
  .page-title-wrapper .circle {
    width: 15.625rem;
    height: 8.6041666667rem;
    right: calc(
      -1.5rem + (
          var(--jenkins-container-offset-x) - var(--jenkins-container-gutter-x)
        ) / -2
    );
    padding-right: calc(1.5rem + var(--jenkins-container-offset-x) / 2);
    font-size: 1.0416666667rem;
  }
}
@media (min-width: 768px) {
  .page-title-wrapper .circle {
    bottom: 0;
    width: 17.1875rem;
    height: 9.4645833333rem;
    right: calc(
      -1.65rem + (
          var(--jenkins-container-offset-x) - var(--jenkins-container-gutter-x)
        ) / -2
    );
    padding-right: calc(1.65rem + var(--jenkins-container-offset-x) / 2);
    font-size: 1.1458333333rem;
  }
}
@media (min-width: 1280px) {
  .page-title-wrapper .circle {
    width: 31.25rem;
    height: 17.2083333333rem;
    right: calc(
      -3rem + (
          var(--jenkins-container-offset-x) - var(--jenkins-container-gutter-x)
        ) / -2
    );
    padding-right: calc(3rem + var(--jenkins-container-offset-x) / 2);
    font-size: 1.675rem;
  }
}
@media (min-width: 1600px) {
  .page-title-wrapper .circle {
    font-size: 1.8833333333rem;
  }
}
.page-title-wrapper .circle strong {
  color: #fff;
}
.page-menu {
  margin-top: 1.6666666667rem;
  margin-bottom: 2.9166666667rem;
  font-size: 1rem;
  letter-spacing: -0.02em;
  line-height: 1;
  text-align: center;
  color: #4f4f4f;
}
@media (min-width: 576px) {
  .page-menu {
    font-size: 1.3333333333rem;
  }
}
@media (min-width: 1280px) {
  .page-menu {
    font-size: 1.6666666667rem;
  }
}
.page-menu .menu {
  margin: auto;
  padding: 0 0.5em;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1em 2em;
  background: linear-gradient(
      to bottom,
      transparent calc(100% - 1px),
      #707070 calc(100% - 1px)
    )
    bottom/100% 2.875em repeat-y;
}
@media (min-width: 1280px) {
  .page-menu .menu {
    padding: 0;
    justify-content: space-evenly;
    gap: 0;
  }
}
.page-menu .menu a {
  font-weight: 400;
  min-width: 4.25em;
  padding-bottom: 0.875em;
  position: relative;
}
.page-menu .menu a::before {
  content: '';
  display: block;
  height: 0.15em;
  width: 4.25em;
  background-color: #10384b;
  position: absolute;
  bottom: 0;
  left: calc(50% - 2.125em);
}
.page-menu .menu a.current {
  font-weight: 700;
  color: #10384b;
}
@media (min-width: 1280px) {
  .page-menu .menu {
    width: 66.0416666667rem;
  }
}
@media (min-width: 1280px) {
  .page-menu .menu.chamber-menu {
    width: 32.1666666667rem;
  }
}
@media (min-width: 1280px) {
  .page-menu .menu.jenkins-county-menu {
    width: 59.75rem;
  }
}
@media (min-width: 1280px) {
  .page-menu .menu.visit-menu {
    width: 33.2083333333rem;
  }
}
@media (min-width: 1280px) {
  .page-section .row {
    display: flex;
    justify-content: space-between;
    gap: 40px;
  }
}
.page-section .row > .col > .image-wrapper {
  margin-left: calc(var(--jenkins-container-offset-x) / -2);
  margin-right: calc(var(--jenkins-container-offset-x) / -2);
  margin-bottom: 1.5rem;
}
.page-section .row > .col > .image-wrapper img {
  width: 100%;
}
@media (min-width: 1280px) {
  .page-section .row > .col:has(> .text-wrapper),
  .page-section .row > .col:has(> .image-wrapper) {
    display: flex;
    flex-direction: column;
  }
  .page-section .row > .col > .text-wrapper {
    margin: auto 0;
  }
  .page-section .row > .col > .image-wrapper {
    flex-grow: 1;
    height: calc(100% - 1.5rem);
    position: relative;
  }
  .page-section .row > .col > .image-wrapper img {
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    position: absolute;
    inset: 0;
  }
  .page-section .row > .col:first-child > .image-wrapper {
    margin-right: 0;
  }
  .page-section .row > .col:last-child > .image-wrapper {
    margin-left: 0;
  }
}
.page-section.bg-lightblue {
  background-color: rgba(117, 165, 214, 0.3);
}
.page-section.bg-green-white {
  background: rgba(105, 137, 58, 0.21)
    linear-gradient(
      to bottom,
      rgba(255, 255, 255, 0),
      rgba(255, 255, 255, 0.87) 45%,
      #fff
    )
    50% calc(100% + 1px) / 100% 50% no-repeat;
}
.page-section.split-block {
  color: #fff;
  background-color: #53789d;
}
.page-section.split-block .lead-text {
  font-size: 1.2083333333rem;
  line-height: 1.3793103448;
  font-weight: 700;
}
.page-section.split-block .image-wrapper {
  margin-bottom: 0 !important;
}
.page-section.split-block .text-wrapper {
  padding: 1.5rem 0;
}
.page-section.split-block .text-wrapper > *:last-child {
  margin-bottom: 0;
}
@media (min-width: 1280px) {
  .page-section.split-block .row > * {
    flex-basis: 48%;
  }
  .page-section.split-block .row > * .image-wrapper {
    min-height: 19.2083333333rem;
    margin-bottom: 0;
  }
}
.page-section.excerpt-section {
  font-size: 1.0416666667rem;
  line-height: 1.6;
  text-align: center;
  font-weight: 700;
  letter-spacing: -0.02em;
  font-style: italic;
  color: #69893a;
}
.city-of-millen-buttons {
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem 2.875rem;
  margin-bottom: 2.0416666667rem;
}
.city-of-millen-buttons a {
  display: block;
  min-width: 14.4333333333rem;
  padding: 1.1666666667rem 1.6666666667rem;
  color: #fff;
  background-color: #69893a;
  border-radius: 0.8333333333rem;
  box-shadow: 0 0.125rem 0.25rem #4f4f4f;
  font-size: 1rem;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1;
  text-decoration: none !important;
  text-align: center;
}
@media (min-width: 576px) {
  .city-of-millen-buttons a {
    min-width: 18.0416666667rem;
    font-size: 1.25rem;
  }
}
.city-of-millen-buttons a > * {
  display: inline-block;
}
.codered-list {
  padding-left: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem 5.625rem;
}
.codered-list .logo-wrapper {
  width: 14.25rem;
  aspect-ratio: 342/219;
  margin-bottom: 2.2916666667rem;
}
.codered-list .logo-wrapper img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}
.codered-list .button {
  display: block;
  width: 13.3333333333rem;
  margin: auto;
  padding: 1.1666666667rem 0;
  color: #fff;
  background-color: #69893a;
  border-radius: 0.8333333333rem;
  box-shadow: 0 0.125rem 0.25rem #4f4f4f;
  font-size: 1.25rem;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1;
  text-decoration: none !important;
  text-align: center;
}
.dates-head {
  margin-bottom: 1rem;
  padding: 0.6666666667rem;
  font-size: 1rem;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
  color: #10384b;
  background-color: #fff;
}
.dates-list {
  padding-left: 0;
  list-style: none;
  margin-bottom: 2rem;
  font-weight: 700;
  color: #10384b;
}
.menu-bottom {
  margin-top: 3.5416666667rem;
  margin-bottom: 3.5416666667rem;
}
.menu-bottom .menu > li {
  width: 7.0833333333rem;
}
.menu-bottom .menu > li > a {
  margin-top: -0.25rem;
  padding-bottom: 0;
}
.menu-bottom .submenu {
  display: none !important;
}
.site-footer {
  margin-top: 1.5rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
  color: #fff;
  background-color: #4f4f4f;
  font-size: 0.6666666667rem;
}
@media (min-width: 1280px) {
  .site-footer {
    margin-top: 0;
  }
}
.site-footer a {
  color: inherit;
  text-decoration: none;
}
@media (min-width: 1280px) {
  .site-footer .container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3.5em;
  }
}
.site-footer .footer-links {
  padding-left: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
@media (min-width: 1280px) {
  .site-footer .footer-links {
    margin-bottom: 0;
  }
}
.site-footer .footer-links > li {
  white-space: nowrap;
}
.site-footer .footer-links > li:not(:first-child) {
  background: linear-gradient(to bottom, #fff, #fff 1px, transparent 1px);
  background-size: 1px 3px;
  background-repeat: repeat-y;
  margin-left: 1.375em;
  padding-left: 1.375em;
}
@media (min-width: 992px) {
  .site-footer .footer-links > li:first-child {
    background: linear-gradient(to bottom, #fff, #fff 1px, transparent 1px);
    background-size: 1px 3px;
    background-repeat: repeat-y;
    margin-left: 1.375em;
    padding-left: 1.375em;
  }
}
.site-footer .copyright {
  padding-left: 0;
  list-style: none;
  margin-bottom: 0.5em;
  text-align: center;
}
@media (min-width: 1280px) {
  .site-footer .copyright {
    margin-bottom: 0;
  }
}
.site-footer .copyright span {
  display: inline-block;
}
.site-footer .copyright-wrapper {
  letter-spacing: 0.03em;
}
@media (min-width: 992px) {
  .site-footer .copyright-wrapper {
    display: flex;
    justify-content: center;
  }
}
.site-footer .powered {
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.site-footer .powered a {
  width: 8.4583333333rem;
  margin-left: 0.25rem;
  font: 0/0 a;
  color: rgba(0, 0, 0, 0);
  text-shadow: none;
  border: 0;
  background: url('../images/365dtm-logo.png') center/contain 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-footer .powered a {
    background-image: url('../images/365dtm-logo@2x.png');
  }
}
.site-footer .powered a::before {
  content: '';
  display: block;
  padding-top: 17.7339901478%;
}
@media (min-width: 992px) {
  .page-build-your-business .section-1 {
    --jenkins-container-offset-x: calc(
      var(--jenkins-page-max-width) - var(--jenkins-container-max-width)
    );
  }
}
@media (min-width: 1280px) {
  .page-build-your-business .section-1 {
    --jenkins-container-max-width: 1333px;
  }
}
@media (min-width: 1600px) {
  .page-build-your-business .section-1 {
    --jenkins-container-max-width: 1666px;
  }
}
@media (min-width: 1280px) {
  .page-build-your-business .section-1 .row .col-text {
    flex-basis: 44.237695078%;
    max-width: 44.237695078%;
  }
  .page-build-your-business .section-1 .row .col-image {
    flex-basis: 51.9207683073%;
    max-width: 51.9207683073%;
  }
}
.page-build-your-business .section-2 {
  margin-top: 3.5416666667rem;
}
@media (min-width: 992px) {
  .page-build-your-business .section-2 {
    --jenkins-container-offset-x: calc(
      var(--jenkins-page-max-width) - var(--jenkins-container-max-width)
    );
  }
}
@media (min-width: 1280px) {
  .page-build-your-business .section-2 {
    --jenkins-container-max-width: 1214px;
  }
}
@media (min-width: 1600px) {
  .page-build-your-business .section-2 {
    --jenkins-container-max-width: 1518px;
  }
}
@media (min-width: 1280px) {
  .page-build-your-business .section-2 .row .col-text {
    flex-basis: 48.6824769433%;
    max-width: 48.6824769433%;
  }
  .page-build-your-business .section-2 .row .col-image {
    flex-basis: 47.8919631094%;
    max-width: 47.8919631094%;
  }
}
.page-build-your-business .section-3 {
  margin-top: 2.9166666667rem;
  padding-top: 1.875rem;
  background-size: 100% 48.918469218%;
}
@media (min-width: 992px) {
  .page-build-your-business .section-3 {
    --jenkins-container-offset-x: calc(
      var(--jenkins-page-max-width) - var(--jenkins-container-max-width)
    );
  }
}
@media (min-width: 1280px) {
  .page-build-your-business .section-3 {
    --jenkins-container-max-width: 1323px;
  }
}
@media (min-width: 1600px) {
  .page-build-your-business .section-3 {
    --jenkins-container-max-width: 1654px;
  }
}
@media (min-width: 1280px) {
  .page-build-your-business .section-3 .row {
    max-width: 95.3446191052%;
  }
  .page-build-your-business .section-3 .row .col {
    flex-basis: 46.8611287254%;
    max-width: 46.8611287254%;
  }
}
.page-build-your-business .section-4 {
  margin-top: 4.1666666667rem;
  padding-bottom: 2.5rem;
}
@media (min-width: 992px) {
  .page-build-your-business .section-4 {
    --jenkins-container-offset-x: calc(
      var(--jenkins-page-max-width) - var(--jenkins-container-max-width)
    );
  }
}
@media (min-width: 1280px) {
  .page-build-your-business .section-4 {
    --jenkins-container-max-width: 1299px;
  }
}
@media (min-width: 1600px) {
  .page-build-your-business .section-4 {
    --jenkins-container-max-width: 1624px;
  }
}
.page-build-your-business .section-4 .row-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0 3.75rem;
  margin-bottom: 1.5rem;
}
.page-build-your-business .section-4 .row-list > * {
  margin-bottom: 0;
  flex: 100%;
}
@media (min-width: 992px) {
  .page-build-your-business .section-4 .row-list > * {
    flex: 0 1 auto;
  }
  .page-build-your-business .section-4 .row-list > *:not(:first-child) {
    padding-top: 1.5rem;
  }
}
.page-workforce .section-1 {
  margin-bottom: 4.7916666667rem;
}
@media (min-width: 992px) {
  .page-workforce .section-1 {
    --jenkins-container-max-width: 50.8333333333rem;
    --jenkins-container-offset-x: calc(
      var(--jenkins-page-max-width) - var(--jenkins-container-max-width)
    );
  }
}
@media (min-width: 1600px) {
  .page-workforce .section-1 {
    --jenkins-container-max-width: 1220px;
  }
}
@media (min-width: 1280px) {
  .page-workforce .section-1 .wrapper {
    padding-left: 1.7083333333rem;
  }
}
.page-workforce .section-2 {
  margin-bottom: 2.9166666667rem;
}
@media (min-width: 992px) {
  .page-workforce .section-2 {
    --jenkins-container-offset-x: calc(
      var(--jenkins-page-max-width) - var(--jenkins-container-max-width)
    );
  }
}
@media (min-width: 1280px) {
  .page-workforce .section-2 {
    --jenkins-container-max-width: 1264px;
  }
}
@media (min-width: 1600px) {
  .page-workforce .section-2 {
    --jenkins-container-max-width: 1580px;
  }
}
@media (min-width: 1280px) {
  .page-workforce .section-2 .row {
    padding-left: 5.5696202532%;
  }
  .page-workforce .section-2 .row .col-left {
    flex-basis: 34.8525469169%;
    max-width: 34.8525469169%;
  }
  .page-workforce .section-2 .row .col-right {
    flex-basis: 50.9383378016%;
    max-width: 50.9383378016%;
  }
}
.page-workforce .section-2 .notes {
  margin-top: 0.625rem;
  font-size: 1.0416666667rem;
  letter-spacing: -0.02em;
  line-height: 1.2;
}
.page-workforce .section-2 .commuting-chart {
  max-width: 21.6666666667rem;
}
@media (min-width: 576px) {
  .page-workforce .section-2 .commuting-chart .notes {
    white-space: nowrap;
  }
}
.page-workforce .section-2 .labor-force-chart {
  max-width: 31.6666666667rem;
}
@media (min-width: 768px) {
  .page-workforce .section-2 .labor-force-chart {
    position: relative;
  }
}
@media (min-width: 768px) and (max-width: 1279.98px) {
  .page-workforce .section-2 .labor-force-chart {
    margin-left: 11.0416666667rem;
  }
}
@media (min-width: 768px) {
  .page-workforce .section-2 .labor-force-chart .notes {
    width: 15.9583333333rem;
    text-align: center;
    position: absolute;
    bottom: 0;
    left: -11.0416666667rem;
  }
}
.page-workforce .section-3 {
  padding-bottom: 2.5rem;
  background: linear-gradient(
    to bottom,
    rgba(105, 137, 58, 0.21) 12.5rem,
    rgba(255, 255, 255, 0.87) 19.5833333333rem,
    #fff 25rem
  );
}
@media (min-width: 992px) {
  .page-workforce .section-3 {
    --jenkins-container-offset-x: calc(
      var(--jenkins-page-max-width) - var(--jenkins-container-max-width)
    );
  }
}
@media (min-width: 1280px) {
  .page-workforce .section-3 {
    --jenkins-container-max-width: 1227px;
  }
}
@media (min-width: 1600px) {
  .page-workforce .section-3 {
    --jenkins-container-max-width: 1534px;
  }
}
@media (min-width: 1280px) {
  .page-workforce .section-3 .row .col-text {
    flex-basis: 48.1747066493%;
    max-width: 48.1747066493%;
    padding-top: 2.0833333333rem;
  }
  .page-workforce .section-3 .row .col-image {
    flex-basis: 46.6753585398%;
    max-width: 46.6753585398%;
  }
}
@media (min-width: 992px) {
  .page-incentives .section-1 {
    --jenkins-container-offset-x: calc(
      var(--jenkins-page-max-width) - var(--jenkins-container-max-width)
    );
  }
}
@media (min-width: 1280px) {
  .page-incentives .section-1 {
    --jenkins-container-max-width: 1200px;
  }
}
@media (min-width: 1600px) {
  .page-incentives .section-1 {
    --jenkins-container-max-width: 1500px;
  }
}
@media (min-width: 1280px) {
  .page-incentives .section-1 .row {
    padding-left: 0.5333333333%;
  }
  .page-incentives .section-1 .row .col {
    flex-basis: 45.8445040214%;
    max-width: 45.8445040214%;
  }
  .page-incentives .section-1 .row .col .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .page-infrastructure .section-1 {
    --jenkins-container-offset-x: calc(
      var(--jenkins-page-max-width) - var(--jenkins-container-max-width)
    );
  }
}
@media (min-width: 1280px) {
  .page-infrastructure .section-1 {
    --jenkins-container-max-width: 1200px;
  }
}
@media (min-width: 1600px) {
  .page-infrastructure .section-1 {
    --jenkins-container-max-width: 1500px;
  }
}
@media (min-width: 1280px) {
  .page-infrastructure .section-1 .row {
    padding-left: 0.5333333333%;
  }
  .page-infrastructure .section-1 .row .col {
    flex-basis: 45.8445040214%;
    max-width: 45.8445040214%;
  }
}
@media (min-width: 992px) {
  .page-transportation .section-1 {
    --jenkins-container-offset-x: calc(
      var(--jenkins-page-max-width) - var(--jenkins-container-max-width)
    );
  }
}
@media (min-width: 1280px) {
  .page-transportation .section-1 {
    --jenkins-container-max-width: 1187px;
  }
}
@media (min-width: 1600px) {
  .page-transportation .section-1 {
    --jenkins-container-max-width: 1484px;
  }
}
@media (min-width: 1280px) {
  .page-transportation .section-1 .row .col-text {
    flex-basis: 46.0916442049%;
    max-width: 46.0916442049%;
  }
  .page-transportation .section-1 .row .col-image {
    flex-basis: 47.4393530997%;
    max-width: 47.4393530997%;
  }
}
.page-transportation .section-2 {
  margin-top: 2.9166666667rem;
}
@media (min-width: 992px) {
  .page-transportation .section-2 {
    --jenkins-container-offset-x: calc(
      var(--jenkins-page-max-width) - var(--jenkins-container-max-width)
    );
  }
}
@media (min-width: 1280px) {
  .page-transportation .section-2 {
    --jenkins-container-max-width: 1163px;
  }
}
@media (min-width: 1600px) {
  .page-transportation .section-2 {
    --jenkins-container-max-width: 1454px;
  }
}
@media (min-width: 1280px) {
  .page-transportation .section-2 .row .col-text {
    flex-basis: 47.0426409904%;
    max-width: 47.0426409904%;
  }
  .page-transportation .section-2 .row .col-image {
    flex-basis: 47.386519945%;
    max-width: 47.386519945%;
  }
}
@media (min-width: 992px) {
  .page-industries .section-1 {
    --jenkins-container-offset-x: calc(
      var(--jenkins-page-max-width) - var(--jenkins-container-max-width)
    );
  }
}
@media (min-width: 1280px) {
  .page-industries .section-1 {
    --jenkins-container-max-width: 1187px;
  }
}
@media (min-width: 1600px) {
  .page-industries .section-1 {
    --jenkins-container-max-width: 1484px;
  }
}
@media (min-width: 1280px) {
  .page-industries .section-1 .row .col-text {
    flex-basis: 46.0916442049%;
    max-width: 46.0916442049%;
  }
  .page-industries .section-1 .row .col-image {
    flex-basis: 47.4393530997%;
    max-width: 47.4393530997%;
  }
}
.page-demographics .section-1 {
  margin-bottom: 4.7916666667rem;
}
@media (min-width: 992px) {
  .page-demographics .section-1 {
    --jenkins-container-offset-x: calc(
      var(--jenkins-page-max-width) - var(--jenkins-container-max-width)
    );
  }
}
@media (min-width: 1280px) {
  .page-demographics .section-1 {
    --jenkins-container-max-width: 1184px;
  }
}
@media (min-width: 1600px) {
  .page-demographics .section-1 {
    --jenkins-container-max-width: 1480px;
  }
}
.page-demographics .section-2 {
  padding-top: 1.4583333333rem;
  padding-bottom: 1rem;
  background: linear-gradient(
    to bottom,
    rgba(105, 137, 58, 0.21) 24.5833333333rem,
    rgba(255, 255, 255, 0.87) 31.6666666667rem,
    #fff 37.0833333333rem
  );
}
@media (min-width: 992px) {
  .page-demographics .section-2 {
    --jenkins-container-offset-x: calc(
      var(--jenkins-page-max-width) - var(--jenkins-container-max-width)
    );
  }
}
@media (min-width: 1280px) {
  .page-demographics .section-2 {
    --jenkins-container-max-width: 1125px;
  }
}
@media (min-width: 1600px) {
  .page-demographics .section-2 {
    --jenkins-container-max-width: 1406px;
  }
}
.page-demographics .section-2 .wrapper {
  max-width: 57.9583333333rem;
}
.page-demographics .section-2 .card {
  flex: 17.625rem;
  max-width: 17.625rem;
  height: 24.2083333333rem;
  padding: 1.0416666667rem 0.5208333333rem;
  color: #fff;
  background-color: #10384b;
  border-radius: 1.25rem;
}
.page-demographics .section-2 .card img {
  display: block;
  margin: auto;
}
.page-demographics .section-2 .card-title {
  font-size: 1.25rem;
  line-height: 1;
  font-weight: 600;
  text-align: center;
}
.page-demographics .section-2 .card:nth-child(even) {
  background-color: #53789d;
}
.page-demographics .section-2 .card-population {
  text-align: center;
}
.page-demographics .section-2 .card-population img {
  width: 8.8333333333rem;
  margin-bottom: 0.625rem;
}
.page-demographics .section-2 .card-population .data-1 {
  font-size: 2.0833333333rem;
  font-weight: 700;
  margin-top: 1.4583333333rem;
}
.page-demographics .section-2 .card-population .data-2 {
  font-size: 1.6666666667rem;
  font-weight: 700;
}
.page-demographics .section-2 .card-age {
  text-align: center;
}
.page-demographics .section-2 .card-age img {
  max-width: none;
  width: calc(100% + 1.0416666667rem);
  margin: 1.6666666667rem -0.5208333333rem 1.0416666667rem;
}
.page-demographics .section-2 .card-age ul {
  padding-left: 0;
  list-style: none;
  margin: 0;
  font-size: 1.0416666667rem;
  line-height: 1.32;
}
.page-demographics .section-2 .card-age p {
  font-size: 1.25rem;
  line-height: 1.3333333333;
  font-weight: 700;
  color: #d1e7ff;
}
.page-demographics .section-2 .card-race {
  padding-top: 1.375rem;
}
.page-demographics .section-2 .card-race img {
  width: 5.8333333333rem;
  margin-top: 0.5833333333rem;
  margin-bottom: 0.3333333333rem;
}
.page-demographics .section-2 .card-race ul {
  padding-left: 0;
  list-style: none;
  margin: 0;
  font-size: 1.0416666667rem;
  font-weight: 700;
  line-height: 1.04;
}
.page-demographics .section-2 .card-race ul li {
  padding: 0.4166666667rem 0.5rem;
  display: flex;
}
.page-demographics .section-2 .card-race ul li > * {
  margin-left: auto;
}
.page-demographics .section-2 .card-race ul li:nth-child(odd) {
  background-color: #53789d;
}
.page-demographics .section-2 .card-income {
  padding-top: 1.7083333333rem;
}
.page-demographics .section-2 .card-income img {
  width: 7.4583333333rem;
  margin-top: 1.375rem;
  margin-bottom: 0.8333333333rem;
}
.page-demographics .section-2 .card-income ul {
  padding-left: 0;
  list-style: none;
  margin: 0;
  font-size: 1.0416666667rem;
  font-weight: 700;
  line-height: 1.04;
}
.page-demographics .section-2 .card-income ul li {
  padding: 0.4166666667rem 0.5rem;
  display: flex;
}
.page-demographics .section-2 .card-income ul li > * {
  margin-left: auto;
}
.page-demographics .section-2 .card-income ul li:nth-child(odd) {
  background-color: #10384b;
}
.page-demographics .section-2 .card-educational {
  padding-top: 0.75rem;
}
.page-demographics .section-2 .card-educational img {
  width: 9.1666666667rem;
  margin-top: 1.3333333333rem;
  margin-bottom: 0.9583333333rem;
}
.page-demographics .section-2 .card-educational ul {
  padding-left: 0;
  list-style: none;
  margin: 0;
  font-size: 0.9166666667rem;
  font-weight: 700;
  line-height: 1.1363636364;
  letter-spacing: -0.02em;
}
.page-demographics .section-2 .card-educational ul li {
  padding: 0.4166666667rem 0.5rem;
  padding-right: 0;
  display: flex;
}
.page-demographics .section-2 .card-educational ul li > * {
  margin-left: auto;
}
.page-demographics .section-2 .card-educational ul li:nth-child(2n + 2) {
  background-color: #53789d;
}
.page-demographics .section-2 .card-household img {
  width: 8.625rem;
  margin-top: 0.5416666667rem;
  margin-bottom: 1.4166666667rem;
}
.page-demographics .section-2 .card-household ul {
  padding-left: 0;
  list-style: none;
  margin: 0;
  font-size: 0.9166666667rem;
  font-weight: 700;
  line-height: 1.1363636364;
}
.page-demographics .section-2 .card-household ul li {
  padding: 0.4166666667rem 1.25rem;
  display: flex;
}
.page-demographics .section-2 .card-household ul li > * {
  margin-left: auto;
}
.page-demographics .section-2 .card-household ul li:nth-child(odd) {
  background-color: #10384b;
}
.page-demographics .section-2 .cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 3.125rem 2.5rem;
}
.page-sites-buildings .site-content .list-bullet {
  --jenkins-list-bullet-space: 0.75em;
}
.page-sites-buildings .section-1 {
  margin-top: 1rem;
}
@media (min-width: 992px) {
  .page-sites-buildings .section-1 {
    --jenkins-container-offset-x: calc(
      var(--jenkins-page-max-width) - var(--jenkins-container-max-width)
    );
  }
}
@media (min-width: 1280px) {
  .page-sites-buildings .section-1 {
    --jenkins-container-max-width: 1278px;
  }
}
@media (min-width: 1600px) {
  .page-sites-buildings .section-1 {
    --jenkins-container-max-width: 1598px;
  }
}
@media (min-width: 1280px) {
  .page-sites-buildings .section-1 .row .col-text {
    flex-basis: 38.423028786%;
    max-width: 38.423028786%;
  }
  .page-sites-buildings .section-1 .row .col-image {
    flex-basis: 52.0025031289%;
    max-width: 52.0025031289%;
  }
}
.page-sites-buildings .section-2 {
  padding-top: 3.125rem;
  padding-bottom: 1.625rem;
}
@media (min-width: 992px) {
  .page-sites-buildings .section-2 {
    --jenkins-container-offset-x: calc(
      var(--jenkins-page-max-width) - var(--jenkins-container-max-width)
    );
  }
}
@media (min-width: 1280px) {
  .page-sites-buildings .section-2 {
    --jenkins-container-max-width: 1370px;
  }
}
@media (min-width: 1600px) {
  .page-sites-buildings .section-2 {
    --jenkins-container-max-width: 1712px;
  }
}
@media (min-width: 1280px) {
  .page-sites-buildings .section-2 .row {
    padding-left: 5.7827102804%;
    background: linear-gradient(to left, #707070, #707070);
    background-position: 52.2780373832% 0;
    background-size: 1px calc(100% - 1.5rem);
    background-repeat: no-repeat;
  }
  .page-sites-buildings .section-2 .row .col {
    flex-basis: 45.8152510849%;
    max-width: 45.8152510849%;
  }
}
.page-sites-buildings .section-3 {
  margin-bottom: 2.6666666667rem;
  padding-top: 1.5833333333rem;
  padding-bottom: 1.5833333333rem;
  background-size: 100% 41.7021276596%;
}
@media (min-width: 992px) {
  .page-sites-buildings .section-3 {
    --jenkins-container-offset-x: calc(
      var(--jenkins-page-max-width) - var(--jenkins-container-max-width)
    );
  }
}
@media (min-width: 1280px) {
  .page-sites-buildings .section-3 {
    --jenkins-container-max-width: 1370px;
  }
}
@media (min-width: 1600px) {
  .page-sites-buildings .section-3 {
    --jenkins-container-max-width: 1712px;
  }
}
.page-sites-buildings .section-3 .image-area {
  margin-bottom: 1.5rem;
}
.page-sites-buildings .section-3 .image-area img {
  width: 100%;
}
@media (min-width: 1280px) {
  .page-sites-buildings .section-3 .row {
    padding-left: 3.3294392523%;
  }
  .page-sites-buildings .section-3 .row .col-text {
    flex-basis: 32.1450151057%;
    max-width: 32.1450151057%;
  }
  .page-sites-buildings .section-3 .row .col-image {
    flex-basis: 64.833836858%;
    max-width: 64.833836858%;
  }
}
.page-sites-buildings .section-4 {
  font-size: 1.4583333333rem;
  line-height: 1.2857142857;
  text-align: center;
}
@media (min-width: 992px) {
  .page-sites-buildings .section-4 {
    --jenkins-container-offset-x: calc(
      var(--jenkins-page-max-width) - var(--jenkins-container-max-width)
    );
  }
}
@media (min-width: 1280px) {
  .page-sites-buildings .section-4 {
    --jenkins-container-max-width: 1086px;
  }
}
@media (min-width: 1600px) {
  .page-sites-buildings .section-4 {
    --jenkins-container-max-width: 1357px;
  }
}
.page-chamber .site-content .list-bullet {
  --jenkins-list-bullet-space: 0.75em;
}
@media (min-width: 992px) {
  .page-chamber .section-1 {
    --jenkins-container-offset-x: calc(
      var(--jenkins-page-max-width) - var(--jenkins-container-max-width)
    );
  }
}
@media (min-width: 1280px) {
  .page-chamber .section-1 {
    --jenkins-container-max-width: 1278px;
  }
}
@media (min-width: 1600px) {
  .page-chamber .section-1 {
    --jenkins-container-max-width: 1598px;
  }
}
@media (min-width: 1280px) {
  .page-chamber .section-1 .row .col-text {
    flex-basis: 38.423028786%;
    max-width: 38.423028786%;
  }
  .page-chamber .section-1 .row .col-image {
    flex-basis: 52.0025031289%;
    max-width: 52.0025031289%;
  }
}
.page-chamber .section-2 {
  padding-top: 1rem;
  padding-bottom: 1.875rem;
}
@media (min-width: 992px) {
  .page-chamber .section-2 {
    --jenkins-container-offset-x: calc(
      var(--jenkins-page-max-width) - var(--jenkins-container-max-width)
    );
  }
}
@media (min-width: 1280px) {
  .page-chamber .section-2 {
    --jenkins-container-max-width: 1264px;
  }
}
@media (min-width: 1600px) {
  .page-chamber .section-2 {
    --jenkins-container-max-width: 1580px;
  }
}
@media (min-width: 1280px) {
  .page-chamber .section-2 .text-area {
    padding-left: 2.0886075949%;
  }
  .page-chamber .section-2 .row {
    padding-left: 2.0886075949%;
    background: linear-gradient(to left, #707070, #707070);
    background-position: 52.5856496445% 0;
    background-size: 1px calc(100% - 1.5rem);
    background-repeat: no-repeat;
  }
  .page-chamber .section-2 .row .col-left {
    flex-basis: 45.9599224305%;
    max-width: 45.9599224305%;
  }
  .page-chamber .section-2 .row .col-right {
    flex-basis: 42.0168067227%;
    max-width: 42.0168067227%;
  }
}
.page-chamber .section-3 {
  background: linear-gradient(
    to bottom,
    rgba(105, 137, 58, 0.21) 16.6666666667rem,
    rgba(255, 255, 255, 0.87) 23.3333333333rem,
    #fff 28.5833333333rem
  );
  padding-top: 1.875rem;
  padding-bottom: 1.875rem;
}
@media (min-width: 992px) {
  .page-chamber .section-3 .group-1 {
    --jenkins-container-offset-x: calc(
      var(--jenkins-page-max-width) - var(--jenkins-container-max-width)
    );
  }
}
@media (min-width: 1280px) {
  .page-chamber .section-3 .group-1 {
    --jenkins-container-max-width: 1264px;
  }
}
@media (min-width: 1600px) {
  .page-chamber .section-3 .group-1 {
    --jenkins-container-max-width: 1580px;
  }
}
@media (min-width: 1280px) {
  .page-chamber .section-3 .group-1 .row {
    padding-left: 2.0886075949%;
    background: linear-gradient(to left, #707070, #707070);
    background-position: 52.5856496445% 0;
    background-size: 1px calc(100% - 1.5rem);
    background-repeat: no-repeat;
  }
  .page-chamber .section-3 .group-1 .row .col {
    flex-basis: 44.1499676794%;
    max-width: 44.1499676794%;
  }
}
.page-chamber .section-3 .group-2 {
  margin-top: 2.6666666667rem;
}
@media (min-width: 992px) {
  .page-chamber .section-3 .group-2 {
    --jenkins-container-offset-x: calc(
      var(--jenkins-page-max-width) - var(--jenkins-container-max-width)
    );
  }
}
@media (min-width: 1280px) {
  .page-chamber .section-3 .group-2 {
    --jenkins-container-max-width: 1360px;
  }
}
@media (min-width: 1600px) {
  .page-chamber .section-3 .group-2 {
    --jenkins-container-max-width: 1700px;
  }
}
.page-chamber .section-3 .group-2 .image-area img {
  margin-bottom: 1.5rem;
  border: 1px solid #707070;
}
@media (min-width: 1280px) {
  .page-chamber .section-3 .group-2 .row {
    padding-left: 5.4705882353%;
  }
  .page-chamber .section-3 .group-2 .row .col-text {
    flex-basis: 42.5015556938%;
    max-width: 42.5015556938%;
  }
  .page-chamber .section-3 .group-2 .row .col-image {
    flex-basis: 52.8935905414%;
    max-width: 52.8935905414%;
  }
}
.page-chamber .section-4 {
  padding-top: 1.75rem;
  padding-bottom: 1.75rem;
}
@media (min-width: 992px) {
  .page-chamber .section-4 {
    --jenkins-container-offset-x: calc(
      var(--jenkins-page-max-width) - var(--jenkins-container-max-width)
    );
  }
}
@media (min-width: 1280px) {
  .page-chamber .section-4 {
    --jenkins-container-max-width: 1211px;
  }
}
@media (min-width: 1600px) {
  .page-chamber .section-4 {
    --jenkins-container-max-width: 1514px;
  }
}
.page-chamber .section-4 .row-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: 0 2rem;
  margin-bottom: 1.5rem;
}
.page-chamber .section-4 .row-list > * {
  margin-bottom: 0;
  flex: 100%;
}
@media (min-width: 768px) {
  .page-chamber .section-4 .row-list > * {
    flex: 0 1 auto;
  }
}
.page-chamber .section-5 {
  font-size: 1.4583333333rem;
  line-height: 1.2857142857;
  text-align: center;
  margin-top: 2.0833333333rem;
}
@media (min-width: 992px) {
  .page-chamber .section-5 {
    --jenkins-container-offset-x: calc(
      var(--jenkins-page-max-width) - var(--jenkins-container-max-width)
    );
  }
}
@media (min-width: 1280px) {
  .page-chamber .section-5 {
    --jenkins-container-max-width: 1200px;
  }
}
@media (min-width: 1600px) {
  .page-chamber .section-5 {
    --jenkins-container-max-width: 1500px;
  }
}
@media (min-width: 992px) {
  .page-quality-of-life .section-1 {
    --jenkins-container-offset-x: calc(
      var(--jenkins-page-max-width) - var(--jenkins-container-max-width)
    );
  }
}
@media (min-width: 1280px) {
  .page-quality-of-life .section-1 {
    --jenkins-container-max-width: 1195px;
  }
}
@media (min-width: 1600px) {
  .page-quality-of-life .section-1 {
    --jenkins-container-max-width: 1494px;
  }
}
@media (min-width: 1280px) {
  .page-quality-of-life .section-1 .row .col-text {
    flex-basis: 45.7831325301%;
    max-width: 45.7831325301%;
  }
  .page-quality-of-life .section-1 .row .col-image {
    flex-basis: 46.8540829987%;
    max-width: 46.8540829987%;
  }
}
.page-quality-of-life .section-2 {
  margin-top: 2.1666666667rem;
}
@media (min-width: 992px) {
  .page-quality-of-life .section-2 {
    --jenkins-container-offset-x: calc(
      var(--jenkins-page-max-width) - var(--jenkins-container-max-width)
    );
  }
}
@media (min-width: 1280px) {
  .page-quality-of-life .section-2 {
    --jenkins-container-max-width: 1170px;
  }
}
@media (min-width: 1600px) {
  .page-quality-of-life .section-2 {
    --jenkins-container-max-width: 1462px;
  }
}
@media (min-width: 1280px) {
  .page-quality-of-life .section-2 .row .col-text {
    flex-basis: 46.7852257182%;
    max-width: 46.7852257182%;
  }
  .page-quality-of-life .section-2 .row .col-image {
    flex-basis: 46.7852257182%;
    max-width: 46.7852257182%;
  }
}
.page-quality-of-life .section-3 {
  margin-top: 1.125rem;
}
@media (min-width: 992px) {
  .page-quality-of-life .section-3 {
    --jenkins-container-offset-x: calc(
      var(--jenkins-page-max-width) - var(--jenkins-container-max-width)
    );
  }
}
@media (min-width: 1280px) {
  .page-quality-of-life .section-3 {
    --jenkins-container-max-width: 1187px;
  }
}
@media (min-width: 1600px) {
  .page-quality-of-life .section-3 {
    --jenkins-container-max-width: 1484px;
  }
}
@media (min-width: 1280px) {
  .page-quality-of-life .section-3 .row .col-text {
    flex-basis: 46.0916442049%;
    max-width: 46.0916442049%;
  }
  .page-quality-of-life .section-3 .row .col-image {
    flex-basis: 46.832884097%;
    max-width: 46.832884097%;
  }
}
@media (min-width: 992px) {
  .page-resident-resources .page-section {
    --jenkins-container-offset-x: calc(
      var(--jenkins-page-max-width) - var(--jenkins-container-max-width)
    );
  }
}
@media (min-width: 1280px) {
  .page-resident-resources .page-section {
    --jenkins-container-max-width: 1216px;
  }
}
@media (min-width: 1600px) {
  .page-resident-resources .page-section {
    --jenkins-container-max-width: 1520px;
  }
}
@media (min-width: 1280px) {
  .page-resident-resources .page-section .row {
    padding-left: 1.1842105263%;
  }
  .page-resident-resources .page-section .row .col {
    flex-basis: 45.5392809587%;
    max-width: 45.5392809587%;
  }
  .page-resident-resources .page-section .row .image-wrapper {
    margin-left: -4.2397660819% !important;
  }
}
.page-resident-resources .section-1 {
  padding-bottom: 0.875rem;
}
@media (min-width: 992px) {
  .page-resident-resources .section-1 {
    --jenkins-container-max-width: 45.5rem;
    --jenkins-container-offset-x: calc(
      var(--jenkins-page-max-width) - var(--jenkins-container-max-width)
    );
  }
}
@media (min-width: 1600px) {
  .page-resident-resources .section-1 {
    --jenkins-container-max-width: 1092px;
  }
}
.page-resident-resources .section-3 {
  margin-top: 0.9166666667rem;
  padding-top: 2.4166666667rem;
  padding-bottom: 2.4166666667rem;
}
.page-city-of-millen .section-1 {
  padding-top: 2.75rem;
  padding-bottom: 1.75rem;
  background-size: 100% 42.762063228%;
}
@media (min-width: 992px) {
  .page-city-of-millen .section-1 {
    --jenkins-container-offset-x: calc(
      var(--jenkins-page-max-width) - var(--jenkins-container-max-width)
    );
  }
}
@media (min-width: 1280px) {
  .page-city-of-millen .section-1 {
    --jenkins-container-max-width: 1168px;
  }
}
@media (min-width: 1600px) {
  .page-city-of-millen .section-1 {
    --jenkins-container-max-width: 1460px;
  }
}
@media (min-width: 1280px) {
  .page-city-of-millen .section-1 .row .col {
    flex-basis: 46.5068493151%;
    max-width: 46.5068493151%;
  }
}
@media (min-width: 992px) {
  .page-city-of-millen .section-2 {
    --jenkins-container-offset-x: calc(
      var(--jenkins-page-max-width) - var(--jenkins-container-max-width)
    );
  }
}
@media (min-width: 1280px) {
  .page-city-of-millen .section-2 {
    --jenkins-container-max-width: 1306px;
  }
}
@media (min-width: 1600px) {
  .page-city-of-millen .section-2 {
    --jenkins-container-max-width: 1632px;
  }
}
.page-city-of-millen .section-2 .row .col-right img {
  display: block;
  width: 100%;
  max-width: 22.9166666667rem;
  margin: 0 auto 1.5rem;
}
@media (min-width: 1280px) {
  .page-city-of-millen .section-2 .row .col-left {
    flex-basis: 64.5833333333%;
    max-width: 64.5833333333%;
  }
  .page-city-of-millen .section-2 .row .col-right {
    flex-basis: 33.7009803922%;
    max-width: 33.7009803922%;
    display: flex;
    align-items: center;
    padding-bottom: 1rem;
  }
  .page-city-of-millen .section-2 .row .col .image-wrapper img {
    position: static;
  }
}
.page-city-of-millen .section-3 {
  padding-top: 1.0833333333rem;
  padding-bottom: 1.5rem;
}
@media (min-width: 992px) {
  .page-city-of-millen .section-3 {
    --jenkins-container-offset-x: calc(
      var(--jenkins-page-max-width) - var(--jenkins-container-max-width)
    );
  }
}
@media (min-width: 1280px) {
  .page-city-of-millen .section-3 {
    --jenkins-container-max-width: 1174px;
  }
}
@media (min-width: 1600px) {
  .page-city-of-millen .section-3 {
    --jenkins-container-max-width: 1468px;
  }
}
@media (min-width: 1280px) {
  .page-city-of-millen .section-3 .row {
    background: linear-gradient(to left, #707070, #707070);
    background-position: 50.6811989101% 0;
    background-size: 1px calc(100% - 1.5rem);
    background-repeat: no-repeat;
  }
  .page-city-of-millen .section-3 .row .col {
    flex-basis: 46.5258855586%;
    max-width: 46.5258855586%;
  }
}
.page-city-of-millen-administration .page-buttons {
  margin-bottom: 4.8333333333rem;
}
@media (min-width: 992px) {
  .page-city-of-millen-administration .section-1 {
    --jenkins-container-offset-x: calc(
      var(--jenkins-page-max-width) - var(--jenkins-container-max-width)
    );
  }
}
@media (min-width: 1280px) {
  .page-city-of-millen-administration .section-1 {
    --jenkins-container-max-width: 1261px;
  }
}
@media (min-width: 1600px) {
  .page-city-of-millen-administration .section-1 {
    --jenkins-container-max-width: 1576px;
  }
}
@media (min-width: 1280px) {
  .page-city-of-millen-administration .section-1 .row {
    padding-left: 6.5989847716%;
  }
  .page-city-of-millen-administration .section-1 .row .col {
    flex-basis: 46.4673913043%;
    max-width: 46.4673913043%;
  }
}
.page-city-of-millen-administration .section-1 .list-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 0 2rem;
  margin-bottom: 1.5rem;
}
.page-city-of-millen-administration .section-1 .list-wrapper > * {
  flex: 1;
  max-width: 11.5rem;
  margin: 0;
}
.page-city-of-millen-administration .section-2 {
  margin-top: 1.9583333333rem;
  padding-top: 2.2083333333rem;
  padding-bottom: 0.7083333333rem;
}
@media (min-width: 992px) {
  .page-city-of-millen-administration .section-2 {
    --jenkins-container-offset-x: calc(
      var(--jenkins-page-max-width) - var(--jenkins-container-max-width)
    );
  }
}
@media (min-width: 1280px) {
  .page-city-of-millen-administration .section-2 {
    --jenkins-container-max-width: 1331px;
  }
}
@media (min-width: 1600px) {
  .page-city-of-millen-administration .section-2 {
    --jenkins-container-max-width: 1664px;
  }
}
@media (min-width: 1280px) {
  .page-city-of-millen-administration .section-2 .row {
    padding-left: 15.5649038462%;
  }
  .page-city-of-millen-administration .section-2 .row .col {
    flex-basis: 48.6832740214%;
    max-width: 48.6832740214%;
  }
}
.page-city-of-millen-minutes-agendas .page-buttons {
  margin-bottom: 4.8333333333rem;
}
@media (min-width: 992px) {
  .page-city-of-millen-minutes-agendas .section-1 {
    --jenkins-container-offset-x: calc(
      var(--jenkins-page-max-width) - var(--jenkins-container-max-width)
    );
  }
}
@media (min-width: 1280px) {
  .page-city-of-millen-minutes-agendas .section-1 {
    --jenkins-container-max-width: 1174px;
  }
}
@media (min-width: 1600px) {
  .page-city-of-millen-minutes-agendas .section-1 {
    --jenkins-container-max-width: 1468px;
  }
}
@media (min-width: 1280px) {
  .page-city-of-millen-minutes-agendas .section-1 .row .col {
    flex-basis: 46.5940054496%;
    max-width: 46.5940054496%;
  }
}
.page-city-of-millen-minutes-agendas .section-2 {
  margin-top: 0.75rem;
  padding-top: 1.8333333333rem;
  padding-bottom: 1.8333333333rem;
}
@media (min-width: 992px) {
  .page-city-of-millen-minutes-agendas .section-2 {
    --jenkins-container-max-width: 43.6666666667rem;
    --jenkins-container-offset-x: calc(
      var(--jenkins-page-max-width) - var(--jenkins-container-max-width)
    );
  }
}
@media (min-width: 1600px) {
  .page-city-of-millen-minutes-agendas .section-2 {
    --jenkins-container-max-width: 1048px;
  }
}
@media (min-width: 992px) {
  .page-city-of-millen-minutes-agendas .section-2 .row .col {
    flex-basis: 45.6106870229%;
    max-width: 45.6106870229%;
  }
  .page-city-of-millen-minutes-agendas .section-2 .row .dates-list {
    margin-right: -10%;
  }
}
@media (min-width: 992px) {
  .page-city-of-millen-public-safety .section-1 {
    --jenkins-container-offset-x: calc(
      var(--jenkins-page-max-width) - var(--jenkins-container-max-width)
    );
  }
}
@media (min-width: 1280px) {
  .page-city-of-millen-public-safety .section-1 {
    --jenkins-container-max-width: 1174px;
  }
}
@media (min-width: 1600px) {
  .page-city-of-millen-public-safety .section-1 {
    --jenkins-container-max-width: 1468px;
  }
}
.page-city-of-millen-public-safety .section-1 .blue-box {
  margin-bottom: 1.5rem;
  padding: 0.5rem 1.0416666667rem;
  background-color: rgba(117, 165, 214, 0.3);
}
.page-city-of-millen-public-safety .section-1 .blue-box > *:last-child {
  margin-bottom: 0.25rem;
}
@media (min-width: 1280px) {
  .page-city-of-millen-public-safety .section-1 .row .col {
    flex-basis: 46.5940054496%;
    max-width: 46.5940054496%;
  }
  .page-city-of-millen-public-safety .section-1 .row .image-wrapper {
    margin-bottom: 1rem;
  }
  .page-city-of-millen-public-safety .section-1 .row .col-left .highlight-box {
    padding: 1.3333333333rem 2.875rem;
  }
  .page-city-of-millen-public-safety .section-1 .row .col-right .highlight-box {
    margin-bottom: 1rem;
    padding: 0.2083333333rem 1.375rem;
  }
}
.page-city-of-millen-utilities .section-1 {
  margin-bottom: 2.7916666667rem;
}
@media (min-width: 992px) {
  .page-city-of-millen-utilities .section-1 {
    --jenkins-container-offset-x: calc(
      var(--jenkins-page-max-width) - var(--jenkins-container-max-width)
    );
  }
}
@media (min-width: 1280px) {
  .page-city-of-millen-utilities .section-1 {
    --jenkins-container-max-width: 1196px;
  }
}
@media (min-width: 1600px) {
  .page-city-of-millen-utilities .section-1 {
    --jenkins-container-max-width: 1495px;
  }
}
@media (min-width: 1280px) {
  .page-city-of-millen-utilities .section-1 .row .col {
    flex-basis: 45.7525083612%;
    max-width: 45.7525083612%;
  }
  .page-city-of-millen-utilities .section-1 .row .highlight-box {
    padding: 1.3333333333rem 1.75rem;
    padding-right: 2.625rem;
  }
}
.page-city-of-millen-utilities .section-2 {
  padding-top: 1.8333333333rem;
  background-size: 100% 63.5555555556%;
}
@media (min-width: 992px) {
  .page-city-of-millen-utilities .section-2 {
    --jenkins-container-offset-x: calc(
      var(--jenkins-page-max-width) - var(--jenkins-container-max-width)
    );
  }
}
@media (min-width: 1280px) {
  .page-city-of-millen-utilities .section-2 {
    --jenkins-container-max-width: 1188px;
  }
}
@media (min-width: 1600px) {
  .page-city-of-millen-utilities .section-2 {
    --jenkins-container-max-width: 1485px;
  }
}
.page-city-of-millen-utilities .section-2 .images-list {
  padding-left: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 2.375rem;
}
.page-city-of-millen-utilities .section-2 .images-list > li:first-child {
  max-width: 15.75rem;
}
.page-city-of-millen-utilities .section-2 .images-list > li:last-child {
  max-width: 17.3333333333rem;
}
@media (min-width: 1280px) {
  .page-city-of-millen-utilities .section-2 .row .col {
    flex-basis: 46.0606060606%;
    max-width: 46.0606060606%;
  }
  .page-city-of-millen-utilities .section-2 .row .image-wrapper img {
    position: static;
  }
  .page-city-of-millen-utilities .section-2 .row .images-list {
    margin-left: -11.9883040936%;
    margin-right: -12.4269005848%;
    justify-content: space-between;
    gap: 0;
  }
}
.page-main-street-millen .section-1 {
  text-align: center;
}
@media (min-width: 992px) {
  .page-main-street-millen .section-1 {
    --jenkins-container-max-width: 41.5rem;
    --jenkins-container-offset-x: calc(
      var(--jenkins-page-max-width) - var(--jenkins-container-max-width)
    );
  }
}
@media (min-width: 1600px) {
  .page-main-street-millen .section-1 {
    --jenkins-container-max-width: 996px;
  }
}
.page-main-street-millen .section-2 {
  padding-top: 1.125rem;
  padding-bottom: 2.7916666667rem;
}
@media (min-width: 992px) {
  .page-main-street-millen .section-2 {
    --jenkins-container-offset-x: calc(
      var(--jenkins-page-max-width) - var(--jenkins-container-max-width)
    );
  }
}
@media (min-width: 1280px) {
  .page-main-street-millen .section-2 {
    --jenkins-container-max-width: 1181px;
  }
}
@media (min-width: 1600px) {
  .page-main-street-millen .section-2 {
    --jenkins-container-max-width: 1476px;
  }
}
.page-main-street-millen .section-2 .dropdown-list {
  display: none;
  padding-left: 0;
  list-style: none;
  counter-reset: item;
  margin: 0;
  padding-top: 1rem;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.4666666667;
  color: #fff;
  background-color: #69893a;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 8;
}
.page-main-street-millen .section-2 .dropdown-list > li {
  counter-increment: item;
}
.page-main-street-millen .section-2 .dropdown-list > li a {
  display: block;
  padding: 0 1.5rem;
  text-decoration: none;
  color: inherit;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.page-main-street-millen .section-2 .dropdown-list > li a::before {
  content: counter(item) '. ';
}
.page-main-street-millen .section-2 .dropdown-list > li:nth-child(odd) {
  background-color: rgba(255, 255, 255, 0.44);
}
.page-main-street-millen .section-2 .dropdown-list > li:nth-child(even) {
  padding-top: 0.2083333333rem;
  padding-bottom: 0.2083333333rem;
}
.page-main-street-millen .section-2 .dropdown-list-button {
  display: block;
  width: 100%;
  height: 2.5833333333rem;
  padding: 0 1.0833333333rem;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 2.0666666667;
  text-align: left;
  color: #fff;
  background-color: #69893a;
  border: 0;
  outline: 0 !important;
}
.page-main-street-millen .section-2 .dropdown-list-button::before {
  content: '▼ | ';
}
.page-main-street-millen .section-2 .dropdown-list-wrapper {
  position: relative;
  margin-bottom: 1.25rem;
}
.page-main-street-millen .section-2 .thumbnail-list {
  padding-left: 0;
  list-style: none;
  counter-reset: thumb;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.7083333333rem 0.3333333333rem;
}
@media (min-width: 1280px) {
  .page-main-street-millen .section-2 .thumbnail-list {
    justify-content: space-between;
  }
}
.page-main-street-millen .section-2 .thumbnail-list > li {
  counter-increment: thumb;
  width: 15.0833333333rem;
}
.page-main-street-millen
  .section-2
  .thumbnail-list
  > li
  .thumbnail-item::before {
  content: counter(thumb);
}
.page-main-street-millen
  .section-2
  .thumbnail-list
  > li
  .thumbnail-detail
  .name::before {
  content: counter(thumb) '. ';
}
.page-main-street-millen .section-2 .thumbnail-item {
  display: block;
  aspect-ratio: 362/252;
  border: 1px solid #707070;
  position: relative;
  text-decoration: none !important;
}
.page-main-street-millen .section-2 .thumbnail-item::before {
  width: 2.2083333333rem;
  height: 2.2083333333rem;
  font-size: 1.25rem;
  line-height: 1.7666666667;
  text-align: center;
  color: #fff;
  background-color: #69893a;
  border-radius: 50%;
  box-shadow: inset 0 0.125rem 0.125rem #000407;
  position: absolute;
  top: 0.5416666667rem;
  left: 1rem;
  z-index: 1;
}
.page-main-street-millen .section-2 .thumbnail-item::after {
  content: '';
  background-color: rgba(79, 79, 79, 0.3);
  position: absolute;
  inset: 0;
}
.page-main-street-millen .section-2 .thumbnail-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.page-main-street-millen .section-2 .thumbnail-detail {
  display: none;
  overflow-y: auto;
  opacity: 0;
  padding: 4.1666666667rem 1.0416666667rem 1rem;
  position: fixed;
  inset: 0;
  z-index: 19;
}
.page-main-street-millen .section-2 .thumbnail-detail-inner {
  width: 100%;
  max-width: 30.5833333333rem;
  margin: auto;
  padding: 0.2083333333rem 1.2916666667rem 0.7916666667rem 0.7916666667rem;
  color: #fff;
  background-color: #69893a;
  border: 0.0833333333rem solid #fff;
  position: relative;
  transition: transform 0.3s ease-out;
  transform: translate(0, -50px);
}
.page-main-street-millen .section-2 .thumbnail-detail.show {
  opacity: 1;
}
.page-main-street-millen .section-2 .thumbnail-detail.show > * {
  transform: translate(0, 0);
}
.page-main-street-millen .section-2 .thumbnail-detail .name {
  margin-top: 0.2916666667rem;
  margin-bottom: 0.125rem;
  padding: 0 1.0416666667rem;
  font-size: 1.6666666667rem;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
}
.page-main-street-millen .section-2 .thumbnail-detail .address {
  font-size: 1.0416666667rem;
  margin-bottom: 0.6666666667rem;
  text-align: center;
}
.page-main-street-millen .section-2 .thumbnail-detail .photo img {
  display: block;
  width: 100%;
  max-width: 20rem;
  margin: 0 auto 0.9166666667rem;
}
.page-main-street-millen .section-2 .thumbnail-detail .info > *:last-child {
  margin-bottom: 0;
}
.page-main-street-millen .section-2 .thumbnail-detail .close {
  font: 0/0 a;
  color: rgba(0, 0, 0, 0);
  text-shadow: none;
  border: 0;
  width: 1.25rem;
  height: 1.25rem;
  background-color: #fff;
  -webkit-mask: url('../images/icon-close-circle.svg') center/contain no-repeat;
  mask: url('../images/icon-close-circle.svg') center/contain no-repeat;
  position: absolute;
  top: 0.7083333333rem;
  right: 0.7083333333rem;
}
.page-main-street-millen .section-3 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-size: 100% 66.5730337079%;
}
@media (min-width: 992px) {
  .page-main-street-millen .section-3 {
    --jenkins-container-offset-x: calc(
      var(--jenkins-page-max-width) - var(--jenkins-container-max-width)
    );
  }
}
@media (min-width: 1280px) {
  .page-main-street-millen .section-3 {
    --jenkins-container-max-width: 1170px;
  }
}
@media (min-width: 1600px) {
  .page-main-street-millen .section-3 {
    --jenkins-container-max-width: 1462px;
  }
}
@media (min-width: 1280px) {
  .page-main-street-millen .section-3 .row {
    padding-left: 1.6415868673%;
  }
  .page-main-street-millen .section-3 .row .col {
    flex-basis: 47.5660639777%;
    max-width: 47.5660639777%;
  }
}
.page-main-street-millen .section-3 .logos-list {
  padding-left: 0;
  list-style: none;
  margin-top: 1.7916666667rem;
  margin-bottom: 2.5rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.5625rem 3.125rem;
}
.page-main-street-millen .section-3 .logos-list li:first-child img {
  width: 12.5833333333rem;
}
.page-main-street-millen .section-3 .logos-list li:last-child img {
  width: 17.9166666667rem;
}
.thumbnail-overlay {
  background-color: rgba(0, 0, 0, 0.5);
  position: fixed;
  inset: 0;
  z-index: 18;
}
@media (min-width: 992px) {
  .page-jenkins-county .section-1 {
    --jenkins-container-offset-x: calc(
      var(--jenkins-page-max-width) - var(--jenkins-container-max-width)
    );
  }
}
@media (min-width: 1280px) {
  .page-jenkins-county .section-1 {
    --jenkins-container-max-width: 1278px;
  }
}
@media (min-width: 1600px) {
  .page-jenkins-county .section-1 {
    --jenkins-container-max-width: 1598px;
  }
}
@media (min-width: 1280px) {
  .page-jenkins-county .section-1 .row .col-text {
    flex-basis: 45.0563204005%;
    max-width: 45.0563204005%;
  }
  .page-jenkins-county .section-1 .row .col-image {
    flex-basis: 52.0025031289%;
    max-width: 52.0025031289%;
  }
}
.page-jenkins-county .section-2 {
  margin-top: 2.2916666667rem;
}
@media (min-width: 992px) {
  .page-jenkins-county .section-2 {
    --jenkins-container-offset-x: calc(
      var(--jenkins-page-max-width) - var(--jenkins-container-max-width)
    );
  }
}
@media (min-width: 1280px) {
  .page-jenkins-county .section-2 {
    --jenkins-container-max-width: 1277px;
  }
}
@media (min-width: 1600px) {
  .page-jenkins-county .section-2 {
    --jenkins-container-max-width: 1596px;
  }
}
@media (min-width: 1280px) {
  .page-jenkins-county .section-2 .row {
    max-width: 97.8070175439%;
  }
  .page-jenkins-county .section-2 .row .col-left {
    flex-basis: 47.3414477899%;
    max-width: 47.3414477899%;
  }
  .page-jenkins-county .section-2 .row .col-right {
    flex-basis: 44.8430493274%;
    max-width: 44.8430493274%;
  }
}
.page-jenkins-county .section-2 .highlight-box {
  padding: 1.1666666667rem;
  padding-left: 2.5rem;
}
.page-jenkins-county .section-3 {
  padding-top: 0.5rem;
  padding-bottom: 1.5rem;
}
@media (min-width: 992px) {
  .page-jenkins-county .section-3 {
    --jenkins-container-offset-x: calc(
      var(--jenkins-page-max-width) - var(--jenkins-container-max-width)
    );
  }
}
@media (min-width: 1280px) {
  .page-jenkins-county .section-3 {
    --jenkins-container-max-width: 1277px;
  }
}
@media (min-width: 1600px) {
  .page-jenkins-county .section-3 {
    --jenkins-container-max-width: 1596px;
  }
}
.page-jenkins-county-administration .section-1 {
  padding-bottom: 0.625rem;
}
@media (min-width: 992px) {
  .page-jenkins-county-administration .section-1 {
    --jenkins-container-max-width: 48.1666666667rem;
    --jenkins-container-offset-x: calc(
      var(--jenkins-page-max-width) - var(--jenkins-container-max-width)
    );
  }
}
@media (min-width: 1600px) {
  .page-jenkins-county-administration .section-1 {
    --jenkins-container-max-width: 1156px;
  }
}
@media (min-width: 992px) {
  .page-jenkins-county-administration .section-2 {
    --jenkins-container-offset-x: calc(
      var(--jenkins-page-max-width) - var(--jenkins-container-max-width)
    );
  }
}
@media (min-width: 1280px) {
  .page-jenkins-county-administration .section-2 {
    --jenkins-container-max-width: 1181px;
  }
}
@media (min-width: 1600px) {
  .page-jenkins-county-administration .section-2 {
    --jenkins-container-max-width: 1476px;
  }
}
.page-jenkins-county-administration .section-2 .highlight-box {
  padding: 0.9166666667rem;
  padding-left: 2.625rem;
}
@media (min-width: 1280px) {
  .page-jenkins-county-administration .section-2 .row .col-left {
    flex-basis: 37.6693766938%;
    max-width: 37.6693766938%;
  }
  .page-jenkins-county-administration .section-2 .row .col-center {
    flex-basis: 28.9972899729%;
    max-width: 28.9972899729%;
  }
  .page-jenkins-county-administration .section-2 .row .col-right {
    flex-basis: 26.6937669377%;
    max-width: 26.6937669377%;
  }
}
.page-jenkins-county-minutes-agendas .section-1 {
  padding-bottom: 0.875rem;
}
@media (min-width: 992px) {
  .page-jenkins-county-minutes-agendas .section-1 {
    --jenkins-container-max-width: 43.9166666667rem;
    --jenkins-container-offset-x: calc(
      var(--jenkins-page-max-width) - var(--jenkins-container-max-width)
    );
  }
}
@media (min-width: 1600px) {
  .page-jenkins-county-minutes-agendas .section-1 {
    --jenkins-container-max-width: 1054px;
  }
}
@media (min-width: 992px) {
  .page-jenkins-county-minutes-agendas .section-2 {
    --jenkins-container-offset-x: calc(
      var(--jenkins-page-max-width) - var(--jenkins-container-max-width)
    );
  }
}
@media (min-width: 1280px) {
  .page-jenkins-county-minutes-agendas .section-2 {
    --jenkins-container-max-width: 1285px;
  }
}
@media (min-width: 1600px) {
  .page-jenkins-county-minutes-agendas .section-2 {
    --jenkins-container-max-width: 1606px;
  }
}
.page-jenkins-county-minutes-agendas .section-2 .highlight-box {
  margin-bottom: 1rem;
  padding: 0.6666666667rem;
  padding-left: 2.625rem;
}
@media (min-width: 1280px) {
  .page-jenkins-county-minutes-agendas .section-2 .row .col-text {
    flex-basis: 42.5902864259%;
    max-width: 42.5902864259%;
  }
  .page-jenkins-county-minutes-agendas .section-2 .row .col-image {
    flex-basis: 52.2415940224%;
    max-width: 52.2415940224%;
  }
  .page-jenkins-county-minutes-agendas .section-2 .row .text-wrapper {
    width: 81.5256257449%;
    margin-left: 6.9129916567%;
  }
  .page-jenkins-county-minutes-agendas .section-2 .row .image-wrapper {
    margin-bottom: 2rem;
  }
}
.page-jenkins-county-minutes-agendas .section-3 {
  margin-top: 3.875rem;
  padding-top: 1.7916666667rem;
  padding-bottom: 1.7916666667rem;
}
@media (min-width: 992px) {
  .page-jenkins-county-minutes-agendas .section-3 {
    --jenkins-container-max-width: 43.6666666667rem;
    --jenkins-container-offset-x: calc(
      var(--jenkins-page-max-width) - var(--jenkins-container-max-width)
    );
  }
}
@media (min-width: 1600px) {
  .page-jenkins-county-minutes-agendas .section-3 {
    --jenkins-container-max-width: 1048px;
  }
}
@media (min-width: 992px) {
  .page-jenkins-county-minutes-agendas .section-3 .row .col {
    flex-basis: 45.6106870229%;
    max-width: 45.6106870229%;
  }
  .page-jenkins-county-minutes-agendas .section-3 .row .dates-list {
    margin-right: -10%;
  }
}
.page-jenkins-county-emergency-management .section-1 {
  padding-bottom: 1.75rem;
}
@media (min-width: 992px) {
  .page-jenkins-county-emergency-management .section-1 {
    --jenkins-container-max-width: 36.6666666667rem;
    --jenkins-container-offset-x: calc(
      var(--jenkins-page-max-width) - var(--jenkins-container-max-width)
    );
  }
}
@media (min-width: 1600px) {
  .page-jenkins-county-emergency-management .section-1 {
    --jenkins-container-max-width: 880px;
  }
}
@media (min-width: 992px) {
  .page-jenkins-county-emergency-management .section-2 {
    --jenkins-container-offset-x: calc(
      var(--jenkins-page-max-width) - var(--jenkins-container-max-width)
    );
  }
}
@media (min-width: 1280px) {
  .page-jenkins-county-emergency-management .section-2 {
    --jenkins-container-max-width: 1264px;
  }
}
@media (min-width: 1600px) {
  .page-jenkins-county-emergency-management .section-2 {
    --jenkins-container-max-width: 1580px;
  }
}
@media (min-width: 1280px) {
  .page-jenkins-county-emergency-management .section-2 .row {
    max-width: 94.9367088608%;
  }
  .page-jenkins-county-emergency-management .section-2 .row .col-left {
    flex-basis: 45.6%;
    max-width: 45.6%;
  }
  .page-jenkins-county-emergency-management .section-2 .row .col-right {
    flex-basis: 46.0666666667%;
    max-width: 46.0666666667%;
  }
}
.page-jenkins-county-emergency-management
  .section-2
  .highlight-box.bg-darkblue {
  padding: 1.5833333333rem 2.5833333333rem;
}
.page-jenkins-county-emergency-management
  .section-2
  .highlight-box.bg-lightblue {
  padding: 1.375rem;
  padding-left: 2.5833333333rem;
  padding-right: 1.0416666667rem;
}
.page-jenkins-county-emergency-management .section-3 {
  margin-top: 4.375rem;
  padding-top: 4.7916666667rem;
  background-size: 100% 75.8333333333%;
}
@media (min-width: 992px) {
  .page-jenkins-county-emergency-management .section-3 {
    --jenkins-container-offset-x: calc(
      var(--jenkins-page-max-width) - var(--jenkins-container-max-width)
    );
  }
}
@media (min-width: 1280px) {
  .page-jenkins-county-emergency-management .section-3 {
    --jenkins-container-max-width: 1154px;
  }
}
@media (min-width: 1600px) {
  .page-jenkins-county-emergency-management .section-3 {
    --jenkins-container-max-width: 1442px;
  }
}
@media (min-width: 1280px) {
  .page-jenkins-county-emergency-management .section-3 .row .col-text {
    flex-basis: 47.4341192788%;
    max-width: 47.4341192788%;
  }
  .page-jenkins-county-emergency-management .section-3 .row .col-image {
    flex-basis: 46.879334258%;
    max-width: 46.879334258%;
  }
}
@media (min-width: 1280px) {
  .page-jenkins-county-emergency-management .section-3 .codered-list {
    gap: 0.5rem;
    justify-content: space-between;
    margin-left: -0.4791666667rem;
    margin-right: -0.4791666667rem;
  }
}
.page-jenkins-county-registrar .section-1 {
  padding-bottom: 1.4583333333rem;
}
@media (min-width: 992px) {
  .page-jenkins-county-registrar .section-1 {
    --jenkins-container-max-width: 36.6666666667rem;
    --jenkins-container-offset-x: calc(
      var(--jenkins-page-max-width) - var(--jenkins-container-max-width)
    );
  }
}
@media (min-width: 1600px) {
  .page-jenkins-county-registrar .section-1 {
    --jenkins-container-max-width: 880px;
  }
}
@media (min-width: 992px) {
  .page-jenkins-county-registrar .section-2 {
    --jenkins-container-offset-x: calc(
      var(--jenkins-page-max-width) - var(--jenkins-container-max-width)
    );
  }
}
@media (min-width: 1280px) {
  .page-jenkins-county-registrar .section-2 {
    --jenkins-container-max-width: 1285px;
  }
}
@media (min-width: 1600px) {
  .page-jenkins-county-registrar .section-2 {
    --jenkins-container-max-width: 1606px;
  }
}
.page-jenkins-county-registrar .section-2 .blue-box {
  max-width: 28.7916666667rem;
  margin-bottom: 1.5rem;
  padding: 1.375rem;
  padding-left: 2rem;
  background-color: rgba(117, 165, 214, 0.3);
}
.page-jenkins-county-registrar .section-2 .blue-box > *:last-child {
  margin-bottom: 0.2083333333rem;
}
@media (min-width: 1280px) {
  .page-jenkins-county-registrar .section-2 .row .col-text {
    flex-basis: 42.5902864259%;
    max-width: 42.5902864259%;
  }
  .page-jenkins-county-registrar .section-2 .row .col-image {
    flex-basis: 52.2415940224%;
    max-width: 52.2415940224%;
  }
}
.page-jenkins-county-registrar .map-section {
  margin-top: 3.5416666667rem;
  margin-bottom: 2.0833333333rem;
}
.page-jenkins-county-registrar .map-section img {
  width: 100%;
}
@media (min-width: 992px) {
  .page-jenkins-county-registrar .section-3 {
    --jenkins-container-offset-x: calc(
      var(--jenkins-page-max-width) - var(--jenkins-container-max-width)
    );
  }
}
@media (min-width: 1280px) {
  .page-jenkins-county-registrar .section-3 {
    --jenkins-container-max-width: 1246px;
  }
}
@media (min-width: 1600px) {
  .page-jenkins-county-registrar .section-3 {
    --jenkins-container-max-width: 1558px;
  }
}
@media (min-width: 1280px) {
  .page-jenkins-county-registrar .section-3 .row .col-left {
    flex-basis: 47.7535301669%;
    max-width: 47.7535301669%;
  }
  .page-jenkins-county-registrar .section-3 .row .col-right {
    flex-basis: 48.0102695764%;
    max-width: 48.0102695764%;
  }
}
.page-jenkins-county-registrar .section-3 .links-list {
  padding-left: 0;
  list-style: none;
  margin-top: 0.8333333333rem;
  margin-bottom: 3.75rem;
  padding-left: 2.1458333333rem;
  padding-right: 2.1458333333rem;
  font-size: 1.25rem;
  line-height: 1.2;
}
.page-jenkins-county-registrar .section-3 .links-list > li + li {
  margin-top: 1.5rem;
}
.page-jenkins-county-registrar .section-3 .news-box {
  height: calc(100% - 1.5rem);
  margin-bottom: 1.5rem;
  border: 0.0833333333rem solid #10384b;
  display: flex;
  flex-direction: column;
}
.page-jenkins-county-registrar .section-3 .news-box-head {
  margin: 0;
  padding: 1.4583333333rem;
  font-size: 1.6666666667rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  text-align: center;
  color: #fff;
  background-color: #10384b;
}
.page-jenkins-county-registrar .section-3 .news-box-body {
  flex-grow: 1;
  padding: 1.5416666667rem 2.2083333333rem;
  padding-bottom: 3.125rem;
  font-size: 1.0416666667rem;
  line-height: 1.44;
  position: relative;
}
.page-jenkins-county-registrar .section-3 .news-list {
  padding-left: 0;
  list-style: none;
  margin: 0;
}
.page-jenkins-county-registrar .section-3 .news-list > li + li {
  padding-top: 1.5rem;
  border-top: 1px solid #707070;
}
.page-jenkins-county-registrar .section-3 .news-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #10384b;
}
.page-jenkins-county-registrar .section-3 .news-more {
  width: 4.1666666667rem;
  padding-bottom: 1.8333333333rem;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1;
  text-decoration: none !important;
  text-align: center;
  color: #10384b;
  position: absolute;
  left: calc(50% - 2.0833333333rem);
  bottom: 0.3333333333rem;
}
.page-jenkins-county-registrar .section-3 .news-more::before {
  content: '';
  display: block;
  border: 0 solid rgba(0, 0, 0, 0);
  border-width: 1.4583333333rem 0.8541666667rem 0;
  border-top-color: #10384b;
  position: absolute;
  left: calc(50% - 0.8541666667rem);
  bottom: 0;
}
.page-jenkins-county-registrar .section-3 .location-title {
  font-size: 1.2rem;
  line-height: 1.25;
  font-weight: 700;
  height: 6.4166666667em;
  margin-bottom: 1.25em;
  padding-top: 0.5em;
  padding-left: 6.8611111111em;
  color: #10384b;
  position: relative;
}
@media (min-width: 768px) {
  .page-jenkins-county-registrar .section-3 .location-title {
    font-size: 1.5rem;
  }
}
.page-jenkins-county-registrar .section-3 .location-title img {
  width: auto;
  height: 100%;
  position: absolute;
  inset: 0;
  z-index: -1;
}
.page-jenkins-county-registrar .section-3 .location-title .text > * {
  display: block;
  padding-left: 0.35em;
}
.page-jenkins-county-registrar .section-3 .table tr > * {
  padding-left: 0.7083333333rem;
}
.page-jenkins-county-registrar .section-3 .table tr > *:last-child {
  padding-right: 0.7083333333rem;
}
.page-jenkins-county-registrar .section-3 .table thead tr > * {
  padding-top: 0.3333333333rem;
  padding-bottom: 0.3333333333rem;
  color: #fff;
  background-color: #75a5d6;
}
.page-jenkins-county-registrar .section-3 .table tbody tr > * {
  padding-bottom: 0.1em;
}
.page-jenkins-county-registrar .section-3 .table tbody tr:first-child > * {
  padding-top: 0.75em;
}
.page-jenkins-county-registrar .section-3 .table tbody tr:nth-child(even) > * {
  background-color: rgba(117, 165, 214, 0.24);
}
.page-jenkins-county-registrar .section-4 {
  margin-top: 4.1666666667rem;
  padding-top: 0.625rem;
  background-size: 100% 72.9530818767%;
}
@media (min-width: 992px) {
  .page-jenkins-county-registrar .section-4 {
    --jenkins-container-offset-x: calc(
      var(--jenkins-page-max-width) - var(--jenkins-container-max-width)
    );
  }
}
@media (min-width: 1280px) {
  .page-jenkins-county-registrar .section-4 {
    --jenkins-container-max-width: 1187px;
  }
}
@media (min-width: 1600px) {
  .page-jenkins-county-registrar .section-4 {
    --jenkins-container-max-width: 1484px;
  }
}
.page-jenkins-county-registrar .section-4 .maps-list {
  padding-left: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem 2rem;
  text-align: center;
}
@media (min-width: 1280px) {
  .page-jenkins-county-registrar .section-4 .maps-list {
    justify-content: space-between;
  }
}
.page-jenkins-county-registrar .section-4 .maps-list > * {
  flex: 0 0 10.0416666667rem;
}
.page-jenkins-county-registrar .section-4 .maps-list > * img {
  width: 12.0833333333rem;
  margin-bottom: 1.5rem;
}
.page-jenkins-county-registrar .section-4 .buttons-list {
  padding-left: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  text-align: center;
  gap: 1.5rem 2rem;
}
/* @media (min-width: 1280px) {
  .page-jenkins-county-registrar .section-4 .buttons-list {
    justify-content: space-between;
  } */
.page-jenkins-county-registrar .section-4 .buttons-list > * {
  flex: 0 0 18.0416666667rem;
}
.page-jenkins-county-registrar .section-4 .buttons-list .button {
  display: block;
  max-width: 12.0416666667rem;
  margin: auto;
  padding: 1.1666666667rem 0;
  color: #fff;
  background-color: #69893a;
  border-radius: 0.8333333333rem;
  box-shadow: 0 0.125rem 0.25rem #4f4f4f;
  font-size: 16px;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.0714285714;
  text-decoration: none !important;
  text-align: center;
}
.page-jenkins-county-registrar .section-4 .resources-list {
  padding-left: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem 7.2916666667rem;
  text-align: center;
}
.page-jenkins-county-registrar .section-4 .resources-list:not(:last-child) {
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .page-visit .section-1 {
    --jenkins-container-offset-x: calc(
      var(--jenkins-page-max-width) - var(--jenkins-container-max-width)
    );
  }
}
@media (min-width: 1280px) {
  .page-visit .section-1 {
    --jenkins-container-max-width: 1278px;
  }
}
@media (min-width: 1600px) {
  .page-visit .section-1 {
    --jenkins-container-max-width: 1598px;
  }
}
@media (min-width: 1280px) {
  .page-visit .section-1 .row .col-text {
    flex-basis: 45.0563204005%;
    max-width: 45.0563204005%;
  }
  .page-visit .section-1 .row .col-image {
    flex-basis: 50.4380475594%;
    max-width: 50.4380475594%;
  }
}
.page-visit .section-2 {
  margin-top: 2.2916666667rem;
}
@media (min-width: 992px) {
  .page-visit .section-2 {
    --jenkins-container-offset-x: calc(
      var(--jenkins-page-max-width) - var(--jenkins-container-max-width)
    );
  }
}
@media (min-width: 1280px) {
  .page-visit .section-2 {
    --jenkins-container-max-width: 1272px;
  }
}
@media (min-width: 1600px) {
  .page-visit .section-2 {
    --jenkins-container-max-width: 1590px;
  }
}
@media (min-width: 1280px) {
  .page-visit .section-2 .row {
    max-width: 98.1761006289%;
  }
  .page-visit .section-2 .row .col {
    flex-basis: 47.3414477899%;
    max-width: 47.3414477899%;
  }
}
@media (min-width: 992px) {
  .page-attractions .section-1 {
    --jenkins-container-offset-x: calc(
      var(--jenkins-page-max-width) - var(--jenkins-container-max-width)
    );
  }
}
@media (min-width: 1280px) {
  .page-attractions .section-1 {
    --jenkins-container-max-width: 1275px;
  }
}
@media (min-width: 1600px) {
  .page-attractions .section-1 {
    --jenkins-container-max-width: 1594px;
  }
}
.page-attractions .section-1 .row .col {
  margin-bottom: 2rem;
}
@media (min-width: 1280px) {
  .page-attractions .section-1 .row .col {
    flex-basis: 46.9887076537%;
    max-width: 46.9887076537%;
  }
}
.page-attractions .section-1 .row .col img {
  width: 28.5rem;
  margin-bottom: 1rem;
}
.page-attractions .section-1 .row .col > * {
  margin: 0;
  padding-left: 1.2083333333rem;
  padding-right: 1.5rem;
}
.page-attractions .section-1 .row .col .heading-block {
  margin: 0;
  text-transform: uppercase;
}
.page-attractions .section-1 .row .col .text-wrapper {
  padding-top: 1.1666666667rem;
  padding-bottom: 0.25rem;
}
.page-attractions .section-1 .row .col-right {
  background-color: rgba(105, 137, 58, 0.1);
}
.page-attractions .section-1 .row .col-right .heading-block {
  background-color: #69893a;
}
.page-lodging-dining .section-1 {
  padding-bottom: 2.2916666667rem;
}
@media (min-width: 992px) {
  .page-lodging-dining .section-1 {
    --jenkins-container-max-width: 38.75rem;
    --jenkins-container-offset-x: calc(
      var(--jenkins-page-max-width) - var(--jenkins-container-max-width)
    );
  }
}
@media (min-width: 1600px) {
  .page-lodging-dining .section-1 {
    --jenkins-container-max-width: 930px;
  }
}
@media (min-width: 992px) {
  .page-lodging-dining .section-2 {
    --jenkins-container-offset-x: calc(
      var(--jenkins-page-max-width) - var(--jenkins-container-max-width)
    );
  }
}
@media (min-width: 1280px) {
  .page-lodging-dining .section-2 {
    --jenkins-container-max-width: 1279px;
  }
}
@media (min-width: 1600px) {
  .page-lodging-dining .section-2 {
    --jenkins-container-max-width: 1599px;
  }
}
.page-lodging-dining .section-2 .row .col {
  margin-bottom: 2rem;
}
@media (min-width: 1280px) {
  .page-lodging-dining .section-2 .row .col {
    flex-basis: 46.8417761101%;
    max-width: 46.8417761101%;
  }
}
.page-lodging-dining .section-2 .row .col img {
  width: 28.5rem;
  margin-bottom: 1rem;
}
.page-lodging-dining .section-2 .row .col > * {
  margin: 0;
  padding-left: 1.2083333333rem;
  padding-right: 1.5rem;
}
.page-lodging-dining .section-2 .row .col .heading-block {
  margin: 0;
  text-transform: uppercase;
}
.page-lodging-dining .section-2 .row .col .text-wrapper {
  padding-top: 0.9583333333rem;
  padding-bottom: 0.25rem;
}
.page-lodging-dining .section-2 .row .col-left {
  background-color: rgba(209, 231, 255, 0.4);
}
@media (min-width: 1280px) {
  .page-lodging-dining .section-2 .row .col-left .text-wrapper {
    padding-left: 3.6666666667rem;
  }
  .page-lodging-dining .section-2 .row .col-left .text-wrapper img {
    max-width: calc(100% - -2.5rem);
    margin-left: -2.5rem;
  }
}
.page-lodging-dining .section-2 .row .col-right {
  background-color: rgba(105, 137, 58, 0.1);
}
.page-lodging-dining .section-2 .row .col-right .heading-block {
  background-color: #69893a;
}
@media (min-width: 1280px) {
  .page-lodging-dining .section-2 .row .col-right .text-wrapper {
    padding-top: 2.5rem;
    padding-bottom: 1.5rem;
    padding-left: 2.7083333333rem;
  }
}
@media (min-width: 768px) {
  .page-home .page-header {
    margin-bottom: 1.6666666667rem;
  }
}
.page-home .page-title-wrapper .circle {
  width: 15.1rem;
  height: 8.8166666667rem;
  right: calc(
    -3.7166666667rem + (
        var(--jenkins-container-offset-x) - var(--jenkins-container-gutter-x)
      ) / -2
  );
  padding-right: calc(3.7166666667rem + var(--jenkins-container-offset-x) / 2);
}
@media (min-width: 576px) {
  .page-home .page-title-wrapper .circle {
    width: 18.875rem;
    height: 11.0208333333rem;
    right: calc(
      -4.6458333333rem + (
          var(--jenkins-container-offset-x) - var(--jenkins-container-gutter-x)
        ) / -2
    );
    padding-right: calc(
      4.6458333333rem + var(--jenkins-container-offset-x) / 2
    );
  }
}
@media (min-width: 768px) {
  .page-home .page-title-wrapper .circle {
    width: 20.7625rem;
    height: 12.1229166667rem;
    right: calc(
      -5.1104166667rem + (
          var(--jenkins-container-offset-x) - var(--jenkins-container-gutter-x)
        ) / -2
    );
    padding-right: calc(
      5.1104166667rem + var(--jenkins-container-offset-x) / 2
    );
  }
}
@media (min-width: 1280px) {
  .page-home .page-title-wrapper .circle {
    width: 37.75rem;
    height: 22.0416666667rem;
    right: calc(
      -9.2916666667rem + (
          var(--jenkins-container-offset-x) - var(--jenkins-container-gutter-x)
        ) / -2
    );
    padding-right: calc(
      9.2916666667rem + var(--jenkins-container-offset-x) / 2
    );
  }
}
.page-home .page-title-wrapper .photo-list {
  padding-left: 0;
  list-style: none;
  margin: auto;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
  position: relative;
  z-index: 1;
  top: -1.75rem;
  max-width: 600px;
}
@media (min-width: 576px) {
  .page-home .page-title-wrapper .photo-list {
    top: -2.25rem;
  }
}
@media (min-width: 768px) {
  .page-home .page-title-wrapper .photo-list {
    max-width: none;
    padding-right: 2.8333333333rem;
    top: 1.6666666667rem;
    gap: 2%;
    justify-content: center;
  }
}
@media (min-width: 1280px) {
  .page-home .page-title-wrapper .photo-list {
    gap: 1.1666666667rem;
  }
}
.page-home .page-title-wrapper .photo-list li {
  flex: 0 0 13.625rem;
  max-width: 30%;
}
@media (min-width: 768px) and (max-width: 1279.98px) {
  .page-home .page-title-wrapper .photo-list li {
    max-width: 20%;
  }
}
.page-home .page-title-wrapper .photo-list .photo-frame {
  aspect-ratio: 1;
  padding: 6.4220183486%;
  background-color: #fff;
  border-radius: 50%;
  box-shadow: 0 1px 2px rgba(79, 79, 79, 0.25);
}
@media (min-width: 768px) {
  .page-home .page-title-wrapper .photo-list .photo-frame {
    box-shadow: none;
  }
}
.page-home .page-title-wrapper .photo-list .photo-frame img {
  width: 100%;
  border-radius: 50%;
}
.page-home .section-1 {
  padding-top: 1.6666666667rem;
  padding-bottom: 0.1666666667rem;
  font-weight: 600;
  text-align: center;
  line-height: 1.3333333333;
}
@media (min-width: 992px) {
  .page-home .section-1 {
    --jenkins-container-offset-x: calc(
      var(--jenkins-page-max-width) - var(--jenkins-container-max-width)
    );
  }
}
@media (min-width: 1280px) {
  .page-home .section-1 {
    --jenkins-container-max-width: 1098px;
  }
}
@media (min-width: 1600px) {
  .page-home .section-1 {
    --jenkins-container-max-width: 1373px;
  }
}
@media (min-width: 992px) {
  .page-home .section-2 {
    --jenkins-container-offset-x: calc(
      var(--jenkins-page-max-width) - var(--jenkins-container-max-width)
    );
  }
}
@media (min-width: 1280px) {
  .page-home .section-2 {
    --jenkins-container-max-width: 1333px;
  }
}
@media (min-width: 1600px) {
  .page-home .section-2 {
    --jenkins-container-max-width: 1666px;
  }
}
@media (min-width: 1280px) {
  .page-home .section-2 .row .col-text {
    flex-basis: 44.237695078%;
    max-width: 44.237695078%;
  }
  .page-home .section-2 .row .col-image {
    flex-basis: 51.9207683073%;
    max-width: 51.9207683073%;
  }
  .page-home .section-2 .row .image-wrapper {
    min-height: 15.2916666667rem !important;
  }
}
.page-home .section-3 {
  padding-top: 1.4583333333rem;
  padding-bottom: 3.1666666667rem;
  background-size: 100% 33.676975945%;
}
@media (min-width: 992px) {
  .page-home .section-3 {
    --jenkins-container-offset-x: calc(
      var(--jenkins-page-max-width) - var(--jenkins-container-max-width)
    );
  }
}
@media (min-width: 1280px) {
  .page-home .section-3 {
    --jenkins-container-max-width: 1134px;
  }
}
@media (min-width: 1600px) {
  .page-home .section-3 {
    --jenkins-container-max-width: 1418px;
  }
}
.page-home .section-3 .card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  flex: 13.2916666667rem;
  max-width: 13.2916666667rem;
  height: 13.2916666667rem;
  padding: 0.8333333333rem 0.4166666667rem;
  color: #fff;
  background-color: #10384b;
  border-radius: 1.25rem;
  text-align: center;
}
.page-home .section-3 .card > * {
  margin: 0;
  line-height: 1;
}
.page-home .section-3 .card-title {
  font-size: 1.25rem;
  font-weight: 600;
}
.page-home .section-3 .card-number {
  font-size: 2.0833333333rem;
  font-weight: 700;
}
.page-home .section-3 .card:nth-child(even) {
  background-color: #53789d;
}
.page-home .section-3 .card-jenkins-population img {
  width: 5.3333333333rem;
}
.page-home .section-3 .card-millen-population img {
  width: calc(100% + 0.8333333333rem);
  max-width: none;
  margin-top: 1rem;
}
.page-home .section-3 .card-labor-force img {
  width: 4.5rem;
}
.page-home .section-3 .card-labor-area img {
  width: 5.7916666667rem;
}
.page-home .section-3 .card-income img {
  width: 5.8333333333rem;
}
.page-home .section-3 .card-high-school img {
  width: 5.5833333333rem;
}
.page-home .section-3 .card-college img {
  width: 8rem;
}
.page-home .section-3 .cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.3333333333rem 1.9583333333rem;
}
@media (min-width: 992px) {
  .page-home .section-4 {
    --jenkins-container-offset-x: calc(
      var(--jenkins-page-max-width) - var(--jenkins-container-max-width)
    );
  }
}
@media (min-width: 1280px) {
  .page-home .section-4 {
    --jenkins-container-max-width: 1125px;
  }
}
@media (min-width: 1600px) {
  .page-home .section-4 {
    --jenkins-container-max-width: 1406px;
  }
}
.page-home .section-4 .row {
  padding-top: 2.5rem;
  padding-bottom: 1rem;
  position: relative;
}
.page-home .section-4 .row::before,
.page-home .section-4 .row::after {
  content: '';
  display: block;
  border-top: 1px solid #707070;
  margin-left: calc(var(--jenkins-container-gutter-x) * -0.5);
  margin-right: calc(var(--jenkins-container-gutter-x) * -0.5);
  position: absolute;
  inset: 0;
}
.page-home .section-4 .row::before {
  bottom: auto;
}
.page-home .section-4 .row::after {
  top: auto;
}
@media (min-width: 1280px) {
  .page-home .section-4 .row::before,
  .page-home .section-4 .row::after {
    margin-left: calc(-7.7880512091%);
    margin-right: calc(-7.7880512091%);
  }
  .page-home .section-4 .row .col-left {
    flex-basis: 52.560455192%;
    max-width: 52.560455192%;
  }
  .page-home .section-4 .row .col-right {
    flex-basis: 35.3485064011%;
    max-width: 35.3485064011%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
  }
}
.page-home .section-4 .table {
  font-size: 1.25rem;
  font-weight: 700;
  text-align: center;
  color: #69893a;
}
.page-home .section-4 .table thead {
  color: #fff;
  background-color: #69893a;
}
.page-home .section-4 .table thead tr > * {
  padding-top: 0.4em;
  padding-bottom: 0.4em;
}
.page-home .section-4 .table tbody tr:nth-child(odd) > * {
  padding-top: 0.1em;
  padding-bottom: 0.1em;
  background-color: #d1e7ff;
}
.page-home .section-4 .table-wrapper {
  max-width: 20.7083333333rem;
  color: #000407;
}
@media (min-width: 1280px) {
  .page-home .section-4 .table-wrapper {
    max-width: 100%;
  }
}
.page-home .section-4 .table-wrapper img {
  display: block;
  width: 80.8853118712%;
  margin: 0 auto -0.125rem;
}
.page-home .section-5 {
  padding-top: 2.6666666667rem;
  padding-bottom: 1.25rem;
}
@media (min-width: 992px) {
  .page-home .section-5 {
    --jenkins-container-offset-x: calc(
      var(--jenkins-page-max-width) - var(--jenkins-container-max-width)
    );
  }
}
@media (min-width: 1280px) {
  .page-home .section-5 {
    --jenkins-container-max-width: 1301px;
  }
}
@media (min-width: 1600px) {
  .page-home .section-5 {
    --jenkins-container-max-width: 1626px;
  }
}
@media (min-width: 1280px) {
  .page-home .section-5 .row .col-left {
    flex-basis: 39.4833948339%;
    max-width: 39.4833948339%;
    padding-top: 2.2916666667rem;
  }
  .page-home .section-5 .row .col-right {
    flex-basis: 56.4575645756%;
    max-width: 56.4575645756%;
  }
}
.page-home .section-5 .image-wrapper {
  margin-bottom: 1.5rem;
}
@media (min-width: 1280px) {
  .page-home .section-5 .image-wrapper {
    height: calc(100% - 1.5rem - 1.875rem);
  }
  .page-home .section-5 .image-wrapper img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
  }
}
.page-home .section-5 .table {
  line-height: 1.2;
  color: #10384b;
}
@media (min-width: 768px) {
  .page-home .section-5 .table {
    font-size: 1.25rem;
  }
}
.page-home .section-5 .table tr > * {
  padding: 0.5666666667em 0.25em;
}
.page-home .section-5 .table tr > *:first-child {
  padding-left: 0.9em;
}
.page-home .section-5 .table tr > *:not(:first-child) {
  text-align: center;
  width: 22.7668845316%;
}
.page-home .section-5 .table thead tr > * {
  padding-top: 0;
}
.page-home .section-5 .table thead tr > *:nth-child(3) {
  color: #4f4f4f;
}
.page-home .section-5 .table thead tr > * > * {
  white-space: nowrap;
  margin: 0 -0.5em;
}
.page-home .section-5 .table tbody {
  border-top: 2px solid #000407;
  border-bottom: 2px solid #000407;
}
.page-home .section-5 .table tbody tr > *:nth-child(2) {
  font-weight: 600;
  color: #fff;
  background-color: #10384b;
}
.page-home .section-5 .table tbody tr > *:nth-child(3) {
  background-color: #d1e7ff;
}
.page-home .section-5 .table tbody tr:not(:first-child) > * {
  border-top: 1px solid #000407;
}
.page-home .section-5 .table-wrapper {
  max-width: 38.25rem;
  color: #000407;
}
@media (min-width: 1280px) {
  .page-home .section-5 .table-wrapper {
    max-width: 100%;
  }
}
.page-home .section-6 {
  padding-bottom: 3.125rem;
}
@media (min-width: 992px) {
  .page-home .section-6 {
    --jenkins-container-offset-x: calc(
      var(--jenkins-page-max-width) - var(--jenkins-container-max-width)
    );
  }
}
@media (min-width: 1280px) {
  .page-home .section-6 {
    --jenkins-container-max-width: 1301px;
  }
}
@media (min-width: 1600px) {
  .page-home .section-6 {
    --jenkins-container-max-width: 1626px;
  }
}
@media (min-width: 1280px) {
  .page-home .section-6 {
    padding-bottom: 0;
  }
}
@media (min-width: 1280px) {
  .page-home .section-6 .row .col-left {
    flex-basis: 38.3763837638%;
    max-width: 38.3763837638%;
  }
  .page-home .section-6 .row .col-right {
    flex-basis: 59.0405904059%;
    max-width: 59.0405904059%;
  }
}
.page-home .section-6 .highlight-box {
  max-width: none;
  height: calc(100% - 1.5rem);
  padding-top: 1rem;
}
@media (min-width: 1280px) {
  .page-home .section-6 .highlight-box {
    padding: 3.8541666667%;
    padding-left: 10%;
  }
}
.page-home .section-6 .highlight-box img {
  width: 22.75rem;
  margin-bottom: 1rem;
}
.page-home .section-6 .highlight-box .list-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 0 3.125rem;
}
.page-home .section-6 .highlight-box .list-contact > * {
  flex: 0 1 12.9166666667rem;
}
.page-home .section-6 .events-box {
  height: calc(100% - 1.5rem);
  margin-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
}
.page-home .section-6 .events-box > * {
  border: 1px solid #707070;
}
.page-home .section-6 .events-box-head {
  margin: 0;
  padding: 0.8333333333rem;
  font-size: 2.0833333333rem;
  line-height: 1;
  font-weight: 700;
  text-align: center;
  color: #fff;
  background-color: #69893a;
}
.page-home .section-6 .events-box-body {
  flex-grow: 1;
  padding: 1.5833333333rem 1.7083333333rem;
  padding-right: 2.0416666667rem;
  padding-bottom: 2.0833333333rem;
  font-size: 1.0416666667rem;
  line-height: 1.32;
  position: relative;
}
.page-home .section-6 .events-list {
  padding-left: 0;
  list-style: none;
  margin: 0;
}
.page-home .section-6 .events-title {
  font-size: 1.25rem;
  font-weight: 400;
  /* color: #69893a; */
}

.page-home .section-6 .events-title strong {
  color: #69893a;
}

.page-home .section-6 .events-more {
  width: 4.1666666667rem;
  padding-bottom: 1.25rem;
  font-size: 0.9166666667rem;
  font-weight: 400;
  line-height: 1;
  text-decoration: none !important;
  text-align: center;
  color: #000407;
  position: absolute;
  left: calc(50% - 2.0833333333rem);
  bottom: 0.5833333333rem;
}
.page-home .section-6 .events-more::before {
  content: '';
  display: block;
  border: 0 solid rgba(0, 0, 0, 0);
  border-width: 0.9583333333rem 0.6458333333rem 0;
  border-top-color: #4f4f4f;
  position: absolute;
  left: calc(50% - 0.6458333333rem);
  bottom: 0;
}

.page-jenkins-county-registrar .news-box a {
  text-transform: capitalize;
  font-size: 18px;
  font-weight: 600;
}

.page-jenkins-county-registrar .news-box h3 {
  padding-top: 10px;
  font-size: 24px;
  font-weight: 700;
}

.news-box-body {
  height: 700px;
  overflow-y: auto;
}

.page-home .section-6 .events-title {
  border-bottom: solid black 1px;
  padding-bottom: 15px;
}

.map-box {
  display: flex;
  gap: 20px;
  list-style-type: none;
  padding-left: 0;
}

.map-box li {
  width: 33.33%;
}

.map-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  cursor: pointer;
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.modal-img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 5px;
}

.modal-close {
  position: absolute;
  top: 10px;
  right: 15px;
  color: #fff;
  font-size: 30px;
  cursor: pointer;
}

.modal-close:hover {
  color: #ccc;
}
