@font-face {
  font-family: "Calibri";
  src: url("../assets/fonts/Calibri/Calibrilight.woff") format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Calibri";
  src: url("../assets/fonts/Calibri/Calibri.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Calibri";
  src: url("../assets/fonts/Calibri/Calibribold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
:root {
  --bs-blue: #0D4A6C;
  --bs-grey: #F0F0F0;
  --bs-font-grey: rgba(102,102,102, 1);
  --bs-font-blue: #143E64;
  --bs-font-sans-serif: "Calibri", sans-serif;
  --fs-font-size: clamp(45px, 1.05vw, 50px);
}

body, h1, h2 {
  font-family: var(--bs-font-sans-serif) !important;
}

a.no-style {
  all: unset;
  cursor: pointer; /* Restore pointer cursor behavior for links */
  /* Add any custom styles you want from a clean slate below */
  color: inherit; /* Ensure the link color inherits from its parent */
  text-decoration: none; /* Ensure no default underline */
}

.edi_btn-primary {
  color: var(--bs-font-blue);
  border: 2px solid var(--bs-font-blue);
  border-radius: 50px;
  background-color: transparent;
  padding: 5px 20px;
  font-weight: bold;
  letter-spacing: 1.2px;
  font-size: 18px;
}
.edi_btn-primary:hover {
  background-color: var(--bs-font-blue);
  color: white;
}

.title {
  font-size: var(--fs-font-size) !important;
  font-weight: 600;
}
@media screen and (max-width: 480px) {
  .title {
    font-size: 35px !important;
  }
}

.content {
  color: var(--bs-font-grey);
  text-align: left;
  font-weight: 300;
  line-height: 28px;
  letter-spacing: 0.3px;
}

.font-blue {
  color: var(--bs-font-blue);
}

.font-grey {
  color: var(--bs-font-grey);
}

.grey-bg {
  background-color: var(--bs-grey);
}

.blue-bg {
  background-color: var(--bs-font-blue);
}

ul.pagination li.page-item .page-link {
  font-size: 16px;
  color: var(--bs-font-blue);
}
ul.pagination li.page-item.disabled {
  font-weight: bold;
}
ul.pagination li.page-item.disabled .page-link {
  color: var(--bs-font-grey);
}

.custom-navbar {
  padding: 20px 0px;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.custom-navbar.scrolled {
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(6px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  padding: 16px 0px;
}
.custom-navbar .nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.custom-navbar .nav-menu {
  display: flex;
  gap: 30px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.custom-navbar .nav-link {
  position: relative;
  text-decoration: none;
  color: var(--bs-font-blue) !important;
  font-size: 20px;
  padding: 6px 0;
  transition: all 0.3s ease;
}
.custom-navbar .nav-link:hover {
  background-color: rgba(30, 58, 95, 0.08);
  border-radius: 6px;
  color: #16324a;
}
.custom-navbar .nav-link::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -6px;
  width: 60%;
  height: 2px;
  background-color: #1e3a5f;
  transform: translateX(-50%) scaleX(0);
  transition: transform 0.3s ease;
}
.custom-navbar .nav-link.active::after {
  transform: translateX(-50%) scaleX(1);
}

@media screen and (max-width: 760px) {
  .page-section {
    padding: 40px 20px;
  }
  .nav-item {
    border-bottom: 1px solid var(--bs-font-blue);
  }
  .nav-item .nav-link.active {
    font-weight: bold;
  }
  .nav-item .nav-link.active::after {
    all: unset;
  }
}
.banner.masthead {
  max-height: 670px;
  background: linear-gradient(180deg, rgba(132, 132, 132, 0) 0%, rgba(30, 30, 30, 0.8) 100%), url("../assets/img/banner.png");
  background-blend-mode: multiply;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
@media screen and (min-width: 1360px) {
  .banner.masthead {
    max-height: 80vh;
  }
}
.banner.masthead h1 {
  letter-spacing: 3px;
  text-shadow: 0px 3px 3px rgba(0, 0, 0, 0.43);
  font-weight: bold;
  margin-top: -4.5rem;
}
.banner.masthead h2 {
  font-size: 30px;
  font-weight: 400 !important;
  letter-spacing: 2px;
  text-shadow: 2px 3px 2px rgba(0, 0, 0, 0.35);
}
@media screen and (max-width: 480px) {
  .banner.masthead {
    height: 60vh;
    margin-top: 94px;
  }
  .banner.masthead h2 {
    font-size: 20px;
  }
}

.search-wrapper {
  align-items: center;
  padding: 6px 8px 6px 20px;
  display: flex;
}
.search-wrapper input#search {
  width: 100%;
  line-height: 85px;
  border-radius: 50px;
  border: 1px solid #AFAFAF;
  font-size: 24px;
  color: #555;
  padding: 0 80px 0 40px;
  font-weight: 400;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}
.search-wrapper input#search::-moz-placeholder {
  color: #AFAFAF;
  font-size: 24px;
}
.search-wrapper input#search::placeholder {
  color: #AFAFAF;
  font-size: 24px;
}
.search-wrapper a {
  width: 61px;
  height: 61px;
  border: none;
  border-radius: 50%;
  background: #0b3d5c;
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  right: 20px;
  top: 12px;
}
.search-wrapper a i {
  font-size: 32px;
}
.search-wrapper a:hover {
  background: #09507a;
}
@media screen and (max-width: 760px) {
  .search-wrapper {
    padding: 40px 20px;
  }
  .search-wrapper input#search {
    font-size: 16px;
    padding: 0 20px;
    line-height: 60px;
  }
  .search-wrapper input#search::-moz-placeholder {
    font-size: 16px;
  }
  .search-wrapper input#search::placeholder {
    font-size: 16px;
  }
  .search-wrapper a {
    top: 1px;
    right: 13px;
    width: 60px;
    height: 60px;
  }
  .search-wrapper a i {
    font-size: 24px;
  }
}

