/* ******************************************** */
/** COMPONENTS: HEADER
/* ******************************************** */

/* HEADER */

.c-header,
.c-header__holder{
    width: 100%;
    height: var(--header);
    z-index: 200;
}
.c-header{
    display: flex;
    align-items: center;
}
.c-header__holder{
    height: var(--header);
}
.c-header__wrapper{
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.c-header__brand{
    width: 200px;
    position: relative;
    z-index: 10;
}
.c-header__brand-link,
.c-header__logo{
    display: block;
    width: 100%;
    height: auto;
}

.c-header__limit{
    width: 2px;
    height: 10px;
    left: -2px;
    position: absolute;
    top: var(--header);
    pointer-events: none;
}


/* Not Desktop */


@media (max-width: 979px){

    .c-header__btn-bar,
    .c-header__btn-bar:before,
    .c-header__btn-bar:after{
        display: block;
        width: 18px;
        height: 2px;
        background-color: var(--color-darkest);
        position: absolute;
        left: 50%;
        top: 50%;
        margin-top: -1px;
        margin-left: -9px;
        -webkit-transform: rotate(0) rotateZ(0);
        -moz-transform: rotate(0) rotateZ(0);
        transform: rotate(0) rotateZ(0);
    }
    .c-header__btn-bar:before,
    .c-header__btn-bar:after{
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        margin: 0;
        -webkit-transform: translate3d(0, -250%, 0) rotate(0);
        -moz-transform: translate3d(0, -250%, 0) rotate(0);
        transform: translate3d(0, -250%, 0) rotate(0);
    }
    .c-header__btn-bar:after{
        -webkit-transform: translate3d(0, 250%, 0) rotate(0);
        -moz-transform: translate3d(0, 250%, 0) rotate(0);
        transform: translate3d(0, 250%, 0) rotate(0);
    }


    /* Nav */

    .c-nav{
        display: none;
    }

}


@media (max-width: 979px){

    /* Nav */

    .c-nav{
        display: none;
    }
}

/* ********************** de Mobile a TABLET ********************** */

@media (min-width: 768px) {


}

/* ********************** de Tablet a DESKTOP ********************** */

@media (min-width: 980px) {

    /* NAV */

    .c-nav{
        display: block !important;
        font-size: 1.5rem;
        font-weight: 400;
        position: relative;
    }

    .c-nav__item{
        display: inline-block;
        vertical-align: middle;
    }

    .c-nav__item:not(:first-child){
        margin-left: 3em;
    }

    .c-nav__link{
        font-size: inherit;
        color: var(--color-primary);
    }


}




/* ********************** de Desktop a DESKTOP 2 ********************** */

@media (min-width: 1200px) {


}
@media (min-width: 1200px) and (min-height: 790px){
}




/* ********************** de Desktop 2 a HD ********************** */

@media (min-width: 1400px) {
    
    .c-header__brand{
        width: 380px;
    }

    /* NAV */

    .c-nav{
        font-size: 1.9rem;
    }


}
@media (min-width: 1400px) and (min-height: 790px){

}

/* ********************** de Desktop 2 a HD ********************** */

@media (min-width: 1600px) {


}