@font-face {
  font-family: "RobotoSerif";
  src: url("../font/RobotoSerif-Light.ttf") format("truetype");
  font-weight: 100;
}

@font-face {
  font-family: "RobotoSerif";
  src: url("../font/RobotoSerif-Regular.ttf") format("truetype");
  font-weight: 400;
}

@font-face {
  font-family: "RobotoSerif";
  src: url("../font/RobotoSerif-SemiBold.ttf") format("truetype");
  font-weight: 500;
}

@font-face {
  font-family: "RobotoSerif";
  src: url("../font/RobotoSerif-Bold.ttf") format("truetype");
  font-weight: 700;
}

@font-face {
  font-family: "RobotoSerif";
  src: url("../font/RobotoSerif-ExtraBold.ttf") format("truetype");
  font-weight: 900;
}

@font-face {
  font-family: "Lato";
  src: url("../font/Lato-Light.ttf") format("truetype");
  font-weight: 100;
}

@font-face {
  font-family: "Lato";
  src: url("../font/lato-regular.ttf") format("truetype");
  font-weight: 400;
}

@font-face {
  font-family: "Lato";
  src: url("../font/Lato-Bold.ttf") format("truetype");
  font-weight: 700;
}

@font-face {
  font-family: "Lexend";
  src: url("../font/Lexend-Bold.ttf") format("truetype");
  font-weight: 900;
}

@font-face {
  font-family: "Lexend";
  src: url("../font/Lexend-Light.ttf") format("truetype");
  font-weight: 100;
}

@font-face {
  font-family: "Lexend";
  src: url("../font/Lexend-SemiBold.ttf") format("truetype");
  font-weight: 900;
}

@font-face {
  font-family: "Lexend";
  src: url("../font/Lexend-Regular.ttf") format("truetype");
  font-weight: 400;
}

:root {
  --white: #ffff;
  --black: #1d2633;
  --green: #00a88e;
  --dark-green: #004854;
  --blue: #097bed;
  --dark-blue: #102950;
  --maroon: #a0111a;
  --dark-maroon: #762121;
  --primary-font: "Lato";
  --secondary-font: "RobotoSerif";
  --lexend-font: "Lexend";
}
body,
.page {
  padding: 0;
  margin: 0;
}

* {
  padding: 0;
  margin: 0;
  font-family: var(--lexend-font);
}

/* global */

h1 {
  font-size: 40px;
  line-height: normal;
  font-weight: 700;
  /* font-family: var(--secondary-font); */
  color: var(--dark-blue);
}

h2 {
  font-size: 36px;
  line-height: normal;
  font-weight: 700;
  /* font-family: var(--secondary-font); */
  color: var(--dark-blue);
  border-left: 5px solid var(--blue);
  padding-left: 10px;
}

h3 {
  font-size: 20px;
  line-height: normal;
  font-weight: 700;
  /* font-family: var(--secondary-font); */
  border-left: 5px solid var(--blue);
  padding-left: 10px;
}

h4 {
  font-size: 16px;
  font-weight: 700;
  line-height: normal;
}

h5 {
  font-size: 15px;
  line-height: normal;
  font-weight: 700;
}

p {
  font-size: 15px;
  line-height: normal;
  font-weight: 400;
  margin: 0;
}

a,
a:hover,
a:active,
a:focus,
a:visited,
span {
  color: var(--dark-blue);
  text-decoration: none;
  font: 12px;
  font-weight: 400;
  outline: none;
}

.title {
  font-weight: 800;
  font-size: 18px;
}

.text-white {
  color: #fff;
}

.page-section {
  padding: 100px 0;
}

.icon {
  width: 18px;
}

.card {
  padding: 20px;
  border-radius: 5px;
  border: none;
  box-shadow: 0px 3px 10px 0px rgba(0, 0, 0, 0.09);
}

img.arrow-right {
  width: 18px;
  rotate: -45deg;
  transition: all 0.5s;
}

.btn-container:hover img {
  rotate: unset;
  scale: 1.2;
  /* background-color: #ffffff4f; */
  border-radius: 100%;
  padding: 2px;
}

.btn-container:after {
  content: "";
  position: absolute;
  width: 0;
  height: 100%;
  background: var(--blue);
  top: 0;
  left: 0;
  transition: all 0.3s;
}

