.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: linear-gradient(0deg, rgba(69, 171, 222, 0.70) 0%, rgba(69, 171, 222, 0.70) 100%), 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: linear-gradient(0deg, rgba(69, 171, 222, 0.70) 0%, rgba(69, 171, 222, 0.70) 100%), var(--bg-tablet) lightgray 0% 0% / 100px 100px repeat; */
        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: 680px) {

    .template-1 .section-home .home-info{
        width: 680px;
        max-width: 680px;
        align-items: flex-end;
    }

    .template-1 .section-home .home-info .text-info-event{
        width: 431px;
    }

}

@media (min-width: 768px) {

    .template-1 .section-home{
        /* padding: var(--vertical-separator) 207px 0 207px; */
        padding: var(--vertical-separator) 80px 0 80px;
        align-items: flex-end;
    }

}

@media (min-width: 992px) {

    .template-1 .section-home{
        padding: var(--vertical-separator) var(--side-separator) 0 var(--side-separator);
        align-items: flex-end;
        background: var(--bg-desktop) lightgray 0% 0% / 100px 100px repeat;
        /* background-size: cover; */
        background-size: 100vw 100vh;
        background-repeat: no-repeat;
        background-position: center;
    }

}

@media (min-width: 1340px) {

     .template-1 .section-home{
        align-items: center;
    }

    .template-1 .section-home .home-info{
        height: auto;
        flex-direction: row;
        justify-content: space-around;
        align-items: center;
        width: 100%;
        max-width: 1280px;
    }

    .template-1 .section-home .home-info .text-info-event{
        width: 600px;
    }

    .template-1 .section-home .home-info .info-event{
        display: none;
    }

}