.com_nav_mobile_1{display: none}

@media only screen and (max-width:1124px){

	.com_nav_mobile_1{display: block}

}



button {
  border: 0;
  padding: 0;
  background: transparent;
  cursor: pointer;
}

.burger{
	
}

.menu {
  position: fixed;
}

.burger {
	position: absolute;
  z-index: 999;
  top: 10px;
  right: 5px;
  display: grid;
  place-items: center;
  width: 88px;
  height: 88px;
  background-size: 60%;
  background-image: url("https://fleekbrows.com.au/assets/menu.svg");
  background-repeat: no-repeat;
  background-position: center;
}

body.open .burger {
  position: fixed;
  background-image: url("https://fleekbrows.com.au/assets/close.svg");
}

.menu {
  z-index: 2;
  inset: 0;
  bottom: 20vh;
  display: grid;
  place-items: center;
  background: #1b1b1b;
/*	background: radial-gradient(circle, rgb(74, 74, 74) 0%, rgb(31, 30, 30) 100% / 95%);*/
	
	
  backdrop-filter: blur(10px);
  padding: 0 44px;
  text-align: center;
  transition: translate 0.475s cubic-bezier(0.175, 0.885, 0.32, 1);
  animation: menu-out 0.475s both;
}

.menu nav {
  opacity: 0;
}

@keyframes menu-in {
  0% {
    translate: -100% 0;
    clip-path: ellipse(60% 60% at 0% 50%);
  }
  100% {
    translate: 0;
    clip-path: ellipse(120% 120% at 0% 50%);
  }
}

@keyframes menu-out {
  100% {
    opacity: 0;
    visibility: hidden;
  }
}

body.open .menu {
  opacity: 1;
  visibility: visible;
  translate: 0;
  animation: menu-in 0.475s both;
	height: 100%;
}

body.open .menu nav {
  opacity: 1;
}

.menu nav:hover a {
  opacity: 0.25;
}

.menu nav a:hover {
  opacity: 1;
}

.menu nav {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
	text-align: left;
}

.menu a {
  position: relative;
  color: #f9f9f9;
  font-size: 35px;
/*  font-family: "Euclid Circular A";*/
  padding: 10px 0;
  width: 260px;
  text-decoration: none;
  cursor: pointer;
  opacity: 1;
/*  visibility: visible;*/
  transition: 0.4s;
	text-transform: uppercase;
	font-weight: 100;
}

body.open .menu a {
  animation: appear 0.25s backwards;
}

@keyframes appear {
  0% {
    opacity: 0;
    translate: 0 30px;
  }
  100% {
    opacity: 1;
  }
}

.insta-footer {
  position: fixed;
  left: 0;
  bottom: 0;
  right: 0;
  height: 20vh;
  z-index: 10;
  background-color: black;
}


@media (max-width:540px){
	
    .burger {
        top: 1px;

    }	
	
}



