/* BODY */

body {
    padding-top: 60px;
    background: #1F1E21;
}
body, input, textarea, select, button {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-text-size-adjust: none;
    font-family: 'brandon_grotesque', sans-serif;
    font-weight: normal;
    font-size: 62.5%;
    color: #3c3c3c;
}
p {
    text-rendering: optimizeLegibility;
}
strong {
    font-weight: 700;
}
em {
    font-style: italic;
}
input, textarea, select, button {
    border: none;
    outline: none;
    resize: none;
    border-radius: 0;
    background-color: transparent;
    -webkit-appearance: none;
    padding: 0;
    margin: 0;
}
a, input[type=submit], button {
    color: #3c3c3c;
    -webkit-tap-highlight-color: rgba(55,55,5,0.3);
    cursor: pointer;
    transition: 
        color 300ms ease-out,
        background 300ms ease-out, 
        border 300ms ease-out, 
        opacity 300ms ease-out, 
        box-shadow 300ms ease-out;
    -webkit-transition: color 300ms ease-out, background 300ms ease-out, border 300ms ease-out, opacity 300ms ease-out, box-shadow 300ms ease-out;
    -moz-transition: color 300ms ease-out, background 300ms ease-out, border 300ms ease-out, opacity 300ms ease-out, box-shadow 300ms ease-out;
    -o-transition: color 300ms ease-out, background 300ms ease-out, border 300ms ease-out, opacity 300ms ease-out, box-shadow 300ms ease-out;
}

/* ******* MOBILE ******* */

/* GENERAL */

/* HIDDENS */

@media only screen and (max-width: 767px) {
    .hidden-mobile {
        display: none !important;
    }
}

@media only screen and (min-width: 768px) and (max-width: 979px) {
    .hidden-tablet {
        display: none !important;
    }
}

@media only screen and (min-width: 980px) {
    .hidden-desktop {
        display: none !important;
    }
}


/* GENERAL */

.wrapper {
    width: 100%;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
}
main {
    background: #1F1E21;
    height: 100%;
}
.content {
    padding: 30px 20px;
    max-width:400px;
}
.content p {
    font-size: 1.7em;
    line-height: 1.25;
    text-align: left;
    margin-top: 20px;
    color: #fff;
}
.content p strong{
    font-weight: normal;
}

.notVisible {
    position: absolute;
    top: -9999px;
    left: -9999px;
}
.titulo {
    font-size: 1.6em;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: #fff;
    font-weight: bold;
    margin: 25px 0 20px;
}
.titulo:after{
    content: "";
    display: block;
    width: 40px;
    height: 1px;
    background: #fff;
    margin-top: 15px;
}
.video video {
    width: 100%
}
.subLista {
    list-style-type: circle;
    margin-top: 20px;
    list-style-position: inside;
    color: #fff;
}



/* HEADER */

