body {
  margin: 0;
  padding: 0;
  background: #fff;
  font-family:Arial, Helvetica, sans-serif;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
h1 {
  font-size: 56px;
  font-weight: 600;
  color: #6d0b0b;
}
h2 {
  color: #6d0b0b;
  font-weight: 400;
  font-size: 32px;
}
h4 {
  color: #6d0b0b;
  font-weight: 400;
  font-size: 18px;
}
/* #6d0b0b */

header {
  background: #6d0b0b;
  height: auto;
  padding-top: 10px;
}
header .nav-wrap {
  max-width: 1170px;
  margin: 0 auto;
  /* display: flex;
  align-items: center;
  height: 50px; */
}
footer {
  background: #6d0b0b;
  display: flex;
  align-items: center;
  height: 30px;
  margin-top: auto;
  padding: 0 16px;
  color: #fff;
  font-size: 12px;
}
#logo {
  padding: 0 16px;
}
#logo img {
  width: 50px;
}
nav {
  display: block;
}
nav a {
  display: block;
  text-decoration: none;
  color: white;
  font-weight: bold;
  padding: 8px 24px;
}
@media (min-width: 800px) {
  nav {
    display: flex;
    margin-left: auto;
    padding: 0 16px;
  }
  nav a {
    /* text-decoration: none; */
    /* color: white;
    font-weight: bold; */
    padding: 8px 24px;
  }
  header .nav-wrap {
    max-width: 1170px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    height: 50px;
  }
  header {
    /* background: #6d0b0b; */
    height: 50px;
  }
}
nav a:hover {
  text-decoration: underline;
}

main {
  padding: 16px;
  max-width: 1170px;
  margin: 0px auto 50px;
}

#home main {
  display: flex;
  flex-direction: column-reverse;
  margin-top: 50px;
}
@media (min-width: 800px) {
  #home main {
    flex-direction: row;
  }
}

#home #content {
  flex-basis: 50%;
  flex-grow: 0;
  flex-shrink: 0;
  padding: 16px;
}
#home #content p {
  font-size: 21px;
  font-weight: 200;
  color: #444;
}
#home #hero-shot {
  flex-basis: 50%;
  flex-grow: 0;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}
#home #hero-shot img {
  width: 310px;
}
#home section {
  background: #F9F9F9;
}
#home section h2{
  text-align: center;
}
.btn,
button {
  background: #6d0b0b;
  border: none;
  color: #fff;
  font-size: 22px;
  font-weight: 400;
  padding: 12px 24px;
  cursor: pointer;
}
.btn {
  text-decoration: none;
}
#home .action-btns button {
  background: #6d0b0b;
  border: none;
  color: #fff;
  font-size: 22px;
  font-weight: 400;
  text-align: left;
  padding: 12px 54px;
  cursor: pointer;
}
button:hover {
  background: #500808;
}
#home .action-btns button span {
  font-weight: 100;
  display: block;
}
.pages-split {
  display: flex;
}
.pages {
  flex-basis: 50%;
  flex-grow: 0;
  flex-shrink: 0;
}
.pages-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
}
.pages-list li {
  width: 100px;
}
.pages-list li img {
  width: 100%;
}

.features-list ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
}
.features-list li {
  width: 220px;
  text-align: center;
  margin: 0 32px;
}
.features-list li h4 {
  margin: 0;
}
.features-list li img {
  width: 100px;
}
/*---*/

#contact main {
  background: #F9F9F9;
  padding: 25px;
}

fieldset {
  border: medium none !important;
  margin: 0 0 10px;
  min-width: 100%;
  padding: 0;
  width: 100%;
}

#contact input[type="text"],
#contact input[type="email"],
#contact input[type="tel"],
#contact input[type="url"],
#contact textarea {
  width: 100%;
  border: 1px solid #ccc;
  background: #FFF;
  margin: 0 0 5px;
  padding: 10px;
}

#contact input[type="text"]:hover,
#contact input[type="email"]:hover,
#contact input[type="tel"]:hover,
#contact input[type="url"]:hover,
#contact textarea:hover {
  border: 1px solid #aaa;
}

#contact textarea {
  height: 100px;
  max-width: 100%;
  resize: none;
}

#contact button[type="submit"] {
  cursor: pointer;
  width: 100%;
  border: none;
  background: #6d0b0b;
  color: #FFF;
  margin: 0 0 5px;
  padding: 10px;
  font-size: 15px;
}

#contact button[type="submit"]:hover {
  background: #6d0b0b;
}

#contact button[type="submit"]:active {
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.5);
}

#contact input:focus,
#contact textarea:focus {
  outline: 0;
  border: 1px solid #aaa;
}

::-webkit-input-placeholder {
  color: #888;
}

:-moz-placeholder {
  color: #888;
}

::-moz-placeholder {
  color: #888;
}

:-ms-input-placeholder {
  color: #888;
}

.form-wrap {
  width: 300px;
}
@media (min-width: 800px) {
  .form-wrap {
    width: 800px;
  }
}