@charset "UTF-8";

/*===============================
=            I. Imports            =
===============================*/

* {
  -webkit-box-sizing: border-box !important;
          box-sizing: border-box !important;
}

/*=====  End of MIXINS  ======*/

button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: #037ABD;
  border: 0;
  border-radius: 3px;
  color: contrast-switch(#037ABD);
  cursor: pointer;
  display: inline-block;
  font-family: "mr-eaves-modern", sans-serif;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  font-weight: 600;
  line-height: 1;
  padding: 0.75em 1.5em;
  text-align: center;
  text-decoration: none;
  -webkit-transition: background-color 0.2s ease;
  transition: background-color 0.2s ease;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  vertical-align: middle;
  white-space: nowrap;
}

button:hover,
input[type="button"]:hover,
input[type="reset"]:hover,
input[type="submit"]:hover {
  background-color: #026297;
  color: contrast-switch(#026297);
}

button:focus,
input[type="button"]:focus,
input[type="reset"]:focus,
input[type="submit"]:focus {
  outline: none;
  outline-offset: none;
}

button:disabled,
input[type="button"]:disabled,
input[type="reset"]:disabled,
input[type="submit"]:disabled {
  cursor: not-allowed;
  opacity: 0.5;
}

button:disabled:hover,
input[type="button"]:disabled:hover,
input[type="reset"]:disabled:hover,
input[type="submit"]:disabled:hover {
  background-color: #037ABD;
}

fieldset {
  background-color: transparent;
  border: 0;
  margin: 0;
  padding: 0;
}

legend {
  font-weight: 600;
  margin-bottom: 0.375em;
  padding: 0;
}

label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.375em;
}

input,
select,
textarea {
  display: block;
  font-family: "mr-eaves-modern", sans-serif;
  font-size: 16px;
}

input[type="color"],
input[type="date"],
input[type="datetime"],
input[type="datetime-local"],
input[type="email"],
input[type="month"],
input[type="number"],
input[type="password"],
input[type="search"],
input[type="tel"],
input[type="text"],
input[type="time"],
input[type="url"],
input[type="week"],
input:not([type]),
textarea {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 3px;
  -webkit-box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.06);
          box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.06);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin-bottom: 0.75em;
  padding: 0.5em;
  -webkit-transition: border-color 0.2s ease;
  transition: border-color 0.2s ease;
  width: 100%;
}

input[type="color"]:hover,
input[type="date"]:hover,
input[type="datetime"]:hover,
input[type="datetime-local"]:hover,
input[type="email"]:hover,
input[type="month"]:hover,
input[type="number"]:hover,
input[type="password"]:hover,
input[type="search"]:hover,
input[type="tel"]:hover,
input[type="text"]:hover,
input[type="time"]:hover,
input[type="url"]:hover,
input[type="week"]:hover,
input:not([type]):hover,
textarea:hover {
  border-color: #b1b1b1;
}

input[type="color"]:focus,
input[type="date"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="email"]:focus,
input[type="month"]:focus,
input[type="number"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
input[type="tel"]:focus,
input[type="text"]:focus,
input[type="time"]:focus,
input[type="url"]:focus,
input[type="week"]:focus,
input:not([type]):focus,
textarea:focus {
  border-color: #037ABD;
  -webkit-box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.06), 0 0 5px rgba(3, 122, 189, 0.7);
          box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.06), 0 0 5px rgba(3, 122, 189, 0.7);
  outline: none;
}

input[type="color"]:disabled,
input[type="date"]:disabled,
input[type="datetime"]:disabled,
input[type="datetime-local"]:disabled,
input[type="email"]:disabled,
input[type="month"]:disabled,
input[type="number"]:disabled,
input[type="password"]:disabled,
input[type="search"]:disabled,
input[type="tel"]:disabled,
input[type="text"]:disabled,
input[type="time"]:disabled,
input[type="url"]:disabled,
input[type="week"]:disabled,
input:not([type]):disabled,
textarea:disabled {
  background-color: #f2f2f2;
  cursor: not-allowed;
}

input[type="color"]:disabled:hover,
input[type="date"]:disabled:hover,
input[type="datetime"]:disabled:hover,
input[type="datetime-local"]:disabled:hover,
input[type="email"]:disabled:hover,
input[type="month"]:disabled:hover,
input[type="number"]:disabled:hover,
input[type="password"]:disabled:hover,
input[type="search"]:disabled:hover,
input[type="tel"]:disabled:hover,
input[type="text"]:disabled:hover,
input[type="time"]:disabled:hover,
input[type="url"]:disabled:hover,
input[type="week"]:disabled:hover,
input:not([type]):disabled:hover,
textarea:disabled:hover {
  border: 1px solid #ddd;
}

input[type="color"]::-webkit-input-placeholder,
input[type="date"]::-webkit-input-placeholder,
input[type="datetime"]::-webkit-input-placeholder,
input[type="datetime-local"]::-webkit-input-placeholder,
input[type="email"]::-webkit-input-placeholder,
input[type="month"]::-webkit-input-placeholder,
input[type="number"]::-webkit-input-placeholder,
input[type="password"]::-webkit-input-placeholder,
input[type="search"]::-webkit-input-placeholder,
input[type="tel"]::-webkit-input-placeholder,
input[type="text"]::-webkit-input-placeholder,
input[type="time"]::-webkit-input-placeholder,
input[type="url"]::-webkit-input-placeholder,
input[type="week"]::-webkit-input-placeholder,
input:not([type])::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
  color: #9b9b9d;
}

input[type="color"]::-moz-placeholder,
input[type="date"]::-moz-placeholder,
input[type="datetime"]::-moz-placeholder,
input[type="datetime-local"]::-moz-placeholder,
input[type="email"]::-moz-placeholder,
input[type="month"]::-moz-placeholder,
input[type="number"]::-moz-placeholder,
input[type="password"]::-moz-placeholder,
input[type="search"]::-moz-placeholder,
input[type="tel"]::-moz-placeholder,
input[type="text"]::-moz-placeholder,
input[type="time"]::-moz-placeholder,
input[type="url"]::-moz-placeholder,
input[type="week"]::-moz-placeholder,
input:not([type])::-moz-placeholder,
textarea::-moz-placeholder {
  color: #9b9b9d;
}

input[type="color"]::-ms-input-placeholder,
input[type="date"]::-ms-input-placeholder,
input[type="datetime"]::-ms-input-placeholder,
input[type="datetime-local"]::-ms-input-placeholder,
input[type="email"]::-ms-input-placeholder,
input[type="month"]::-ms-input-placeholder,
input[type="number"]::-ms-input-placeholder,
input[type="password"]::-ms-input-placeholder,
input[type="search"]::-ms-input-placeholder,
input[type="tel"]::-ms-input-placeholder,
input[type="text"]::-ms-input-placeholder,
input[type="time"]::-ms-input-placeholder,
input[type="url"]::-ms-input-placeholder,
input[type="week"]::-ms-input-placeholder,
input:not([type])::-ms-input-placeholder,
textarea::-ms-input-placeholder {
  color: #9b9b9d;
}

input[type="color"]::placeholder,
input[type="date"]::placeholder,
input[type="datetime"]::placeholder,
input[type="datetime-local"]::placeholder,
input[type="email"]::placeholder,
input[type="month"]::placeholder,
input[type="number"]::placeholder,
input[type="password"]::placeholder,
input[type="search"]::placeholder,
input[type="tel"]::placeholder,
input[type="text"]::placeholder,
input[type="time"]::placeholder,
input[type="url"]::placeholder,
input[type="week"]::placeholder,
input:not([type])::placeholder,
textarea::placeholder {
  color: #9b9b9d;
}

textarea {
  resize: vertical;
}

[type="checkbox"],
[type="radio"] {
  display: inline;
  margin-right: 0.375em;
}

[type="file"] {
  margin-bottom: 0.75em;
  width: 100%;
}

select {
  margin-bottom: 0.75em;
  width: 100%;
}

[type="checkbox"]:focus,
[type="radio"]:focus,
[type="file"]:focus,
select:focus {
  outline: 3px solid rgba(3, 122, 189, 0.6);
  outline-offset: 2px;
}

.form-title {
  border-bottom: 1px solid #dedede;
  padding-bottom: 20px;
  margin-bottom: 20px;
}

.form-section .form-group label {
  text-transform: uppercase;
  font-size: 14px;
}

.form-section .form-group input[type="text"] {
  width: 100%;
  font-size: 16px;
  border-radius: 0;
  height: auto;
  -webkit-box-shadow: none;
          box-shadow: none;
  margin-bottom: 0px;
}

.form-section.grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
      grid-template-columns: 1fr 1fr;
  grid-gap: 25px;
}

