.cacardsTitles{
         font-family: "Open Sans", sans-serif;
         font-weight: 600;
         font-style: normal;
         font-size:24px; /*px*/
         line-height:30px; /* ej. 1.5, 20px, auto*/
         letter-spacing:0.01em; /*ej. 2px o 0.1 em*/
   } 

   .cacardsParrafo{
         font-family: "Open Sans", sans-serif;
         font-weight: 400;
         font-style: normal;
         font-size: 13.5px; /*px*/
         line-height: 22px; /* ej. 1.5, 20px, auto*/
         letter-spacing:0.015em; /*ej. 2px o 0.1 em*/
   }
      
      
      .cacardsWrapper{
        display:flex;
        width:100%;
        justify-content:center;
        background-color:#F5F9ED;
      }
      
      .cacards{
        display:flex;
        width:100%;
        justify-content:space-between;
        gap:50px;
        padding:142px 143px 195px 143px;
        max-width:1430px;
      }
      
      .cacardsTarjeta{
        display:flex;
        width:100%;
        max-width:502px;
        flex-direction:column;
        gap:40px;
      }
      
      .cacardsImagen{
        display:flex;
        margin-top:15px;
        width:100%;
        height:312px;
        /*background-color:black;*/
        background-size:cover;
        background-position:center;
        background-repeat:no-repeat;
        border-radius:7px;
      }

      .img1{
          background-image:url("./imgs_carreras/img1.png");
      }

      .img2{
          background-image:url("./imgs_carreras/img2.png");
      }

      @media(max-width:1192px){
          .cacards{
            padding: 100px 60px;
          }
      }

      @media(max-width:839px){
          .cacards{
            flex-direction: column;
            justify-content: center;
            align-items: center;
          }

          .cacardsTarjeta{
            gap:20px;
          }
      }

    @media(max-width:600px){
          .cacards{
            padding: 90px 40px;
          }
      }