.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: var(--bg-mobile) lightgray 0% 0% / 100px 100px repeat;
    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: 100%;
}

.template-1 .section-home .home-info .text-info-event{
    text-align: left;
}
.template-1 .section-home .home-info .text-info-event span{
    color: var(--color_1);
    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: var(--bg-tablet) lightgray 0% 0% / 100px 100px repeat;
        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: flex-start;
    }

}

@media (min-width: 992px) {

    .template-1 .section-home{
        padding: var(--vertical-separator) var(--side-separator) 0 var(--side-separator);
        align-items: flex-start;
        background: var(--bg-desktop) lightgray 0% 0% / 100px 100px repeat;
        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;
    }

}