#widthContainer{
    position: relative;
    width: 90%;
    height: auto;
    margin: 0 auto;
    color: black;
    margin-left: 7%;
    margin-top: 35px;
    /* margin-top: 120px; */
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
}

.textContainer{
    position: relative;
    width: 40%;
    float: left;
}

.imagesContainerDesktop{
    position: relative;
    width: 57%;
    float: right;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    height: 1000px;
}

.imagesContainerMobile{
    display: none;
}

.tituloPoliticas{
    font-family: 'Gopher';
    font-size: 36px;
    width: 70%;
    margin-top: 7%;
    font-weight: 800;
    text-transform: uppercase;
    line-height: 45px;
}

.textoPoliticas{
    width: 93%;
    margin-top: 30px;
    font-size: 17px;
    line-height: 22px;
}
.imagesContainer{

}
.imagenPoliticas{
    height: fit-content;
}
.img1{
    top: 0px;
    position: relative;
    width: 43vh;
}
.img2{
    top: 210px;
    position: relative;
    width: 53vh;
}

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

    #widthContainer{
        display: flex;
        margin-left: 5%;
        flex-direction: column;
        width: 95%;
        margin-top: 0px;
    }

    .textContainer{
        width: 97%;
    }

    .imagesContainerMobile{
        width: 100%;
        height: -webkit-fit-content;
        display: flex !important;
        position: relative;
        float: right;
        flex-direction: row;
        justify-content: space-between;margin-bottom: 50px;
    }
    .imagesContainerDesktop{
        display: none;
    }

    .tituloPoliticas{
        width: 100%;
    }

    .imagenPoliticas{height: auto;}
    .img1{
        width: 26vh;
    }
    .img2{
        top: 60px;
        width: 25vh;
        right: 0px;
    }
    .textoPoliticas{
        font-size: 15px;
    }

}