#header {
    width: 100%;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 300;
    background: #1F1E21;
    border-bottom: 1px solid rgba(255,255,255,0.3);
}
#header .wrapper {
    padding: 0;
    max-width: none;
}
#header .top {
    height: 60px;
    overflow: hidden;
    text-align: justify;
    background: #1F1E21;
    position: relative;
    z-index: 5;
}
#header #logo {
    display: inline-block;
    vertical-align: middle;
    width: 30px;
    margin-left: 20px;
}
#header #logo a {
    display: block;
    width: 100%;
    height: 0;
    padding-bottom: 130.555555%;
    background: url(../images/logo.svg) no-repeat center;
    background-size: contain;
    text-indent: -1000000px;
}
#header #menuBt {
    display: inline-block;
    vertical-align: middle;
    width: 60px;
    height: 60px;
}
#header #menuBt:before, #header #menuBt:after {
    content: "";
    display: block;
    margin: 0 auto;
    width: 24px;
    height: 12px;
    border: solid #fff;
    border-width: 3px 0;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    transition: border 300ms ease-out;
    -webkit-transition: border 300ms ease-out;
    -moz-transition: border 300ms ease-out;
    -o-transition: border 300ms ease-out;
}
#header #menuBt:after {
    height: 9px;
    border-width: 0 0 3px;
}
#header #menuBt:hover:before, #header #menuBt:hover:after {
    border-color: #6f7072;
}
#header .top:after {
    content: "";
    display: inline-block;
    width: 100%;
}
.nav-scrollable {
    padding-top: 60px;
    width: 100%;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 3;
    max-height: 100%;
    overflow: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
}
.nav-scrollable .nav-viewport {
    position: relative;
    z-index: 2;
    display: none;
    background: #fff;
}
#nav #menu {
    border-bottom: 1px solid rgba(0,0,0,.15);
}
#nav #menu li {
    border-top: 1px solid rgba(0,0,0,.15);
}
#nav #menu li a {
    display: block;
    font-size: 1.4em;
    padding: 15px 23px;
    color: #6f7072;
    text-align: left;
    text-transform: uppercase;
    transition: color 550ms ease-out;
    -webkit-transition: color 550ms ease-out;
    -moz-transition: color 550ms ease-out;
    -o-transition: color 550ms ease-out;
}
#nav #menu li.active a,
#nav #menu li a:hover {
    color: #1f1e21;
}
#nav #menu li.active a{
    font-weight: bold;
}
#header .nav-overlay {
    display: block;
    width: 100%;
    height: 100%;
    position: fixed;
    left: -120%;
    top: 0;
    z-index: 0;
    background: #1f1e21;
    opacity: 0;
    transition: opacity 550ms ease-out, left 0ms linear 550ms;
    -webkit-transition: opacity 550ms ease-out, left 0ms linear 550ms;
    -moz-transition: opacity 550ms ease-out, left 0ms linear 550ms;
    -o-transition: opacity 550ms ease-out, left 0ms linear 550ms;
}
#header.openMenu .nav-overlay {
    left: 0;
    opacity: .8;
    transition: opacity 550ms ease-out, left 0ms linear 0ms;
    -webkit-transition: opacity 550ms ease-out, left 0ms linear 0ms;
    -moz-transition: opacity 550ms ease-out, left 0ms linear 0ms;
    -o-transition: opacity 550ms ease-out, left 0ms linear 0ms;
}


/* SLIDER */

.sliderContainer{
    position:relative;
}
.sliderContainer #slider li {
    background: no-repeat center;
    background-size: cover;
}
.sliderContainer #slider li:before {
    content: "";
    padding-bottom: 56.25%;
    height: 0;
    width: 100%;
    display: block;
}

.sliderContainer .bx-wrapper{
    position:relative;
}
.sliderContainer .bx-viewport{
    z-index:0;
}

.sliderContainer .bx-pager{
    display: none;
}
.sliderContainer .bx-controls-direction a:before {
    font-family: 'icomoon' !important;
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    /* Better Font Rendering =========== */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    content: "\e900";
}
.sliderContainer .bx-controls-direction a{
    display:block;
    width:20px;
    height:20px;
    font-size: 20px;
    position:absolute;
    left:10px;
    top:50%;
    margin-top:-10px;
    z-index:10;
    color:#fff;

    transform:rotate(90deg);
    -webkit-transform:rotate(90deg);
    -moz-transform:rotate(90deg);
    -o-transform:rotate(90deg);
}
.sliderContainer .bx-controls-direction a.bx-next {
    left:auto;
    right:10px;

    transform:rotate(-90deg);
    -webkit-transform:rotate(-90deg);
    -moz-transform:rotate(-90deg);
    -o-transform:rotate(-90deg);
}
.sliderContainer .bx-controls-direction a:hover{
    opacity:.5;
}


/* FOOTER */

#footer {
    text-align: left;
    background: #1F1E21;
    padding:20px 0 30px;
    border-top:1px solid #fff;
    margin:30px 20px 0;
}
#footer .logo {
    display: block;
    width: 80px;
    height: 85px;
    margin: 0 auto;
    background: url(../images/logo.svg) no-repeat center;
    background-size: contain;
    text-align: left;
    text-indent: -10000000px;
}
#footer .infoContacto {
    display: inline-block;
}

#footer p {
    font-size: 1.6em;
    color: #FFF
}
#footer a {
    color: #fff
}

/* VIDEO CONTROLS */

.video{
    position:relative;
}
.video video{
    display:block;
    position:relative;
    z-index:0;
}
.video video.pause{
    opacity:.8;
}
.video button{
    display:block;
    position:absolute;
    z-index:10;
    color:#fff;
}
.video button:hover{
    opacity:.5;
}
.video .play-btn{
    display:none;
    width:100px;
    left:50%;
    top:50%;
    margin:-50px 0 0 -40px;
    text-align: center;
}
.video .play-btn .icon{
    display:block;
    font-size:70px;
}
.video .play-btn .text{
    display:block;
    font-size:1.2em;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    margin-top:8px;
}

