header {
    width: 100%;
    max-width: 100%;
    height: 72px;
    background-color: rgb(255, 255, 255);
    position: relative;
    padding: 0 3rem;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    z-index: 200;
    position: fixed;
    top: 0;
}

header .headerColsubsidio img {
       width: 194px;
    position: absolute;
    left: 30px;
    /* top: 11px; */
    top: 50%;
    -ms-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    text-align: center;
}

header .headerColsubsidio img.logo-cet {
    width: 340px;
}

header .twoHeaderColumn {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
}

header .headerColsubsidio.twoHeaderColumn .logo_120 {
    width: 120px;
}

header .headerBtn .btnHeader {
    width: 100%;
    max-width: fit-content;
    height: 48px;
    background-color: var(--jvm-background-secondary);
    border: 1px solid var(--jvm-background-secondary);
    border-radius: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 600 !important;
    font-size: 1.125rem;
    letter-spacing: -0.25px;
    color: var(--jvm-color-text-white);
    padding: 0 2rem;
}

header .headerBtn .btnHeader:is(:hover, :active, :focus) {
    background-color: var(--background-color-blue-dark);
    border: 1px solid var(--background-color-blue-dark);
    color: var(--jvm-color-text-white);
}

@media screen and (max-width: 768px) {
    header {
        padding: 0 1rem;
    }

    header .headerColsubsidio img {
        width: 150px;
    }

    header .headerColsubsidio img {
        width: 125px;
        max-width: 125px;
    }

    header .headerColsubsidio.twoHeaderColumn .logo_120 {
        width: 80px;
        max-width: 80px;
    }
}