* {
  margin: 0px;
  padding: 0px;
  /* This brings padding inside of the box */
  -webkit-box-sizing: border-box;
  /* Safari/Chrome, other WebKit */
  -moz-box-sizing: border-box;
  /* Firefox, other Gecko */
  box-sizing: border-box;
  /* Opera/IE 8+ */
}

.alignleft {
  float: left;
}

.alignright {
  float: right;
}

.aligncenter {
  display: block;
  margin: auto;
}

.clear {
  clear: both;
}

body {
  font-family: 'Lato', sans-serif;
  font-weight: 400;
  font-size: 100%;
}

.top-header {
  border-top: 15px solid #eee;
  box-shadow: 0px 5px 25px rgba(0, 0, 0, 0.25);
  text-align: center;
  padding: 25px 0px;
}

.slogan {
  width: 100%;
  position: absolute;
  text-align: center;
  top: 50px;
  color: #fff;
  font-family: "Lato";
  font-weight: 800;
  text-shadow: 0px 2px 1px #000, 0px 2px 25px rgba(0, 0, 0, 0.5);
}

@media screen and (max-width: 920px) {
  .slogan {
    top: 20px;
  }
}

@media screen and (max-width: 600px) {
  .slogan {
    font-size: 1.8em;
    top: 20px;
  }
}

.banner {
  height: 400px;
  width: 100%;
  overflow: hidden;
  position: relative;
}

@media screen and (max-width: 920px) {
  .banner {
    height: auto;
  }
}

.banner img {
  width: 100%;
  height: auto;
}

.container {
  max-width: 1100px;
  margin: auto;
  position: relative;
}

