.side_menu_social_media svg {
  margin-right: 1rem;
  cursor: pointer;
}

.side_menu_contact {
  display: flex;
  width: 100%;
  height: auto;
  justify-content: flex-start;
  align-items: center;
  margin-left: 3rem;
}

.side_menu {
  height: 100%;
  position: fixed;
  background-color: var(--Orange_main);

  z-index: 2;
  top: 0;
  right: 0;
  transform: translateX(102%);
  transition: 1s ease;
  display: flex;
  flex-direction: column;
  /* justify-content: space-between; */
  align-items: flex-start;
  width: 25rem;
}

.side_menu ul li a {
  cursor: pointer;
  font-size: 28px;

  text-decoration: none;
  border-bottom: 2px solid transparent;
}

.side_menu ul li a:hover {
  border-bottom: 2px solid var(--White_main);
}

.side_menu ul li {
  margin: 1.5rem 3rem;
  list-style: none;
}
.side_menu.open {
  transform: translateX(0);
  transition: 1s ease;
}

.cross_container {
  width: 100%;
  height: 100px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.cross_container svg {
  margin: 0rem 1rem;
  cursor: pointer;
}

.cross_1,
.cross_2 {
  width: 40px;
  height: 4px;
  border-radius: 24px;
  background-color: var(--White_main);
  position: absolute;
}
.cross_1 {
  transform: rotate(-45deg);
}
.cross_2 {
  transform: rotate(45deg);
}

.cross {
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  width: 50px;
  height: 50px;
  margin-right: 2rem;
}

@media only screen and (max-width: 600px) {
  .side_menu {
    width: 100%;
  }
}