html {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

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

html,
body {
  height: 100%;
}

body {
  margin: 0;
}

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

dl {
  margin: 0;
}

dt {
  font-weight: 600;
  margin: 0;
}

dd {
  margin: 0;
}

ul.bullets {
  list-style-type: disc;
  list-style-position: inside;
}

ol {
  list-style-type: decimal-leading-zero;
  margin-left: 20px;
}

figure {
  margin: 0;
}

img,
picture {
  margin: 0;
  max-width: 100%;
}

table {
  border-collapse: collapse;
  margin: 1.5em 0;
  table-layout: fixed;
  text-align: left;
  width: 100%;
}

thead {
  line-height: 1.2;
  vertical-align: bottom;
}

tbody {
  vertical-align: top;
}

tr {
  border-bottom: 1px solid #ddd;
}

th {
  font-weight: 600;
}

th,
td {
  padding: 0.75em 0.75em 0.75em 0;
}

html {
  color: #58595B;
  font-family: "mr-eaves-modern", sans-serif;
  font-size: 100%;
  line-height: 1.5;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "mr-eaves-modern", sans-serif;
  font-size: 1.333em;
  margin: 0 0;
}

p {
  margin: 0 0 0.75em;
}

ul + p {
  margin-top: 0.75em;
}

a {
  color: #037ABD;
  -webkit-text-decoration-skip: ink;
          text-decoration-skip: ink;
  -webkit-transition: color 0.2s ease;
  transition: color 0.2s ease;
}

a:hover {
  color: #025c8e;
}

a:focus {
  outline: none;
  outline-offset: none;
}

a.link-white {
  color: #fff;
}

a.link-white:hover {
  color: #fff;
}

hr {
  border-bottom: 1px solid #ddd;
  border-left: 0;
  border-right: 0;
  border-top: 0;
  margin: 1.5em 0;
}

h2 {
  text-transform: uppercase;
  font-size: 40px;
  line-height: 40px;
  position: relative;
}

h2.section-title::before {
  content: "";
  background: #000;
  height: 5px;
  width: 90%;
  margin-bottom: 18px;
  max-width: 750px;
  display: block;
}

/*=======================================
=            Utility Classes            =
=======================================*/

div[class*="grid-"],
section[class^="grid-"] {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
  grid-gap: 25px;
  width: 100%;
}

@media (min-width: 768px) {
  .grid-2 {
    -ms-grid-columns: (1fr)[2] !important;
        grid-template-columns: repeat(2, 1fr) !important;
  }
}

@media (min-width: 768px) {
  .grid-3 {
    -ms-grid-columns: (1fr)[2] !important;
        grid-template-columns: repeat(2, 1fr) !important;
  }
}

@media (min-width: 1024px) {
  .grid-3 {
    -ms-grid-columns: (1fr)[3] !important;
        grid-template-columns: repeat(3, 1fr) !important;
  }
}

@media (min-width: 768px) {
  .grid-4 {
    -ms-grid-columns: (1fr)[2] !important;
        grid-template-columns: repeat(2, 1fr) !important;
  }
}

@media (min-width: 1024px) {
  .grid-4 {
    -ms-grid-columns: (1fr)[3] !important;
        grid-template-columns: repeat(3, 1fr) !important;
  }
}

@media (min-width: 1400px) {
  .grid-4 {
    -ms-grid-columns: (1fr)[4] !important;
        grid-template-columns: repeat(4, 1fr) !important;
  }
}

.uppercase {
  text-transform: uppercase;
  letter-spacing: .5px;
}

/*=====  End of Utility Classes  ======*/

/*=============================================>>>>>
= MIXINS  =
===============================================>>>>>*/

/* Flexbox Mixin */

/* This stylesheet generated by Transfonter (https://transfonter.org) on February 28, 2018 3:11 PM */

/*----------- Regular -----------*/

@font-face {
  font-family: 'MrEavesXLSanOT';
  src: url("/fonts/MrEavesXLSanOT-Thin.woff2") format("woff2"), url("/fonts/MrEavesXLSanOT-Thin.woff") format("woff");
  font-weight: 100;
  font-style: normal;
}

@font-face {
  font-family: 'MrEavesXLSanOT';
  src: url("/fonts/MrEavesXLSanOT-Light.woff2") format("woff2"), url("/fonts/MrEavesXLSanOT-Light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: 'MrEavesXLSanOT';
  src: url("/fonts/MrEavesXLSanOT-Book.woff2") format("woff2"), url("/fonts/MrEavesXLSanOT-Book.woff") format("woff");
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: 'MrEavesXLSan';
  src: url("/fonts/MrEavesXLSanOT-Reg.woff2") format("woff2"), url("/fonts/MrEavesXLSanOT-Reg.woff") format("woff");
  font-weight: 600;
  font-style: normal;
}

@font-face {
  font-family: 'MrEavesXLSan';
  src: url("/fonts/MrEavesXLSanOT-Bold.woff2") format("woff2"), url("/fonts/MrEavesXLSanOT-Bold.woff") format("woff");
  font-weight: 800;
  font-style: normal;
}

@font-face {
  font-family: 'MrEavesXLSanOT';
  src: url("/fonts/MrEavesXLSanOT-Heavy.woff2") format("woff2"), url("/fonts/MrEavesXLSanOT-Heavy.woff") format("woff");
  font-weight: 900;
  font-style: normal;
}

/*----------- NARROW/CONDENSED -----------*/

@font-face {
  font-family: 'MrEavesXLSanNarOT';
  src: url("/fonts/MrEavesXLSanNarOT-Thin.woff2") format("woff2"), url("/fonts/MrEavesXLSanNarOT-Thin.woff") format("woff");
  font-weight: 100;
  font-style: normal;
}

@font-face {
  font-family: 'MrEavesXLSanNarOT';
  src: url("/fonts/MrEavesXLSanNarOT-ThinItalic.woff2") format("woff2"), url("/fonts/MrEavesXLSanNarOT-ThinItalic.woff") format("woff");
  font-weight: 100;
  font-style: italic;
}

@font-face {
  font-family: 'MrEavesXLSanNarOT';
  src: url("/fonts/MrEavesXLSanNarOT-Light.woff2") format("woff2"), url("/fonts/MrEavesXLSanNarOT-Light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: 'MrEavesXLSanNarOT';
  src: url("/fonts/MrEavesXLSanNarOT-LightItalic.woff2") format("woff2"), url("/fonts/MrEavesXLSanNarOT-LightItalic.woff") format("woff");
  font-weight: 300;
  font-style: italic;
}

@font-face {
  font-family: 'MrEavesXLSanNarOT';
  src: url("/fonts/MrEavesXLSanNarOT-Reg.woff2") format("woff2"), url("/fonts/MrEavesXLSanNarOT-Reg.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'MrEavesXLSanNarOT';
  src: url("/fonts/MrEavesXLSanNarOT-RegItalic.woff2") format("woff2"), url("/fonts/MrEavesXLSanNarOT-RegItalic.woff") format("woff");
  font-weight: normal;
  font-style: italic;
}

@font-face {
  font-family: 'MrEavesXLSanNarOT';
  src: url("/fonts/MrEavesXLSanNarOT-Book.woff2") format("woff2"), url("/fonts/MrEavesXLSanNarOT-Book.woff") format("woff");
  font-weight: 600;
  font-style: normal;
}

@font-face {
  font-family: 'MrEavesXLSanNarOT';
  src: url("/fonts/MrEavesXLSanNarOT-BookItalic.woff2") format("woff2"), url("/fonts/MrEavesXLSanNarOT-BookItalic.woff") format("woff");
  font-weight: 600;
  font-style: italic;
}

@font-face {
  font-family: 'MrEavesXLSanNarOT';
  src: url("/fonts/MrEavesXLSanNarOT-Bold.woff2") format("woff2"), url("/fonts/MrEavesXLSanNarOT-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: 'MrEavesXLSanNarOT';
  src: url("/fonts/MrEavesXLSanNarOT-BoldItalic.woff2") format("woff2"), url("/fonts/MrEavesXLSanNarOT-BoldItalic.woff") format("woff");
  font-weight: 700;
  font-style: italic;
}

@font-face {
  font-family: 'MrEavesXLSanNarOT';
  src: url("/fonts/MrEavesXLSanNarOT-Heavy.woff2") format("woff2"), url("/fonts/MrEavesXLSanNarOT-Heavy.woff") format("woff");
  font-weight: 800;
  font-style: normal;
}

body {
  font-family: "MrEavesXLSanOT";
}

a[href*=".pdf"]:after {
  content: "\F1C1";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 16px;
  margin-left: 8px;
}

.toggle-wrapper button:nth-of-type(2) {
  display: none;
}

@supports (display: grid) {
  .toggle-wrapper button:nth-of-type(2) {
    display: inline;
  }
}

.button-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.button-group .btn {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}

.button-group .btn + .btn {
  margin-left: 10px;
}

.btn {
  padding: 8px;
  margin: 8px 0;
  display: inline-block;
  -webkit-transition: all .2s;
  transition: all .2s;
  text-transform: uppercase;
  font-size: 12px;
  text-decoration: none;
  letter-spacing: 1px;
  text-align: center;
  min-width: 100px;
  font-family: "MrEavesXLSanOT";
  font-weight: 700;
}

@media (min-width: 1400px) {
  .btn {
    font-size: 14px;
  }
}

.btn .ico {
  padding-right: 5px;
  font-size: 18px;
}

.btn-import-auction {
  background: #F6882E;
  color: #fff;
  cursor: pointer;
  padding: 1rem;
}

.btn-import-auction:hover {
  opacity: .9;
  -webkit-transition: all .7s;
  transition: all .7s;
}

.btn--warning {
  color: #d43d3d;
}

.btn--warning:hover {
  background: #d43d3d;
  color: #fff;
}

.btn--ghost {
  color: #999;
  border: 1px solid #ddd;
  background: transparent;
}

.btn--ghost--orange {
  color: #F6882E;
  border-color: #F6882E;
}

.btn--ghost--orange:hover {
  color: #c56d25;
  border-color: #c56d25;
}

.btn--ghost--white {
  color: #fff;
  border-color: #fff;
}

.btn--ghost--white:hover {
  color: #70963E;
  border-color: #fff;
  background: #fff;
}

.btn--outlined {
  border: 1px solid #037ABD;
  color: #037ABD;
}

.btn--outlined_reversed {
  border: 1px solid #fff;
  color: #fff;
}

.btn--outlined_reversed:hover {
  background: #fff;
  color: #037ABD;
}

.btn--orange {
  background: #F6882E;
}

.btn--orange:hover {
  background: #dd7a29;
}

.btn--success {
  background: #70963E;
  color: #fff;
}

.btn--success:hover {
  background: #658738;
  color: #fff;
}

.btn--submit {
  text-transform: uppercase;
  border: 1px solid transparent;
  border-radius: 0px;
  height: 47px;
  width: 150px;
  color: #fff;
  font-size: 12px;
  letter-spacing: .5px;
  outline: none;
  background: #DBA831;
  position: relative;
  overflow: hidden;
}

.btn--submit span.bar {
  content: '';
  background: #FFD166;
  width: 100%;
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  bottom: 0;
  width: 0px;
}

.btn--submit .message {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  text-align: center;
  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;
  -webkit-transform: scale(1);
          transform: scale(1);
}

.btn--submit .success {
  opacity: 0;
  display: block;
  -webkit-transform: scale(0.4);
          transform: scale(0.4);
}

.component-title {
  font-size: 18px;
  color: #414042;
  text-transform: uppercase;
  margin: 10px 0 25px;
  padding-top: 25px;
}

.component-body,
.content-block p,
.page-component p,
.content-block ul li,
.page-component ul li,
.accordion-wrapper .accordion.expanded .accordion--details p,
ul.list,
ul.list-columns,
p {
  font-size: 1.25rem;
  line-height: 1.75rem;
  margin-bottom: 0;
}

.component-body:first-of-type,
.content-block p:first-of-type,
.page-component p:first-of-type,
.content-block ul li:first-of-type,
.page-component ul li:first-of-type,
.accordion-wrapper .accordion.expanded .accordion--details p:first-of-type,
ul.list:first-of-type,
ul.list-columns:first-of-type,
p:first-of-type {
  margin-top: 20px;
}

.component-title {
  text-transform: uppercase;
  color: #00354C;
  font-weight: 600;
  margin-bottom: 8px;
}

.page-component p + p {
  padding-top: 20px;
}

.content-block,
.page-component {
  width: 100%;
}

.content-block ul,
.page-component ul {
  list-style: disc;
  list-style-position: outside;
  margin-left: 15px;
}

.content-block p + p,
.page-component p + p {
  padding-top: 20px;
}

.content-block_title,
.accordion-wrapper .accordion--header_title,
.page-component_title {
  color: #00354C;
  font-size: 1.75em;
  line-height: 1.05em;
}

.content-block--with-image {
  content: "";
  clear: both;
  display: table;
}

.content-block--with-image img {
  padding-bottom: 25px;
}

@media (min-width: 768px) {
  .content-block--with-image img {
    float: left;
    width: 35%;
    max-width: 450px;
    padding-right: 25px;
    max-height: 450px;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: top;
       object-position: top;
    font-family: 'object-fit: cover;object-position: top;';
  }
}

@media (min-width: 768px) {
  .content-block--with-image_right img {
    float: right;
    padding-right: 0;
    padding-left: 25px;
    max-height: 300px;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: top;
       object-position: top;
    font-family: 'object-fit: cover;object-position: top;';
  }
}

h2.section-title + .content-block {
  margin-top: 50px;
}

@media (min-width: 1024px) {
  .page-component.component-content.has-contact {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 315px;
        grid-template-columns: 1fr 315px;
    grid-gap: 25px;
  }
}

.page-component.component-content.has-contact .contact-block {
  padding: 35px 25px;
  background: #dedede;
}

/*===============================================
=            Full Width Image at Top            =
===============================================*/

.full-width-img {
  max-height: 500px;
  overflow: hidden;
  margin-bottom: 20px;
}

.full-width-img img {
  -o-object-fit: cover;
     object-fit: cover;
  font-family: 'object-fit: cover;';
  height: 100%;
}

/*=====  End of Full Width Image at Top  ======*/

.accordion-wrapper .accordion--header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-transition: .15s;
  transition: .15s;
}

.accordion-wrapper .accordion--header_title {
  font-size: 26px;
  -webkit-transition: .2s;
  transition: .2s;
  cursor: pointer;
  margin-right: 25px;
  text-transform: none;
}

.accordion-wrapper .accordion--header .svg-inline--fa {
  -webkit-transition: .3s;
  transition: .3s;
}

.accordion-wrapper .accordion--header_state {
  margin-right: 15px;
}

.accordion-wrapper .accordion--header_state i {
  transition: -webkit-transform .2s;
  -webkit-transition: -webkit-transform .2s;
  transition: transform .2s;
  transition: transform .2s, -webkit-transform .2s;
}

.accordion-wrapper .accordion--details {
  transition: max-height 0s .25s, -webkit-transform .3s ease-in-out;
  -webkit-transition: max-height 0s .25s, -webkit-transform .3s ease-in-out;
  transition: transform .3s ease-in-out, max-height 0s .25s;
  transition: transform .3s ease-in-out, max-height 0s .25s, -webkit-transform .3s ease-in-out;
  -webkit-transform-origin: top;
          transform-origin: top;
  -webkit-transform: scaleY(0);
          transform: scaleY(0);
  max-height: 0;
  overflow: hidden;
  margin-bottom: 25px;
}

.accordion-wrapper .accordion.expanded .accordion--header h2.accordion--header_title {
  color: #70963E;
}

.accordion-wrapper .accordion.expanded .accordion--header .svg-inline--fa {
  color: #70963E;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transform-origin: center;
          transform-origin: center;
}

.accordion-wrapper .accordion.expanded .accordion--header_state i {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transform-origin: center center;
          transform-origin: center center;
}

.accordion-wrapper .accordion.expanded .accordion--details {
  max-height: 100000px;
  -webkit-transform: scaleY(1);
          transform: scaleY(1);
  transition: max-height 0s, -webkit-transform 0.3s ease-in-out;
  -webkit-transition: max-height 0s, -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, max-height 0s;
  transition: transform 0.3s ease-in-out, max-height 0s, -webkit-transform 0.3s ease-in-out;
}

.accordion-wrapper .accordion.expanded .accordion--details p {
  margin-top: 5px;
}

.accordion-wrapper .accordion.expanded .accordion--details p ul {
  list-style: disc;
  list-style-position: outside;
  margin-left: 20px;
}

.accordion-wrapper .accordion.expanded .accordion--details p ul li + li {
  margin-top: 10px;
}

.accordion-wrapper .accordion.expanded .accordion--details p p + ul,
.accordion-wrapper .accordion.expanded .accordion--details p ul + p {
  margin-top: 15px;
}

.accordion-wrapper .accordion.expanded .accordion--details > p > p + p {
  margin-top: 15px;
  padding-top: 5px;
}

.accordion-wrapper .accordion + .accordion {
  margin-top: 20px;
  padding-top: 25px;
  border-top: 1px solid #dedede;
}

/*============================================
=            Admin Page Component            =
============================================*/

.department-component-box .image-slider-component-wrap {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
      grid-template-columns: 1fr 1fr;
  grid-gap: 25px;
  min-height: 200px;
}

.department-component-box .image-slider-component-wrap p {
  font-family: "mr-eaves-modern", sans-serif;
}

.department-component-box .image-slider-component-wrap .image-slider-component-item {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr 1fr;
      grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 25px;
}

.department-component-box .image-slider-component-wrap .image-slider-component-img {
  background-size: cover;
}

/*=====  End of Admin Page Component  ======*/

.image-slider-component-wrap .slides-wrapper {
  width: 100%;
}

@media (min-width: 768px) {
  .image-slider-component-wrap .slides-wrapper {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 50px 1fr;
        grid-template-columns: 1fr 50px 1fr;
    -ms-grid-rows: 50px 1fr 50px;
        grid-template-rows: 50px 1fr 50px;
    grid-column-gap: 25px;
  }
}

@media all and (-ms-high-contrast: none) and (min-width: 768px), (-ms-high-contrast: active) and (min-width: 768px) {
  .image-slider-component-wrap .slides-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

.image-slider-component-wrap .image-slider-image-wrapper {
  width: 100%;
  height: 100%;
  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: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: relative;
  overflow: hidden;
  -ms-grid-column: 1;
      grid-column-start: 1;
  -ms-grid-column-span: 2;
  grid-column-end: 3;
  -ms-grid-row: 1;
      grid-row-start: 1;
  -ms-grid-row-span: 2;
  grid-row-end: 3;
}

.image-slider-component-wrap .image-slider-image-wrapper > div:first-of-type {
  height: 100%;
}

.image-slider-component-wrap .image-slider-image-wrapper .image-slider-component-img {
  margin-bottom: 0;
  line-height: 0;
  min-height: 300px;
  max-height: 400px;
  height: 100%;
}

.image-slider-component-wrap .image-slider-image-wrapper .image-slider-component-img img {
  -o-object-fit: cover;
     object-fit: cover;
  font-family: 'object-fit: cover;';
  width: 100%;
  height: 100%;
}

.image-slider-component-wrap .image-slider-image-wrapper .previous-arrow {
  position: absolute;
  left: 10px;
  top: calc(50% - 25px);
  font-size: 40px;
  display: inline-block;
  height: auto !important;
}

.image-slider-component-wrap .image-slider-image-wrapper .previous-arrow a {
  color: rgba(250, 250, 250, 0.75);
}

.image-slider-component-wrap .image-slider-image-wrapper .next-arrow {
  position: absolute;
  right: 65px;
  top: calc(50% - 30px);
  font-size: 40px;
}

.image-slider-component-wrap .image-slider-image-wrapper .next-arrow a {
  color: rgba(250, 250, 250, 0.75);
}

@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .image-slider-component-wrap .image-slider-image-wrapper .next-arrow {
    right: 10px;
  }
}

.image-slider-component-wrap .image-slider-text-wrapper {
  -ms-grid-column: 2;
      grid-column-start: 2;
  -ms-grid-column-span: 2;
  grid-column-end: 4;
  -ms-grid-row: 2;
      grid-row-start: 2;
  -ms-grid-row-span: 2;
  grid-row-end: 4;
  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;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 300px;
  background: #70963E;
  padding: 25px 50px;
  border-top: 20px solid #fff;
  color: #fff;
}

@media (min-width: 768px) {
  .image-slider-component-wrap .image-slider-text-wrapper {
    border-left: 20px solid #fff;
  }
}

.image-slider-component-wrap .image-slider-text-wrapper .image-slider-component-txt p + p {
  margin-top: 10px;
}

.image-slider-component-wrap .image-slider-indicator {
  width: 100%;
  height: 15px;
  position: relative;
  z-index: 4;
  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;
}

@media (min-width: 768px) {
  .image-slider-component-wrap .image-slider-indicator {
    width: calc(100% - 49px);
  }
}

@media all and (-ms-high-contrast: none) and (min-width: 768px), (-ms-high-contrast: active) and (min-width: 768px) {
  .image-slider-component-wrap .image-slider-indicator {
    width: 100%;
  }
}

.image-slider-component-wrap .image-slider-indicator button {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 33.3333%;
          flex: 1 0 33.3333%;
  border-radius: 0px;
  background: #F6C22F;
  height: 15px;
  width: 100%;
  display: block;
  padding: 0;
  margin: 0;
}

.image-slider-component-wrap .image-slider-indicator button:nth-of-type(2n) {
  background: #d1a528;
}

.image-slider-component-wrap .image-slider-indicator button:nth-of-type(3n) {
  background: #b99223;
}

.content-wrapper.red .image-slider-component-wrap .image-slider-text-wrapper {
  background: #F0CF65 !important;
}

.content-wrapper.yellow .image-slider-component-wrap .image-slider-text-wrapper {
  background: #037ABD !important;
}

.content-wrapper.green .image-slider-component-wrap .image-slider-text-wrapper,
.content-wrapper.heal .image-slider-component-wrap .image-slider-text-wrapper {
  background: #F6C22F !important;
}

@media (min-width: 768px) {
  .contact-block-wrapper {
    width: 50%;
  }
}

@media (min-width: 1024px) {
  .contact-block-wrapper {
    width: 33%;
  }
}

.contact-block {
  padding: 10px;
}

.contact-block--header_title {
  color: #00354C;
  font-size: 36px;
}

.contact-block--details {
  color: #58595B;
  padding-top: 25px;
}

.contact-block--details_title {
  text-transform: uppercase;
  font-size: 16px;
  font-weight: bolder;
  margin-bottom: 10px;
}

.contact-block--details address {
  font-style: normal;
}

.contact-block--details address .note {
  display: block;
  font-style: italic;
  font-size: 14px;
}

.contact-block--details address a {
  text-decoration: none;
}

.contact-block ul.social-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  list-style: none;
  margin-left: 0;
  margin-top: 8px;
}

.contact-block ul.social-links li {
  margin-top: 0 !important;
}

.contact-block ul.social-links li a {
  font-size: 24px;
}

.contact-block ul.social-links li.twitter a {
  color: #1DA1F2;
}

.contact-block ul.social-links li.instagram a {
  color: #F6C22F;
}

.contact-block ul.social-links li + li {
  margin-left: 30px;
}

.quick-link-component-box.quick-link-contact-box {
  -webkit-box-pack: center !important;
      -ms-flex-pack: center !important;
          justify-content: center !important;
}

.contact-block--details_wrapper + .contact-block--details_wrapper {
  border-top: 1px solid #ababab;
  padding-top: 15px;
  margin-top: 15px;
}

/*----------  Styles for single contact block  ----------*/

.component-contact .contact-block {
  padding: 30px;
  background: #dedede;
}

@media (min-width: 768px) {
  .component-contact .contact-block--details {
    display: -ms-grid;
    display: grid;
        -ms-grid-columns: 1fr 25px 1fr 25px 1fr;
        grid-template-columns: repeat(3, 1fr);
        grid-template-areas: "cbd-1 cbd-2 cbd-3";
    grid-gap: 25px;
  }

  .component-contact .contact-block--details .contact-block--details_wrapper:first-of-type {
    grid-area: cbd-1;
  }

  .component-contact .contact-block--details .contact-block--details_wrapper:nth-of-type(2) {
    grid-area: cbd-2;
  }

  .component-contact .contact-block--details .contact-block--details_wrapper:last-of-type {
    grid-area: cbd-3;
  }

@media (min-width: 768px) {
  .component-contact .contact-block--details .contact-block--details_wrapper:first-of-type {
      -ms-grid-row: 1;
      -ms-grid-column: 1;
  }
  .component-contact .contact-block--details .contact-block--details_wrapper:nth-of-type(2) {
      -ms-grid-row: 1;
      -ms-grid-column: 3;
  }
  .component-contact .contact-block--details .contact-block--details_wrapper:last-of-type {
      -ms-grid-row: 1;
      -ms-grid-column: 5;
  }
}
}

@media all and (min-width: 768px) and (-ms-high-contrast: none), (min-width: 768px) and (-ms-high-contrast: active) {
  .component-contact .contact-block--details {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }

  .component-contact .contact-block--details .contact-block--details_wrapper {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
            flex: 1 1 auto;
  }
}

@media (min-width: 768px) {
  .component-contact .contact-block--details_wrapper + .contact-block--details_wrapper {
    border-top: none;
    padding: 0;
    margin: 0;
  }
}

.logo-gallery--wrapper {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[4] !important;
      grid-template-columns: repeat(4, 1fr) !important;
  grid-gap: 25px;
}

.logo-gallery--wrapper .logo a {
  display: block;
  position: relative;
  color: #fff;
  text-decoration: none;
}

.logo-gallery--wrapper .logo a:hover .logo--title-wrapper {
  opacity: 1;
}

.logo-gallery--wrapper .logo a:hover .logo--title-wrapper .logo--title {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.logo-gallery--wrapper .logo a:hover .logo--title-wrapper .logo--title + h4 {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.logo-gallery--wrapper .logo--title-wrapper {
  opacity: 0;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  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;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-transition: .25s;
  transition: .25s;
  background: rgba(33, 33, 33, 0.9);
}

.logo-gallery--wrapper .logo--title-wrapper .logo--title {
  text-transform: uppercase;
  font-size: 16px;
  letter-spacing: .5px;
  -webkit-transform: translateY(5px);
          transform: translateY(5px);
  -webkit-transition: .35s;
  transition: .35s;
}

.logo-gallery--wrapper .logo--title-wrapper .logo--title + h4 {
  font-size: 14px;
  text-decoration: underline;
  -webkit-transform: translateY(5px);
          transform: translateY(5px);
  -webkit-transition: .45s;
  transition: .45s;
}

.quick-links-wrapper {
  grid-gap: 25px;
}

@media (min-width: 1024px) {
  .quick-links-wrapper {
    -ms-grid-columns: (32%)[3];
        grid-template-columns: repeat(3, 32%);
  }
}

@media all and (-ms-high-contrast: none) and (min-width: 1200px), (-ms-high-contrast: active) and (min-width: 1200px) {
  .quick-links-wrapper {
    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 all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .quick-links-wrapper .quick-link-block {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 32%;
            flex: 0 0 32%;
  }

  .quick-links-wrapper .quick-link-block div {
    max-width: 100%;
  }
}

.quick-links-wrapper .quick-link-block {
  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;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background: #F6C22F;
  padding: 50px 35px;
  color: #fff;
}

.quick-links-wrapper .quick-link-block:first-of-type {
  background: #b99223;
}

.quick-links-wrapper .quick-link-block:last-of-type {
  background: #f9d778;
}

.quick-links-wrapper .quick-link-block--title {
  text-transform: uppercase;
  font-size: 2.25em;
  line-height: 1.125em;
  text-align: center;
  color: #fff;
}

.quick-links-wrapper .quick-link-block--title a {
  text-transform: uppercase;
  text-align: center;
  color: #fff;
  text-decoration: none;
}

.quick-links-wrapper .quick-link-block--subtitle {
  text-transform: uppercase;
  font-size: 24px;
  line-height: 24px;
  text-align: center;
}

@media all and (-ms-high-contrast: none) and (min-width: 1200px), (-ms-high-contrast: active) and (min-width: 1200px) {
  .quick-links-wrapper .quick-link-block .quick-link-block {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 32%;
            flex: 0 0 32%;
  }
}

.quick-links-wrapper .quick-link-block {
  text-decoration: none;
}

.quick-links-wrapper.links3.links2.links1 > div[class=""] {
  display: block;
  -ms-grid-columns: (1fr)[1];
      grid-template-columns: repeat(1, 1fr);
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  grid-gap: 25px;
}

@media (min-width: 768px) {
  .quick-links-wrapper.links3.links2.links1 > div[class=""] {
    display: -ms-grid;
    display: grid;
        -ms-grid-columns: 32% 25px 32% 25px 32%;
        grid-template-columns: repeat(3, 32%);
        grid-template-areas: "qlb3-a qlb3-b qlb3-c";
    grid-gap: 25px;
  }
}

@media all and (-ms-high-contrast: none) and (min-width: 1200px), (-ms-high-contrast: active) and (min-width: 1200px) {
  .quick-links-wrapper.links3.links2.links1 > div[class=""] {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}

.quick-links-wrapper.links3.links2.links1 > div[class=""] .quick-link-block {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 49%;
          flex: 0 0 49%;
}

@media all and (-ms-high-contrast: none) and (min-width: 1200px), (-ms-high-contrast: active) and (min-width: 1200px) {
  .quick-links-wrapper.links3.links2.links1 > div[class=""] .quick-link-block {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 32%;
            flex: 0 1 32%;
  }
}

.quick-links-wrapper.links3.links2.links1 > div[class=""] .quick-link-block:first-of-type {
  grid-area: qlb3-a;
}

.quick-links-wrapper.links3.links2.links1 > div[class=""] .quick-link-block:nth-of-type(2) {
  grid-area: qlb3-b;
}

.quick-links-wrapper.links3.links2.links1 > div[class=""] .quick-link-block:last-of-type {
  grid-area: qlb3-c;
}

@media (min-width: 768px) {
  .quick-links-wrapper.links3.links2.links1 > div[class=""] .quick-link-block:first-of-type {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
  .quick-links-wrapper.links3.links2.links1 > div[class=""] .quick-link-block:nth-of-type(2) {
    -ms-grid-row: 1;
    -ms-grid-column: 3;
  }
  .quick-links-wrapper.links3.links2.links1 > div[class=""] .quick-link-block:last-of-type {
    -ms-grid-row: 1;
    -ms-grid-column: 5;
  }
}

.quick-links-wrapper.links2.links1 > div[class=""] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .quick-links-wrapper.links2.links1 > div[class=""] {
    width: 100%;
  }

  .quick-links-wrapper.links2.links1 > div[class=""] .quick-link-block {
    -webkit-box-flex: 1 !important;
        -ms-flex: 1 1 !important;
            flex: 1 1 !important;
  }
}

.quick-links-wrapper.links2.links1 > div[class=""] .quick-link-block {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 49%;
          flex: 0 0 49%;
}

.quick-links-wrapper.links1 > div[class=""] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .quick-links-wrapper.links1 > div[class=""] {
    width: 100%;
  }

  .quick-links-wrapper.links1 > div[class=""] .quick-link-block {
    -webkit-box-flex: 1 !important;
        -ms-flex: 1 1 auto !important;
            flex: 1 1 auto !important;
  }
}

.quick-links-wrapper.links1 > div[class=""] .quick-link-block {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
}

@media (min-width: 768px) {
  .quick-links-wrapper.hasContact {
    display: -ms-grid !important;
    display: grid !important;
    -ms-grid-columns: 1fr auto;
        grid-template-columns: 1fr auto;
  }
}

.quick-links-wrapper.hasContact .quick-wrapper {
  width: 100%;
  display: -ms-grid;
  display: grid;
  -ms-grid-rows: 1fr 1fr;
      grid-template-rows: 1fr 1fr;
  grid-row-gap: 25px;
}

.quick-links-wrapper.hasContact .quick-wrapper + .quick-link-contact-box {
  margin-top: 25px;
}

@media (min-width: 768px) {
  .quick-links-wrapper.hasContact .quick-wrapper + .quick-link-contact-box {
    margin-top: 0;
  }
}

.arts .component-quicklinks .quick-link-block {
  background: #037ABD;
}

.arts .component-quicklinks .quick-link-block:first-of-type {
  background: #026297;
}

.arts .component-quicklinks .quick-link-block:last-of-type {
  background: #429bce;
}

.arts .component-quicklinks + .component-quicklinks .quick-link-block {
  background: #F6882E;
}

.arts .component-quicklinks + .component-quicklinks .quick-link-block:first-of-type {
  background: #c56d25;
}

.arts .component-quicklinks + .component-quicklinks .quick-link-block:last-of-type {
  background: #f8a662;
}

.arts .component-quicklinks + .component-quicklinks + .component-quicklinks .quick-link-block {
  background: #70963E;
}

.arts .component-quicklinks + .component-quicklinks + .component-quicklinks .quick-link-block:first-of-type {
  background: #5a7832;
}

.arts .component-quicklinks + .component-quicklinks + .component-quicklinks .quick-link-block:last-of-type {
  background: #94b06e;
}

.arts .component-quicklinks + .component-quicklinks + .component-quicklinks + .component-quicklinks .quick-link-block {
  background: #F6C22F;
}

.arts .component-quicklinks + .component-quicklinks + .component-quicklinks + .component-quicklinks .quick-link-block:first-of-type {
  background: #c59b26;
}

.arts .component-quicklinks + .component-quicklinks + .component-quicklinks + .component-quicklinks .quick-link-block:last-of-type {
  background: #f8d163;
}

.util .component-quicklinks .quick-link-block {
  background: #70963E;
}

.util .component-quicklinks .quick-link-block:first-of-type {
  background: #5a7832;
}

.util .component-quicklinks .quick-link-block:last-of-type {
  background: #94b06e;
}

.util .component-quicklinks + .component-quicklinks .quick-link-block {
  background: #037ABD;
}

.util .component-quicklinks + .component-quicklinks .quick-link-block:first-of-type {
  background: #026297;
}

.util .component-quicklinks + .component-quicklinks .quick-link-block:last-of-type {
  background: #429bce;
}

.util .component-quicklinks + .component-quicklinks + .component-quicklinks .quick-link-block {
  background: #F6C22F;
}

.util .component-quicklinks + .component-quicklinks + .component-quicklinks .quick-link-block:first-of-type {
  background: #c59b26;
}

.util .component-quicklinks + .component-quicklinks + .component-quicklinks .quick-link-block:last-of-type {
  background: #f8d163;
}

.util .component-quicklinks + .component-quicklinks + .component-quicklinks + .component-quicklinks .quick-link-block {
  background: #F6882E;
}

.util .component-quicklinks + .component-quicklinks + .component-quicklinks + .component-quicklinks .quick-link-block:first-of-type {
  background: #c56d25;
}

.util .component-quicklinks + .component-quicklinks + .component-quicklinks + .component-quicklinks .quick-link-block:last-of-type {
  background: #f8a662;
}

.heal .component-quicklinks .quick-link-block {
  background: #037ABD;
}

.heal .component-quicklinks .quick-link-block:first-of-type {
  background: #026297;
}

.heal .component-quicklinks .quick-link-block:last-of-type {
  background: #429bce;
}

.heal .component-quicklinks + .component-quicklinks .quick-link-block {
  background: #F6C22F;
}

.heal .component-quicklinks + .component-quicklinks .quick-link-block:first-of-type {
  background: #c59b26;
}

.heal .component-quicklinks + .component-quicklinks .quick-link-block:last-of-type {
  background: #f8d163;
}

.heal .component-quicklinks + .component-quicklinks + .component-quicklinks .quick-link-block {
  background: #F6882E;
}

.heal .component-quicklinks + .component-quicklinks + .component-quicklinks .quick-link-block:first-of-type {
  background: #c56d25;
}

.heal .component-quicklinks + .component-quicklinks + .component-quicklinks .quick-link-block:last-of-type {
  background: #f8a662;
}

.heal .component-quicklinks + .component-quicklinks + .component-quicklinks + .component-quicklinks .quick-link-block {
  background: #70963E;
}

.heal .component-quicklinks + .component-quicklinks + .component-quicklinks + .component-quicklinks .quick-link-block:first-of-type {
  background: #5a7832;
}

.heal .component-quicklinks + .component-quicklinks + .component-quicklinks + .component-quicklinks .quick-link-block:last-of-type {
  background: #94b06e;
}

.city .component-quicklinks .quick-link-block {
  background: #70963E;
}

.city .component-quicklinks .quick-link-block:first-of-type {
  background: #5a7832;
}

.city .component-quicklinks .quick-link-block:last-of-type {
  background: #94b06e;
}

.city .component-quicklinks + .component-quicklinks .quick-link-block {
  background: #F6C22F;
}

.city .component-quicklinks + .component-quicklinks .quick-link-block:first-of-type {
  background: #c59b26;
}

.city .component-quicklinks + .component-quicklinks .quick-link-block:last-of-type {
  background: #f8d163;
}

.city .component-quicklinks + .component-quicklinks + .component-quicklinks .quick-link-block {
  background: #037ABD;
}

.city .component-quicklinks + .component-quicklinks + .component-quicklinks .quick-link-block:first-of-type {
  background: #026297;
}

.city .component-quicklinks + .component-quicklinks + .component-quicklinks .quick-link-block:last-of-type {
  background: #429bce;
}

.city .component-quicklinks + .component-quicklinks + .component-quicklinks + .component-quicklinks .quick-link-block {
  background: #F6882E;
}

.city .component-quicklinks + .component-quicklinks + .component-quicklinks + .component-quicklinks .quick-link-block:first-of-type {
  background: #c56d25;
}

.city .component-quicklinks + .component-quicklinks + .component-quicklinks + .component-quicklinks .quick-link-block:last-of-type {
  background: #f8a662;
}

.component-quicklinks .quick-link-block {
  background: #F6C22F;
}

.component-quicklinks .quick-link-block:first-of-type {
  background: #c59b26;
}

.component-quicklinks .quick-link-block:last-of-type {
  background: #f8d163;
}

.component-quicklinks:nth-of-type(2) .quick-link-block {
  background: #037ABD;
}

.component-quicklinks:nth-of-type(2) .quick-link-block:first-of-type {
  background: #026297;
}

.component-quicklinks:nth-of-type(2) .quick-link-block:last-of-type {
  background: #429bce;
}

.component-quicklinks:nth-of-type(3) .quick-link-block {
  background: #70963E;
}

.component-quicklinks:nth-of-type(3) .quick-link-block:first-of-type {
  background: #5a7832;
}

.component-quicklinks:nth-of-type(3) .quick-link-block:last-of-type {
  background: #94b06e;
}

.component-quicklinks:nth-of-type(4) .quick-link-block {
  background: #F6882E;
}

.component-quicklinks:nth-of-type(4) .quick-link-block:first-of-type {
  background: #c56d25;
}

.component-quicklinks:nth-of-type(4) .quick-link-block:last-of-type {
  background: #f8a662;
}

.quick-links-wrapper.has-images {
  display: block;
}

.quick-links-wrapper .quick-link .quick-link--number {
  font-size: 24px;
  margin-bottom: 30px;
  border-bottom: 1px solid #ccc;
  padding-bottom: 10px;
  color: #037ABD;
  font-family: "MrEavesXLSanNarOT";
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: .5px;
}

.quick-links-wrapper .quick-link.has-images .quick-link--details {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

.quick-links-wrapper .quick-link.has-images .quick-link--details .quick-link--image {
  width: 350px;
  margin-right: 25px;
}

.quick-links-wrapper .quick-link.has-images .quick-link--details .form-section {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 auto;
          flex: 1 0 auto;
}

.quick-links-wrapper .quick-link.has-images .quick-link--details .form-section .form-group + .form-group {
  margin-top: 15px;
}

.quick-links-wrapper .quick-link + .quick-link {
  margin-top: 50px;
}

@media (min-width: 1024px) {
  .quick-link-component-wrap {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 1fr 1fr;
        grid-template-columns: 1fr 1fr 1fr;
    grid-gap: .5rem;
  }
}

@media all and (min-width: 1024px) and (-ms-high-contrast: none) and (min-width: 1200px), (min-width: 1024px) and (-ms-high-contrast: active) and (min-width: 1200px) {
  .quick-link-component-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

.department-component-box .quick-link-component-box {
  background: #f6c22f;
}

.department-component-box .quick-link-component-box:first-of-type {
  background: #c39719;
}

.department-component-box .quick-link-component-box:last-of-type {
  background: #fbe092;
}

.department-component-box .quick-link-component-box.quick-link-contact-box {
  background: #dedede;
}

.quick-link-component-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 1rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #f2f2f2;
  background-size: cover;
  background-position: center center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
  min-height: 170px;
  position: relative;
}

.quick-link-component-box div {
  font-weight: bold;
  font-size: 1.2rem;
  margin-bottom: 0;
  z-index: 2;
}

.quick-link-component-box h5 {
  margin-bottom: 0px;
  text-transform: uppercase;
  font-family: "mr-eaves-modern", sans-serif;
  font-weight: 600;
  color: #fff;
}

.quick-link-component-box .admin-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
}

.quick-link-component-box p {
  color: #b2b2b2;
  font-size: .8rem;
  z-index: 2;
  margin-top: 0 !important;
}

.with-images .quick-link-component-box {
  color: #fff;
  -webkit-box-flex: 1;
      -ms-flex: 1 0 auto;
          flex: 1 0 auto;
  min-height: 350px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  background-position: center center;
  background-size: cover;
}

.with-images .quick-link-component-box .link-wrapper {
  width: 100%;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

.with-images .quick-link-component-box .link-wrapper:hover h5 {
  -webkit-transform: translateY(0px);
          transform: translateY(0px);
}

.with-images .quick-link-component-box .link-wrapper h5 {
  -webkit-transform: translateY(5px);
          transform: translateY(5px);
  -webkit-transition: .25s;
  transition: .25s;
  width: 100%;
  height: 100%;
}

.with-images .quick-link-component-box .link-wrapper h5 a {
  display: block;
  text-decoration: none;
  color: #fff;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  padding: 1rem;
}

.with-images .quick-link-component-box .admin-overlay {
  background: -webkit-gradient(linear, left bottom, left top, from(black), color-stop(49%, rgba(125, 125, 125, 0)), to(rgba(255, 255, 255, 0)));
  background: linear-gradient(to top, black 0%, rgba(125, 125, 125, 0) 49%, rgba(255, 255, 255, 0) 100%);
}

.quick-link-contact-box div {
  font-weight: normal;
}

.quick-link-wrap {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 40px auto;
      grid-template-columns: 40px auto;
  grid-gap: 1rem;
  margin-bottom: 1rem;
  border-bottom: 1px solid #e8e8e8;
  padding-bottom: 1rem;
}

.quick-link-wrap.with-images {
  -ms-grid-columns: 20px 350px auto;
      grid-template-columns: 20px 350px auto;
}

.quick-link-contact-wrap {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
      grid-template-columns: 1fr 1fr;
  grid-gap: 1rem;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
}

.quick-link-wrap:last-of-type {
  border-bottom: 0px;
}

.quick-link-number {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 3rem;
  font-weight: bold;
}

.quick-link-details .field label {
  text-transform: uppercase;
  font-weight: 600;
  font-size: 14px;
  color: #037ABD;
}

.quick-link-details .field .control {
  margin-top: 8px;
}

.quick-link-details .field .control input.input.is-large {
  font-size: 16px;
}

.quick-link-details .field .control .icon.is-small.is-left {
  display: block;
  width: 1.75em;
  text-align: center;
}

@media (min-width: 768px) {
  .quick-links-images-wrapper {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (1fr)[2];
        grid-template-columns: repeat(2, 1fr);
    grid-gap: 25px;
  }
}

@media (min-width: 768px) {
  .quick-links-images-wrapper {
    -ms-grid-columns: (1fr)[3];
        grid-template-columns: repeat(3, 1fr);
  }
}

.quick-link-wimage {
  max-height: 400px;
  min-height: 200px;
  overflow: hidden;
  position: relative;
}

.quick-link-wimage .quick-link-img img {
  -o-object-fit: cover;
     object-fit: cover;
  font-family: 'object-fit: cover;';
  height: 100%;
}

.quick-link-wimage .quick-link-details {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}

.quick-link-wimage .quick-link-details .overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), color-stop(80%, rgba(0, 0, 0, 0.9)));
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.9) 80%);
}

.quick-link-wimage .quick-link-details_caption {
  padding: 0 15px 15px;
  position: relative;
  z-index: 2;
}

.quick-link-wimage .quick-link-details_caption h4 {
  color: #fff;
  text-transform: uppercase;
  font-size: 1.5rem;
  line-height: 1.5rem;
  margin-bottom: 10px;
  margin-left: 10px;
}

@media (min-width: 768px) {
  .quick-link-component-wrap.with-images {
    display: -ms-grid;
    display: grid;
        -ms-grid-columns: 1fr 25px 1fr;
        grid-template-columns: repeat(2, 1fr);
        grid-template-areas: "qlcbwi-1 qlcbwi-2";
    grid-gap: 25px;
  }
}

@media all and (-ms-high-contrast: none) and (min-width: 768px), (-ms-high-contrast: active) and (min-width: 768px) {
  .quick-link-component-wrap.with-images {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

.quick-link-component-wrap.with-images .quick-link-component-box:first-of-type {
  grid-area: qlcbwi-1;
}

.quick-link-component-wrap.with-images .quick-link-component-box:last-of-type {
  grid-area: qlcbwi-2;
}

@media (min-width: 768px) {
  .quick-link-component-wrap.with-images .quick-link-component-box:first-of-type {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
  .quick-link-component-wrap.with-images .quick-link-component-box:last-of-type {
    -ms-grid-row: 1;
    -ms-grid-column: 3;
  }
}

@media (min-width: 1024px) {
  .quick-link-component-wrap.with-images.count-3 {
        -ms-grid-columns: 1fr .5rem 1fr .5rem 1fr;
        grid-template-columns: repeat(3, 1fr);
        grid-template-areas: "qlcbwi3-a qlcbwi3-b qlcbwi3-c";
    grid-gap: .5rem;
  }
}

.quick-link-component-wrap.with-images.count-3 .quick-link-component-box:first-of-type {
  grid-area: qlcbwi3-a;
}

.quick-link-component-wrap.with-images.count-3 .quick-link-component-box:last-of-type {
  grid-area: qlcbwi3-c;
}

.quick-link-component-wrap.with-images.count-3 .quick-link-component-box:nth-of-type(2) {
  grid-area: qlcbwi3-b;
}

@media (min-width: 1024px) {
  .quick-link-component-wrap.with-images.count-3 .quick-link-component-box:first-of-type {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
  .quick-link-component-wrap.with-images.count-3 .quick-link-component-box:last-of-type {
    -ms-grid-row: 1;
    -ms-grid-column: 5;
  }
  .quick-link-component-wrap.with-images.count-3 .quick-link-component-box:nth-of-type(2) {
    -ms-grid-row: 1;
    -ms-grid-column: 3;
  }
}

.quick-link-component-wrap.with-images .quick-link-component-box + .quick-link-component-box {
  margin-top: 15px;
}

@media (min-width: 768px) {
  .quick-link-component-wrap.with-images .quick-link-component-box + .quick-link-component-box {
    margin-top: 0;
  }
}

@media (min-width: 768px) {
  .quick-link-component-wrap.with-images.has-contact {
    display: -ms-grid;
    display: grid;
    grid-gap: 25px;
    -ms-grid-columns: (1fr)[2];
        grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .quick-link-component-wrap.with-images.has-contact {
    -ms-grid-columns: (1fr)[3];
        grid-template-columns: repeat(3, 1fr);
  }
}

@media all and (-ms-high-contrast: none) and (min-width: 768px), (-ms-high-contrast: active) and (min-width: 768px) {
  .quick-link-component-wrap.with-images.has-contact {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }

  .quick-link-component-wrap.with-images.has-contact .quick-link-component-box {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 32%;
            flex: 0 0 32%;
  }
}

.quick-link-component-wrap.with-images.has-contact .quick-link-component-box.quick-link-contact-box {
  color: #666;
}

.data-table-wrapper {
  margin-bottom: 35px;
}

.data-table-wrapper .data-table .data-table-header {
  border-bottom: 1px solid #dedede;
}

.data-table-wrapper .data-table .data-table-header--row {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
      grid-template-columns: repeat(2, 1fr);
  grid-gap: 25px;
  padding: 10px 0 5px 15px;
}

.data-table-wrapper .data-table .data-table-header--row h4 {
  text-transform: uppercase;
  font-size: 16px;
  padding: 0;
  margin: 0;
}

.data-table-wrapper .data-table .data-table-body {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
}

@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .data-table-wrapper .data-table .data-table-body {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}

.data-table-wrapper .data-table .data-table-body--column div {
  padding: 10px 0 10px 15px;
  min-height: 80px;
  max-height: 80px;
}

.data-table-wrapper .data-table .data-table-body--column div:nth-of-type(even) {
  background: #efefef;
}

.data-table-wrapper .data-table .data-table-body--column div:first-of-type {
  border-bottom: 1px solid #ccc;
  padding-bottom: 6px;
}

.data-table-wrapper .data-table .data-table-body--column div:first-of-type p {
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 600;
}

.data-table-wrapper .data-table .data-table-body--column div p {
  padding: 0;
  margin: 0;
}

.data-table-wrapper .data-table--2 .data-table-body {
  -ms-grid-columns: (1fr)[2];
      grid-template-columns: repeat(2, 1fr);
}

@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .data-table-wrapper .data-table--2 .data-table-body {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
  }
}

.data-table-wrapper .data-table--3 .data-table-body {
  -ms-grid-columns: (1fr)[3];
      grid-template-columns: repeat(3, 1fr);
}

@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .data-table-wrapper .data-table--3 .data-table-body {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 33%;
            flex: 0 0 33%;
  }
}

.data-table-wrapper .data-table--4 .data-table-body {
  -ms-grid-columns: (1fr)[4];
      grid-template-columns: repeat(4, 1fr);
}

@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .data-table-wrapper .data-table--4 .data-table-body {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 25%;
            flex: 0 0 25%;
  }
}

.data-table-wrapper .data-table--5 .data-table-body {
  -ms-grid-columns: (1fr)[5];
      grid-template-columns: repeat(5, 1fr);
}

@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .data-table-wrapper .data-table--5 .data-table-body {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 20%;
            flex: 0 0 20%;
  }
}

.data-table-wrapper .data-table--6 .data-table-body {
  -ms-grid-columns: (1fr)[6];
      grid-template-columns: repeat(6, 1fr);
}

@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .data-table-wrapper .data-table--6 .data-table-body {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 16%;
            flex: 0 0 16%;
  }
}

.data-table-wrapper .data-table--7 .data-table-body {
  -ms-grid-columns: (1fr)[7];
      grid-template-columns: repeat(7, 1fr);
}

@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .data-table-wrapper .data-table--7 .data-table-body {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 14%;
            flex: 0 0 14%;
  }
}

.data-table-wrapper .data-table--8 .data-table-body {
  -ms-grid-columns: (1fr)[8];
      grid-template-columns: repeat(8, 1fr);
}

@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .data-table-wrapper .data-table--8 .data-table-body {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 12%;
            flex: 0 0 12%;
  }
}

