@import url("https://fonts.googleapis.com/css2?family=Open+Sans&display=swap");
* {
  /*-webkit-touch-callout: none;*/ /* iOS Safari */
  /*-webkit-user-select: none;*/ /* Safari */
  /*-khtml-user-select: none;*/ /* Konqueror HTML */
  /*-moz-user-select: none;*/ /* Old versions of Firefox */
  /*-ms-user-select: none;*/ /* Internet Explorer/Edge */
  /*user-select: none;*/ /* Non-prefixed version, currently
                                  supported by Chrome, Edge, Opera and Firefox */
}

body {
  margin: 0;
  font-family: Open Sans, sans-serif;
  font-size: 16px;
}

/* Under Construction page styling */

.bgimg {
  /* Background image */
  background-image: url('/images/under-construction.jpg');
  /* Full-screen */
  height: 1000px;
  /* Center the background image */
  background-position: center;
  /* Scale and zoom in the image */
  background-size: cover;
  /* Add position: relative to enable absolutely positioned elements inside the image (place text) */
  position: relative;
  /* Add a black text color to all elements inside the .bgimg container */
  color: black;
  /* Add a font */
  font-family: "Courier New", Courier, monospace;
  /* Set the font-size to 25 pixels */
  font-size: 25px;
}

/* Position text in the top-left corner */
.topleft {
  position: absolute;
  top: 0;
  left: 16px;
}

/* Position text in the bottom-left corner */
.bottomleft {
  position: absolute;
  bottom: 0;
  left: 16px;
}

/* Position text in the middle */
.middle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-weight: bold;
  text-align: center;
}

/* Style the <hr> element */
hr {
  margin: auto;
  width: 40%;
}

/* Under construction page finished */

a {
  text-decoration: none;
}

ul {
  list-style: none;
}

/* Header */
.header {
  background-color: #fff;
  box-shadow: 1px 1px 5px 0px gray;
  position: sticky;
  top: 0;
  width: 100%;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
}

.navbar img {
  height: 64px;
  margin-left: 200px;
}

.navbar ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

.navbar li {
  margin: 0 10px;
}

.navbar button {
  padding: 0;
}

.navbar a {
  color: #2d7575;
  text-decoration: none;
  font-size: 18px;
  font-weight: bold;
}

.navbar #contact-btn {
  padding: 0.7rem 1.5em;
  border-radius: 30px;
  color: #fff;
  background-color: #2d7575;
  font-size: 1.1em;
  border: 0;
  cursor: pointer;
  margin: 1em;
}

.navbar .hamburger-menu {
  display: none;
  font-size: 30px;
  cursor: pointer;
}

.navbar .dropdown-menu {
  display: none;
  position: absolute;
  top: 70px;
  right: 0;
  z-index: 1;
}

.navbar .dropdown-menu li {
  margin: 10px;
}

.navbar .dropdown-menu a {
  color: #000;
  text-decoration: none;
  font-size: 18px;
}

.icon {
  color: #2d7575;
}

@media (max-width: 992px) {
  .navbar img {
    margin-right: auto;
    margin-left: 0;
  }

  .icon {
    margin-left: 10px;
    float: right;
  }
}

@media (max-width: 768px) {
  .navbar {
    flex-wrap: wrap;
  }

  .navbar img {
    margin-right: auto;
    margin-left: 0;
  }

  .navbar ul {
    display: none;
    position: relative;
    margin-top: 10px;
    justify-content: center;
  }

  .navbar li {
    display: block;
    margin: 10px 0;
  }

  .navbar .hamburger-menu {
    display: block;
  }

  .navbar .dropdown-menu {
    display: none;
    position: absolute;
    top: 70px;
    right: 0;
    z-index: 1;
    width: 100%;
  }

  .navbar .dropdown-menu.show {
    display: block;
    background-color: #fff;
  }

  .navbar .dropdown-menu li {
    margin: 10px 20px;
  }
}

