button {
    background: transparent;
    border: none;
    cursor: pointer;
    outline: none;
}

ul {
    list-style: none;
    font-family: 'brignell_squaremedium';
}

ul#menu li {
    display: inline;
    font-size: 1em;
    color: black;
}

ul#menu li:nth-child(even) {
    margin: 6px;
}

.trigger-menu-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    display: -webkit-box;
    display: flex;
    -webkit-box-pack: center;
    justify-content: center;
    padding: 30px;
    z-index: 2;
    background: transparent;
    -webkit-transition: -webkit-transform 0.4s;
    transition: -webkit-transform 0.4s;
    transition: transform 0.4s;
    transition: transform 0.4s, -webkit-transform 0.4s;
}

.page-header .trigger-menu {
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    color: var(--white);
}

.page-header .trigger-menu svg {
    margin-right: 8px;
    -webkit-transition: -webkit-transform 0.3s;
    transition: -webkit-transform 0.3s;
    transition: transform 0.3s;
    transition: transform 0.3s, -webkit-transform 0.3s;
    filter: brightness(0) invert(1);
}

.page-header .menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: none;
    text-align: center;
    padding: 15vh 0 5vh;
    overflow: auto;
    z-index: 99;
}

.header__bar {
    color: #000;
    -webkit-font-smoothing: antialiased;
    margin: 0;
    border: 0;
    font: inherit;
    vertical-align: baseline;
    top: 0;
    display: flex;
    -webkit-box-pack: justify;
    /* justify-content: space-between;
     */
    box-sizing: border-box;
    backface-visibility: hidden;
    position: fixed;
    -webkit-box-align: center;
    align-items: center;
    z-index: 40;
    transition: box-shadow .2s ease-out 0s, -webkit-box-shadow .2s ease-out 0s;
    width: 100%;
    left: 0;
    padding: 0 50px;
    height: 62px;
}

.menu-buttons-container {
    -webkit-font-smoothing: antialiased;
    margin: 0;
    padding: 0;
    border: 0;
    font: inherit;
    vertical-align: baseline;
    position: relative;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    color: #fff;
    z-index: 2;
    height: auto;
}

.header__bar__menu-btn {
    -webkit-font-smoothing: antialiased;
    margin: 0;
    padding: 0;
    border: 0;
    font: inherit;
    vertical-align: baseline;
    outline-color: #fff;
    text-decoration: none;
    color: #fff;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    -webkit-box-pack: center;
    justify-content: center;
    position: relative;
    z-index: 1;
    height: 35px;
}

.header__bar__menu-btn span {
    -webkit-font-smoothing: antialiased;
    color: #fff;
    -webkit-box-direction: normal;
    margin: 0;
    padding: 0;
    border: 0;
    font: inherit;
    vertical-align: baseline;
    display: inline-block;
    background: #fff;
    transition: background .25s ease-out, transform .25s ease-out, -webkit-transform .25s ease-out;
    will-change: transform;
    transform-origin: center left;
    width: 35px;
    height: 3px;
    margin-bottom: 7px;
    visibility: hidden;
}

.header__bar__menu-btn-close {
    -webkit-font-smoothing: antialiased;
    margin: 0;
    padding: 0;
    border: 0;
    font: inherit;
    vertical-align: baseline;
    outline-color: #fff;
    text-decoration: none;
    color: #fff;
    position: absolute;
    z-index: 0;
    width: 35px;
    height: 35px;
    top: 0;
    left: -4px;
}

.header__bar__logo {
    -webkit-font-smoothing: antialiased;
    margin: 0;
    padding: 0;
    border: 0;
    font: inherit;
    vertical-align: baseline;
    outline-color: #fff;
    text-decoration: none;
    color: #fff;
    position: relative;
    z-index: 1;
    transform: translateY(0);
    will-change: transform;
    opacity: 1;
    transition: all .3s ease-out;
    margin-left: 48px;
}

.header__bar__logo svg {
    -webkit-font-smoothing: antialiased;
    font: inherit;
    color: #fff;
    height: 33px;
    width: 64px;
}

.header__bar__logo svg * {
    /* fill: red;
    */
}

.menu-items-right {
    right: 5vw;
    position: absolute;
}

.menu-open {
    overflow: hidden;
}

.menu-open .trigger-menu-wrapper {
    background: transparent;
}

.menu-open .page-header .menu {
    display: block;
}

.menu-open .page-header svg {}

.scroll-down .trigger-menu-wrapper {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
}

.scroll-up .trigger-menu-wrapper {
    -webkit-transform: none;
    transform: none;
}