.mid-section {
  background-color: #eaeaea;
  /* Fallback */
  background-image: -webkit-gradient(linear, left top, left bottom, from(#f2f2f2), to(#eaeaea));
  /* Saf4+, Chrome */
  background-image: -webkit-linear-gradient(top, #f2f2f2, #eaeaea);
  /* Chrome 10+, Saf5.1+, iOS 5+ */
  background-image: -moz-linear-gradient(top, #f2f2f2, #eaeaea);
  /* FF3.6 */
  background-image: -ms-linear-gradient(top, #f2f2f2, #eaeaea);
  /* IE10 */
  background-image: -o-linear-gradient(top, #f2f2f2, #eaeaea);
  /* Opera 11.10+ */
  background-image: linear-gradient(top, #f2f2f2, #eaeaea);
  filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0,StartColorStr='#f2f2f2', EndColorStr='#eaeaea');
  border-top: 1px solid #e7e7e7;
  border-bottom: 1px solid #e7e7e7;
  margin: 10px 0px;
  padding: 15px 0px;
}

.content ul {
  margin: 5px 5px 5px 40px;
  padding: 0px;
}

.content li {
  list-style-type: disc;
  color: #508ad9;
  font-size: 1em;
  padding: 5px;
}

.content {
  min-height: 500px;
  padding: 40px 0 50px 0;
}

.content a {
  color: #db0000;
  text-decoration: none;
  -webkit-transition: all 0.1s ease-in-out;
  -moz-transition: all 0.1s ease-in-out;
  -o-transition: all 0.1s ease-in-out;
  transition: all 0.1s ease-in-out;
}

.content a:hover {
  color: #ff0000;
}

.pre-footer {
  background-image: url("images/footer-bg.png");
  background-size: cover;
  height: 167px;
  position: relative;
  z-index: 5;
}

.footer {
  background: url("images/footer-color.png");
  padding: 0px 0px 75px 0px;
  font-size: 90%;
  text-align: center;
}

.footer p {
  color: #fff;
  padding: 10px;
}

.footer a {
  color: #d1c6a3;
}

.footer a:hover {
  color: #fff;
}

@media screen and (max-width: 600px) {
  .footer {
    text-align: center;
  }
}

.footer-left {
  text-align: left;
}

@media screen and (max-width: 600px) {
  .footer-left {
    text-align: center;
  }
}

.footer-right {
  text-align: right;
}

@media screen and (max-width: 600px) {
  .footer-right {
    text-align: center;
  }
}

.mobile-hide {
  display: normal;
}

@media screen and (max-width: 600px) {
  .mobile-hide {
    display: none;
  }
}

.one-half {
  width: 49.5%;
  display: inline-block;
  *display: inline;
  zoom: 1;
  vertical-align: top;
}

@media screen and (max-width: 600px) {
  .one-half {
    width: 100%;
    display: block;
  }
}

.two-third {
  width: 65.5%;
  display: inline-block;
  *display: inline;
  zoom: 1;
  vertical-align: top;
}

@media screen and (max-width: 600px) {
  .two-third {
    width: 100%;
    display: block;
  }
}

.one-quarter {
  width: 24.5%;
  display: inline-block;
  *display: inline;
  zoom: 1;
  vertical-align: top;
}

@media screen and (max-width: 600px) {
  .one-quarter {
    width: 100%;
    display: block;
  }
}

.one-third {
  width: 32.5%;
  display: inline-block;
  *display: inline;
  zoom: 1;
  vertical-align: top;
}

@media screen and (max-width: 600px) {
  .one-third {
    width: 100%;
    display: block;
  }
}

iframe {
  max-width: 100%;
}

.fancy-button {
  font-size: 1em;
  background: #508ad9;
  color: #fff !important;
  border-radius: 3px;
  padding: 8px;
  -webkit-transition: all 0.1s ease-in-out;
  -moz-transition: all 0.1s ease-in-out;
  -o-transition: all 0.1s ease-in-out;
  transition: all 0.1s ease-in-out;
  text-decoration: none;
  box-shadow: 0px 3px 5px #ccc;
}

.fancy-button:hover {
  background: #ff3939;
  box-shadow: 0px 1px 1px #222;
}

.shadow {
  box-shadow: 0px 0px 10px #d7d3b4;
  border: 5px solid #fff;
  margin: 15px;
}

h1 {
  font-size: 4em;
  font-weight: normal;
  font-family: 'Josefin Slab', serif;
  color: #508ad9;
  font-weight: 400;
  padding: 10px 20px;
}

h2 {
  font-size: 1.8em;
  font-weight: 300;
  color: #ff3939;
  padding: 10px 20px;
}

h3 {
  font-size: 1.2em;
  font-weight: 600;
  color: #000;
  padding: 10px 20px;
}

p {
  color: #605950;
  padding: 10px 20px;
  line-height: 1.5;
  font-size: .9em;
}

hr {
  width: 100%;
  margin: 10px auto;
  border-bottom: 2px solid #ccc;
  border-right: none;
  border-left: none;
  border-top: none;
}

blockquote {
  border-left: 4px solid #ccc;
  padding: 10px 10px 10px 15px;
  margin: 20px 20px 20px 25px;
}

blockquote p {
  padding: 5px;
  font-size: 1em;
  color: #6b0000;
  font-weight: 600;
}

strong {
  font-weight: bold;
  font-weight: 600;
}

a {
  text-decoration: none;
}

.video-container {
  position: relative;
  width: 90%;
  margin: auto;
  padding-bottom: 56.25%;
  padding-top: 30px;
  height: 0;
  overflow: hidden;
}

.video-container iframe, .video-container object, .video-container embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.grid {
  text-align: center;
}

.quote-bubble {
  max-width: 400px;
  float: right;
  position: relative;
  padding: 20px 30px;
  margin: 0;
  color: #000;
  background: #eee;
  border-radius: 10px;
  box-shadow: 1px -1px 1px #b2b2b2;
  color: #555;
  font-size: .8em;
  font-style: italic;
}

.quote-bubble:before {
  content: "";
  position: absolute;
  bottom: -30px;
  right: 80px;
  border-width: 0 0 30px 50px;
  border-style: solid;
  border-color: transparent #eee;
  display: block;
  width: 0;
}

.quote-bubble:after {
  content: "";
  position: absolute;
  bottom: -30px;
  right: 110px;
  border-width: 0 0 30px 20px;
  border-style: solid;
  border-color: transparent #fff;
  display: block;
  width: 0;
}

input:focus,
select:focus,
textarea:focus,
button:focus {
  outline: none;
}

input[type=text],
input[type=url],
input[type=tel],
input[type=number],
input[type=color],
input[type=email],
input[type=password],
textarea {
  border: 1px solid #ccc;
  background: #fff;
  border-radius: 3px;
  padding: 5px;
}

input[type=submit] {
  background: #365b73;
  border-radius: 3px;
  padding: 8px 10px;
  color: #fff;
  font-size: .8em;
  -webkit-transition: all 0.1s ease-in-out;
  -moz-transition: all 0.1s ease-in-out;
  -o-transition: all 0.1s ease-in-out;
  transition: all 0.1s ease-in-out;
  border: none;
}

table {
  font-size: 1em;
}

table td {
  border: 1px solid #ccc;
  padding: 10px;
}
