/* .....header css..... */
.header {
  background-color: #0f4c81;
}

.header .navbar-nav .nav-link.show {
  color: rgb(255 255 255);
}

.header .navbar-nav {
  flex-grow: 1;
}

.header-logo img {
  width: 60px;
}

.logo-heading {
  display: flex;
  flex-direction: column;
  align-items: end;
}

.logo-subheading {
  font-size: 10px;
  color: #ffffff;
  font-weight: 400;
}

.header .nav-link {
  color: #ffffff;
  font-weight: 500;
  margin-right: 10px;
}

.header .nav-link:hover {
  color: #8fd9fb !important;
}

.header .nav-link.active {
  color: #8fd9fb !important;
}

.mini-drop {
  background-color: #0f4c81;
  padding: 10px;
}

.mini-drop .dropdown-item.active {
  background-color: transparent !important;
}

.mini-drop .dropdown-item:hover {
  background-color: transparent;
}

.mini-drop .nav-link {
  margin: 0;
}

.nav-link {
  position: relative;
  color: #fff;
}

/* .nav-link.active {
  color: #ff6600;
  font-weight: 600;
} */

.header-contact a {
  color: #000;
  padding-left: 6px;
}
.header .icons-images-main {
  width: 10%;
  font-size: 20px;
}
.header .icons-images-main a {
  color: #000;
  padding-left: 16px;
}

.header .phone-link {
  display: inline-block;
  color: #000;
  font-weight: 500;
  padding: 8px 16px;
  border: 2px solid transparent;
  border-radius: 8px;
  transition: all 0.3s ease;
  background-color: #fff;
}

.header .navbar-menu {
  display: flex;
  flex-grow: 1;
}

.header .phone-link:hover {
  color: #ffffff !important;
  border: 2px solid #8fd9fb;
  background-color: #0f4c81;
}
.logo-heading {
  color: #fff;
  font-size: 20px;
  font-weight: 600;
}

@media (max-width: 1199.98px) {
  /* header-section */

  .header .hamburger-button {
    border: none;
    background: none;
  }

  .header .hamburger-button:focus {
    box-shadow: none;
  }

  .header .hamburger-button i {
    font-size: 24px;
    color: #fff;
  }
  .header .dropdown-menu {
    border: none;
    background: transparent;
  }
  .header .dropdown-item {
    color: #fff;
  }
}

@media (max-width: 991.98px) {
  /* header */

  .body-overlay {
    opacity: 0;
    visibility: hidden;
    position: fixed;
    z-index: 98;
    background-color: #0000008c;
    inset: 0;
    height: 100vh;
    overflow: hidden;
    transition: opacity 0.35s ease;
  }

  .body-overlay.active {
    opacity: 1;
    visibility: visible;
  }

  .header .navbar-menu {
    flex-direction: column;
    padding: 20px;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 40%;
    z-index: 99;
    background-color: #0f4c81;
    overflow-y: scroll;
    transition: transform 0.45s ease-in-out;
    transform: translateX(100%);
  }

  .header .navbar-menu.active {
    transform: translateX(0%);
  }

  .header .navbar-nav {
    flex-grow: 0;
  }

  .header .nav-content {
    height: 100%;
    padding: 20px;
  }

  .header .mobile-logo {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .header .mobile-logo img {
    width: 50px;
  }

  .header .mobile-logo .close-menu {
    font-size: 28px;
    color: #fff;
  }

  .header .navbar-nav {
    margin-top: 20px;
    align-items: flex-start;
  }

  .header .phone-link {
    margin-top: 16px;
    align-self: flex-start;
  }
}

@media (max-width: 576px) {
  /* header */

  .header .navbar-menu {
    left: 0;
  }
}
