/*
 * Stylesheet : Elbert County Board of Commissioners
 * Created    : August 2023
 * -----------------------------------------------------------------------------------
 */
@import url('https://fonts.googleapis.com/css2?family=Crimson+Text:ital,wght@0,400;0,700;1,400;1,700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Bitter:ital,wght@0,700;1,700&display=swap');
@import url('../fonts/SourceSansPro.css');
@import url('../fonts/SegoeUI.css');
@import url('../fonts/ProximaNova.css');
:root {
  --elbertga-white: #fff;
  --elbertga-black: #000;
  --elbertga-blue: #003e77;
  --elbertga-blue-light: #007dc4;
  --elbertga-gray: #707070;
  --elbertga-white-rgb: 255, 255, 255;
  --elbertga-black-rgb: 0, 0, 0;
  --elbertga-body-color-rgb: 112, 112, 112;
  --elbertga-body-bg-rgb: 255, 255, 255;
  --elbertga-font-sans-serif: 'Source Sans Pro', sans-serif;
  --elbertga-font-monospace: SFMono-Regular, Menlo, Monaco, Consolas,
    'Liberation Mono', 'Courier New', monospace;
  --elbertga-gradient: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.15),
    rgba(255, 255, 255, 0)
  );
  --elbertga-root-font-size: 18px;
  --elbertga-body-font-family: Source Sans Pro, sans-serif;
  --elbertga-body-font-size: 1rem;
  --elbertga-body-font-weight: 400;
  --elbertga-body-line-height: 1.55;
  --elbertga-body-color: #707070;
  --elbertga-body-bg: #fff;
  --elbertga-border-width: 1px;
  --elbertga-border-style: solid;
  --elbertga-border-color: #dee2e6;
  --elbertga-border-color-translucent: rgba(0, 0, 0, 0.175);
  --elbertga-border-radius: 0.375rem;
  --elbertga-border-radius-sm: 0.25rem;
  --elbertga-border-radius-lg: 0.5rem;
  --elbertga-border-radius-xl: 1rem;
  --elbertga-border-radius-2xl: 2rem;
  --elbertga-border-radius-pill: 50rem;
  --elbertga-link-color: #003e77;
  --elbertga-link-hover-color: #00325f;
  --elbertga-code-color: #d63384;
  --elbertga-highlight-bg: #fff3cd;
}

*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

:root {
  font-size: var(--elbertga-root-font-size);
}

@media (prefers-reduced-motion: no-preference) {
  :root {
    scroll-behavior: smooth;
  }
}

body {
  margin: 0;
  font-family: var(--elbertga-body-font-family);
  font-size: var(--elbertga-body-font-size);
  font-weight: var(--elbertga-body-font-weight);
  line-height: var(--elbertga-body-line-height);
  color: var(--elbertga-body-color);
  text-align: var(--elbertga-body-text-align);
  background-color: var(--elbertga-body-bg);
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

hr {
  margin: 1rem 0;
  color: inherit;
  border: 0;
  border-top: 1px solid;
  opacity: 0.25;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-top: 0;
  margin-bottom: 0.5rem;
  font-weight: 600;
  line-height: 1.2;
}

h1 {
  font-size: calc(1.375rem + 1.5vw);
}

@media (min-width: 1200px) {
  h1 {
    font-size: 2.5rem;
  }
}

h2 {
  font-size: calc(1.325rem + 0.9vw);
}

@media (min-width: 1200px) {
  h2 {
    font-size: 2rem;
  }
}

h3 {
  font-size: calc(1.3rem + 0.6vw);
}

@media (min-width: 1200px) {
  h3 {
    font-size: 1.75rem;
  }
}

h4 {
  font-size: calc(1.275rem + 0.3vw);
}

@media (min-width: 1200px) {
  h4 {
    font-size: 1.5rem;
  }
}

h5 {
  font-size: 1.25rem;
}

h6 {
  font-size: 1rem;
}

p {
  margin-top: 0;
  margin-bottom: 1rem;
}

abbr[title] {
  -webkit-text-decoration: underline dotted;
  text-decoration: underline dotted;
  cursor: help;
  text-decoration-skip-ink: none;
}

address {
  margin-bottom: 1rem;
  font-style: normal;
  line-height: inherit;
}

ol,
ul {
  padding-left: 2rem;
}

ol,
ul,
dl {
  margin-top: 0;
  margin-bottom: 1rem;
}

ol ol,
ul ul,
ol ul,
ul ol {
  margin-bottom: 0;
}

dt {
  font-weight: 700;
}

dd {
  margin-bottom: 0.5rem;
  margin-left: 0;
}

blockquote {
  margin: 0 0 1rem;
}

b,
strong {
  font-weight: bolder;
}

small {
  font-size: 0.875em;
}

mark {
  padding: 0.1875em;
  background-color: var(--elbertga-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(--elbertga-link-color);
  text-decoration: underline;
}

a:hover {
  color: var(--elbertga-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(--elbertga-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(--elbertga-code-color);
  word-wrap: break-word;
}

a > code {
  color: inherit;
}

kbd {
  padding: 0.1875rem 0.375rem;
  font-size: 0.875em;
  color: var(--elbertga-body-bg);
  background-color: var(--elbertga-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;
}

/* rtl:raw:
[type="tel"],
[type="url"],
[type="email"],
[type="number"] {
  direction: ltr;
}
*/
::-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;
}

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

.color-white {
  color: #fff !important;
}

.color-black {
  color: #000 !important;
}

.color-blue {
  color: #003e77 !important;
}

.color-blue-light {
  color: #007dc4 !important;
}

.color-gray {
  color: #707070 !important;
}

.color-body {
  color: #707070 !important;
}

.color-reset {
  color: inherit !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;
}

.text-italic {
  font-style: italic !important;
}

.text-not-italic {
  font-style: normal !important;
}

.font-bold {
  font-weight: 700 !important;
}

.font-semibold {
  font-weight: 600 !important;
}

.font-normal {
  font-weight: 400 !important;
}

.font-reset {
  font-weight: 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;
}

.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;
  }
  .m-sm-0 {
    margin: 0 !important;
  }
  .m-sm-1 {
    margin: 0.25rem !important;
  }
  .m-sm-2 {
    margin: 0.5rem !important;
  }
  .m-sm-3 {
    margin: 1rem !important;
  }
  .m-sm-4 {
    margin: 1.5rem !important;
  }
  .m-sm-5 {
    margin: 3rem !important;
  }
  .m-sm-auto {
    margin: auto !important;
  }
  .mx-sm-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .mx-sm-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }
  .mx-sm-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }
  .mx-sm-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  .mx-sm-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }
  .mx-sm-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
  .mx-sm-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }
  .my-sm-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .my-sm-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
  .my-sm-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .my-sm-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .my-sm-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .my-sm-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .my-sm-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .mt-sm-0 {
    margin-top: 0 !important;
  }
  .mt-sm-1 {
    margin-top: 0.25rem !important;
  }
  .mt-sm-2 {
    margin-top: 0.5rem !important;
  }
  .mt-sm-3 {
    margin-top: 1rem !important;
  }
  .mt-sm-4 {
    margin-top: 1.5rem !important;
  }
  .mt-sm-5 {
    margin-top: 3rem !important;
  }
  .mt-sm-auto {
    margin-top: auto !important;
  }
  .mr-sm-0 {
    margin-right: 0 !important;
  }
  .mr-sm-1 {
    margin-right: 0.25rem !important;
  }
  .mr-sm-2 {
    margin-right: 0.5rem !important;
  }
  .mr-sm-3 {
    margin-right: 1rem !important;
  }
  .mr-sm-4 {
    margin-right: 1.5rem !important;
  }
  .mr-sm-5 {
    margin-right: 3rem !important;
  }
  .mr-sm-auto {
    margin-right: auto !important;
  }
  .mb-sm-0 {
    margin-bottom: 0 !important;
  }
  .mb-sm-1 {
    margin-bottom: 0.25rem !important;
  }
  .mb-sm-2 {
    margin-bottom: 0.5rem !important;
  }
  .mb-sm-3 {
    margin-bottom: 1rem !important;
  }
  .mb-sm-4 {
    margin-bottom: 1.5rem !important;
  }
  .mb-sm-5 {
    margin-bottom: 3rem !important;
  }
  .mb-sm-auto {
    margin-bottom: auto !important;
  }
  .ml-sm-0 {
    margin-left: 0 !important;
  }
  .ml-sm-1 {
    margin-left: 0.25rem !important;
  }
  .ml-sm-2 {
    margin-left: 0.5rem !important;
  }
  .ml-sm-3 {
    margin-left: 1rem !important;
  }
  .ml-sm-4 {
    margin-left: 1.5rem !important;
  }
  .ml-sm-5 {
    margin-left: 3rem !important;
  }
  .ml-sm-auto {
    margin-left: auto !important;
  }
  .p-sm-0 {
    padding: 0 !important;
  }
  .p-sm-1 {
    padding: 0.25rem !important;
  }
  .p-sm-2 {
    padding: 0.5rem !important;
  }
  .p-sm-3 {
    padding: 1rem !important;
  }
  .p-sm-4 {
    padding: 1.5rem !important;
  }
  .p-sm-5 {
    padding: 3rem !important;
  }
  .px-sm-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .px-sm-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }
  .px-sm-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  .px-sm-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  .px-sm-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }
  .px-sm-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
  .py-sm-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .py-sm-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
  .py-sm-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .py-sm-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .py-sm-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .py-sm-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .pt-sm-0 {
    padding-top: 0 !important;
  }
  .pt-sm-1 {
    padding-top: 0.25rem !important;
  }
  .pt-sm-2 {
    padding-top: 0.5rem !important;
  }
  .pt-sm-3 {
    padding-top: 1rem !important;
  }
  .pt-sm-4 {
    padding-top: 1.5rem !important;
  }
  .pt-sm-5 {
    padding-top: 3rem !important;
  }
  .pr-sm-0 {
    padding-right: 0 !important;
  }
  .pr-sm-1 {
    padding-right: 0.25rem !important;
  }
  .pr-sm-2 {
    padding-right: 0.5rem !important;
  }
  .pr-sm-3 {
    padding-right: 1rem !important;
  }
  .pr-sm-4 {
    padding-right: 1.5rem !important;
  }
  .pr-sm-5 {
    padding-right: 3rem !important;
  }
  .pb-sm-0 {
    padding-bottom: 0 !important;
  }
  .pb-sm-1 {
    padding-bottom: 0.25rem !important;
  }
  .pb-sm-2 {
    padding-bottom: 0.5rem !important;
  }
  .pb-sm-3 {
    padding-bottom: 1rem !important;
  }
  .pb-sm-4 {
    padding-bottom: 1.5rem !important;
  }
  .pb-sm-5 {
    padding-bottom: 3rem !important;
  }
  .pl-sm-0 {
    padding-left: 0 !important;
  }
  .pl-sm-1 {
    padding-left: 0.25rem !important;
  }
  .pl-sm-2 {
    padding-left: 0.5rem !important;
  }
  .pl-sm-3 {
    padding-left: 1rem !important;
  }
  .pl-sm-4 {
    padding-left: 1.5rem !important;
  }
  .pl-sm-5 {
    padding-left: 3rem !important;
  }
}

