.the-container {
  width: 100% !;
  /*max-width: 1200px;*/
  margin: 0 0 0 0 ;
  
  box-sizing: border-box;
  padding: 0 !important;
}

.the-row {
  padding: 0 !important;  
}

.the-row::after {
  content: "";
  display: table;
  clear: both;
}

.the-column {
  box-sizing: border-box;
  float: left;
  padding: 0 !important;
}

/* Define 12 columns */
.the-col-1 {padding: 0 !important;width: 8.33%;}
.the-col-2 {padding: 0 !important;width: 16.66%;}
.the-col-3 {padding: 0 !important;width: 25%;}
.the-col-4 {padding: 0 !important;width: 33.33%;}
.the-col-5 {padding: 0 !important;width: 41.66%;}
.the-col-6 {padding: 0 !important;width: 50%;}
.the-col-7 {padding: 0 !important;width: 58.33%;}
.the-col-8 {padding: 0 !important;width: 66.66%;}
.the-col-9 {padding: 0 !important;width: 75%;}
.the-col-10 {padding: 0 !important;width: 83.33%;}
.the-col-11 {padding: 0 !important;width: 91.66%;}
.the-col-12 {padding: 0 !important;width: 100%;}

@media screen and (max-width: 767px) {
  .the-column {
      width: 100%;
  }

  .the-col-1,
  .the-col-2,
  .the-col-3,
  .the-col-4,
  .the-col-5,
  .the-col-6,
  .the-col-7,
  .the-col-8,
  .the-col-9,
  .the-col-10,
  .the-col-11,
  .the-col-12 {padding: 0 !important;width: 100%;}

}

/* Add some styling for visualization (optional) */
.the-column {
  background-color: #ddd;
  padding: 0px !important;
  margin: 0px;
  border: 1px solid #e5e6e6;
}


.the-flex-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between; /* Optional, to space out items */
}
.the-flex-box {
  flex: 1 1 calc(33.33% - 20px); /* 33.33% width minus margin space */
  margin: 10px;
  background-color: #f0f0f0;
  padding: 20px;
  text-align: center;
  border: 1px solid #ccc;
}
@media (max-width: 900px) {
  .the-flex-box {
      flex: 1 1 calc(50% - 20px); /* Two columns on medium screens */
  }
}
@media (max-width: 600px) {
  .the-flex-box {
      flex: 1 1 100%; /* One column on small screens */
  }
}