@font-face {
    font-family: 'custom';
    src: url('fonts/dani.eot');
    src: url('fonts/dani.woff2') format('woff2'),
         url('fonts/dani.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}






.header {
  position: fixed;
  z-index: 5;
  width: 100%;
}

.menu__brand a {
  color: black;
/*  margin: 5px;*/
  padding: 0px;
}

.menu__list a {
  color: white;
  margin: 5px;
  padding: 0px;
}

.burger {
  position: absolute;
  z-index: 10;
/*  left: 20px;*/
/*  top: 25px;*/
  cursor: pointer;
  -webkit-transform: rotateY(0);
          transform: rotateY(0);
  -webkit-transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}
.burger__patty {
  width: 60px;
  height: 5px;
  margin: 0 0 10px 0;
  background: white;
  -webkit-transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}
.burger__patty:last-child {
  margin-bottom: 0;
}
.burger--close {
/*
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
*/
}
.burger--close .burger__patty:nth-child(1) {
  -webkit-transform: rotate(45deg) translate(11px, 10px);
          transform: rotate(45deg) translate(11px, 10px);
}
.burger--close .burger__patty:nth-child(2) {
  opacity: 0;
}
.burger--close .burger__patty:nth-child(3) {
  -webkit-transform: rotate(-45deg) translate(11px, -10px);
          transform: rotate(-45deg) translate(11px, -10px);
}

.menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
/*  visibility: hidden;*/
}
.menu--active {
  visibility: visible;
}
.menu__brand, .menu__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: column wrap;
      flex-flow: column wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  float: left;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}
.menu__list {
  margin: 0;
  padding: 0;
  background: rgba(20,20,20,1);
  list-style-type: none;
  -webkit-transform: translate3d(0, -100%, 0);
          transform: translate3d(0, -100%, 0);
/*
  -webkit-transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    
*/
    
    transition: all 1s;
	transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
/*	transform: translate3d(0, calc(100% - 43px), 0);*/
}
.menu__list--active {
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}
.menu__list h2 {
  padding: 100px;
}
.menu__brand {
/*  background: rgba(235,235,235,1);*/
  background: rgba(235,235,235,0.9);
/*
  -webkit-transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
*/
    
  -webkit-transform: translate3d(0, 100%, 0);
          transform: translate3d(0, 100%, 0);
    
    
    transition: all 1s;
	transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
}
.menu__brand--active {
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}
.menu__item {
  -webkit-transform: translate3d(1000px, 0, 0);
          transform: translate3d(1000px, 0, 0);
  -webkit-transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}
.menu__item--active {
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}
.menu__link {
  display: inline-block;
  position: relative;
  font-size: 30px;
  padding: 15px 0;
  color: white;
  text-decoration: none;
}
.menu__link:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
}
.menu__link:hover:before {
  width: 100%;
}
.menu .menu__item:nth-child(1) {
  -webkit-transition-delay: 0.1s;
          transition-delay: 0.1s;
}
.menu .menu__item:nth-child(2) {
  -webkit-transition-delay: 0.15s;
          transition-delay: 0.15s;
}
.menu .menu__item:nth-child(3) {
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
}
.menu .menu__item:nth-child(4) {
  -webkit-transition-delay: 0.25s;
          transition-delay: 0.25s;
}
.menu .menu__item:nth-child(5) {
  -webkit-transition-delay: 0.3s;
          transition-delay: 0.3s;
}
.menu .menu__item:nth-child(6) {
  -webkit-transition-delay: 0.35s;
          transition-delay: 0.35s;
}
.menu .menu__item:nth-child(7) {
  -webkit-transition-delay: 0.4s;
          transition-delay: 0.4s;
}
.menu .menu__item:nth-child(8) {
  -webkit-transition-delay: 0.45s;
          transition-delay: 0.45s;
}
.menu .menu__item:nth-child(9) {
  -webkit-transition-delay: 0.5s;
          transition-delay: 0.5s;
}
.menu .menu__item:nth-child(10) {
  -webkit-transition-delay: 0.55s;
          transition-delay: 0.55s;
}
.menu .menu__item:nth-child(11) {
  -webkit-transition-delay: 0.6s;
          transition-delay: 0.6s;
}

/*
@media screen and (max-width: 768px) {
  ul.menu__list,
  div.menu__brand {
    float: none;
    width: 100%;
    min-height: 0;
  }
  ul.menu__list--active,
  div.menu__brand--active {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }

  .menu__list {
    height: 75vh;
    -webkit-transform: translate3d(-100%, 0, 0);
            transform: translate3d(-100%, 0, 0);
  }

  .menu__link {
    font-size: 24px;
  }

  .menu__brand {
    height: 25vh;
    -webkit-transform: translate3d(100%, 0, 0);
            transform: translate3d(100%, 0, 0);
  }
  .menu__brand .logotipo {
    width: 90px;
    height: 90px;
  }
}
*/




/*
.logotipo {
  width: 300px;
  height: 94px;
  margin-bottom: 50px;
  background-image: url("../img/dani/logo.gif");
  background-repeat: no-repeat;
  background-position: center;
}
*/




.logotipo {
    font-size: 150px;
    font-family: 'custom';
    color: black;
    transform: translate(-10px,0)
}


.burger__logo {
    font-family: 'custom';
    color: black;
    transform: translate(-10px,0)
}


.menu__brand {
    cursor: url(cursor/close.png) 35 35, auto;
}
.menu__list {
    opacity: 0;
}



.burger__logo {
    font-size: 40px;
    text-shadow:
    -1px -1px 0 #fff,
    1px -1px 0 #fff,
    -1px 1px 0 #fff,
    1px 1px 0 #fff;  
    
    opacity: 0;
}





@media only screen and (min-width: 500px) {
    .burger__patty {
        opacity: 0;
    }
    .burger--close {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
}

@media only screen and (max-width: 500px) {
    .burger__patty {
        opacity: 1;
    }
    .burger--close {
        opacity: 1;

    }
    .burger--close .burger__patty {
        background: black;
    }
}






.burger {
    position: absolute;
    top: 0px;
    width: 100%;
    height: 43px;
    background-color: none; /*rgba(235,235,235,1);*/
    margin: 0;
    left: 0;

}

/*
 {
    position: absolute;
    top: 30px;
    left: 30px;
}
*/

#menu_bar p {
    text-align: center;
    font-family: 'custom';
    font-size: 2.1rem;
    color: black;
    
    -webkit-transition: 0.7s;
    -moz-transition: 0.7s;
    -ms-transition: 0.7s;
    -o-transition: 0.7s;
    transition: 0.7s;
}



/* make font size bigger if it's open
.burger--close #menu_bar p {
    font-size: 3rem;
}
*/

.menu {
    pointer-events: none;
}

.menu__brand {
    pointer-events: all;
}







.description_about {
    position: absolute;
    top: 51%;
    left: 90px;
    transform: translate(0,-48%);
    width: calc(100% - 180px);
    text-align: left;
    color: black;
}
@media only screen and (max-width: 900px) {
    .description_about {
        width: 84%;
        left: 8%;
    }
}
@media only screen and (max-width: 600px) {
    .description_about {
        width: 90%;
        left: 5%;
        transform: translate(0,-47%);
    }
}



