.industry-banner{
    width: 100%;
    height: auto;
    padding: 20px;
    background-color: rgb(223, 236, 253);
}
.industry-containerRow{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: left;
    /* gap: 10px 10px; */
    margin: 0 auto;
    height: auto;
    width: 100%;
 }
.industry-directory{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    margin: 0 0 20px 20px;
    width: calc(50% - 30px);
    aspect-ratio: 1 / 1;
    /* border: solid 1px black; */
    /* border-radius: 5px; */
    
    /* background-color: rgb(154, 196, 250); */
 }
 .industry-directory img{
     
     width: 100%;
     height: auto;
     /* background-image: linear-gradient(90deg, rgb(255, 255, 255), rgba(255, 255, 255, 0) 70%); */
     object-fit: cover;
     /* padding: 10px;
     border-radius: 5px; */
 }
 .industry-directory h2{
     padding: 0 10px;
     text-align: center;
 }
 @media (max-width: 480px) {
    .industry-containerRow{
        flex-direction: column;
        justify-content: center;
        background-color: #ddd;
        padding: 10px 10px;
        margin-bottom: 20px;

     }
     .industry-containerRow:nth-child(2n+1){
        flex-direction: column-reverse;
     }
    .industry-directory{
        margin: 10px 10px;
        width: auto;
     }
 }