@media (min-width: 768px) {
  .d-md-none {
    display: none !important;
  }
  .d-md-block {
    display: block !important;
  }
  .d-md-inline-block {
    display: inline-block !important;
  }
  .d-md-inherit {
    display: inherit !important;
  }
  .d-md-reset {
    display: initial !important;
  }
  .m-md-0 {
    margin: 0 !important;
  }
  .m-md-1 {
    margin: 0.25rem !important;
  }
  .m-md-2 {
    margin: 0.5rem !important;
  }
  .m-md-3 {
    margin: 1rem !important;
  }
  .m-md-4 {
    margin: 1.5rem !important;
  }
  .m-md-5 {
    margin: 3rem !important;
  }
  .m-md-auto {
    margin: auto !important;
  }
  .mx-md-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .mx-md-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }
  .mx-md-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }
  .mx-md-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  .mx-md-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }
  .mx-md-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
  .mx-md-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }
  .my-md-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .my-md-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
  .my-md-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .my-md-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .my-md-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .my-md-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .my-md-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .mt-md-0 {
    margin-top: 0 !important;
  }
  .mt-md-1 {
    margin-top: 0.25rem !important;
  }
  .mt-md-2 {
    margin-top: 0.5rem !important;
  }
  .mt-md-3 {
    margin-top: 1rem !important;
  }
  .mt-md-4 {
    margin-top: 1.5rem !important;
  }
  .mt-md-5 {
    margin-top: 3rem !important;
  }
  .mt-md-auto {
    margin-top: auto !important;
  }
  .mr-md-0 {
    margin-right: 0 !important;
  }
  .mr-md-1 {
    margin-right: 0.25rem !important;
  }
  .mr-md-2 {
    margin-right: 0.5rem !important;
  }
  .mr-md-3 {
    margin-right: 1rem !important;
  }
  .mr-md-4 {
    margin-right: 1.5rem !important;
  }
  .mr-md-5 {
    margin-right: 3rem !important;
  }
  .mr-md-auto {
    margin-right: auto !important;
  }
  .mb-md-0 {
    margin-bottom: 0 !important;
  }
  .mb-md-1 {
    margin-bottom: 0.25rem !important;
  }
  .mb-md-2 {
    margin-bottom: 0.5rem !important;
  }
  .mb-md-3 {
    margin-bottom: 1rem !important;
  }
  .mb-md-4 {
    margin-bottom: 1.5rem !important;
  }
  .mb-md-5 {
    margin-bottom: 3rem !important;
  }
  .mb-md-auto {
    margin-bottom: auto !important;
  }
  .ml-md-0 {
    margin-left: 0 !important;
  }
  .ml-md-1 {
    margin-left: 0.25rem !important;
  }
  .ml-md-2 {
    margin-left: 0.5rem !important;
  }
  .ml-md-3 {
    margin-left: 1rem !important;
  }
  .ml-md-4 {
    margin-left: 1.5rem !important;
  }
  .ml-md-5 {
    margin-left: 3rem !important;
  }
  .ml-md-auto {
    margin-left: auto !important;
  }
  .p-md-0 {
    padding: 0 !important;
  }
  .p-md-1 {
    padding: 0.25rem !important;
  }
  .p-md-2 {
    padding: 0.5rem !important;
  }
  .p-md-3 {
    padding: 1rem !important;
  }
  .p-md-4 {
    padding: 1.5rem !important;
  }
  .p-md-5 {
    padding: 3rem !important;
  }
  .px-md-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .px-md-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }
  .px-md-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  .px-md-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  .px-md-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }
  .px-md-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
  .py-md-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .py-md-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
  .py-md-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .py-md-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .py-md-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .py-md-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .pt-md-0 {
    padding-top: 0 !important;
  }
  .pt-md-1 {
    padding-top: 0.25rem !important;
  }
  .pt-md-2 {
    padding-top: 0.5rem !important;
  }
  .pt-md-3 {
    padding-top: 1rem !important;
  }
  .pt-md-4 {
    padding-top: 1.5rem !important;
  }
  .pt-md-5 {
    padding-top: 3rem !important;
  }
  .pr-md-0 {
    padding-right: 0 !important;
  }
  .pr-md-1 {
    padding-right: 0.25rem !important;
  }
  .pr-md-2 {
    padding-right: 0.5rem !important;
  }
  .pr-md-3 {
    padding-right: 1rem !important;
  }
  .pr-md-4 {
    padding-right: 1.5rem !important;
  }
  .pr-md-5 {
    padding-right: 3rem !important;
  }
  .pb-md-0 {
    padding-bottom: 0 !important;
  }
  .pb-md-1 {
    padding-bottom: 0.25rem !important;
  }
  .pb-md-2 {
    padding-bottom: 0.5rem !important;
  }
  .pb-md-3 {
    padding-bottom: 1rem !important;
  }
  .pb-md-4 {
    padding-bottom: 1.5rem !important;
  }
  .pb-md-5 {
    padding-bottom: 3rem !important;
  }
  .pl-md-0 {
    padding-left: 0 !important;
  }
  .pl-md-1 {
    padding-left: 0.25rem !important;
  }
  .pl-md-2 {
    padding-left: 0.5rem !important;
  }
  .pl-md-3 {
    padding-left: 1rem !important;
  }
  .pl-md-4 {
    padding-left: 1.5rem !important;
  }
  .pl-md-5 {
    padding-left: 3rem !important;
  }
}

@media (min-width: 992px) {
  .d-lg-none {
    display: none !important;
  }
  .d-lg-block {
    display: block !important;
  }
  .d-lg-inline-block {
    display: inline-block !important;
  }
  .d-lg-inherit {
    display: inherit !important;
  }
  .d-lg-reset {
    display: initial !important;
  }
  .m-lg-0 {
    margin: 0 !important;
  }
  .m-lg-1 {
    margin: 0.25rem !important;
  }
  .m-lg-2 {
    margin: 0.5rem !important;
  }
  .m-lg-3 {
    margin: 1rem !important;
  }
  .m-lg-4 {
    margin: 1.5rem !important;
  }
  .m-lg-5 {
    margin: 3rem !important;
  }
  .m-lg-auto {
    margin: auto !important;
  }
  .mx-lg-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .mx-lg-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }
  .mx-lg-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }
  .mx-lg-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  .mx-lg-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }
  .mx-lg-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
  .mx-lg-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }
  .my-lg-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .my-lg-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
  .my-lg-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .my-lg-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .my-lg-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .my-lg-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .my-lg-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .mt-lg-0 {
    margin-top: 0 !important;
  }
  .mt-lg-1 {
    margin-top: 0.25rem !important;
  }
  .mt-lg-2 {
    margin-top: 0.5rem !important;
  }
  .mt-lg-3 {
    margin-top: 1rem !important;
  }
  .mt-lg-4 {
    margin-top: 1.5rem !important;
  }
  .mt-lg-5 {
    margin-top: 3rem !important;
  }
  .mt-lg-auto {
    margin-top: auto !important;
  }
  .mr-lg-0 {
    margin-right: 0 !important;
  }
  .mr-lg-1 {
    margin-right: 0.25rem !important;
  }
  .mr-lg-2 {
    margin-right: 0.5rem !important;
  }
  .mr-lg-3 {
    margin-right: 1rem !important;
  }
  .mr-lg-4 {
    margin-right: 1.5rem !important;
  }
  .mr-lg-5 {
    margin-right: 3rem !important;
  }
  .mr-lg-auto {
    margin-right: auto !important;
  }
  .mb-lg-0 {
    margin-bottom: 0 !important;
  }
  .mb-lg-1 {
    margin-bottom: 0.25rem !important;
  }
  .mb-lg-2 {
    margin-bottom: 0.5rem !important;
  }
  .mb-lg-3 {
    margin-bottom: 1rem !important;
  }
  .mb-lg-4 {
    margin-bottom: 1.5rem !important;
  }
  .mb-lg-5 {
    margin-bottom: 3rem !important;
  }
  .mb-lg-auto {
    margin-bottom: auto !important;
  }
  .ml-lg-0 {
    margin-left: 0 !important;
  }
  .ml-lg-1 {
    margin-left: 0.25rem !important;
  }
  .ml-lg-2 {
    margin-left: 0.5rem !important;
  }
  .ml-lg-3 {
    margin-left: 1rem !important;
  }
  .ml-lg-4 {
    margin-left: 1.5rem !important;
  }
  .ml-lg-5 {
    margin-left: 3rem !important;
  }
  .ml-lg-auto {
    margin-left: auto !important;
  }
  .p-lg-0 {
    padding: 0 !important;
  }
  .p-lg-1 {
    padding: 0.25rem !important;
  }
  .p-lg-2 {
    padding: 0.5rem !important;
  }
  .p-lg-3 {
    padding: 1rem !important;
  }
  .p-lg-4 {
    padding: 1.5rem !important;
  }
  .p-lg-5 {
    padding: 3rem !important;
  }
  .px-lg-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .px-lg-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }
  .px-lg-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  .px-lg-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  .px-lg-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }
  .px-lg-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
  .py-lg-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .py-lg-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
  .py-lg-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .py-lg-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .py-lg-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .py-lg-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .pt-lg-0 {
    padding-top: 0 !important;
  }
  .pt-lg-1 {
    padding-top: 0.25rem !important;
  }
  .pt-lg-2 {
    padding-top: 0.5rem !important;
  }
  .pt-lg-3 {
    padding-top: 1rem !important;
  }
  .pt-lg-4 {
    padding-top: 1.5rem !important;
  }
  .pt-lg-5 {
    padding-top: 3rem !important;
  }
  .pr-lg-0 {
    padding-right: 0 !important;
  }
  .pr-lg-1 {
    padding-right: 0.25rem !important;
  }
  .pr-lg-2 {
    padding-right: 0.5rem !important;
  }
  .pr-lg-3 {
    padding-right: 1rem !important;
  }
  .pr-lg-4 {
    padding-right: 1.5rem !important;
  }
  .pr-lg-5 {
    padding-right: 3rem !important;
  }
  .pb-lg-0 {
    padding-bottom: 0 !important;
  }
  .pb-lg-1 {
    padding-bottom: 0.25rem !important;
  }
  .pb-lg-2 {
    padding-bottom: 0.5rem !important;
  }
  .pb-lg-3 {
    padding-bottom: 1rem !important;
  }
  .pb-lg-4 {
    padding-bottom: 1.5rem !important;
  }
  .pb-lg-5 {
    padding-bottom: 3rem !important;
  }
  .pl-lg-0 {
    padding-left: 0 !important;
  }
  .pl-lg-1 {
    padding-left: 0.25rem !important;
  }
  .pl-lg-2 {
    padding-left: 0.5rem !important;
  }
  .pl-lg-3 {
    padding-left: 1rem !important;
  }
  .pl-lg-4 {
    padding-left: 1.5rem !important;
  }
  .pl-lg-5 {
    padding-left: 3rem !important;
  }
}

