/*
Hompage Specific Styling.
*/
/*
Global Variables

@import this file at the top of each page 
template file to make variables available.
*/
/*
Mixins

Add mixins to any css page using @include

e.g.
.element{
	@include transition( background .2s ease-out )
}
*/
#page {
  max-width: none;
  padding-top: 0px;
  background: none;
  box-shadow: none;
}

#navbar {
  transform: translateY(-101%);
  -webkit-transition: transform 0.3s ease-out;
  -moz-transition: transform 0.3s ease-out;
  -ms-transition: transform 0.3s ease-out;
  -o-transition: transform 0.3s ease-out;
  transition: transform 0.3s ease-out;
}
@media screen and (max-width: 880px) {
  #navbar {
    transform: inherit;
  }
}
#navbar.scrolled {
  transform: translateY(0);
}

.banner {
  height: 100vh;
  position: relative;
  background: #404041;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media screen and (max-width: 1024px) {
  .banner {
    background: #404041 url("/wp-content/themes/dw/images/home/mobile-banner.jpg") center center no-repeat;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
  }
}
@media screen and (max-width: 880px) {
  .banner {
    height: auto;
    padding-top: 300px;
  }
}
@media screen and (max-width: 400px) {
  .banner {
    padding-top: 200px;
  }
}
.banner:after {
  content: "";
  position: absolute;
  top: 0px;
  bottom: 0px;
  left: 0px;
  right: 0px;
  margin: auto;
  max-width: 1440px;
  width: 100%;
  border-left: 1px solid rgba(255, 255, 255, 0.2);
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}
@media screen and (max-width: 1440px) {
  .banner:after {
    border: none;
  }
}
@media screen and (max-width: 1020px) {
  .banner:after {
    background: #404041;
    opacity: 0.65;
  }
}
.banner .home-nav {
  position: relative;
  z-index: 9;
  padding: 30px 5%;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
}
@media screen and (max-width: 1280px) {
  .banner .home-nav {
    padding: 15px 5%;
  }
}
@media screen and (max-height: 740px) {
  .banner .home-nav {
    padding: 15px 5%;
  }
}
.banner .home-nav #header_nav {
  list-style-type: none;
}
.banner .home-nav #header_nav li a {
  color: white;
}
.banner .home-nav #header_nav li a:hover {
  color: #f7921d;
}
.banner .home-nav #header_nav li .sub-menu {
  border-top: 2px solid #f7921d;
}
.banner .home-nav #header_nav li .sub-menu a {
  color: #404041;
}
.banner .home-nav #header_nav li .sub-menu a:hover {
  color: #f7921d;
}
.banner .banner-text {
  position: relative;
  z-index: 9;
  max-width: 1440px;
  margin: 0 auto;
  padding: 120px 5%;
  width: 100%;
  display: flex;
  align-items: flex-end;
  flex-wrap: wrap;
}
@media screen and (max-width: 1280px) {
  .banner .banner-text {
    padding: 80px 5%;
  }
}
@media screen and (max-height: 740px) {
  .banner .banner-text {
    padding: 80px 5%;
  }
}
@media screen and (max-width: 880px) {
  .banner .banner-text {
    padding: 50px 6%;
    opacity: 1;
    transform: translateY(0px) scale(1);
  }
}
@media screen and (max-width: 650px) {
  .banner .banner-text {
    padding: 40px 6%;
  }
}
.banner .banner-text img {
  width: 500px;
  height: 157px;
  margin-right: 9%;
}
@media screen and (max-width: 1020px) {
  .banner .banner-text img {
    width: 360px;
    height: auto;
  }
}
@media screen and (max-width: 880px) {
  .banner .banner-text img {
    width: 300px;
  }
}
.banner .banner-text .banner-title {
  color: white;
  font-size: 24px;
  flex: 1;
  margin-bottom: -5px;
}
@media screen and (max-width: 1280px) {
  .banner .banner-text .banner-title {
    font-size: 18px;
  }
}
@media screen and (max-height: 740px) {
  .banner .banner-text .banner-title {
    font-size: 18px;
  }
}
@media screen and (max-width: 880px) {
  .banner .banner-text .banner-title {
    font-size: 16px;
  }
}
@media screen and (max-width: 650px) {
  .banner .banner-text .banner-title {
    width: 100%;
    flex: none;
    padding-top: 30px;
  }
}
.banner .video {
  position: absolute;
  bottom: 0px;
  left: 0px;
  right: 0px;
  top: 0px;
  z-index: 2;
  display: none;
  line-height: 0px;
  overflow: hidden;
}
@media screen and (max-width: 1024px) {
  .banner .video {
    display: none;
  }
}
.banner .video video {
  min-width: 100%;
  min-height: 100%;
  opacity: 0.35;
}
@media screen and (max-width: 1020px) {
  .banner .video video {
    display: none;
  }
}

