      
      .nosotrosBanner{
        width:100%;
        display:flex;
        justify-content:center;
        padding:66px 40px;
        /*background-color:darkblue;*/
        align-items:center;
        min-height:400px;
        position:relative;
      }
      
      .nosotrosBanner .contenedor{
        width:100%;
        display:flex;
        flex-direction:column;
        gap:20px;
        /*background-color:brown;*/
        z-index:2;
        max-width: 1500px;
      }
      
      .nosotrosBanner h2{
        font-size:40px;
        line-height:40px;
        color:white;
        width:60%;
        max-width: 800px;
      }
      
      .nosotrosBanner p{
        font-size:23px;
        line-height:32px;
        color:white;
        width:60%;
        max-width: 600px;
      }
      
      .nosotrosBanner .background{
        width:100%;
        height:100%;
        position:absolute;
        top:0;
        left:0;
        background-color:black;
        z-index:0;
      }
      
      
      .nosotrosBanner img{
        width:100%;
        height:100%;
        object-position:center;
        object-fit:cover;
      }


      @media(max-width:1000px){

        .nosotrosBanner{
          padding:56px 30px;
          min-height:360px;
        }

        .nosotrosBanner .background{
          opacity: 0.6;
        }

        .nosotrosBanner .contenedor{
          gap:16px;
          align-items:center;
          text-align:center;
        }

        .nosotrosBanner h2{
          width:100%;
          max-width:760px;
        }

        .nosotrosBanner p{
          width:100%;
          max-width:560px;
        }

      }


      @media (max-width:700px){

        .nosotrosBanner{
          padding:46px 28px;
          min-height:290px;
        }

        .nosotrosBanner .contenedor{
          gap:12px;
          align-items:center;
          text-align:center;
        }

        .nosotrosBanner h2{
          font-size:30px;
          line-height:33px;
          width:100%;
          max-width:100%;
        }

        .nosotrosBanner p{
          font-size:17.25px;
          line-height:25px;
          width:100%;
          max-width:100%;
        }

      }
