/**
* Template Name: Honest Construction
*/

/*------  General  ----*/
body {
  font-family: "Open Sans", sans-serif;
  color: #444;
}

a {
  text-decoration: none;
  color: #fff;
  font-weight: 500;
  letter-spacing: 1px;
}

a:hover {
  color: #fff;
  font-weight: 500;
  letter-spacing: 1px;
  text-decoration: underline;
}

h1, h2, h3, h4, h5, h6, .font-primary {
  font-family: "Raleway", sans-serif;
}

/*--------  Banner Section   ----------*/
#hero {
  width: 100%;
  height: 100vh;
  background: url("../img/hero-bg.jpg") top center;
  background-size: cover;
  position: relative;
  z-index: 9;
}
#hero .hero-container {
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  padding: 0 15px;
}
#hero h1 {
    font-size: 60px;
    font-weight: 700;
    line-height: 72px;
    text-transform: uppercase;
    color: #fff;
    letter-spacing: 2px;
    margin: 36px;
}

@-webkit-keyframes animate-loading-notify {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes animate-loading-notify {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@media (min-width: 1024px) {
  #hero {
    background-attachment: fixed;
  }
}
@media (max-width: 768px) {
  #hero h1 {
    font-size: 28px;
    line-height: 36px;
  }
}

/*--------- Sections General -------------*/
section {
  padding: 60px 0;
}

.section-bg {
  background-color: #f7fafc;
}

.section-title {
  text-align: center;
  padding-bottom: 30px;
}
.section-title h2 {
  font-size: 32px;
  font-weight: 300;
  margin-bottom: 20px;
  padding-bottom: 0;
}
.section-title p {
  margin-bottom: 0;
}
.email {
  color: #fff;
}
.email a {
  margin-left: 6px;
}
img.top-logo {
  background: #2125298c;
  border-radius: 6px;
  padding: 42px;
}