.home-wrap {
  background: #f4f4f4;
}
.home-wrap .home-content {
  max-width: 1440px;
  margin: 0 auto;
  background: white;
  box-shadow: 0px 0px 70px rgba(0, 0, 0, 0.1);
}

.intro-home {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.intro-home.quote {
  padding: 0;
}
@media screen and (max-width: 650px) {
  .intro-home.quote .intro-text {
    padding: 30px;
  }
}
@media screen and (max-width: 1440px) {
  .intro-home {
    align-items: flex-start;
  }
}
.intro-home .intro-img {
  width: 50%;
  line-height: 0px;
}
@media screen and (max-width: 650px) {
  .intro-home .intro-img {
    width: 100%;
    order: 2;
  }
}
.intro-home .intro-text {
  width: 50%;
  padding: 50px 10% 50px 80px;
}
@media screen and (max-width: 1280px) {
  .intro-home .intro-text {
    padding: 35px 7% 50px 70px;
  }
}
@media screen and (max-width: 880px) {
  .intro-home .intro-text {
    padding: 20px 6% 30px 40px;
  }
}
@media screen and (max-width: 650px) {
  .intro-home .intro-text {
    width: 100%;
    order: 1;
    padding: 15px 6% 30px 6%;
  }
}
.intro-home .intro-text .primary-heading {
  max-width: 350px;
}

.newsletter-wrap {
  max-width: 1440px;
  margin: 0 auto;
  background: white;
}

.services {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding-bottom: 120px;
}
@media screen and (max-width: 1280px) {
  .services {
    padding-bottom: 70px;
  }
}
@media screen and (max-width: 880px) {
  .services {
    padding-bottom: 0px;
  }
}
.services .services-intro {
  padding: 80px 80px 80px 10%;
  width: 50%;
}
@media screen and (max-width: 1280px) {
  .services .services-intro {
    width: 40%;
    padding: 50px 70px 50px 7%;
  }
}
@media screen and (max-width: 880px) {
  .services .services-intro {
    width: 100%;
  }
}
.services .services-intro .intro-inner {
  max-width: 350px;
  padding-bottom: 50px;
}
@media screen and (max-width: 880px) {
  .services .services-intro .intro-inner {
    padding: 0px;
  }
}
.services .services-list {
  width: 50%;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  height: 825px;
}
@media screen and (max-width: 1280px) {
  .services .services-list {
    width: 60%;
  }
}
@media screen and (max-width: 880px) {
  .services .services-list {
    width: 100%;
    height: auto;
    flex-direction: row;
  }
}
.services .services-list .service {
  height: 275px;
  width: 50%;
  display: flex;
  align-items: flex-end;
  position: relative;
  overflow: hidden;
  background: center center no-repeat;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}
.services .services-list .service:first-child {
  margin-top: 200px;
}
@media screen and (max-width: 880px) {
  .services .services-list .service:first-child {
    margin: 0px;
  }
}
.services .services-list .service:after {
  content: "";
  position: absolute;
  top: 0px;
  bottom: 0px;
  left: 0px;
  right: 0px;
  background: white;
  opacity: 0.8;
  -webkit-transition: background 0.5s ease-out;
  -moz-transition: background 0.5s ease-out;
  -ms-transition: background 0.5s ease-out;
  -o-transition: background 0.5s ease-out;
  transition: background 0.5s ease-out;
}
@media screen and (max-width: 880px) {
  .services .services-list .service:after {
    background: #f7921d;
  }
}
.services .services-list .service:hover .service-text {
  height: 275px;
  align-items: center;
}
@media screen and (max-width: 880px) {
  .services .services-list .service:hover .service-text {
    height: 100%;
    align-items: flex-start;
  }
}
.services .services-list .service:hover .service-text .service-desc {
  display: block;
}
.services .services-list .service:hover .service-text .service-desc .service-inner {
  opacity: 1;
}
.services .services-list .service:hover .service-text span {
  background: none;
  color: white;
}
@media screen and (max-width: 880px) {
  .services .services-list .service:hover .service-text span {
    background: white;
    color: #404041;
  }
}
.services .services-list .service:hover .service-text span svg {
  transform: rotate(135deg);
}
.services .services-list .service:hover .service-text span svg polyline {
  fill: white;
}
@media screen and (max-width: 880px) {
  .services .services-list .service:hover .service-text span svg polyline {
    fill: #f7921d;
  }
}
.services .services-list .service:hover:after {
  background: #f7921d;
}
.services .services-list .service .service-text {
  position: relative;
  z-index: 9;
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  justify-content: flex-start;
  height: 75px;
  -webkit-transition: height 0.5s ease-out;
  -moz-transition: height 0.5s ease-out;
  -ms-transition: height 0.5s ease-out;
  -o-transition: height 0.5s ease-out;
  transition: height 0.5s ease-out;
}
@media screen and (max-width: 1020px) {
  .services .services-list .service .service-text {
    height: 62px;
  }
}
@media screen and (max-width: 880px) {
  .services .services-list .service .service-text {
    height: 100%;
  }
}
.services .services-list .service .service-text span {
  display: inline-block;
  font-size: 18px;
  padding: 26px 30px 26px 80px;
  background: white;
  font-weight: 700;
  color: #404041;
  background: white;
  position: relative;
  -webkit-transition: all 0.5s ease-out;
  -moz-transition: all 0.5s ease-out;
  -ms-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}
@media screen and (max-width: 1020px) {
  .services .services-list .service .service-text span {
    font-size: 16px;
    padding: 20px 25px 20px 55px;
  }
}
@media screen and (max-width: 880px) {
  .services .services-list .service .service-text span {
    padding: 15px 20px 15px 55px;
    width: 100%;
    background: rgba(255, 255, 255, 0.9);
  }
}
.services .services-list .service .service-text span svg {
  position: absolute;
  left: 22px;
  top: 0px;
  bottom: 0px;
  margin: auto;
  width: 34px;
  height: 34px;
  transform-origin: 50% 50%;
  -webkit-transition: all 0.5s ease-out;
  -moz-transition: all 0.5s ease-out;
  -ms-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}
@media screen and (max-width: 1020px) {
  .services .services-list .service .service-text span svg {
    position: absolute;
    left: 15px;
    width: 24px;
    height: 24px;
  }
}
.services .services-list .service .service-text span svg polyline {
  -webkit-transition: fill 0.5s ease-out;
  -moz-transition: fill 0.5s ease-out;
  -ms-transition: fill 0.5s ease-out;
  -o-transition: fill 0.5s ease-out;
  transition: fill 0.5s ease-out;
}
.services .services-list .service .service-text .service-desc {
  color: white;
  margin: 0px;
  -webkit-transition: all 0.5s ease-out;
  -moz-transition: all 0.5s ease-out;
  -ms-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}
.services .services-list .service .service-text .service-desc .service-inner {
  margin: -10px 0 0 0px;
  padding: 0px 40px 40px 80px;
  display: block;
  opacity: 0;
  -webkit-transition: opacity 0.2s ease-out;
  -moz-transition: opacity 0.2s ease-out;
  -ms-transition: opacity 0.2s ease-out;
  -o-transition: opacity 0.2s ease-out;
  transition: opacity 0.2s ease-out;
}
@media screen and (max-width: 1020px) {
  .services .services-list .service .service-text .service-desc .service-inner {
    padding: 0px 25px 25px 55px;
  }
}
@media screen and (max-width: 880px) {
  .services .services-list .service .service-text .service-desc .service-inner {
    opacity: 1;
    margin: 20px 0px 0px 20px;
  }
}
@media screen and (max-width: 650px) {
  .services .services-list .service .service-text .service-desc .service-inner {
    padding: 20px 20px 20px 20px;
    margin: 0px;
  }
}
.services .services-list .service .service-text .service-desc p {
  display: inline-block;
  margin-bottom: 0px;
}

/*# sourceMappingURL=home.css.map */
