
/***********************************/
/* Container for the hero section */
/***********************************/

.hero {
  max-width: 100%;
  height: 350px;
  padding-top: 25px;
  background-image: url("../images/background.png");
}

.hero-text-box {
  max-width: 360px;
  height: 20px;
  margin-top: 15px;
  margin-bottom: 20px;
}

.hero-header-font {
  font-family: var(--std-font-family);
  font-weight: 800;
  font-size: 3.5em;
  line-height: 1.0;
  color: var(--std-font-color);
}

.hero-sub-header-font {
  font-family: "Parisienne", cursive;
  font-weight: 800;
  font-style: normal;
  font-size: 2.0em;
  line-height: 1.0;
  color: var(--std-font-color);
}

.hero-text-font {
  font-family: var(--std-font-family);
  font-weight: 800;
  font-size: 1.0em;
  line-height: 1.2;
  color: var(--std-font-color);
  text-shadow: 8px 0px 5px #e4e7e2;
}

.hero-alt-button {
  background-color: var(--button-bg);
  color: white;
  width: 150px;
}

.hero-alt-button:hover {
  background-color: var(--button-hover-bg);
  color: var(--button-hover-ink);
}

.hero-icon-container {
  padding-top: 15px;
  max-width: 400px;
  margin-bottom: 20px;
}

.hero-action-button-container {
  padding-top:0;
  margin-left: 60px;
  max-width: 450px;
}

.hero-f1 {
  font-family: var(--std-font-family);
  font-weight: bold;
  font-size: 0.75em;
  line-height: 1.0;
}


.hero-f2 {
  font-family: var(--std-font-family);
  font-weight: 400;
  font-size: 0.6em;
  line-height: 0.75;

}