    
      
      .nosotrosCover{
        width:100%;
        display:flex;
        justify-content:center;
        padding:56px 40px;
        background-color:darkblue;
        align-items:center;
        min-height:450px;
        position:relative;
      }
      
      .nosotrosCover .contenedor{
        width:100%;
        display:flex;
        flex-direction:column;
        gap:28px;
        /*background-color:brown;*/
        z-index:2;
        max-width: 1100px;
      }
      
      .nosotrosCover h2{
        font-size:50px;
        line-height:52px;
        color:white;
        width:70%;
        max-width: 1000px;
      }
      
      .nosotrosCover p{
        font-size:21px;
        line-height:28px;
        color:white;
        max-width:987px;
      }
      
      .nosotrosCover .background{
        width:100%;
        height:100%;
        position:absolute;
        top:0;
        left:0;
        background-color:black;
        z-index:0;
      }
      
      
      .nosotrosCover img{
        width:100%;
        height:100%;
        object-position:center;
        object-fit:cover;
      }

      .nosotrosCover .filtro{
        position: absolute;
        top:0;
        left:0;
        width: 100%;
        height: 100%;
        background: linear-gradient(
    to top,
    rgb(78, 9, 18) 0%,
    rgb(59, 4, 22) 30%,
    rgba(77, 6, 26, 0) 80%
);
z-index: 2;
display: none;
      }
      
      @media(max-width:880px){


        .nosotrosCover{
            align-items: flex-end;
            min-height:570px;
        }

        .nosotrosCover .contenedor{
          justify-content: center;
          text-align: center;
        }

        .nosotrosCover h2{
          width:100%;
        }

        .nosotrosCover p{
          max-width:760px;
        }

        .nosotrosCover .background{
          right: 0;
          max-height: 500px;
        }
        .nosotrosCover .background img{
          object-position: right;
        }

        .nosotrosCover .filtro{
          display: flex;
        }


      }


      @media (max-width:700px){

        .nosotrosCover{
          padding:39.2px 28px;
        }

        .nosotrosCover .contenedor{
          gap:19.6px;
          align-items:center;
          text-align:center;
        }

        .nosotrosCover h2{
          font-size:37.5px;
          line-height:39px;
          width:100%;
          max-width:100%;
        }

        .nosotrosCover p{
          font-size:16px;
          line-height:21px;
          max-width:100%;
        }

      .nosotrosCover .background img{
          object-position: -800px top;
        }


      }


     @media (max-width:618px){

        .nosotrosCover .background img{
          object-position: -900px top;
        }

     }