.btn-container-blue {
  background: var(--blue);
  padding: 8px 20px;
  /* border-radius: 5px; */
  position: relative;
  overflow: hidden;
  width: fit-content;
  border-radius: 5px;
}

.btn-container-blue:hover img {
  rotate: unset;
  scale: 1.2;
  /* background-color: #ffffff4f; */
  border-radius: 100%;
  padding: 2px;
}

.btn-container-blue:after {
  content: "";
  position: absolute;
  width: 0;
  height: 100%;
  background: var(--dark-blue);
  top: 0;
  left: 0;
  transition: all 0.3s;
}

.btn-container.view:after {
  background: var(--green);
}

.btn-container {
  background: var(--dark-blue);
  padding: 8px 20px;
  /* border-radius: 5px; */
  position: relative;
  overflow: hidden;
  width: fit-content;
  border-radius: 5px;
}

.btn-container.download {
  background: var(--green);
}

.btn-container.view {
  background: var(--blue);
}

img.view-icon,
img.download-icon {
  width: 16px;
}

a.read-more-btn,
button.btn-filter {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  position: relative;
  z-index: 1;
  font-size: 14px;
  background: none;
  border: none;
  padding: 0;
}

button.read-more-btn {
  padding: 0;
  margin: 0;
  background: none;
  border: none;
  color: #fff;
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.btn-container button img {
  transition: all 0.3s;
}

.btn-container:hover button img {
  rotate: 35deg;
}

.btn-container:hover:after {
  width: 100%;
}

.btn-container-blue:hover:after {
  width: 100%;
}

/* header section */

header#masthead {
  position: fixed;
  z-index: 99;
  background: #fff;
  width: 100%;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.08);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fff;
}

.site-branding a img {
  width: 320px;
}

.main-navigation {
  width: fit-content;
}

.site-branding {
  display: flex;
  align-items: center;
}

.menu-container {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

header .btn-container-blue img.icon {
  width: 16px;
  position: relative;
  z-index: 1;
}

header .btn-container-blue {
  display: flex;
  gap: 10px;
}

.mega-menu-item-38829 {
  display: none !important;
}

.modal-body {
  padding: 70px;
}

img.announcement-img {
  width: 20px;
}

/* end of header section */

/* home banner section */

.home-banner-image-wrapper {
    width: 100%;
    height: 600px;
}

.home-banner-image-wrapper img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 5px;
}

.home-banner-image-wrapper .slick-list.draggable {
    width: 100%;
    height: 100%;
}

.home-banner-image-wrapper :is(.prev-arrow.slick-arrow, .next-arrow.slick-arrow){
  top: 50%;
  cursor: pointer;
}

.home-banner {
  height: 110vh;
  overflow: hidden ;
  background: var(--dark-blue);
}

.slick-track {
    display: flex !important;
    height: 100%;
}

.slick-slide
{
    height: inherit !important;
}



/* .home-banner .home-banner-card {
  margin-right: 10rem;
} */

/* .home-banner .img-container {
  position: absolute;
  border-radius: 55% 45% 0% 100% / 63% 0% 100% 37%;
  height: 100%;
  width: 50%;
  overflow: hidden;
  top: 0;
  right: 0;
} */

.home-banner .img-container {
  height: 100%;
}

.home-banner .img-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-banner :is(.left-container, .right-container) {
  display: flex;
  align-items: center;
}

.home-banner-image-wrapper .slick-dots {
    bottom: -35px;
}

.home-banner-image-wrapper .slick-dots li button:before {
  color: transparent;
  border-radius: 50px;
  background: transparent;
  border: 1px solid #fff;
  opacity: 1;
  width: 15px;
  height: 15px;
}

 .home-banner-image-wrapper .slick-dots li.slick-active button:before {
  color: #ffff;
  background: #ffff;
  opacity: 1;
}

/* end of home banner section */

/* news section */

a.underline {
  color: #097bed;
  text-decoration: underline;
}

/* .news-section .news-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
} */

.news-section .news-wrapper {
  display: grid;
  flex-wrap: wrap;
  gap: 50px;
  grid-template-columns: repeat(3, 1fr);
}

