.menu {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.menu .logo {
  display: flex;
  align-items: center;
  width: 130px;
  margin-top: 10px;
}
.menu .logo img {
  width: 100%;
}
.menu nav {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 100%;
}
.menu nav ul {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.menu nav ul li {
  margin: 0;
  padding: 0;
}
.menu nav a {
  /* margin-left: 1.3rem; */
  display: inline-block;
  font-size: 15px;
  color: var(--tx-color);
  text-transform: uppercase;
  position: relative;
  padding: 0.6rem 0rem;
  text-decoration: none;
  position: relative;
}
.menu nav a:hover {
  color: var(--primary-color);
}

.menu nav a.menu-right-link {
  width: 150px;
  height: 70px;
  color: #f1f2ed;
  background-color: #04a323;
  display: flex;
  align-items: center;
  justify-content: center;
}
.menu nav a.menu-right-link span {
  height: 0 !important;
}
.menu nav a:hover span {
  height: 100%;
}
.menu nav .dropdown_anchor:hover:after {
  transform: rotate(224deg);
  top: 17px;
}
.menu nav .dropdown_anchor:after {
  content: "";
  display: inline-block;
  transition: 0.3s ease-in-out;
  box-sizing: border-box;
  height: 7px;
  width: 7px;
  border-style: solid;
  border-color: white;
  border-width: 0px 1px 1px 0px;
  transform: rotate(45deg);
  position: absolute;
  top: 18px;
  right: -13px;
}
.menu nav span {
  width: calc(100% + 30px);
  height: 0px;
  background-color: var(--primary-color);
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  transition: 0.3s;
  z-index: -1;
  border-radius: 4px;
}
.menu nav .dropdown_anchor span {
  width: calc(100% + 40px);
  margin-left: 5px;
}

.dropdown_menu {
  padding: 0.8rem 1.5rem;
  background: white;
  box-shadow: 0px 6px 22px rgba(0, 0, 0, 0.2);
  border-radius: 5px;
  position: absolute;
  z-index: 5;
  opacity: 0;
}
.dropdown_menu a {
  text-decoration: none;
  text-align: left;
}
.dropdown_menu .dropdown_item {
  padding: 0.8rem 0rem;
  width: 100%;
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease-in-out;
}
.dropdown_menu .dropdown_item:hover aside h5,
.dropdown_menu .dropdown_item:hover aside p {
  color: #7d2c4b;
}
.dropdown_menu .dropdown_item:last-child {
  border-bottom: none;
}
.dropdown_menu .dropdown_item:hover span i {
  transform: translateX(0px);
}
.dropdown_menu .dropdown_item figure {
  display: block;
  margin: 0;
  width: 65px;
  height: 65px;
  overflow: hidden;
  border-radius: 4px;
  border: 1px solid #d1d1d1;
}
.dropdown_menu .dropdown_item figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  display: block;
}
.dropdown_menu .dropdown_item aside {
  /* flex: 1; */
  padding-left: 1rem;
}
.dropdown_menu .dropdown_item aside h5 {
  font-size: 18px;
  margin: 0;
  font-weight: 600;
  color: rgba(0, 0, 0, 0.85);
  text-align: left;
  text-decoration: none;
  margin-top: 12px;
}
.dropdown_menu .dropdown_item aside p {
  font-size: 14px;
  color: #000;
}
.dropdown_menu .dropdown_item span {
  width: 20px;
  height: 20px;
  background: white;
  margin-left: 10px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  overflow: hidden;
}
.dropdown_menu .dropdown_item span i {
  transform: translateX(-20px);
  transition: 0.3s cubic-bezier(1, 0, 0.65, 1.01);
  font-size: 1.2rem;
  color: black;
}

/* Mobile Menu */

.burger {
  width: 55px;
  height: 55px;
  cursor: pointer;
  display: flex;
  justify-content: end;
  align-items: center;
  transition: all 0.5s ease;
}
.burger-strip {
  transition: all 0.5s ease;
}
.strip div {
  height: 3px;
  border-radius: 2px;
  background: var(--primary-hover);
  margin: 10px 0;
  transition: all 0.55s cubic-bezier(0.075, 0.82, 0.165, 1);
  width: 40px;
}
.burger:hover .strip div {
  background: rgb(56 56 56);
}

/* BURGER 4 */
.burger:hover .burger-strip-4 {
  transform: scale(0.85);
}
.burger:hover .burger-strip-4 div:first-child {
  width: 20px;
  transform: translateY(8px) rotate(-30deg);
}
.burger:hover .burger-strip-4 div:nth-child(2) {
  width: 38px;
}
.burger:hover .burger-strip-4 div:last-child {
  width: 20px;
  transform: translateY(-8px) rotate(30deg);
}
