/* Typography & Site Defaults */
:root {
  --theme-primary: #024f85;
  --theme-secondary: #2caff0;
  --theme-dark: #111517;
  --theme-grey: #f2f2f2;
  --theme-white: #fff;

  /* Full Calendar Overrides */
  --fc-border-color: transparent;
  --fc-today-bg-color: #2CAFF026;

  /* Sections */
  /* --section-width: 1400px;
--section-alt-width: 1160px; */

  --section-spacing: 120px;

  --container-width: calc(100vw - 30px);

  /* Fonts */
  --font-main: "Outfit", serif;
  --font-subheading: "Roboto", sans-serif;
  --font-alt: "Work Sans", sans-serif;
  --font-body: "Catamaran", sans-serif;
  --font-silly: "ThunderhousePro", "Times New Roman", Times, serif;

  --font-size-sm: clamp(12.8px, 0.05vw + 12.61px, 13.5px);
  --font-size-base: clamp(18px, 1.1vw + 13px, 20px);
  --font-size-md: clamp(21px, 0.971vw + 18.6375px, 24.85px);
  --font-size-lg: clamp(28px, 1.602vw + 10.25px, 41px);
  --font-size-xl: clamp(32px, 2.0313vw + 13px, 52px);
  --font-size-xxl: clamp(50px, 27.5px + 4.3vw, 110px);
  --font-size-silly: clamp(62px, 39.5px + 7.3vw, 150px);

  font-family: var(--font-main);
  font-size: var(--font-size-base);
  font-weight: 400;
}

.header-spacing {
  padding: 0 25px;
}

wm-expandable:not(:defined) {
  visibility: hidden;
}

wm-expandable {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
}

[slot="title"] .section-title {
  margin: 0;
}

.separator {
  position: relative;
  height: 45px;
  width: 100%;
  clear: both;
  display: block;
  overflow: hidden;
}

.separator::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  border-bottom: 3px solid var(--theme-primary);
  border-radius: 15px;
  width: 100%;
}

.child-accordions {
  padding: 20px;
}

.hero-overlay {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
}

a.link-underline {
  text-decoration: none;
  font-weight: 600;
  position: relative;
  display: inline-block;
  color: var(--theme-primary);
}

a.link-underline::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background-color: var(--theme-dark);
  transition: width 0.4s ease, left 0.4s ease;
}

a.link-underline:hover::before {
  width: 100%;
  left: 0;
}

.email {
  word-wrap: break-word;
  max-width: 15svw;
}

