.template-1 section:last-child{
    margin-bottom: 80px;
}

.template-1 .section-home{
    width:100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    /* justify-content: center; */
    align-items: center;
    padding: var(--vertical-separator) var(--side-separator);
    position: relative;
    background: linear-gradient(0deg, rgba(109, 167, 185, 0.70) 0%, rgba(109, 167, 185, 0.70) 100%), var(--bg-mobile);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    padding-top: 152px;
}


.template-1 .section-home .home-info{
    width: 100%;
    min-height: 660px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center; 
    gap: 32px;
    flex: 1 0 0; /* No se porque seguramente quitar*/
}

.template-1 .section-home .home-info > div{
    width: fit-content;
}

.home-info .to-desktop{
    display: none;
}

.home-info .to-responsive{
    display: block;
}

.template-1 .section-home .home-info .text-info-event{
    text-align: left;
}
.template-1 .section-home .home-info .text-info-event span{
    color: var(--white_01);
    font-family: var(--font-primary);
    font-size: var(--font-base);
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
}

@media (min-width: 500px) {

    .template-1 .section-home{
        background: linear-gradient(0deg, rgba(109, 167, 185, 0.70) 0%, rgba(109, 167, 185, 0.70) 100%), var(--bg-tablet);
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center;
    }

    .template-1 .section-home .home-info{
        width: 420px;
        max-width: 420px;
    }

    .template-1 .section-home .home-info .text-info-event span{
        line-height: 24px;
    }

}

@media (min-width: 768px) {


    .template-1 .section-home{
        padding: var(--vertical-separator) 207px 0 207px;
        align-items: center;
    }

}

@media (min-width: 992px) {

    .template-1 .section-home .home-info{
        width: 644px;
        max-width: 644px;
    }

    .template-1 .section-home{
        padding: var(--vertical-separator) var(--side-separator) 0 var(--side-separator);
        align-items: center;
        background: var(--bg-desktop);
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center;
    }

    .template-1 .section-home .home-info{
        height: auto;
    }

}

@media (min-width: 1240px) {

    .template-1 .section-home .home-info .info-event{
        display: none;
    }

    .home-info .to-desktop{
        display: block;
    }

    .home-info .to-responsive{
        display: none;
    }

}