.scroll-up:not(.menu-open) .trigger-menu-wrapper {
    /* background: var(--lightpurple);
    */
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.35);
}

.menu-open {
    overflow: hidden;
}

.menu-open .trigger-menu-wrapper {
    background: transparent;
}

.menu-open .page-header .menu {
    display: block;
}

.menu-open .page-header svg {}

.scroll-down .trigger-menu-wrapper {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
}

.scroll-up .trigger-menu-wrapper {
    -webkit-transform: none;
    transform: none;
}

.scroll-up:not(.menu-open) .trigger-menu-wrapper {
    background: var(--white);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.35);
}

.scroll-up:not(.menu-open) .header__bar__logo svg {
    filter: brightness(1) invert(0);
}

.scroll-up:not(.menu-open) ul#menu li {
    color: var(--black);
}

.scroll-up:not(.menu-open) .menu-buttons-container span {
    background-color: var(--black);
    visibility: hidden;
}

header.header .header__ctn .header__bar a {
    text-decoration: none;
    color: #fff;
}


/*  TEST MENU SCROLL ADD: header__menu--visible  */

nav.header .header__menu.header__menu--visible:before {
    transform: scaleX(1);
    transition-delay: 0s
}

nav.header {
    position: relative;
    z-index: 3;
}


/* PANEL BLANCO DESPLEGALE SET COLOR ETC*/

.header__menu {
    text-align: center;
}

nav.header .header__menu:before {
    content: "";
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: #fff;
    z-index: 0;
    transform: scaleY(0);
    transform-origin: center top;
    transition: all .5s cubic-bezier(.17, .67, .47, .97)
}


/* PANEL BLANCO DESPLEGALE, sin, SE INCORPORA EN EL MENU  */

nav.header .header__menu {
/*    pointer-events: none;*/
    display: none;
    position: fixed;
    z-index: 20;
    width: 100%;
    left: 0;
    top: 0;
    text-align: center;
    height: 100vh;
}

.header__menu__ctn {
    display: block;
    position: relative;
    top: 50%;
    transform: translateY(-150%);
}


/* MENU PARA MOBILE */

@media (min-width:738px) {
    .header__menu {
        display: none;
    }

    .b-container{
        display: none;
    }
}

@media (max-width:737px) {
    #menu {
        display: none;
    }
    .page-header .trigger-menu svg {
        filter: brightness(1) invert(0);
    }
}

@media (min-width:738px) {
    nav.header .header__menu {
        padding: 80px 0 10px
    }
}

@media (min-width:1024px) {
    nav.header .header__menu {
        padding: 130px 0 153px;
    }
}

@media (min-width:1280px) {
    nav.header .header__menu {
        width: calc(100% - 180px);
        left: 90px
    }
}

@media (min-width:1440px) {
    nav.header .header__menu {
        width: calc(100% - 312px);
        left: 156px
    }
}

nav.header .header__menu.header__menu--visible{
    display: block;
}

nav.header .header__menu__ctn .menu__columns .column .menu__links li {
    opacity: 0;
    -webkit-transform: translate3d(0, 40px, 0);
    transform: translate3d(0, 40px, 0)
}

@media (min-width:1024px) {
    nav.header .header__menu__ctn .menu__columns .column .menu__links li {
        -webkit-transform: translate3d(0px, 40px, 0);
        transform: translate3d(0px, 40px, 0)
    }
}

nav.header .header__menu__ctn .menu__columns .column .menu__links li a {
    font-family: 'brignell_squarebold';
    display: block;
    font-size: 20px;
    text-decoration: none;
    color: #28282e;
    margin-bottom: 15px;
    -webkit-transition: all .2s ease-out;
    -o-transition: all .2s ease-out;
    transition: all .2s ease-out
}


/*  SCROLL VENTANA */


/*  TIEMPO ANIMACION TEXTO MENU */

nav.header .header__menu.header__menu--visible .header__menu__ctn .column:before {
    height: 100%;
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    transition: all .3s cubic-bezier(.17, .67, .47, .97)
}

nav.header .header__menu.header__menu--visible .header__menu__ctn .column:first-child:before {
    -webkit-transition-delay: .46s;
    -o-transition-delay: .46s;
    transition-delay: .46s
}

nav.header .header__menu.header__menu--visible .header__menu__ctn .column:nth-child(2):before {
    -webkit-transition-delay: .52s;
    -o-transition-delay: .52s;
    transition-delay: .52s
}

nav.header .header__menu.header__menu--visible .header__menu__ctn .column:nth-child(3):before {
    -webkit-transition-delay: .58s;
    -o-transition-delay: .58s;
    transition-delay: .58s
}