.bg-image {
  background-image: url(/Portals/0/Images/Home/hero_background.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

ul.list {
  list-style-type: square;
  column-count: 2;
  column-gap: 60px;
  column-fill: balance;
  max-width: fit-content;
  margin: 0 auto;
  margin-bottom: 10px;
  padding-left: 40px;
}

ul.list li {
  color: var(--theme-dark);
  margin-bottom: 10px;
  padding-right: 20px;
}

.smaller-font li {
  font-size: 18px;
}

ul.officials-list {
  list-style-type: square;
  max-width: fit-content;
  margin-bottom: 10px;
  padding-left: 2rem;
}

ul.officials-list li {
  color: var(--theme-dark);
  margin-bottom: 10px;
  padding-right: 20px;
}

ul.forms-list {
  list-style-type: square;
  column-count: 3;
  column-gap: 40px;
  column-fill: balance;
  max-width: fit-content;
  margin: 0 auto;
  margin-bottom: 10px;
  padding-left: 40px;
}

ul.forms-list li {
  color: var(--theme-dark);
  margin-bottom: 10px;
  padding-right: 20px;
}

.icons-container {
  width: 100%;
  height: 60px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.icons-container>div {
  width: 50px;
  height: 50px;
}

.icons-container>div>a img {
  width: 50px;
  height: 50px;
  transition: all 250ms ease;
}

.icons-container>div>a:hover img {
  transform: scale(1.2);
}

/* Typography */

h1,
h2 {
  font-family: var(--font-heading);
  font-size: var(--font-size-xxl);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0;
  margin: 0 0 0.5em;
}

h3 {
  font-family: var(--font-heading);
  font-size: var(--font-size-xl);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0;
  margin: 0 0 0.5em;
}

h4,
h5,
h6 {
  font-family: var(--font-subheading);
  font-weight: 600;
  font-size: var(--font-size-md);
  letter-spacing: 0;
  margin: 0 0 0.5em;
}

h2.title {
  font-size: var(--font-size-lg);
  font-weight: 600;
  color: var(--h1-color);
}

h3.title {
  font-size: var(--font-size-md);
}

p,
ol,
ul {
  font-family: var(--font-body);
  font-size: var(--font-size-base);
  font-weight: 400;
  line-height: 1.56;
  color: var(--theme-dark);
  margin: 0 0 0.5em;
}

p a,
li a,
dd a {
  font-weight: bolder;
}

.bg-primary p a,
.bg-primary li a,
.bg-primary dd a {
  color: var(--theme-secondary);
}

/* li ul {
  list-style-position: inside;
} */

[class^="btn"] {
  line-height: 1.25rem;
  letter-spacing: 2px;
  font-size: var(--font-size-sm);
  font-weight: 900;
  font-family: "Roboto", sans-serif;
  text-transform: lowercase;
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  height: auto;
  padding: 10px 34px;
  margin: 7px 0;
  text-align: center;
  vertical-align: middle;
  -ms-touch-action: manipulation;
  touch-action: manipulation;
  cursor: pointer;
  -webkit-user-select: none;
  user-select: none;
  border-radius: 5px;
  transition: all 0.3s cubic-bezier(0.42, 0, 1, 1);
}

[class^="btn"]:hover {
  transition: all 0.3s cubic-bezier(0.42, 0, 1, 1);
}

.btn-primary {
  background-color: var(--theme-primary);
  color: var(--theme-white) !important;
  border: 2px solid var(--theme-white);
}

.btn-primary:hover {
  color: var(--theme-black) !important;
  background-color: white;
}

.btn-secondary {
  background-color: var(--theme-white);
  color: var(--theme-primary) !important;
  border: 2px solid var(--theme-primary);
}

.btn-secondary:hover {
  color: var(--theme-white) !important;
  background-color: var(--theme-primary);
}

.btn-secondary.active {
  color: var(--theme-white) !important;
  background-color: var(--theme-primary);
}

.btn-third {
  color: var(--theme-secondary) !important;
  background-color: var(--theme-white);
  border: 2px solid var(--theme-secondary);
}

.btn-third:hover {
  color: var(--theme-primary) !important;
  border: 2px solid var(--theme-primary);
}

.hero {
  text-align: left;
  font-family: var(--font-main);
  font-weight: 600;
}

.hero>h1 {
  color: var(--theme-white);
  margin-bottom: 10px;
  font-size: var(--font-size-xxl);
}

.hero>h2 {
  color: var(--theme-white);
  font-size: var(--font-size-xl)
}

.latest-news {
  width: 267px;
  height: 90px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.8);
  border-left: 8px solid var(--theme-secondary);
}

.section-title {
  font-family: var(--font-main);
  font-size: var(--font-size-lg);
  font-weight: 600;
}

.section-subtitle {
  font-family: var(--font-main);
  font-size: var(--font-size-md);
  font-weight: 300;
  text-transform: uppercase;
}

.color-primary {
  color: var(--theme-primary) !important;
}

.color-secondary {
  color: var(--theme-secondary) !important;
}

.color-white {
  color: var(--theme-white) !important;
}

.color-black {
  color: var(--theme-dark) !important;
}

.card-container {
  margin-top: 25px;
  width: 100%;
  height: auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}

.card {
  width: 200px;
  height: 200px;
  flex-shrink: 0;
  border-radius: 50%;
  border: none;
  background-color: var(--theme-primary);
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.8);
  transition: all 500ms ease;
}

.card a {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  gap: 15px;
  height: 100%;
  text-decoration: none;
  color: var(--theme-white);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-align: center;
}

.card:hover {
  transform: scale(1.1);
}

/* .card:nth-of-type(even) {
  background-color: var(--theme-secondary);
} */

.departments-container {
  width: 100%;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  align-items: center;
  gap: 33px;
}

.departments-container .depart.smaller-card {
  width: 250px;
}

.departments-container .depart.smaller-card>a {
  width: 100%;
}

.depart {
  width: 262px;
  height: 277px;
  position: relative;
  overflow: hidden;
  transition: all 500ms ease;
}

.depart>a {
  text-decoration: none;
  display: block;
  width: 100%;
  height: 100%;
}

.depart img {
  /* object-fit: cover; */
  border-radius: 9px;
  width: 100%;
  height: 100%;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 9px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #024f85 100%);
}

.depart h3 {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0;
  padding: 15px 20px 25px;
  z-index: 2;
  font-family: var(--font-main);
  font-size: var(--font-size-base);
  color: white;
}

.depart:hover {
  transform: scale(1.1);
}

.news-container {
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-evenly;
}

.news {
  width: 262px;
  height: 277px;
  border-radius: 9px;
  background-color: var(--theme-white);
  box-shadow: 0px 0px 25px 0px rgba(0, 0, 0, 0.15);
  border-bottom: 8px solid var(--theme-secondary);
  margin-bottom: 25px;
}

.news>img {
  width: 100%;
}

.news>.news-info {
  padding: 15px 20px;
}

.community-info-container {
  width: 100%;
  height: auto;
  display: flex;
  align-items: start;
  flex-wrap: wrap;
  justify-content: space-around;
}

.info {
  height: 450px;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, 356px);
  justify-content: center;
  gap: 1rem;
}

