/* GLOBAL */
html {
  box-sizing: border-box;
  height: 100%;
  scroll-behavior: smooth;
}

*,
*::before,
*::after {
  box-sizing: inherit;
}

body {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 0;
  margin: 0;
  font-family: "Arial", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  background-color: #fff;
  color: #222;
}

img {
  max-width: 100%;
  height: auto;
}


/* CONTAINER */
.container {
  width: 100%;
  max-width: 1200px;
  padding-left: 50px;
  padding-right: 50px;
  margin-left: auto;
  margin-right: auto;
}

.menu-wrapper{
  width:100%;
  height: 100vh;
  background-color: #7b1fa2;
  display: flex;
  justify-content: center;
  align-items: center;
}

.menu-burger{
  display: block;
  width: 50px;
  height: 50px;
  background-color: #fff;
  border-radius: 50%;
  position: relative;
}

.menu-span,
.menu-span::before,
.menu-span::after{
  position: absolute;
  top: 50%; margin-top: -1px;
  left: 50%; margin-left: -10px;
  width: 20px;
  height: 2px;
  background-color: #222;

}

.menu-span::before,
.menu-span::after{
  content: '';
  display: block;
  transition: 0.3s;
}

.menu-span::before{
  transform: translateY(5px);
}
.menu-span::after{
  transform: translateY(-5px);
}

.menu-burger__active .menu-span::before{
  transform: rotate(35deg);
  transform-origin: left bottom;
  width: 10px;
}
.menu-burger__active .menu-span::after{
  transform: rotate(-35deg);
  transform-origin: left top;
  width: 10px;
}

.link{
  display: inline-block;
  color:#222;
  text-decoration: none;
  margin-right: 20px;
}

.manu-nav{
  display: flex;
  justify-content: center;
  align-items: center;
}

.nav-items{
  transition: 0.5s;
  transform-origin: right center;
  transform: scale(0) translateX(20%);
  opacity: 0;
  background-color: #fff;
  height: 50px;
  line-height: 50px;
  padding-left: 20px;
  padding-right: 40px;
  margin-right: -25px;
  border-bottom-left-radius: 50px;
  border-top-left-radius: 50px;

}
.nav-items__active{
  transform: scale(1) translateX(0);
  opacity: 1;
}