nav.header .header__menu.header__menu--visible .header__menu__ctn .column:nth-child(4):before {
    -webkit-transition-delay: .64s;
    -o-transition-delay: .64s;
    transition-delay: .64s
}

nav.header .header__menu.header__menu--visible .header__menu__ctn .column:nth-child(5):before {
    -webkit-transition-delay: .7s;
    -o-transition-delay: .7s;
    transition-delay: .7s
}

nav.header .header__menu.header__menu--visible .header__menu__ctn .column:nth-child(6):before {
    -webkit-transition-delay: .76s;
    -o-transition-delay: .76s;
    transition-delay: .76s
}

nav.header .header__menu.header__menu--visible .header__menu__ctn .column:nth-child(7):before {
    -webkit-transition-delay: .82s;
    -o-transition-delay: .82s;
    transition-delay: .82s
}

nav.header .header__menu.header__menu--visible .header__menu__ctn .column:nth-child(8):before {
    -webkit-transition-delay: .88s;
    -o-transition-delay: .88s;
    transition-delay: .88s
}

nav.header .header__menu.header__menu--visible .header__menu__ctn .column:nth-child(9):before {
    -webkit-transition-delay: .94s;
    -o-transition-delay: .94s;
    transition-delay: .94s
}

nav.header .header__menu.header__menu--visible .header__menu__ctn .column:nth-child(10):before {
    -webkit-transition-delay: 1s;
    -o-transition-delay: 1s;
    transition-delay: 1s
}

nav.header .header__menu.header__menu--visible .header__menu__ctn .menu__links li {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-transition: all .3s cubic-bezier(.17, .67, .47, .97);
    -o-transition: all cubic-bezier(.17, .67, .47, .97) .3s;
    transition: all .3s cubic-bezier(.17, .67, .47, .97)
}

nav.header .header__menu.header__menu--visible .header__menu__ctn .menu__links li:first-child {
    -webkit-transition-delay: .36s;
    -o-transition-delay: .36s;
    transition-delay: .36s
}

nav.header .header__menu.header__menu--visible .header__menu__ctn .menu__links li:nth-child(2) {
    -webkit-transition-delay: .42s;
    -o-transition-delay: .42s;
    transition-delay: .42s
}

nav.header .header__menu.header__menu--visible .header__menu__ctn .menu__links li:nth-child(3) {
    -webkit-transition-delay: .48s;
    -o-transition-delay: .48s;
    transition-delay: .48s
}

nav.header .header__menu.header__menu--visible .header__menu__ctn .menu__links li:nth-child(4) {
    -webkit-transition-delay: .54s;
    -o-transition-delay: .54s;
    transition-delay: .54s
}

nav.header .header__menu.header__menu--visible .header__menu__ctn .menu__links li:nth-child(5) {
    -webkit-transition-delay: .6s;
    -o-transition-delay: .6s;
    transition-delay: .6s
}

nav.header .header__menu.header__menu--visible .header__menu__ctn .menu__links li:nth-child(6) {
    -webkit-transition-delay: .66s;
    -o-transition-delay: .66s;
    transition-delay: .66s
}

nav.header .header__menu.header__menu--visible .header__menu__ctn .menu__links li:nth-child(7) {
    -webkit-transition-delay: .72s;
    -o-transition-delay: .72s;
    transition-delay: .72s
}

nav.header .header__menu.header__menu--visible .header__menu__ctn .menu__links li:nth-child(8) {
    -webkit-transition-delay: .78s;
    -o-transition-delay: .78s;
    transition-delay: .78s
}

nav.header .header__menu.header__menu--visible .header__menu__ctn .menu__links li:nth-child(9) {
    -webkit-transition-delay: .84s;
    -o-transition-delay: .84s;
    transition-delay: .84s
}

nav.header .header__menu.header__menu--visible .header__menu__ctn .menu__links li:nth-child(10) {
    -webkit-transition-delay: .9s;
    -o-transition-delay: .9s;
    transition-delay: .9s
}


