.menu_btn {
	display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 25px;
  height: 18px;
  cursor: pointer;
  z-index: 1200;
	margin: auto 20px 0 0;
}
.menu_btn span {
  display: block;
  height: 3px;
  width: 100%;
  background: #333;
  border-radius: 10px;
  transition: all 0.3s ease;
}
.menu_btn.active span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}
.menu_btn.active span:nth-child(2) {
  opacity: 0;
}
.menu_btn.active span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}
.side_menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 150px;
  height: 100vh;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: -2px 0 10px rgba(0, 0, 0, 0.15);
  backdrop-filter: blur(10px);
  transition: right 0.2s ease;
  /*z-index: 1100;*/
  z-index: -100;
  display: flex;
  justify-content: center;
  align-items: center;
}
.side_menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: center;
}
.side_menu ul li {
  margin: 20px 0;
}
.side_menu ul li:nth-child(3)::after,
.side_menu ul li:nth-child(6)::after {
  content: "";
  display: block;
  height: 1px;
  width: 70%;
  background: rgba(3, 156, 223, 0.3);
  margin: 15px auto;
}
.side_menu .whatsapp img {
	width: 30px;
}
header .lang_switch a {
	font-weight: bold !important;
  color: #0061ff !important;
}
header .lang_switch a:hover {
  color: #039cdf !important;
}

.side_menu ul a {
  text-decoration: none;
  color: #333;
  font-size: 1.2rem;
  font-weight: 500;
  transition: color 0.3s ease;
}
.side_menu ul a:hover {
  color: #039cdf;
}
.side_menu.open {
  right: 0;
}
/*----------- background when side_menu is open ---------*/
body.menu-open::before {
  content: "";
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1000;
  transition: opacity 0.4s ease-in;
}
body::before {
  opacity: 0;
  pointer-events: none;
}

body.menu-open::before {
  opacity: 1;
  pointer-events: all;
}