.data-table-wrapper .data-table--9 .data-table-body {
  -ms-grid-columns: (1fr)[9];
      grid-template-columns: repeat(9, 1fr);
}

@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .data-table-wrapper .data-table--9 .data-table-body {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 11%;
            flex: 0 0 11%;
  }
}

.data-table-wrapper .data-table--10 .data-table-body {
  -ms-grid-columns: (1fr)[10];
      grid-template-columns: repeat(10, 1fr);
}

@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .data-table-wrapper .data-table--10 .data-table-body {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 10%;
            flex: 0 0 10%;
  }
}

ul.list {
  list-style: disc;
  margin-left: 20px;
}

ul.list li {
  padding: 5px 0;
}

ul.list li:first-of-type {
  margin-top: auto !important;
}

ul.list-columns {
  margin-bottom: 25px !important;
}

ul.list-columns li {
  padding: 5px 0;
}

@media (min-width: 768px) {
  ul.list-columns {
    -webkit-column-count: 2;
       -moz-column-count: 2;
            column-count: 2;
  }
}

@media (min-width: 768px) {
  ul.list-columns.list-columns--3 {
    -webkit-column-count: 2;
       -moz-column-count: 2;
            column-count: 2;
  }
}

@media (min-width: 1024px) {
  ul.list-columns.list-columns--3 {
    -webkit-column-count: 3;
       -moz-column-count: 3;
            column-count: 3;
  }
}

@media (min-width: 768px) {
  ul.list-columns.list-columns--4 {
    -webkit-column-count: 2;
       -moz-column-count: 2;
            column-count: 2;
  }
}

@media (min-width: 1024px) {
  ul.list-columns.list-columns--4 {
    -webkit-column-count: 3;
       -moz-column-count: 3;
            column-count: 3;
  }
}

@media (min-width: 1400px) {
  ul.list-columns.list-columns--4 {
    -webkit-column-count: 4;
       -moz-column-count: 4;
            column-count: 4;
  }
}

.page-component.component-content + .page-component.component-list,
.page-component.component-table + .page-component.component-list {
  margin-top: 5px;
}

.page-component.component-content + .page-component.component-list h2.content-block_title,
.page-component.component-content + .page-component.component-list .accordion-wrapper h2.accordion--header_title,
.accordion-wrapper .page-component.component-content + .page-component.component-list h2.accordion--header_title,
.page-component.component-table + .page-component.component-list h2.content-block_title,
.page-component.component-table + .page-component.component-list .accordion-wrapper h2.accordion--header_title,
.accordion-wrapper .page-component.component-table + .page-component.component-list h2.accordion--header_title {
  margin-top: 50px;
}

/*=====================================================
=            Backend Form Component Styles            =
=====================================================*/

.form-editor-wrapper {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 295px;
      grid-template-columns: 1fr 295px;
  grid-gap: 25px;
}

.form-editor-wrapper .form-editor-fields .form-editor-field {
  -webkit-transition: .25s;
  transition: .25s;
  padding: 15px;
  background: transparent;
  border: 1px solid transparent;
}

.form-editor-wrapper .form-editor-fields .form-editor-field:hover {
  background: #F0FAFF;
  border: 1px solid #66A0BF;
}

.form-editor-wrapper .form-editor-fields .form-editor-field .field-type {
  color: #037ABD;
  margin-bottom: 8px;
}

.form-editor-wrapper .form-editor-fields .form-editor-field [class*="_edit"] {
  margin-top: 25px;
}

.form-editor-wrapper .form-editor-fields .form-editor-field label {
  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;
}

.form-editor-wrapper .form-editor-fields .form-editor-field .radio-section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

.form-editor-wrapper .form-editor-fields .form-editor-field .radio-section .radio-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

.form-editor-wrapper .form-editor-fields .form-editor-field .radio-section .radio-group label {
  margin: 0;
}

.form-editor-wrapper .form-editor-fields .form-editor-field .radio-section .radio-group + .radio-group {
  margin-left: 35px;
}

.form-editor-wrapper .form-editor-fields .form-editor-field--single-line {
  height: 100px;
  overflow: hidden;
}

.form-editor-wrapper .form-editor-fields .form-editor-field_expanded {
  background: #F0FAFF;
  border: 1px solid #66A0BF;
  height: auto !important;
}

.form-editor-wrapper .form-editor-fields .form-editor-field--dropdown {
  height: 140px;
  overflow: hidden;
}

.form-editor-wrapper .form-editor-fields .form-editor-field--dropdown .list {
  margin-top: 5px;
  font-size: 16px;
  line-height: 16px;
  margin-bottom: 15px;
}

