.template-1__header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 800;
    padding: 50px 22px 30px 22px;  
    /* background: var(--white_01); */
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(3.4000000953674316px);
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    flex: 1 0 0;
}

.bg-internas{
    backdrop-filter: none;
    background: linear-gradient(90deg, rgba(84, 175, 196, 0.70) 0%, rgba(123, 195, 210, 0.70) 100%), url('../../../images/headers/nav_movil.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}


.template-1__header .title-event{
    width: 240px;
    height: 72px;
    /* border: 1px solid #fff; */
    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 > .info-event{
    display: none;
}

.template-1__header .navbar-desktop{
    display: none;
    flex: 1;
}

@media (min-width: 500px) {

    .bg-internas {
        background: linear-gradient(90deg, rgba(84, 175, 196, 0.70) 0%, rgba(123, 195, 210, 0.70) 100%), url('../../../images/headers/nav_tablet.png');
        
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center;
    }

    .template-1__header.bg-internas .title-event{
        /* width: 340px; */
        width: 205px;
        height: 100px;
        font-size: var(--font-md);
    }

    .template-1__header.bg-internas .title-event{
        width: 340px;
        height: 100px;
        font-size: var(--font-md);
    }
    
}

@media (min-width: 768px) {
    .template-1__header {
        padding: 30px 80px;
    }
}

@media (min-width: 992px) {
    
    .bg-internas {
        /* background: linear-gradient(90deg, rgba(84, 175, 196, 0.70) 0%, rgba(123, 195, 210, 0.70) 100%); */
        /* backdrop-filter: blur(3.9000000953674316px); */
        background: linear-gradient(90deg, rgba(84, 175, 196, 0.70) 0%, rgba(123, 195, 210, 0.70) 100%), url('../../../images/headers/nav_desktop.png') 0% 0% / 100px 100px repeat;
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center;
    }

}

@media (min-width: 1240px) {

    .template-1__header > .info-event{
        display: flex;
    }

    .template-1__header .navbar-desktop{
        display: block;
    }


}