.template-1__header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 800;
    padding: 50px 22px 30px 22px;  
    background: var(--white_01);
    /* backdrop-filter: blur(5px); */
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    flex: 1 0 0;
}

.bg-internas{
    backdrop-filter: none;
    background: linear-gradient(0deg, rgba(88, 6, 9, 0.38) 0%, rgba(88, 6, 9, 0.38) 100%),  url('../../../images/headers/nav_movil.png');
    /* background: url('../../../images/headers/nav_movil.png'); */
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.template-1__header .title-event{
    max-width: 240px;
    height: 72px;
    display: flex;
    justify-content: center;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-family: var(--font-primary);
    font-size: var(--font-lg);
    font-style: normal;
    font-weight: 400;
    line-height: 36px; 
}

.template-1__header .title-event img{
    width: 265px;
    height: auto;
}

.template-1__header.bg-internas .title-event img{
    width: fit-content;
    height: auto;
}

.template-1__header > .info-event{
    display: none;
}

.template-1__header .navbar-desktop{
    display: none;
    flex: 1;
}

@media (min-width: 500px) {

    .bg-internas {
        /* background: url('../../../images/headers/nav_tablet.png'); */
        background: linear-gradient(0deg, rgba(88, 6, 9, 0.38) 0%, rgba(88, 6, 9, 0.38) 100%),  url('../../../images/headers/nav_tablet.png');
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center;
    }

    .template-1__header .title-event{
        height: 100px;
        font-size: var(--font-md);
    }


    .template-1__header .title-event img{
        width: fit-content;
    }

    .template-1__header.bg-internas .title-event img{
        width: fit-content;
    }

    
}

@media (min-width: 768px) {
    .template-1__header {
        padding: 30px 40px;
    }

    .template-1__header .title-event{
        max-width: 340px;
    }

    .template-1__header .title-event img{
        width: 340px;
    }

    .template-1__header.bg-internas .title-event img{
        width: 240px;
    }

}

@media (min-width: 992px) {
    
    .bg-internas {
        background: linear-gradient(0deg, rgba(88, 6, 9, 0.38) 0%, rgba(88, 6, 9, 0.38) 100%),  url('../../../images/headers/nav_desktop.png');
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center;
    }

}

@media (min-width: 1340px) {

    .template-1__header > .info-event{
        display: flex;
    }

    .template-1__header .navbar-desktop{
        display: block;
    }

}

@media (min-width: 1540px) {
    .template-1__header {
        padding: 30px 80px;
    }
}