/* ==========================================================
   IURIS THEME
   HEADER
   Versión 1.1
   ========================================================== */


/* ==========================================================
   TOPBAR
   ========================================================== */

.iuris-topbar{

    background:var(--iuris-primary);

    border-bottom:1px solid rgba(255,255,255,.08);

}


/* ==========================================================
   CABECERA
   ========================================================== */

.iuris-header{

    background:var(--iuris-white);

    border-bottom:1px solid var(--iuris-light-3);

    transition:
        background .30s ease,
        box-shadow .30s ease,
        border-color .30s ease;
    position:relative;
	z-index:var(--z-header);
}


/* ==========================================================
   LOGO
   ========================================================== */

.iuris-header-logo img{

    transform:scale(1.02);

}


/* ==========================================================
   MENÚ
   ========================================================== */

.iuris-menu{

    font-weight:600;

}


/* ==========================================================
   BOTÓN CTA
   ========================================================== */

.iuris-btn-primary{

    transition:
        background .25s ease,
        transform .25s ease,
        box-shadow .25s ease;

}

.iuris-btn-primary:hover{

    transform:translateY(-2px);

}


/* ==========================================================
   STICKY (Preparado)
   ========================================================== */

body.admin-bar .iuris-header{

    top:32px;

}


/* ==========================================================
   RESPONSIVE
   ========================================================== */

@media (max-width:1024px){

    .iuris-btn-primary{

        width:100%;

    }

}