  .prediTitles{
        font-family: "Montserrat", sans-serif;
        font-optical-sizing: auto;
        font-weight: 800;
        font-style: normal;
        font-size:52px;
        line-height:53px;
        /*color:white;*/
        position: relative;
      }

      .prediSubtitles{
        font-family: "Montserrat", sans-serif;
        font-optical-sizing: auto;
        font-weight: 600;
        font-style: normal;
        font-size:17px;
        line-height:26px;
      }
      
      .prediTexto{
        display:flex;
        font-family: "Montserrat", sans-serif;
        font-optical-sizing: auto;
        font-weight: 400;
        font-style: normal;
        font-size:17px;
        line-height:24px;
        text-align:justify;
        /*background-color:purple;*/
        width:100%;
      }
      
      .predi{
        display:flex;
        flex-direction:column;
        background-color:#FFCB00;
        width:100%;
        position:relative;
      }
      
      .prediPleca{
        display:flex;
        width:100%;
        height:320px;
        /*background-color:pink;*/
        background-image:url("./imgs/predi/prediPleca.svg");
        background-position:top;
        background-size:cover;
        background-repeat:no-repeat;
      }
      
      .prediContenido{
        display:flex;
        width:100%;
        padding:0 141px 78px 141px;
        flex-direction:column;
        /*border:1px solid yellow;*/
        gap:40px;
        z-index:10;
      }
      
      .prediTextual{
        display:flex;
        width:100%;
        gap:65px;
        /*background-color:grey;*/
        position: relative;
      }

      .prediEspacio{
        display:flex;
        width:100%;
        height:543px;
        /*background-color:brown;*/
        position:relative;
        z-index:1;
      }
      
      .prediImagen{
        display:flex;
        bottom:0;
        width:100%;
        position:absolute;
        height:852px;
       /*background-color:blue;*/
        background-image:url("./imgs/predi/prediFondo.png");
        background-position:top;
        background-size:cover;
        background-repeat: no-repeat;
      }


      @media(max-width:1000px){

        .predi{
          /*border:5px solid green;*/
        }

        .prediContenido{
          /*border:4px solid purple;*/
          padding: 0 40px;
          gap:30px;
        }

        .prediTextual{
          /*background-color: grey;*/
          gap:18px;
        }

        .prediImagen{
          background-position: right 70px;
          /*border: 5px solid palegreen;*/
        }


      }

      @media(max-width:600px){

          .prediTextual{
            flex-direction: column;
            gap:15px;
          }

          .prediContenido{
            gap: 15px;
          }

          .prediTitles{
            font-size: 37px;
            line-height: 37px;
          }

          .prediTexto{
            font-size: 15px;
            line-height: 21px;
          }

          .prediImagen{
            background-position: right -70px center;
            height: 700px;
          }

          .prediEspacio{
            height:530px;
          }


      }