.container {
    display: flex;
    flex-wrap: wrap;
    position: relative;
}

#customPageTitle {
    display: none;
}

.customFlecha {
    position: absolute;
    top: 58px;
    left: 0;
    width: 80px;
    height: 500px;
}

h2 {
    font-size: 3.4rem;
    font-weight: 600;
    text-transform: capitalize;
    margin: 40px 0;
    line-height: 4rem;
    text-align: left;
    width: 75%;
}

.textContainer,
.textContainer2 {
    width: 44%;
    padding: 13rem 3%;
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 18px;
}

.textContainer p,
.textContainer2 p {
    width: 75%;
}

.imgContainer1,
.imgContainer2 {
    width: 50%;
    aspect-ratio: 1/1;
}

figure img {
    width: 100%;
    object-fit: cover;
    height: 100%;
}


.textContainer2 {
    padding: 18rem 3%;
}

.textContainer2 p {
    width: 60%;
}

h3 {
    font-size: 2.1rem;
    font-weight: 500;
    width: 60%;
    line-height: 25px;
    margin-top: 60px;
}

@media screen and (max-width: 1100px) {

    .container {
        display: grid;
        grid-template-columns: 1fr;
        /* grid-template-rows: 1fr 1fr 0.5fr 1fr; */
        grid-template-rows: repeat(4, 0.5fr);
        gap: 40px;
    }

    h2 {
        margin: 20px 0;
    }

    h2,
    .textContainer p,
    .textContainer2 p {
        width: 90%;
    }

    .customFlecha {
        display: none;
    }

    .textContainer,
    .textContainer2 {
        width: 100%;
        padding: unset;
    }

    .textContainer {
        grid-row: 1/2;
    }

    .textContainer2 {
        grid-row: 3/4;
        gap: 20px;
    }

    .imgContainer1,
    .imgContainer2 {
        width: 100%;
    }

    .imgContainer1 {
        grid-row: 2/3;
    }

    .imgContainer2 {
        grid-row: 4/5;
    }

    h3 {
        width: 90%;
        margin-top: 20px;
        text-align: left;
    }
}