/*
=======================================================================
	Hero Rules
=======================================================================
*/
#hero_ {
  position: relative;
  border: 4px solid green;
}

#hero #hero2 {
  position: relative;
  /*grid-area: header;*/
  /* background-image: linear-gradient(rgba(0,0,255,0.6), rgba(255,0,0,0.25), rgba(0,255,0,0.02)),
  url(../images/uvs_logo_hz-white-on-black-50.jpg) */
  /* background-image: url(../images/uvs_logo_hz-white-on-black-50.jpg); */
  background-size: contain;
  background-position: center;
  /* overflow: hidden; */
  /* background-attachment: fixed; */
  background-repeat: no-repeat;
  max-width: 100vh;
  /* background-color: #9DC3E8; */
  background-color: black;
  /* width: 100% auto; */
  /* width: 980px; */
  max-width: 980px;
  /* border: 4px solid red; */
}

/* @media (min-width: 46rem) { */
/* #hero { */
/* background-size: 100% auto; */
/* } */
/* } */


.hero-text-box {
  margin: 0;
  /* position: absolute; */
  /* top: 50%; */
  /* -ms-transform: translateY(-50%);
  transform: translateY(-50%); */

  /* margin: 0;
  -ms-transform: translateY(-32px);
  transform: translateY(-32px); */
  display: block;
  width: 100vw;
  text-align: left;
  color: whitesmoke;
  /* border: 4px dashed dodgerblue; */
}

@media (min-width: 46rem) {
  .hero-text-box {
    max-width: 980px;
  }
}

/* @media (max-height: 30rem) {
  .hero-text-box {
    top: 7rem;
  }
} */

.hero-text-box .btn {
  margin-bottom: 1rem;
}

.hero-text-box h1 {
  font-size: 200%;
  letter-spacing: 5px;
  text-align: center;
  /* font-weight: bold; */
  color: whitesmoke;
  /* color: #A72924; */
}

.hero-text-box h2 {
  font-size: 125%;
  margin: 50px 100px;
  letter-spacing: 2px;
  color: whitesmoke;
}

.hero-text-box img {
  background-color: black;
  display: block;
  margin: 0 auto;
  /* vertical-align: middle; */
}

.hero-tagline {
  color: whitesmoke;
  font-size: 135%;
  word-spacing: 2px;
  padding: 0rem 2rem 1rem 2rem;
  /* letter-spacing: 3px; */
  text-align: center;
}

.hero-tagline:last-of-type {
  padding-bottom: 1.5rem;
}

.hero-tagline2 {
  padding: 1rem 0;
  text-align: center;
}

.hero-button-box {
  top: 0;
  position: relative;
  text-align: center;
  /* border: 3px solid yellow; */
}

/* @media (max-height: 30rem) {
  .hero-tagline,
  .hero-tagline:last-of-type {
    display: none;
  }
} */

/* ----- BUTTONS ----- */

.btn:link,
.btn:visited,
input[type=submit],
button {
  display: inline-block;
  padding: 10px 30px;
  font-weight: 300;
  text-decoration: none;
  border-radius: 200px;
  -webkit-transition: background-color 0.2s, border 0.2s, color 0.2s;
  transition: background-color 0.2s, border 0.2s, color 0.2s;
}

.btn-full:link,
.btn-full:visited,
input[type=submit],
button {
  background-color: #A72924;
  border: 1px solid #A72924;
  color: #fff;
  margin-right: 15px;
}

.btn-ghost:link,
.btn-ghost:visited {
  border: 1px solid #A72924;
  color: #A72924;
}

.btn:hover,
.btn:active,
input[type=submit]:hover,
input[type=submit]:active {
  background-color: #A72924;
}

.btn-full:hover,
.btn-full:active {
  background-color: #A72924;
}

.btn-ghost:hover,
.btn-ghost:active {
  background-color: #A72924;
  color: #fff;
}