/* Custom Colors */
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@100;200;300;400;500;600;700&display=swap");
.text-black {
  color: #606161;
}

.text-blue {
  color: #1f7a85;
}

.text-gray {
  color: #878f8f;
}

/* Mediascreens */
/* Main font family */
html,
body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Montserrat", sans-serif;
  overflow-x: hidden;
  height: auto;
  color: #606161;
}

html {
  scroll-behavior: smooth;
}

body {
  overflow: hidden;
}

.z-1 {
  z-index: 1;
}

.z-2 {
  z-index: 2;
}

.z-3 {
  z-index: 3;
}

.z-4 {
  z-index: 4;
}

.z-5 {
  z-index: 5;
}

.website__logo {
  width: auto;
  height: 100px;
}

.navbar .navbar-collapse {
  text-align: center;
}

.navbar {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  padding-top: 18px;
  padding-bottom: 18px;
  box-shadow: 0 10px 20px 10px rgba(90, 97, 98, 0.1882352941);
  z-index: 599;
}
.navbar .active {
  border-bottom: 2px solid #1f7a85;
  color: #1f7a85 !important;
}
.navbar .website__logo {
  height: 70px;
  transition: height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.navbar.scrolled {
  padding-top: 6px;
  padding-bottom: 6px;
  box-shadow: 0 2px 8px 0 rgba(90, 97, 98, 0.1882352941);
}
.navbar.scrolled .website__logo {
  height: 40px;
}

.feature {
  scroll-margin-top: 80px;
}

.navbar-brand {
  font-weight: 600;
  color: #1f7a85 !important;
}

.nav-item {
  margin-left: 10px;
  margin-right: 10px;
}

.nav-item:hover {
  border-bottom: 2px solid #1f7a85;
}

.popup_nav {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: #e2e7eb;
  z-index: 1000;
  display: none;
}
.popup_nav .closing {
  position: absolute;
  top: 0;
  right: 0;
  font-size: 40px;
  margin: 40px 40px;
  cursor: pointer;
  z-index: 90;
}
.popup_nav ul {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  margin: 0;
  padding: 0;
  z-index: 80;
}
.popup_nav ul li {
  list-style: none;
}
.popup_nav ul li a {
  color: #1f7a85;
  text-align: center;
  font-size: 1.2rem;
}
.popup_nav ul li a:hover {
  color: #35696e;
}

footer {
  width: 100vw;
  height: auto;
  background: #e5e7e8;
}
footer .footer_bk_logo {
  width: 60%;
}
footer .links_container {
  color: #606161;
  padding: 24px 0 12px 0;
}
footer .links_container .section {
  text-align: left;
  margin-bottom: 16px;
}
footer .links_container .section h5 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: 1px;
}
footer .links_container .section a {
  text-decoration: none;
  color: #1f7a85;
  font-weight: 500;
  display: block;
  margin-bottom: 6px;
  transition: color 0.2s;
  font-size: 1rem;
}
footer .links_container .section a:hover {
  color: #15545c;
  text-decoration: underline;
}
footer .links_container .section .light_link {
  font-weight: 400;
  display: block;
  color: #606161;
  font-size: 0.95rem;
  margin-top: 8px;
}
footer .links_container .section p {
  margin-bottom: 6px;
}
footer .sub_footer {
  width: 100%;
  height: auto;
}
footer .sub_footer .footer_logo {
  width: auto;
  height: 60px;
  background-image: url("../images/ledger.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  margin-bottom: 10px;
}
footer .sub_footer .remarks {
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  background-color: #4B4545;
  color: white;
  text-align: center;
  font-weight: bold;
}
footer .sub_footer .remarks span {
  margin: 0 20px 0 20px;
  padding: 10px 0 10px 0;
}
footer .social-icons a {
  color: #1f7a85;
  font-size: 1.1rem;
  transition: color 0.2s;
}
footer .social-icons a:hover {
  color: #15545c;
}
footer .social-icons .mb-2 {
  margin-bottom: 8px;
}
footer .social-icons-table {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
footer .social-icons-table .social-row {
  display: flex;
  align-items: center;
  gap: 10px;
}
footer .social-icons-table .icon {
  width: 28px;
  text-align: center;
  font-size: 1.3rem;
}
footer .social-icons-table .handle a {
  color: #1f7a85;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s;
}
footer .social-icons-table .handle a:hover {
  color: #15545c;
  text-decoration: underline;
}
@media (min-width: 1200px) {
  footer .footer_bk_logo {
    width: 100%;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  footer .footer_bk_logo {
    width: 100%;
  }
}
@media (min-width: 768px) and (max-width: 991.98px) {
  footer .footer_bk_logo {
    width: 100%;
  }
  footer .popup_nav ul li a {
    font-size: 1.5rem;
  }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  footer .sub_footer .remarks {
    font-size: 10px;
  }
}
@media (min-width: 320px) and (max-width: 575.98px) {
  footer .sub_footer .footer_logo {
    width: 250px;
    height: 70px;
  }
  footer .sub_footer .remarks {
    font-size: 9px;
  }
  footer .sub_footer .remarks span {
    margin: 0 5px 0 5px;
  }
}

.contact-bg {
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  display: flex;
  align-items: flex-start;
  justify-content: end;
  z-index: -1;
}
.contact-bg .map {
  width: 100%;
  height: 100%;
  background-image: url("../images/map.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0.3;
}

.contact-clipart {
  width: 80%;
}

.contact__card {
  margin-top: 107.55px;
  width: 100%;
  height: auto;
  min-height: 500px;
  padding: 5% 1% 5% 1%;
  background: linear-gradient(135deg, #e4f8ff, #a8cacb);
  box-shadow: 8px 8px 20px rgba(40, 110, 112, 0.38);
  border-left: 1px solid #e7e7e7;
  border-radius: 10px;
}
.contact__card .contact-information {
  display: flex;
  flex-direction: column;
}
.contact__card .contact-information a {
  color: #606161;
}
.contact__card .contact_img {
  width: 100%;
}

.contact-icon {
  width: 80px;
  height: 80px;
  background: #1f7a85;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  font-size: 35px;
}

@media (min-width: 576px) and (max-width: 767.98px) {
  .contact__card {
    width: 100%;
  }

  .contact-clipart {
    width: 70%;
  }
}
@media (min-width: 768px) and (max-width: 991.98px) {
  .contact__card {
    padding: 5%;
    width: 80%;
  }

  .contact-icon {
    width: 90px;
    height: 90px;
    font-size: 37px;
  }

  .contact-clipart {
    width: 50%;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .contact__card {
    width: 60%;
    padding: 5%;
  }

  .contact-icon {
    width: 100px;
    height: 100px;
    font-size: 40px;
  }

  .contact-clipart {
    width: 50%;
  }
}
@media (min-width: 1200px) {
  .contact__card {
    width: 50%;
    padding: 5%;
  }

  .contact-icon {
    width: 100px;
    height: 100px;
    font-size: 40px;
  }

  .contact-clipart {
    width: 50%;
  }
}