.logo {
  display: flex;
  width: 250px;
  padding-left: 10px;
}

.logo p {
    margin: 0;            
    line-height: 1;        
    font-size: 18px;
    font-weight: 500;
    color: #000000;
    padding: 0 !important;
}

.test-logo {
  display: flex;
  align-items: center;
}

.nav_scrolled {
  background-color: #ffffff;
  transition: 0.5s;
}

nav {
  display: flex;
  width: 100%;
  padding: 10px 0px 10px 0px;
  background-color: #ffffff;
}

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

.desktop_nav {
  display: none;
}

.menu_items {
  display: none;
  position: absolute;
  right: 0vw;
  height: 100vh;
  line-height: 30px;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  background-color: #ffffff;
  padding: 60px;
}

.menu_items a {
    color: #000000 ;
}

.menu_btn {
  position: relative;
  display: flex;
  align-items: center;
  width: 50px;
  height: 50px;
  cursor: pointer;
  transition: all 0.5s ease-in-out;
  z-index: 10;
}

.menu_btn_burger {
  width: 40px;
  height: 4px;
  background-color: #000000;
  border-radius: 70px;
  transition: all 0.5s ease-in-out;
}

.menu_btn_burger::before,
.menu_btn_burger::after {
  content: "";
  position: absolute;
  width: 40px;
  height: 4px;
  background-color: #000000;
  border-radius: 70px;
  transition: all 0.5s ease-in-out;
}
.menu_btn_burger::before {
  transform: translateY(-16px);
}
.menu_btn_burger::after {
  transform: translateY(16px);
}
.menu_btn.open .menu_btn_burger {
  transform: translateX(-50px);
  background: transparent;
}
.menu_btn.open .menu_btn_burger::before {
  transform: rotate(45deg) translate(35px, -35px);
}
.menu_btn.open .menu_btn_burger::after {
  transform: rotate(-45deg) translate(35px, 35px);
}

@keyframes fade {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0.5;
  }
  100% {
    opacity: 1;
  }
}
