.container {
    display: flex;
    width: calc(100% - 8rem);
    position: relative;
    margin: auto;
    /* margin-bottom: 4rem; */
    max-height: 100vh;
}

#customPageTitle {
    display: none;
}
.container img {
    width: fit-content;
    height: 780px;
    object-fit: contain;
}

.centeredContent.customPageCenteredContent.font1 {
    margin: 0px;
}

.textContainer2 img {
    width: auto;
    margin-bottom: 30px;
}

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

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

.textContainer,
.textContainer2 {
    width: 30%;
    padding: 13rem 3%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    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: 90px 26% 90px 5%;
    justify-content: space-between;
    width: 40%;
    display: flex;
}

.textContainer2 p {
    width: 100%;
}

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: 20px;
        width: 100%;
        max-height: unset;
    }

    h2 {
        margin: 20px 0;
        font-size: 50px;
        line-height: 60px;
    }

    h2,
    .textContainer p,
    .textContainer2 p {
        width: 100%;
        margin: 0px;
        margin-bottom: 30px;
    }

    .customFlecha {
        display: none;
    }
    .container img {
    width: 100%;
    height: auto;
}

.textContainer2 img {
    width: 70%;
}

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

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

    .textContainer2 {
        grid-row: 3/4;
        gap: 20px;
        width: 92%;
        margin: auto;
    }

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

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

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

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