


.item1move{
    transform: rotate(45deg);
    top: 50% !important;
    margin-top: -2.5% !important;
    transition: .5s;
}

.item2move{
    transform: rotate(-45deg);
    transition: .5s;
}
.item3move{
    transform: rotate(-45deg);
    top: 50% !important;
    margin-top: -2.5% !important;
    transition: .5s !important;
}
.border{
    height: 100%;
    width: 1px;
    background-color: white;
}


.item1{
  position: absolute;
  left: 50%;
  margin-left: -35%;
  width: 70%;
  background-color: white;
  height: 5%;
  top: 30%;
  margin-top: -2.5%;
  transition: .5s;
 
 

}
.item2{
  width: 70%;
  background-color: white;
  height: 5%;
  position: absolute;
  left: 50%;
  margin-left: -35%;
  top: 50%;
  margin-top: -2.5%;
  transition: .5s;
}

.item3{
  width: 70%;
  background-color: white;
  height: 5%;
  position: absolute;
  left: 50%;
  margin-left: -35%;
  top: 70%;
  margin-top: -2.5%;
  transition: .5s;
}
.open-menu i{
    font-size: 2rem;
}


.open-menu{
    position: fixed;
    left: 2rem;
    top: 2rem;
    background-color: rgba(174, 0, 53, 1);
    border-radius: 8px;
    border: 1px solid white;
    height: 50px;
    width: 50px;
    z-index: 2000;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    transition: .5s;
    cursor: pointer;
}

.menu_is_open{
    left: calc(2rem + 265px);
    transition: .5s;
}

