:root {
  --header-blue: #172e50;
}

body {
  font-family: "Montserrat", sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
.page-layout {
  width: 100%;
  min-height: 100vh;
  box-sizing: border-box;
  background: linear-gradient(
    170deg,
    #1d87cc 0%,
    #5ab0d0 30%,
    #91c8d8 60%,
    #b8d8e0 100%
  );
}
.menu-one-site-header {
  background: var(--header-blue);
  position: relative;
  z-index: 9999;
}

.navbar {
  background: var(--header-blue);
  min-height: 155px;
  position: relative;
  z-index: 1000;
}

.menu-one-logo {
  max-width: 310px;
  height: auto;
}

.desktop-menu .nav-link {
  color: #fff;
  font-size: 28px;
  font-weight: 700;
  padding: 0 22px;
  line-height: 1;
}

.desktop-menu .nav-link:hover,
.desktop-menu .nav-link.active {
  color: #fff;
}

.nav-divider {
  border-right: 2px solid #fff;
  padding-right: 34px !important;
  margin-right: 12px;
}

.lock-btn {
  width: 42px;
  height: 40px;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.navbar-toggler {
  box-shadow: none !important;
}

.navbar-toggler-icon {
  width: 34px;
  height: 34px;
  background-image: none;
  position: relative;
}

.navbar-toggler-icon::before,
.navbar-toggler-icon::after,
.navbar-toggler-icon span {
  content: "";
  position: absolute;
  left: 0;
  width: 34px;
  height: 3px;
  background: #fff;
  border-radius: 5px;
}

.navbar-toggler-icon::before {
  top: 6px;
}

.navbar-toggler-icon span {
  top: 15px;
}

.navbar-toggler-icon::after {
  top: 24px;
}

.mobile-menu {
  background: var(--header-blue);
  padding: 18px 16px 22px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
}

.mobile-menu .nav-link {
  color: #fff;
  font-size: 17px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 7px 5px;
  margin-bottom: 3px;
}

.mobile-menu .nav-link.active {
  border: 2px solid #fff;
  padding: 6px 5px;
}

.mobile-menu .nav-link:hover {
  color: #fff;
}

.hero-section {
  position: relative;
  height: 355px;
  overflow: hidden;
  z-index: 1;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.25);
}

.hero-content {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-content h1 {
  color: #fff;
  font-size: 52px;
  font-weight: 800;
}

@media (max-width: 991.98px) {
  .navbar {
    min-height: auto;
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .menu-one-logo {
    max-width: 180px;
  }

  .navbar-collapse {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--header-blue);
    z-index: 999;
  }

  .hero-section {
    height: 250px;
    margin-top: -1px;
  }

  .hero-content h1 {
    font-size: 40px;
  }
}

@media (max-width: 575.98px) {
  .menu-one-logo {
    max-width: 170px;
  }

  .hero-section {
    height: 220px;
  }

  .hero-content h1 {
    font-size: 34px;
  }
}