.dropydown {
  /*float: left;*/
  overflow: hidden;
}

.dropydown .dropybtn {
  font-size: 17px;
  border: none;
  outline: none;
  color: #000;
  background-color: inherit;
  font-family: inherit;
  margin: 0;
}

.dropydown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 1;
}

.dropydown-content a {
  float: none;
  color: #2d7575;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  text-align: left;
}

.dropydown:hover .dropybtn {
  color: #000;
}

.dropydown-content a:hover {
  background-color: #ddd;
  color: #2d7575;
}

.dropydown:hover .dropydown-content {
  display: block;
}

@media screen and (max-width: 600px) {
  .dropydown .dropybtn {
    display: none;
  }
}

@media screen and (max-width: 600px) {
  .dropydown {
    float: none;
  }
  .dropydown-content {
    position: relative;
  }
  .dropydown .dropybtn {
    display: block;
    width: 100%;
    text-align: left;
  }
}

#hero {
  background-image: url("../images/Banner.png");
  background-size: cover;
  background-position: right;
  color: #000;
  text-align: center;
  padding: 100px 0 300px 0;
  position: relative;
  z-index: -1;
}

#hero .container {
  display: flex;
}

#hero .content {
  flex: 1;
}

#hero .sidebar {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 350px;
  /* background-color: rgba(0, 0, 0, 0.5); */
  color: #424140;
  position: relative;
  top: 300px;
  left: 250px;
  z-index: -1;
}

#hero h1 {
  line-height: 70px;
  letter-spacing: 0px;
  font-family: "Calibri";
  font-weight: 700;
  font-size: 65px;
  vertical-align: middle;
  margin: 0;
}

#hero svg {
  width: 100%;
  overflow: visible;
}

@media (max-width: 768px) {
  #hero {
    background-image: url("../images/Banner.png");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    color: #000;
    text-align: center;
  }
  #hero .container {
    justify-content: flex-end;
  }
  #hero h1 {
    color: #424140;
  }
  #hero .sidebar {
    height: 250px;
    position: relative;
    top: 0;
    left: 0;
  }

  #hero h1 {
    display: flex;
    margin: 73px 10px;
    line-height: 25px;
    font-size: 20px;
    justify-content: center;
    padding-top: 20%;
    padding-left: 20%;
  }
}

@media (max-width: 968px) {
  #hero {
    background-size: cover;
    padding: 0;
  }
  #hero .sidebar {
    height: 250px;
    position: relative;
    top: 0;
    left: 0;
  }
}

@media (min-width: 968px) {
  #hero .sidebar {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 350px;
    /* background-color: rgba(0, 0, 0, 0.5); */
    color: #424140;
    position: relative;
    top: 300px;
    left: 250px;
    z-index: -1;
  }
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
  box-sizing: border-box;
}

h2 {
  color: #2d7575;
  font-size: 36px;
  text-align: center;
  line-height: normal;
  margin-top: 50px;
  margin-bottom: 30px;
}

p {
  font-size: 18px;
  line-height: 1.5;
  margin-bottom: 30px;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.btn {
  display: inline-block;
  background-color: #007bff;
  color: #fff;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 5px;
  margin-top: 30px;
}

.btn-secondary {
  background-color: #6c757d;
}

/* About Section */

#dep-cards {
  padding: 50px 0;
}

.dep-card-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.dep-card {
  width: 400px;
  background-color: #fff;
  box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.2);
  border-radius: 5px;
  overflow: hidden;
}

.dep-card-icon {
  height: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fff;
}

.dep-card-icon i {
  font-size: 50px;
  color: #888;
}

.dep-card-content {
  padding: 20px;
}

.dep-card-title {
  color: #2d7575;
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 24px;
  text-align: center;
}

.dep-card-description {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 16px;
  text-align: center;
}

@media (max-width: 768px) {
  .dep-card {
    width: 100%;
  }
}

/* Services Section */

/*#onemap-main-container {
  background-color: #f1f1f1;
}*/

