    
      
      .misvis{
        display:flex;
        width:100%;
        justify-content:center;
        /*background-color:brown;*/
        padding: 0 40px 120px 40px;
        background:linear-gradient(to bottom, #cccccc, #E3E3E3);
      }
      
      .misvis .contenedor{
        display:flex;
        width:100%;
        gap:40px;
        /*background-color:green;*/
        justify-content:space-between;
        align-items:center;
        max-width:1380px;
      }
      
      .misvis .foto{
        width:400px;
        height:430px;
        /*background-color:black;*/
        flex-shrink:0;
        border-radius:40px;
      }
      
      .misvis .textos{
        display:flex;
        flex-direction:column;
        max-width:900px;
        /*background-color:olive;*/
      }
      
      .misvis h3{
        font-size:28px;
        line-height:35px;
        color:#75003E;
        padding-bottom:15px;
      }
      
      .misvis p{
        font-size:18px;
        line-height:24px;
      }
      
      .misvis .gap{
        padding-bottom:40px;
      }
      
      .misvis img{
        width:100%;
        height:100%;
        object-position:center;
        object-fit:cover;
        border-radius:40px;
      }


      @media(max-width:1000px){

        .misvis{
          padding:0 30px 100px 30px;
        }

        .misvis .contenedor{
          flex-direction:column;
          gap:28px;
          align-items:center;
          text-align:center;
        }

        .misvis .foto{
          width:100%;
          max-width:540px;
          height:390px;
          border-radius:30px;
        }

        .misvis .textos{
          max-width:900px;
          align-items:center;
        }

        .misvis h3{
          font-size:21px;
          line-height:26.25px;
          padding-bottom:12px;
        }

        .misvis p{
          font-size:16px;
          line-height:18.75px;
        }

        .misvis .gap{
          padding-bottom:28px;
        }

        .misvis img{
          border-radius:30px;
        }

      }


      @media (max-width:700px){

        .misvis{
          padding:0 28px 74px 28px;
        }

        .misvis .contenedor{
          gap:25px;
          align-items:center;
          text-align:center;
        }

        .misvis .foto{
          width:100%;
          max-width:100%;
          height:301px;
          border-radius:28px;
        }

        .misvis .textos{
          width:100%;
          align-items:center;
        }

        .misvis h3{
          font-size:21px;
          line-height:26.25px;
          padding-bottom:10.5px;
        }

        .misvis p{
          font-size:16px;
          line-height:20px;
        }

        .misvis .gap{
          padding-bottom:28px;
        }

        .misvis img{
          border-radius:28px;
        }

      }
