@-webkit-keyframes zoom {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}
@keyframes zoom {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}

 .full-menu {
  width: 100%;
  height: 100vh;
}

.full-menu {
  display: flex;
  align-items: center;
  justify-content: center;
}


.full-menu {
  position: fixed;
  background-color: #000;
  opacity: 0.5;
  transform: translateX(100%);
  transition: all 400ms ease-in;
  text-align: center;
  z-index: 999;
}
.full-menu li {
  font-size: 2em;
  color: #fff;
  opacity: 0;
  transform: translateY(2%);
  transition: all 300ms ease-in;
  cursor: pointer;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
 
.full-menu li a {
  color:#fff;
  padding: 15px 0;
  position: relative;
  font-family: 'Antic Didone', serif;
    font-size: 1.2em;
}
.full-menu li a:after {
  content: "";
  position: absolute;
  height: 1px;
  width: 0%;
  left: 0;
    right: 0;
    margin: 0 auto;
  bottom: 0;
  background-color: #f7a40a;
  transition: width 200ms ease-in;
}
.full-menu li a:hover:after {
  width: 50%;
}
.full-menu ul {
  list-style: none;
}
.full-menu.active {
  transform: translateX(0%);
  opacity: 1;
  z-index: 99;
}
.full-menu.active .home {
  transition-delay: 0.3s;
}
.full-menu.active .about {
  transition-delay: 0.4s;
}
.full-menu.active .works {
  transition-delay: 0.5s;
}
.full-menu.active .contact {
  transition-delay: 0.6s;
}
.full-menu.active li {
  opacity: 1;
  transform: translateX(0%);

}
.full-menu.active li:hover {
  -webkit-animation: zoom 200ms ease-in;
          animation: zoom 200ms ease-in;
}

.hamburguer {
  position: relative;
  width: 2%;
  height: 8em;
  margin: 0;
  z-index: 1;
  cursor: pointer;
  right: 0;
  text-align: right;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
}
.hamburguer:hover {
  -webkit-animation: zoom 300ms ease-in;
          animation: zoom 300ms ease-in;
}

.lines {
  background-color: #f7a40a;
  width: 35px;
  height: 3px;
  margin: 4px 0;
  transition: all 450ms ease-in;
}

.close-hamburguer .lines {
  cursor: pointer;
}
.close-hamburguer .line-top {
  transform: translateY(200%) rotate(45deg);
}
/* .close-hamburguer .line-mid {
  opacity: 0;
} */


.close-hamburguer .line-mid {
  opacity: 1;
  transform: translateY(200%) rotate(312deg);
  width: 45px!important;
  margin: 0;
  top: -6px;
  position: relative;
}
.close-hamburguer .line-bottom {
  transform: translateY(-200%) rotate(135deg);
}
.top_header {
  position: fixed;
  top: 0;
  z-index: 999;
  display: flex;
  justify-content: space-around;
  align-items: flex-start;
  width: 100%;
  left: 0;
  flex-wrap: wrap;
  padding: 30px 2%;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
    background: #000;
}
.top_header a.dot::before {
  content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    background-color: #f7a40a;
    top: 6px;
    left: -13px;
    border-radius: 50%;
}
.top_header a {
  margin: 0 10px;
  font-size: 15px;
  position: relative;
  

}
.top_header a i {
  background-color: #f8f5be;
  color: #1d161d;
  display: flex;
   width: 35px;
   height: 35px;
   padding: 10px;
    border-radius: 50%;
    justify-content: center;
    align-items: center;
}
/* .social_header {
  width: 15%;
  height: 8em;
  display: flex;
    justify-content: center;
    align-items: center;
} */
.logo {
  width: 80%;
  text-align: left;
}
a.phone {
  display: inline-block;

}
a.phone::after {
  content: '';
  display: block;
  width: 0;
  height: 2px;
  background: #f8f5be;
  transition: width .3s;
}

a.phone:hover::after {
  width: 100%;
 
}
.lines.line-top {
  width: 45px;
}
.lines.line-mid {
  width: 25px;
}