/*
	Theme Name: Green Imaging
	Description: This is the Green Imaging theme created for the Genesis Framework.
	Author: Nick Hempsey
	Author URI: http://www.jeffpayne.net/
	Version: 2.0.0
 
	Tags: one-column, two-columns, three-columns, custom-menu, full-width-template, sticky-post, theme-options, threaded-comments, translation-ready
 
	Template: genesis
	Template Version: 2.0.0
 
	License: GPL-2.0+
	License URI: http://www.opensource.org/licenses/gpl-license.php
*/

@import "css/global.css";

@import "css/magnific.css";

@import "css/uploadifive.css";

/* Custom Styles */

/* Single Post Template */
.single-post .hero {
  margin-bottom: 0;
}
.single-post .hero__row {
  display: grid;
  grid-template-columns: 0.4fr 0.6fr;
  max-width: 1260px;
  padding: 4rem 20px;
  margin-left: auto;
  margin-right: auto;
}
.single-post .hero__content-wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.single-post .hero__category {
  font-size: 24px;
  font-weight: 600;
  text-transform: uppercase;
}
.single-post .fl-row-content {
  max-width: 1260px !important;
}
.single-post .hero__content-wrap {
  padding: 2rem;
}
.single-post .hero__content-wrap h1 {
  font-size: 40px;
  font-weight: 600;
  color: #008f40;
  margin-bottom: 0;
}
.single-post .hero__ .post-type-archive-staff .site-inner {
  max-width: calc(900px + 18rem);
}
.single-post .hero__img {
  /* height: 47rem; */
  height: 22rem;
  object-fit: cover;
}
.single-post .hero__img-wrap {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 840px) {
  .single-post .hero__row {
    grid-template-columns: 1fr;
  }
  .single-post .hero__content-wrap {
    order: 1;
  }
  .single-post .hero__row {
    padding: 2rem 2rem 0;
  }
  .single-post .hero {
    margin-bottom: 2rem;
  }
  .single-post .hero__category {
    font-size: 16px;
    margin-bottom: 1rem;
  }
  .single-post .hero__content-wrap {
    padding: 2rem 0;
  }
  .single-post .hero__content-wrap h1 {
    font-size: 28px;
  }
  .single-post .hero__img {
    height: auto;
  }
}

/* Related Posts Block */
#related {
  max-width: 1260px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  padding: 0 40px 8rem;
}
#related.featured-insights {
  padding: 8rem 40px;
}
#related .related__header-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 4rem;
}
#related .swiper-slide {
  height: auto;
}
#related .swiper-button-next,
#related .swiper-button-prev {
  color: #001d4f;
  height: 33px;
  width: 33px;
  background-size: 33px 33px;
}
#related .swiper-button-next {
  background-image: url('data:image/svg+xml,<svg width="33" height="33" fill="none" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="M20.096 16.5 6.875 4.397l2.728-3.022L26.125 16.5 9.603 31.625l-2.728-3.022L20.095 16.5Z" fill="%23001D4F"/></svg>');
  right: 0;
}
#related .swiper-button-next:hover {
  background-image: url('data:image/svg+xml,<svg width="33" height="33" fill="none" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="M20.096 16.5 6.875 4.397l2.728-3.022L26.125 16.5 9.603 31.625l-2.728-3.022L20.095 16.5Z" fill="%23008F40"/></svg>');
}
#related .swiper-button-prev {
  background-image: url('data:image/svg+xml,<svg width="33" height="33" fill="none" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="m12.904 16.5 13.221 12.103-2.728 3.022L6.875 16.5 23.397 1.375l2.728 3.022L12.905 16.5Z" fill="%23001D4F"/></svg>');
  left: 0;
}
#related .swiper-button-prev:hover {
  background-image: url('data:image/svg+xml,<svg width="33" height="33" fill="none" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="m12.904 16.5 13.221 12.103-2.728 3.022L6.875 16.5 23.397 1.375l2.728 3.022L12.905 16.5Z" fill="%23008F40"/></svg>');
}

@media screen and (max-width: 840px) {
  #related .related__header-inner {
    margin-bottom: 2rem;
  }
  #related .related__heading {
    font-size: 2.4rem;
  }
}

