/* Hero Title Styles */
.heroTitleContainer {
  max-width: 1200px;
  margin-right: auto;
  margin-left: auto;

  margin-top: 2rem;
  padding-top: 1rem;
  background-color: var(--triColor);
  display: flex;
  flex-direction: column;
}

.actionContainer {
  display: flex;
  flex-grow: 1;
  padding: 1em;
}

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


/* Logo Styles */
.logoContainer {
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  max-width: 360px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 1rem;
  background-color: #fff;
  border-radius: 10px;
  align-items: center;
}

.logoIconContainer {
  height: 4rem;
  width: 4rem;
}

.logo_text_container {
  display: flex;
  flex-direction: column;
}

.logoText {
  font-weight: 700;
  font-size: 3rem;
  line-height: 3rem;
  color: #000
}

.logoText > span{
  color: var(--primaryColor);
}

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

.description {
  color: white;
  font-size: 24px;
}

.description p {
  line-height: 1.5em;
}

.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;
}

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

/* Mobile Responsive Styles */
@media only screen and (min-width: 320px) {
  .actionContainer {
    flex-direction: column;
  }
}

@media only screen and (min-width: 700px) {
  .actionContainer {
    flex-direction: row;
  }
}
