/*
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 )
}
*/
.home-banner {
  position: relative;
  padding: 180px 15% 180px;
  background: #313131;
  color: white;
  position: relative;
  overflow: hidden;
}

@media screen and (max-width: 1450px) {
  .home-banner {
    padding: 180px 10% 150px;
  }
}

@media screen and (max-width: 1450px) {
  .home-banner {
    padding: 150px 10% 100px;
  }
}

@media screen and (max-width: 800px) {
  .home-banner {
    padding: 110px 7% 60px;
  }
}

.home-banner .banner-text {
  max-width: 650px;
  position: relative;
  z-index: 9;
  font-size: 18px;
}

@media screen and (max-width: 1450px) {
  .home-banner .banner-text {
    max-width: 500px;
  }
}

.home-banner .banner-text p {
  margin-bottom: 20px;
}

.home-banner .home-video {
  position: absolute;
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
  opacity: 0.5;
}

@media screen and (max-width: 800px) {
  .home-banner .home-video {
    background: url("https://greenpathenergy.com/wp-content/uploads/2021/03/mobile-banner.png") center center no-repeat;
    background-size: cover;
  }
}

.home-banner .home-video video {
  min-width: 100%;
  min-height: 100%;
  width: 100%;
}

@media screen and (max-width: 1050px) {
  .home-banner .home-video video {
    width: 150%;
  }
}

@media screen and (max-width: 800px) {
  .home-banner .home-video video {
    display: none;
  }
}

.mission {
  display: flex;
  flex-wrap: wrap;
  padding: 90px;
  background: #85bf40 url("/wp-content/themes/greenpath/images/shell/watermark.png") left 5% bottom no-repeat;
  color: white;
  align-items: center;
}

@media screen and (max-width: 1280px) {
  .mission {
    padding: 50px;
  }
}

@media screen and (max-width: 800px) {
  .mission {
    padding: 40px 7%;
  }
}

.mission .mission-title {
  width: 25%;
  text-align: right;
  text-transform: uppercase;
  letter-spacing: 4px;
  font-size: 22px;
  padding-right: 60px;
  font-weight: 300;
}

@media screen and (max-width: 1280px) {
  .mission .mission-title {
    padding-right: 40px;
  }
}

@media screen and (max-width: 800px) {
  .mission .mission-title {
    width: 100%;
    padding: 0px 0px 15px 0px;
    text-align: left;
    font-size: 20px;
  }
}

.mission .mission-text {
  padding-right: 100px;
  width: 75%;
  font-size: 28px;
  padding-left: 60px;
  font-weight: 300;
  border-left: 1px solid rgba(255, 255, 255, 0.5);
}

@media screen and (max-width: 1450px) {
  .mission .mission-text {
    font-size: 20px;
  }
}

@media screen and (max-width: 1280px) {
  .mission .mission-text {
    padding-left: 40px;
    padding-right: 40px;
    font-size: 18px;
  }
}

@media screen and (max-width: 800px) {
  .mission .mission-text {
    width: 100%;
    padding: 0px;
    border: none;
    font-size: 16px;
  }
}

.mission .mission-text p {
  margin: 0px;
}