@media (min-width: 1280px) {
  .d-xl-none {
    display: none !important;
  }
  .d-xl-block {
    display: block !important;
  }
  .d-xl-inline-block {
    display: inline-block !important;
  }
  .d-xl-inherit {
    display: inherit !important;
  }
  .d-xl-reset {
    display: initial !important;
  }
  .m-xl-0 {
    margin: 0 !important;
  }
  .m-xl-1 {
    margin: 0.25rem !important;
  }
  .m-xl-2 {
    margin: 0.5rem !important;
  }
  .m-xl-3 {
    margin: 1rem !important;
  }
  .m-xl-4 {
    margin: 1.5rem !important;
  }
  .m-xl-5 {
    margin: 3rem !important;
  }
  .m-xl-auto {
    margin: auto !important;
  }
  .mx-xl-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .mx-xl-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }
  .mx-xl-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }
  .mx-xl-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  .mx-xl-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }
  .mx-xl-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
  .mx-xl-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }
  .my-xl-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .my-xl-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
  .my-xl-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .my-xl-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .my-xl-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .my-xl-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .my-xl-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .mt-xl-0 {
    margin-top: 0 !important;
  }
  .mt-xl-1 {
    margin-top: 0.25rem !important;
  }
  .mt-xl-2 {
    margin-top: 0.5rem !important;
  }
  .mt-xl-3 {
    margin-top: 1rem !important;
  }
  .mt-xl-4 {
    margin-top: 1.5rem !important;
  }
  .mt-xl-5 {
    margin-top: 3rem !important;
  }
  .mt-xl-auto {
    margin-top: auto !important;
  }
  .mr-xl-0 {
    margin-right: 0 !important;
  }
  .mr-xl-1 {
    margin-right: 0.25rem !important;
  }
  .mr-xl-2 {
    margin-right: 0.5rem !important;
  }
  .mr-xl-3 {
    margin-right: 1rem !important;
  }
  .mr-xl-4 {
    margin-right: 1.5rem !important;
  }
  .mr-xl-5 {
    margin-right: 3rem !important;
  }
  .mr-xl-auto {
    margin-right: auto !important;
  }
  .mb-xl-0 {
    margin-bottom: 0 !important;
  }
  .mb-xl-1 {
    margin-bottom: 0.25rem !important;
  }
  .mb-xl-2 {
    margin-bottom: 0.5rem !important;
  }
  .mb-xl-3 {
    margin-bottom: 1rem !important;
  }
  .mb-xl-4 {
    margin-bottom: 1.5rem !important;
  }
  .mb-xl-5 {
    margin-bottom: 3rem !important;
  }
  .mb-xl-auto {
    margin-bottom: auto !important;
  }
  .ml-xl-0 {
    margin-left: 0 !important;
  }
  .ml-xl-1 {
    margin-left: 0.25rem !important;
  }
  .ml-xl-2 {
    margin-left: 0.5rem !important;
  }
  .ml-xl-3 {
    margin-left: 1rem !important;
  }
  .ml-xl-4 {
    margin-left: 1.5rem !important;
  }
  .ml-xl-5 {
    margin-left: 3rem !important;
  }
  .ml-xl-auto {
    margin-left: auto !important;
  }
  .p-xl-0 {
    padding: 0 !important;
  }
  .p-xl-1 {
    padding: 0.25rem !important;
  }
  .p-xl-2 {
    padding: 0.5rem !important;
  }
  .p-xl-3 {
    padding: 1rem !important;
  }
  .p-xl-4 {
    padding: 1.5rem !important;
  }
  .p-xl-5 {
    padding: 3rem !important;
  }
  .px-xl-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .px-xl-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }
  .px-xl-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  .px-xl-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  .px-xl-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }
  .px-xl-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
  .py-xl-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .py-xl-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
  .py-xl-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .py-xl-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .py-xl-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .py-xl-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .pt-xl-0 {
    padding-top: 0 !important;
  }
  .pt-xl-1 {
    padding-top: 0.25rem !important;
  }
  .pt-xl-2 {
    padding-top: 0.5rem !important;
  }
  .pt-xl-3 {
    padding-top: 1rem !important;
  }
  .pt-xl-4 {
    padding-top: 1.5rem !important;
  }
  .pt-xl-5 {
    padding-top: 3rem !important;
  }
  .pr-xl-0 {
    padding-right: 0 !important;
  }
  .pr-xl-1 {
    padding-right: 0.25rem !important;
  }
  .pr-xl-2 {
    padding-right: 0.5rem !important;
  }
  .pr-xl-3 {
    padding-right: 1rem !important;
  }
  .pr-xl-4 {
    padding-right: 1.5rem !important;
  }
  .pr-xl-5 {
    padding-right: 3rem !important;
  }
  .pb-xl-0 {
    padding-bottom: 0 !important;
  }
  .pb-xl-1 {
    padding-bottom: 0.25rem !important;
  }
  .pb-xl-2 {
    padding-bottom: 0.5rem !important;
  }
  .pb-xl-3 {
    padding-bottom: 1rem !important;
  }
  .pb-xl-4 {
    padding-bottom: 1.5rem !important;
  }
  .pb-xl-5 {
    padding-bottom: 3rem !important;
  }
  .pl-xl-0 {
    padding-left: 0 !important;
  }
  .pl-xl-1 {
    padding-left: 0.25rem !important;
  }
  .pl-xl-2 {
    padding-left: 0.5rem !important;
  }
  .pl-xl-3 {
    padding-left: 1rem !important;
  }
  .pl-xl-4 {
    padding-left: 1.5rem !important;
  }
  .pl-xl-5 {
    padding-left: 3rem !important;
  }
}

@media (min-width: 1600px) {
  .d-xxl-none {
    display: none !important;
  }
  .d-xxl-block {
    display: block !important;
  }
  .d-xxl-inline-block {
    display: inline-block !important;
  }
  .d-xxl-inherit {
    display: inherit !important;
  }
  .d-xxl-reset {
    display: initial !important;
  }
  .m-xxl-0 {
    margin: 0 !important;
  }
  .m-xxl-1 {
    margin: 0.25rem !important;
  }
  .m-xxl-2 {
    margin: 0.5rem !important;
  }
  .m-xxl-3 {
    margin: 1rem !important;
  }
  .m-xxl-4 {
    margin: 1.5rem !important;
  }
  .m-xxl-5 {
    margin: 3rem !important;
  }
  .m-xxl-auto {
    margin: auto !important;
  }
  .mx-xxl-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .mx-xxl-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }
  .mx-xxl-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }
  .mx-xxl-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  .mx-xxl-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }
  .mx-xxl-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
  .mx-xxl-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }
  .my-xxl-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .my-xxl-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
  .my-xxl-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .my-xxl-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .my-xxl-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .my-xxl-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .my-xxl-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .mt-xxl-0 {
    margin-top: 0 !important;
  }
  .mt-xxl-1 {
    margin-top: 0.25rem !important;
  }
  .mt-xxl-2 {
    margin-top: 0.5rem !important;
  }
  .mt-xxl-3 {
    margin-top: 1rem !important;
  }
  .mt-xxl-4 {
    margin-top: 1.5rem !important;
  }
  .mt-xxl-5 {
    margin-top: 3rem !important;
  }
  .mt-xxl-auto {
    margin-top: auto !important;
  }
  .mr-xxl-0 {
    margin-right: 0 !important;
  }
  .mr-xxl-1 {
    margin-right: 0.25rem !important;
  }
  .mr-xxl-2 {
    margin-right: 0.5rem !important;
  }
  .mr-xxl-3 {
    margin-right: 1rem !important;
  }
  .mr-xxl-4 {
    margin-right: 1.5rem !important;
  }
  .mr-xxl-5 {
    margin-right: 3rem !important;
  }
  .mr-xxl-auto {
    margin-right: auto !important;
  }
  .mb-xxl-0 {
    margin-bottom: 0 !important;
  }
  .mb-xxl-1 {
    margin-bottom: 0.25rem !important;
  }
  .mb-xxl-2 {
    margin-bottom: 0.5rem !important;
  }
  .mb-xxl-3 {
    margin-bottom: 1rem !important;
  }
  .mb-xxl-4 {
    margin-bottom: 1.5rem !important;
  }
  .mb-xxl-5 {
    margin-bottom: 3rem !important;
  }
  .mb-xxl-auto {
    margin-bottom: auto !important;
  }
  .ml-xxl-0 {
    margin-left: 0 !important;
  }
  .ml-xxl-1 {
    margin-left: 0.25rem !important;
  }
  .ml-xxl-2 {
    margin-left: 0.5rem !important;
  }
  .ml-xxl-3 {
    margin-left: 1rem !important;
  }
  .ml-xxl-4 {
    margin-left: 1.5rem !important;
  }
  .ml-xxl-5 {
    margin-left: 3rem !important;
  }
  .ml-xxl-auto {
    margin-left: auto !important;
  }
  .p-xxl-0 {
    padding: 0 !important;
  }
  .p-xxl-1 {
    padding: 0.25rem !important;
  }
  .p-xxl-2 {
    padding: 0.5rem !important;
  }
  .p-xxl-3 {
    padding: 1rem !important;
  }
  .p-xxl-4 {
    padding: 1.5rem !important;
  }
  .p-xxl-5 {
    padding: 3rem !important;
  }
  .px-xxl-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .px-xxl-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }
  .px-xxl-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  .px-xxl-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  .px-xxl-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }
  .px-xxl-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
  .py-xxl-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .py-xxl-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
  .py-xxl-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .py-xxl-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .py-xxl-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .py-xxl-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .pt-xxl-0 {
    padding-top: 0 !important;
  }
  .pt-xxl-1 {
    padding-top: 0.25rem !important;
  }
  .pt-xxl-2 {
    padding-top: 0.5rem !important;
  }
  .pt-xxl-3 {
    padding-top: 1rem !important;
  }
  .pt-xxl-4 {
    padding-top: 1.5rem !important;
  }
  .pt-xxl-5 {
    padding-top: 3rem !important;
  }
  .pr-xxl-0 {
    padding-right: 0 !important;
  }
  .pr-xxl-1 {
    padding-right: 0.25rem !important;
  }
  .pr-xxl-2 {
    padding-right: 0.5rem !important;
  }
  .pr-xxl-3 {
    padding-right: 1rem !important;
  }
  .pr-xxl-4 {
    padding-right: 1.5rem !important;
  }
  .pr-xxl-5 {
    padding-right: 3rem !important;
  }
  .pb-xxl-0 {
    padding-bottom: 0 !important;
  }
  .pb-xxl-1 {
    padding-bottom: 0.25rem !important;
  }
  .pb-xxl-2 {
    padding-bottom: 0.5rem !important;
  }
  .pb-xxl-3 {
    padding-bottom: 1rem !important;
  }
  .pb-xxl-4 {
    padding-bottom: 1.5rem !important;
  }
  .pb-xxl-5 {
    padding-bottom: 3rem !important;
  }
  .pl-xxl-0 {
    padding-left: 0 !important;
  }
  .pl-xxl-1 {
    padding-left: 0.25rem !important;
  }
  .pl-xxl-2 {
    padding-left: 0.5rem !important;
  }
  .pl-xxl-3 {
    padding-left: 1rem !important;
  }
  .pl-xxl-4 {
    padding-left: 1.5rem !important;
  }
  .pl-xxl-5 {
    padding-left: 3rem !important;
  }
}

@media (min-width: 1600px) {
  :root {
    font-size: 22px;
  }
}

.site {
  overflow: clip;
}

.clearfix::before,
.clearfix::after {
  content: '';
  display: table;
}

.clearfix::after {
  clear: both;
}

.container {
  --elbertga-gutter-x: 2.27rem;
  --elbertga-gutter-y: 0;
  width: 100%;
  padding-right: calc(var(--elbertga-gutter-x) * 0.5);
  padding-left: calc(var(--elbertga-gutter-x) * 0.5);
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 1280px) {
  .container {
    padding-left: 5%;
    padding-right: 5%;
  }
}

.menu,
.submenu {
  padding-left: 0;
  list-style: none;
  margin: 0;
}

.menu a {
  display: block;
  text-decoration: none;
  color: inherit;
}

ul {
  padding-left: 1.1em;
}

.list-unstyled {
  padding-left: 0;
  list-style: none;
}

.form-wrapper {
  font-family: 'Proxima Nova Rg', sans-serif;
  font-size: 1.36rem;
  line-height: 1.4;
}

.form-label {
  color: #010000;
}

.form-field {
  display: block;
  width: 100%;
  padding: 0.5rem 0.75rem;
  background-color: #fff;
  border: 1px solid #707070;
  outline: 0 !important;
}

.form-field-wrapper {
  margin-bottom: 1rem;
}

@media (min-width: 992px) {
  .form-field-group {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin: 0 -0.61rem;
  }
  .form-field-group > * {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    padding-left: 0.61rem;
    padding-right: 0.61rem;
  }
}

.form-footer {
  margin-top: 2rem;
  text-align: center;
}

.form-button {
  min-width: 13rem;
  padding: 0.5rem 1.75rem;
  font-family: 'Proxima Nova Rg', sans-serif;
  font-size: 1.36rem;
  font-weight: 700;
  line-height: 1.25;
  text-align: center;
  text-decoration: none !important;
  color: #fff !important;
  background-color: #003e77;
  border: 0;
  outline: 0 !important;
}

