   
      .proxi{
        display:flex;
        width:100%;
        justify-content:center;
        /*background-color:darkblue;*/
        padding:109px 20px;
        position:relative;
      }
      
      .proxi .background{
        display:flex;
        position:absolute;
        z-index:0;
        width:100%;
        top:0;
        left:0;
        height:100%;
        /*background-color:green;*/
      }
      
      .proxi .background img{
        width:100%;
        height:100%;
        object-position:center;
        object-fit:cover;
      }
      

      .proxi .contenedor{
        display:flex;
        width:100%;
        max-width:1125px;
        /*background-color:brown;*/
        justify-content:space-between;
        gap:25px;
        z-index:2;
      }
      
      .proxi .videoSpace{
        width:100%;
        height:auto;
        aspect-ratio:1920/1080;
        max-width:591px;
        background-color:black;
        border-radius:15px;
      }
      
      .proxi .textos{
        width:100%;
        max-width:465px;
        display:flex;
        flex-direction:column;
        gap:20px;
        /*background-color:grey;*/
        justify-content:center;
        color:white;
      }
      
      .proxi video{
        object-position:center;
        object-fit:cover;
        width:100%;
        height:100%;
        border-radius:15px;
      }
      
      .proxi h2{
        font-size:40px;
        line-height:44px;
      }
      
      .proxi p{
        font-size:18px;
        line-height:26px;
      }
      
      
      @media(max-width:1003px){
        
        .proxi .contenedor{
            flex-direction:column;
            align-items:center;
            text-align:center;
        }
        
      }
      