/* CUSTOM CSS */
body {
  margin-top: 50px;
}
p {
  font-family: "Roboto", sans-serif;
}
.blur-image {
  background-image: url('../assets/images/header-cover-keys-blur.jpg');
  filter: none;
  transition: -webkit-filter 0s 0.3s linear, filter 0s 0.3s linear;
}
.image-loaded {
  transition: opacity .25s linear;
}
.header-section, .full-image, .image-loaded {
  background-position: top center;
  background-repeat: no-repeat;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  -webkit-filter: none;
  width: 100%;
  min-height: 475px;
}
#header-title {
  font-size: 4rem;
  font-family: "Quicksand", sans-serif;
}
#header-subtext {
  font-family: "Arial", sans-serif;
}
.header-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 475px;
  color: #fff;
}
.header-content>h1 {
  font-family: "Rubik", sans-serif;
}
#cta1 {
  font-size: 3.5rem;
}
.cta2 {
  text-align: left;
}
.section {
  width: 100%;
  min-height: 675px;
}
.section-carousel {
  color: #eee;
  width: 300px;
  line-height: 2;
  border-bottom: 2px solid #449d44;
}
.section-about {
  color: #000;
  width: 300px;
  line-height: 2;
  border-bottom: 2px solid #449d44;
}
.section-services {
  color: #eee;
  width: 300px;
  line-height: 2;
  border-bottom: 2px solid #449d44;
  text-align: left;
}
.section-contact {
  color: #000;
  width: 300px;
  line-height: 2;
  border-bottom: 2px solid #449d44;
}
.carousel {
  height: 260px;
}
.carousel-bg {
  background-color: rgba(0,0,0,0.5);
}
.carousel-caption {
  color: #eee;
  position: static;
  padding-bottom: 60px;
}
.carousel-caption>p {
  color: #eee;
  font-size: 2.5rem;
}
.carousel-caption>p>span {
  color: #ccc;
  font-family: "Arial", sans-serif;
  font-size: 1.8rem;
  font-weight: bold;
}
.carousel-control.left, .carousel-control.right {
    background-image: none;
}
.spacer {
  display: block;
  width: 100%;
  height: 100px;
}
.hr {
  display: none;
  margin: 0 auto;
  width: 75%;
  max-width: 300px;
  height: auto;
  border-bottom: 1px solid #999;
}
#about {
  background-color: #eee;
}
#about-image {
  max-width: 380px;
  border: 3px solid #666;
  -webkit-box-shadow: 8px 8px 8px 0px rgba(0,0,0,0.75);
  -moz-box-shadow: 8px 8px 8px 0px rgba(0,0,0,0.75);
  box-shadow: 8px 8px 8px 0px rgba(0,0,0,0.75);
}
#about-text {
  font-size: 1.9rem;
}
#services {
  background-color: #333;
  color: #eee;
  text-align: center;
}
.services-image {
  margin-bottom: 50px;
  width: 200px;
  height: auto;
}
.services-text {
  color: #ccc;
}
.services-heading {
  color: #fff;
  font-size: 2rem;
}
#contact {
  background-color: #eee;
}
#map {
  width: 100%;
  height: 400px;
  background-color: grey;
  border: 3px solid #666;
  -webkit-box-shadow: 8px 8px 8px 0px rgba(0,0,0,0.75);
  -moz-box-shadow: 8px 8px 8px 0px rgba(0,0,0,0.75);
  box-shadow: 8px 8px 8px 0px rgba(0,0,0,0.75);
}
footer>div {
  padding: 1px;
  margin-top: -5px;
  min-height: 80px;
  background-color: #111;
  text-align: center;
}
footer>div>span {
  display: block;
  margin-top: 35px;
  color: #555;
}

/* MEDIA QUERIES */
@media(max-width: 426px){
  #about-image {
    width: 100%;
    height: auto;
  }
  .cta2 {
    text-align: center;
  }
  #map {
    margin: 0 auto;
  }
}
@media(max-width: 750px){
  .spacer {
    height: 50px;
  }
  .carousel {
    height: 450px;
  }
  #map {
    max-width: 320px;
    height: 200px;
  }
}
@media(max-width: 992px){
  #about-image {
    display: block;
    margin: 0 auto;
  }
  .hr {
    display: block;
  }
}