/*  BURGER */
@-webkit-keyframes slideInLeft {
    0% {
      -webkit-transform: translate3d(-250px, 0, 0);
              transform: translate3d(-250px, 0, 0);
      visibility: visible;
    }
    100% {
      -webkit-transform: translate3d(0, 0, 0);
              transform: translate3d(0, 0, 0);
    }
  }
  @keyframes slideInLeft {
    0% {
      -webkit-transform: translate3d(-250px, 0, 0);
              transform: translate3d(-250px, 0, 0);
      visibility: visible;
    }
    100% {
      -webkit-transform: translate3d(0, 0, 0);
              transform: translate3d(0, 0, 0);
    }
  }
  @-webkit-keyframes slideOutLeft {
    0% {
      -webkit-transform: translate3d(0, 0, 0);
              transform: translate3d(0, 0, 0);
    }
    100% {
      -webkit-transform: translate3d(-250px, 0, 0);
              transform: translate3d(-250px, 0, 0);
      visibility: hidden;
    }
  }
  @keyframes slideOutLeft {
    0% {
      -webkit-transform: translate3d(0, 0, 0);
              transform: translate3d(0, 0, 0);
    }
    100% {
      -webkit-transform: translate3d(-250px, 0, 0);
              transform: translate3d(-250px, 0, 0);
      visibility: hidden;
    }
  }
  * {
    box-sizing: border-box;
  }
  
  body:after {
    background: white;
    content: '';
    height: 100%;
    left: 0;
    opacity: 0;
    overflow: auto;
    padding: 0;
    position: absolute;
    top: 0;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
    width: 100%;
  }
  body.open {
    overflow: hidden;
  }
  body.open:after {
    opacity: 1;
    visibility: visible;
  }
  
  .b-nav {
    position: absolute;
    z-index: 11;
  }
  .b-nav:not(.open) {
    visibility: hidden;
  }
  .b-nav li {
    color: #444444;
    list-style-type: none;
    padding: 10px;
    text-align: left;
    -webkit-transform: translateX(-250px);
            transform: translateX(-250px);
  }
  .b-nav li:not(.open) {
    -webkit-animation-duration: 0.4s;
            animation-duration: 0.4s;
    -webkit-animation-fill-mode: both;
            animation-fill-mode: both;
    -webkit-animation-name: slideOutLeft;
            animation-name: slideOutLeft;
  }
  .b-nav li:first-child {
    padding-top: 120px;
  }
  .b-nav.open {
    visibility: visible;
  }
  .b-nav.open li {
    -webkit-animation-duration: 0.4s;
            animation-duration: 0.4s;
    -webkit-animation-fill-mode: both;
            animation-fill-mode: both;
    -webkit-animation-name: slideInLeft;
            animation-name: slideInLeft;
  }
  
  .b-link {
    background: transparent;
    border-left: rgba(68, 68, 68, 0) solid 2px;
    color: #444444;
    font-family: Helvetica-Neue, Helvetica, Arial, sans-serif;
    font-size: 24px;
    font-weight: 300;
    margin-left: 30px;
    text-decoration: none;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
    width: auto;
  }
  .b-link:hover, .b-link--active {
    border-left: #444444 solid 2px;
    padding-left: 30px;
  }
  
  .b-menu {
    cursor: pointer;
    display: inline-block;
    height: 55px;
    padding-left: 15.5px;
    padding-top: 17.5px;
    position: relative;
    transition: all 0.4s ease;
    width: 55px;
    z-index: 12;
  }

  .b-bun {
    background: #444444;
    position: relative;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
  }
  .b-bun--top {
    height: 2px;
    top: 0;
    width: 25px;
  }
  .b-bun--mid {
    height: 2px;
    top: 6px;
    width: 25px;
  }
  .b-bun--bottom {
    height: 2px;
    top: 12px;
    width: 25px;
  }
  
  .b-brand {
    color: white;
    font-family: Helvetica-Neue, Helvetica, Arial, sans-serif;
    font-size: 24px;
    font-weight: 300;
    margin-left: 30px;
    position: relative;
    text-decoration: none;
    top: -21.4285714286px;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
    z-index: 13;
  }
  
  .b-container {
    left: 0px;
    position: absolute;
  }
  .b-container:hover:not(.open) .bun-top,
  .b-container:hover:not(.open) .bun-mid,
  .b-container:hover:not(.open) .bun-bottom {
    background: white;
  }
  .b-container.open .b-main {
    border: #444444 solid 2px;
  }
  .b-container.open .b-bun--top {
    background: #444444;
    top: 9px;
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
  }
  .b-container.open .b-bun--mid {
    opacity: 0;
  }
  .b-container.open .b-bun--bottom {
    background: #444444;
    top: 5px;
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
  }
  .b-container.open .b-brand {
    color: #444444;
  }
  
.container_rrss{
    display: flex;
  justify-content: center;
}


.container_rrss ul {
  /* for IE below version 7 use `width` instead of `max-width` */
  max-width: 800px;
  margin-right: auto;
  margin-left: auto;
}

.container_rrss img{
    width: 10vw;
    height: auto;
}

.iconos_redes_sociales {
    
    position: fixed;
    bottom: 10vh;
    float: right;
    padding-left: 0;
    display: inline-flex;
}