.popup-open {
  overflow: hidden;
}

.popup-overlay {
  position: fixed;
  inset: 0;
  z-index: 99;
  -webkit-transition: 0.25s;
  transition: 0.25s;
}

.popup-overlay.visible {
  background-color: rgba(255, 255, 255, 0.75);
}

.popup-wrapper {
  padding: 0 1.14rem;
  position: fixed;
  inset: 0;
  z-index: 101;
  overflow-x: hidden;
  overflow-y: auto;
}

.popup-inner {
  width: 100%;
  min-height: calc(100% - 4rem);
  margin: 2rem auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.popup-content {
  width: 100%;
  max-width: 30.7rem;
  background-color: #fff;
  font-weight: 700;
  color: #003e77;
  position: relative;
  opacity: 0;
  -webkit-transform: translateY(-0.5rem);
  transform: translateY(-0.5rem);
  -webkit-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
}

.popup-content.visible {
  opacity: 1;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

.popup-head {
  padding: 0.5rem;
  font-size: 1.36rem;
  font-weight: 700;
  line-height: 1.6;
  text-align: center;
  color: #fff;
  background-color: #003e77;
}

.popup-body {
  padding: 1.59rem 2.05rem 2.59rem;
  border: 1px solid #707070;
}

.popup-body ul {
  list-style: disc;
  padding-left: 1.1em;
}

.popup-close {
  padding: 0;
  font-size: 1rem;
  font-weight: 400;
  text-align: center;
  text-decoration: none !important;
  text-transform: uppercase;
  color: #003e77;
  background-color: transparent;
  border: 0;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  position: absolute;
  bottom: 0.66667rem;
  left: 50%;
}

.logo {
  margin: 0;
}

.logo a {
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  border: 0;
  display: block;
  width: 100%;
  aspect-ratio: 31 / 24;
  background: url('../images/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) {
  .logo a {
    background-image: url('../images/logo@2x.png');
  }
}

.topbar {
  position: fixed;
  inset: 0;
  bottom: auto;
  z-index: 9;
  -webkit-transition: all 200ms ease-in-out;
  transition: all 200ms ease-in-out;
}

@media (min-width: 1280px) {
  .topbar {
    display: none;
  }
}

.topbar .inner {
  height: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.topbar .logo {
  width: 60px;
  opacity: 0;
  -webkit-transition: opacity 200ms ease-in-out;
  transition: opacity 200ms ease-in-out;
}

.topbar.sticky,
.topbar.visible {
  background-color: white;
  -webkit-box-shadow: 0 0 5px #004662;
  box-shadow: 0 0 5px #004662;
}

.topbar.sticky .logo,
.topbar.visible .logo {
  opacity: 1;
}

.topbar .menu-toggler {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 48px;
  height: 40px;
  background: transparent;
  -webkit-box-shadow: inset 0 0 20px rgba(255, 255, 255, 0.3);
  box-shadow: inset 0 0 20px rgba(255, 255, 255, 0.3);
  border: 0;
  border-radius: 3px;
  -webkit-backdrop-filter: blur(1px);
  backdrop-filter: blur(1px);
  position: relative;
  left: 12px;
}

.topbar .menu-toggler .bars {
  width: 24px;
  height: 2px;
  border-radius: 1px;
  background-color: rgba(0, 0, 0, 0.8);
  -webkit-box-shadow: 0 0 10px 1px rgba(255, 255, 255, 0.7);
  box-shadow: 0 0 10px 1px rgba(255, 255, 255, 0.7);
  -webkit-transition: all 200ms ease-in-out;
  transition: all 200ms ease-in-out;
}

.topbar .menu-toggler .bars::before,
.topbar .menu-toggler .bars::after {
  content: '';
  display: block;
  width: 100%;
  height: 2px;
  border-radius: 1px;
  background-color: rgba(0, 0, 0, 0.8);
  -webkit-box-shadow: 0 0 10px 1px rgba(255, 255, 255, 0.7);
  box-shadow: 0 0 10px 1px rgba(255, 255, 255, 0.7);
  position: relative;
  -webkit-transition: all 200ms ease-in-out;
  transition: all 200ms ease-in-out;
}

.topbar .menu-toggler .bars::before {
  top: -8px;
}

.topbar .menu-toggler .bars::after {
  bottom: -6px;
}

.topbar .menu-toggler.active .bars {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-box-shadow: none;
  box-shadow: none;
}

.topbar .menu-toggler.active .bars::before,
.topbar .menu-toggler.active .bars::after {
  -webkit-box-shadow: none;
  box-shadow: none;
}

.topbar .menu-toggler.active .bars::before {
  margin-top: 8px;
  background-color: transparent;
  -webkit-transform: rotate(-45deg) scaleY(0);
  transform: rotate(-45deg) scaleY(0);
}

.topbar .menu-toggler.active .bars::after {
  margin-top: -16px;
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}

.topbar .mobile-menu {
  display: none;
  max-height: calc(100vh - 60px);
  font-size: 20px;
  line-height: 30px;
  overflow-y: auto;
  overflow-x: hidden;
}

.topbar .mobile-menu .menu a {
  padding-top: 8px;
  padding-bottom: 8px;
}

.topbar .mobile-menu .menu li {
  border-top: 1px solid rgba(112, 112, 112, 0.25);
  position: relative;
}

.topbar .mobile-menu .menu li:has(ul.submenu) > a {
  padding-right: calc(1.14rem + 54px);
}

.topbar .mobile-menu .menu .dropdown-button {
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  border: 0;
  width: 54px;
  height: 46px;
  padding: 0 1.14rem;
  background-color: transparent;
  border: 0;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
}

.topbar .mobile-menu .menu .dropdown-button::before,
.topbar .mobile-menu .menu .dropdown-button::after {
  content: '';
  display: block;
  width: 9px;
  height: 2px;
  border-radius: 1px;
  background-color: #707070;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transition: all 200ms ease-in-out;
  transition: all 200ms ease-in-out;
}

.topbar .mobile-menu .menu .dropdown-button::before {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  margin-left: -7px;
}

.topbar .mobile-menu .menu .dropdown-button::after {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  margin-left: -2px;
}

.topbar .mobile-menu .menu .dropdown-button.active::before {
  margin-left: -2px;
}

.topbar .mobile-menu .menu .dropdown-button.active::after {
  margin-left: -7px;
}

.topbar .mobile-menu .menu > li > a {
  padding-left: 1.14rem;
  padding-right: 1.14rem;
}

.topbar .mobile-menu .submenu {
  display: none;
  font-size: 18px;
}

.topbar .mobile-menu .submenu a {
  position: relative;
}

.topbar .mobile-menu .submenu a::before {
  content: '\2013';
  position: absolute;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  top: 50%;
  left: 1.14rem;
}

.topbar .mobile-menu .submenu > li > a {
  padding-left: calc(1.14rem + 15px);
}

.topbar .mobile-menu .submenu .submenu a {
  padding-left: calc(1.14rem + 25px);
}

.topbar .mobile-menu .submenu .submenu a::before {
  content: '\2013\2013';
}

.mobile-menu-open {
  overflow: hidden;
}

.mobile-menu-overlay {
  background-color: rgba(0, 0, 0, 0.5);
  position: fixed;
  inset: 0;
  z-index: 8;
}

.header {
  position: relative;
  overflow: hidden;
}

.header .header-left {
  width: 190px;
  position: absolute;
  inset: 0;
  right: auto;
  z-index: 2;
}

@media (min-width: 768px) {
  .header .header-left {
    width: 285px;
  }
}

@media (min-width: 1280px) {
  .header .header-left {
    width: 31.82rem;
    margin-left: -4.36rem;
    left: 5%;
  }
}

.header .header-left .logo {
  width: 110px;
  position: absolute;
  top: 10px;
  left: 15px;
  z-index: 2;
}

@media (min-width: 768px) {
  .header .header-left .logo {
    width: 165px;
    top: 15px;
    left: 1.14rem;
  }
}

@media (min-width: 1280px) {
  .header .header-left .logo {
    width: 14.09rem;
    top: 3.86rem;
    left: 7.05rem;
  }
}

.header .header-left .logo a {
  border-bottom-right-radius: 25%;
}

.header .header-left .tagline {
  display: none;
  width: 7.73rem;
  font-size: 1.27rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.01em;
  color: #00aeef;
  position: absolute;
  top: 15.91rem;
  left: 7.73rem;
  z-index: 2;
}

@media (min-width: 1280px) {
  .header .header-left .tagline {
    display: block;
  }
}

.header .header-left .bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, #fff 100px, transparent 200px);
  -webkit-box-shadow: 0.18rem 0.18rem 0.55rem rgba(0, 0, 0, 0.35);
  box-shadow: 0.18rem 0.18rem 0.55rem rgba(0, 0, 0, 0.35);
  -webkit-transform: skewX(-39deg);
  transform: skewX(-39deg);
  -webkit-transform-origin: top right;
  transform-origin: top right;
  position: absolute;
  inset: 0;
}

@media (min-width: 768px) {
  .header .header-left .bg {
    background: linear-gradient(to bottom, #fff 150px, transparent 300px);
  }
}

@media (min-width: 1280px) {
  .header .header-left .bg {
    background: #fff;
  }
}

.header .header-left .bg::before {
  content: '';
  display: block;
  width: 80px;
  aspect-ratio: 30 / 18;
  background-color: #b1e6fa;
  -webkit-transform: skewY(31deg);
  transform: skewY(31deg);
  -webkit-transform-origin: bottom right;
  transform-origin: bottom right;
  position: absolute;
  top: 0;
  right: 0;
}

@media (min-width: 768px) {
  .header .header-left .bg::before {
    width: 120px;
  }
}

@media (min-width: 1280px) {
  .header .header-left .bg::before {
    width: 13.64rem;
  }
}

.header .header-left::before {
  content: '';
  display: block;
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    color-stop(50%, #000),
    color-stop(75%, rgba(0, 0, 0, 0.47)),
    to(rgba(0, 0, 0, 0))
  );
  background: linear-gradient(
    to right,
    #000 50%,
    rgba(0, 0, 0, 0.47) 75%,
    rgba(0, 0, 0, 0)
  );
  opacity: 0.66;
  -webkit-transform: skewX(-17.5deg);
  transform: skewX(-17.5deg);
  -webkit-transform-origin: top right;
  transform-origin: top right;
  position: absolute;
  inset: 0;
}

@media (min-width: 768px) {
  .header .header-left::before {
    background: -webkit-gradient(
      linear,
      left top,
      right top,
      color-stop(60%, #000),
      color-stop(85%, rgba(0, 0, 0, 0.47)),
      to(rgba(0, 0, 0, 0))
    );
    background: linear-gradient(
      to right,
      #000 60%,
      rgba(0, 0, 0, 0.47) 85%,
      rgba(0, 0, 0, 0)
    );
  }
}

@media (min-width: 1280px) {
  .header .header-left::before {
    -webkit-transform: skewX(-1deg);
    transform: skewX(-1deg);
    -webkit-transform-origin: center;
    transform-origin: center;
    right: 2.73rem;
  }
}

.header .header-right {
  width: 120px;
  position: absolute;
  inset: 0;
  left: auto;
}

@media (min-width: 768px) {
  .header .header-right {
    width: 240px;
  }
}

@media (min-width: 1280px) {
  .header .header-right {
    width: 40.45rem;
    margin-right: -4.36rem;
    right: 5%;
  }
}

.header .header-right .main-menu {
  display: none;
  width: 16.36rem;
  font-family: 'Segoe UI', sans-serif;
  font-size: 1.55rem;
  line-height: 1;
  letter-spacing: -0.03em;
  text-align: right;
  color: #fff;
  position: absolute;
  top: 4.55rem;
  right: 4.36rem;
  z-index: 3;
}

@media (min-width: 1280px) {
  .header .header-right .main-menu {
    display: block;
  }
}

.header .header-right .main-menu .menu li {
  position: relative;
}

.header .header-right .main-menu .menu > li {
  height: 4.18rem;
  position: relative;
}

.header .header-right .main-menu .menu > li::before {
  content: '';
  display: block;
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    from(rgba(0, 0, 0, 0)),
    color-stop(rgba(0, 0, 0, 0.75)),
    to(rgba(0, 0, 0, 0))
  );
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0),
    rgba(0, 0, 0, 0.75),
    rgba(0, 0, 0, 0)
  );
  opacity: 0;
  -webkit-transition: 0.1s ease-in-out;
  transition: 0.1s ease-in-out;
  position: absolute;
  inset: 0;
  z-index: -1;
}

.header .header-right .main-menu .menu > li:has(ul.submenu):hover::before {
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    color-stop(50%, rgba(0, 0, 0, 0.75)),
    to(rgba(0, 0, 0, 0))
  );
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.75) 50%,
    rgba(0, 0, 0, 0)
  );
}