.form-editor-wrapper .form-editor-fields .form-editor-field--dropdown_edit .choices-section .choice-group {
  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;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

.form-editor-wrapper .form-editor-fields .form-editor-field--dropdown_edit .choices-section .choice-group input {
  margin: 0;
  border-radius: 0px;
  height: 35px;
}

.form-editor-wrapper .form-editor-fields .form-editor-field--dropdown_edit .choices-section .choice-group--buttons {
  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;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

.form-editor-wrapper .form-editor-fields .form-editor-field--dropdown_edit .choices-section .choice-group--buttons button {
  height: 35px;
  border: 1px solid #ddd;
  border-radius: 0px;
  padding: 8px 15px;
  background: #EFEFEF;
  font-size: 13px;
  color: #666;
}

.form-editor-wrapper .form-editor-fields .form-editor-field--dropdown_edit .choices-section .choice-group--buttons button:last-of-type {
  background: #D5D5D5;
}

.form-editor-wrapper .form-editor-fields .form-editor-field--dropdown_edit .choices-section .choice-group:last-of-type {
  margin-bottom: .75em;
}

.form-editor-wrapper .form-editor-fields .form-editor-field--dropdown_edit .choices-section .choice-group + .choice-group {
  margin-top: .75em;
}

.form-editor-wrapper .form-editor-fields .form-editor-field_expanded + .form-editor-field_expanded {
  margin-top: 25px;
}

.form-editor-select--standard {
  background: #DEDEDE;
  padding: 15px 15px 20px;
  position: -webkit-sticky;
  position: sticky;
  top: 65px;
}

.form-editor-select--standard h4 {
  font-size: 14px;
  text-transform: uppercase;
  border-bottom: 1px solid #999;
  margin-bottom: 15px;
  padding-bottom: 5px;
}

.form-editor-select--standard .button-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.form-editor-select--standard .button-wrapper button {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 49.5%;
          flex: 1 0 49.5%;
  background: #F7F7F7;
  border: 1px solid #C6C6C6;
  font-size: 14px;
  border-radius: 0px;
}

/*=====  End of Backend Form Component Styles  ======*/

/*=======================================================
=            FrontEnd Form Component Styles            =
=======================================================*/

@media (min-width: 768px) {
  form[class*="form_"] {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 1fr;
        grid-template-columns: 1fr 1fr;
    grid-gap: 25px;
  }
}

@media all and (min-width: 768px) and (-ms-high-contrast: none), (min-width: 768px) and (-ms-high-contrast: active) {
  form[class*="form_"] {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    aling-items: flex-start;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }

  form[class*="form_"] .form-group {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 49%;
            flex: 0 0 49%;
  }
}

form[class*="form_"] .form-group + .form-group {
  margin-top: 15px;
}

@media (min-width: 768px) {
  form[class*="form_"] .form-group + .form-group {
    margin-top: 0;
  }
}

form[class*="form_"] .form-group:last-of-type {
  margin-bottom: 25px;
}

@media (min-width: 768px) {
  form[class*="form_"] .form-group:last-of-type {
    margin-bottom: 0px;
  }
}

form[class*="form_"] .btn--submit {
  -ms-grid-column: 1;
      grid-column-start: 1;
}

.form-group.text-area {
  -ms-grid-column: 1;
      grid-column-start: 1;
  -ms-grid-column-span: 2;
  grid-column-end: 3;
}

.content-block_title + .form-wrapper,
.accordion-wrapper .accordion--header_title + .form-wrapper {
  margin-top: 25px;
}

.form-wrapper {
  /*----------  Faux Select Menu  ----------*/
}

.form-wrapper .form-group + .form-group {
  margin-top: 20px;
}

.form-wrapper label {
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: .5px;
  font-family: "MrEavesXLSanOT";
  font-weight: 600;
}

.form-wrapper .radio-section,
.form-wrapper .checkbox-section {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
      grid-template-columns: repeat(2, 1fr);
  grid-column-gap: 10px;
  grid-row-gap: 15px;
  margin-top: 15px;
}

@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .form-wrapper .radio-section,
  .form-wrapper .checkbox-section {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    aling-items: center;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 48%;
            flex: 0 0 48%;
  }

  .form-wrapper .radio-section .radio-group + .radio-group,
  .form-wrapper .checkbox-section .radio-group + .radio-group {
    margin-left: 25px;
  }
}

.form-wrapper .radio-group,
.form-wrapper .check-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

.form-wrapper .radio-group label,
.form-wrapper .check-group label {
  margin: 0;
  margin-left: 8px !important;
  text-transform: none;
  font-size: 14px;
  font-weight: 400;
}

.form-wrapper input[type="radio"],
.form-wrapper input[type="checkbox"] {
  margin: 0;
  outline: none;
}

.form-wrapper input[type="radio"]:active,
.form-wrapper input[type="checkbox"]:active {
  outline: none;
}

.form-wrapper input[type="radio"]:focus,
.form-wrapper input[type="checkbox"]:focus {
  outline: none;
}

.form-wrapper .select-menu {
  height: 35px;
  overflow-y: hidden;
}

.form-wrapper .select-menu.select-open {
  overflow-y: unset;
}

.form-wrapper .select-menu .selected {
  height: 35px;
  border: 1px solid #cdcdcd;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  padding: 0 8px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

.form-wrapper .select-menu .selected .placeholder {
  color: #ccc;
}

.form-wrapper .select-menu .options-wrapper {
  background: #fafafa;
  position: relative;
  z-index: 2;
  width: 100%;
  margin: -20px 0 0 0;
}

.form-wrapper .select-menu .options-wrapper li {
  padding: 0 8px;
  height: 35px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  border: 1px solid #efefef;
}

.form-wrapper .select-menu .options-wrapper li:hover {
  background: #efefef;
}

/*=====  End of FrontEnd Form Component Styles  ======*/

.divider-line {
  display: block;
  height: 1px;
  background: #ccc;
  width: 100%;
  margin: 28px 0;
}

.divider-line--yellow {
  background: #F6C22F;
}

/*==============================================
=            Admin Component Styles            =
==============================================*/

.department-component-box h4.component-title {
  margin-top: 0px;
}

.content-item--cta {
  padding: 20px 25px;
  background: #82c3e8;
}

.content-item--cta h4.component-title {
  border-top: none;
  padding-top: auto;
}

.content-item--cta .content-img {
  background-size: cover;
  background-position: center center;
}

/*=====  End of Admin Component Styles  ======*/

.component-cta {
  background: #037ABD;
  padding: 35px 0;
}

@media (min-width: 1400px) {
  .component-cta {
    margin-left: calc(-100vw / 2 + 1200px / 2);
    margin-right: calc(-100vw / 2 + 1200px / 2);
    width: 100vw;
  }
}

.component-cta .content-block {
  width: 100%;
  padding: 0 25px;
}

@media (min-width: 1024px) {
  .component-cta .content-block {
    width: 85%;
    margin: 0 auto;
    max-width: 1200px;
  }
}

@media (min-width: 1400px) {
  .component-cta .content-block {
    width: 75%;
    max-width: 1400px;
  }
}

.component-cta .content-block--with-image {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  color: #fff;
}

@media (min-width: 1024px) {
  .component-cta .content-block--with-image {
    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;
  }
}

.component-cta img {
  width: 100%;
  max-width: 100%;
  max-height: 250px;
  padding-bottom: 0;
  -o-object-fit: cover;
     object-fit: cover;
  font-family: 'object-fit: cover;';
  -o-object-position: center;
     object-position: center;
}

@media (min-width: 1024px) {
  .component-cta img {
    max-height: 200px;
    max-width: 300px;
  }
}

.component-cta .content-block--text-container {
  color: #fff;
}

.component-cta .content-block--text-container h2 {
  color: #fff;
  margin-bottom: 10px;
}

.content-wrapper.blue .component-cta,
.content-wrapper.util .component-cta {
  background: #70963E;
}

.content-wrapper.orange .component-cta,
.content-wrapper.city .component-cta {
  background: #F6C22F;
}

.content-wrapper.yellow .component-cta,
.content-wrapper.arts .component-cta {
  background: #F6882E;
}

.page-component.tabs {
  border-bottom: 1px solid #dedede;
  margin-bottom: 25px;
  padding-bottom: 40px;
}

.tabs-wrapper .tab-bar {
  z-index: 4;
  border-bottom: 1px solid #dedede;
}

@media (min-width: 1024px) {
  .tabs-wrapper .tab-bar {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.tabs-wrapper .tab-bar .tab {
  padding-top: 15px;
}

.tabs-wrapper .tab-bar .tab--title {
  cursor: hand;
  text-transform: uppercase;
  font-family: "MrEavesXLSanNarOT";
  letter-spacing: .75px;
  text-align: center;
  border: 1px solid #dedede;
  background: #fff;
  padding: 10px 15px 8px;
}

@media (min-width: 1024px) {
  .tabs-wrapper .tab-bar .tab--title {
    text-align: left;
    border: 1px solid transparent;
    border-bottom: 4px solid transparent;
    margin-bottom: -3px;
    border-radius: 5px 5px 0 0;
  }
}

.tabs-wrapper .tab-bar .tab--title:hover {
  background: #dedede;
  color: #666;
}

@media (min-width: 1024px) {
  .tabs-wrapper .tab-bar .tab--title:hover {
    background: transparent;
    color: #037ABD;
  }
}

.tabs-wrapper .tab-bar .tab--title.selected {
  background: #70963E;
  color: #fff;
}

@media (min-width: 1024px) {
  .tabs-wrapper .tab-bar .tab--title.selected {
    background: transparent;
    color: #70963E;
    border-color: #dedede;
    border-bottom-color: #fff;
  }
}

.tabs-wrapper .tab-bar .tab--title + .tab--title {
  margin-top: -1px;
}

@media (min-width: 1024px) {
  .tabs-wrapper .tab-bar .tab--title + .tab--title {
    margin-top: inherit;
    margin-left: 20px;
  }
}

.tabs-wrapper section {
  position: relative;
}

/*===========================================
=            Admin Gallery style            =
===========================================*/

/*----------  Admin - Component Added  ----------*/

.department-component-box .image-grid {
  display: -ms-grid;
  display: grid;
  grid-gap: 25px;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
}

.department-component-box .image-grid .content-img {
  max-height: 300px;
}

/*=====  End of Admin Gallery style  ======*/

.gallery-images {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.gallery-images .image {
  height: 250px;
  overflow: hidden;
  -ms-flex-preferred-size: calc((100% - 10px) / 4);
      flex-basis: calc((100% - 10px) / 4);
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  min-width: 250px;
  max-width: 100%;
  border: 3px solid #fff;
  -webkit-transition: .25s;
  transition: .25s;
}

@media (min-width: 1024px) {
  .gallery-images .image:hover {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
}

.gallery-images .image img {
  -o-object-fit: cover;
     object-fit: cover;
  font-family: 'object-fit: cover;';
  height: 100%;
  width: 100%;
  -o-object-position: center;
     object-position: center;
}

/*=====  Lightbox HTML  ======*/

.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 15;
}

.lightbox .lb-overlay {
  position: absolute;
  background: rgba(0, 0, 0, 0.85);
  width: 100vw;
  height: 100vh;
  z-index: 1000;
}

.lightbox .lb-image {
  z-index: 2000;
  position: relative;
  height: 100%;
  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;
}

.lightbox .lb-image img {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: block;
  z-index: 2000;
  max-height: 75vh;
  -o-object-fit: contain;
     object-fit: contain;
  font-family: 'object-fit: contain;';
}

.pane .content {
  height: 100%;
}

.file-manager-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 350px 1fr;
      grid-template-columns: 350px 1fr;
  grid-gap: 25px;
  height: 100%;
}

.file-manager-left {
  padding: 10px 25px;
  background: #efefef;
}

.file-manager-left button {
  background: transparent;
  border-radius: none;
  color: auto;
  height: auto;
  margin: auto;
  padding: auto;
}

.file-manager-left label {
  text-transform: uppercase;
  font-size: 12px;
  margin-top: 15px;
}

.file-manager-left p {
  font-size: 14px;
  line-height: 18px;
  word-wrap: break-word;
}

.file-manager-left .newFileWrapper {
  background: #ccc;
  margin: 25px -25px 10px;
  padding: 25px;
}

.file-manager-left .file--details {
  margin: 30px 0;
  padding-top: 25px;
  border-top: 3px solid #037abe;
}

.file-manager-left .file--details h4 {
  font-size: 16px;
  line-height: 18px;
  text-transform: uppercase;
  font-weight: bolder;
  border-bottom: 1px solid #cdcdcd;
  margin-bottom: 10px;
  padding-bottom: 10px;
}

.file-manager-left .button-group {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
      grid-template-columns: 1fr 1fr;
}

.breadcrumbs {
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: .5px;
  font-weight: 600;
  padding-bottom: 12px;
  border-bottom: 1px solid #dedede;
}

p.note {
  font-size: 14px;
  text-align: center;
  font-style: italic;
  margin-bottom: 20px;
}

#drop-area .file-label {
  color: #037abe;
  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;
  border: 1px solid #c2d3dc;
  display: block;
  padding: 10px 15px;
  text-align: center;
  font-size: 14px;
  text-transform: uppercase;
  margin: 15px 0;
  background: rgba(117, 154, 175, 0.15);
  -webkit-transition: .15s;
  transition: .15s;
}

#drop-area .file-label span {
  font-size: 24px;
}

#drop-area .file-icon--wrapper {
  height: 36px;
  position: relative;
  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;
}

#drop-area .file-label .add {
  -webkit-transition: .2s;
  transition: .2s;
  opacity: 1;
  position: absolute;
}

#drop-area .file-label .upload {
  -webkit-transition: .2s;
  transition: .2s;
  position: absolute;
  opacity: 0;
  -webkit-transform: translateY(50px);
          transform: translateY(50px);
}

#drop-area.jhighlight .add {
  display: block;
  -webkit-transform: translateY(-75px);
          transform: translateY(-75px);
  opacity: 0;
}

#drop-area.jhighlight .upload {
  display: block;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  opacity: 1;
}

.jhighlight .file-label {
  border: 3px dashed #fff;
}

#drop-area .file-label:hover {
  background: #f6f6f6;
  color: #63747c;
  border: 1px solid transparent;
  -webkit-transform: translateY(2px);
          transform: translateY(2px);
}

.filebar form .form-title {
  color: #4c575b;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 13px;
  margin-bottom: 0;
  padding-bottom: 10px;
  border-bottom: 0;
}

.filebar form .form-section label {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 2px;
}

.filebar form .form-section input {
  height: auto;
  font-size: 14px;
}

.file--name {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 0px;
  max-width: 250px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.file--updated {
  font-size: 14px;
}

.file-label input {
  width: 0.1px;
  height: 0.1px;
  opacity: 0;
  overflow: hidden;
  position: absolute;
  z-index: -1;
}

.button-group .btn {
  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;
}

.btn_move {
  color: #fff;
  border-radius: 0px;
}

.file-list {
  list-style: none !important;
  display: -ms-grid;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  grid-gap: 25px;
}

.file-list li.file,
.file-list li.folder {
  text-align: center;
  margin-top: 0 !important;
  min-height: 100px;
  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;
  background: #eeeeee;
  border: 1px solid #ddd;
  -webkit-transition: .25s;
  transition: .25s;
}

.file-list li.file:hover,
.file-list li.folder:hover {
  background: #cdcdcd;
}

.file-list li.file a,
.file-list li.folder a {
  margin: 0 auto;
}

.file-list li.file span,
.file-list li.folder span {
  font-size: 36px;
}

.file-list li.file h5.fileName,
.file-list li.file .folderName,
.file-list li.folder h5.fileName,
.file-list li.folder .folderName {
  display: block;
  overflow: hidden;
  min-width: 100px;
  text-overflow: ellipsis;
  max-width: 175px;
  white-space: nowrap;
  margin: 0 auto;
  font-size: 13px;
  text-transform: none;
}

.file-list li.folder a {
  color: #025280;
}

.file-list li.folder .folderName {
  text-transform: uppercase;
}

.contact-card--wrapper {
  border: 1px solid #dedede;
}

@media all and (-ms-high-contrast: none) and (min-width: 1200px), (-ms-high-contrast: active) and (min-width: 1200px) {
  .contact-card--wrapper {
    width: 50%;
  }
}

.contact-card--wrapper .contact-card {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 200px 1fr 2fr;
      grid-template-columns: 200px 1fr 2fr;
  grid-column-gap: 15px;
}

@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .contact-card--wrapper .contact-card {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    width: 100%;
  }
}

.contact-card--wrapper .contact-card .image {
  width: 100%;
  height: 100%;
  overflow: hidden;
  overflow: hidden;
  background: url(/images/user-image-default.png) no-repeat;
  background-size: cover;
  max-height: 225px;
}

@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .contact-card--wrapper .contact-card .image {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 250px;
            flex: 0 0 250px;
    height: 225px;
    margin-right: 15px;
  }
}

.contact-card--wrapper .contact-card .details {
  -ms-grid-row-align: center;
      -ms-flex-item-align: center;
      align-self: center;
  padding: 15px 0;
}

@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .contact-card--wrapper .contact-card .details {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 auto;
            flex: 1 0 auto;
  }
}

.contact-card--wrapper .contact-card .details .contact--info {
  border-bottom: 1px solid #efefef;
  padding-bottom: 8px;
  margin-bottom: 8px;
}

.contact-card--wrapper .contact-card .details .contact--info .contact--name {
  font-size: 24px;
  line-height: 26px;
}

.contact-card--wrapper .contact-card .details .department--info h4 {
  font-size: 18px;
}

.contact-card--wrapper .contact-card .details .department--info i {
  font-size: 16px;
}

.contact-card--wrapper .contact-card .description {
  padding: 15px;
  border-left: 4px solid #efefef;
}

.contact-card--wrapper .contact-card .description p {
  margin: 0;
}

@media (min-width: 768px) {
  .staff-listing--wrapper {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 1fr;
        grid-template-columns: 1fr 1fr;
    grid-gap: 25px;
  }
}

.staff-card.staff-card_no-description {
  width: 100%;
  border: 1px solid #dedede;
  display: -ms-grid;
  display: grid;
  -ms-grid-rows: 1fr 75px;
      grid-template-rows: 1fr 75px;
}

@media (min-width: 1024px) {
  .staff-card.staff-card_no-description {
    -ms-grid-rows: 1fr 50px;
        grid-template-rows: 1fr 50px;
  }
}

.staff-card.staff-card_no-description .staff-card--top {
  background: #fff;
}

@media (min-width: 768px) {
  .staff-card.staff-card_no-description .staff-card--top {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 150px 1fr;
        grid-template-columns: 150px 1fr;
    grid-gap: 10px;
  }
}

.staff-card.staff-card_no-description .staff-card--top .image {
  width: 100%;
  height: 100%;
}

.staff-card.staff-card_no-description .staff-card--top .image img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
  width: 100%;
}

.staff-card.staff-card_no-description .staff-card--top .details {
  padding: 10px 8px;
  display: -ms-grid;
  display: grid;
  -ms-grid-rows: 1fr 1fr;
      grid-template-rows: 1fr 1fr;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.staff-card.staff-card_no-description .staff-card--top .details .staff--info h2.staff--name {
  font-size: 26px;
  line-height: 28px;
}

.staff-card.staff-card_no-description .staff-card--top .details .staff--info h3.staff--position {
  font-size: 20px;
  line-height: 24px;
  font-weight: 500;
  color: #444;
}

.staff-card.staff-card_no-description .staff-card--top .details .department--info {
  border-top: 1px solid #dedede;
  padding-top: 10px;
}

.staff-card.staff-card_no-description .staff-card--top .details .department--info h3.department--name {
  text-transform: uppercase;
  font-size: 20px;
}

.staff-card.staff-card_no-description .staff-card--top .details .department--info h4.department--address {
  font-size: 18px;
  font-weight: 500;
  color: #afafaf;
  font-style: italic;
}

.staff-card.staff-card_no-description .staff-card--bottom {
  background: #037ABD;
  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;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  color: #fff;
  padding: 8px;
}

@media (min-width: 1024px) {
  .staff-card.staff-card_no-description .staff-card--bottom {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.staff-card.staff-card_no-description .staff-card--bottom i {
  font-size: 16px;
  margin-right: 7px;
}

.staff-card.staff-card_no-description .staff-card--bottom a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  font-size: 18px;
}

.staff-card.staff-card_no-description:nth-of-type(2n + 1) .staff-card--bottom {
  background: #F6882E;
}

.staff-card.staff-card_no-description:nth-of-type(3n + 1) .staff-card--bottom {
  background: #70963E;
}

.staff-card.staff-card_no-description:nth-of-type(4n + 1) .staff-card--bottom {
  background: #F6C22F;
}

.staff-card.staff-card_no-description + .staff-card.staff-card_no-description {
  margin-top: 20px;
}

@media (min-width: 768px) {
  .staff-card.staff-card_no-description + .staff-card.staff-card_no-description {
    margin-top: 0;
  }
}

.auction-import-wrap {
  border: 1px solid #F6882E;
  border-top: 1rem solid #F6882E;
}

.auction-import-body {
  padding: 1rem;
}

.auction-import-footer {
  padding: .5rem 1rem;
  background: #E6E6E6;
}

.auction-table {
  font-size: .8rem;
}

.auction-photo {
  width: 80px;
  height: 80px;
  background-color: #E6E6E6;
  cursor: pointer;
  -o-object-fit: fill;
     object-fit: fill;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 2rem;
  color: #95989A;
}

.auction-photo-loading {
  font-size: .7rem !important;
}

.auction-photo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.auction-photo input[type=file] {
  position: absolute;
  z-index: -1;
  left: -9999px;
  top: -9999px;
}

.toggle-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.toggle-wrapper .check-label {
  font-size: 12px;
  text-transform: uppercase;
  color: #656565;
  font-weight: 600;
  margin-right: 25px;
}

.toggle-wrapper .check-label.right {
  margin-left: 25px;
  margin-right: 0;
}

.button-toggle {
  display: inline-block;
  background: #bbbbbb;
  border-radius: 13px;
  height: 25px;
  padding: 4px;
  width: 50px;
  position: relative;
  -webkit-box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.22);
          box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.22);
}

.button-toggle .handle {
  position: absolute;
  left: -10px;
  right: auto;
  top: -8px;
  width: 40px;
  height: 40px;
  background: #fff;
  border-radius: 50%;
  -webkit-transition: all 0.4s cubic-bezier(0.33, 1.6, 0.66, 1);
  transition: all 0.4s cubic-bezier(0.33, 1.6, 0.66, 1);
  -webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.22);
          box-shadow: 0 2px 5px rgba(0, 0, 0, 0.22);
}

.toggler {
  display: none;
}

.toggler:checked + .button-toggle {
  background: #2e8e52;
}

.toggler:checked + .button-toggle .handle {
  left: 25px;
}

/*======================================
=            MONTH SCHEDULE            =
======================================*/

.toggle-wrapper {
  margin-top: 30px;
  text-align: right;
  margin-bottom: -65px;
  display: none;
}

@media (min-width: 1024px) {
  .toggle-wrapper {
    display: block;
  }
}

.toggle-wrapper button {
  background: #efefef;
  padding: 10px 15px;
  font-size: 1.25em;
  -webkit-transition: .2s;
  transition: .2s;
}

.toggle-wrapper button:hover {
  background: #cdcdcd;
}

.toggle-wrapper button.selected {
  background: #a9a9a9;
  color: #fff;
}

.month-wrapper {
  margin-bottom: 75px;
  width: 100%;
  height: 100%;
}

.month-wrapper .day-grid {
  width: 100%;
  height: 100%;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[7];
      grid-template-columns: repeat(7, 1fr);
  -ms-grid-rows: (1fr)[6];
      grid-template-rows: repeat(6, 1fr);
  grid-auto-rows: 1fr;
  grid-gap: 0px;
}

.month-wrapper .day-grid li {
  border: 1px solid #cdcdcd;
  border-collapse: collapse;
  overflow: hidden;
  overflow-y: scroll;
}

.month-wrapper .month-previous .day,
.month-wrapper .month-next .day {
  color: #cdcdcd;
}

.month-wrapper .today .day {
  background: #037ABD !important;
  color: #fff;
  border: 5px solid #037ABD;
  border-radius: 20px;
  height: 30px;
  width: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-align: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 10px;
}

.month-wrapper .day-wrapper {
  padding: 10px;
}

.month-wrapper .day-wrapper .day {
  background: transparent;
  border: 5px solid transparent;
  border-radius: 20px;
  height: 30px;
  width: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-align: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 10px;
}

.month-wrapper .event-block--wrapper .event-block .flex-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

.month-wrapper .event-block--wrapper .event-block--type {
  width: 12px;
  height: 12px;
  margin-top: 3px;
  display: inline-block;
  border-radius: 50%;
  background-color: transparent;
  margin-right: 5px;
}

.month-wrapper .event-block--wrapper .event-block--type_default {
  background-color: #dedede;
}

.month-wrapper .event-block--wrapper .event-block--type_arts {
  background-color: #F6C22F;
}

.month-wrapper .event-block--wrapper .event-block--type_social {
  background-color: #037ABD;
}

.month-wrapper .event-block--wrapper .event-block--type_health {
  background-color: #70963E;
}

.month-wrapper .event-block--wrapper .event-block--title {
  width: calc(100% - 20px);
  font-size: 13px;
  line-height: 17px;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  text-transform: uppercase;
  font-weight: 500;
}

.month-wrapper .event-block--wrapper .event-block--startTime {
  font-size: 13px;
  line-height: 13px;
  font-weight: 500;
  color: #95989A;
  margin-left: 17px;
}

.month-wrapper .event-block--wrapper .event-block--more {
  font-size: 13px;
  line-height: 17px;
  text-transfrom: uppercase;
  color: #6E6C6C;
  text-transform: uppercase;
  margin-left: 17px;
  cursor: pointer;
}

.month-wrapper .event-block--wrapper .event-block + .event-block {
  margin-top: 10px;
}

@media (min-width: 768px) {
  .cards-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }

@supports (display: grid) {
    .cards-wrapper {
      display: -ms-grid;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      grid-gap: 25px;
      -webkit-box-align: unset;
          -ms-flex-align: unset;
              align-items: unset;
      -webkit-box-pack: unset;
          -ms-flex-pack: unset;
              justify-content: unset;
    }
}
}