.top-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
}

.news-section .news-card:first-child .label {
  top: 0;
  right: 0;
  height: fit-content;
  border-radius: 0px 0 0 5px;
}

/* .news-section .news-card:first-child {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
} */

.news-section .news-card:first-child {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-column: 1 / 4;
}

.news-section .news-card:first-child .img-container {
  height: 350px;
}

:is(.news-section, .news-page) .news-card .img-container {
  overflow: hidden;
  background: aliceblue;
}

.news-section .news-card:not(:first-child) {
  flex: 1;
}

:is(.news-section, .news-page) .img-container img.thumbnail {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 1s;
}

.news-section .news-card:first-child .right-container {
  padding: 50px;
}

:is(.news-section, .news-page) .news-card {
  overflow: hidden;
  background: #fafafa;
  border-radius: 5px;
  transition: all 0.3s;
}

:is(.news-section, .news-page) .news-card:hover img.thumbnail {
  scale: 1.1;
}

:is(.news-section, .news-page) .news-card:hover {
  box-shadow: 0px 3px 10px 0px rgba(0, 0, 0, 0.09);
}

.news-section .news-card:not(:first-child) .right-container,
.news-page .news-card .right-container {
  padding: 30px;
}

:is(.news-section, .news-page) .right-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.news-section .news-card:not(:first-child) .img-container,
.news-page .news-card .img-container {
  height: 250px;
}

:is(.news-section, .news-page) .news-card .img-container:hover .bg-overlay {
  opacity: 1;
}

:is(.news-section, .news-page) .label {
  background: #e6f2fd;
  color: var(--blue);
  padding: 5px 20px;
  z-index: 2;
  font-size: 12px;
  /* text-transform: uppercase; */
  font-weight: 500;
  border-radius: 0 5px 0 0;
  position: absolute;
  bottom: 0;
}

:is(.news-section, .news-page) .date-and-time {
  display: flex;
  gap: 30px;
  align-items: center;
  justify-content: space-between;
}

.date,
.time {
  color: #102950;
  font-weight: 700;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 5px;
}

:is(.news-section, .news-page) .excerpt {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}
/* end of news section */

/* events section */

select {
  margin-bottom: 30px;
  padding: 6px;
  border-radius: 5px;
}

input#start_date,
input#end_date {
  padding: 6px;
}

.events-card {
  position: relative;
  margin: 0 15px;
}

.events-card:hover .event-details {
  margin: 20px 0;
}

.card.content-card {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  bottom: -50px;
}

.event-details {
  display: flex;
  flex-direction: column;
  gap: 10px;
  height: 0;
  overflow: hidden;
  transition: all 0.3s;
}

img.events-thumbnail {
  height: 500px;
  width: 100%;
  border-radius: 5px;
  background: aliceblue;
  object-fit: fill;
}

.events-wrapper .slick-track {
  padding-bottom: 100px;
}

.events-date-wrapper .date {
  font-size: 12px;
}

img.event-details-icon {
  width: 18px;
}

.events-details {
  display: flex;
  gap: 10px;
  font-weight: 600;
}

.events-date-card .date {
  color: #dadce0;
}

.ribbon {
  background: #e6f2fd;
  color: var(--blue);
  width: fit-content;
  padding: 5px 20px;
  border-radius: 5px;
  font-size: 12px;
  margin-bottom: 15px;
}

.single-news-post .ribbon {
  margin-bottom: 0;
}

.ribbon.past-event,
.ribbon.department {
  color: #198754;
  background: #e7f3ed;
}

.events-card .top-container {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  margin: 0;
}

.prev-arrow.slick-arrow {
  background: var(--blue);
  padding: 10px;
  border-radius: 5px;
  position: absolute;
  z-index: 1;
  top: 41%;
  transform: translateY(-50%);
  left: 0;
}

.next-arrow.slick-arrow {
  background: var(--blue);
  padding: 10px;
  border-radius: 5px;
  position: absolute;
  z-index: 1;
  top: 41%;
  transform: translateY(-50%);
  right: 0;
}

select#event_status_filter {
  margin: 0;
  outline: none;
}

.heading-filter {
  display: flex;
  gap: 30px;
  align-items: center;
}

