html,
body {
  box-sizing: border-box;
  height: 100%;
  padding: 0;
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
}

@media screen and (max-width: 700px) {
  .wrapper,
  .flex-body {
    flex-direction: column;
  }
}

.wrapper {
  box-sizing: border-box;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  background-color: rgb(255, 255, 255);
}

.flex-nav {
  justify-content: space-between;
  align-items: center;
  height: 50px;
  font-size: larger;
  font-variant-caps: all-small-caps;
  z-index: 1;
}

.flex-nav ul {
  display: flex;
  flex-direction: row;
}

.flex-nav li {
  padding: 0 10px;
  border: none;
  text-decoration: none;
}

#brand {
  font-size: larger;
  font-variant-caps: small-caps;
}

.flex-footer {
  justify-content: space-between;
  align-items: center;
  height: 50px;
}

.flex-nav,
.flex-footer {
  display: flex;
  flex-direction: row;
  padding: 0 10px;
  flex-grow: 0;
  flex-shrink: 0;
  color: white;
  background-color: black;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.header-brand {
  height: 200px;
}

.flex-body {
  display: flex;
  flex-grow: 1;
  flex-direction: column;
  text-align: center;
  justify-content: bottom;
  min-width: 75%;
}

.flex-body div {
  padding-bottom: 5%;
}

.banner-maintenance {
  display: flex;
  padding: 1% 0.25%;
  background-color: rgb(255, 0, 0);
  font-variant-caps: all-small-caps;
}

.footer-credit {
  text-align: end;
}

.footer-socials a {
  border: none;
  text-decoration: none;
}

li {
  list-style: none;
}

.hero {
  background: #000000;
  min-height: 300px;
  max-height: 300px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero video {
  display: block;
}

.herotext {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: larger;
}

.herotext input,
button {
  font-size: larger;
}

.herotext input {
  text-transform: uppercase;
  text-align: center;
}

.herotext button {
  position: relative;
  left: 35%;
}

.flex-nav a {
  text-decoration: none;
  color: inherit;
}

#navselected a {
  border: none;
  text-decoration-thickness: 5px;
  text-decoration-line: overline;
  color: inherit;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: center;
}

.card {
  flex: 0 0 350px;
  margin: 25px;
  border: 1px solid #ccc;
  box-shadow: 2px 2px 6px 0px rgba(0, 0, 0, 0.3);
}

.card img {
  max-width: 100%;
}

.card .text {
  padding: 0 20px 20px;
}

.card .text > button {
  background: gray;
  border: 0;
  color: white;
  padding: 10px;
  width: 100%;
}

.card .image {
  justify-content: right;
}

.missionstatement {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
}

input[type="text"],
select,
textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
  margin-top: 6px;
  margin-bottom: 16px;
  resize: vertical;
}

input[type="submit"] {
  background-color: #000000;
  color: white;
  padding: 12px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

input[type="submit"]:hover {
  background-color: #505050;
}

.contactusform {
  display: flex;
  justify-content: center;
  border-radius: 5px;
  padding: 20px;
}

.termsofservice {
  display: flex;
  justify-content: center;
  height: 100%;
  white-space: pre-line;
}

.section {
  display: flex;
  flex-direction: row;
}

.section-image {
  flex-direction: column;
}

.section-text {
  flex-direction: column;
}

.vehicleResults {
  display: none;
  flex-direction: row;
}

#contactus {
  margin: 10%;
}
