﻿body {
}
.sticky {
    position:fixed;
    top: 0px;
    animation: cabecera-sticky 0.4s;
}
@keyframes cabecera-sticky{
    from{
        opacity:0;
        top:-100px;
    }
    to{
        opacity:1;
        top:0px;
    }
}


/* --------  Cambiando especificaciones defs cabecera  ---------*/
.sticky .ctroCabecera {
    height: 60px;
    display: grid;
    grid-gap: 10px;
    row-gap:0px;
    grid-template-rows: 60px 40px;
    grid-template-columns: auto auto 1fr 1fr;
    align-items: center;
}
.sticky .ctroCabecera .logo > a > img {
    height: 50px;
    padding: 0px 0px;
}
.sticky .ctroCabecera .nombrePrinc > a > h1 {
    font-size: 15px;
    font-weight: 900;
    text-transform: uppercase;
    font-family: Arial;
    line-height: 100%;
    color: #093039;
}

.sticky .ctroCabecera .nombrePrinc > a > p {
    font-size: 13px;
    font-family: Arial;
    font-style: oblique;
    color: #ffffff;
}
.sticky .ctroCabecera .menu {
    background-color: rgba(75,76,74,0.1);
    box-shadow: 0px 2px 4px 0px rgba(0,0,0,0.45);
    -webkit-box-shadow: 0px 2px 4px 0px rgba(0,0,0,0.45);
    -moz-box-shadow: 0px 2px 4px 0px rgba(0,0,0,0.45);
}

.stickyCuerpo {
    -webkit-transition: all 0.5s 0s ease;
    -moz-transition: all 0.5s 0s ease;
    -o-transition: all 0.5s 0s ease;
    transition: all 0.5s 0s ease;
}
    .stickyCuerpo .ctroCuerpo {
        margin: 80px auto;
        -webkit-transition: all 0.5s 0s ease;
        -moz-transition: all 0.5s 0s ease;
        -o-transition: all 0.5s 0s ease;
        transition: all 0.5s 0s ease;
    }