.header .header-right .main-menu .menu > li::after {
  content: '';
  display: block;
  height: 2px;
  width: 100%;
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    from(rgba(75, 186, 213, 0)),
    to(#4bbad5)
  );
  background: linear-gradient(to right, rgba(75, 186, 213, 0), #4bbad5);
  position: absolute;
  top: 100%;
  right: 0;
}

@media (min-width: 1600px) {
  .header .header-right .main-menu .menu > li::after {
    height: 3px;
  }
}

.header .header-right .main-menu .menu > li > a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  height: 100%;
}

.header .header-right .main-menu .menu > li > a::before {
  content: '';
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -webkit-box-ordinal-group: 100;
  -ms-flex-order: 99;
  order: 99;
  height: 1.36rem;
  width: 1.36rem;
  margin-top: 0.14rem;
  margin-left: 1.14rem;
  background-color: #fff;
  border-radius: 50%;
  -webkit-mask: url('../images/icon-arrow-menu.svg') center/contain no-repeat;
  mask: url('../images/icon-arrow-menu.svg') center/contain no-repeat;
}

.header .header-right .main-menu .menu li:hover::before {
  opacity: 1;
  -webkit-transition: 0.35s ease-in-out;
  transition: 0.35s ease-in-out;
}

.header .header-right .main-menu .menu li:hover > .submenu {
  opacity: 1;
  visibility: visible;
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
  -webkit-transition: opacity 0.35s ease-in-out, visibility 0.35s ease-in-out,
    -webkit-transform 0.4s ease-in-out;
  transition: opacity 0.35s ease-in-out, visibility 0.35s ease-in-out,
    -webkit-transform 0.4s ease-in-out;
  transition: opacity 0.35s ease-in-out, visibility 0.35s ease-in-out,
    transform 0.4s ease-in-out;
  transition: opacity 0.35s ease-in-out, visibility 0.35s ease-in-out,
    transform 0.4s ease-in-out, -webkit-transform 0.4s ease-in-out;
  z-index: 9;
}

.header .header-right .main-menu .submenu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: space-evenly;
  -ms-flex-pack: space-evenly;
  justify-content: space-evenly;
  min-height: 100%;
  min-width: 13.64rem;
  font-size: 1.14rem;
  letter-spacing: 0;
  white-space: nowrap;
  background-color: rgba(0, 0, 0, 0.75);
  opacity: 0;
  visibility: hidden;
  -webkit-transform: scaleX(1.05);
  transform: scaleX(1.05);
  -webkit-transform-origin: right;
  transform-origin: right;
  -webkit-transition: opacity 0.2s ease-in-out 0.1s,
    visibility 0.2s ease-in-out 0.1s, -webkit-transform 0 0.3s;
  transition: opacity 0.2s ease-in-out 0.1s, visibility 0.2s ease-in-out 0.1s,
    -webkit-transform 0 0.3s;
  transition: opacity 0.2s ease-in-out 0.1s, visibility 0.2s ease-in-out 0.1s,
    transform 0 0.3s;
  transition: opacity 0.2s ease-in-out 0.1s, visibility 0.2s ease-in-out 0.1s,
    transform 0 0.3s, -webkit-transform 0 0.3s;
  position: absolute;
  top: 0;
  right: 100%;
}

.header .header-right .main-menu .submenu a {
  padding: 1rem 1em;
}

.header .header-right .main-menu .submenu > li + li {
  border-top: 1px solid rgba(255, 255, 255, 0.25);
}

.header .header-right .bg::before {
  content: '';
  display: block;
  background-color: rgba(44, 44, 44, 0.7);
  mix-blend-mode: multiply;
  -webkit-transform: skewX(-39deg);
  transform: skewX(-39deg);
  -webkit-transform-origin: bottom left;
  transform-origin: bottom left;
  position: absolute;
  inset: 0;
  z-index: 1;
}

@media (min-width: 1280px) {
  .header .header-right .bg::before {
    -webkit-transform-origin: top right;
    transform-origin: top right;
    -webkit-transform: skewX(-37deg) translateX(65%);
    transform: skewX(-37deg) translateX(65%);
  }
}

.header .header-right .bg::after {
  content: '';
  display: block;
  width: 125px;
  aspect-ratio: 385 / 485;
  background: linear-gradient(
    to right,
    #fff calc(16.88312% - 1px),
    transparent 16.88312%,
    transparent calc(28.05195% - 1px),
    #fff 28.05195%,
    #fff calc(44.15584% - 1px),
    transparent 44.15584%,
    transparent calc(56.1039% - 1px),
    #6cccf1 56.1039%,
    #6cccf1 calc(71.68831% - 1px),
    transparent 71.68831%,
    transparent calc(83.8961% - 1px),
    #6cccf1 83.8961%
  );
  -webkit-transform: skewX(-39deg);
  transform: skewX(-39deg);
  -webkit-transform-origin: bottom left;
  transform-origin: bottom left;
  position: absolute;
  bottom: 0;
  left: 30px;
  z-index: 1;
}

@media (min-width: 768px) {
  .header .header-right .bg::after {
    width: 200px;
    left: 100px;
  }
}

@media (min-width: 1280px) {
  .header .header-right .bg::after {
    width: 17.5rem;
    left: 69.10112%;
  }
}

.header .header-image {
  min-height: 285px;
  background-color: gray;
  position: relative;
}

@media (min-width: 768px) {
  .header .header-image {
    min-height: 400px;
  }
}

@media (min-width: 1280px) {
  .header .header-image {
    height: 34.82rem;
    padding-left: 3.64rem;
  }
}

.header .header-image::before {
  content: '';
  display: block;
  height: 7.05rem;
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    color-stop(55%, #6cccf1),
    color-stop(80%, #d1f2ff),
    to(rgba(255, 255, 255, 0))
  );
  background: linear-gradient(
    to bottom,
    #6cccf1 55%,
    #d1f2ff 80%,
    rgba(255, 255, 255, 0)
  );
  opacity: 0.66;
  mix-blend-mode: multiply;
  position: absolute;
  inset: 0;
  bottom: auto;
  z-index: 1;
}

.header .header-image::after {
  content: '';
  display: block;
  width: 100%;
  aspect-ratio: 1824 / 766;
}

.header .header-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  position: absolute;
  inset: 0;
}

.header .header-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 2.2em;
  font-size: 1.64rem;
  font-family: 'Bitter', serif;
  color: #fff;
  text-shadow: 0 0.14rem 0.27rem #122a3a;
  position: absolute;
  left: 1.52rem;
  right: 3.41rem;
  bottom: 0.68rem;
  z-index: 2;
}

@media (min-width: 768px) {
  .header .header-title {
    font-size: calc(1.75vw + 1.25rem);
    left: 7.5%;
    right: 12.5%;
    bottom: 1rem;
  }
}

@media (min-width: 1280px) {
  .header .header-title {
    height: auto;
    font-size: 2.73rem;
    left: 12.95rem;
    right: 5%;
    bottom: 4.55rem;
  }
}

.header .header-title h1 {
  margin: 0;
  font-size: inherit;
  line-height: 1.1;
}

.header .header-title h1 span {
  display: inline-block;
}

.content {
  position: relative;
  padding-bottom: 3.86rem;
  background-color: rgba(0, 174, 239, 0.06);
}

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