.onemap-sub-container {
  padding: 20px 40px 40px;
}
.onemap-image {
  display: inline-block;
  vertical-align: top;
  width: 35%;
  margin: 20px 30px 0 0;
}
.onemap-text {
  display: inline-block;
  width: 46%;
  padding-top: 10%;
  line-height: 30px;
  letter-spacing: 0px;
  font-weight: 500;
  font-size: 17px;
}
.onemap-text h2 {
  color: #2d7575;
  /* color: rgb(123, 177, 176); */
  text-align: unset;
}

.management-sub-container {
  padding: 20px 40px 40px;
}
.management-image {
  display: inline-block;
  vertical-align: top;
  width: 35%;
  margin: 20px 30px 0 0;
}
.management-text {
  display: inline-block;
  width: 100%;
  /*padding-top: 10%;*/
  line-height: 30px;
  letter-spacing: 0px;
  font-weight: 500;
  font-size: 17px;
}
.management-text h2 {
  color: #2d7575;
  /* color: rgb(123, 177, 176); */
  text-align: unset;
}
@media (max-width: 620px) {
  .onemap-text {
    width: 100%;
  }
  .management-text {
    width: 100%;
  }
}

/* Documents Section */

#documents .container {
  overflow-x: scroll;
  white-space: nowrap;
  scrollbar-width: thin;
  scrollbar-color: #c5c5c5 #f3f3f3;
  padding: 10px 10px;
}

#documents .container::-webkit-scrollbar {
  width: 8px;
}

#documents .container::-webkit-scrollbar-track {
  background: #f3f3f3;
}

#documents .container::-webkit-scrollbar-thumb {
  background-color: #c5c5c5;
  border-radius: 20px;
  border: 2px solid #f3f3f3;
}

#documents .container::-webkit-scrollbar-thumb:hover {
  background-color: #888;
}

.card {
  display: inline-block;
  width: 355px;
  height: 100px;
  margin-right: 20px;
  padding: 10px;
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: 10px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.card a {
  display: block;
  overflow: hidden;
  color: #000;
  text-decoration: none;
  text-overflow: ellipsis;
  margin-top: 25px;
  white-space: nowrap;
}

.card p.type {
  margin-top: 10px;
  font-size: 12px;
}

/* Responsive Styles */

@media screen and (max-width: 767px) {
  .onemap-image {
    display: none;
  }
  .management-image {
    display: none;
  }
  .card {
    width: 338px;
  }
}

@media screen and (max-width: 575px) {
  #services li {
    font-size: 18px;
  }

  #documents .card {
    flex-basis: 100%;
    margin-right: 0;
  }
}

footer {
  width: auto;
  position: relative;
  bottom: 0px;
}

.footer-cont {
  display: flex;
  flex-wrap: wrap;
  gap: 50%;
}

footer div {
  background-image: linear-gradient(180deg, #2d7575 100%, #b0d5d5 0%);
  margin: -5px 0px 0px 0px;
  /*padding: 30px;*/
  color: #fff;
}

footer .footer-container {
  display: inline-block;
  background-image: linear-gradient(180deg, #2d7575 100%, #b0d5d5 0%);
  margin: -5px 0px 0px 0px;
  padding: 30px;
  color: #fff;
  vertical-align: text-top;
}

footer p {
  padding: 20px 10px;
  margin: 0;
  font-size: 14px;
  color: #fff;
  background-image: linear-gradient(180deg, #2d7575 100%, #b0d5d5 0%);
}

footer nav {
  margin-top: 10px;
  background-image: linear-gradient(180deg, #2d7575 100%, #b0d5d5 0%);
}

footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

footer li {
  padding-bottom: 10px;
  display: inline-block;
  margin-right: 10px;
}

footer li:last-child {
  margin-right: 0;
}

footer a {
  text-decoration: none;
  color: #fff;
  font-size: 14px;
}

footer a:hover {
  color: #c2c2c2;
}

svg {
  width: 100%;
  overflow: visible;
}

#gradient-horizontal {
  --color-stop-1: #a770ef;
  --color-stop-2: #cf8bf3;
  --color-stop-3: #fdb99b;
}
#gradient-vertical {
  --color-stop-1: #b0d5d5;
  --color-stop-2: #2d7575;
}

.wave {
  animation: wave 60s linear;
  animation-iteration-count: infinite;
  /*fill: linear-gradient(180deg,#b0d5d5 0%,#2d7575 100%);*/
}

#wave2 {
  animation-duration: 45s;
  animation-direction: reverse;
  opacity: 0.6;
}
#wave3 {
  animation-duration: 47s;
  opacity: 0.3;
}

