.mobile-menu-logo{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}


.mobile-logo{
    width: 45px;
}

.close-menu{
    color:#999;
    cursor: pointer;
    align-items: flex-end;
    transition: all 0.3s ease-in-out;
    position: relative;
    right:0;
}


.close-menu:hover{
    color: #46B29E; 
}

.tablediv {
  display: table;
  position: fixed;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
}
.tablediv .cell {
  display: table-cell;
  vertical-align: middle;
}

.circle {
  width: 60px;
  height: 60px;
  line-height: 60px;
  color: #707070;
/*  border-radius: 50%;*/
/*  background: #333;*/
  margin: 0 auto;
  font-size: 26px;
  position: absolute;
  left:10px;
  top: 15px;
  z-index: 92;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease-in-out;

}


.circle:hover{
   color: #46B29E; 
}


.nveMenu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 70vw;
  height: 100%;
  background: #fff;
  opacity: 0;
  visibility: hidden;
  z-index: 999;
  transform: translateX(-320px);
  transition: all 0.5s cubic-bezier(0.7, 0, 0.3, 1);
  padding: 20px 20px;
}
.nveMenu.is-opened {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}
.nveMenu h1 {
  color: #000;
  font-weight: 700;
}

.overlay {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.61);
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s cubic-bezier(0.7, 0, 0.3, 1);
  z-index: 800;  
}
.overlay.is-on {
  opacity: 1;
  visibility: visible;
}

.navlinks li {
  display: block;
  padding: 12px 0;
}
.navlinks li a {
  display: block;
  text-transform: uppercase;
  color: #999;
  font-weight: 700;
  transition: all 0.3s ease-in-out;  
}
.navlinks li a:hover {
  text-decoration: none;
   color: #46B29E; 
}

@media (max-width: 1980px) {
    .circle{
        display: none;
    }
    
}


@media (max-width: 1080px) {
    .circle{
        display: block;
    }
    .menu{
        display: none;
    }
    
}
