.banner-container{
    position: relative;
    width: 100%;
}

.banner-content{
    width: 100%;
    position: absolute;
    bottom: 5rem;
}

.banner-title{
    font-size: 9.5vw;
    line-height: 1.25em;
    width: 100%;
    padding: 0 10%;
    font-weight: normal;
    color: white;
    position: relative;
}

.banner-title > strong{
    font-size: 12vw;
}

.banner-title::after{
    content: '';
    position: absolute;
    top: 90%;
    left: 0;
    aspect-ratio: 2/1;
    height: 5.5rem;
    background-image: url('/res/img/common/Fecha-Blanca.svg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    transform: scaleX(-1);
}

.section-container{
    width: 100%;
}

.subsection-container{
    width: 100%;
    padding: 2rem 7.5%;
    display: flex;
    flex-direction: column;
}

.subsection-content{
    width: 100%;
    padding: 3rem 2.5%;
}

.subsection-title{
    font-size: 1.15rem;
    font-weight: normal;
    text-transform: uppercase;
    line-height: 1.4em;
    color: var(--primary-color);
    margin: 0;
}

hr{
    width: 3.5rem;
    border: 0.2rem solid var(--primary-color);
    margin: 1.25rem 0;
}

.subsection-p{
    font-size: 0.85rem;
    line-height: 1.5em;
    margin: 0;
}

.section-grid{
    display: grid;
    width: 100%;
    padding: 0 19% 5rem;
    gap: 1rem;
}

.g3-2,
.g2-2{
    grid-template-columns: repeat(1, 1fr);
}

.section-item{
    width: 100%;
}

.item-title{
    font-size: 1.05rem;
    color: var(--primary-color);
    margin: 2rem 0 0.5rem;
    position: relative;
}

.item-title::after{
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: -10vw;
    height: 2rem;
    aspect-ratio: 2/3;
    background-color: var(--primary-color);
    clip-path: polygon(0 0, 0% 100%, 100% 50%);
    transition: transform 0.5s ease;
}

.item-title:hover::after{
    transform: translateY(-50%) translateX(calc(5vw - 1rem));
}

.item-p{
    font-size: 0.9rem;
    margin: 0;
}

.section-img-container{
    width: 100%;
    position: relative;
}

.section-img-title{
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 100%;
    text-align: center;
    padding: 0 7.5%;
    font-size: 1.20rem;
    line-height: 1.5em;
    color: white;
    margin: 0;
}


@media (width >= 1024px) {
    .logo-pc{
        content: url('/res/img/common/Logo-Blanco.svg');
    }

    .banner-content {
        bottom: 10vw;
    }

    .banner-title {
        font-size: 4vw;
        width: 100%;
        padding: 0 15% 0 5%;
        margin: 0;
    }

    .banner-title > strong{
        font-size: 5vw;
    }

    .banner-title::after {
        height: 12vw;
        top: 75%;
        aspect-ratio: 10 / 6;
    }
    
    .subsection-container{
        padding: 5rem 10%;
        flex-direction: row;
        align-items: center;
    }

    .reverse{
        flex-flow: row-reverse;
    }
    
    .subsection-content{
        width: 50%;
        padding: 2rem 10% 2rem 0;
    }

    .reverse > .subsection-content{
        padding: 2rem 0 2rem 10%;
    }
    
    .subsection-title{
        font-size: 1.55rem;
    }
    
    hr{
        width: 4.5rem;
        border: 0.3rem solid var(--primary-color);
        margin: 0.75rem 0 1.75rem;
    }
    
    .subsection-p{
        font-size: 1.15rem;
    }

    .subsection-img{
        width: 50%;
    }
    
    .section-grid{
        padding: 0 10% 8rem;
        gap: 3rem 10vw;
    }
    
    .g3-2{
        grid-template-columns: repeat(3, 1fr);
    }

    .g2-2{
        grid-template-columns: repeat(2, 1fr);
    }
    
    .section-item{
        width: 100%;
    }

    .item-title{
        font-size: 1.25rem;
        margin: 3rem 0 0.75rem;
    }

    .item-title::after{
        left: -4vw;
        height: 2.5rem;
    }

    .item-title:hover::after{
        transform: translateY(-50%) translateX(calc(3vw - 1.5rem));
    }

    .item-p{
        font-size: 1.05rem;
    }
    
    .section-img-title{
        padding: 0 15%;
        font-size: 1.5rem;
    }
}