.content::before {
  content: '';
  display: block;
  width: 10rem;
  height: 17.5rem;
  background: linear-gradient(to right, transparent calc(46% - 1px), #fff 46%);
  background-size: 40%;
  background-position: top right;
  -webkit-transform: skewX(-38.5deg);
  transform: skewX(-38.5deg);
  -webkit-transform-origin: top right;
  transform-origin: top right;
  position: absolute;
  top: 0;
  left: 3.86rem;
}

@media (min-width: 768px) {
  .content::before {
    width: 20rem;
    height: 35rem;
    left: 7.73rem;
  }
}

.content::after {
  content: '';
  display: block;
  height: 2.05rem;
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(#003e77),
    color-stop(25%, rgba(0, 62, 119, 0.2)),
    to(rgba(255, 255, 255, 0))
  );
  background: linear-gradient(
    to bottom,
    #003e77,
    rgba(0, 62, 119, 0.2) 25%,
    rgba(255, 255, 255, 0)
  );
  opacity: 0.6;
  mix-blend-mode: multiply;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1;
}

.content .strips::before {
  content: '';
  display: block;
  width: 10rem;
  height: 75rem;
  background: linear-gradient(to right, transparent calc(46% - 1px), #fff 46%);
  background-size: 40%;
  background-position: top right;
  -webkit-transform: skewX(-38.5deg);
  transform: skewX(-38.5deg);
  -webkit-transform-origin: top right;
  transform-origin: top right;
  position: absolute;
  top: 30.68rem;
  right: -10rem;
  z-index: -1;
}

@media (min-width: 768px) {
  .content .strips::before {
    width: 20rem;
    height: 150rem;
    top: 20.45rem;
    right: -20rem;
  }
}

.content .strips::after {
  content: '';
  display: block;
  width: 75rem;
  height: 50rem;
  background: linear-gradient(-145deg, #d6f4ff 25%, transparent 50%);
  -webkit-transform: rotate(-10deg) skewY(-41.5deg);
  transform: rotate(-10deg) skewY(-41.5deg);
  -webkit-transform-origin: top right;
  transform-origin: top right;
  position: absolute;
  right: 0;
  top: 24.03rem;
  z-index: -2;
}

@media (min-width: 768px) {
  .content .strips::after {
    width: 150rem;
    height: 100rem;
    top: 10.68rem;
  }
}

.content img {
  max-width: 100%;
  height: auto;
}

.content a {
  font-weight: 700;
}

.content address {
  color: #007dc4;
}

.content section {
  padding: 3.86rem 0;
}

.content section.with-bg {
  background-color: rgba(0, 174, 239, 0.06);
}

.content .container {
  position: relative;
  z-index: 5;
}

.content .inner {
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 992px) {
  .content .row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
}

.content .caption {
  font-family: 'Crimson Text', serif;
  font-size: 1.64rem;
  letter-spacing: -0.03em;
  font-weight: 400;
  color: #003e77;
}

@media (min-width: 768px) {
  .content .caption {
    font-size: 2.05rem;
  }
}

@media (min-width: 1280px) {
  .content .caption {
    font-size: 2.73rem;
  }
}

.content .subcaption,
.content .subcaption-sm {
  font-family: 'Crimson Text', serif;
  font-size: 1.48rem;
  letter-spacing: -0.03em;
  font-weight: 400;
  font-style: italic;
  color: #003e77;
}

@media (min-width: 768px) {
  .content .subcaption,
  .content .subcaption-sm {
    font-size: 1.82rem;
  }
}

@media (min-width: 1280px) {
  .content .subcaption,
  .content .subcaption-sm {
    font-size: 2.27rem;
  }
}

.content .subcaption-sm {
  font-size: 1.36rem;
}

@media (min-width: 768px) {
  .content .subcaption-sm {
    font-size: 1.55rem;
  }
}

@media (min-width: 1280px) {
  .content .subcaption-sm {
    font-size: 1.82rem;
  }
}

.content .text-md {
  font-size: 1.14rem;
}

.content .text-lg {
  font-size: 1.36rem;
}

.content .link-box {
  padding: 0.68rem 1.59rem;
  padding-right: 2.27rem;
  color: #003e77;
  background-color: #fff;
}

.content .link-box > *:last-child {
  margin-bottom: 0.25rem;
}

.content .link-box .heading {
  font-size: 1.36rem;
  font-weight: 700;
}

.excerpt {
  padding: 1.14rem 0;
  font-family: 'Crimson Text', serif;
  font-size: 1.23rem;
  letter-spacing: -0.01em;
  line-height: 1.48;
  text-align: center;
  color: #003e77;
  background-color: #fff;
  position: relative;
}

.excerpt::before {
  content: '';
  display: block;
  height: 2.05rem;
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(#003e77),
    color-stop(25%, rgba(0, 62, 119, 0.2)),
    to(rgba(255, 255, 255, 0))
  );
  background: linear-gradient(
    to bottom,
    #003e77,
    rgba(0, 62, 119, 0.2) 25%,
    rgba(255, 255, 255, 0)
  );
  opacity: 0.6;
  mix-blend-mode: multiply;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
}

.excerpt .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  min-height: 5.23rem;
  position: relative;
  z-index: 5;
}

.excerpt .inner > * {
  margin: 0;
}

.footer {
  padding-top: 4.18rem;
  padding-bottom: 1px;
  color: #707070;
  font-size: 0.73rem;
  line-height: 1.5;
  text-align: center;
  background-color: #fff;
  -webkit-box-shadow: 0 0 1.36rem #004662;
  box-shadow: 0 0 1.36rem #004662;
  position: relative;
  z-index: 2;
}

@media (min-width: 768px) {
  .footer {
    padding-top: 5.23rem;
  }
}

.footer::before {
  content: '';
  display: block;
  background-color: #fff;
  position: absolute;
  inset: 0;
  z-index: -1;
}

.footer::after {
  content: '';
  display: none;
  width: 13.64rem;
  height: 100%;
  background: linear-gradient(
    to right,
    transparent calc(46% - 1px),
    #d6f4ff 46%
  );
  background-size: 28%;
  background-position: top right;
  -webkit-transform: skewX(-38.5deg);
  transform: skewX(-38.5deg);
  -webkit-transform-origin: top right;
  transform-origin: top right;
  position: absolute;
  top: 0;
  z-index: -1;
}

@media (min-width: 768px) {
  .footer::after {
    display: block;
    right: 72.91667%;
  }
}

.footer .footer-logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 16.29rem;
  height: 8rem;
  margin: 0 -8.145rem;
  padding-bottom: 1.45rem;
  border-radius: 50%;
  background-color: #fff;
  position: absolute;
  top: -2.9rem;
  left: 50%;
}

@media (min-width: 768px) {
  .footer .footer-logo {
    width: 20.36rem;
    height: 10rem;
    margin: 0 -10.18rem;
    padding-bottom: 1.82rem;
    top: -3.41rem;
  }
}

.footer .footer-logo::before {
  content: '';
  display: block;
  width: 7.42rem;
  aspect-ratio: 31 / 24;
  margin: auto;
  background: url('../images/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) {
  .footer .footer-logo::before {
    background-image: url('../images/logo@2x.png');
  }
}

@media (min-width: 768px) {
  .footer .footer-logo::before {
    width: 9.27rem;
  }
}

.footer .footer-logo::after {
  content: '';
  display: block;
  border-radius: 50%;
  -webkit-box-shadow: 0 0 1.36rem #004662;
  box-shadow: 0 0 1.36rem #004662;
  position: absolute;
  inset: 0;
  z-index: -2;
}

.footer .footer-inner {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  position: relative;
}

.footer .footer-contact {
  padding-left: 0;
  list-style: none;
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 0.19em 1.13em;
}

.footer .footer-contact a,
.footer .footer-contact strong {
  font-weight: 700;
  text-decoration: none;
  color: #00aeef;
}

.footer .footer-contact li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.footer .footer-contact li::before {
  content: '\2022';
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin-right: 0.5em;
  color: #00aeef;
}

.footer .footer-contact li.phone::before {
  width: 1.13em;
  height: 0.88em;
  background-color: #00aeef;
  -webkit-mask: url('../images/icon-phone.svg') center/contain no-repeat;
  mask: url('../images/icon-phone.svg') center/contain no-repeat;
}

.footer .footer-contact li.email::before {
  width: 1.38em;
  height: 0.88em;
  background-color: #00aeef;
  -webkit-mask: url('../images/icon-email.svg') center/contain no-repeat;
  mask: url('../images/icon-email.svg') center/contain no-repeat;
}

.footer .social-media {
  padding-left: 0;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 0.55rem;
}

.footer .social-media a {
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  border: 0;
  display: block;
  width: 1.23rem;
  aspect-ratio: 1;
  background-color: #00aeef;
  border-radius: 0.23rem;
}

.footer .social-media a.facebook {
  -webkit-mask: url('../images/icon-facebook.svg') center/contain no-repeat;
  mask: url('../images/icon-facebook.svg') center/contain no-repeat;
}

.footer .social-media a.instagram {
  -webkit-mask: url('../images/icon-instagram.svg') center/contain no-repeat;
  mask: url('../images/icon-instagram.svg') center/contain no-repeat;
}

.footer .social-media a.yelp {
  -webkit-mask: url('../images/icon-yelp.svg') center/contain no-repeat;
  mask: url('../images/icon-yelp.svg') center/contain no-repeat;
}

.footer .copyright {
  margin-top: 0.45rem;
  margin-bottom: 0.68rem;
  padding-top: 0.45rem;
  position: relative;
}

.footer .copyright::before {
  content: '';
  display: block;
  border-top: 1px solid #707070;
  position: absolute;
  top: 0;
  left: 7%;
  right: 7%;
}

.footer .powered {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 0.64rem;
}

@media (min-width: 1280px) {
  .footer .powered {
    margin-left: -5.32rem;
    position: absolute;
    bottom: 50%;
    left: calc(100% + 15vw);
  }
}

.footer .powered a {
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  border: 0;
  display: block;
  width: 10.64rem;
  aspect-ratio: 234 / 50;
  margin-top: -0.64rem;
  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) {
  .footer .powered a {
    background-image: url('../images/365dtm-logo@2x.png');
  }
}

.page-invitation-to-bid .excerpt .inner {
  max-width: 38.05rem;
}

.page-invitation-to-bid .top-section {
  padding-top: 2.05rem;
  padding-bottom: 2.05rem;
}

.page-invitation-to-bid .top-section .inner {
  max-width: 53.14rem;
}

.page-invitation-to-bid .bottom-section {
  padding-top: 2.05rem;
  padding-bottom: 2.05rem;
}

.page-invitation-to-bid .bottom-section .inner {
  max-width: 67.14rem;
}

@media (min-width: 992px) {
  .page-invitation-to-bid .bottom-section .row .text {
    max-width: 33.36rem;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 49.69533%;
    flex: 0 0 49.69533%;
  }
  .page-invitation-to-bid .bottom-section .row .image {
    max-width: 30rem;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 44.68517%;
    flex: 0 0 44.68517%;
  }
}

.page-commissioners .excerpt .inner {
  max-width: 54.86rem;
}

.page-commissioners .top-section {
  padding-top: 2.05rem;
  padding-bottom: 2.05rem;
}

.page-commissioners .middle-section {
  padding-top: 2.05rem;
  padding-bottom: 0;
}

.page-commissioners .middle-section .inner {
  max-width: 57.73rem;
}

.page-commissioners .bottom-section {
  padding-top: 2.05rem;
  padding-bottom: 2.05rem;
}

.page-commissioners .commissioner {
  font-size: 1.14rem;
  line-height: 1.36;
  text-align: center;
}

@media (min-width: 1280px) {
  .page-commissioners .commissioner {
    margin-left: -3.64rem;
    margin-right: -3.64rem;
  }
}

.page-commissioners .commissioner-item {
  width: 16.36rem;
  margin: auto;
  padding-bottom: 1rem;
}

.page-commissioners .commissioner-item > * {
  font-size: inherit;
  line-height: inherit;
}

.page-commissioners .commissioner-item .photo {
  width: 78.33333%;
  margin-bottom: 1rem;
  border: 1px solid #707070;
}

.page-commissioners .commissioner-item .name {
  margin: 0;
  font-weight: bold;
}

.page-commissioners .commissioner-item .position {
  font-style: italic;
}

.page-commissioners .commissioner-list {
  padding-left: 0;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: space-evenly;
  -ms-flex-pack: space-evenly;
  justify-content: space-evenly;
  margin: 0 -1rem;
}

.page-commissioners .commissioner-list > li {
  padding-left: 1rem;
  padding-right: 1rem;
}

@media (min-width: 1280px) {
  .page-commissioners .commissioner-list > li {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 33.33333%;
    flex: 0 0 33.33333%;
  }
}

.page-administration .commissioner-list {
  padding-left: 0;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: space-evenly;
  -ms-flex-pack: space-evenly;
  justify-content: space-evenly;
  margin: 0 -1rem;
  text-align: center;
}

.page-administration .commissioner-list > li {
  padding-left: 1rem;
  padding-right: 1rem;
}

@media (min-width: 1280px) {
  .page-administration .commissioner-list > li {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 33.33333%;
    flex: 0 0 33.33333%;
  }
}

.page-official-minutes .top-section {
  padding-bottom: 1px;
}

.page-official-minutes .bottom-section {
  padding-top: 2.05rem;
  padding-bottom: 0;
}

.page-official-minutes .minute .open-btn {
  display: block;
  width: 15.82rem;
  margin: auto;
  padding: 0.5rem;
  font-size: 1.36rem;
  font-weight: 700;
  text-align: center;
  line-height: 1.6;
  text-decoration: none !important;
  color: #fff;
  background-color: #003e77;
}

.page-official-minutes .minute .open-btn.inactive {
  pointer-events: none;
  opacity: 0.24;
}

.page-official-minutes .minute .close-btn {
  font-weight: 400;
  text-align: center;
  text-decoration: none !important;
  text-transform: uppercase;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  position: absolute;
  bottom: 0.66667rem;
  left: 50%;
}

.page-home .open-btn {
  display: block;
  width: 15.82rem;
  margin: auto;
  padding: 0.5rem;
  font-size: 1.36rem;
  font-weight: 700;
  text-align: center;
  line-height: 1.6;
  text-decoration: none !important;
  color: #fff;
  background-color: #003e77;
  margin-top: 20px;
}

.page-official-minutes .minute-item {
  margin-bottom: 3.27rem;
}

.page-official-minutes .minute-item a {
  display: block;
  width: 15.82rem;
  margin: auto;
  padding: 0.5rem;
  font-size: 1.36rem;
  font-weight: 700;
  text-align: center;
  line-height: 1.6;
  text-decoration: none !important;
  color: #fff;
  background-color: #003e77;
}

@media (min-width: 768px) {
  .page-official-minutes .minute-item {
    margin-bottom: 4.09rem;
  }
}

@media (min-width: 1280px) {
  .page-official-minutes .minute-item {
    margin-bottom: 5.45rem;
  }
}

.page-official-minutes .minute-list {
  padding-left: 0;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 0 -1rem;
}

.page-official-minutes .minute-list > li {
  padding-left: 1rem;
  padding-right: 1rem;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
}

@media (min-width: 576px) {
  .page-official-minutes .minute-list > li {
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
  }
}

@media (min-width: 992px) {
  .page-official-minutes .minute-list > li {
    -ms-flex-preferred-size: 33.33333%;
    flex-basis: 33.33333%;
  }
}

.page-official-minutes .minute-detail {
  display: none;
}

.page-court .content .inner {
  max-width: 68.18rem;
}

@media (min-width: 992px) {
  .page-court .top-section .row .image {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 48%;
    flex: 0 0 48%;
  }
  .page-court .top-section .row .image img {
    margin-top: -2rem;
  }
}

@media (min-width: 992px) and (max-width: 1279.98px) {
  .page-court .top-section .row .image img {
    margin-top: -0.5rem;
  }
}

@media (min-width: 992px) {
  .page-court .top-section .row .text {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 42%;
    flex: 0 0 42%;
  }
}

.page-court .top-section .service-box {
  max-width: 23.18rem;
  margin-bottom: 1.5rem;
  padding: 1.36rem 1.59rem;
  font-family: 'Crimson Text', serif;
  font-weight: 700;
  font-size: 0.95rem;
  line-height: 1.4;
  color: #fff;
  background-color: #003e77;
}

@media (min-width: 768px) {
  .page-court .top-section .service-box {
    font-size: 1.08rem;
  }
}

@media (min-width: 1280px) {
  .page-court .top-section .service-box {
    font-size: 1.27rem;
  }
}

.page-court .top-section .service-box a {
  color: inherit;
}

.page-court .top-section .service-box li + li {
  margin-top: 0.3em;
}

.page-court .top-section .service-box .heading {
  margin-bottom: 1.14rem;
  font-style: italic;
  font-size: 1.43em;
}

.page-court .middle-section {
  padding-top: 5.45rem;
  padding-bottom: 5.45rem;
  background-color: #fff;
  position: relative;
}

@media (min-width: 992px) {
  .page-court .middle-section .row .image {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 29.73333%;
    flex: 0 0 29.73333%;
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
  }
  .page-court .middle-section .row .text {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 66.46667%;
    flex: 0 0 66.46667%;
  }
}

@media (min-width: 992px) {
  .page-court .bottom-section .row .col {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    padding-right: 9%;
  }
  .page-court .bottom-section .row .col:first-child {
    padding-right: 10%;
  }
}

.page-court .bottom-section .contact-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  min-height: 9.1em;
  margin-bottom: 1.5rem;
  padding: 1.36rem 1.59rem 1.59rem 2.5rem;
  font-size: 1.16rem;
  line-height: 1.13;
  letter-spacing: -0.03em;
}

@media (min-width: 1280px) {
  .page-court .bottom-section .contact-box {
    font-size: 1.36rem;
  }
}

.page-court .bottom-section .contact-box > * {
  margin: 0;
}

.page-court .bottom-section .contact-box .heading {
  font-size: inherit;
  line-height: inherit;
  font-weight: 700;
}

.page-court .bottom-section .contact-box.magistrate-court {
  max-width: 25.41rem;
  color: #000;
  background-color: #6cccf1;
}

.page-court .bottom-section .contact-box.probate-court {
  max-width: 27.91rem;
  color: #fff;
  background-color: #003e77;
}

.page-clerk-of-court .content .inner {
  max-width: 61.73rem;
}

@media (min-width: 992px) {
  .page-clerk-of-court .content .row .col {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 45.80265%;
    flex: 0 0 45.80265%;
  }
}

.page-clerk-of-court .top-section {
  padding-bottom: 1.59rem;
}

.page-clerk-of-court .bottom-section {
  padding-top: 0;
}

@media (min-width: 992px) {
  .page-clerk-of-court .bottom-section .row .col:first-child {
    -ms-flex-preferred-size: 27.83505%;
    flex-basis: 27.83505%;
    padding-top: 0.5rem;
  }
  .page-clerk-of-court .bottom-section .row .col:last-child {
    -ms-flex-preferred-size: 67.89396%;
    flex-basis: 67.89396%;
  }
}

.page-coroner .content .inner {
  max-width: 66.27rem;
}

@media (min-width: 992px) {
  .page-coroner .content .row .col {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 44.71879%;
    flex: 0 0 44.71879%;
  }
}

.page-coroner .excerpt .inner {
  max-width: 59.68rem;
}

.page-administration .content .inner {
  max-width: 68.59rem;
}

@media (min-width: 992px) {
  .page-administration .content .row .text {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 80%;
    flex: 0 0 80%;
  }
  .page-administration .content .row .image {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 52.35255%;
    flex: 0 0 52.35255%;
  }
}

.page-administration .content img {
  border: 1px solid #707070;
}

.page-administration .excerpt {
  font-size: 1.36rem;
  font-weight: 700;
}

@media (min-width: 768px) {
  .page-administration .excerpt {
    font-size: 1.55rem;
  }
}

@media (min-width: 1280px) {
  .page-administration .excerpt {
    font-size: 1.82rem;
  }
}

.page-code-enforcement-planning-zoning .content .inner {
  max-width: 58.18rem;
}

@media (min-width: 992px) {
  .page-code-enforcement-planning-zoning .content .row .col:first-child {
    -ms-flex-preferred-size: 56.09375%;
    flex-basis: 56.09375%;
  }
  .page-code-enforcement-planning-zoning .content .row .col:last-child {
    -ms-flex-preferred-size: 41.32812%;
    flex-basis: 41.32812%;
  }
}

.page-code-enforcement-planning-zoning .excerpt .inner {
  max-width: 57.27rem;
}

.page-code-enforcement-planning-zoning .link-box {
  padding-left: 2.27rem;
}

.page-road-department .content .inner {
  max-width: 63.23rem;
}

.page-road-department .excerpt .inner {
  max-width: 52.73rem;
}

.page-road-department .top-section {
  padding-top: 2.05rem;
  padding-bottom: 2.05rem;
}

.page-road-department .form-section {
  padding-top: 0;
}

.page-solid-waste-recycling-center .content .inner {
  max-width: 53.64rem;
}

.page-solid-waste-recycling-center .excerpt .inner {
  max-width: 50.68rem;
}

.page-solid-waste-recycling-center .top-section {
  padding-top: 2.05rem;
  padding-bottom: 0;
}

@media (min-width: 992px) {
  .page-solid-waste-recycling-center .row .col {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 46.94915%;
    flex: 0 0 46.94915%;
  }
}

.page-elections-registration .top-section .inner {
  max-width: 53.64rem;
}

.page-elections-registration .middle-section {
  padding-top: 0;
}

@media (min-width: 992px) {
  .page-elections-registration .middle-section .row .col {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
  }
  .page-elections-registration .middle-section .row .col-left {
    -ms-flex-preferred-size: 18.57639%;
    flex-basis: 18.57639%;
  }
  .page-elections-registration .middle-section .row .col-right {
    -ms-flex-preferred-size: 29.45602%;
    flex-basis: 29.45602%;
  }
  .page-elections-registration .middle-section .row .col-center {
    max-width: 50.69444%;
    padding-left: 1.36rem;
    padding-right: 1.36rem;
  }
}

.page-elections-registration .middle-section .icon-item {
  width: 100%;
  max-width: 5.8em;
  margin: auto;
  margin-bottom: 1.36rem;
  font-size: 1.27rem;
  text-align: center;
  color: #007dc4;
}

@media (min-width: 1280px) {
  .page-elections-registration .middle-section .icon-item {
    font-size: 1.82rem;
  }
}

.page-elections-registration .middle-section .icon-item > * {
  margin-bottom: 0.68rem;
  text-decoration: none;
  color: #007dc4;
}

.page-elections-registration .middle-section .icon-item h4 {
  font-size: inherit;
  line-height: 0.85;
  font-weight: 700;
}

.page-elections-registration .middle-section .icon-item h4 span {
  display: inline-block;
}

.page-elections-registration .middle-section .icon-list {
  padding-left: 0;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: space-evenly;
  -ms-flex-pack: space-evenly;
  justify-content: space-evenly;
  margin-left: -0.5rem;
  margin-right: -0.5rem;
}

.page-elections-registration .middle-section .icon-list > li {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

@media (min-width: 576px) {
  .page-elections-registration .middle-section .icon-list > li {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 33.33333%;
    flex: 0 0 33.33333%;
  }
}

.page-elections-registration
  .middle-section
  .icon-list
  > li:first-child
  .icon-item {
  color: #f80b0b;
}

.page-elections-registration .middle-section .icon-list > li:last-child {
  -ms-flex-preferred-size: 100%;
  flex-basis: 100%;
}

.page-elections-registration
  .middle-section
  .icon-list
  > li:last-child
  .icon-item {
  max-width: 14.4em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

@media (min-width: 576px) {
  .page-elections-registration
    .middle-section
    .icon-list
    > li:last-child
    .icon-item {
    width: 71.28713%;
  }
}

.page-elections-registration
  .middle-section
  .icon-list
  > li:last-child
  .icon-item
  img {
  width: 10.55rem;
  max-width: 40.27778%;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 40.27778%;
  flex: 0 0 40.27778%;
}

.page-elections-registration
  .middle-section
  .icon-list
  > li:last-child
  .icon-item
  h4 {
  width: 14.64rem;
}

.page-elections-registration .bottom-section {
  padding-top: 0;
}

.page-elections-registration .content-box {
  padding: 1.36rem;
  padding-top: 1.82rem;
  padding-bottom: 0.82rem;
  background-color: #fff;
}

.page-elections-registration .content-box .inner {
  max-width: 66rem;
}

@media (min-width: 992px) {
  .page-elections-registration .content-box .row .col {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 49.93113%;
    flex: 0 0 49.93113%;
  }
  .page-elections-registration .content-box .row .col:first-child {
    padding-left: 4.13223%;
    padding-right: 13.7741%;
  }
}

.page-contact-us .content .inner {
  max-width: 63.23rem;
}

.page-contact-us .excerpt .inner {
  max-width: 36.23rem;
}

.page-contact-us .form-section {
  padding-top: 0;
  padding-bottom: 0;
}

.page-job-opportunities .content .inner {
  max-width: 55.59rem;
}

.page-job-opportunities .excerpt .inner {
  max-width: 25.64rem;
}

.page-job-opportunities .top-section {
  padding-top: 2.05rem;
  padding-bottom: 2.05rem;
}

.page-job-opportunities .middle-section {
  padding-top: 0;
  padding-bottom: 0;
}

.page-job-opportunities .middle-section .inner {
  max-width: 63.41rem;
}

.page-job-opportunities .middle-section .content-box {
  padding: 1.36rem;
  background-color: #fff;
}

@media (min-width: 768px) {
  .page-job-opportunities .middle-section .content-box {
    padding-left: 6.02151%;
    padding-right: 4.44444%;
  }
}

@media (min-width: 992px) {
  .page-job-opportunities .middle-section .row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
  .page-job-opportunities .middle-section .row .col {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 44.7558%;
    flex: 0 0 44.7558%;
  }
}

.page-home .header .header-right .main-menu {
  top: 12.05rem;
}

@media (min-width: 1280px) {
  .page-home .header .header-right .bg::before {
    -webkit-transform: skewX(-39deg) scaleX(110%) translateX(83%);
    transform: skewX(-39deg) scaleX(110%) translateX(83%);
  }
  .page-home .header .header-right .bg::after {
    left: 56.74157%;
  }
}

@media (min-width: 1280px) {
  .page-home .header .header-left {
    width: 36.14rem;
  }
  .page-home .header .header-left .tagline {
    width: 12.64rem;
  }
  .page-home .header .header-left .tagline > * {
    display: inline-block;
  }
  .page-home .header .header-left .tagline > *::after {
    content: ',';
  }
  .page-home .header .header-left .strips::before {
    content: '';
    display: block;
    width: 25.91rem;
    height: 17.05rem;
    background-color: rgba(0, 0, 255, 0.5);
    position: absolute;
    bottom: 0;
    left: -0.91rem;
    z-index: 3;
    background: linear-gradient(
      to bottom,
      #00aeef calc(31.5% - 1px),
      transparent 31.5%,
      transparent calc(55% - 1px),
      #00aeef 55%
    );
    -webkit-transform: rotate(-71deg) skew(-36deg, 20deg);
    transform: rotate(-71deg) skew(-36deg, 20deg);
    -webkit-transform-origin: bottom right;
    transform-origin: bottom right;
  }
  .page-home .header .header-left .strips::after {
    content: '';
    display: block;
    width: 53.64rem;
    height: 36.14rem;
    background-color: rgba(0, 0, 255, 0.5);
    position: absolute;
    bottom: 0;
    left: -28.64rem;
    z-index: 3;
    background: linear-gradient(
      to bottom,
      #122a3a calc(40% - 1px),
      transparent 40%,
      transparent calc(67% - 1px),
      #122a3a 67%
    );
    background-size: 100% 41.5%;
    background-repeat: no-repeat;
    background-position: top left;
    -webkit-transform: rotate(-71deg) skew(-36deg, 20deg);
    transform: rotate(-71deg) skew(-36deg, 20deg);
    -webkit-transform-origin: bottom right;
    transform-origin: bottom right;
  }
}

@media (min-width: 1280px) {
  .page-home .header .header-image {
    height: 45.91rem;
  }
}

.page-home .header .header-image .slides {
  padding-left: 0;
  list-style: none;
  margin: 0;
  position: absolute;
  inset: 0;
}

.page-home .header .header-image .slides .slick-list,
.page-home .header .header-image .slides .slick-track {
  height: 100%;
}

.page-home
  .header
  .header-image
  .slides:not(.slick-initialized)
  li:not(:first-child) {
  display: none;
}

.page-home .header .slide-dots {
  position: absolute;
  left: 5%;
  bottom: 5%;
  z-index: 2;
}

@media (min-width: 1280px) {
  .page-home .header .slide-dots {
    left: calc(100% - 38.64rem);
    bottom: 2.27rem;
  }
}

.page-home .header .slide-dots .slick-dots {
  padding-left: 0;
  list-style: none;
  margin: 0;
  padding: 0.4rem 0.6rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 0.6rem;
  background-color: rgba(0, 0, 0, 0.5);
  -webkit-transform: skewX(-39deg);
  transform: skewX(-39deg);
}

@media (min-width: 1280px) {
  .page-home .header .slide-dots .slick-dots {
    padding: 0;
    gap: 0.75rem;
    background-color: transparent;
  }
}

.page-home .header .slide-dots .slick-dots button {
  display: block;
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  border: 0;
  width: 1rem;
  aspect-ratio: 2 / 1;
  margin: 0;
  background-color: rgba(255, 255, 255, 0.75);
  border: 0;
  outline: 0 !important;
}

@media (min-width: 1280px) {
  .page-home .header .slide-dots .slick-dots button {
    width: 1.25rem;
  }
}

.page-home .header .slide-dots .slick-dots .slick-active button {
  background-color: #6cccf1;
}

.page-home .content {
  padding-bottom: 0;
}

.page-home .content .photo-list {
  padding-left: 0;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
  margin: 0;
  gap: 1rem;
}

@media (min-width: 1280px) {
  .page-home .content .photo-list {
    gap: 1.36rem;
  }
}

.page-home .content .photo-list.large-photos {
  margin-bottom: 2.27rem;
  gap: 1.36rem !important;
}

@media (max-width: 767.98px) {
  .page-home .content .photo-list.large-photos {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}

@media (max-width: 767.98px) {
  .page-home .content .photo-list.large-photos > li {
    -webkit-box-flex: 100%;
    -ms-flex: 100%;
    flex: 100%;
  }
}

.page-home .content .excerpt .container {
  min-height: 7.27rem;
}

.page-home .content .excerpt .inner {
  max-width: 75.23rem;
}

.page-home .content .top-section {
  padding-bottom: 1.23rem;
  background-color: transparent;
}

.page-home .content .top-section .row .col {
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .page-home .content .top-section .row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
  .page-home .content .top-section .row .col {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
  }
  .page-home .content .top-section .row .col-left {
    -ms-flex-preferred-size: 24.82639%;
    flex-basis: 24.82639%;
  }
}

@media (min-width: 768px) and (max-width: 1279.98px) {
  .page-home .content .top-section .row .col-left {
    -ms-flex-preferred-size: 45%;
    flex-basis: 45%;
    max-width: 429px;
  }
}

@media (min-width: 768px) {
  .page-home .content .top-section .row .col-left img {
    border: 1px solid #707070;
  }
  .page-home .content .top-section .row .col-center {
    max-width: 43.40278%;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
  }
}

@media (min-width: 768px) and (max-width: 1279.98px) {
  .page-home .content .top-section .row .col-center {
    max-width: 100%;
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
  }
}

@media (min-width: 768px) {
  .page-home .content .top-section .row .col-right {
    -ms-flex-preferred-size: 25.11574%;
    flex-basis: 25.11574%;
  }
}

@media (min-width: 768px) and (max-width: 1279.98px) {
  .page-home .content .top-section .row .col-right {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    max-width: calc(55% - 2rem);
  }
}

.page-home .content .top-section .event-box {
  border: 1px solid #707070;
  background-color: rgba(255, 255, 255, 0.65);
}

.page-home .content .top-section .event-box .heading {
  padding: 0.5rem;
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.5;
  text-align: center;
  color: #fff;
  background-color: #00aeef;
}

.page-home .content .top-section .event-box .body {
  padding: 0.68rem 1.59rem;
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.25;
}

.page-home .content .top-section .event-box .body ul {
  padding-left: 0;
  list-style: none;
  margin: 0;
}

.page-home .content .top-section .event-box .body li {
  min-height: 2.27rem;
  padding: 0.45rem 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.page-home .content .top-section .event-box .body li + li {
  border-top: 1px dotted #707070;
}

.page-home .content .top-section .event-box .body li .date {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 4.23rem;
  flex: 0 0 4.23rem;
}

.page-home .content .middle-section {
  padding-top: 0;
  padding-bottom: 2.95rem;
}

.page-home .content .middle-section .content-box {
  padding: 2.14em 1rem;
  font-size: 1.08rem;
  font-family: 'Crimson Text', serif;
  font-weight: 700;
  letter-spacing: 1.71;
  text-align: center;
  color: #fff;
  background-color: #003e77;
}

@media (min-width: 992px) {
  .page-home .content .middle-section .content-box {
    font-size: 1.27rem;
  }
}

.page-home .content .middle-section .content-box a {
  color: inherit;
}

.page-home .content .middle-section .content-box .inner {
  max-width: 59.05rem;
}

.page-home .content .middle-section .content-box .inner p {
  margin-bottom: 0.5rem;
}

.page-home .content .highlight-section {
  padding-top: 1.45rem;
  padding-bottom: 1.59rem;
  font-size: 1.08rem;
  line-height: 1.5;
  text-align: center;
  background-color: rgba(255, 255, 255, 0.65);
  border-top: 1px solid #707070;
  border-bottom: 1px solid #707070;
}

@media (min-width: 992px) {
  .page-home .content .highlight-section {
    font-size: 1.27rem;
  }
}

.page-home .content .highlight-section .text-xl {
  display: block;
  font-size: 1.54em;
  font-family: 'Crimson Text', serif;
  line-height: 1;
  letter-spacing: -0.08em;
  color: #007dc4;
}

.page-home .content .highlight-section p {
  margin: 0;
}

.page-home .content .bottom-section {
  padding-bottom: 2.95rem;
  padding-bottom: 1.27rem;
  font-size: 1.09rem;
  font-weight: 600;
  text-align: center;
  line-height: 1.4;
}

@media (min-width: 992px) {
  .page-home .content .bottom-section {
    font-size: 1.36rem;
  }
}

.page-home .content .bottom-section h3 {
  font-size: inherit;
  line-height: inherit;
  font-weight: 700;
  color: #003e77;
}

.page-home .content .extended-section {
  padding-top: 3.41rem;
  padding-bottom: 6.59rem;
  font-size: 0.82rem;
  font-weight: 600;
  line-height: 1.35;
  color: #fff;
  background-color: #00aeef;
  position: relative;
}

.page-home .content .extended-section::after {
  content: '';
  display: block;
  height: 1.23rem;
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(#237995),
    color-stop(25%, rgba(90, 126, 138, 0.49)),
    to(rgba(255, 255, 255, 0))
  );
  background: linear-gradient(
    to bottom,
    #237995,
    rgba(90, 126, 138, 0.49) 25%,
    rgba(255, 255, 255, 0)
  );
  mix-blend-mode: multiply;
  opacity: 0.71;
  position: absolute;
  inset: 0;
  bottom: auto;
}

.page-home .content .extended-section::before {
  content: '';
  display: block;
  width: 10.25rem;
  background: linear-gradient(
    to right,
    rgba(0, 62, 119, 0.38) calc(60% - 1px),
    transparent 60%
  );
  background-size: 38.5%;
  background-position: 0 0;
  -webkit-transform: skewX(-39deg);
  transform: skewX(-39deg);
  -webkit-transform-origin: bottom left;
  transform-origin: bottom left;
  position: absolute;
  right: 10.55rem;
  top: 0;
  bottom: 0;
}

@media (min-width: 768px) {
  .page-home .content .extended-section::before {
    width: 18.64rem;
    right: 7.27rem;
  }
}

.page-home .content .extended-section .inner {
  max-width: 66.82rem;
}

.page-home .content .extended-section .phone-list {
  padding-left: 0;
  list-style: none;
  margin: 0;
  gap: 1rem;
  display: -ms-grid;
  display: grid;
  grid-auto-columns: auto;
}

@media (min-width: 576px) {
  .page-home .content .extended-section .phone-list {
    grid-auto-flow: column;
    -ms-grid-rows: (minmax(0, 1fr)) [7];
    grid-template-rows: repeat(7, minmax(0, 1fr));
  }
}

@media (min-width: 768px) {
  .page-home .content .extended-section .phone-list {
    -ms-grid-rows: (minmax(0, 1fr)) [5];
    grid-template-rows: repeat(5, minmax(0, 1fr));
    gap: 1rem 2rem;
  }
}

@media (min-width: 768px) and (max-width: 1279.98px) {
  .page-home .content .extended-section .phone-list > *:nth-child(4) {
    -ms-grid-row-span: 2;
    grid-row-end: span 2;
  }
}

@media (min-width: 1280px) {
  .page-home .content .extended-section .phone-list {
    -ms-grid-rows: (minmax(0, 1fr)) [3];
    grid-template-rows: repeat(3, minmax(0, 1fr));
  }
  .page-home .content .extended-section .phone-list > * {
    min-width: 8.18rem;
  }
  .page-home .content .extended-section .phone-list > *:nth-child(2) {
    -ms-grid-row-span: 2;
    grid-row-end: span 2;
  }
}

.page-home .content .extended-section .phone-list > li > * {
  margin: 0;
}

.voting {
  text-align: center;
}

.voting h3 {
  font-size: 40px;
  font-weight: 700;
  color: #003e77;
}

.date-inner {
  display: flex;
}

.date {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 35px;
}

.date-inner-text p {
  margin-bottom: 0;
}

.date-inner-text {
  padding-top: 20px;
}

.date-inner-text p:nth-child(1) {
  font-size: 25px;
  font-weight: 700;
  color: #003e77;
}

.date-inner-text p:nth-child(2) {
  font-size: 25px;
  font-weight: 700;
  color: #007dc4;
}