.video .vol-btn{
    display:block;
    position:absolute;
    right:10px;
    bottom:10px;
    color:#fff;
    font-size:50px;
}
.video .vol-btn.off:before{
    content:"\e903";
}



/* ********************** de Mobile a TABLET ********************** */

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


    body{
        padding-top:100px;
    }


    /* HEADER */

    #header #menuBt,
    #header .top:after{
        display:none;
    }

    #header,
    #header .top:before{
        height:100px;
        overflow:hidden;
    }
    #header .top{
        height:auto;
        display:inline-block;
        vertical-align: middle;
    }
    #header .top:before{
        content:"";
        display:inline-block;
        vertical-align: middle;
    }
    #header #logo{
        width:50px;
        margin:0;
    }

    #header .wrapper{
        text-align: justify;
        padding:0 30px 0 20px;
    }
    #header .wrapper:after{
        content:"";
        display:inline-block;
        width:100%;
    }


    /* MENU */

    .nav-scrollable,
    #nav #menu li {
        width:auto;
        display:inline-block;
        vertical-align: middle;
    }

    .nav-scrollable {
        margin:0;
        padding:0;
        position:relative;
    }
    .nav-scrollable .nav-viewport {
        display: inline-block !important;
        background: transparent;
    }
    #nav #menu {
        border-bottom: none;
    }
    #nav #menu li {
        margin-left:20px;
        border-top: none;
    }
    #nav #menu li a {
        font-size: 1.3em;
        padding: 5px 0px;
        color: #fff;
        font-weight: bold;
        letter-spacing: 0.20em;
    }
    #nav #menu li.active a, #nav #menu li a:hover {
        color: #6F7072;
        font-weight: bold;
    }


    /* GENERAL */

    .content {
        padding: 50px 40px;
        max-width:450px;
    }
    .mobile-wrapper{
        padding-left:40px;
        padding:40px 40px 0;
    }


    /* FOOTER */

    #footer{
        margin-top:40px;
        padding-top:25px;
    }


    /* VIDEO CONTROLS */

    .video .play-btn{
        display: none;
        width:130px;
        margin:-65px 0 0 -57px;
    }
    .video .play-btn .icon{
        font-size:90px;
    }
    .video .play-btn .text{
        font-size:1.7em;
    }

    .video .vol-btn{
        right:30px;
        bottom:45px;
        font-size:55px;
    }


    /* SLIDERS */


    .sliderContainer .bx-controls-direction a{
        width:40px;
        height:40px;
        font-size:40px;
        left:20px;
        margin-top:-20px;
    }
    .sliderContainer .bx-controls-direction a.bx-next {
        right:20px;
    }




}

/* ********************** de Tablet a DESKTOP ********************** */

