      
      
      
.proveedores h2{
        font-family: "gelica", sans-serif;
        font-weight: 700;
        font-style: normal;
        font-size:47px;
        line-height:44px;
        color:#82132F;
}

      .proveedores a{
        all:unset;
        padding:22px 33px;
        background-color:#B48B55;
        box-shadow:0 0 20px rgba(0,0,0,0.2);
        cursor:pointer;
        color:white;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size:17px;
  line-height:17px;
        width:fit-content;
        border-radius:5px;
        position:relative;
        transition:all 0.25s ease;
        top:0;
      }
      
      .proveedores a:hover{
        background-color:#A87634;
        top:-6px;
      }


      .proveedores{
        display: flex;
        width: 100%;
        /*background-color: grey;*/
        padding:98px 20px;
        justify-content: center;
      }

      .proveedoresWrapper{
        display: flex;
        width:100%;
        max-width: 968px;
        gap:20px;
        justify-content: space-between;
        align-items: center;
        /*background-color: green;*/
      }

      .proveedoresPicture{
        display:flex;
        width:467px;
        height:359px;
        background-color: black;
        flex-shrink: 0;
        border-radius: 11px;
      }

       .proveedoresPicture img{
        width: 100%;
        object-fit: cover;
        object-position: center;
        border-radius: 11px;
      }

      .proveedoresParrafo{
        display: flex;
        width: 100%;
        max-width: 436px;
        flex-direction: column;
        gap:37px;
        /*background-color: brown;*/
      }
      

      @media(max-width:900px){

        .proveedoresWrapper{
            flex-direction: column;
            gap: 30px;
        }

        .proveedoresParrafo{
            text-align: center;
            justify-content: center;
            align-items: center;
        }

        .proveedores{
            padding-top: 70px;
            padding-bottom: 70px;
        }

        .proveedoresPicture img{
            object-position: top;
        }


      }


      @media(max-width:700px){

        .proveedoresPicture{
            width: 100%;
            height: 300px;
        }

        .proveedores h2{
            font-size: 37px;
            line-height: 37px;
        }

        .proveedores a{
            font-size: 17px;
            line-height: 17px;

        }

        .proveedoresParrafo{
            gap: 20px;
        }


      }
