/* ============================================== */
/* NAVIGATION-TOP */
/* ============================================== */

.navigation-top{
  display: block;
  position: fixed;
  background: white;
  width: 100%;
  top:0;
  z-index: 999999;
  overflow: hidden;
  border-bottom:1px solid #A6955D;
}

/* ============================================== */
/* BTN */
/* ============================================== */

.navigation-top a.btn-outline{
  margin: 10px 10px 0;
}

@media screen and (max-width: 768px) {
  .navigation-top a.btn-outline{
    display: none;
  }
}

/* ============================================== */
/* LOGO */
/* ============================================== */

.navigation-top a img{
  max-width: 200px;
  position: absolute;
  top:9px;
  left: 50%;
  margin-left: -100px;
}

@media screen and (max-width: 768px) {
  .navigation-top a img{
    max-width: 170px;
    position: relative;
    left: 20px;
    display: block;
    float: left;
    margin-left: 0;
  }
}

/* ============================================== */
/* NAVIGATION */
/* ============================================== */

.navigation{
  display: block;
  position: fixed;
  height: 100vh;
  width: 300px;
  right:-300px;
  z-index: 99999;
  background: rgba(255,255,255,1);
  border-left:1px solid #A6955D;
}

.navigation.cerrado {
  -webkit-transition-delay: 0.8s;
  transition-delay: 0.8s;
}

.navigation ul{
  list-style: none;
  width: auto;
  display: block;
  float:left;
  top:100px;
  position: relative;
  margin: 0;
  padding: 20px;
  width: 100%;
}

.navigation ul li{
  display: block;
  float: left;
  position: relative;
  width: 100%;
  left: 10px;
  opacity: 0;
}

.navigation.active ul li{
  left: 0;
  opacity: 1;
}

.navigation ul li:nth-child(1) {
 -webkit-transition-delay: 0s;
  transition-delay: 0s;
}
.navigation ul li:nth-child(2) {
 -webkit-transition-delay: 0.1s;
  transition-delay: 0.1s;
}
.navigation ul li:nth-child(3) {
 -webkit-transition-delay: 0.2s;
  transition-delay: 0.2s;
}
.navigation ul li:nth-child(4) {
 -webkit-transition-delay: 0.3s;
  transition-delay: 0.3s;
}
.navigation ul li:nth-child(5) {
 -webkit-transition-delay: 0.4s;
  transition-delay: 0.4s;
}
.navigation ul li:nth-child(6) {
 -webkit-transition-delay: 0.5s;
  transition-delay: 0.5s;
}
.navigation ul li:nth-child(7) {
 -webkit-transition-delay: 0.6s;
  transition-delay: 0.6s;
}


.navigation.active ul li:nth-child(1) {
 -webkit-transition-delay: 0.4s;
  transition-delay: 0.4s;
}
.navigation.active ul li:nth-child(2) {
 -webkit-transition-delay: 0.5s;
  transition-delay: 0.5s;
}
.navigation.active ul li:nth-child(3) {
 -webkit-transition-delay: 0.6s;
  transition-delay: 0.6s;
}
.navigation.active ul li:nth-child(4) {
 -webkit-transition-delay: 0.7s;
  transition-delay: 0.7s;
}
.navigation.active ul li:nth-child(5) {
 -webkit-transition-delay: 0.8s;
  transition-delay: 0.8s;
}
.navigation.active ul li:nth-child(6) {
 -webkit-transition-delay: 0.9s;
  transition-delay: 0.9s;
}
.navigation.active ul li:nth-child(7) {
 -webkit-transition-delay: 1s;
  transition-delay: 1s;
}

.navigation ul li a{
  padding: 20px;
  width: 100%;
  display: block;
  cursor: pointer !important;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 4px;
  opacity: 1;
  margin: 0;

}

.navigation ul li a.current{
  color:#9f9551;
}

.navigation ul li a:hover{opacity: 0.8;}

.navigation.active{
  right:0px;
}


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

  .navigation ul li a{
    padding: 10px;
  }
  .navigation ul{
    padding: 0;
  }
  .navigation{
    padding:60px 40px;
    width: 100%;
    right:-100%;
  }

  .navigation.abierto .hamburguer-menu,
  .navigation.cerrado .hamburguer-menu{
    right: 0 !important;
    position: fixed;
  }

}

/* ============================================== */
/* BODY */
/* ============================================== */

body.active{
  overflow-y:hidden;
  position: relative;
}

/* ============================================== */
/* HAMBURGUER */
/* ============================================== */

.hamburguer-menu{
  position:relative;
  float: right;
  width: 70px;
  height: 68px;
  z-index: 9999;
}

.hamburguer{
  position: absolute;
  width:30px;
  height:40px;
  right: 20px;
  cursor:pointer;
  margin:0;
  top:13px;
}

.hamburguer{
  display: block;
  z-index: 9999;
}

.hamburguer span{
  position:absolute;
  display:block;
  height:3px;
  opacity: 1;
  top:10px;
  right:0;
  background: #A6955D;
  width:100%;

  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  border-radius: 5px;
}

.hamburguer span:nth-child(1){top:30%;}
.hamburguer span:nth-child(2){top:49.8%;}
.hamburguer span:nth-child(3){top:70%;}

.hamburguer.active span:nth-child(1){width:65%;}
.hamburguer.active span:nth-child(2){width:25%;}
.hamburguer.active span:nth-child(3){width:85%;}


@media screen and (max-width: 768px) {
  .hamburguer-menu{
    width: 60px;
    height: 60px;
    z-index: 9999;
  }
  .hamburguer{
    right: 15px;
    margin:0;
    top:10px;
  }
}


/* ============================================== */
/* TRANSITIONS */
/* ============================================== */

.hamburguer span,
.navigation,
.navigation ul li,
.navigation ul li a{
  -webkit-transition:all 350ms cubic-bezier(0.645, 0.045, 0.355, 1);
  -moz-transition:all 350ms cubic-bezier(0.645, 0.045, 0.355, 1);
  -ms-transition:all 350ms cubic-bezier(0.645, 0.045, 0.355, 1);
  transition:all 350ms cubic-bezier(0.645, 0.045, 0.355, 1);
}







