.header {
  padding: 30px 0;
  min-height: 20vh;
  background-position: bottom;
  background-size: cover;
  position: relative;
}
.header:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(0, 0, 128, 0.65);
}
.header .head-title, .header .nav-ct {
  z-index: 2;
}
.header .head-title {
  display: block;
  text-align: center;
}
.header .head-title h1 {
  color: #fff;
  margin-left: 10px;
  letter-spacing: 2px;
  line-height: 0.9;
  margin: 0; /* Remove all margins */
}
.header .head-title h1 small {
  font-weight: 100;
  font-size: 28px;
  margin-left: 10px;
  display: block;
  margin-top: -10px; /* Adjust this value to remove extra space */
}
.header .head-title img {
  width: 150px;
  display: block; /* Center the image */
  margin: 0 auto; /* Center the image */
}

.nav-ct {
  display: block;
  text-align: center;
}
.nav-ct .navbar {
  z-index: 2;
  background-color: var(--secondary-color);
  display: block;
  font-family: var(--link-fonts) !important;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.nav-ct .navbar .nav-link.active {
  color: var(--primary-color);
  font-weight: 500;
  border-bottom: 5px solid var(--primary-color);
}
.nav-ct .navbar .nav-link {
  color: rgba(0, 0, 0, 0.67);
  padding: 1rem;
  font-size: 17px;
}
.nav-ct .navbar .nav-link:hover, .nav-ct .navbar .nav-link:focus {
  color: var(--primary-color);
  font-weight: 500;
  border-bottom: 5px solid var(--primary-color);
  transition: 0.2s ease;
}