.image-container {
  position: relative;
  overflow: hidden;
}

.text-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
/*  background-color: rgba(0, 0, 0, 0.5);  Optional overlay background color */
  color: #fff;
  text-shadow:  2px 2px 3px black;
  padding: 20px;
}

.column {
  display: flex;
}

.column-left {
  flex: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  width: 100%;
  flex-grow: 1;
}

.column-right {
  flex: 1;
  flex-shrink: 0;
  width: 100%;
}

.column-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
/*  background-color: rgba(0, 0, 0, 0.15);  Nice for troubleshooting */
  padding: 10px;
  margin: 5px;
}

.column h2 {
  font-size: 24px;
  margin-bottom: 10px;
  text-align: center;
}

.column .btn {
  margin-top: 15px;
}

@media (max-width: 500px) {
  .text-overlay {
    align-items: flex-start;
    min-height: 100%;
  }

  .column {
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .column-content {
    margin: 5px 0;
    text-align: center;
  }
}


@media (min-width: 500px) {
  .text-overlay {
    flex-direction: row;
  }

  .column-left {
    flex: 1.5;
  }

  .column-right {
    flex: 1;
  }
}

.req-appt-button {
    --bs-btn-bg: #9ac9bc !important;
    --bs-btn-color: white !important;
    --bs-btn-hover-border-color:  white !important;
    --bs-btn-hover-bg:  #9ac9bc;
    --bs-btn-border-width:  3px;    
    --bs-btn-hover-color:  white;
}

.contact-button {
    --bs-btn-bg: #005487 !important;
    --bs-btn-color: white !important;
    --bs-btn-hover-border-color:  white !important;
    --bs-btn-hover-bg:  #005487;
    --bs-btn-border-width:  3px;
    --bs-btn-hover-color:  white;
}


/* 
@media (max-width: 300px) {
  .text-overlay {
    flex-direction: column;
    align-items: center;
  }

  .column {
    margin: 5px 0;
  }

  .image-container {
    min-height: 400px;
  }
}
*/