.cards-wrapper .card {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 24%;
          flex: 0 0 24%;
  margin-bottom: 15px;
  background: #F5F5F5;
  border: 1px solid #E6E6E6;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

@supports (display: grid) {
  .cards-wrapper .card {
    margin-bottom: 0;
  }
}

.cards-wrapper .card--header {
  padding: 10px 15px 25px;
  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;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

.cards-wrapper .card--header_title {
  text-transform: uppercase;
}

.cards-wrapper .card--header_title h3 {
  line-height: 1.5rem;
}

.cards-wrapper .card--header_title a {
  text-decoration: none;
  color: #016aa6;
  -webkit-transition: .25s;
  transition: .25s;
}

.cards-wrapper .card--header_title a:hover {
  text-decoration: underline;
  color: #037ABD;
}

.cards-wrapper .card--header_category span {
  margin-top: 5px;
  display: block;
  background: #ccc;
  border-radius: 50%;
  width: 10px;
  height: 10px;
}

.cards-wrapper .card--header_category span.city {
  background: #F6882E;
}

.cards-wrapper .card--header_category span.arts {
  background: #F6C22F;
}

.cards-wrapper .card--header_category span.health {
  background: #70963E;
}

.cards-wrapper .card--header_category span.utilities {
  background: #037ABD;
}

.cards-wrapper .card--footer {
  padding: 10px 15px;
  background: #E6E6E6;
}

.cards-wrapper .card--footer_link li {
  overflow: hidden;
  white-space: pre;
  text-overflow: ellipsis;
}

.cards-wrapper .card--footer_link a {
  text-decoration: none;
  color: #58595B;
}

.cards-wrapper .card--footer_link [class*="fa"] {
  color: #037ABD;
  margin-right: 8px;
}

.cards-wrapper .card + .card {
  margin-top: 15px;
}

@media (min-width: 768px) {
  .cards-wrapper .card + .card {
    margin-top: 0;
  }
}

.boards-cards--wrapper {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
  grid-gap: 25px;
}

@media (min-width: 1024px) {
  .boards-cards--wrapper {
    -ms-grid-columns: (1fr)[2];
        grid-template-columns: repeat(2, 1fr);
  }
}

.boards-cards--wrapper .card {
  border: 1px solid #dedede;
}

.boards-cards--wrapper .card--header {
  background: #dedede;
  padding: 20px 25px;
}

.boards-cards--wrapper .card--header_title h3 {
  text-transform: uppercase;
  line-height: 1.125em;
}

.boards-cards--wrapper .card--main {
  padding: 10px 25px 25px;
}

.card_staff .staff_department {
  margin-top: 0;
  font-size: 16px;
  line-height: 20px;
  text-transform: none;
}

.card_staff .card--header {
  padding: 10px 15px;
}

.card_staff .card--header_title h3 {
  color: #016aa6;
}

.card_staff .card--main {
  padding: 0px 15px 15px;
}

.card_staff .card--main address {
  padding-top: 15px;
  border-top: 1px solid #dedede;
  line-height: 20px;
}

.fourohfour-wrapper {
  padding-bottom: 50px;
  height: 100%;
  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;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.fourohfour-wrapper h1 {
  color: #037ABD;
  text-align: center;
  font-size: 22em;
  font-weight: 900;
  line-height: 1em;
}

.fourohfour-wrapper h2 {
  color: #016aa6;
  font-size: 1em;
  text-align: center;
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.5em;
  letter-spacing: .75px;
}

.fourohfour-wrapper .hero-search-wrapper {
  width: 100%;
  max-width: 350px;
  margin-top: 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

.fourohfour-wrapper .hero-search-wrapper .search-btn {
  background: #F6C22F;
  color: #fff;
  padding: 5px 10px;
}

.fourohfour-wrapper .hero-search-wrapper .ais-index input {
  margin: 0;
}

.crap {
  margin: 0 auto;
  max-width: 1200px;
  padding: 45px 25px;
  text-align: center;
}

.crap .hero-search-wrapper {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  margin-top: 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

.crap .hero-search-wrapper .search-btn {
  background: #F6C22F;
  color: #fff;
  padding: 5px 10px;
}

.crap .hero-search-wrapper .ais-index input {
  margin: 0;
}

.crap .rocket {
  max-width: 600px;
  margin: 0 auto;
  margin-top: 50px;
}

/*=============================================>>>>>
= News Page; =
===============================================>>>>>*/

.content-wrapper.content--empty {
  min-height: auto !important;
}

@media (min-width: 1400px) {
  .news-page {
    padding-left: 0;
    padding-right: 0;
    width: 1300px;
    margin: 0 auto;
    padding-top: 2rem;
  }
}

.news-page .section-title {
  color: #70963E;
  margin-bottom: 2.5rem;
}

.news-page .section-title::before {
  background: #70963E;
}

.news-cards-green-bg {
  background: #70963E;
  padding-bottom: 3rem;
  border-top: 3rem solid #fff;
  margin-bottom: 2rem;
}

.news-cards-green-bg .content-wrapper {
  margin-top: -3rem;
}

/*=====  End of News Page  ======*/

/*=============================================>>>>>
= News Cards; =
===============================================>>>>>*/

.news-cards-wrapper {
  display: -ms-grid;
  display: grid;
  width: 100%;
  -ms-grid-columns: (1fr)[4];
      grid-template-columns: repeat(4, 1fr);
  grid-gap: 25px;
}

.news-cards-wrapper--large {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[1];
      grid-template-columns: repeat(1, 1fr);
  grid-gap: 25px;
}

@media (min-width: 1024px) {
  .news-cards-wrapper--large {
        -ms-grid-columns: 1fr 25px 1fr 25px 1fr;
        grid-template-columns: repeat(3, 1fr);
    -ms-grid-rows: auto 25px auto;
        grid-template-areas: "ncl-a ncl-b ncl-c" "nc-a nc-b nc-c";
    grid-gap: 25px;
  }
}

.news-card {
  position: relative;
}

.news-card--background img {
  -o-object-fit: cover;
     object-fit: cover;
  font-family: 'object-fit: cover;';
  height: 100%;
  width: 100%;
}

.news-card--caption {
  position: absolute;
  bottom: 0px;
  left: 0px;
  right: 0px;
}

.news-card--caption_overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), color-stop(80%, rgba(0, 0, 0, 0.9)));
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.9) 80%);
}

.news-card--caption_text {
  padding: 15px 15px;
  background: #fff;
  position: relative;
  z-index: 2;
}

.news-card--caption_text h4 {
  color: #000;
  line-height: 1em;
}

.news-card--large {
  height: 425px;
}

.news-card--large:first-of-type {
  grid-area: ncl-a;
}

.news-card--large:nth-of-type(2) {
  grid-area: ncl-b;
}

.news-card--large .news-card--caption {
  position: absolute;
  bottom: 0px;
  left: 0px;
  right: 0px;
}

.news-card--large .news-card--caption_overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), color-stop(80%, rgba(0, 0, 0, 0.9)));
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.9) 80%);
}

.news-card--large .news-card--caption_text {
  background: transparent;
  padding: 0 15px 15px;
  position: relative;
  z-index: 2;
}

.news-card--large .news-card--caption_text h4 {
  color: #fff;
}

.news-card--large:nth-of-type(3) {
  display: none;
}

@media (min-width: 1024px) {
  .news-card--large:nth-of-type(3) {
    display: block;
    grid-area: ncl-c;
  }
}

.news-card--small:first-of-type {
  grid-area: nc-a;
}

.news-card--small:nth-of-type(2) {
  grid-area: nc-b;
}

.news-card--small:nth-of-type(3) {
  grid-area: nc-c;
}

@media (min-width: 1024px) {
  .news-card--large:first-of-type {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
  .news-card--large:nth-of-type(2) {
    -ms-grid-row: 1;
    -ms-grid-column: 3;
  }
  .news-card--large:nth-of-type(3) {
    -ms-grid-row: 1;
    -ms-grid-column: 5;
  }
  .news-card--small:first-of-type {
    -ms-grid-row: 3;
    -ms-grid-column: 1;
  }
  .news-card--small:nth-of-type(2) {
    -ms-grid-row: 3;
    -ms-grid-column: 3;
  }
  .news-card--small:nth-of-type(3) {
    -ms-grid-row: 3;
    -ms-grid-column: 5;
  }
}

.news-card--background {
  overflow: hidden;
  height: 100%;
}

/*= End of News Cards; =*/

/*=============================================>>>>>
= News Text Items; =
===============================================>>>>>*/

.news-text-items h4 {
  margin-bottom: 1rem;
  font-size: 1.5rem;
  color: #00354C;
}

.news-text-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding-bottom: 2rem;
}

@supports (display: grid) {
  .news-text-items {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr !important;
        grid-template-columns: 1fr !important;
    grid-gap: 1rem !important;
    margin-bottom: 1rem;
  }

@media (min-width: 768px) {
    .news-text-items {
      -ms-grid-columns: 1fr 1fr !important;
          grid-template-columns: 1fr 1fr !important;
    }
}
}

.news-text-items .news-item {
  border-bottom: 2px solid #f2f2f1;
  padding-bottom: 1.125rem;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
}

@media (min-width: 1024px) {
  .news-text-items .news-item {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 49%;
            flex: 0 0 49%;
  }
}

.news-text-items .news-item_count {
  font-size: 13px;
  color: #016aa6;
  margin: 0;
  padding: 0;
  text-transform: uppercase;
  font-weight: 500;
}

.news-text-items .news-item_count span {
  font-weight: 700;
}

.news-text-items .news-item_date {
  text-transform: uppercase;
  margin-top: 0;
  font-size: 16px;
  font-weight: 400;
  font-family: 'MrEavesXLSanOT';
  color: #a2a2a2;
  line-height: 18px;
}

@media (min-width: 1024px) {
  .news-text-items .news-item:nth-of-type(2n) {
    margin-left: 1%;
  }
}

@supports (display: grid) {
@media (min-width: 1024px) {
    .news-text-items .news-item:nth-of-type(2n) {
      margin-left: 0;
    }
}
}

.news-text-items a {
  font-weight: bold;
  text-decoration: none;
  color: #414042;
  font-size: 1.1rem;
}

.news-text-items a:hover {
  text-decoration: underline;
}

@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .news-text-items.grid-2 {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }

  .news-text-items.grid-2 .news-item {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
  }
}

@media all and (-ms-high-contrast: none) and (min-width: 1024px), (-ms-high-contrast: active) and (min-width: 1024px) {
  .news-text-items.grid-2 .news-item {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 49%;
            flex: 0 0 49%;
  }
}

@media all and (-ms-high-contrast: none) and (min-width: 1024px), (-ms-high-contrast: active) and (min-width: 1024px) {
  .news-text-items.grid-2 .news-item:nth-of-type(2n) {
    margin-left: 1%;
  }
}

/*=============================================>>>>>
= News Detail Page; =
===============================================>>>>>*/

.news-detail {
  padding-bottom: 4rem;
  min-height: 75vh;
  margin-top: 50px;
}

@media (min-width: 768px) {
  .news-detail {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}

.news-detail h1 {
  color: #70963E;
  font-size: 1.6rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.news-detail span {
  color: #333;
  font-style: italic;
  display: block;
  margin-bottom: 1.5rem;
}

.news-detail .news-detail-image {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 350px;
          flex: 0 0 350px;
  height: 200px;
}

.news-detail .news-detail-image img {
  padding-right: 15px;
  -o-object-fit: cover;
     object-fit: cover;
  font-family: 'object-fit: cover;';
  width: 100%;
  height: 100%;
}

.news-detail .news-back-link {
  color: #70963E;
}

/*=============================================>>>>>
= Meetings Page; =
===============================================>>>>>*/

@media (min-width: 1400px) {
  .meetings-page {
    padding-left: 0;
    padding-right: 0;
    width: 1300px;
    margin: 0 auto;
    padding-top: 2rem;
  }
}

.meetings-page .section-title {
  color: #F6882E;
  margin-bottom: 2.5rem;
}

.meetings-page .section-title::before {
  background: #F6882E;
}

.meeting-intro-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
  grid-gap: .75rem;
}

@media (min-width: 1024px) {
  .meeting-intro-grid {
        -ms-grid-columns: .65fr .75rem .35fr;
        grid-template-columns: .65fr .35fr;
        grid-template-areas: "ma mb";
    grid-gap: .75rem;
  }
}

.meeting-intro-grid .meeting-intro-council {
  grid-area: ma;
}

.meeting-intro-grid div img {
  width: 100%;
}

.meeting-intro-col {
  background: #EFEFEF;
  padding: 1rem;
  color: #58595B;
  grid-area: mb;
}

@media (min-width: 1024px) {
  .meeting-intro-grid .meeting-intro-council {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
  .meeting-intro-col {
    -ms-grid-row: 1;
    -ms-grid-column: 3;
  }
}

.meeting-intro-col h4 {
  font-size: 1.5rem;
  color: #00354C;
}

.meeting-intro-col .upcoming-meeting {
  display: block;
  border-left: 2px solid #EFEFEF;
  padding-bottom: 1rem;
  border-bottom: 2px solid #dedede;
  color: #58595B;
  text-decoration: none;
  -webkit-transition: all .5s;
  transition: all .5s;
}

.meeting-intro-col .upcoming-meeting:last-of-type {
  border-bottom: none;
}

.meeting-intro-col .upcoming-meeting .meeting-date {
  font-weight: bold;
  margin-bottom: .5rem;
  text-transform: uppercase;
  margin-top: 1.5rem;
  font-size: 14px;
}

.meeting-intro-col .upcoming-meeting .meeting-details {
  display: -ms-grid;
  display: grid;
      -ms-grid-columns: 70px .5rem 1fr;
      grid-template-columns: 70px 1fr;
      grid-template-areas: "md-a md-b";
  grid-gap: .5rem;
  text-transform: none;
}

.meeting-intro-col .upcoming-meeting .meeting-details div:first-of-type {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
  grid-area: md-a;
}

.meeting-intro-col .upcoming-meeting .meeting-details div:last-of-type {
  -ms-grid-row: 1;
  -ms-grid-column: 3;
  grid-area: md-b;
}

.meeting-intro-col .upcoming-meeting:hover {
  color: #00354C;
  padding-left: .25rem;
}

.attachment {
  margin-bottom: 25px;
}

.meeting-details p:first-of-type {
  text-transform: uppercase;
}

.meeting-details > p + p {
  line-height: 20px;
  color: #909090;
}

.meeting-calendar {
  margin: 2rem 0;
  min-height: 250px;
}

.meeting-calendar .calendar-nav {
  display: -ms-grid;
  display: grid;
      -ms-grid-columns: 35px .5rem 250px .5rem 35px;
      grid-template-columns: 35px 250px 35px;
      grid-template-areas: "c-arrow-left c-month c-arrow-right";
  grid-gap: .5rem;
  margin-bottom: 1rem;
}

.meeting-calendar .calendar-nav .arrow {
  color: #D1D1D1;
  font-size: 2.4rem;
  text-align: center;
  line-height: 2.2rem;
  font-weight: bold;
  cursor: pointer;
  -ms-grid-row: 1;
  -ms-grid-column: 1;
  grid-area: c-arrow-left;
}

.meeting-calendar .calendar-nav .arrow:hover {
  color: #000;
}

.meeting-calendar .calendar-nav .arrow:last-of-type {
  -ms-grid-row: 1;
  -ms-grid-column: 5;
  grid-area: c-arrow-right;
}

.meeting-calendar .calendar-nav .month {
  font-size: 1.8rem;
  color: #F6882E;
  text-align: center;
  text-transform: uppercase;
  -ms-grid-row: 1;
  -ms-grid-column: 3;
  grid-area: c-month;
}

.meeting-calendar .meeting-item {
  color: #58595B;
  -webkit-column-break-inside: avoid;
     -moz-column-break-inside: avoid;
             page-break-inside: avoid;
          break-inside: avoid;
  text-decoration: none;
  display: -ms-grid;
  display: grid;
      -ms-grid-columns: 40px .75rem 1fr;
      grid-template-columns: 40px 1fr;
      grid-template-areas: "mi-a mi-b";
  grid-gap: .75rem;
  padding-top: 0;
  margin-left: .5rem;
  padding-left: .5rem;
  border-left: 2px solid #fff;
  -webkit-transition: all .5s;
  transition: all .5s;
  margin-bottom: 1rem;
}

@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .meeting-calendar .meeting-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.meeting-calendar .meeting-item .meeting-date {
  color: #00354C;
  text-align: center;
  -ms-grid-row: 1;
  -ms-grid-column: 1;
  grid-area: mi-a;
}

@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .meeting-calendar .meeting-item .meeting-date {
    margin-right: 25px;
  }
}

.meeting-calendar .meeting-item .meeting-date .date {
  font-size: 1.8rem;
  margin-botom: 0px;
  font-weight: bolder;
  line-height: 2.5rem;
}

.meeting-calendar .meeting-item .meeting-date .day {
  font-weight: 100;
  letter-spacing: 2px;
  font-size: .9rem;
  margin-top: -.5rem;
  text-transform: uppercase;
}

.meeting-calendar .meeting-item .meeting-details {
  padding: .25rem 0rem;
  -ms-grid-row: 1;
  -ms-grid-column: 3;
  grid-area: mi-b;
}

.meeting-calendar .meeting-item .meeting-details p {
  margin-bottom: 3px;
  line-height: 20px;
}

.meeting-calendar .meeting-item .meeting-details span {
  display: block;
  color: #989898;
  font-weight: 300;
}

.meeting-calendar .meeting-item:hover {
  padding-left: .75rem;
  color: #00354C;
}

.meeting-calendar .meeting-item.event-with-day {
  padding-top: 1rem;
}

.meeting-calendar .meeting-item:last-of-type {
  margin-bottom: 1.5rem;
}

.column-calendar-wrap {
  position: relative;
}

@media (min-width: 768px) {
  .column-calendar-wrap {
    -webkit-column-count: 2;
       -moz-column-count: 2;
            column-count: 2;
  }
}

.meeting-with-day {
  border-top: 2px solid #efefef;
  padding-top: 15px !important;
}

/*=====  End of Meetings Page  ======*/

/*=============================================>>>>>
= Meeting Detail Page; =
===============================================>>>>>*/

.meeting-location {
  border-bottom: 1px solid #dedede;
  padding-bottom: 25px;
  margin-bottom: 25px;
}

.meeting-location p {
  font-size: 18px;
}

.meeting-location p svg {
  margin-right: 5px;
}

.meeting-detail {
  padding-bottom: 4rem;
  min-height: 75vh;
}

@media (min-width: 768px) {
  .meeting-detail {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    margin-top: 50px;
  }
}

.meeting-detail h1 {
  color: #F6882E;
  font-size: 1.6rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 2.5rem;
  line-height: 1.8rem;
}

.meeting-detail .meeting-location {
  border-bottom: 1px solid #dedede;
  padding-bottom: 25px;
  margin-bottom: 25px;
}

.meeting-detail .meeting-location p {
  font-size: 18px;
}

.meeting-detail .meeting-location p svg {
  margin-right: 5px;
}

.meeting-detail h4 {
  color: #6E6C6C;
  display: block;
  margin-bottom: 1.5rem;
}

.meeting-detail img {
  width: 300px;
  margin-right: 1rem;
  margin-bottom: 1rem;
}

.meeting-detail .meeting-board {
  padding: 1rem;
  background: #f2f2f2;
  margin: 1rem 0rem;
}

.meeting-detail .meeting-back-link {
  color: #F6882E;
}

/*=============================================>>>>>
= Events Page; =
===============================================>>>>>*/

@media (min-width: 1400px) {
  .events-page {
    padding-left: 0;
    padding-right: 0;
    width: 1300px;
    margin: 0 auto;
    padding-top: 2rem;
  }
}

.events-page .section-title {
  color: #F6C22F;
  margin-bottom: 2.5rem;
}

.events-page .section-title::before {
  background: #F6C22F;
}

.events-page .section-title span {
  font-size: 75%;
  color: #414042;
}

.events-page .section-title span a {
  font-size: 50%;
  text-transform: none;
}

.events-intro-grid {
  display: -ms-grid;
  display: grid;
  grid-gap: 25px;
  -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
}

@media (min-width: 1024px) {
  .events-intro-grid {
    -ms-grid-columns: .65fr .35fr;
        grid-template-columns: .65fr .35fr;
    -ms-grid-rows: 50% 50%;
        grid-template-rows: 50% 50%;
    height: 500px;
  }

  .events-intro-grid .event-large {
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
    grid-column: 1 / 2;
    -ms-grid-row: 1;
    -ms-grid-row-span: 2;
    grid-row: 1 / 3;
  }

  .events-intro-grid .event-small-top {
    -ms-grid-column: 2;
    -ms-grid-column-span: 1;
    grid-column: 2 / 3;
    -ms-grid-row: 1;
    -ms-grid-row-span: 1;
    grid-row: 1 / 2;
  }

  .events-intro-grid .event-small-bot {
    -ms-grid-column: 2;
    -ms-grid-column-span: 1;
    grid-column: 2 / 3;
    -ms-grid-row: 2;
    -ms-grid-row-span: 1;
    grid-row: 2 / 3;
  }
}

.events-intro-grid .event-card {
  position: relative;
  -webkit-box-shadow: none;
          box-shadow: none;
  border: none;
  background-color: #fff;
  margin: 0;
}

.events-intro-grid .event-card:hover {
  -webkit-box-shadow: none;
          box-shadow: none;
}

.events-intro-grid .event-card a {
  display: block;
  text-align: left;
  height: 100%;
}

.events-intro-grid .event-card--background {
  height: 100%;
}

.events-intro-grid .event-card--background img {
  -o-object-fit: cover;
     object-fit: cover;
  font-family: 'object-fit: cover;';
  height: 100%;
}

.events-intro-grid .event-card--caption {
  position: absolute;
  bottom: 0px;
  left: 0px;
  right: 0px;
}

.events-intro-grid .event-card--caption_overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), color-stop(80%, rgba(0, 0, 0, 0.9)));
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.9) 80%);
}

.events-intro-grid .event-card--caption_text {
  padding: 0 15px 15px;
  position: relative;
  z-index: 2;
}

.events-intro-grid .event-card--caption_text h4 {
  color: #fff;
  text-transform: uppercase;
  font-size: 1.5rem;
  line-height: 1.625rem;
}

.events-intro-grid .event-card--caption_text h5 {
  color: #fff;
  font-size: 1rem;
}

.event-with-day {
  border-top: 2px solid #efefef;
}

/*=====  End of Events Page  ======*/

/*=============================================>>>>>
= Event Detail Page; =
===============================================>>>>>*/

.event-detail {
  padding-bottom: 4rem;
  min-height: 75vh;
}

@media (min-width: 768px) {
  .event-detail {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    margin-top: 50px;
  }
}

.event-detail h1 {
  color: #F6C22F;
  font-size: 1.6rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 2.5rem;
}

@media (min-width: 768px) {
  .event-detail h1 {
    margin-top: 0;
  }
}

.event-detail span {
  color: #333;
  font-style: italic;
  display: block;
  margin-bottom: 1.5rem;
}

.event-detail .event-detail-image {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 350px;
          flex: 0 0 350px;
  height: 200px;
}

.event-detail .event-detail-image img {
  padding-right: 15px;
  -o-object-fit: cover;
     object-fit: cover;
  font-family: 'object-fit: cover;';
  width: 100%;
  height: 100%;
}

.event-detail .meeting-location {
  border-bottom: 1px solid #dedede;
  padding-bottom: 25px;
  margin-bottom: 25px;
}

.event-detail .meeting-location p {
  font-size: 18px;
}

.event-detail .meeting-location p svg {
  margin-right: 5px;
}

.event-detail h4 {
  color: #6E6C6C;
  display: block;
  margin-bottom: 1.5rem;
}

.event-detail .meeting-board {
  padding: 1rem;
  background: #f2f2f2;
  margin: 1rem 0rem;
}

.event-detail .event-back-link {
  color: #F6C22F;
}

/*========================================
=            New Event Styles            =
========================================*/

.event-wrapper {
  width: 100%;
}

@media (min-width: 1024px) {
  .event-wrapper {
    display: -ms-grid;
    display: grid;
        -ms-grid-columns: 250px 25px 1fr 25px 300px;
        grid-template-columns: 250px 1fr 300px;
    grid-gap: 25px;
        grid-template-areas: "ew-a ew-b ew-c";
  }
}

@media all and (-ms-high-contrast: none) and (min-width: 1200px), (-ms-high-contrast: active) and (min-width: 1200px) {
  .event-wrapper {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }

  .event-wrapper .event-location-wrapper {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 250px;
            flex: 0 0 250px;
    margin-right: 25px;
  }

  .event-wrapper .event-upcoming {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 300px;
            flex: 0 0 300px;
    margin-left: 25px;
  }
}

.event-wrapper .event-location-wrapper {
  margin-bottom: 25px;
}

@media (min-width: 1024px) {
  .event-wrapper .event-location-wrapper {
    margin-bottom: 0;
    grid-area: ew-a;
  }
}

.event-wrapper .event-location-wrapper .event-map {
  height: 200px;
}

.event-wrapper .event-location-wrapper .event-map iframe {
  width: 100%;
  height: 200px;
}

.event-wrapper .event-location-wrapper .event-location {
  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;
  background: #037ABD;
  padding: 20px;
  color: #fff;
}

.event-wrapper .event-location-wrapper .event-location [class*="fa"] {
  font-size: 40px;
}

.event-wrapper .event-location-wrapper .event-location address {
  margin-left: 15px;
  line-height: 21px;
  font-style: normal;
}

.event-wrapper .social-share {
  margin-top: 25px;
  text-align: center;
  position: relative;
}

.event-wrapper .social-share button {
  background: transparent;
  border: 1px solid #037ABD;
  border-radius: 10px;
  text-transform: uppercase;
  font-size: 14px;
  -webkit-transition: .25s;
  transition: .25s;
  position: relative;
  z-index: 4;
}

.event-wrapper .social-share button:hover {
  background: #037ABD;
  color: #fff;
}

