.column {
  display: flex;
  flex-direction: column;
  /* flex-basis: 100%; */
  width: 50%;
  flex: 1;
  justify-content: flex-start;
}

.column.column-text {
  justify-content: center;
}

.column.headingBlock {
  justify-content: center;
  align-items: center;
}

.row {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  width: 100%;
  justify-content: space-between; /* Spaces the columns evenly */
  position: relative;
  min-height: 168px;
}

/* Media query for mobile devices */
@media (max-width: 768px) {
  .column {
    width: 100%; /* Make columns full width */
  }
  
  .row {
  flex-direction: column;
      
  }
  
}