/* end of events section */

/* inner banner section */

.inner-banner-section h1.heading {
  position: relative;
}

.inner-banner-section {
  height: 40vh;
  background: var(--dark-blue);
  position: relative;
  overflow: hidden;
}

.inner-banner-section .container.inner-banner-container {
  height: 100%;
  display: flex;
  align-items: flex-end;
}

.inner-banner-section img.banner-element {
  position: absolute;
  right: 0;
  opacity: 0.1;
  top: 50px;
  transform: skew(0.44turn, 343deg);
  filter: drop-shadow(35px 35px 0px #000);
  width: 500px;
}

/* end of inner banner section */

/* motm section */

.motm-section {
  position: relative;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top center;
}

.motm-section .img-container img {
  filter: drop-shadow(5px 5px 10px #666);
  position: absolute;
  /* height: 126%; */
  bottom: 0;
  width: 450px;
  margin-top: -81px;
}

.motm-card {
  padding: 100px 0;
}

/* end of motm section */

/* news page */

.event-page-wrapper,
.news-page-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
}

.event-page-wrapper {
  row-gap: 100px;
}

.news-page form {
  display: flex;
  gap: 20px;
  align-items: center;
  flex: 1;
}

.pagination {
  display: flex;
  gap: 5px;
}

.pagination .page-numbers {
  font-size: 14px;
  background: #fafafa;
  padding: 8px 16px;
  border-radius: 5px;
}

.pagination span.page-numbers.current {
  background: var(--blue);
  color: var(--white);
}

/* end of news page */

/* events page */

.event-page-wrapper {
  column-gap: 0;
}

.event-page-wrapper .excerpt {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.event-page-wrapper .date-and-time {
  display: flex;
  gap: 30px;
  align-items: center;
}

.event-page-wrapper .label {
  background: #e6f2fd;
  color: var(--blue);
  padding: 5px 20px;
  z-index: 2;
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 500;
  border-radius: 5px;
}

.event-page-wrapper .date {
  color: #102950;
  font-weight: 700;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.event-card {
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding: 50px 0;
}

.label.past-event {
  background: #c6f6d5;
  color: #276749;
  padding: 5px 20px;
  z-index: 2;
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 500;
  border-radius: 0 5px 0 0;
}

.label.upcoming-event {
  background: #e6f2fd;
  color: var(--blue);
}

.events-page .pagination {
  margin-top: 100px;
  padding: 0;
}

/* end of events page */

/* single news page */

.wp-block-image .aligncenter {
  margin-left: unset;
  margin-right: unset;
  width: 100%;
}

.date-time-label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}

.date-and-time {
  display: flex;
  gap: 20px;
  align-items: center;
}

.single-news-post .label {
  background: #e6f2fd;
  color: var(--blue);
  padding: 5px 20px;
  z-index: 2;
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 500;
  border-radius: 5px;
  bottom: 0;
  margin-bottom
}

.post-image.mb-5 img {
  border-radius: 5px;
}

.latest-news {
  display: flex;
  flex-direction: column;
  gap: 30px;
  background: #fafafa;
  padding: 30px;
  border-radius: 5px;
  position: sticky;
  top: 200px;
}

.news-item {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.news-item .image-container {
  width: 150px;
  height: 100px;
  border-radius: 5px;
  overflow: hidden;
}

.news-details {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.latest-news .date-and-time :is(.date, .time) {
  font-size: 12px;
  color: darkgray;
}

.news-title {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  font-size: 14px;
  font-weight: 700;
}

.latest-news .date-and-time {
  justify-content: space-between;
  margin-bottom: 10px;
}

.nav-links {
  display: grid !important;
  grid-template-columns: repeat(2, 1fr);
  gap: 100px;
  margin-top: 3rem;
}

.nav-previous,
.nav-next {
  background: #edf1fa;
  border-radius: 10px;
  padding: 20px;
}

.nav-arrow span {
  padding: 10px 15px;
  background: #0a2676;
  color: #fff;
  font-size: 14px;
  border-radius: 10px;
}

.nav-item {
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: space-around;
}

.nav-next .nav-item {
  justify-content: space-around;
  display: flex;
  flex-direction: row-reverse;
}

.nav-content {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

span.nav-subtitle {
  font-weight: 700;
}

span.nav-title {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.news-item img.thumbnail {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-big-image {
  height: 500px;
}

.gallery-small-image {
  height: 100px;
}

.gallery-small-image .slick-track {
  display: flex;
}

:is(.gallery-big-image, .gallery-small-image)
  :is(.slick-track, .slick-list.draggable) {
  height: 100%;
}

.gallery-small-image .slick-track {
  gap: 20px;
}

:is(.gallery-big-image, .gallery-small-image) .slick-slide img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: 5px;
}

.gallery-small-image .slick-slide img {
  filter: brightness(0.7);
}

.gallery-small-image .gallery-image.slick-slide.slick-current.slick-active img {
  filter: unset;
}

/* .gallery-image {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
} */

.gallery-image .slick-track {
  display: flex;
  gap: 10px;
}

.gallery-image a {
  height: 300px;
}

.gallery-image a img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: 5px;
}

.gallery-image :is(.prev-arrow.slick-arrow, .next-arrow.slick-arrow) {
  top: 50%;
}

/* end of single news page */

/* mission and vision */

.mission-vision-item {
  background: #fafafa;
  padding: 50px;
  border-radius: 5px;
}

.mission-vision-wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px;
}

img.mv-icon {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 150px;
  opacity: 0.2;
}

/* end of mission and vision */

/* history section */

img.history-img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: 5px;
}

.history-section.right .left-container {
  order: 2;
}

.history-section.left .right-container {
  padding-left: 50px;
}

.history-section.right .right-container {
  padding-right: 50px;
}

.history-section .content {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 25;
  -webkit-box-orient: vertical;
}

.santaana-gallery {
  height: 600px;
  margin-bottom: 3rem;
  border-radius: 5px;
  overflow: hidden;
}

.santaana-gallery
  :is(.slick-list.draggable, .slick-track, img.staana-gallery-img) {
  height: 100%;
}

/* end of history section */

/* downloadable section */

.downloadable-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.pdf-item {
  display: flex;
  gap: 20px;
  border: 1px solid gainsboro;
  align-items: center;
  padding: 15px;
  border-radius: 5px;
}

.pdf-item a.pdf-link {
  flex: 1;
}

.pdf-item .title {
  font-size: 14px;
}

.file-size {
  font-size: 10px;
  color: darkgray;
}

/* end of downloadable section */

/* contact us page */

.form-card {
  padding: 40px;
  box-shadow: 0px 3px 6px #00000029;
}

input.wpcf7-form-control.wpcf7-text.wpcf7-validates-as-required {
  width: 100%;
  margin-bottom: 10px;
  padding: 8px;
  outline: none;
}

.form-card textarea {
  outline: none;
  padding: 8px;
  height: 185px;
}

.submit-container {
  padding-top: 15px;
  display: flex;
  justify-content: flex-end;
}

button.contact-us-submit {
  padding: 9px 20px;
}

.contact-use-wrapper {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
}

.address-wrapper,
.email-wrapper {
  flex: 1;
}

.contact-wrapper {
  width: 100%;
}

form.wpcf7-form {
  display: flex;
  flex-direction: column;
}

form.wpcf7-form .btn-container {
  align-self: end;
}

/* end of contact us page */

/* citezens charter section */

.citizens-wrapper {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.accordion-header {
  cursor: pointer;
  padding: 15px 20px;
  border: 1px solid gainsboro;
  margin-bottom: 5px;
  border-radius: 5px;
  font-size: 18px;
  font-weight: 400;
  transition: all 0.3s;
  display: flex;
  justify-content: space-between;
}

.accordion-header.active {
  color: var(--white);
}

.accordion-content {
  padding: 10px;
  border: 1px solid gainsboro;
  border-top: none;
  border-radius: 5px;
}

.accordion-header.active {
  background: var(--blue);
}

.accordion-header img.chevron {
  width: 24px;
  transition: all 0.3s;
}

.accordion-header.active img.chevron {
  rotate: 180deg;
}

/* end of citezens charter section */

/* barangay section */

.barangay-section,
.hotline-section {
  padding-top: 200px;
}

.barangay-wrapper,
.hotline-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  row-gap: 100px;
}

.barangay-wrapper {
  row-gap: 100px;
}

.hotline-wrapper {
  row-gap: 150px;
}

.barangay-item,
.hotline-item {
  box-shadow: 0px 3px 10px 0px rgba(0, 0, 0, 0.09);
  padding: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 5px;
  background: #fafafa;
}

img.barangay-logo,
img.hotline-logo {
  margin-top: -120px;
  filter: drop-shadow(5px 5px 0px black);
  aspect-ratio: 1 / 1;
  object-fit: contain;
}

.barangay-name,
.barangay-alias,
.hotline-name,
.hotline-contact-no {
  text-align: center;
}

.hotline-name {
  margin: 1rem 0;
}

.contacts-wrapper {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

/* end of barangay section */

/* bid archive page */

.filter {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.filter-status {
  display: flex;
  gap: 10px;
}

.filter-status .bid-status {
  padding: 5px 20px;
  border-radius: 5px;
  background: #fafafa;
  border: 1px solid #efefef;
  transition: all 0.3s;
}

.filter-status .bid-status.active,
.filter-status .bid-status:hover {
  background: var(--dark-blue);
  color: #fff;
}

.main-pdf-container .accordion-content {
  padding: 20px;
  border: 1px solid gainsboro;
  border-top: none;
  border-radius: 5px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* .pdf-wrapper {
  display: flex;
  flex-direction: column;
  gap: 10px;
} */

/* end of bid archive page */

/* map section */
/* .map-section {
    padding-top: 200px;
} */

.map-section > * {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.map-container,
.map-section .content {
  max-width: 900px;
}

.btn-blue,
.btn-blue:hover {
  background: var(--blue);
  color: var(--white);
}

.btn-gray,
.btn-gray:hover {
  background: #fafafa;
  color: var(--dark-blue);
  box-shadow: rgba(50, 50, 54, 0.15) 0px 30px 60px -12px inset,
    rgba(0, 0, 0, 0.1) 0px 18px 36px -18px inset;
}

button {
  outline: none;
  box-shadow: none;
}

img.map.general-zoning {
  border: 2px solid black;
}

/* end of map section */

/* services section */

/* .services-section{
  background: var(--dark-blue);
  padding-bottom: 100px;
} */

.services-section > .container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.services-wrapper {
    display: grid;
    flex-wrap: wrap;
    border-radius: 5px;
    transform: translateY(-100px);
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    width: 100%;
    gap: 10px;
}

a.services-item {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding:30px;
    transition: all 0.3s ease-in-out;
    border-radius: 5px;
    gap: 30px;
    cursor: pointer;
    background: var(--white);
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
}

a.services-item:hover {
    background: #097bed;
    transform: scale(1.1);
    z-index: 2;
}

a.services-item:hover ~ * a.services-item:not(:hover)  {
    z-index: 1;
}

/* a.services-item:hover:after{
  display: none;
} */

.services-title{
  text-align: center;
}

img.services-img, .services-title-link {
  transition: all 0.3s ease-in-out;
}

a.services-item:hover .services-title-link{
  color: var(--white);
}

a.services-item:hover img.services-img {
    filter: invert(97%) sepia(100%) saturate(0%) hue-rotate(281deg) brightness(107%) contrast(101%);
}

/* a.services-item:not(:last-child):after {
    content: '';
    position: absolute;
    height: 30%;
    width: 2px;
    background: #ece9e9;
    top: 0;
    right: 0;
    transform: translateY(100%);
} */

/* end of services section */

/* footer */

.site-footer {
  background: #f0f0f0;
  padding: 100px 0;
}

.footer-logo,
img.contact-logo {
  width: 100%;
}

footer .heading {
  color: var(--dark-blue);
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 2rem;
  text-align: center;
}

footer .footer-info ul {
  margin: 0;
  padding: 0;
}

footer .footer-info ul li {
  color: var(--dark-blue);
  font-weight: 500;
  margin-top: 10px;
  list-style: none;
  word-wrap: break-word;
  text-align: center;
  /* text-wrap: nowrap; */
}

/* end of footer */

td.action {
  display: flex;
  gap: 10px;
  align-items: center;
}