.event-wrapper .social-share .social-links {
  position: relative;
  z-index: 2;
  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;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

.event-wrapper .social-share .social-links a {
  position: absolute;
  -webkit-transform: translateY(-28px);
          transform: translateY(-28px);
  opacity: 0;
  margin: 10px 8px;
  background: #F6882E;
  color: #fff;
  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;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  border-radius: 50%;
  width: 25px;
  height: 25px;
  display: block;
  -webkit-transition: .25s ease-in-out;
  transition: .25s ease-in-out;
  padding-top: 2px;
}

.event-wrapper .social-share .social-links.expanded a {
  opacity: 1;
}

.event-wrapper .social-share .social-links.expanded a:first-of-type {
  -webkit-transform: translate3d(-50px, 10px, 0);
          transform: translate3d(-50px, 10px, 0);
}

.event-wrapper .social-share .social-links.expanded a:nth-of-type(2) {
  -webkit-transform: translate3d(-5px, 10px, 0);
          transform: translate3d(-5px, 10px, 0);
  -webkit-transition-delay: 50ms;
          transition-delay: 50ms;
}

.event-wrapper .social-share .social-links.expanded a:last-of-type {
  -webkit-transform: translate3d(40px, 10px, 0);
          transform: translate3d(40px, 10px, 0);
  -webkit-transition-delay: 100ms;
          transition-delay: 100ms;
}

.event-wrapper .event-info {
  margin-bottom: 25px;
}

@media (min-width: 1024px) {
  .event-wrapper .event-info {
    margin-bottom: 0px;
    grid-area: ew-b;
  }
}

.event-wrapper .event-info h2 {
  color: #F6882E;
}

.event-wrapper .event-upcoming {
  background: #dedede;
  padding: 25px;
  grid-area: ew-c;
}

@media (min-width: 1024px) {
  .event-wrapper .event-location-wrapper {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
  .event-wrapper .event-info {
    -ms-grid-row: 1;
    -ms-grid-column: 3;
  }
  .event-wrapper .event-upcoming {
    -ms-grid-row: 1;
    -ms-grid-column: 5;
  }
}

.event-wrapper .event-upcoming h3 {
  font-size: 24px;
  border-bottom: 1px solid #bdbdbd;
  margin-bottom: 20px;
}

.event-wrapper .event-upcoming li a {
  text-decoration: none;
}

.event-wrapper .event-upcoming li a h4 {
  margin: 0;
  font-size: 20px;
  line-height: 20px;
}

.event-wrapper .event-upcoming li a h5 {
  margin: 0;
  font-size: 18px;
}

.event-wrapper .event-upcoming li + li {
  margin-top: 15px;
}

.event-wrapper .event-upcoming .view-all {
  margin-top: 35px;
  display: block;
  text-transform: uppercase;
}

.event-info ul {
  list-style-type: disc;
  margin-left: 1.5rem;
}

/*=====  End of New Event Styles  ======*/

.department-list h2.section-title {
  color: #037ABD;
}

.department-list h2.section-title:before {
  background: #037ABD;
}

@media (min-width: 768px) {
  .department-grid {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 3fr minmax(250px, 1fr);
        grid-template-columns: 3fr minmax(250px, 1fr);
  }
}

@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .department-grid {
    display: block;
  }
}

.category-wrapper {
  margin-bottom: 50px;
  margin-top: 12px;
}

@media (min-width: 768px) {
@supports (display: grid) {
    .category-wrapper {
      display: -ms-grid;
      display: grid;
      grid-gap: 25px;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }
}
}

.category-wrapper .category {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  cursor: pointer;
  border-bottom: 2px solid #fff;
  -webkit-transition: all .3s;
  transition: all .3s;
  padding-bottom: .25rem;
}

.category-wrapper .category p {
  margin: 0;
  padding: 0;
  text-transform: uppercase;
  font-size: 18px;
  line-height: 18px;
  margin-left: 10px;
}

.category-wrapper .category span {
  display: block;
  position: relative;
  top: 3px;
  background: #ccc;
  border-radius: 50%;
  width: 10px;
  height: 10px;
}

.category-wrapper .category span.city {
  background: #F6882E;
}

.category-wrapper .category span.arts {
  background: #F6C22F;
}

.category-wrapper .category span.health {
  background: #70963E;
}

.category-wrapper .category span.utilities {
  background: #037ABD;
}

.category-wrapper .category:hover {
  border-bottom: 2px solid #414042;
}

.category-wrapper .category.selected {
  border-bottom: 2px solid #414042;
}

.category-wrapper .category.clear-btn {
  color: #037ABD;
  font-size: .9rem;
}

@media (min-width: 768px) {
  .category-wrapper .category.clear-btn {
    margin-left: 20px !important;
  }
}

.category-wrapper .category.clear-btn:hover {
  border-bottom: 2px solid #fff !important;
}

.column-list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr 1fr;
      grid-template-columns: 1fr 1fr 1fr;
}

.column-list li {
  list-style-type: none;
}

/*==================================================
=            Admin Department Page List            =
==================================================*/

.pages-wrap .pages {
  list-style: none;
  margin: 0;
  margin-bottom: 45px !important;
  font-family: "MrEavesXLSanOT";
}