/* Blog Cards */
.blog__posts-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 4rem;
}
.blog__card {
  display: flex;
  flex-direction: column;
  border-bottom: none;
}
.blog__img {
  height: 32rem;
  width: 100%;
  object-fit: cover;
}
.blog__card-inner {
  display: flex;
  flex-direction: column;
  height: 100%;
  border-bottom: 2px solid #008f40;
}
.blog__card-image-wrap {
  position: relative;
}
.blog__card-image-wrap:after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 1.9rem;
  background-color: #001d4f;
}
.blog__card-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1rem 0;
  height: 100%;
}
.blog__title {
  font-size: 2rem;
  font-weight: 600;
  color: #008f40;
}
.blog__link {
  margin-top: auto;
  margin-left: auto;
  text-align: right;
  display: block;
}
.blog__link-text {
  font-size: 1.6rem;
  font-weight: 700;
  color: #9b9b9b;
  text-transform: uppercase;
}
.blog__link:hover .blog__link-text {
  color: #001d4f;
}
@media screen and (max-width: 736px) {
  .blog__posts-wrapper {
    grid-template-columns: 1fr;
    grid-gap: 2rem;
  }
  .blog__card {
    margin-bottom: 0;
  }
  .blog__img {
    height: 28rem;
  }
}
/* Blog Page */
#insights {
  max-width: 1260px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 4rem;
  padding-bottom: 8rem;
}
#insights .blog__inner h2 {
  margin-bottom: 4rem;
}
#insights .blog__card {
  display: flex;
  flex-direction: column;
  border-bottom: none;
}
.facetwp-counter {
  display: none;
}
.facetwp-facet-categories {
  display: flex;
  flex-wrap: wrap;
}
.facetwp-facet-categories .facetwp-link {
  padding-right: 2.5rem;
  font-size: 2rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #9b9b9b;
}
.facetwp-facet-categories .facetwp-link:hover {
  color: #001d4f;
}
.facetwp-facet-posts_pagination {
  display: flex;
  justify-content: center;
}
.facetwp-page {
  color: #9b9b9b;
}
.facetwp-page.active {
  color: #008f40;
}
.facetwp-page.prev {
  height: 33px;
  width: 33px;
  color: transparent;
  background-image: url('data:image/svg+xml,<svg width="33" height="33" fill="none" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="m12.904 16.5 13.221 12.103-2.728 3.022L6.875 16.5 23.397 1.375l2.728 3.022L12.905 16.5Z" fill="%23001D4F"/></svg>');
}
.facetwp-page.prev:hover {
  background-image: url('data:image/svg+xml,<svg width="33" height="33" fill="none" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="m12.904 16.5 13.221 12.103-2.728 3.022L6.875 16.5 23.397 1.375l2.728 3.022L12.905 16.5Z" fill="%23008F40"/></svg>');
}
.facetwp-page.next {
  height: 33px;
  width: 33px;
  color: transparent;
  background-image: url('data:image/svg+xml,<svg width="33" height="33" fill="none" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="M20.096 16.5 6.875 4.397l2.728-3.022L26.125 16.5 9.603 31.625l-2.728-3.022L20.095 16.5Z" fill="%23001D4F"/></svg>');
}
.facetwp-page.next:hover {
  height: 33px;
  width: 33px;
  color: transparent;
  background-image: url('data:image/svg+xml,<svg width="33" height="33" fill="none" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="M20.096 16.5 6.875 4.397l2.728-3.022L26.125 16.5 9.603 31.625l-2.728-3.022L20.095 16.5Z" fill="%23008F40"/></svg>');
}
#insights .facetwp-facet-posts_search {
  margin-bottom: 8rem;
}
#insights .facetwp-search {
  background-color: #d9d9d9;
  font-size: 2rem !important;
  font-weight: 700;
  color: #9b9b9b;
  border: none;
  border-radius: 0;
}
#insights .facetwp-search::placeholder {
  font-size: 2rem !important;
  font-weight: 700;
  color: #9b9b9b;
}
.facetwp-facet-categories_dropdown {
  display: none;
}

@media screen and (max-width: 1260px) {
  #insights {
    padding-left: 20px;
    padding-right: 20px;
  }
  #insights .blog__card {
    margin-bottom: 0;
  }
  #insights .facetwp-input-wrap {
    width: 100%;
  }
}
@media screen and (max-width: 736px) {
  body.blog .hero {
    margin-bottom: 2rem;
  }
  .facetwp-facet-categories_dropdown {
    display: block;
  }
  .facetwp-facet-categories_dropdown .fs-wrap {
    width: 100%;
  }
  .facetwp-facet-categories {
    flex-wrap: nowrap;
    overflow-x: scroll;
    padding: 1rem 0;
  }
  .facetwp-facet-categories .facetwp-link {
    text-wrap: nowrap;
    width: 100%;
  }
}

