.sideBar_div {
  width: 60px;
  position: fixed;
  top: 0px;
  z-index: 100;
  min-height: 100vh;
  background-color: #fff;
  box-shadow: 0px 5px 5px rgba(0, 0, 0, 0.1);
  animation: sidebarMove 0.2s linear 1;
}

@keyframes sidebarMove {
  from {
    transform: translateX(-60px);
  }

  to {
    transform: translateX(0px);
  }
}

.close_sidebar {
  background-color: rgba(0, 0, 0, 0.5);
  width: 40px;
  height: 40px;
  color: #fff;
  margin-left: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.mainPag_div {
  flex: 1;
}

.header_section {
  background: linear-gradient(61.74deg, #00492e 0.55%, #08252c 100%);
}

.side_logo {
  max-width: 250px;
}

.side_logo img {
  width: 100%;
  height: auto;
}
.sideBar {
  overflow: hidden;
  height: 100vh;
  position: relative;
}

.sideBar ul {
  padding-left: 0px;
  list-style: none;
  margin: auto;
}

.site_link img {
  width: 40px;
}

.menuitem {
  transition: all 0.2s;
}

.menuitem:hover {
  transform: scale(0.9);
}

.menuitem.site_link {
  text-decoration: none;
}

.menuitem a {
  text-decoration: none;
}

.menuitem p {
  font-size: 11px;
  color: #423d3d;
  font-weight: 700;
  margin-bottom: 0px;
}

.search_item img {
  width: 40px;
}

.menuitem .item_img {
  width: 35px;
  height: 35px;
  background-color: red;
  border-radius: 24px;
  position: relative;
}

.menuitem .item_img img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 4px;
}

.logOut_btn {
  width: 35px;
  height: 35px;
  border: none;
  background: #00492e;
  border-radius: 6px;
  color: #fff;
  position: absolute;
  bottom: 10px;
  right: 50%;
  transform: translateX(50%);
}

.logOut_btn img {
  width: 25px;
  font-size: 50px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.recent_blog_section h2 {
  font-family: "Righteous", cursive;
  font-weight: 400;
  color: #8d1b3d;
  font-size: 24px;
}

/* .menuitem.lastitem{
  position:fixed;
  bottom: 10px;
  width: 65px;
display: flex;
justify-content:center;

} */
.mobile_menu {
  background-color: #fff;
}

.mobile_menu button {
  border: none;
  font-size: 22px;
  background-color: transparent;
}

.mobile_menu button.mobile_menubtn {
  color: #480048;
}

.mobile_menu button.mobile_user_btn {
  color: #8d1b3d;
}

.login-btn button {
  border: none;
  width: 250px;
}

.btn-close {
  position: absolute;
  right: 0px;
  padding: 5px;
  color: #fff;
}
.mega_menu {
  display: none; /* Initially hidden */
  position: absolute; /* Position it absolutely */
  left: 20px; /* Align it to the right of the sidebar */
  top: 0; /* Align it to the top of the menu item */
  background-color: #f51616; /* Background color */
  box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.2); /* Shadow for the menu */
  z-index: 2000; /* Make sure it’s above other elements */
  padding: 10px;
  width: 200px; /* Width of the mega menu */
}

.menuitem:hover .mega_menu {
  display: block; /* Show the mega menu on hover */
}

.mega_menu ul {
  list-style: none; /* Remove bullets */
  padding: 0; /* Remove padding */
  margin: 0; /* Remove margin */
}

.mega_menu li {
  margin: 5px 0; /* Space between items */
}

.mega_menu a {
  text-decoration: none; /* Remove underline */
  color: #423d3d; /* Text color */
}

.mega_menu a:hover {
  color: #c04848; /* Change color on hover */
}