.pages-wrap .pages .page_details {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 270px;
          flex: 0 0 270px;
  text-align: right;
  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;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

.pages-wrap .pages .page_details .page_updated {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 150px;
          flex: 0 0 150px;
}

.pages-wrap .pages .page_details .page_status {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100px;
          flex: 0 0 100px;
  margin: 0;
  margin-left: 15px;
}

.pages-wrap .pages .page .main-page-info {
  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;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  font-size: 13px;
  padding: 8px 15px;
  cursor: pointer;
}

.pages-wrap .pages .page_title {
  margin: 0;
  font-weight: 600;
  -webkit-box-flex: 1;
      -ms-flex: 1 0 calc(100% - 275px);
          flex: 1 0 calc(100% - 275px);
}

.pages-wrap .pages .page_updated {
  margin: 0;
}

.pages-wrap .pages .page:nth-of-type(2n) .main-page-info {
  background: transparent;
}

.pages-wrap .pages .page .main-page-info {
  background: rgba(3, 122, 191, 0.1);
}

.pages-wrap .pages .page .main-page-info:hover {
  background: #b3d7ec;
}

.pages-wrap .pages .page .child-pages li:hover {
  background: #f0f0f0;
}

.pages-wrap .pages .page.header {
  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;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  text-transform: uppercase;
  font-weight: bolder;
  background: transparent;
  font-family: "MrEavesXLSanOT";
  font-size: 12px;
  font-weight: 800;
  border-bottom: 1px solid #dedede;
  margin-bottom: 15px;
  padding: 0px 15px;
}

.pages-wrap .pages .page.header h3,
.pages-wrap .pages .page.header h4 {
  font-weight: 800;
}

.pages-wrap .pages .child-pages {
  list-style-type: none !important;
  color: #666;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: .5px;
  margin: 0;
}

.pages-wrap .pages .child-pages li {
  border: 2px dotted #ccc;
  padding: 10px 15px 10px 45px;
  border-style: dashed;
  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;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

.pages-wrap .pages .child-pages li .page_status {
  margin: 0;
  font-size: 16px;
}

.pages-wrap .pages .child-pages li + li {
  margin-top: -2px;
}

.pages-wrap .addPage {
  background: #F6882E;
  padding: 14px 12px;
  text-transform: uppercase;
  font-family: 'MrEavesXLSanNarOT';
  color: #fff;
  letter-spacing: .5px;
  font-weight: 700;
}

/*=====  End of Admin Department Page List  ======*/

/*==============================================
=            Admin Department Modal            =
==============================================*/

/*----------  Color Schemes  ----------*/

.field .radio-section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

.field .radio-section .radio-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

.field .radio-section .radio-group label {
  margin: 0;
}

.field .radio-section .radio-group + .radio-group {
  margin-left: 35px;
}

.field .radio-section.color-scheme {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[5];
      grid-template-columns: repeat(5, 1fr);
}

.field .radio-section.color-scheme .radio-group input {
  display: none;
}

.field .radio-section.color-scheme .radio-group input:checked + label[for="cs-blue"] {
  background: #025c8e;
}

.field .radio-section.color-scheme .radio-group input:checked + label[for="cs-yellow"] {
  background: #b99223;
}

.field .radio-section.color-scheme .radio-group input:checked + label[for="cs-green"] {
  background: #54712f;
}

.field .radio-section.color-scheme .radio-group input:checked + label[for="cs-orange"] {
  background: #b96623;
}

.field .radio-section.color-scheme .radio-group input:checked + label[for="cs-red"] {
  background: #9f2e2e;
}

.field .radio-section.color-scheme .radio-group label[for*="cs-"] {
  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;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  text-indent: -9999px;
  overflow: hidden;
  text-align: center;
  width: 100%;
  height: 2.55rem;
  background: #F6C22F;
  -webkit-transition: .2s;
  transition: .2s;
}

.field .radio-section.color-scheme .radio-group label[for="cs-blue"] {
  background-color: #037ABD;
}

.field .radio-section.color-scheme .radio-group label[for="cs-green"] {
  background-color: #70963E;
}

.field .radio-section.color-scheme .radio-group label[for="cs-orange"] {
  background-color: #F6882E;
}

.field .radio-section.color-scheme .radio-group label[for="cs-red"] {
  background-color: #d43d3d;
}

.field .radio-section.color-scheme .radio-group + .radio-group {
  margin-left: 0;
}

/*=====  End of Admin Department Modal  ======*/

.department-page-header--wrapper {
  background: #F6882E;
  color: #fff;
  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: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  top: 0;
  z-index: 12;
  margin-bottom: 50px;
}

@media (min-width: 1024px) {
  .department-page-header--wrapper {
    height: 215px;
    -webkit-transition: height .25s ease-in-out;
    transition: height .25s ease-in-out;
  }
}

.department-page-header--wrapper.fixed-header {
  position: fixed;
  width: 100%;
  height: 150px;
}

.department-page-header--wrapper .department-page-header .header-content-wrapper {
  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;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

@media (min-width: 1024px) {
  .department-page-header--wrapper .department-page-header .header-content-wrapper {
    display: block;
  }
}

.department-page-header--wrapper .department-page-header .header-content-wrapper h2 {
  margin-bottom: 15px;
  font-size: 34px;
  margin-top: 15px;
}

@media (min-width: 1024px) {
  .department-page-header--wrapper .department-page-header .header-content-wrapper h2 {
    margin-top: 0;
    font-size: 44px;
  }
}

.department-page-header--wrapper .department-page-header .header-content-wrapper .department-menu--toggle {
  background: none;
  padding: 0;
  color: #fff;
}

@media (min-width: 1024px) {
  .department-page-header--wrapper .department-page-header .header-content-wrapper .department-menu--toggle {
    display: none;
  }
}

.department-page-header--wrapper .department-page-menu {
  background: #D35F00;
  -webkit-transition: .25s ease-in-out;
  transition: .25s ease-in-out;
  overflow: hidden;
}

@media (min-width: 1024px) {
  .department-page-header--wrapper .department-page-menu .header-content-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -ms-flex-pack: distribute;
        justify-content: space-around;
  }
}

.department-page-header--wrapper .department-page-menu .link {
  position: relative;
}

.department-page-header--wrapper .department-page-menu a {
  display: none;
  color: #fff;
  font-size: 14px;
  letter-spacing: .5px;
  text-transform: uppercase;
  text-decoration: none;
  padding: 8px 0;
  position: relative;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  text-align: center;
}

.department-page-header--wrapper .department-page-menu a.active-link {
  font-weight: bolder;
  text-decoration: underline !important;
  display: block !important;
}

@media (min-width: 1024px) {
  .department-page-header--wrapper .department-page-menu a {
    display: block;
  }
}

.department-page-header--wrapper .department-page-menu span.sub-toggle {
  position: absolute;
  right: 10px;
  top: 8px;
}

@media (min-width: 1024px) {
  .department-page-header--wrapper .department-page-menu span.sub-toggle {
    display: none;
  }
}

.department-page-header--wrapper .department-page-menu a.active:after {
  width: 0;
  height: 0;
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-bottom: 7px solid #777777;
  /* display: block; */
  bottom: -5px;
  position: relative;
  text-align: center;
  right: 50%;
  left: -50%;
}

.department-page-header--wrapper .department-page-menu.showMain .header-content-wrapper .link a {
  display: block !important;
}

.department-page-header--wrapper .department-page-submenu {
  background: #ececec;
  padding: 5px;
}

@media (min-width: 1024px) {
  .department-page-header--wrapper .department-page-submenu ul.header-content-wrapper {
    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;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.department-page-header--wrapper .department-page-submenu ul.header-content-wrapper li {
  text-align: center;
}

@media (min-width: 1024px) {
  .department-page-header--wrapper .department-page-submenu ul.header-content-wrapper li {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
            flex: 1 1 auto;
    min-width: 150px;
    padding: 5px 15px;
    line-height: 16px;
  }
}

.department-page-header--wrapper .department-page-submenu ul.header-content-wrapper li a {
  color: #3b4246;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 500;
  letter-spacing: 1px;
  font-size: 14px;
}

.department-page-header--wrapper .department-page-submenu ul.header-content-wrapper li a.child-active-link {
  font-weight: bolder !important;
  text-decoration: underline !important;
}

@media (min-width: 1024px) {
  .department-page-header--wrapper .department-page-submenu ul.header-content-wrapper > li + li {
    border-left: 1px solid #666;
  }
}

.department-page-header--wrapper .department-page-submenu.hideSub {
  display: none;
}

.department-page-header--wrapper.mobile_menu {
  display: block;
}

@media (min-width: 1024px) {
  .department-page-header--wrapper.mobile_menu {
    display: nonel;
  }
}

.breadcrumbs-wrapper {
  margin-top: -25px;
  margin-bottom: 35px;
}

.breadcrumbs-wrapper ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

.breadcrumbs-wrapper ul li {
  text-transform: uppercase;
  color: #a0a0a0;
}

.breadcrumbs-wrapper ul li a {
  text-decoration: none;
}

.breadcrumbs-wrapper ul li:before {
  content: "|";
  display: inline-block;
  padding: 0 10px;
  color: #ccc;
}

.breadcrumbs-wrapper ul li:first-of-type::before {
  content: none;
}

.fixed-header + .content-wrapper {
  margin-top: 260px;
}

.content-wrapper.arts h2.section-title {
  color: #037ABD;
}

.content-wrapper.arts h2.section-title:before {
  background: #037ABD;
}

.content-wrapper.city h2.section-title {
  color: #F6C22F;
}

.content-wrapper.city h2.section-title:before {
  background: #F6C22F;
}

.content-wrapper.util h2.section-title {
  color: #70963E;
}

.content-wrapper.util h2.section-title:before {
  background: #70963E;
}

.content-wrapper.blue h2.section-title {
  color: #037ABD;
}

.content-wrapper.blue h2.section-title:before {
  background: #037ABD;
}

.content-wrapper.yellow h2.section-title {
  color: #F6C22F;
}

.content-wrapper.yellow h2.section-title:before {
  background: #F6C22F;
}

.content-wrapper.orange h2.section-title {
  color: #F6882E;
}

.content-wrapper.orange h2.section-title:before {
  background: #F6882E;
}

.content-wrapper.green h2.section-title {
  color: #70963E;
}

.content-wrapper.green h2.section-title:before {
  background: #70963E;
}

.content-wrapper.red h2.section-title {
  color: #d43d3d;
}

.content-wrapper.red h2.section-title:before {
  background: #d43d3d;
}

.department-page-header--wrapper.arts {
  background: #F6C22F;
}

.department-page-header--wrapper.arts .department-page-menu {
  background: #e0a500;
}

.department-page-header--wrapper.heal {
  background: #70963E;
}

.department-page-header--wrapper.heal .department-page-menu {
  background: #4c6d22;
}

.department-page-header--wrapper.util {
  background: #037ABD;
}

.department-page-header--wrapper.util .department-page-menu {
  background: #095b8b;
}

.department-page-header--wrapper.blue {
  background: #037ABD;
}

.department-page-header--wrapper.blue .department-page-menu {
  background: #025c8e;
}

.department-page-header--wrapper.yellow {
  background: #F6C22F;
}

.department-page-header--wrapper.yellow .department-page-menu {
  background: #b99223;
}

.department-page-header--wrapper.orange {
  background: #F6882E;
}

.department-page-header--wrapper.orange .department-page-menu {
  background: #b96623;
}

.department-page-header--wrapper.green {
  background: #70963E;
}

.department-page-header--wrapper.green .department-page-menu {
  background: #54712f;
}

.department-page-header--wrapper.red {
  background: #d43d3d;
}

.department-page-header--wrapper.red .department-page-menu {
  background: #9f2e2e;
}

.department-page-header--wrapper + * {
  margin-top: 0;
  padding-top: 0;
}

.department-box {
  font-family: "mr-eaves-modern", sans-serif;
  padding-top: 2rem;
  padding-bottom: 0px;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
  height: 100%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.department-box:hover {
  color: #037ABD;
}

.department-page-info-grid {
  font-size: .85rem;
  margin-top: 1rem;
  margin-bottom: -.2rem;
  color: #414042;
}

.department-component-grid {
  display: -ms-grid;
  display: grid;
  grid-gap: 25px;
  -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .department-component-grid {
    -ms-grid-columns: 1fr 1fr 1fr;
        grid-template-columns: 1fr 1fr 1fr;
  }
}

@media (min-width: 1024px) {
  .department-component-grid {
    -ms-grid-columns: (1fr)[3];
        grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1400px) {
  .department-component-grid {
    -ms-grid-columns: (1fr)[4];
        grid-template-columns: repeat(4, 1fr);
  }
}

@media (min-width: 1800px) {
  .department-component-grid {
    -ms-grid-columns: (1fr)[6];
        grid-template-columns: repeat(6, 1fr);
  }
}

.department-component-grid .card {
  cursor: pointer;
  -webkit-transition: all .3s;
  transition: all .3s;
}

.department-component-grid .card:hover {
  border: 1px solid #777;
}

.department-component-grid .card-content {
  font-family: "mr-eaves-modern", sans-serif;
  text-transform: uppercase;
  font-weight: 600;
}

.page-info-wrapper {
  margin-top: -2rem;
  border: 1px solid #f2f2f2 !important;
  margin-bottom: 2rem;
  border-top: 0px;
}

.notification > .delete {
  position: absolute;
  right: .5rem;
  top: .5rem;
}

.component-title {
  margin-bottom: 1rem;
}

.component-title h4 {
  font-size: 1.75rem;
  font-weight: 600;
  padding-bottom: .25rem;
  border-bottom: 2px solid #037ABD;
  margin-bottom: 20px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: auto auto;
      grid-template-columns: auto auto;
}

.component-title h4 .clone-wrap {
  text-align: right;
}

.component-title h4 .clone-wrap .select {
  font-size: 1rem;
  margin-top: -1rem;
}

.component-title h4 .clone-wrap button {
  margin-right: 0;
  margin-left: auto;
  color: #037ABD;
  background: #fff;
}

.component-title h4 .clone-wrap .clone-success {
  color: #70963E;
}

.card-image .image {
  margin: 0px;
}

.info-panel {
  font-family: "mr-eaves-modern", sans-serif;
}

.info-panel .panel-block {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.panel-heading {
  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;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  font-family: "mr-eaves-modern", sans-serif;
}

.panel-heading .panel-title {
  margin-bottom: 0px !important;
  font-weight: 600 !important;
  font-size: 1.375em;
  text-transform: uppercase;
}

.panel-heading a.button {
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 600;
}

.panel-heading a.button [class*="fa"] {
  font-size: 16px;
  padding-right: 8px;
}

.department-page-grid.is-page {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 300px;
      grid-template-columns: 1fr 300px;
  grid-gap: 40px;
}

.department-page-grid.is-page .department-page-right {
  -ms-grid-column: 2;
      grid-column-start: 2;
  -ms-grid-column-span: 1;
  grid-column-end: 3;
}

.department-page-grid.is-page .department-page-right .page-overview-wrapper {
  background: #D6D6D6;
  padding: 15px;
}

.department-page-grid.is-page .department-page-right .page-overview-wrapper .overview-panel--title {
  text-transform: uppercase;
  color: #037ABD;
  font-size: 14px;
  font-weight: 600;
}

.department-page-grid.is-page .department-page-right .page-overview-wrapper .overview-panel .toggle-wrapper label.button-toggle-wrap .button-toggle {
  height: 13px;
  width: 40px;
  -webkit-box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.52);
          box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.52);
}

.department-page-grid.is-page .department-page-right .page-overview-wrapper .overview-panel .toggle-wrapper label.button-toggle-wrap .button-toggle .handle {
  top: -6px;
  width: 26px;
  height: 25px;
}

.department-page-grid.is-page .department-page-right .page-overview-wrapper .overview-panel:last-of-type {
  border-top: none !important;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

.department-page-grid.is-page .department-page-right .page-overview-wrapper .overview-panel a[class*="page-btn"] {
  display: block;
  font-family: "MrEavesXLSanOT";
  color: #fff;
  padding: 10px;
  font-size: 13px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50%;
          flex: 0 0 50%;
  text-transform: uppercase;
  font-weight: 600;
  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;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

.department-page-grid.is-page .department-page-right .page-overview-wrapper .overview-panel .view-page-btn {
  background: #195cb7;
  -webkit-transition: .15s;
  transition: .15s;
}

.department-page-grid.is-page .department-page-right .page-overview-wrapper .overview-panel .view-page-btn [class*="fa"] {
  margin-right: 5px;
}

.department-page-grid.is-page .department-page-right .page-overview-wrapper .overview-panel .view-page-btn:hover {
  background: #154e9c;
}

.department-page-grid.is-page .department-page-right .page-overview-wrapper .overview-panel .delete-page-btn {
  background: #666;
}

.department-page-grid.is-page .department-page-right .page-overview-wrapper .overview-panel .delete-page-btn--confirm {
  background: #990000;
}

.department-page-grid.is-page .department-page-right .page-overview-wrapper .overview-panel + .overview-panel {
  border-top: 1px solid #aaa;
  margin-top: 10px;
  padding-top: 15px;
}

.department-page-grid.is-page .department-page-left {
  -ms-grid-column: 1;
      grid-column-start: 1;
  -ms-grid-column-span: 1;
  grid-column-end: 2;
  -ms-grid-row: 1;
      grid-row-start: 1;
  overflow: scroll;
}

.panel-block {
  padding-top: 1rem;
}

.department-panel {
  font-size: .9rem;
}

.department-panel-title {
  font-weight: normal;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 25%;
          flex: 0 0 25%;
}

.department-panel-title h5 {
  color: #037ABD;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 14px;
}

.department-component-box {
  padding: .5rem 0;
  margin-bottom: 1.25rem;
}

.department-component-box:hover {
  background: #f2f2f2;
}

.add-component-box {
  padding-bottom: 2rem;
}

.accordian-item {
  padding-bottom: .5rem;
  margin-bottom: 1rem;
}

.accordian-item h4 {
  font-weight: bold;
  font-size: 1rem;
  margin-bottom: 5px;
  text-transform: uppercase;
  color: #00354C;
  font-weight: 600;
}

.accordian-item p {
  font-size: .8rem;
  font-weight: 100;
}

.content-img {
  width: 100%;
  max-height: 400px;
  overflow: hidden;
}

.content-img img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
}

.content-img--full {
  margin-bottom: 25px;
}

.content-item {
  font-family: "mr-eaves-modern", sans-serif;
}

.content-item.with-left-image {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: .25fr .75fr;
      grid-template-columns: .25fr .75fr;
  grid-gap: .5rem;
}

.content-item.with-right-image {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: .75fr .25fr;
      grid-template-columns: .75fr .25fr;
  grid-gap: .5rem;
}

.content-item h4 {
  text-transform: uppercase;
  color: #00354C;
  font-weight: 600;
  margin-bottom: 8px;
}

.component-content-image .featured_img_placeholder {
  height: 400px !important;
  background-position: 50% 50%;
}

.featured_img_placeholder--text {
  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;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  font-size: 60px;
  margin: 0 !important;
}

.featured_img_placeholder--text span {
  font-size: 18px;
  text-transform: uppercase;
  font-weight: 600;
  margin-top: 9px;
}

.quillWrapper,
.control {
  margin-top: 1rem;
}

.component-content-wrap.with-left-image {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: .25fr .75fr;
      grid-template-columns: .25fr .75fr;
  grid-gap: .5rem;
}

.component-content-wrap.with-left-image .featured_img_placeholder,
.component-content-wrap.with-right-image .featured_img_placeholder {
  height: 250px !important;
  margin-top: 1rem;
}

.component-content-wrap.with-right-image {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: .75fr .25fr;
      grid-template-columns: .75fr .25fr;
  grid-gap: .5rem;
}

.textarea {
  margin-top: .2rem;
  margin-bottom: .2rem;
}

.accordian-section {
  padding: 1rem;
  background: #f8f8f8;
  margin-bottom: .5rem;
  cursor: pointer;
  position: relative;
}

.accordian-section .item-title {
  font-weight: bold;
  font-size: 1rem;
  margin-bottom: 0px;
}

.accordian-section .item-content {
  font-size: .8rem;
  font-weight: 100;
}

.column-list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr 1fr;
      grid-template-columns: 1fr 1fr 1fr;
}

.column-list li {
  list-style-type: none;
}

@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .column-list {
    display: block;
  }
}

@media all and (-ms-high-contrast: none) and (min-width: 1024px), (-ms-high-contrast: active) and (min-width: 1024px) {
  .column-list {
    -webkit-column-count: 3;
       -moz-column-count: 3;
            column-count: 3;
  }
}

.is-large {
  margin-bottom: 1rem;
}

.notification.is-info {
  background-color: #209cee;
  color: #fff;
  position: absolute;
  width: 350px;
  z-index: 99;
  top: 10px;
  right: 10px;
}

.page-component + .page-component {
  margin-top: 50px;
}

.department-page-content .page-component:last-of-type {
  margin-bottom: 50px;
}

/*======================================================
=            Bullet List Component -- Admin            =
======================================================*/

.bullet-item--edit {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr 140px;
      grid-template-columns: 1fr 1fr 140px;
  grid-gap: 25px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.bullet-item--add {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr 75px;
      grid-template-columns: 1fr 1fr 75px;
  grid-gap: 25px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.bullet-item--content span {
  color: #037ABD;
  font-style: italic;
}

.bullet-item--content:before {
  content: '\2022';
  display: inline-block;
  margin-right: 5px;
}

.bullet-item + .bullet-item {
  margin-top: 8px;
}

.bullet-item:last-of-type {
  margin-bottom: 35px;
}

/*=====  End of Bullet List Component -- Admin  ======*/

.city-links--wrapper {
  margin-top: 50px;
}

@media (min-width: 768px) {
  .city-links--wrapper .city-links {
    display: -ms-grid;
    display: grid;
        -ms-grid-columns: 1fr 25px 1fr 25px 1fr;
        grid-template-columns: 1fr 1fr 1fr;
        grid-template-areas: "clb-1 clb-2 clb-3";
    grid-gap: 25px;
  }
}

@media all and (-ms-high-contrast: none) and (min-width: 768px), (-ms-high-contrast: active) and (min-width: 768px) {
  .city-links--wrapper .city-links {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }

  .city-links--wrapper .city-links [class*="page-link--"] {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 32%;
            flex: 0 0 32%;
  }
}

.city-links--wrapper .city-links .page-link--news {
  background: #70963D;
  grid-area: clb-3;
}

.city-links--wrapper .city-links .page-link--event {
  background: #F6882E;
  grid-area: clb-1;
}

.city-links--wrapper .city-links .page-link--meeting {
  background: #027ABD;
  grid-area: clb-2;
}

@media (min-width: 768px) {
  .city-links--wrapper .city-links .page-link--news {
    -ms-grid-row: 1;
    -ms-grid-column: 5;
  }
  .city-links--wrapper .city-links .page-link--event {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
  .city-links--wrapper .city-links .page-link--meeting {
    -ms-grid-row: 1;
    -ms-grid-column: 3;
  }
}

.city-links--wrapper .city-links [class*="page-link--"] {
  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;
  height: 200px;
  align-items: center;
}

.city-links--wrapper .city-links [class*="page-link--"] a {
  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;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  color: #fff;
  text-decoration: none;
}

.city-links--wrapper .city-links [class*="page-link--"] a h3 {
  text-transform: uppercase;
  font-size: 36px;
  line-height: 33px;
}

.city-links--wrapper .city-links [class*="page-link--"] a h4 {
  font-size: 26px;
}

.city-links--wrapper .city-links [class*="page-link--"] + [class*="page-link--"] {
  margin-top: 15px;
}

@media (min-width: 768px) {
  .city-links--wrapper .city-links [class*="page-link--"] + [class*="page-link--"] {
    margin-top: 0;
  }
}

/*=====  End I. of Imports  ======*/

body,
html {
  width: 100%;
  height: 100%;
}

.flight-aware-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
      grid-template-columns: 1fr 1fr;
  grid-gap: 1rem;
}

@media (max-width: 767px) {
  .flight-aware-grid {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    margin-bottom: 2rem;
  }
}

.embed-wrapper {
  position: relative;
  padding-bottom: 75%;
  height: 0;
  overflow: hidden;
  max-width: 100%;
}

.embed-wrapper iframe,
.embed-wrapper object,
.embed-wrapper embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.v-cloak--hidden {
  height: 100%;
}

#app {
  max-width: 100%;
  overflow: hidden;
}

@media (min-width: 1024px) {
  #app header + .iwantto + div {
    height: 100%;
    min-height: calc(100vh - 183px - 148px);
  }
}

img {
  width: 100%;
}

span p img {
  max-width: 100%;
  width: auto;
}

.home-loading {
  position: absolute;
  height: 100%;
  background: #fff;
  width: 100%;
  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;
  font-size: 2rem;
  color: #037ABD;
  z-index: 99;
}

@media (min-width: 1400px) {
  .hide--huge {
    display: none;
  }
}

h2.section-title {
  margin-bottom: 25px;
  font-size: 36px;
  line-height: 36px;
  max-width: 840px;
}

@media (min-width: 1400px) {
  h2.section-title {
    font-size: 48px;
    line-height: 48px;
    margin-bottom: 50px !important;
  }
}

h2.section-title_green {
  color: #70963E;
}

h2.section-title_green::before {
  background: #70963E;
}

h2.section-title_blue {
  color: #037ABD;
}

h2.section-title_blue::before {
  background: #037ABD;
}

h2.section-title_orange {
  color: #F6882E;
}

h2.section-title_orange::before {
  background: #F6882E;
}

.section-subtitle {
  text-transform: uppercase;
  font-weight: 300;
  letter-spacing: 1px;
}

/*==============================
=            Header            =
==============================*/

#overlay {
  background: rgba(0, 0, 0, 0.75);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 14;
  display: none;
  opacity: 0;
  -webkit-transition: all .2s;
  transition: all .2s;
}

#overlay.overlay-show {
  opacity: 1;
  display: block;
}

header {
  position: relative;
  z-index: 15;
  background: #f2f2f2;
}

header select {
  margin-bottom: 5px;
}

header .secondary-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding-bottom: 2px;
  /*
        .select-wrapper {
            display: grid;
            grid-template-columns: 1fr 1fr;
        }
        */
}

@media (min-width: 768px) {
  header .secondary-info {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding: 15px 0;
    padding-bottom: 2px;
  }
}

@media (min-width: 1400px) {
  header .secondary-info {
    width: 1200px;
    margin: 0 auto;
  }
}

header .secondary-info .logo-wrapper {
  position: relative;
  text-align: center;
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
  padding: 10px 0;
}

@media (min-width: 768px) {
  header .secondary-info .logo-wrapper {
    padding-left: 15px;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    text-align: left;
  }
}

@media (min-width: 1400px) {
  header .secondary-info .logo-wrapper {
    padding-left: 0;
  }
}

header .secondary-info .logo-wrapper img {
  max-width: 75%;
}

@media (min-width: 768px) {
  header .secondary-info .logo-wrapper img {
    max-width: 215px;
  }
}

header .secondary-info .logo-wrapper .hamburglar {
  position: absolute;
  top: 15px;
  right: 5px;
}

@media (min-width: 768px) {
  header .secondary-info .logo-wrapper .hamburglar {
    display: none;
  }
}

header .secondary-info .header-links-wrapper {
  text-align: right;
}

@media (min-width: 768px) {
  header .secondary-info .header-links-wrapper {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}

header .secondary-info .google-translate {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

header .secondary-info .google-translate a {
  text-decoration: none;
  display: block;
  text-align: right;
  width: 100%;
  margin-bottom: -.5rem;
}

header .secondary-info .goog-te-gadget-simple .goog-te-menu-value img {
  width: 1px !important;
}

header .secondary-info .goog-te-gadget-simple {
  border: 0px;
  margin-bottom: .2rem;
}

header .secondary-info .header-search-wrapper .hero-search-wrapper,
header .secondary-info .hero .hero-search-wrapper .hero-search-wrapper,
.hero header .secondary-info .hero-search-wrapper .hero-search-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

header .secondary-info .header-search-wrapper .hero-search-wrapper .ais-index input,
header .secondary-info .hero .hero-search-wrapper .hero-search-wrapper .ais-index input,
.hero header .secondary-info .hero-search-wrapper .hero-search-wrapper .ais-index input {
  width: 275px;
}

header .secondary-info .header-search-wrapper input,
header .secondary-info .hero .hero-search-wrapper input,
.hero header .secondary-info .hero-search-wrapper input {
  border-right: 0px;
  padding: .53rem;
  border-radius: 0px;
}

@media (min-width: 768px) {
  header .secondary-info .header-search-wrapper,
  header .secondary-info .hero .hero-search-wrapper,
  .hero header .secondary-info .hero-search-wrapper {
    width: 100%;
  }
}

header .secondary-info .header-social-wrapper {
  display: none;
}

@media (min-width: 768px) {
  header .secondary-info .header-social-wrapper {
    display: block;
  }
}

header .secondary-info .header-social-wrapper ul {
  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;
  padding: 10px 5px;
}

header .secondary-info .header-social-wrapper ul li + li {
  padding-left: 8px;
}

header .secondary-info .header-social-wrapper ul a {
  display: block;
  padding: 3px 5px;
  border-radius: 50%;
  font-size: .9rem;
}

header .secondary-info .header-social-wrapper ul .facebook {
  background: #037ABD;
  color: #fff;
}

header .secondary-info .header-social-wrapper ul .instagram {
  background: #70963E;
  color: #fff;
}

header .secondary-info .header-social-wrapper ul .twitter {
  background: #64CBE6;
  color: #fff;
}

header .secondary-info .header-social-wrapper ul .youtube {
  background: #F6C22F;
  color: #fff;
}

header nav {
  position: absolute;
  top: 0;
  left: 0;
  width: 75%;
  background: #037ABD;
  padding: 12px 18px;
  z-index: 5;
  -webkit-transform: translate3d(-100%, 0, 0);
          transform: translate3d(-100%, 0, 0);
  -webkit-transition: all .2s;
  transition: all .2s;
  -webkit-box-shadow: 0px 3px 6px #2c4456;
          box-shadow: 0px 3px 6px #2c4456;
}

@media (min-width: 768px) {
  header nav {
    position: relative;
    top: auto;
    left: auto;
    width: 100%;
    -webkit-transform: none;
            transform: none;
    background: #00354C;
  }

  header nav ul {
    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;
  }

  header nav ul li {
    border-bottom: none;
    padding: 0;
  }

  header nav ul li a {
    font-size: 14px;
    letter-spacing: 1px;
  }

  header nav ul li a:hover {
    color: #F6C22F;
  }
}

@media (min-width: 1400px) {
  header nav ul {
    width: 1200px;
    margin: 0 auto;
  }
}

header nav li {
  border-bottom: 1px solid #026297;
  padding: 10px 0;
}

header nav li:last-of-type {
  border-bottom: none;
}

header nav a {
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 16px;
}

header nav.nav-show {
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}

.header-search-wrapper,
.hero .hero-search-wrapper {
  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;
}

.header-search-wrapper input,
.hero .hero-search-wrapper input {
  margin-bottom: 0;
}

.header-search-wrapper .search-btn,
.hero .hero-search-wrapper .search-btn {
  background: #F6C22F;
  color: #fff;
  padding: 6px 10px;
}

#iwanna a {
  color: #F6C22F;
}

.iwantto {
  background: rgba(227, 227, 227, 0.975);
  -webkit-transition: .35s ease-in-out;
  transition: .35s ease-in-out;
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
  position: absolute;
  width: 100%;
  z-index: 13;
}

.iwantto-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  color: #717477;
  padding: 15px 0;
  padding-bottom: 25px;
  -webkit-transition: .15s;
  transition: .15s;
}

.iwantto-wrapper li ul li:hover {
  color: #70963E;
  cursor: pointer;
}

.iwantto-wrapper h3 {
  font-size: 30px;
  border-bottom: 2px solid #587388;
  padding-bottom: 3px;
  margin-bottom: 25px;
  color: #2d6196;
}

.iwantto-wrapper h4.iwantto--title {
  text-transform: uppercase;
  font-size: 16px;
  letter-spacing: .5px;
  font-weight: 700;
  margin-bottom: 8px;
  color: #2d6196;
}

.iwantto-wrapper ul {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
      grid-template-columns: repeat(3, 1fr);
  grid-gap: 25px;
  grid-row-gap: 40px;
}

@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .iwantto-wrapper ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.iwantto-wrapper ul li ul {
  display: block;
  font-weight: 400;
  letter-spacing: .75px;
}

.iwantto-wrapper ul li ul li + li {
  margin-top: 5px;
}

.iwantto.show {
  -webkit-transform: translateY(0px);
          transform: translateY(0px);
}

/*=====  End of Header  ======*/

/*==============================
=            Footer            =
==============================*/

footer {
  background: #00354C;
  padding: 30px 20px;
}

@media (min-width: 1400px) {
  footer {
    padding: 30px 0;
  }
}

footer .footer-wrapper {
  margin: 0 auto;
}

@media (min-width: 768px) {
  footer .footer-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}

@media (min-width: 1400px) {
  footer .footer-wrapper {
    width: 1200px;
  }
}

footer .footer-logo {
  text-align: center;
}

footer .footer-logo img {
  max-width: 250px;
}

@media (min-width: 768px) {
  footer .footer-logo {
    text-align: left;
  }

  footer .footer-logo img {
    max-width: 100%;
  }
}

footer .footer-nav {
  -webkit-box-flex: 1;
      -ms-flex: 1 0;
          flex: 1 0;
}

@media (min-width: 768px) {
  footer .footer-nav {
    padding-left: 50px;
  }
}

footer .footer-nav ul {
  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;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 35px;
}

@media (min-width: 768px) {
  footer .footer-nav ul {
    margin-top: 0;
  }
}

@media (min-width: 1400px) {
  footer .footer-nav ul {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }
}

footer .footer-nav ul li {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50%;
          flex: 0 0 50%;
  text-align: center;
}

@media (min-width: 768px) {
  footer .footer-nav ul li {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 auto;
            flex: 1 0 auto;
  }
}

footer .footer-nav ul a {
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 14px;
}

/*=====  End of Footer  ======*/

/*==================================
 =            Search Bar            =
 ==================================*/

.search-item-type {
  border-left: 4px solid transparent;
}

.search-item-title,
.search-item-type {
  padding: .75rem;
}

/*=====  End of Search Bar  ======*/

/*=================================
=            Hero Unit            =
=================================*/

.video-wrap {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  overflow: hidden;
}

.hero {
  position: relative;
  background-size: cover;
  background-position: center center;
  min-height: 200px;
  padding: 30px 10px;
  color: #fff;
}

@media (min-width: 768px) {
  .hero {
    height: 450px;
    padding: 50px;
  }
}

@media (min-width: 1024px) {
  .hero {
    height: 600px;
    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;
  }
}

@media (min-width: 1400px) {
  .hero {
    height: 700px;
  }
}

.hero video {
  -o-object-fit: cover;
     object-fit: cover;
  font-family: 'object-fit: cover;';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.hero video:after {
  content: ‘’;
  display: block;
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.2);
  z-index: 1;
}

.hero .hero-content-wrapper {
  z-index: 3;
  position: relative;
}

@media (min-width: 1024px) {
  .hero .hero-content-wrapper {
    width: 85%;
    max-width: 1000px;
  }
}

@media (min-width: 1400px) {
  .hero .hero-content-wrapper {
    margin: 0 auto;
    width: 1200px;
    max-width: auto;
  }
}

.hero h2 {
  font-size: 30px;
  line-height: 30px;
}

@media (min-width: 768px) {
  .hero h2 {
    font-size: 60px;
    line-height: 50px;
  }
}

@media (min-width: 1400px) {
  .hero h2 {
    font-size: 90px;
    line-height: 60px;
  }
}

.hero h1 {
  margin: 0;
  margin-bottom: 32px;
  letter-spacing: 1px;
  font-size: 32px;
  line-height: 32px;
}

@media (min-width: 768px) {
  .hero h1 {
    margin-bottom: 6.375vw;
    font-size: 8.16vw;
    line-height: 6.375vw;
  }
}

@media (min-width: 1400px) {
  .hero h1 {
    font-size: 114px;
    line-height: 114px;
    margin-bottom: 114px;
  }
}

.hero .hero-info-box {
  background: rgba(113, 151, 62, 0.82);
  padding: 10px;
  margin-bottom: 10px;
}

@media (min-width: 768px) {
  .hero .hero-info-box {
    padding: 30px 30px;
    margin-bottom: 10px;
    margin-top: 10px;
  }

  .hero .hero-info-box h3 {
    font-size: 30px;
    line-height: 38px;
  }
}

@media (min-width: 1024px) {
  .hero .hero-info-box {
    margin-bottom: 0;
    margin-top: 50px;
    width: 45%;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }

  .hero .hero-info-box h3 {
    font-size: 24px;
    line-height: 30px;
  }
}

@media (min-width: 1400px) {
  .hero .hero-info-box {
    width: 455px;
  }

  .hero .hero-info-box h3 {
    font-size: 30px;
    line-height: 38px;
  }
}

.hero .hero-search-wrapper {
  z-index: 9999999;
  margin-top: 45px;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}

.hero .hero-search-wrapper input {
  background: rgba(250, 250, 250, 0.75);
  border-radius: 0;
}

@media (min-width: 768px) {
  .hero .hero-search-wrapper input {
    font-size: 29px;
  }
}

@media (min-width: 1400px) {
  .hero .hero-search-wrapper {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    -webkit-box-flex: 1;
        -ms-flex: 1 0 auto;
            flex: 1 0 auto;
    max-width: calc(100% - 500px);
  }
}

.hero .hero-search-wrapper .search-btn {
  text-decoration: none;
}

@media (min-width: 768px) {
  .hero .hero-search-wrapper .search-btn {
    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: 60px;
  }

  .hero .hero-search-wrapper .search-btn i {
    font-size: 25px;
  }

  .hero .hero-search-wrapper .search-btn .svg-inline--fa {
    width: 2em;
    height: 1.5em;
  }
}

/**
 *
 * Word Rotater
 *
 */

.word-rotator {
  display: inline-block;
  min-width: 97%;
  text-align: left;
  position: relative;
}

.word-rotator span {
  position: absolute;
  font-weight: bold;
  top: 0;
  opacity: 0;
  -webkit-animation: rotateWord 32s linear infinite 0s;
          animation: rotateWord 32s linear infinite 0s;
}

@media (min-width: 1024px) {
  .word-rotator span {
    top: 0px;
  }
}

.word-rotator span:nth-child(2) {
  -webkit-animation-delay: 4s;
          animation-delay: 4s;
}

.word-rotator span:nth-child(3) {
  -webkit-animation-delay: 8s;
          animation-delay: 8s;
}

.word-rotator span:nth-child(4) {
  -webkit-animation-delay: 12s;
          animation-delay: 12s;
}

.word-rotator span:nth-child(5) {
  -webkit-animation-delay: 16s;
          animation-delay: 16s;
}

.word-rotator span:nth-child(6) {
  -webkit-animation-delay: 20s;
          animation-delay: 20s;
}

.word-rotator span:nth-child(7) {
  -webkit-animation-delay: 24s;
          animation-delay: 24s;
}

.word-rotator span:nth-child(8) {
  -webkit-animation-delay: 28s;
          animation-delay: 28s;
}

.word-rotator span:nth-child(9) {
  -webkit-animation-delay: 32s;
          animation-delay: 32s;
}

@-webkit-keyframes rotateWord {
  0% {
    opacity: 0;
  }

  2% {
    opacity: 0;
    -webkit-transform: translateY(-30px);
            transform: translateY(-30px);
  }

  5% {
    opacity: 1;
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }

  12% {
    opacity: 1;
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }

  16% {
    opacity: 0;
    -webkit-transform: translateY(30px);
            transform: translateY(30px);
  }

  80% {
    opacity: 0;
  }

  100% {
    opacity: 0;
  }
}

@keyframes rotateWord {
  0% {
    opacity: 0;
  }

  2% {
    opacity: 0;
    -webkit-transform: translateY(-30px);
            transform: translateY(-30px);
  }

  5% {
    opacity: 1;
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }

  12% {
    opacity: 1;
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }

  16% {
    opacity: 0;
    -webkit-transform: translateY(30px);
            transform: translateY(30px);
  }

  80% {
    opacity: 0;
  }

  100% {
    opacity: 0;
  }
}

.hero-content-wrapper h2 {
  display: inline-block;
  white-space: nowrap;
}

.hero-content-wrapper .hash {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

@media (min-width: 768px) {
  .hero-content-wrapper .hash {
    margin-top: -20px;
  }
}

.hero-content-wrapper .hash h3 {
  font-size: 32px;
  font-weight: lighter;
}

@media (min-width: 768px) {
  .hero-content-wrapper .hash h3 {
    font-size: 8.16vw;
  }
}

@media (min-width: 1400px) {
  .hero-content-wrapper .hash h3 {
    font-size: 114px;
  }
}

/*=====  End of Hero Unit  ======*/

.main-content {
  padding-left: 20px;
  position: relative;
  padding-right: 20px;
}

@media (min-width: 768px) {
  .main-content {
    padding-left: 30px;
    padding-right: 30px;
  }
}

@media (min-width: 1024px) {
  .main-content {
    margin-top: 50px;
    margin-bottom: 75px;
    max-width: 100vw;
  }
}

@media (min-width: 1400px) {
  .main-content {
    padding-left: 0;
    padding-right: 0;
  }
}

.content-wrapper,
.header-content-wrapper {
  padding-left: 20px;
  padding-right: 20px;
}

@media (min-width: 768px) {
  .content-wrapper,
  .header-content-wrapper {
    padding-left: 30px;
    padding-right: 30px;
  }
}

@media (min-width: 1400px) {
  .content-wrapper,
  .header-content-wrapper {
    padding-left: 0;
    padding-right: 0;
    width: 1200px;
    margin-left: auto;
    margin-right: auto;
  }
}

.content-wrapper {
  min-height: 50vh;
  margin: 50px 0;
}

@media (min-width: 1024px) {
  .content-wrapper {
    margin: 50px auto;
  }
}

.home-section {
  margin-top: 20px;
}

.home-section + .home-section {
  margin-top: 40px;
  padding-bottom: 30px;
}

@media (min-width: 1024px) {
  .home-section + .home-section {
    margin-top: 75px !important;
  }
}

/*================================
=            Dial 311            =
================================*/

#dial311 {
  background: #F6C22F;
  padding: 10px 15px 8px;
  position: absolute;
  top: 0px;
  z-index: 1000;
  margin-left: -20px;
  margin-right: -20px;
}

@media (min-width: 768px) {
  #dial311 {
    margin-left: -30px;
    margin-right: -30px;
  }
}

