.top-header-home-page {
  display: flex;
  justify-content: space-between;
  align-items: center;
  /* max-width: 1200px; */
}
.top-header-home-page h6 {
  font-size: 14px;
  /* letter-spacing: 1px; */
  line-height: 100%;
  mix-blend-mode: normal;
}
.top-header-home-page h6 a {
  color: #000;
  border-bottom: 2px solid #000;
  text-decoration: none;
  margin-bottom: 7px;
  padding-bottom: 3px;
}
.header-img {
  margin-top: 12px;
}
.header-img img {
  padding-left: 60px;
}

/* left-right manu */
.nav-panel {
  position: fixed;
  top: 0;
  height: 100%;
  width: 40px;
  background-color: #f7f7f7;
  color: gray;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  transition: all 0.5s ease-in-out;
  border: 1px solid gray;
}

/* Default right positions */
.right-nav1 {
  right: 80px;
}
.right-nav2 {
  right: 40px;
}
.right-nav3 {
  right: 0px;
}

/* Moved to left */
.move-left {
  right: auto !important;
  left: 0;
}

.nav-text {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-size: 0.8rem;
  font-weight: 900;
  font-family: emoji;
  cursor: pointer;
  text-align: center;
}

.nav-text a {
  text-decoration: none;
  color: gray;
}

.nav-panel:hover {
  background-image: url("./gif2.gif");
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0.9;
}

.nav-panel:hover .nav-text a {
  color: white;
}
.left-nav1 {
  left: 40px;
}
.mobile-view-dropreq {
  color: #000;
  text-decoration: none;
  margin-bottom: 0;
  padding-bottom: 0;
}
/*  */

@keyframes slideInLeft {
  0% {
    opacity: 0;
    transform: translateX(-30px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

.offcanvas-body ul li a {
  display: inline-block;
  opacity: 0;
  animation: slideInLeft 0.5s forwards;
}

/* Staggered animation delay */
.offcanvas-body ul li:nth-child(1) a {
  animation-delay: 0.2s;
}
.offcanvas-body ul li:nth-child(2) a {
  animation-delay: 0.4s;
}
.offcanvas-body ul li:nth-child(3) a {
  animation-delay: 0.6s;
}
@media screen and (max-width: 768px) {
  .offcanvas-body .list-unstyled li {
    margin-bottom: 60px;
    font-size: 20px;
    font-weight: 600;
    text-align: center;
    font-family: serif;
  }
  div#offcanvasMobileMenu {
    background: gainsboro;
  }
}