#expertise .content {
  font-size: 16px;
}
#expertise .expertise-img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 14px 14px 0px 1px rgb(199, 199, 199);
  -webkit-box-shadow: 14px 14px 0px 1px rgb(199, 199, 199);
  -moz-box-shadow: 14px 14px 0px 1px rgb(199, 199, 199);
}

#our-team {
  padding: 80px 0;
}
#our-team .content {
  padding-left: 30px;
}
#our-team .content h1 {
  padding-left: 30px;
  color: var(--bs-font-blue);
}
#our-team .content .edi_btn-primary {
  margin-left: 30px;
}
#our-team .profile-section {
  display: flex;
  justify-content: center;
  align-items: center;
}
#our-team .profile-section .profile-card {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 20px 20px 0px #cfcfcf;
  cursor: pointer;
}
#our-team .profile-section .profile-card img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
#our-team .profile-section .profile-card .overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 10px 20px 5px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000000 100%);
  color: white;
  text-align: center;
  transition: all 0.3s ease;
}
#our-team .profile-section .profile-card .overlay h2 {
  margin: 0;
  font-size: 26px;
  line-height: 30px;
  font-weight: 700;
  letter-spacing: 1.5px;
}
#our-team .profile-section .profile-card .overlay p {
  font-size: 20px;
  font-weight: 400;
  line-height: 30px;
  letter-spacing: 1px;
}
#our-team .profile-section .profile-card:hover img {
  transform: scale(1.08);
}
@media screen and (max-width: 760px) {
  #our-team {
    padding: 40px 20px;
  }
  #our-team .content, #our-team .content h1 {
    padding: 0;
  }
  #our-team .content .edi_btn-primary, #our-team .content h1 .edi_btn-primary {
    margin-left: 0px;
    margin-bottom: 20px;
  }
  #our-team .profile-section .profile-card {
    box-shadow: 10px 10px 0px #cfcfcf;
    margin-bottom: 20px;
  }
}

#news .card-title {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 26px;
}
@media screen and (max-width: 480px) {
  #news .card-title {
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
}
#news .card-content {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  height: 84px;
  line-height: 28px;
}
@media screen and (max-width: 480px) {
  #news .card-content {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 56px;
  }
}
#news .card-img-top {
  height: 220px;
  -o-object-fit: cover;
     object-fit: cover;
}

.breadcrumbs {
  display: flex;
  font-size: 15px;
  line-height: 26px;
  flex-wrap: wrap;
}
.breadcrumbs p {
  padding: 5px;
  color: var(--bs-font-grey);
  margin-bottom: 0;
}
.breadcrumbs p.active {
  color: var(--bs-blue);
}

.site-footer {
  font-weight: 400;
}
.site-footer .footer-contact {
  color: var(--bs-font-blue);
}
.site-footer .footer-contact .contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 6px;
  font-size: 15px;
  line-height: 20px;
}
.site-footer .footer-contact .contact-item i {
  margin-top: 3px;
}
.site-footer .footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #1f4f6f;
  color: white;
  margin-left: 10px;
  text-decoration: none;
  transition: all 0.2s ease;
}
.site-footer .footer-social a:hover {
  background: #173a52;
  transform: scale(1.08);
}
.site-footer .footer-bottom {
  background: #204b6e;
  color: white;
  font-size: 14px;
}/*# sourceMappingURL=custom.css.map */