@media (min-width: 1024px) {
  #dial311 {
    margin-left: 0;
    margin-right: 0;
    display: inline-block;
    right: 0;
    top: 90vh;
  }
}

#dial311 a {
  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;
  color: #fff;
  text-decoration: none;
}

#dial311 a .fa-phone {
  color: #F1A71E;
  margin-right: 10px;
}

#dial311 a h3 {
  text-transform: uppercase;
  font-weight: 100;
  margin: 0;
  font-size: 1em;
  line-height: 1em;
}

#dial311 a h4 {
  font-size: 30px;
  line-height: 30px;
  margin: 0;
}

#dial311.sticky {
  position: -webkit-sticky;
  position: sticky;
}

@media (min-width: 1024px) {
  #dial311.sticky {
    top: 90vh;
    float: right;
  }
}

/*=====  End of Dial 311  ======*/

/*==========================================
=            Most Visited Links            =
==========================================*/

#most-visited ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

@media (min-width: 1024px) {
  #most-visited ul {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }
}

#most-visited li {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 50%;
          flex: 1 0 50%;
  font-size: 14px;
  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;
  line-height: 1em;
  background: #037ABD;
  text-align: center;
  text-transform: uppercase;
  -webkit-transition: all .2s;
  transition: all .2s;
}

@media (min-width: 768px) {
  #most-visited li {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 33.333%;
            flex: 1 0 33.333%;
  }
}

@media (min-width: 1024px) {
  #most-visited li {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 16.66667%;
            flex: 1 0 16.66667%;
    font-size: 1em;
  }
}

@media (min-width: 1024px) {
  #most-visited li:hover {
    z-index: 12;
    -webkit-transform: translateY(5px);
            transform: translateY(5px);
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
}

#most-visited li:nth-of-type(2) {
  background: #317FA5;
}

#most-visited li:nth-of-type(3) {
  background: #46858E;
}

#most-visited li:nth-of-type(4) {
  background: #568A76;
}

#most-visited li:nth-of-type(5) {
  background: #64905A;
}

#most-visited li:nth-of-type(6) {
  background: #70963E;
}

#most-visited li a {
  color: #fff;
  text-decoration: none;
  display: block;
  width: 100%;
  padding: 25px;
}

/*=====  End of Most Visited Links  ======*/

/*=====================================
=            Featured News            =
=====================================*/

.home-section h2.section-title {
  color: #70963E;
}

.home-section h2.section-title::before {
  background: #70963E;
}

@media (min-width: 1400px) {
  .home-section h2.section-title {
    width: 1200px;
    margin: 0 auto;
  }
}

.featured-news {
  position: relative;
  z-index: 2;
}

.featured-news h2.section-title {
  margin: 0 auto 25px;
}

@media (min-width: 1024px) {
  .featured-news-wrapper {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 2fr 100px 1fr;
        grid-template-columns: 2fr 100px 1fr;
    -ms-grid-rows: 100%;
        grid-template-rows: 100%;
    position: relative;
    z-index: 2;
  }
}

@media (min-width: 1400px) {
  .featured-news-wrapper {
    width: 1300px;
    margin: 0 auto;
    display: -ms-grid;
    display: grid;
  }
}

@media (min-width: 1400px) {
  .featured-news::after {
    background: url(/images/news-bg.png) repeat;
    content: "";
    height: 877px;
    display: block;
    width: 100%;
    position: absolute;
    margin-top: -570px;
  }
}

.featured-story-wrapper {
  position: relative;
  height: calc(100% - 100px);
  -ms-grid-column: 1;
      grid-column-start: 1;
  -ms-grid-column-span: 2;
  grid-column-end: 3;
  -ms-grid-row: 1;
      grid-row-start: 1;
  -ms-grid-row-span: 1;
  grid-row-end: 2;
  max-height: 550px;
}

@media all and (-ms-high-contrast: none) and (min-width: 1200px), (-ms-high-contrast: active) and (min-width: 1200px) {
  .featured-story-wrapper {
    width: 100%;
  }
}

.featured-story-wrapper .overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  top: auto !important;
  z-index: 0;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), color-stop(80%, rgba(0, 0, 0, 0.9)));
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.9) 80%);
  height: 150px;
}

@media (min-width: 768px) {
  .featured-story-wrapper .overlay {
    height: 200px;
  }
}

.featured-story-wrapper .featured-news--slide--title {
  position: absolute;
  bottom: 0;
  left: 0;
  color: #fff;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0)), to(rgba(0, 0, 0, 0.75)));
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(0, 0, 0, 0.75) 100%);
  padding: 20px 10px 10px;
  font-size: 1.5em;
  line-height: 1.25em;
  width: 100%;
}

@media (min-width: 1024px) {
  .featured-story-wrapper .featured-news--slide--title {
    bottom: 25px;
    left: 25px;
    padding: 0;
    background: none;
    padding-right: 150px;
    font-size: 1.75em;
    line-height: 1.5em;
  }
}

@media (min-width: 1024px) {
  .featured-story-wrapper img {
    -o-object-fit: cover;
       object-fit: cover;
    font-family: 'object-fit: cover;';
    height: 100%;
  }
}

.featured-news-additional {
  background: #037ABD;
  padding: 10px 15px;
}

@media (min-width: 1024px) {
  .featured-news-additional {
    -ms-grid-column: 2;
        grid-column-start: 2;
    -ms-grid-column-span: 2;
    grid-column-end: 4;
    -ms-grid-row: 1;
        grid-row-start: 1;
    -ms-grid-row-span: 1;
    grid-row-end: 2;
    position: relative;
    z-index: 3;
    padding: 20px 25px;
    border-left: 15px solid #fff;
    border-top: 15px solid #fff;
    margin-top: 80px;
  }
}

@media all and (-ms-high-contrast: none) and (min-width: 1024px), (-ms-high-contrast: active) and (min-width: 1024px) {
  .featured-news-additional {
    min-width: 600px;
    margin-top: 0px;
  }
}

@media (min-width: 1400px) {
  .featured-news-additional {
    padding: 25px 35px;
    border-left: 15px solid #e6e7e8;
    border-top: 15px solid #e6e7e8;
    margin-top: 100px;
    min-height: 513px;
  }
}

.featured-news-additional li {
  border-bottom: 1px solid #0368a1;
  padding: 10px 0;
  line-height: 1.375em;
  font-weight: 300;
}

@media (min-width: 1024px) {
  .featured-news-additional li {
    line-height: 1.5em;
    font-size: 1.25em;
  }
}

@media (min-width: 1400px) {
  .featured-news-additional li {
    font-size: 1.5em;
  }
}

.featured-news-additional li:last-of-type {
  border-bottom: none;
}

.featured-news-additional a {
  color: #fff;
  text-decoration: none;
}

/*=====  End of Featured News  ======*/

/*=======================================
=            Upcoming Events            =
=======================================*/

.home-section.upcoming-events {
  z-index: 20;
  position: relative;
  margin-top: 70px !important;
}

.upcoming-events h2.section-title {
  color: #F6C22F;
}

.upcoming-events h2.section-title::before {
  background: #F6C22F;
}

/**
 *
 * Event Card
 *
 */

.event-cards-wrapper {
  position: realtive;
  margin-bottom: 25px;
  width: 90%;
  margin: 0 auto;
}

@media (min-width: 1400px) {
  .event-cards-wrapper {
    width: 1200px;
  }
}

.event-cards-wrapper a.more-link {
  display: block;
  text-align: right;
  color: #F6C22F;
  margin-top: 10px;
}

.event-card {
  display: block;
  position: relative;
  -webkit-box-shadow: 0 0 4px rgba(0, 0, 0, 0.2);
          box-shadow: 0 0 4px rgba(0, 0, 0, 0.2);
  background-color: #fff;
  margin: 0;
  text-decoration: none;
  color: #58595B;
  text-align: center;
  background: #fff;
  border: 1px solid #bababa;
  height: 100%;
  margin: 0rem 1rem;
}

.event-card:hover {
  -webkit-box-shadow: none;
          box-shadow: none;
  border-color: #70963E;
}

.event-card .event-card--header {
  background: #70963E;
}

.event-card .event-card--header h3 {
  color: #fff;
  text-transform: uppercase;
  padding: 10px;
  font-size: 24px;
  letter-spacing: 1px;
}

.event-card .event-card--details {
  padding: 20px 10px;
}

@media (min-width: 768px) {
  .event-card .event-card--details {
    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: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    -ms-grid-rows: auto;
        grid-template-rows: auto;
    height: calc(100% - 40px);
  }
}

.event-card .event-card--details .event-card--details--title {
  color: #58595B;
  text-transform: uppercase;
  font-size: 20px;
  line-height: 22px;
  letter-spacing: 1px;
}

@media (min-width: 768px) {
  .event-card .event-card--details .event-card--details--title {
    font-size: 16px;
    line-height: 18px;
  }
}

.event-card .event-card--details .event-card--details--time {
  color: #6D6E71;
  font-weight: 300;
  font-size: 16px;
}

.event-card .event-card--details .event-card--details--icon {
  color: #F6882E;
}

.event-card .event-card--details .event-card--details--address {
  font-style: normal;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 12px;
  font-size: 14px;
  line-height: 16px;
}

@media (min-width: 768px) {
  .event-card .event-card--details .event-card--details--address {
    font-size: 12px;
    line-height: 14px;
  }
}

.event-card .event-card--details .event-card--details--address strong {
  font-size: 16px;
  line-height: 18px;
}

@media (min-width: 768px) {
  .event-card .event-card--details .event-card--details--address strong {
    font-size: 14px;
    line-height: 16px;
  }
}

.event-card .event-card--details .event-card--details--address svg {
  display: block;
  text-align: center;
  stroke-width: 100%;
  margin: 0 auto;
  margin-bottom: .2rem;
  color: #F6882E;
  font-size: 1.4rem;
}

/*=====  End of Upcoming Events  ======*/

/*=========================
=            Upcoming Meetings            =
=========================*/

.upcoming-meeting {
  color: #F6882E;
  text-decoration: none;
  -webkit-transition: all .5s;
  transition: all .5s;
  display: block;
}

@media (min-width: 1024px) {
  .upcoming-meeting {
    color: #fff;
  }
}

.upcoming-meeting:hover {
  padding-left: 4px;
  color: #fff;
}

.upcoming-meetings h2.section-title {
  color: #F6882E;
}

.upcoming-meetings h2.section-title::before {
  background: #F6882E;
}

@media (min-width: 1024px) {
  .upcoming-meetings-section-wrapper {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 80px 1fr;
        grid-template-columns: 1fr 80px 1fr;
    -ms-grid-rows: 100%;
        grid-template-rows: 100%;
  }
}

@media (min-width: 1400px) {
  .upcoming-meetings-section-wrapper {
    width: 1400px;
    margin: 0 auto;
  }
}

.upcoming-meetings-video-wrapper {
  margin-bottom: 20px;
}

@media (min-width: 1024px) {
  .upcoming-meetings-video-wrapper figure {
    height: calc(100% - 100px);
  }
}

.upcoming-meetings-video-wrapper figcaption {
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 1px;
}

@media (min-width: 1024px) {
  .upcoming-meetings-video-wrapper {
    -ms-grid-column: 1;
        grid-column-start: 1;
    -ms-grid-column-span: 2;
    grid-column-end: 3;
    -ms-grid-row: 1;
        grid-row-start: 1;
    -ms-grid-row-span: 1;
    grid-row-end: 2;
    position: relative;
    z-index: 2;
  }

  .upcoming-meetings-video-wrapper img {
    border-right: 15px solid #fff;
    border-bottom: 15px solid #fff;
    -o-object-fit: cover;
       object-fit: cover;
    font-family: 'object-fit: cover;';
    height: 100%;
  }
}

@media (min-width: 1024px) {
  .upcoming-meetings-wrapper {
    -ms-grid-column: 2;
        grid-column-start: 2;
    -ms-grid-column-span: 2;
    grid-column-end: 4;
    -ms-grid-row: 1;
        grid-row-start: 1;
    -ms-grid-row-span: 1;
    grid-row-end: 2;
    position: relative;
    z-index: 1;
    background: url(/images/meetings-bg.png) repeat;
    padding: 50px;
    padding-left: 120px;
    margin-top: 100px;
    color: #fff;
  }

  .upcoming-meetings-wrapper h2.section-title {
    color: #fff;
    width: auto;
  }

  .upcoming-meetings-wrapper h2.section-title::before {
    background: #fff;
  }
}

@media all and (-ms-high-contrast: none) and (min-width: 1024px), (-ms-high-contrast: active) and (min-width: 1024px) {
  .upcoming-meetings-wrapper {
    min-width: 600px;
    margin-top: 0px;
  }
}

.upcoming-meeting--title {
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 16px;
  line-height: 18px;
}

@media (min-width: 1400px) {
  .upcoming-meeting--title {
    font-size: 20px;
    line-height: 21px;
    padding-bottom: 5px;
  }
}

.upcoming-meeting--details {
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 14px;
  line-height: 20px;
}

@media (min-width: 1400px) {
  .upcoming-meeting--details {
    font-size: 16px;
    line-height: 22px;
  }
}

.upcoming-meeting + .upcoming-meeting {
  margin-top: 20px;
}

@media (min-width: 1024px) {
  .upcoming-meeting + a {
    font-size: 15px;
    margin-top: 25px;
    color: #fff;
    display: block;
    text-transform: uppercase;
    letter-spacing: 1px;
  }
}

/*=====  End of Upcoming Meetings  ======*/

/*=======================================
=            Notices Section            =
=======================================*/

.notices h2.section-title {
  color: #037ABD;
}

.notices h2.section-title::before {
  background: #037ABD;
}

.notices-section-wrapper {
  position: realtive;
}

@media (min-width: 1024px) {
  .notices-section-wrapper {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    display: -ms-grid;
    display: grid;
        -ms-grid-columns: 285px 25px 1fr;
        grid-template-columns: 285px 1fr;
        grid-template-areas: "n-items n-details";
    grid-gap: 25px;
  }
}

@media all and (-ms-high-contrast: none) and (min-width: 1024px), (-ms-high-contrast: active) and (min-width: 1024px) {
  .notices-section-wrapper {
    display: table-cell;
  }
}

.notice-wrapper {
  display: none;
}

.notice-wrapper.showTab {
  display: block;
}

.notice-section-title {
  cursor: pointer;
  text-transform: uppercase;
  padding: 10px;
  background: #fff;
  margin-bottom: 8px;
  text-align: center;
  border: 1px solid #F6C22F;
  color: #F6C22F;
  -webkit-transition: all .2s;
  transition: all .2s;
}

.notice-section-title:last-of-type {
  margin-bottom: 15px;
}

.notice-section-title:hover {
  background: #F6C22F;
  color: #fff;
}

@media (min-width: 1400px) {
  .notice-section-title {
    margin-bottom: 15px;
  }
}

.notice-section-title.selected {
  background: #F6C22F;
  color: #fff;
  border: 1px solid #F6C22F;
}

.notice-title {
  color: #F6C22F;
  text-transform: uppercase;
  font-size: 1.5em;
  line-height: 1em;
}

.notice-subtitle {
  font-size: 1em;
  text-transform: uppercase;
  color: #6D6E71;
  letter-spacing: 1px;
}

.notice-details {
  margin-top: 20px;
}

.notices-section-headings {
  background: #f2f2f2;
  padding: .5rem;
  grid-area: n-items;
}

.notices-wrapper {
  grid-area: n-details;
}

@media (min-width: 1024px) {
  .notices-section-headings {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
  .notices-wrapper {
    -ms-grid-row: 1;
    -ms-grid-column: 3;
  }
}

/*=====  End of Notices Section  ======*/

/*===========================================
=            Departments Section            =
===========================================*/

@media (min-width: 1024px) {
  .home-section.department {
    width: 100%;
    margin: 0 auto;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 80px 1fr;
        grid-template-columns: 1fr 80px 1fr;
    -ms-grid-rows: 100%;
        grid-template-rows: 100%;
  }
}

@media (min-width: 1800px) {
  .home-section.department {
    width: 1800px;
  }
}

@media (min-width: 1024px) {
  .home-section.department .department-image {
    -o-object-fit: cover;
       object-fit: cover;
    font-family: 'object-fit: cover;';
    border-right: 15px solid #fff;
    border-bottom: 15px solid #fff;
    height: calc(100% - 100px);
    -ms-grid-column: 1;
        grid-column-start: 1;
    -ms-grid-column-span: 2;
    grid-column-end: 3;
    -ms-grid-row: 1;
        grid-row-start: 1;
    -ms-grid-row-span: 1;
    grid-row-end: 2;
    position: relative;
    z-index: 2;
  }
}

.home-section.department .featured-department-wrapper {
  background: #70963E;
  color: #fff;
}

.home-section.department .featured-department-wrapper .featured-department--info {
  padding: 25px 15px;
}

@media (min-width: 1024px) {
  .home-section.department .featured-department-wrapper .featured-department--info {
    padding-left: 50px;
  }
}

@media (min-width: 1024px) {
  .home-section.department .featured-department-wrapper {
    -ms-grid-column: 2;
        grid-column-start: 2;
    -ms-grid-column-span: 2;
    grid-column-end: 4;
    -ms-grid-row: 1;
        grid-row-start: 1;
    -ms-grid-row-span: 1;
    grid-row-end: 2;
    padding: 40px 70px;
    margin-top: 100px;
  }

  .home-section.department .featured-department-wrapper h2.section-title {
    width: auto;
  }

  .home-section.department .featured-department-wrapper p {
    font-size: 18px;
    line-height: 24px;
  }

  .home-section.department .featured-department-wrapper a.link-white {
    display: block;
    margin-bottom: 10px;
  }
}

@media all and (-ms-high-contrast: none) and (min-width: 1024px), (-ms-high-contrast: active) and (min-width: 1024px) {
  .home-section.department .featured-department-wrapper {
    min-width: 600px;
    margin-top: 0px;
  }
}

.home-section.department .section-subtitle {
  line-height: 1em;
}

.home-section.department h2.section-title {
  color: #fff;
}

.home-section.department h2.section-title::before {
  content: none;
}

/*=====  End of Departments Section  ======*/

[class*="-back-link"] {
  font-size: 1rem;
  text-transform: uppercase;
  text-decoration: none;
  display: block;
  margin-top: 1rem;
  border-top: 1px solid #f2f2f2;
  padding-top: 1rem;
}

[class*="-back-link"] span {
  display: inline-block;
  font-weight: bold;
  font-style: normal;
}

/*==================================================
=            311 Citizen's Request Page            =
==================================================*/

.citizen-request h2.section-title {
  color: #F6882E;
}

.citizen-request h2.section-title::before {
  background: #F6882E;
}

.cRequest {
  margin-top: 50px;
}

.cRequest section {
  height: 182px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
      grid-template-columns: 1fr 1fr;
  padding-right: 20px;
}

.cRequest section a {
  -ms-grid-column: 2;
      grid-column-start: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  color: #fff;
  text-decoration: none;
}

.cRequest section a h4.subtitle {
  font-size: 30px;
  line-height: 20px;
  margin-bottom: 5px;
}

.cRequest section a h3.block-title {
  font-size: 38px;
  line-height: 33px;
  text-transform: uppercase;
}

.cRequest .submit-report {
  background: url(/images/311-report.png) no-repeat;
  background-size: cover;
  background-position: center center;
}

.cRequest .service-request {
  background: url(/images/311-service.png) no-repeat;
  background-size: cover;
  background-position: center center;
}

.cRequest .make-payment {
  background: url(/images/311-payment.png) no-repeat;
  background-size: cover;
  background-position: center center;
}

.cRequest .faqs {
  background: url(/images/311-faq.png) no-repeat;
  background-size: cover;
  background-position: center center;
}

.cRequest .energov {
  background: url(/images/311-energov.png) no-repeat;
  background-size: cover;
  background-position: center center;
}

.cRequest .contact {
  background: url(/images/311-contact.png) no-repeat;
  background-size: cover;
  background-position: center center;
}

/*=====  End of 311 Citizen's Request Page  ======*/

/*=====================================
=            Payments Page            =
=====================================*/

.make-payments-wrapper .section-title {
  margin-bottom: 50px;
}

.make-payments-wrapper section {
  height: 182px;
  padding-right: 20px;
}

.make-payments-wrapper section a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  color: #fff;
  text-decoration: none;
}

.make-payments-wrapper section a h4.subtitle {
  font-size: 24px;
  line-height: 20px;
  margin-bottom: 5px;
  text-transform: uppercase;
}

.make-payments-wrapper section a h3.block-title {
  font-size: 38px;
  line-height: 33px;
  text-transform: uppercase;
}

.make-payments-wrapper .pay-bill_electric {
  background: url(/images/311-pay-electric.png) no-repeat;
  background-size: cover;
  background-position: center left;
}

.make-payments-wrapper .pay-bill_water {
  background: url(/images/311-pay-water.png) no-repeat;
  background-size: cover;
  background-position: center left;
}

.make-payments-wrapper .pay-bill_ticket {
  background: url(/images/311-pay-ticket.png) no-repeat;
  background-size: cover;
  background-position: center left;
}

/*=====  End of Payments Page  ======*/

.ais-index {
  width: 100%;
  position: relative;
}

.ais-results {
  position: absolute;
  max-height: 200px;
  height: 200px;
  overflow-x: scroll;
  background: #fff;
  z-index: 99999;
  border-bottom: 6px solid #999;
}

.search-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-bottom: 1px solid #e2e2e2;
  margin: .1rem;
  padding: 0 10px;
  text-decoration: none;
}

.search-item:hover {
  background: whitesmoke;
}

.search-item-title,
.search-item-type {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: .75rem .25rem .75rem 0;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: left;
  line-height: 18px;
}

.search-item-type {
  text-transform: uppercase;
  font-size: .8rem;
  font-weight: bold;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border: none;
  text-align: left;
  line-height: 18px;
  padding-right: .8rem;
}

.search-item-type span {
  width: 12px;
  height: 12px;
  background: #ccc;
  border-radius: 50%;
}

.search-item-type.event span {
  background: #70963E;
}

.search-item-type.news span {
  background: #037ABD;
}

.search-item-type.notice span {
  background: #F6C22F;
}

.search-item-type.meeting span {
  background: #F6882E;
}