@media only screen and (min-width: 980px) {

    /* GENERAL */

    html,
    body {
        width: 100%;
        height: 100%;
        overflow: hidden;
        padding-top:0;
    }


    /* ANIMATIONS */

    .animated{
        visibility: hidden;
    }
    .animated.show{
        visibility: visible;
    }
    .animated.delay1{
        animation-delay: 200ms;
        -webkit-animation-delay: 200ms;
        -moz-animation-delay: 200ms;
        -o-animation-delay: 200ms;
    }
    .animated.delay2{
        animation-delay: 400ms;
        -webkit-animation-delay: 400ms;
        -moz-animation-delay: 400ms;
        -o-animation-delay: 400ms;
    }
    .animated.delay3{
        animation-delay: 600ms;
        -webkit-animation-delay: 600ms;
        -moz-animation-delay: 600ms;
        -o-animation-delay: 600ms;
    }
    .animated.delay4{
        animation-delay: 800ms;
        -webkit-animation-delay: 800ms;
        -moz-animation-delay: 800ms;
        -o-animation-delay: 800ms;
    }
    .animated.delay5{
        animation-delay: 1000ms;
        -webkit-animation-delay: 1000ms;
        -moz-animation-delay: 1000ms;
        -o-animation-delay: 1000ms;
    }


    /* HEADER */

    #header {
        width: 260px;
        height: 100%;
        position: fixed;
        z-index: 9999;
        background: rgba(31,30,33,0.95);
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        border:none;
    }

    #header .wrapper {
        width: 260px;
        padding: 70px 45px 170px 70px;
        position: relative;
        height: 100%;
        min-height: 600px;
    }

    #header .top {
        width:100%;
        height: auto;
        background: transparent;
        transition-delay: 0ms;
    }
    #header .top:before{
        display:none;
    }
    #header #logo {
        width: 100px;
    }

    .nav-scrollable {
        margin-top:70px;
        overflow:visible !important;
    }
    #nav #menu li {
        margin:0;
        display:block;
    }
    #nav #menu li a {
        font-size: 1.5em;
        padding: 5px 0px;
        color: #fff;
        font-weight: bold;
        letter-spacing: 0.20em;
    }
    #nav #menu li.active a, #nav #menu li a:hover {
        color: #6F7072;
        font-weight: bold;
    }


    /* HEADER FOOTER */

    .navFooter {
        display:block;
        position: absolute;
        left:80px;
        right:45px;
        bottom: 50px;
        color: #fff;
        font-size: 1.3em;
    }
    .navFooter ul {
        border-top:1px solid #fff;
        padding-top:20px;
    }
    .navFooter p{
        white-space:nowrap;
    }
    .navFooter a {
        color: #fff;
        opacity: .8;
    }
    .navFooter a:hover {
        opacity: 1
    }

    /* VIDEO */
    .art {
        height: 100%;
    }
    .art .video {
        height: 100%
    }
    .art .video video {
        height: 100%;
        position: fixed;
        right: 0;
        bottom: 0;
        min-width: 100%;
        min-height: 100%;
        width: auto;
        height: auto;
        z-index: 2;
    }
    /* CONTENT */

    .content {
        width: 280px;
        position: absolute;
        z-index: 9999;
        top: 95px;
        right:80px;
        bottom: 95px;
        height: auto;
        padding-right:20px;
        padding-bottom: 70px;
        background: rgba(31,30,33,0.95);
        box-sizing: border-box;
    }
    .content .scroll {
        height: 100%;
        overflow-x: hidden;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }

    .content:after {
        content:"";
        display:block;
        width:40px;
        height:1px;
        background:#fff;
        position:absolute;
        left:40px;
        bottom:50px;
    }

    /* DECORACION BORDER */

    .content .decoracion {
        background: rgba(31,30,33,0.95);
        position: absolute;
        right: -30px;
        top: 30px;
        bottom: 30px;
        width: 30px;
    }
    .content .decoracion:before {
        content: "";
        position: absolute;
        border-top: 15px solid transparent;
        border-bottom: 15px solid rgba(31,30,33,0.95);
        border-left: 15px solid rgba(31,30,33,0.95);
        border-right: 15px solid transparent;
        width: 30px;
        top: -30px;
        height: 30px;
        box-sizing: border-box;
    }
    .content .decoracion:after {
        content: "";
        position: absolute;
        border-bottom: 15px solid transparent;
        border-top: 15px solid rgba(31,30,33,0.95);
        border-left: 15px solid rgba(31,30,33,0.95);
        border-right: 15px solid transparent;
        width: 30px;
        bottom: -30px;
        height: 30px;
        box-sizing: border-box;
    }

    /* SLIDER */

    .bx-controls-direction{
        display: none !important;
    }


    /* VIDEO CONTROLS */

    .video .play-btn{
        margin-left:73px;
    }


    /* SCROLLBARS */
    
    .content.scrollbar{
        padding-right:0 !important;
        padding-top:70px;
    }
    .content.scrollbar .titulo{
        margin-top:0;
    }
    

    .mCSB_scrollTools{
        opacity:1 !important;
    }
    .mCS-rounded-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar{
        background:url(../images/scrollbar.svg) no-repeat center !important;
        opacity:1 !important;
    }
    .mCS-rounded-dark.mCSB_scrollTools .mCSB_draggerRail{
        background:#fff !important;
        opacity:0.7 !important;
        width:1px;
    }
    .mCS-rounded-dark.mCSB_scrollTools .mCSB_draggerRail{
        transition:opacity .2s ease-in-out, background-color .2s ease-in-out;
        -webkit-transition:opacity .2s ease-in-out, background-color .2s ease-in-out;
        -moz-transition:opacity .2s ease-in-out, background-color .2s ease-in-out;
        -o-transition:opacity .2s ease-in-out, background-color .2s ease-in-out;
    }
    .mCS-rounded-dark.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar{
        opacity:0.9 !important;
    }
    .mCS-rounded-dark.mCSB_scrollTools:hover .mCSB_dragger + .mCSB_draggerRail{
        opacity:.6;
    }


}