.info-grid>.large-card {
  height: 150px;
}

.info-card {
  width: 364px;
  height: 100%;
  background-color: #fff;
  box-shadow: 0px 0px 25px 0px rgba(0, 0, 0, 0.1);
  border-radius: 7px;
  border-left: 8px solid var(--theme-secondary);
}

.content {
  height: 100%;
  padding: 15px 2rem;
  font-family: var(--font-main);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.card-title {
  font-size: 16px;
  font-weight: 600;
  color: #000;
  margin-bottom: 0;
}

.card-subtitle {
  color: var(--theme-secondary);
  font-family: var(--font-main);
  font-size: 14px;
  font-weight: 400;
}

.card-text {
  margin: 0;
  font-size: 14px;
  color: #838383;
}

.contact-container {
  width: 100%;
  display: grid;
  align-items: center;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  padding: 10px 25px;
}

.contact-container>div {
  width: 100%;
  min-height: 200px;
  height: 100%;
  text-align: center;
  padding: 10px 15px;
  border-radius: 15px;
  border: 2px solid var(--theme-white);
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
}

#table {
  margin-bottom: 25px;
  display: table;
  text-align: center;
  border-collapse: collapse;
  width: 100%;
  font-family: var(--font-main);
}

#table td,
#table th {
  border: 1px solid #ddd;
  padding: 8px;
}

#table tr:nth-child(even) {
  background-color: var(--theme-grey);
}

#table th {
  padding-top: 12px;
  padding-bottom: 12px;
  letter-spacing: 0.25em;
  background-color: var(--theme-primary);
  color: var(--theme-white);
}

.table-responsive {
  display: none;
}

.personnel-container {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-evenly;
  font-family: var(--font-main);
}

/* .personnel-container > div {
    max-width: 300px;
    width: 100%;
    height: 150px;
    font-family: var(--font-main);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
} */

.personnel-container>div h3 {
  font-size: 20px;
  color: var(--theme-primary);
}

.personnel-container>div p {
  color: var(--theme-dark);
}

.personnel-container>div p,
.personnel-container>div a {
  font-size: 16px;
}

.sidebar-container {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}

.sidebar-container>div,
.sidebar-container>div>a {
  width: 100%;
}

.officials-container,
.official {
  width: 100%;
  display: flex;
  justify-content: space-between;
}

.officials-container {
  flex-direction: column;
  align-items: flex-start;
}

.official {
  flex-direction: row;
  align-items: center;
}

.footer-container {
  width: 100%;
  display: flex;
  align-items: start;
  flex-wrap: wrap;
  justify-content: space-around;
  color: white;
  font-family: var(--font-main);
}

.footer-item>ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.footer-item>ul li {
  margin-bottom: 8px;
}

.footer-item>ul li a {
  text-decoration: none;
  color: var(--theme-white);
}

.footer-item>h3 {
  text-align: left;
  color: var(--theme-white);
  font-size: var(--font-size-lg);
}

.footer-nav-links {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-nav-links>ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.footer-nav-links>ul li {
  list-style: none;
  display: inline-block;
  font-size: 16px;
  margin-right: 25px;
}

.footer-nav-links>ul li a {
  text-decoration: none;
  color: var(--theme-white);
}

@media screen and (max-width: 1106px) {
  .info {
    justify-content: space-around;
  }
}

@media screen and (max-width: 1024px) {
  .card-container {
    grid-template-columns: 2fr;
  }

  .card-container>div {
    justify-content: center;
  }

  .card {
    margin: 0 5px 5px 0;
  }
}

@media screen and (max-width: 767px) {
  #other-contact {
    display: none;
  }

  .table-responsive {
    display: block;
  }

  .personnel-container {
    flex-direction: column;
  }

  .personnel-container>div {
    margin-bottom: 25px;
  }

  .personnel-container>div:last-child {
    margin-bottom: 0;
  }

  .email {
    max-width: 30svw;
  }

  .sidebar-container {
    display: none;
  }
}

@media screen and (max-width: 430px) {
  .contact-container {
    grid-template-columns: repeat(1, 1fr);
  }

  ul.list {
    column-count: 1;
  }
}

@media screen and (max-width: 425px) {
  .hero>h1 {
    font-size: 48px;
  }
}

@media screen and (max-width: 400px) {
  .card-container>div {
    flex-direction: column;
  }
}














