.cover-full-width-image-text {
    margin-left: calc(-56vw + 50%);
    height: 55vh;
    margin-right: calc(-56vw + 50%);
    background-size: cover;
    background-color: black;
    background-repeat: no-repeat;
    background-position: top center;
    
}

.cover-full-width-image-text {
    position: relative;
    /* Necesario para que el ::before se posicione bien */
    overflow: hidden;
    /* Opcional si querés evitar desbordes */
}

.cover-full-width-image-text::before {
    content: "";
    position: absolute;
    inset: 0;
    /* top:0; right:0; bottom:0; left:0; en shorthand */
    background-color: #276C91;
    opacity: 0.5;
    /* Ajustá la opacidad a tu gusto */
    z-index: 1;
}

.cover-full-width-image-text .contenido-texto {
    position: relative;
    /* Para que quede encima del overlay */
    z-index: 2;

    margin-left: auto;
    margin-right: auto;
    max-width: 1200px;
    height: 100%;
    display: flex;
    align-items: center;

}

.cover-full-width-image-text .contenido-texto p {
    max-width: 599px;
    line-height: 52px;
    font-size: 42px;
    color: #fff;
    font-family: "freight-sans-pro", sans-serif !important;
    font-style: italic;

}
@media screen and (max-width: 1299px) {
    .cover-full-width-image-text {
        margin-left: -20px !important;
    }
}
@media (min-width: 1024px) and (max-width: 2299px) {
  .cover-full-width-image-text .contenido-texto{
    padding: 40px;
  }
}
@media screen and (max-width:1024px) {
.cover-full-width-image-text .contenido-texto {
    position: absolute;
    left: 50%;
    transform: translate(-50%);
    width: 500px;
    z-index: 2;
    margin-left: auto;
    margin-right: auto;
    max-width: 1200px;
    height: 100%;
    display: flex;
    align-items: center;
}
.cover-full-width-image-text .contenido-texto p {
    max-width: 599px;
    line-height: 54px;
    font-size: 42px;
    color: #fff;
    font-family: "freight-sans-pro", sans-serif !important;
    font-style: italic;
}
}
@media screen and (max-width:768px) {
    .cover-full-width-image-text {
        height: 0;
        padding-bottom: calc(418 / 393 * 100%);
        background-position-x: center;
    }
}


@media screen and (max-width:500px) {
    .cover-full-width-image-text .contenido-texto {
    position: absolute;
    left: 50%;
    transform: translate(-50%);
    width: 280px;
    z-index: 2;
    margin-left: auto;
    margin-right: auto;
    max-width: 1200px;
    height: 100%;
    display: flex;
    align-items: center;
}
.cover-full-width-image-text .contenido-texto p {
    max-width: 599px;
    line-height: 34px;
    font-size: 24px;
 
}
}