.supplier-form-container .grid {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  background-image: url("/sub-images/backgrounds/shovels.jpg");
  background-position: center;
  background-size: cover;
  border-radius: 0.4375rem;
  position: relative;
}
.supplier-form-container .grid::after {
  content: "";
  height: 100%;
  width: 100%;
  top: 0;
  left:0;
  border-radius: 0.4375rem;
  background-color: rgba(51, 51, 51, 0.8);
  position: absolute;

}


.supplier-form-container .grid .module-content {
  width: 100%;
  max-width: 75rem;
  padding: 0 1.3888888889%;
  margin: auto;
  z-index: 2;
}

.hero .suppliers {
  background-image: url("/sub-images/backgrounds/suppliers.webp");
}

.column-container{
    width:25%;
}

.table-container{
    display: flex;
}


.prescreening-text {
    margin:0; !important
    max-width: 100%; !important
}

/* Responsive layout - makes a two column-layout instead of four columns */
@media screen and (max-width: 1100px) {
.table-container{
 display: flex;
    flex-direction:row;
    flex-wrap: wrap;
}
  .column-container {
   width: 49%;
  }
}

/* Responsive layout - makes the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 600px) {
    .table-container{
    
    flex-direction:column;
}
  .column-container {
    
    width: 100%;
  }
}