header {
  background-color: #ffffff;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 9;
  transition: 0.3s ease-in-out;
  padding: 0.5rem 0;
}
header .brand-logo img {
  transition: 0.3s ease-in-out;
  width: 155px;
}
header .brand-logo:hover {
  opacity: 0.8;
}

.sticky {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  padding: 0;
  background-color: #fff;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}
.sticky .brand-logo img {
  padding: 5px;
  transition: 0.3s ease-in-out;
  width: 130px;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
nav .nav-cont {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

.header-items {
  display: none;
  transition: 0.3s ease-in-out;
}
.header-items ul {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 !important;
  list-style: none;
}
.header-items a {
  display: flex;
  color: #424242;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-left: 1.5rem;
  padding: 0.3rem 0;
  box-shadow: inset 0 0 0 0 rgba(255, 255, 255, 0.8);
  transition: color 0.2s ease-in-out, box-shadow 0.6s ease-in-out;
}
.header-items a:hover {
  color: #A70707;
}
.header-items a i {
  padding-top: 2px;
}
.header-items .menu-drop-list {
  background-color: #ffffff;
  padding: 1rem;
  border-radius: 0.5rem;
  position: absolute;
  top: 80%;
  visibility: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  z-index: 999;
  opacity: 0;
  line-height: 2rem;
  transform: translateY(30px);
  transition: 0.2s ease-in-out;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
}
.header-items .menu-drop-list a {
  margin: 0 !important;
}
.header-items .menu-drop-list .menu-list-arrow {
  text-align: center;
  position: absolute;
  width: 10px !important;
  height: 10px;
  background-color: #fff;
  left: 48%;
  top: -1.5%;
  transform: rotate(45deg);
  z-index: -1;
}
.header-items .menu-drop:hover .menu-drop-list {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

.side-bar-icon i {
  color: #2E3647;
  font-size: 1.6rem;
  cursor: pointer;
}

.side-bar {
  text-align: center;
  position: fixed;
  width: 100%;
  height: 100vh;
  top: 0%;
  left: -100%;
  z-index: 99;
  background-color: #A70707;
  transition: 0.8s cubic-bezier(0, 0, 0, 0.99);
}
.side-bar .side-bar-items {
  display: flex;
  flex-direction: column;
  position: relative;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.side-bar .side-bar-items a {
  font-weight: 600;
  padding: 2rem 0;
  color: #eeeeee;
}
.side-bar .side-bar-items a:hover {
  background-color: #CE1111;
}
.side-bar .sub-btn {
  display: block;
}
.side-bar .sub-menu {
  display: none;
  background: rgba(255, 255, 255, 0.1);
}
.side-bar .sub-menu a {
  display: block;
  font-weight: 600;
  padding: 2rem 0;
  color: #eeeeee;
}
.side-bar .sub-menu a:hover {
  background-color: #CE1111;
}
.side-bar .close-btn {
  position: absolute;
  color: #eeeeee;
  font-size: 2rem;
  padding: 2rem;
  top: 0%;
  right: 0%;
  cursor: pointer;
  transition: 0.3s ease-in-out;
}
.side-bar .close-btn:hover {
  transform: scale(1.1);
}

.active {
  left: 0%;
}/*# sourceMappingURL=navbar.css.map */