header {
  height: 105px;
  width: 100%;
  background-color: white;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header {
  border-bottom: 1px #f2f2f2 solid;
  position: sticky;
  width: 100%;
  background: white;
  top: 0;
  z-index: 3;
}
.header-logo {
  text-align: center;
}
.header-logo img {
  width: 5vw;
  /*   width: 96px; */
}
header .menu {
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: flex-end;
  width: 1000px;
  height: 100%;
  align-items: center;
}
header .menu-item a {
  display: flex;
  align-items: center;
  height: 100%;
}
header .menu-item a i {
  margin-left: 5px;
  font-size: 14px;
}
header .menu-item {
  padding: 0 1.25rem;
  height: 100%;
  position: relative;
  transition: 0.2s;
}
header .menu-item::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 0%;
  height: 2px;
  background-color: #003aab;
  transition: 0.2s linear;
}
header .menu-item:hover {
  color: #fff;
}
header .menu-item:hover:after {
  width: 100%;
}
header .menu-item.active::after{
  height: 2px;
  width: 100%;
}

header .menu a {
  color: #003aab;
}
header .menu .lang {
  font-size: 12px;
  width: 35px;
  height: 35px;
  border-radius: 50px;
  border: 1px #f2f2f2 solid;
  display: grid;
  place-items: center;
  margin: 0 0.25rem;
}
header .menu .lang:hover,
header .menu .lang.active {
  color: white;
  background-color: #003aab;
  border-color: #003aab;
  transition: 0.3s ease-in-out;
}

header .menu .dropdown-menu {
  border-radius: 0;
  border: 1px solid #f2f2f2;
  transform: translate(0px, 105px);
  min-width: 172px !important;
  left: -1.25rem !important;

  padding: 0;
}

header .dropdown-item {
  padding: 0.5rem 1rem;
}
header .dropdown-item:hover {
  background-color: #003aab;
  color: white;
}
footer {
  background-color: #e7e7e7;
  padding: 2% 0;
  transition: 0.3s ease-in-out;
}
footer .logo {
  height: 100%;
  display: flex;
  align-items: center;
}
footer .logo img {
  width: 115px;
}
footer .title {
  font-weight: 400;
  font-size: 14px;
  color: #001e58;
  padding-bottom: 0.5rem;
  border-bottom: 1px #001e58 solid;
  margin: 0 3rem 1.75rem 0;
  height: 3rem;
  display: flex;
  flex-direction: row;
  align-items: flex-end;
}
footer ul {
  margin: 0;
  padding: 0;
}
footer li {
  padding: 0.2rem;
}
footer li:hover a ,
footer li:hover i {
  color: #39d0ff;
  transition: 0.3s ease-in-out;
}
footer li,
footer li a {
  list-style-type: none;
  font-size: 14px;
  color: #001e58;
  width: 100%;
  display: flex;
  align-items: center;
}
footer li .tel {
  font-size: 20px;
  font-weight: 500;
}
footer li i{
  font-size: 20px;
  margin-right: 0.5rem;
}
.footer-bottom {
  font-size: 12px;
  color: #001e58;
  padding: 1% 0;
  background-color: #e7e7e7;
}
.footer-bottom a {
  font-size: 12px;
  color: #001e58;
  padding: 0 1rem;
}
.footer-bottom .policy {
  text-align: end;
}
@media (max-width: 991px) {
  header {
    height: 60px;
  }
  header a {
    width: 60px;
  }
  .header-logo img {
    width: 58px;
  }
  .header-toggle img {
    width: 28px;
  }
  header .lang-mb {
    display: flex;
    align-items: center;
    color: #003aab;
    font-size: 16px;
  }
  header .lang-mb i {
    font-size: 16px;
    margin-left: 0.2rem;
  }
  header .lang-mb img,
  header .dropdown-item img {
    width: 20px;
    margin-right: 0.2rem;
    border: 1px #d9d9d9 solid;
    border-radius: 50px;
  }
  header .dropdown-menu {
    transform: translate3d(-36px, 26px, 0px);
    min-width: 6rem;
  }
  footer {
    padding:1.5rem 0 4rem 0;
  }
  footer .name {
    font-size: 18px;
    font-weight: 500;
    color: #001e58;
    text-align: center;
  }
  footer .contact a {
    color: #3c3b3b;
  }
  footer .contact {
    font-size: 14px;
    color: #3c3b3b;
    display: flex;
    flex-direction: column;
    padding: 1rem 0;
  }
  footer .contact span {
    margin: 0.5rem 0;
    font-weight: 400;
  }
  footer .contact img {
    width: 20px;
    margin-right: 1rem;
  }
  footer .bottom {
    font-size: 12px;
    color: #001e58;
    text-align: center;
  }
  nav {
    width: 100%;
    height: 47px;
    display: flex;
    position: fixed;
    bottom: 0;
    z-index: 4;
  }

  nav .box a,
  nav .box i {
    font-size: 16px;
    color: white;
  }
  nav .box {
    background-color: black;
    width: 50%;

    font-weight: 400;
    display: grid;
    place-items: center;
  }
  nav .box.blue {
    background-color: #00369f;
    font-weight: 300;
  }

  .offcanvas#offcanvasMenu .offcanvas-header .btn-close {
    margin: 0;
    padding: 0;
  }
  .offcanvas#offcanvasMenu .offcanvas-header img {
    width: 70px;
  }
  .offcanvas#offcanvasMenu .offcanvas-body {
    padding: 0;
  }
  .offcanvas#offcanvasMenu .offcanvas-body ul {
    padding: 0;
    margin: 0;
  }
  .offcanvas#offcanvasMenu .offcanvas-body li {
    list-style-type: none;
    padding: 1rem 2rem;
    border-bottom: 1px #f2f2f2 solid;
  }
  .offcanvas#offcanvasMenu .offcanvas-body li.sub {
    padding: 0.5rem 3rem;
  }
  .offcanvas#offcanvasMenu .offcanvas-body li.cl i {
    font-size: 16px;
  }
  .offcanvas#offcanvasMenu .offcanvas-body li.cl {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .menumain.cl.collapsed .rotate-icon {
    transform: rotate(180deg);
    transition:  0.3s ease-in-out;
  }
}
