:root {
  --primary: #102444;
  /* --primary: #0d1128; */
  --warning: #ffb900;
  --secondary: #bdbdbf;
  --light: #f4f5f8;
  --dark: #222429;
}

* {
  margin: 0 auto;
  padding: 0;
  box-sizing: border-box;
  font-family: "Mitr";
}
header {
  background-color: var(--primary);
  transition: 0.3s;
}

header.header-menu.active {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  transition: 0.3s;
}

header .header-flex {
  display: flex;
  flex-wrap: nowrap;
}
header .header-flex .menu-logo {
  margin: 0;
}
header .header-flex .menu-logo a {
  text-decoration: none;
  color: var(--warning);
}
header .header-flex .menu-logo img {
  max-width: 100px;
  border-radius: 50%;
}
header .header-flex .menu {
  margin: auto;
  display: flex;
  justify-content: flex-end;
  width: 70%;
}
header .header-flex .menu ul.flex-menu {
  display: flex;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
}
header .header-flex .menu ul.flex-menu li.list-menu {
  list-style: none;
  margin: 0;
}
header .header-flex .menu ul.flex-menu li.list-menu a {
  padding: 15px;
  text-decoration: none;
  font-size: 18px;
  font-weight: bold;
  color: var(--light);
  transition: 0.3s ease-in-out;
}

/* dropdown */

header
  .header-flex
  .menu
  ul.flex-menu
  li.list-menu.dropdown
  ul.dropdown-menu
  li
  a.dropdown-item {
  padding: 5px 10px;
  color: var(--primary);
}

header .header-flex .menu ul.flex-menu li.list-menu.dropdown ul.dropdown-menu {
  --bs-dropdown-link-active-bg: var(--light);
  --bs-dropdown-link-active-color: var(--primary);
}

header .header-flex .menu-social {
  margin: auto;
}

header .header-flex .menu-social ul.social {
  display: flex;
  flex-wrap: nowrap;
  margin: auto;
  padding: 0;
}

header .header-flex .menu-social ul.social li.list-social {
  list-style: none;
  margin: auto 5px;
}

header .header-flex .menu-social ul.social li.list-social a {
  text-decoration: none;
  color: var(--dark);
  font-size: 18px;
  width: 40px;
  height: 40px;
  background-color: var(--light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  transition: 0.3s ease-in-out;
}

header .header-flex .menu-social ul.social li.list-social a:hover {
  transition: 0.3s ease-in-out;
  transform: scale(1.1);
}

header .header-flex .menu-social ul.social li.list-social a i.fa-facebook {
  color: #0d6efd;
}

header .header-flex .menu-social ul.social li.list-social a i.fa-line {
  color: #06c755;
}

header .header-flex .menu-social ul.social li.list-social a i.fa-phone {
  color: var(--warning);
}

/* footer */

.menu-mobile {
  display: none;
}

@media screen and (max-width: 767px) {
  header .header-flex .menu,
  header .header-flex .menu-social {
    display: none;
  }
  header .header-flex .menu-logo img {
    max-width: 70px;
  }
  .menu-mobile {
    display: block;
    margin: auto;
    margin-right: 10px;
  }

  .menu-mobile a.bars i {
    font-size: 26px;
    color: var(--light);
  }
  .menu-mobile .offcanvas .offcanvas-header {
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  }
  .menu-mobile .offcanvas .offcanvas-header h5 img {
    width: 50px;
    border-radius: 50%;
  }
  .menu-mobile .offcanvas .offcanvas-body ul.list-group {
    width: 100%;
  }
  .menu-mobile .offcanvas .offcanvas-body ul.list-group li.list-group-item {
    width: 100%;
  }
  .menu-mobile .offcanvas .offcanvas-body ul.list-group li.list-group-item a {
    color: var(--dark);
    text-decoration: none;
    font-weight: bold;
  }

  .menu-mobile .offcanvas .offcanvas-body ul.list-group li a.dropdown-item {
    padding: 5px 10px;
    color: var(--primary);
  }
  .menu-mobile .offcanvas .offcanvas-body ul.dropdown-menu {
    --bs-dropdown-link-active-bg: var(--light);
    --bs-dropdown-link-active-color: var(--primary);
  }
  .menu-mobile .offcanvas .offcanvas-body ul.dropdown-menu li a.dropdown-item {
    padding: 5px 10px;
    color: var(--primary);
  }
}

@media screen and (min-width: 767px) and (max-width: 1023px) {
  header .header-flex .menu,
  header .header-flex .menu-social {
    display: none;
  }
  header .header-flex .menu-logo img {
    max-width: 70px;
  }
  .menu-mobile {
    display: block;
    margin: auto;
    margin-right: 10px;
  }

  .menu-mobile a.bars i {
    font-size: 26px;
    color: var(--light);
  }
  .menu-mobile .offcanvas .offcanvas-header {
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  }
  .menu-mobile .offcanvas .offcanvas-header h5 img {
    width: 50px;
    border-radius: 50%;
  }
  .menu-mobile .offcanvas .offcanvas-body ul.list-group {
    width: 100%;
  }
  .menu-mobile .offcanvas .offcanvas-body ul.list-group li.list-group-item {
    width: 100%;
  }
  .menu-mobile .offcanvas .offcanvas-body ul.list-group li.list-group-item a {
    color: var(--dark);
    text-decoration: none;
    font-weight: bold;
  }

  .menu-mobile .offcanvas .offcanvas-body ul.list-group li a.dropdown-item {
    padding: 5px 10px;
    color: var(--primary);
  }
  .menu-mobile .offcanvas .offcanvas-body ul.dropdown-menu {
    --bs-dropdown-link-active-bg: var(--light);
    --bs-dropdown-link-active-color: var(--primary);
  }
  .menu-mobile .offcanvas .offcanvas-body ul.dropdown-menu li a.dropdown-item {
    padding: 5px 10px;
    color: var(--primary);
  }
}

@media screen and (min-width: 1024px) and (max-width: 1366px) and (orientation: landscape) {
}