@keyframes wave {
  to {
    transform: translateX(-100%);
  }
}

@media only screen and (max-width: 768px) {
  .footer-cont {
    display: flex;
    flex-wrap: wrap;
    gap: 10%;
  }

  footer .footer-container {
    display: block;
    background-image: linear-gradient(180deg, #2d7575 100%, #b0d5d5 0%);
    margin: -5px 0px 0px 0px;
    padding: 30px;
    color: #fff;
  }
}

@media only screen and (max-width: 600px) {
  .footer-cont {
    display: flex;
    flex-wrap: wrap;
    gap: 10%;
  }

  footer .footer-container {
    display: block;
    background-image: linear-gradient(180deg, #2d7575 100%, #b0d5d5 0%);
    margin: -5px 0px 0px 0px;
    padding: 30px;
    color: #fff;
  }
}

.footer-main-cont {
  display: flex;
  flex-flow: row wrap;
  padding: 30px 30px 30px 30px;
  color: #fff;
  background-color: rgb(224, 224, 224);
  border-top: 1px solid #e5e5e5;
  text-align: center;
}

.footer-main-cont > * {
  flex: 1 60%;
}

.footer-addr {
  margin-right: 1.25em;
  margin-bottom: 2em;
}

.footer-logo {
  width: 64px;
  background-repeat: no-repeat;
  justify-content: center;
  /*font-family: "Pacifico", cursive;
  font-weight: 400;
  text-transform: lowercase;
  font-size: 1.5rem;*/
}

.footer-h2 {
  display: block;
  font-size: 1.5em;
  margin-block-start: 0.83em;
  margin-block-end: 0.83em;
  margin-inline-start: 0px;
  margin-inline-end: 0px;
  font-weight: bold;
  text-align: unset;
}

.footer-nav-title {
  font-weight: 400;
  font-size: 15px;
}

.footer-main-cont address {
  font-style: normal;
  color: #fff;
}

.footer-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 36px;
  max-width: max-content;
  background-color: rgb(33, 33, 33, 0.07);
  border-radius: 100px;
  color: #fff;
  line-height: 0;
  margin: 0.6em auto;
  font-size: 1rem;
  padding: 0 1.3em;
}

.footer-main-cont ul {
  list-style: none;
  padding-left: 0;
}

.footer-main-cont li {
  line-height: 2em;
}

.footer-main-cont a {
  text-decoration: none;
}

.footer-nav {
  display: flex;
  flex-flow: row wrap;
}

.footer-nav > * {
  flex: 1 50%;
  margin-right: 1.25em;
}

.footer-nav-ul a {
  color: #fff;
}

.footer-nav-ul-extra {
  column-count: 2;
  column-gap: 1.25em;
}

@media screen and (min-width: 24.375em) {
  .footer-legal .footer-legal-links {
    margin-left: auto;
  }
}

@media screen and (min-width: 40.375em) {
  .footer-main-cont {
    padding: 30px 30px 30px 70px;
  }

  .footer-nav > * {
    flex: 1 50%;
  }

  .footer-nav-item-extra {
    flex-grow: 2;
  }

  /*.footer-addr {
    flex: 1 0px;
  }*/

  .footer-nav {
    flex: 2 0px;
  }
}
