/*self clearing divs*/
.left {
  float: left;
}
.right {
  float: right;
}
.group:after {
  content: ".";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}
*html .group {
  /* IE6 */
  height: 1%;
}
*:first-child + html .group {
  /* IE7 */
  min-height: 1px;
}
/*end self clearing divs*/
/* box sizing */
html {
  box-sizing: border-box;
}
*,
*:before,
*:after {
  box-sizing: inherit;
}
/* end box sizing */
body {
  font-family: 'Lato', sans-serif;
  font-size: 100%;
  color: #808080;
  padding: 50px 0;
}
img {
  max-width: 100%;
  display: block;
}
a {
  text-decoration: none;
  color: #ae132d;
  -webkit-transition: all 1s ease 0s;
  -o-transition: all 1s ease 0s;
  -ms-transition: all 1s ease 0s;
  -moz-transition: all 1s ease 0s;
  transition: all 1s ease 0s;
}
p,
li,
td,
th {
  font-size: 0.8rem;
  line-height: 1.2rem;
  margin: 0;
  padding: 0;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 10px 0;
}
h2 {
  text-transform: uppercase;
  color: #ae132d;
}
hr {
  margin: 10px 0;
  border: 0;
  border-bottom: 1px dashed #ccc;
  background: #fff;
}
.rounded {
  -webkit-border-radius: 3px;
  border-radius: 3px;
}
.shadowed {
  box-shadow: 0 0 5px #555;
}
.columned {
  -moz-column-width: 30em;
  -moz-column-gap: 40px;
  column-width: 30em;
  column-gap: 40px;
}
div,
input {
  position: relative;
}
.container {
  width: 92.1875%;
  max-width: 1200px;
  margin: 0 auto;
  -webkit-border-radius: 3px;
  border-radius: 3px;
  box-shadow: 0 0 5px #555;
}
.content-left-half {
  width: 50%;
  padding: 0 25px 0 0;
}
header {
  background: #ae132d;
  padding: 50px 0;
  color: white;
  text-align: center;
}
header #logo {
  width: 10%;
  margin: 0 auto 20px;
}
.show {
  display: block;
}
.hide {
  display: none;
}
main {
  padding: 50px;
}
main nav ul {
  margin: 0;
  padding: 0;
}
main nav ul li {
  display: inline-block;
  width: 24%;
  margin: 0 ;
  text-align: center;
}
main nav ul li a:hover {
  color: #cbc9c3;
}
footer {
  background-color: rgba(203, 201, 195, 0.2);
  padding: 20px 50px;
}
input[type=text],
textarea,
select {
  background-color: rgba(203, 201, 195, 0.2);
  border: 1px solid #cbc9c3;
  width: 100%;
  padding: 9px 1%;
  font-family: 'Open Sans', sans-serif;
  font-size: 0.8em;
  color: #323232;
  margin-bottom: 17px;
}
textarea {
  height: 178px;
}
input[type=button] {
  background-color: #ae132d;
  color: #fff;
  font-family: 'Open Sans', sans-serif;
  font-size: 0.8em;
  text-transform: uppercase;
  border: none;
  padding: 10px 2%;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  border-radius: 3px;
}
select {
  background-color: white;
  font-family: 'Open Sans', sans-serif;
  font-size: 0.8em;
  color: #323232;
  margin-bottom: 17px;
  width: 100%;
}
label {
  font-size: 0.8rem;
  font-weight: 900;
}
#q-3 .form-third {
  width: 30%;
  margin-right: 5%;
}
.form-half {
  width: 45%;
}