/* Staff Page */
.post-type-archive-staff .content > h2 {
  margin-left: 3rem;
}
.post-type-archive-staff .staff-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding-bottom: 30px;
}
.post-type-archive-staff .staff {
  width: 300px;
  border-bottom: none;
  margin-right: 3rem;
  margin-left: 3rem;
  margin-bottom: 15px;
}
.post-type-archive-staff .entry-header {
  display: flex;
  flex-direction: column;
  border-bottom: 3px solid #008f40;
  width: 100%;
  height: 100%;
}
.post-type-archive-staff .entry-title {
  display: flex;
  flex-direction: column;
  padding-left: 0;
  padding-bottom: 12px;
  flex-grow: 1;
}
.post-type-archive-staff .entry-title h2 {
  line-height: 1;
}
.post-type-archive-staff .entry-title h2 a {
  color: #008f40;
  font-size: 26px;
  line-height: 1;
}
.post-type-archive-staff .entry-title .position {
  color: #001d4f;
  font-size: 16px;
  text-transform: uppercase;
  font-weight: bold;
  margin-top: 5px;
  margin-bottom: 5px;
}
.post-type-archive-staff .entry-title .email {
  color: #001d4f;
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 30px;
}
.post-type-archive-staff .entry-featured-image {
  width: 100%;
}
.post-type-archive-staff .entry-featured-image img {
  width: 100%;
  max-height: 300px;
  object-fit: cover;
  border-bottom: 19px solid #001d4f;
}
.post-type-archive-staff .staff-read-more {
  text-align: right;
  display: block;
  font-size: 14px;
  font-weight: bold;
  color: #9b9b9b;
  margin-left: auto;
  width: max-content;
  margin-top: auto;
}
.post-type-archive-staff .staff-read-more:hover {
  color: #001d4f;
}
.swiper-staff-wrap .swiper-staff .name-plate {
  left: 0;
  margin-left: 0;
}
.swiper-staff-wrap .swiper-staff .swiper-slide img {
  width: 100%;
}
@media (max-width: 500px) {
  .post-type-archive-staff .staff {
    width: 100%;
    margin-right: 0;
    margin-left: 0;
  }
  .post-type-archive-staff .content > h2 {
    margin-left: 0;
  }
  .post-type-archive-staff .entry-title h2 {
    line-height: 1;
  }
  .post-type-archive-staff .entry-title h2 a {
    font-size: 24px;
  }
  .post-type-archive-staff .entry-title .position {
    font-size: 14px;
  }
}

.site-header .title-btn {
  float: right;
  width: 28%;
  text-align: right;
  margin-top: 2rem;
}
.site-header .widget-area {
  margin-left: 0;
  padding-left: 2.6%;
  width: 250px;
}
@media (max-width: 737px) {
  .site-header .title-btn {
    float: none;
    margin-left: auto;
    margin-right: auto;
    width: 75%;
    text-align: center;
  }
}
.gi-locations {
  display: grid;
}
.locations-banner {
  background: #001d4f;
}
.locations-banner__header {
  background-color: #008f40;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 4rem 2rem;
  text-align: center;
}
.locations-banner__header-inner {
  max-width: 1300px;
}
.locations-banner__header h2 {
  color: #fff;
  font-size: 30px;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.locations-banner__header p {
  max-width: 1100px;
}
.locations-banner__header strong {
  font-weight: 700;
}
.locations-banner__header-mobile-content {
  display: none;
}
.locations-banner__steps {
  background-color: #001d4f;
}
.locations-banner__inner {
  color: #fff;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding-top: 4rem;
  max-width: 1300px;
  margin: 0 auto;
}
.locations-banner__step:not(:last-child) {
  border-right: 2px solid #d9d9d9;
}
.locations-banner__step {
  padding: 2rem 2rem;
  height: 100%;
}
.locations-banner__step-content {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.locations-banner__steps h3 {
  color: #fff;
  font-weight: 700;
  font-size: 24px;
  margin-bottom: 1rem;
}
.locations-banner__steps p {
  font-size: 18px;
}
.locations-banner__steps a {
  text-decoration: underline;
}
.locations-banner__steps a:hover {
  color: #fff;
  opacity: 0.7;
}
@media (max-width: 737px) {
  .locations-banner__header {
    text-align: left;
  }
  .locations-banner__header-content {
    display: none;
  }
  .locations-banner__header-mobile-content {
    display: block;
  }
  .locations-banner__steps {
    order: 1;
  }
  .locations-banner__inner {
    grid-template-columns: 1fr;
    padding-top: 0;
    padding-bottom: 4rem;
  }
  .locations-banner__step:not(:last-child) {
    border-right: none;
    position: relative;
  }
  .locations-banner__step:not(:last-child):after {
    content: "";
    display: block;
    width: 50%;
    height: 2px;
    background-color: #d9d9d9;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  .locations-banner__step {
    padding: 3rem 2rem;
  }
}
