
/* Consult Styles */
.consultContainer {
  background-color: rgb(242, 217, 6);
  flex-grow: 1;
  padding: 2em 1em;
}

.consultWrapper {
  max-width: 1200px;
  margin-right: auto;
  margin-left: auto;
  display: flex;
  flex-direction: column;
}

.consult_text_container {
  display: flex;
  flex-direction: column;
  gap: .75rem
}

.consult_text_container h3 {
  font-size: 1.5rem;
  line-height: 1.75rem;
  font-weight: 600;
}

.appointmentButton {
  color: var(--blueFontColor);
  font-weight: 600;
  background-color: var(--secondaryColor);
  font-size: 28px;
  text-decoration: none;
  display: block;
  border-radius: 4px;
  padding: 1.5rem .75rem;
}

.consultWrapper .appointmentButton {
  background-color: rgb(0, 117, 178);
  font-weight: 600;
  color: white;
  font-size: 28px;
  text-decoration: none;
  display: block;
  border-radius: 4px;
  padding: 1em .5em;
}

.item {
  flex: 1;
  text-align: center;
  padding: 0.5em;
}


.buttonSub {
  font-size: 14px;
  display: block;
  opacity: 0.7;
  font-weight: normal;
}

@media (min-width: 768px) {
  .consultWrapper {
    flex-direction: row;
  }
}
