@charset "UTF-8";
/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/
/* COLORS */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline; }

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block; }

body {
  line-height: 1;
  font-family: 'Source Sans Pro', sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

input {
  -webkit-appearance: none;
  border-radius: 0; }

ol, ul {
  list-style: none;
  margin-left: 0;
  padding-left: 0; }

li {
  font-size: 19px;
  line-height: 27px;
  font-family: 'Source Sans Pro', sans-serif;
  font-weight: 400;
  margin-bottom: 5px; }

blockquote, q {
  quotes: none; }

blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none; }

table {
  border-collapse: collapse;
  border-spacing: 0; }

input {
  -webkit-appearance: none;
  border-radius: 0; }

img {
  border: 0; }

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Source Sans Pro', sans-serif;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

h2 {
  font-weight: 300;
  font-size: 36px;
  color: #5A6E87; }

h2.error {
  margin: 100px auto; }

h3 {
  font-weight: 300;
  font-size: 32px;
  color: #5A6E87; }

h4 {
  font-weight: 300;
  font-size: 28px;
  color: #5A6E87; }

h5 {
  font-weight: 300;
  font-size: 24px;
  color: #5A6E87; }

.clear {
  clear: both;
  position: relative; }

.alignright {
  float: right;
  margin: 0 0 10px 20px; }

.alignleft {
  float: left;
  margin: 0 20px 10px 0; }

p {
  font-size: 19px;
  line-height: 27px;
  margin-bottom: 25px;
  font-family: 'Source Sans Pro', sans-serif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

input {
  -webkit-appearance: none;
  border-radius: 0; }

em {
  font-style: italic; }

strong {
  font-weight: bold; }

a {
  color: #0A8288;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  text-decoration: none; }

a:hover {
  color: #005487;
  cursor: pointer; }

/*****************************************

CUSTOM STYLES

*****************************************/
/************
  Header
************/
header {
  width: 100%;
  position: relative;
  z-index: 10;
  padding: 14px 0 15px 0;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  background-color: #fff;
  -webkit-box-shadow: 0px 2px 10px 0px rgba(0, 0, 0, 0.4);
  box-shadow: 0px 2px 10px 0px rgba(0, 0, 0, 0.4); }

header .header-left {
  position: relative;
  padding-left: 2.5%; 
  width: 100%; 
}

header .header-left .logo {
  position: absolute;
    top: 16%;
  z-index: 999 !important; }

header .header-left .logo img {
  width: auto;
    height: 65px;
  position: relative;
  z-index: 999 !important;
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out; }

header .header-left .logo img:hover {
  opacity: 0.8; }

header .header-right {
  width: 100%;
  position: relative;
  right: 2.5%;
  top: 8px; }

header .header-right nav.main {
  text-align: right; }

header .header-right nav.main ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  justify-content: flex-end;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  text-align: right;
  margin-right: 0; }

header .header-right nav.main ul li {
  margin-left: 80px; }

header .header-right nav.main ul li a {
  color: #052D44;
  font-weight: 400;
  font-size: 20px;
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out; }

header .header-right nav.main ul li a:hover {
  opacity: 0.7;
  cursor: pointer; }

header .header-right nav.social {
  text-align: right; }

header .header-right nav.social ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  justify-content: flex-end;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  text-align: right;
  margin: 0 0 10px 0; }

header .header-right nav.social ul li {
  margin-left: 10px; }

header .header-right nav.social ul li.houzz {
  margin-right: 20px;
  margin-top: -11px; }

header .header-right nav.social ul li.houzz img {
  width: 75px;
  height: auto; }

header .header-right nav.social ul li img {
  width: 31px;
  height: 31px;
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out; }

header .header-right nav.social ul li img:hover {
  opacity: 0.7;
  cursor: pointer; }

.mobile-menu,
.slicknav_menu {
  display: none;
  position: relative;
  height: 5px; }

.slicknav_menu {
  position: absolute !important;
  z-index: 99 !important;
  right: 0;
  top: 42px;
  width: 100%;
  background-color: transparent;
  padding: 0; }

.slicknav_menu nav.mobile-main ul {
  margin-bottom: 15px !important; }

.slicknav_menu .slicknav_nav {
  background-color: #fff;
  -webkit-box-shadow: 0px 2px 1px 1px rgba(0, 0, 0, 0.12);
  box-shadow: 0px 2px 1px 1px rgba(0, 0, 0, 0.12); }

.slicknav_menu .slicknav_nav ul {
  margin-left: 0; }

.slicknav_menu .slicknav_nav a {
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  background: transparent !important;
  border-radius: 0; }

.slicknav_menu .slicknav_nav a:hover {
  opacity: 0.7;
  cursor: pointer; }

.slicknav_menu .slicknav_menutxt {
  color: #052D44;
  text-shadow: none;
  font-family: 'Source Sans Pro', sans-serif;
  font-weight: 600;
  letter-spacing: 1.5px; }

.slicknav_menu .slicknav_icon-bar {
  color: #052D44;
  background-color: #052D44;
  text-shadow: none; }

.slicknav_menu .slicknav_btn {
  background-color: transparent;
  border-radius: 0;
  margin-bottom: 38px; }

.slicknav_menu nav.mobile-social {
  text-align: center;
  width: 300px;
  max-width: 95%;
  margin: 0 auto; }

.slicknav_menu nav.mobile-social ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  /* works with row or column */
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
  margin: 0 auto 20px auto; }

.slicknav_menu nav.mobile-social ul li {
  margin-left: 3px;
  margin-right: 3px;
  width: 45px; }

.slicknav_menu nav.mobile-social ul li:first-child {
  margin-left: 0; }

.slicknav_menu nav.mobile-social ul li a {
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out; }

.slicknav_menu nav.mobile-social ul li a:hover {
  opacity: 0.8;
  background: transparent !important;
  border-radius: 0 !important; }

.slicknav_menu nav.mobile-social ul li a img {
  width: 32px;
  height: 32px;
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out; }

.slicknav_menu nav.mobile-social ul li a img:hover {
  opacity: 0.7;
  cursor: pointer;
  background-color: transparent; }

.slicknav_menu nav.mobile-main ul {
  text-align: center;
  margin-bottom: 20px; }

.slicknav_menu nav.mobile-main ul li a {
  color: #052D44; }

/************
  Home Page Slides
************/
@-webkit-keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    -webkit-transform: translateY(0); }
  40% {
    -webkit-transform: translateY(-20px); }
  60% {
    -webkit-transform: translateY(-15px); } }

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    -webkit-transform: translateY(0);
    transform: translateY(0); }
  40% {
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px); }
  60% {
    -webkit-transform: translateY(-15px);
    transform: translateY(-15px); } }

.home-slides {
  height: calc(100vh - 160px);
  background-size: cover;
  background-position: center center; }

.home-slides h1 {
  color: #fff;
  position: relative;
  margin: 0 auto;
  z-index: 20;
  font-size: 90px;
  top: 36vh;
  text-align: center;
  text-shadow: 1px 1px 5px #646464; }

.home-slides .down-arrow {
  position: absolute;
  bottom: 20px;
  left: 48.5%;
  padding: 14px 12px 8px 12px;
  border-radius: 200px;
  background-color: white;
  /* -webkit-animation-duration: 1.9s;
    animation-duration: 1.9s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-iteration-count: 8;
    animation-iteration-count: 8;
    -webkit-animation-delay: 1s;
    animation-delay: 1s;
    -webkit-animation-name: bounce;
    animation-name: bounce; */ }

.home-slides .down-arrow img {
  width: 28px;
  height: 28px; }

.page-id-1021 .full-center .content,
.page-id-1021 .full-center .content p,
.page-id-1021 .full-center .content h3,
.page-id-1021 .full-center .content ol,
.page-id-1021 .full-center .content ol li {
	text-align: left;
}
.page-id-1021 .full-center .content ol {
	list-style-type: decimal;
	text-align: left;
	margin-top: 5px;
	position: relative;
	display: block;
	margin-left: 40px;
}
.page-id-1021 .full-center .content ol li {
	list-style-type: decimal;
	text-align: left;
	margin: 0 0 15px 0;
}
.page-id-1021 .full-center .content h3 {
	margin: 10px 0 25px 0;
	font-size: 40px;
	color: #052D44;
}

  body.page-id-1005 .full-center .content {
  	text-align: left;
  }
  body.page-id-1005 .full-center .content ul {
   margin-left: 50px;
  }
  body.page-id-1005 .full-center .content ul li {
  	list-style: disc;
  }

/************
  Centered Content
************/
.full-center {
  position: relative;
  z-index: 50;
  padding: 50px 0 60px 0;
  margin: 0 auto;
  width: 900px;
  max-width: 90%; }

/* .full-center .content {
  text-align: center; } */

.woocommerce-cart .full-center .content {
  text-align: left;
}

.full-center .content p {
  margin-bottom: 60px; }

.full-center .content h1 {
  font-size: 50px;
  color: #052D44;
  line-height: 65px;
  margin-bottom: 25px; }

.full-center .content .button {
  letter-spacing: 2px; }

.full-center .content .button a {
  text-transform: uppercase;
  font-size: 16px;
  color: #fff;
  padding: 8px 15px 9px 15px;
  background-color: #5A6E87;
  font-weight: 400;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  white-space: nowrap; }

.full-center .content .button a:hover {
  background-color: #052D44;
  cursor: pointer; }

.button {
  letter-spacing: 2px; }

.button a {
  text-transform: uppercase;
  font-size: 16px;
  color: #fff;
  padding: 8px 15px 9px 15px;
  background-color: #5A6E87;
  font-weight: 400;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  white-space: nowrap; }

.button a:hover {
  background-color: #052D44;
  cursor: pointer; }

/************
  Home Services
************/
ul.home-services {
  width: 1200px;
  max-width: 95%;
  padding: 0;
  margin: 60px auto;
  position: relative; }

ul.home-services li {
  position: relative;
  margin-bottom: 60px; }

ul.home-services li .content-container {
  width: 48%; }

ul.home-services li .content-container h2 {
  color: #5A6E87;
  font-size: 45px;
  margin-bottom: 40px;
  font-weight: 300; }

ul.home-services li .content-container .content ul {
  display: inline-block;
  counter-reset: foo; }

ul.home-services li .content-container .content ul li {
  list-style: none;
  counter-increment: foo;
  display: inline-block;
  position: relative;
  padding-left: 25px;
  vertical-align: top;
  margin-bottom: 5px;
  width: 44%; }

ul.home-services li .content-container .content ul li:first-child {
  margin: 0; }

ul.home-services li .content-container .content ul li:before {
  position: absolute;
  margin-left: -30px;
  padding-right: .3em;
  content: "•";
  width: 20px;
  height: 20px;
  text-align: center;
  color: #000; }

ul.home-services li .image-container {
  width: 48%; }

ul.home-services #service-0,
ul.home-services #service-3 {
  margin-bottom: 180px; }

ul.home-services #service-0 .image-container,
ul.home-services #service-3 .image-container {
  position: relative;
  float: left; }

ul.home-services #service-0 .image-container .image-one,
ul.home-services #service-3 .image-container .image-one {
  width: 400px;
  height: 275px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10; }

ul.home-services #service-0 .image-container .image-two,
ul.home-services #service-3 .image-container .image-two {
  width: 315px;
  height: 210px;
  position: absolute;
  z-index: 20;
  right: 0;
  top: 120px;
  border: 5px solid #fff; }

ul.home-services #service-0 .content-container,
ul.home-services #service-3 .content-container {
  float: right; }

ul.home-services #service-1,
ul.home-services #service-4 {
  margin-bottom: 180px; }

ul.home-services #service-1 .image-container,
ul.home-services #service-4 .image-container {
  position: relative;
  float: right; }

ul.home-services #service-1 .image-container .image-one,
ul.home-services #service-4 .image-container .image-one {
  width: 500px;
  height: 340px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10; }

ul.home-services #service-1 .image-container .image-two,
ul.home-services #service-4 .image-container .image-two {
  width: 210px;
  height: 210px;
  position: absolute;
  z-index: 20;
  right: 0;
  top: -60px;
  border: 5px solid #fff; }

ul.home-services #service-1 .content-container,
ul.home-services #service-4 .content-container {
  float: left; }

ul.home-services #service-2,
ul.home-services #service-5 {
  margin-bottom: 180px; }

ul.home-services #service-2 .image-container,
ul.home-services #service-5 .image-container {
  position: relative;
  float: left; }

ul.home-services #service-2 .image-container .image-one,
ul.home-services #service-5 .image-container .image-one {
  width: 340px;
  height: 300px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
  -webkit-transform: translateY(7px);
  -ms-transform: translateY(7px);
  transform: translateY(7px); }

ul.home-services #service-2 .image-container .image-two,
ul.home-services #service-5 .image-container .image-two {
  width: 350px;
  height: 210px;
  position: absolute;
  z-index: 20;
  right: 0;
  top: 160px;
  border: 5px solid #fff; }

ul.home-services #service-2 .content-container,
ul.home-services #service-5 .content-container {
  float: right; }

.image-one,
.image-two {
  -webkit-transition-timing-function: ease-in-out;
  -o-transition-timing-function: ease-in-out;
  transition-timing-function: ease-in-out;
  -webkit-transition: 1.4s;
  -o-transition: 1.4s;
  transition: 1.4s; }

ul.home-services li .content-container .content ul li {
  margin-bottom: 5px !important; }

/************
  Featured Projects
************/
ul.featured-projects {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
  -ms-flex-line-pack: center;
  align-content: center;
  background-color: #fff;
  position: relative;
  top: 100px;
  width: calc(100% - 8px);
  margin: 0 auto 150px auto; }

ul.featured-projects li {
  width: calc(25% - 8px);
  padding: 0;
  border-left: 4px solid #fff;
  border-right: 4px solid #fff;
  border-bottom: 3px solid #fff;
  position: relative;
  overflow: hidden; }

ul.featured-projects li .project-single:hover h3 {
  opacity: 10;
  cursor: pointer; }

ul.featured-projects li .project-single h3 {
  opacity: 0;
  color: #fff;
  text-align: center;
  width: 96%;
  line-height: 35px;
  font-size: 24px;
  letter-spacing: 0.5px;
  -webkit-transition: all 0.2s ease-in;
  -o-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
  background-color: rgba(19, 133, 140, 0.8);
  padding: 42% 2%;
  font-weight: 400;
  height: 50px; }

/************
  Home Testimonials
************/
#homeTestimonials {
  position: relative;
  top: 0px;
  margin: 0 auto;
  width: 800px;
  max-width: 60%;
  margin-bottom: 100px; }

#homeTestimonials .open-quote {
  position: absolute;
  left: -100px;
  top: 30px;
  font-size: 100px;
  color: #0A8288;
  font-weight: 600; }

ul.home-testimonials {
  position: relative;
  top: 100px; }

ul.home-testimonials li {
  vertical-align: top; }

ul.home-testimonials li .content {
  text-align: center;
  min-height: 280px; }

ul.home-testimonials li .content p {
  text-align: center; }

ul.home-testimonials li .content p.name {
  margin-bottom: 0px;
  color: #052D44; }

ul.home-testimonials li .content p.location {
  margin-bottom: 0;
  text-transform: uppercase;
  color: #052D44; }

.flexslider {
  border: none !important;
  border-radius: none !important; }

.flex-control-paging li a.flex-active,
.flex-control-paging li a:hover {
  background-color: #0A8288;
  -webkit-box-shadow: none !important;
  box-shadow: none !important; }

.flex-control-paging li a {
  background-color: rgba(19, 133, 140, 0.6);
  -webkit-box-shadow: none !important;
  box-shadow: none !important; }

.testimonial-cta {
  width: 100%;
  margin: 25px auto 115px auto;
  text-align: center; }

.testimonial-cta .button {
  letter-spacing: 2px; }

.testimonial-cta .button a {
  text-transform: uppercase;
  font-size: 16px;
  color: #fff;
  padding: 8px 15px 9px 15px;
  background-color: #0A8288;
  font-weight: 400;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  white-space: nowrap; }

.testimonial-cta .button a:hover {
  background-color: #5A6E87;
  cursor: pointer; }

/************
  Footer
************/
.ftr-cta {
  background: url("assets/images/cta-bg-texture.png");
  background-position: center bottom;
  background-repeat: repeat-x; }
  .careers-home-cta {
    margin-bottom: -94px;
    margin-top: 40px
  }

.ftr-cta .cta-flex {
  margin: 0 auto;
  width: 800px;
  max-width: 90%;
  padding: 70px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-align: center;
  -webkit-box-align: center;
  align-items: center;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  -webkit-justify-content: space-around;
  position: relative; }

.ftr-cta .cta-flex h2 {
  color: #5A6E87;
  font-size: 48px;
  text-align: center; }

footer.main {
  width: 100%;
  background: url("assets/images/ftr-bg-texture.png");
  background-position: center bottom;
  position: relative;
  padding: 2.5% 0; }

footer.main .ftr-flex {
  width: 90%;
  padding: 2.5%;
  margin: 0 auto;
  background-color: #052D44;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  -ms-flex-align: center;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  position: relative; }

footer.main .ftr-flex .ftr-left {
  position: relative; }

footer.main .ftr-flex .ftr-left .contact-info {
  border-bottom: 1px solid #fff;
  margin-bottom: 25px; }

footer.main .ftr-flex .ftr-left .contact-info p {
  font-size: 24px;
  line-height: 34px;
  font-weight: 300;
  color: #fff;
  letter-spacing: 0.3px;
  margin-bottom: 25px; }

footer.main .ftr-flex .ftr-left .contact-info a {
  color: #fff;
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out; }

footer.main .ftr-flex .ftr-left .contact-info a:hover {
  color: #ddd; }

footer.main .ftr-flex .ftr-left .copyright {
  color: #fff;
  font-size: 14px;
  letter-spacing: 0.3px;
  font-weight: 400; }

footer.main .ftr-flex .ftr-left .copyright a {
  color: #fff;
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out; }

footer.main .ftr-flex .ftr-left .copyright a:hover {
  color: #ddd; }

footer.main .ftr-flex .ftr-right h3 {
  color: #fff;
  font-size: 22px;
  letter-spacing: 0.3px;
  font-weight: 300;
  text-align: right;
  margin-bottom: 25px; }

footer.main .ftr-flex .ftr-right ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  -ms-flex-align: center;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  position: relative;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap; }

footer.main .ftr-flex .ftr-right ul li {
  margin-left: 20px; }

footer.main .ftr-flex .ftr-right ul li img {
  height: 60px;
  width: auto; }

/************
  Secondary Page Headers
************/
.secondary-photo-header {
  position: relative;
  width: 100%; }

.secondary-photo-header h1 {
  color: #fff;
  font-weight: 300;
  font-size: 60px;
  padding: 120px 0;
  text-align: center;
  text-shadow: 1px 1px 5px #646464; }

.secondary-photo-header .note {
  display: block;
  font-size: 20px;
  margin-top: 10px;
  font-style: italic;
}

.portfolio-header h1 {
  padding: 80px 0; }

/************
  About Page
************/
.team-members {
  width: 100%;
  margin: 100px auto 0 auto; }

.team-members ul li.member {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-justify-content: center;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-align-items: flex-start;
  position: relative;
  margin-bottom: 120px;
  vertical-align: top; }

.team-members ul li.member .team-photo {
  width: 39%; }

.team-members ul li.member .team-photo img {
  width: 100%;
  height: auto; }

.team-members ul li.member .team-content {
  width: 58%; }

.team-members ul li.member .team-content h4 {
  font-size: 40px;
  margin-bottom: 20px;
  color: #5A6E87; }

.team-members ul li.member .team-content h4 a {
  color: #5A6E87;
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out; }

.team-members ul li.member .team-content h4 a:hover {
  color: #0A8288; }

.team-members ul li.member .team-content p.title {
  text-transform: uppercase;
  color: #052D44;
  letter-spacing: 0.4px; }

.team-members ul li.member .team-content .content p {
  margin-bottom: 30px;
  text-align: left; }

.team-members ul li.member .team-content .certifications span {
  font-size: 16px;
  color: #5A6E87; }

.team-members ul li.member .team-content .certifications ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-justify-content: flex-start;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-align-items: flex-start;
  position: relative;
  top: 12px; }


.team-members ul li.member .team-content .certifications ul li {
  margin-right: 20px; }

.team-members ul li.member .team-content .certifications ul li img {
  height: 70px; }

.team-members ul li.team-1 .team-photo,
.team-members ul li.team-3 .team-photo,
.team-members ul li.team-5 .team-photo,
.team-members ul li.team-7 .team-photo,
.team-members ul li.team-9 .team-photo,
.team-members ul li.team-11 .team-photo,
.team-members ul li.team-13 .team-photo,
.team-members ul li.team-15 .team-photo,
.team-members ul li.team-17 .team-photo,
.team-members ul li.team-19 .team-photo,
.team-members ul li.team-21 .team-photo,
.team-members ul li.team-23 .team-photo,
.team-members ul li.team-25 .team-photo,
.team-members ul li.team-27 .team-photo,
.team-members ul li.team-29 .team-photo,
.team-members ul li.team-31 .team-photo,
.team-members ul li.team-33 .team-photo,
.team-members ul li.team-35 .team-photo {
  margin-right: 4%; }

.team-members ul li.team-2,
.team-members ul li.team-4,
.team-members ul li.team-6,
.team-members ul li.team-8,
.team-members ul li.team-10,
.team-members ul li.team-12,
.team-members ul li.team-14,
.team-members ul li.team-16,
.team-members ul li.team-18,
.team-members ul li.team-20,
.team-members ul li.team-22,
.team-members ul li.team-24,
.team-members ul li.team-26,
.team-members ul li.team-28,
.team-members ul li.team-30,
.team-members ul li.team-32,
.team-members ul li.team-34,
.team-members ul li.team-36
 {
  flex-direction: row-reverse;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse; }

.team-members ul li.team-2 .team-photo,
.team-members ul li.team-4 .team-photo,
.team-members ul li.team-6 .team-photo,
.team-members ul li.team-8 .team-photo,
.team-members ul li.team-10 .team-photo,
.team-members ul li.team-12 .team-photo,
.team-members ul li.team-14 .team-photo,
.team-members ul li.team-16 .team-photo,
.team-members ul li.team-18 .team-photo,
.team-members ul li.team-20 .team-photo,
.team-members ul li.team-22 .team-photo,
.team-members ul li.team-24 .team-photo,
.team-members ul li.team-26 .team-photo,
.team-members ul li.team-28 .team-photo,
.team-members ul li.team-30 .team-photo,
.team-members ul li.team-32 .team-photo,
.team-members ul li.team-34 .team-photo,
.team-members ul li.team-36 .team-photo {
  margin-left: 4%; }

.company-affiliations {
  position: relative;
  margin: 0 auto;
  max-width: 90%;
  padding: 40px 5%;
  background-color: #052D44; }

.company-affiliations h3 {
  font-weight: 300;
  font-size: 32px;
  text-align: center;
  color: #fff;
  margin-bottom: 35px; }

.company-affiliations ul {
  width: 98%;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  -ms-flex-align: center;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  position: relative;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap; }

.company-affiliations ul li {
  margin: 0 auto; }

.company-affiliations ul li img {
  height: 90px;
  width: auto; }

.canine-staff ul {
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-justify-content: space-between;
  position: relative;
  width: 100%;
  top: 4px;
  margin-bottom: 8px; }

.canine-staff ul li {
  width: calc(50% - 2px);
  margin-bottom: 0;
  line-height: 0;
  position: relative; }

.canine-staff ul li:nth-child(2) {
  border-right: none; }

.canine-staff ul li img {
  width: 100%;
  height: auto; }

.canine-staff ul li .job-title {
  position: absolute;
  z-index: 11;
  bottom: 0;
  background-color: rgba(19, 133, 140, 0.8);
  padding: 42px 2%;
  width: 96%; }

.canine-staff ul li .job-title .title-container {
	display: block;
	position: relative;
	overflow-wrap: break-word;
	width: 100%;
}

.canine-staff ul li .job-title h4 {
  color: #fff;
  text-align: center;
  margin: 0 auto;
  font-size: 26px;
  letter-spacing: 0.25px;
  font-weight: 400; 
	display: block;
	position: relative;
	overflow-wrap: break-word;
	width: 100%;
	line-height: 1.15;
}

/************
  Process Page
************/
.process-steps {
  width: 100%;
  margin: 0 auto; }

.process-steps ul li.process {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-align-items: center;
  position: relative;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  margin-bottom: 120px;
  vertical-align: top; }

.process-steps ul li.process .step-photo {
  width: 36%; }

.process-steps ul li.process .step-photo img {
  width: 100%;
  height: auto; }

.process-steps ul li.process .step-content {
  width: 60%; }

.process-steps ul li.process .step-content h4 {
  font-size: 40px;
  margin-bottom: 35px;
  color: #5A6E87; }

.process-steps ul li.process .step-content .content {
  margin: 0; }

.process-steps ul li.process .step-content .content p {
  text-align: left;
  margin: 0 0 30px 0 !important; }

.process-steps ul li.process .step-content .content p:last-child {
  margin-bottom: 0 !important; }

.process-steps ul li.step-1,
.process-steps ul li.step-3,
.process-steps ul li.step-5,
.process-steps ul li.step-7,
.process-steps ul li.step-9 {
  flex-direction: row-reverse;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse; }

.process-steps ul li.step-1 .step-photo,
.process-steps ul li.step-3 .step-photo,
.process-steps ul li.step-5 .step-photo,
.process-steps ul li.step-7 .step-photo,
.process-steps ul li.step-9 .step-photo {
  margin-left: 4%; }

.process-steps ul li.step-2 .step-photo,
.process-steps ul li.step-4 .step-photo,
.process-steps ul li.step-6 .step-photo,
.process-steps ul li.step-8 .step-photo,
.process-steps ul li.step-10 .step-photo {
  margin-right: 4%; }

/************
  Testimonials Page
************/
.testimonials-feed {
  width: 100%;
  margin: 0 auto;
  position: relative; }

.testimonials-feed ul li {
  width: 90%;
  margin: 0 auto;
  padding: 80px 5%;
  position: relative; }

.testimonials-feed ul li:nth-child(even) {
  background-color: #f8f8f8; }

.testimonials-feed ul li .content {
  width: 800px;
  max-width: 60%;
  margin: 0 auto;
  position: relative; }

.testimonials-feed ul li .content p {
  text-align: left; }

.testimonials-feed ul li .content p.name {
  margin-bottom: 0px;
  color: #052D44; }

.testimonials-feed ul li .content p.location {
  margin-bottom: 0;
  text-transform: uppercase;
  color: #052D44; }

.testimonials-feed ul li .content .open-quote {
  position: absolute;
  left: -90px;
  top: 0px;
  font-size: 100px;
  color: #0A8288;
  font-weight: 600; }

/************
  Contact Page
************/
.contact-wrap {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-align-items: center;
  position: relative; }

.contact-wrap .contact-left {
  width: 45%; }

.contact-wrap .contact-left h4 {
  margin-bottom: 0;
  color: #5A6E87;
  line-height: 48px;
  font-size: 36px; }

.contact-wrap .contact-left h4.email {
  margin-bottom: 50px; }

.contact-wrap .contact-left h4 a {
  color: #5A6E87;
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out; }

.contact-wrap .contact-left h4 a:hover {
  color: #052D44; }

.contact-wrap .contact-left .address p {
  margin-bottom: 0; }

.contact-wrap .contact-right {
  width: 45%; }

.contact-wrap .contact-right h3 {
  margin-bottom: 20px; }

.frm_form_fields hr.form-separator {
  margin: 90px 0 95px 0;
  border: 1px solid rgba(19, 133, 140, 0.2);
  position: relative;
  top: 40px; }

.frm_style_formidable-style.with_frm_style input[type=text],
.frm_style_formidable-style.with_frm_style textarea,
.frm_style_formidable-style.with_frm_style input[type=email] {
  border-radius: 0 !important;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 16px; }

.frm_style_formidable-style.with_frm_style .frm_checkbox {
  display: inline-block;
  margin-right: 30px;
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 16px; }

.frm_style_formidable-style.with_frm_style label.frm_primary_label,
.frm_style_formidable-style.with_frm_style .frm_primary_label {
  font-size: 17px;
  line-height: 24px;
  margin-bottom: 5px;
  font-family: 'Source Sans Pro', sans-serif;
  font-weight: 600;
  color: #5A6E87; }

.frm_style_formidable-style.with_frm_style input[type=text], .frm_style_formidable-style.with_frm_style input[type=password], .frm_style_formidable-style.with_frm_style input[type=email], .frm_style_formidable-style.with_frm_style input[type=number], .frm_style_formidable-style.with_frm_style input[type=url], .frm_style_formidable-style.with_frm_style input[type=tel], .frm_style_formidable-style.with_frm_style input[type=phone], .frm_style_formidable-style.with_frm_style input[type=search], .frm_style_formidable-style.with_frm_style select, .frm_style_formidable-style.with_frm_style textarea, .frm_form_fields_style, .frm_style_formidable-style.with_frm_style .frm_scroll_box .frm_opt_container, .frm_form_fields_active_style, .frm_form_fields_error_style, .frm_style_formidable-style.with_frm_style .chosen-container-multi .chosen-choices, .frm_style_formidable-style.with_frm_style .chosen-container-single .chosen-single {
  border-radius: 0 !important; }

.frm_form_fields label {
  font-size: 16px;
  line-height: 24px;
  font-family: 'Source Sans Pro', sans-serif;
  font-weight: 400; }

.frm_form_fields input[type=checkbox] {
  margin-right: 4px; }

.frm_form_fields input[type=submit],
.frm_submit input[type=f], .frm_style_formidable-style.with_frm_style .frm_submit button, .frm_form_submit_style,
.frm_style_formidable-style.with_frm_style input[type=submit],
form.post-password-form input[type=submit] {
  text-transform: uppercase;
  font-size: 16px;
  color: #fff;
  padding: 8px 15px 9px 15px;
  background-color: #5A6E87;
  font-weight: 400;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  letter-spacing: 2px;
  border-radius: 0 !important;
  font-family: 'Source Sans Pro', sans-serif;
  border: none !important; }

.frm_form_fields input[type=submit]:hover {
  background-color: #052D44;
  cursor: pointer;
  color: #fff; }

.full-map {
  background: url("assets/images/contact-map.jpg");
  width: 98%;
  padding: 320px 1%;
  background-size: cover;
  background-position: center; }

.full-map h2 {
  color: #fff;
  font-size: 50px;
  text-align: center;
  font-weight: 400;
  line-height: 60px; }

/************
  Portfolio Page
************/
.back-btn {
  margin: 100px auto;
  position: relative;
  text-align: center; }

.back-btn .button {
  letter-spacing: 2px; }

.back-btn .button a {
  text-transform: uppercase;
  font-size: 16px;
  color: #fff;
  padding: 8px 15px 9px 15px;
  background-color: #0A8288;
  font-weight: 400;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  white-space: nowrap; }

.back-btn .button a:hover {
  background-color: #5A6E87;
  cursor: pointer; }

.portfolio-feed ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
  -ms-flex-line-pack: justify;
  align-content: space-between;
  background-color: #fff;
  width: calc(100% - 8px);
  margin: 0 auto;
  position: relative; }

.portfolio-feed ul li {
  width: calc(33.3% - 8px);
  padding: 0;
  border-left: 4px solid #fff;
  border-right: 4px solid #fff;
  border-bottom: 3px solid #fff;
  position: relative;
  overflow: hidden; }

.portfolio-feed ul li .project-single {
  padding: 48% 2%; }

.portfolio-feed ul li .project-single:hover .caption {
  background-color: rgba(19, 133, 140, 0.9); }

.portfolio-feed ul li .project-single .caption {
  position: absolute;
  z-index: 11;
  bottom: 0;
  background-color: rgba(5, 45, 68, 0.9);
  -webkit-transition: all 0.2s ease-in;
  -o-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
  padding: 25px 2%;
  width: 96%;
  left: 0; }

.portfolio-feed ul li .project-single .caption h3 {
  color: #fff;
  text-align: center;
  width: 96%;
  line-height: 35px;
  font-size: 26px;
  letter-spacing: 0.5px;
  font-weight: 400; }

/************
  Single Portfolio
************/
.portfolio-content-wrapper {
  margin-bottom: 0 !important;
  padding-bottom: 0 !important; }

h1.portfolio-title {
  text-shadow: none; }

.modular-portfolio {
  width: 100%;
  position: relative;
  margin: 0 auto;
  /************
  Module 1
************/
  /************
  Module 2
************/
  /************
  Module 3
************/
  /************
  Module 4
************/
  /************
  Module 5
************/
  /************
  Module 6
************/
  /************
  Module 7
************/
  /************
  Module 8
************/
  /************
  Module 9
************/
  /************
  Module 10
************/
  /************
  Module 11
************/
  /************
  Module 12
************/ }

.modular-portfolio .single-module {
  margin: 100px auto; }

.modular-portfolio .single-module a {
  color: #000;
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out; }

.modular-portfolio .single-module a:hover {
  color: #052D44; }

.modular-portfolio .module-1 {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-line-pack: stretch;
  align-content: stretch;
  -webkit-align-content: stretch; }

.modular-portfolio .module-1 a {
  width: 33.3%; }

.modular-portfolio .module-1 a div {
  width: calc(100% - 8px);
  padding: 0;
  border-left: 4px solid #fff;
  border-right: 4px solid #fff;
  border-bottom: 3px solid #fff;
  position: relative;
  padding: 35% 0; }

.modular-portfolio .module-1 a div a.fancybox {
  text-decoration: none;
  display: block;
  width: 100%;
  height: 100%; }

.modular-portfolio .module-2 {
  position: relative;
  z-index: 50;
  width: 800px;
  max-width: 95%;
  height: 510px; }

.modular-portfolio .module-2 .large-photo {
  width: 600px;
  height: 400px;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1; }

.modular-portfolio .module-2 .large-photo span {
  position: relative;
  top: 415px;
  left: 120px; }

.modular-portfolio .module-2 .small-photo {
  width: 300px;
  height: 225px;
  position: absolute;
  left: 0px;
  top: 240px;
  border: 4px solid #fff;
  z-index: 2; }

.modular-portfolio .module-2 .small-photo span {
  position: relative;
  top: 240px; }

.modular-portfolio .module-3 {
  position: relative;
  z-index: 50;
  width: 800px;
  max-width: 95%;
  height: 350px; }

.modular-portfolio .module-3 .large-photo {
  width: 445px;
  height: 315px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1; }

.modular-portfolio .module-3 .large-photo span {
  position: relative;
  top: 330px;
  left: 0; }

.modular-portfolio .module-3 .video {
  width: 445px;
  height: 315px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1; }

.modular-portfolio .module-3 .video iframe {
  width: 100%;
  height: 100%; }

.modular-portfolio .module-3 .first-square-photo {
  width: 175px;
  height: 175px;
  position: absolute;
  right: 0px;
  top: 0;
  z-index: 2; }

.modular-portfolio .module-3 .first-square-photo span {
  position: relative;
  top: 186px;
  left: 48px; }

.modular-portfolio .module-3 .second-square-photo {
  width: 175px;
  height: 175px;
  position: absolute;
  right: 135px;
  top: 135px;
  border: 4px solid #fff;
  z-index: 3; }

.modular-portfolio .module-3 .second-square-photo span {
  position: relative;
  top: -28px;
  left: 0; }

.modular-portfolio .module-4 {
  position: relative;
  z-index: 50;
  width: 800px;
  max-width: 95%;
  height: 580px; }

.modular-portfolio .module-4 .top-photo {
  width: 450px;
  height: 300px;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
  border: 4px solid #fff; }

.modular-portfolio .module-4 .top-photo span {
  position: relative;
  top: 315px;
  left: 120px; }

.modular-portfolio .module-4 .bottom-photo {
  width: 450px;
  height: 300px;
  position: absolute;
  top: 250px;
  left: 0;
  z-index: 1; }

.modular-portfolio .module-4 .bottom-photo span {
  position: relative;
  top: 315px;
  left: 0; }

.modular-portfolio .module-5 {
  position: relative;
  z-index: 50;
  width: 100%;
  height: 615px; }

.modular-portfolio .module-5 .full-length-photo {
  width: 100%;
  height: 600px;
  position: relative;
  top: 0; }

.modular-portfolio .module-5 .full-length-photo span {
  position: relative;
  top: 615px;
  left: 15px; }

.modular-portfolio .module-5 .video {
  width: 100%;
  height: 600px;
  position: relative;
  top: 0; }

.modular-portfolio .module-5 .video iframe {
  width: 100%;
  height: 100%; }

.modular-portfolio .module-6 {
  position: relative;
  z-index: 50;
  width: 800px;
  max-width: 95%;
  height: 530px; }

.modular-portfolio .module-6 .large-photo {
  width: 700px;
  height: 400px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1; }

.modular-portfolio .module-6 .large-photo span {
  position: relative;
  top: 415px;
  left: 0; }

.modular-portfolio .module-6 .square-photo {
  width: 225px;
  height: 225px;
  position: absolute;
  top: 300px;
  right: 0;
  z-index: 2;
  border: 4px solid #fff; }

.modular-portfolio .module-7 {
  position: relative;
  z-index: 50;
  width: 800px;
  max-width: 95%;
  height: 375px; }

.modular-portfolio .module-7 .right-photo {
  width: 600px;
  height: 350px;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1; }

.modular-portfolio .module-7 .right-photo span {
  position: relative;
  top: 367px;
  left: 0; }

.modular-portfolio .module-8 {
  position: relative;
  z-index: 50;
  width: 800px;
  max-width: 95%;
  height: 805px; }

.modular-portfolio .module-8 .top-photo {
  width: 450px;
  height: 450px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1; }

.modular-portfolio .module-8 .bottom-photo {
  width: 450px;
  height: 450px;
  position: absolute;
  top: 350px;
  right: 0;
  z-index: 2;
  border: 4px solid #fff; }

.modular-portfolio .module-9 {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-line-pack: stretch;
  align-content: stretch;
  -webkit-align-content: stretch; }

.modular-portfolio .module-9 a {
  width: 50%; }

.modular-portfolio .module-9 a div {
  width: calc(100% - 8px);
  padding: 0;
  border-left: 4px solid #fff;
  border-right: 4px solid #fff;
  border-bottom: 3px solid #fff;
  position: relative;
  padding: 30% 0; }

.modular-portfolio .module-9 a div a.fancybox {
  text-decoration: none;
  display: block;
  width: 100%;
  height: 100%; }

.modular-portfolio .module-10 {
  position: relative;
  z-index: 50;
  width: 800px;
  max-width: 95%;
  height: 325px; }

.modular-portfolio .module-10 .left-photo {
  width: 255px;
  height: 325px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1; }

.modular-portfolio .module-10 .horizontal-photo {
  width: 505px;
  height: 325px;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2; }

.modular-portfolio .module-11 {
  position: relative;
  z-index: 50;
  width: 800px;
  max-width: 95%;
  height: 955px; }

.modular-portfolio .module-11 .top-photo {
  width: 450px;
  height: 600px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1; }

.modular-portfolio .module-11 .bottom-photo {
  width: 450px;
  height: 600px;
  position: absolute;
  top: 350px;
  right: 0;
  z-index: 2;
  border: 4px solid #fff; }

.modular-portfolio .module-12 {
  position: relative;
  padding: 0 !important; }

.modular-portfolio .module-12 .content p {
  margin-bottom: 0; }

.fancybox-title-float-wrap .child {
  border-radius: 0 !important;
  background-color: transparent !important;
  font-size: 20px !important;
  line-height: 27px !important;
  font-family: 'Source Sans Pro', sans-serif !important;
  font-weight: 400 !important;
  margin-top: 10px !important; }

.fancybox-skin {
  border-radius: 0 !important; }

/*****************************************

MEDIA QUERIES

*****************************************/
@media screen and (min-width: 1500px) {
  .full-map h2 {
    font-size: 60px;
    line-height: 70px; }
  ul.featured-projects li .project-single h3 {
    font-size: 30px !important; } 


}

@media screen and (min-width: 1600px) {
  .team-members ul li.member .team-content h4 {
    font-size: 45px;
    margin-bottom: 25px; }
  .process-steps ul li.process .step-content h4,
  .contact-wrap .contact-right h3 {
    font-size: 45px; }
  .company-affiliations {
    padding: 50px 5%; }
  .company-affiliations h3 {
    font-size: 45px;
    margin-bottom: 40px; }
  .contact-wrap .contact-left h4 {
    font-size: 45px;
    line-height: 60px; }
  /************
  Home Page Services
************/
  ul.home-services {
    width: 1400px;
    max-width: 95%;
    margin: 60px auto; }
  ul.home-services li .content-container {
    width: 48%; }
  ul.home-services li .image-container {
    width: 48%; }
  ul.home-services #service-0 .image-container .image-one,
  ul.home-services #service-3 .image-container .image-one {
    width: 450px;
    height: 309px;
    top: 0;
    left: 0; }
  ul.home-services #service-0 .image-container .image-two,
  ul.home-services #service-3 .image-container .image-two {
    width: 315px;
    height: 243px;
    right: 0;
    top: 140px; }
  ul.home-services #service-1 .image-container .image-one,
  ul.home-services #service-4 .image-container .image-one {
    width: 550px;
    height: 374px;
    top: 0;
    left: 0; }
  ul.home-services #service-1 .image-container .image-two,
  ul.home-services #service-4 .image-container .image-two {
    width: 260px;
    height: 260px;
    right: 0;
    top: -80px; }
  ul.home-services #service-2,
  ul.home-services #service-5 {
    margin-bottom: 180px; }
  ul.home-services #service-2 .image-container .image-one,
  ul.home-services #service-5 .image-container .image-one {
    width: 390px;
    height: 344px;
    top: 0;
    left: 0; }
  ul.home-services #service-2 .image-container .image-two,
  ul.home-services #service-5 .image-container .image-two {
    width: 400px;
    height: 240px;
    right: 0;
    top: 180px; }
  /************
  Site-Wide Containers
************/
  .full-center,
  .module-2,
  .module-3,
  .module-4,
  .module-6,
  .module-7,
  .module-8,
  .module-10,
  .module-11 {
    width: 1400px;
    max-width: 95%; }
  .page-id-682 .full-center .content {
    width: 100%; }
  .full-center .content,
  .module-2 .content,
  .module-3 .content,
  .module-4 .content,
  .module-6 .content,
  .module-7 .content,
  .module-8 .content,
  .module-10 .content,
  .module-11 .content {
    max-width: 800px;
    margin: 0 auto; }
  .page-id-682 .full-center .content {
    width: 100%; }
  .testimonials-feed ul li .content {
    width: 1300px;
    max-width: 95%; }
  /************
     Module 2
   ************/
  .modular-portfolio .module-2 {
    width: 1400px;
    height: 920px; }
  .modular-portfolio .module-2 .large-photo {
    width: 1000px;
    height: 667px; }
  .modular-portfolio .module-2 .large-photo span {
    top: 682px;
    left: 218px; }
  .modular-portfolio .module-2 .small-photo {
    width: 600px;
    height: 450px;
    top: 400px; }
  .modular-portfolio .module-2 .small-photo span {
    top: 465px; }
  /************
     Module 3
   ************/
  .modular-portfolio .module-3 {
    width: 1400px;
    max-width: 95%;
    height: 562px; }
  .modular-portfolio .module-3 .large-photo {
    width: 745px;
    height: 527px; }
  .modular-portfolio .module-3 .large-photo span {
    top: 545px;
    left: 0; }
  .modular-portfolio .module-3 .video {
    width: 745px;
    height: 527px; }
  .modular-portfolio .module-3 .first-square-photo {
    width: 325px;
    height: 325px; }
  .modular-portfolio .module-3 .first-square-photo span {
    top: 342px;
    left: 68px; }
  .modular-portfolio .module-3 .second-square-photo {
    width: 325px;
    height: 325px;
    right: 270px;
    top: 198px; }
  .modular-portfolio .module-3 .second-square-photo span {
    top: 343px; }
  /************
     Module 4
   ************/
  .modular-portfolio .module-4 {
    width: 1400px;
    max-width: 95%;
    height: 880px; }
  .modular-portfolio .module-4 .top-photo {
    width: 780px;
    height: 500px; }
  .modular-portfolio .module-4 .top-photo span {
    top: 518px;
    left: 180px; }
  .modular-portfolio .module-4 .bottom-photo {
    width: 780px;
    height: 500px;
    top: 350px; }
  .modular-portfolio .module-4 .bottom-photo span {
    top: 518px; }
  /************
     Module 5
   ************/
  .modular-portfolio .module-5 {
    width: 100%;
    height: 715px; }
  .modular-portfolio .module-5 .full-length-photo {
    width: 100%;
    height: 700px; }
  .modular-portfolio .module-5 .full-length-photo span {
    top: 715px;
    left: 15px; }
  .modular-portfolio .module-5 .video {
    width: 100%;
    height: 700px; }
  /************
     Module 6
   ************/
  .modular-portfolio .module-6 {
    width: 1400px;
    max-width: 95%;
    height: 820px; }
  .modular-portfolio .module-6 .large-photo {
    width: 1200px;
    height: 600px; }
  .modular-portfolio .module-6 .large-photo span {
    top: 620px;
    left: 0; }
  .modular-portfolio .module-6 .square-photo {
    width: 400px;
    height: 400px;
    top: 420px;
    right: 0; }
  /************
     Module 7
   ************/
  .modular-portfolio .module-7 {
    width: 1400px;
    max-width: 95%;
    height: 618px; }
  .modular-portfolio .module-7 .right-photo {
    width: 1000px;
    height: 583px; }
  .modular-portfolio .module-7 .right-photo span {
    top: 600px; }
  /************
     Module 8
   ************/
  .modular-portfolio .module-8 {
    width: 1400px;
    max-width: 95%;
    height: 1360px; }
  .modular-portfolio .module-8 .top-photo {
    width: 750px;
    height: 750px; }
  .modular-portfolio .module-8 .bottom-photo {
    width: 750px;
    height: 750px;
    top: 600px; }
  /************
     Module 9
   ************/
  .modular-portfolio .module-9 {
    width: 100%; }
  .modular-portfolio .module-9 a {
    width: 50%; }
  .modular-portfolio .module-9 a div {
    width: calc(100% - 8px);
    padding: 36% 0; }
  /************
     Module 10
   ************/
  .modular-portfolio .module-10 {
    width: 1400px;
    max-width: 95%;
    height: 579px; }
  .modular-portfolio .module-10 .left-photo {
    width: 454px;
    height: 579px; }
  .modular-portfolio .module-10 .horizontal-photo {
    width: 900px;
    height: 579px; }
  /************
     Module 11
   ************/
  .modular-portfolio .module-11 {
    width: 1400px;
    max-width: 95%;
    height: 1315px; }
  .modular-portfolio .module-11 .top-photo {
    width: 600px;
    height: 800px;
    left: 150px; }
  .modular-portfolio .module-11 .bottom-photo {
    width: 600px;
    height: 800px;
    right: 150px;
    top: 500px; } }

@media screen and (max-width: 1600px) {
	.canine-staff ul li .job-title h4 {
	font-size: 125%;
}
.canine-staff ul li .job-title {
    padding: 20px 2%;
}
  ul.featured-projects li .project-single h3 {
    font-size: 22px;
    line-height: 28px; }
  .full-center .sm-container {
    margin: 0 auto;
    max-width: 100%; }
  .page-id-682 .full-center .content {
    width: 100%; }
  /************
  Home Page Services
************/
  ul.home-services {
    width: 1200px;
    max-width: 95%;
    padding: 0;
    margin: 60px auto; }
  ul.home-services li .content-container {
    width: 47%; }
  ul.home-services li .content-container h2 {
    font-size: 36px;
    margin-bottom: 30px; }
  ul.home-services li .content-container .content ul li {
    width: 100%;
    display: block;
    counter-increment: none; }
  ul.home-services li .image-container {
    width: 47%; }
  ul.home-services #service-0 .image-container .image-one,
  ul.home-services #service-3 .image-container .image-one {
    width: 400px;
    height: 275px;
    top: 0;
    left: 0; }
  ul.home-services #service-0 .image-container .image-two,
  ul.home-services #service-3 .image-container .image-two {
    width: 300px;
    height: 231px;
    right: 0;
    top: 160px; }
  ul.home-services #service-1 .image-container .image-one,
  ul.home-services #service-4 .image-container .image-one {
    width: 500px;
    height: 340px;
    top: 40px;
    left: 0; }
  ul.home-services #service-1 .image-container .image-two,
  ul.home-services #service-4 .image-container .image-two {
    width: 230px;
    height: 230px;
    right: 0;
    top: -40px; }
  ul.home-services #service-2,
  ul.home-services #service-5 {
    margin-bottom: 180px; }
  ul.home-services #service-2 .image-container .image-one,
  ul.home-services #service-5 .image-container .image-one {
    width: 340px;
    height: 300px;
    top: 0;
    left: 0; }
  ul.home-services #service-2 .image-container .image-two,
  ul.home-services #service-5 .image-container .image-two {
    width: 350px;
    height: 220px;
    right: 0;
    top: 160px; }
  /************
  Site-Wide Containers
************/
  .full-center,
  .module-2,
  .module-3,
  .module-4,
  .module-6,
  .module-7,
  .module-8,
  .module-10,
  .module-11 {
    width: 1200px;
    max-width: 95%; }
  .testimonials-feed ul li .content {
    width: 1100px;
    max-width: 95%; } }

@media only screen and (min-width: 1350px) and (max-width: 1600px) {

  ul.home-services #service-2, ul.home-services #service-5 {
    margin-bottom: 100px; }

    ul.home-services #service-2 {
        margin-bottom: 150px;
    }
  /************
     Module 2
   ************/
  .modular-portfolio .module-2 {
    width: 1200px;
    height: 735px; }
  .modular-portfolio .module-2 .large-photo {
    width: 800px;
    height: 534px; }
  .modular-portfolio .module-2 .large-photo span {
    top: 550px;
    left: 170px; }
  .modular-portfolio .module-2 .small-photo {
    width: 550px;
    height: 375px;
    top: 325px; }
  .modular-portfolio .module-2 .small-photo span {
    top: 390px; }
  /************
     Module 3
   ************/
  .modular-portfolio .module-3 {
    width: 1200px;
    height: 545px; }
  .modular-portfolio .module-3 .large-photo {
    width: 707px;
    height: 500px; }
  .modular-portfolio .module-3 .large-photo span {
    top: 515px;
    left: 0; }
  .modular-portfolio .module-3 .video {
    width: 707px;
    height: 500px; }
  .modular-portfolio .module-3 .first-square-photo {
    width: 280px;
    height: 280px; }
  .modular-portfolio .module-3 .first-square-photo span {
    top: 297px;
    left: 130px; }
  .modular-portfolio .module-3 .second-square-photo {
    width: 280px;
    height: 280px;
    right: 160px;
    top: 215px; }
  .modular-portfolio .module-3 .second-square-photo span {
    top: 296px; }
  /************
     Module 4
   ************/
  .modular-portfolio .module-4 {
    width: 1200px;
    max-width: 95%;
    height: 805px; }
  .modular-portfolio .module-4 .top-photo {
    width: 660px;
    height: 423px; }
  .modular-portfolio .module-4 .top-photo span {
    top: 440px;
    left: 140px; }
  .modular-portfolio .module-4 .bottom-photo {
    width: 660px;
    height: 423px;
    top: 350px; }
  .modular-portfolio .module-4 .bottom-photo span {
    top: 441px; }
  /************
     Module 5
   ************/
  .modular-portfolio .module-5 {
    width: 100%;
    height: 715px; }
  .modular-portfolio .module-5 .full-length-photo {
    width: 100%;
    height: 700px; }
  .modular-portfolio .module-5 .full-length-photo span {
    top: 715px;
    left: 15px; }
  .modular-portfolio .module-5 .video {
    width: 100%;
    height: 700px; }
  /************
     Module 6
   ************/
  .modular-portfolio .module-6 {
    width: 1200px;
    max-width: 95%;
    height: 738px; }
  .modular-portfolio .module-6 .large-photo {
    width: 1000px;
    height: 500px; }
  .modular-portfolio .module-6 .large-photo span {
    top: 517px;
    left: 0; }
  .modular-portfolio .module-6 .square-photo {
    width: 380px;
    height: 380px;
    top: 350px;
    right: 0; }
  /************
     Module 7
   ************/
  .modular-portfolio .module-7 {
    width: 1200px;
    max-width: 95%;
    height: 490px; }
  .modular-portfolio .module-7 .right-photo {
    width: 800px;
    height: 466px; }
  .modular-portfolio .module-7 .right-photo span {
    top: 482px; }
  /************
     Module 8
   ************/
  .modular-portfolio .module-8 {
    width: 1200px;
    max-width: 95%;
    height: 1158px; }
  .modular-portfolio .module-8 .top-photo {
    width: 650px;
    height: 650px; }
  .modular-portfolio .module-8 .bottom-photo {
    width: 650px;
    height: 650px;
    top: 500px; }
  /************
     Module 9
   ************/
  .modular-portfolio .module-9 {
    width: 100%; }
  .modular-portfolio .module-9 a {
    width: 50%; }
  .modular-portfolio .module-9 a div {
    width: calc(100% - 8px);
    padding: 36% 0; }
  /************
     Module 10
   ************/
  .modular-portfolio .module-10 {
    width: 1200px;
    max-width: 95%;
    height: 452px; }
  .modular-portfolio .module-10 .left-photo {
    width: 353px;
    height: 450px; }
  .modular-portfolio .module-10 .horizontal-photo {
    width: 800px;
    height: 450px; }
  /************
     Module 11
   ************/
  .modular-portfolio .module-11 {
    width: 1200px;
    max-width: 95%;
    height: 1145px; }
  .modular-portfolio .module-11 .top-photo {
    width: 480px;
    height: 660px;
    left: 194px; }
  .modular-portfolio .module-11 .bottom-photo {
    width: 480px;
    height: 660px;
    right: 194px;
    top: 480px; } }

@media screen and (max-width: 1350px) {
  .home-slides h1 {
    font-size: 75px; }
  /************
  Home Page Services
************/
  ul.home-services {
    width: 1100px;
    max-width: 95%;
    padding: 0;
    margin: 60px auto; }
  ul.home-services li .content-container {
    width: 47%; }
  ul.home-services li .content-container h2 {
    font-size: 36px;
    margin-bottom: 30px; }
  ul.home-services li .content-container .content ul li {
    width: 100%;
    display: block;
    counter-increment: none; }
  ul.home-services li .image-container {
    width: 47%; }
  ul.home-services #service-0 .image-container .image-one,
  ul.home-services #service-3 .image-container .image-one {
    width: 375px;
    height: 258px;
    top: 0;
    left: 0; }
  ul.home-services #service-0 .image-container .image-two,
  ul.home-services #service-3 .image-container .image-two {
    width: 275px;
    height: 212px;
    right: 0;
    top: 150px; }
  ul.home-services #service-1 .image-container .image-one,
  ul.home-services #service-4 .image-container .image-one {
    width: 475px;
    height: 323px;
    top: 60px;
    left: 0; }
  ul.home-services #service-1 .image-container .image-two,
  ul.home-services #service-4 .image-container .image-two {
    width: 215px;
    height: 215px;
    right: 0;
    top: -30px; }
  ul.home-services #service-2,
  ul.home-services #service-5 {
    margin-bottom: 100px; }
  ul.home-services #service-2 .image-container .image-one,
  ul.home-services #service-5 .image-container .image-one {
    width: 315px;
    height: 278px;
    top: -20px;
    left: 0; }
  ul.home-services #service-2 .image-container .image-two,
  ul.home-services #service-5 .image-container .image-two {
    width: 325px;
    height: 195px;
    right: 0;
    top: 160px; }
  .full-center,
  .module-2,
  .module-3,
  .module-4,
  .module-6,
  .module-7,
  .module-8,
  .module-10,
  .module-11 {
    width: 1100px;
    max-width: 95%; }
  .page-id-682 .full-center .content {
    width: 100%; }
  .testimonials-feed ul li .content {
    width: 1000px;
    max-width: 95%; }
  .testimonials-feed ul li .content .open-quote {
    left: -70px; } }

@media screen and (max-width: 1200px) {
  .full-map {
    padding: 200px 1%; }
  .full-map h2 {
    font-size: 40px;
    line-height: 50px; }
  .portfolio-feed ul li .project-single .caption h3 {
    font-size: 22px;
    line-height: 30px; }
  /************
  Home Page Services
************/
  ul.home-testimonials li .content {
    min-height: 320px;
    margin-top: -40px; }
  ul.home-services {
    width: 800px;
    max-width: 95%;
    padding: 0;
    margin: 60px auto; }
  ul.home-services li .content-container {
    width: 47%; }
  ul.home-services li .content-container h2 {
    font-size: 36px;
    margin-bottom: 30px;
    line-height: 40px; }
  ul.home-services li .content-container .content ul li {
    width: 100%;
    display: block;
    counter-increment: none; }
  ul.home-services li .image-container {
    width: 47%; }
  ul.home-services #service-0 .image-container .image-one,
  ul.home-services #service-3 .image-container .image-one {
    width: 100%;
    height: 225px;
    top: 0;
    left: 0;
    position: relative; }
  ul.home-services #service-0 .image-container .image-two,
  ul.home-services #service-3 .image-container .image-two {
    width: 100%;
    height: 225px;
    top: 25px;
    left: 0;
    position: relative;
    border: none; }
  ul.home-services #service-1,
  ul.home-services #service-4 {
    margin-bottom: 160px; }
  ul.home-services #service-1 .image-container .image-one,
  ul.home-services #service-4 .image-container .image-one {
    width: 100%;
    height: 225px;
    top: 0;
    left: 0;
    position: relative; }
  ul.home-services #service-1 .image-container .image-two,
  ul.home-services #service-4 .image-container .image-two {
    width: 100%;
    height: 225px;
    top: 25px;
    left: 0;
    position: relative;
    border: none; }
  ul.home-services #service-2,
  ul.home-services #service-5 {
    margin-bottom: 100px; }
  ul.home-services #service-2 .image-container .image-one,
  ul.home-services #service-5 .image-container .image-one {
    width: 100%;
    height: 225px;
    top: 0;
    left: 0;
    position: relative; }
  ul.home-services #service-2 .image-container .image-two,
  ul.home-services #service-5 .image-container .image-two {
    width: 100%;
    height: 225px;
    top: 25px;
    left: 0;
    position: relative;
    border: none; }
  .full-center,
  .testimonials-feed ul li .content,
  .module-2,
  .module-3,
  .module-4,
  .module-6,
  .module-7,
  .module-8,
  .module-10,
  .module-11 {
    max-width: 90%; }
  .page-id-682 .full-center .content {
    width: 100%; }
  .full-center .open-quote,
  .testimonials-feed ul li .content .open-quote,
  .module-2 .open-quote,
  .module-3 .open-quote,
  .module-4 .open-quote,
  .module-6 .open-quote,
  .module-7 .open-quote,
  .module-8 .open-quote,
  .module-10 .open-quote,
  .module-11 .open-quote {
    left: -70px; }
  .contact-wrap .contact-left h4 {
    font-size: 31px;
    line-height: 42px; }
  /************
  About
************/
  .team-members ul li.member .team-content h4 {
    font-size: 36px; }
  /************
  Process
************/
  .process-steps {
    margin-top: 80px; }
  .process-steps ul li.process {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-align-items: flex-start;
    margin-bottom: 100px; }
  .process-steps ul li.process .step-content {
    width: 56%; }
  .process-steps ul li.process .step-content h4 {
    font-size: 36px;
    margin-bottom: 25px; }
  .process-steps ul li.process .step-photo {
    width: 40%; } }

@media screen and (max-width: 1100px) {
  footer.main .ftr-flex .ftr-right h3 {
    font-size: 18px; }
  footer.main .ftr-flex .ftr-right ul li {
    margin-left: 15px; }
  footer.main .ftr-flex .ftr-right ul li img {
    height: 55px; }
  footer.main .ftr-flex .ftr-right footer.main .ftr-flex .ftr-left .copyright {
    font-size: 13px; }
  .contact-wrap {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-align-items: flex-start; }
  .contact-wrap .frm_style_formidable-style.with_frm_style .frm_checkbox {
    display: block; }
  .home-slides {
    background-position: center center; } }

@media screen and (max-width: 900px) {
  footer.main .ftr-flex {
    display: block; }
  footer.main .ftr-flex .ftr-left {
    width: 100%;
    text-align: center;
    margin: 0 auto 30px auto; }
  footer.main .ftr-flex .ftr-left .contact-info {
    border-bottom: 0; }
  footer.main .ftr-flex .ftr-left .copyright {
    font-size: 12px;
    line-height: 14px;
    padding-bottom: 30px;
    border-bottom: 1px solid #fff; }
  footer.main .ftr-flex .ftr-right {
    width: 100%;
    text-align: center; }
  footer.main .ftr-flex .ftr-right h3 {
    text-align: center;
    font-size: 20px; }
  footer.main .ftr-flex .ftr-right ul {
    text-align: center;
    margin: 0 auto;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center; }
  ul.home-services #service-0,
  ul.home-services #service-3,
  ul.home-services #service-1,
  ul.home-services #service-4 {
    margin-bottom: 120px; }
  ul.featured-projects li .project-single h3,
  .portfolio-feed ul li .project-single .caption h3 {
    font-size: 20px;
    line-height: 25px; }
  .team-members ul li.member {
    margin-bottom: 100px; } }

/************
  Employee Handbook
************/
/* COLORS */
.pword-form {
  text-align: center;
  padding-top: 80px; }
  .pword-form p {
    text-align: center; }
    .pword-form p label {
      text-transform: uppercase;
      letter-spacing: 1.5px;
      color: #91a1b6;
      font-size: 20px;
      font-weight: 700;
      margin: 30px 0 8px 0; }

form.post-password-form input[type=password] {
  border-radius: 0 !important;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
  border: 1px solid #ccc;
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 18px;
  padding: 6px;
  margin-right: 10px; }

.eh-announcements {
	background-color: #e9e9e9;
	padding: 30px 0;
	margin-top: -15px;
}
.eh-announcements h2 {
	color: #052D44;
	font-size: 44px;
}
.eh-announcements .two-col-buttons {
	display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    display: -webkit-flex;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: center;
    -webkit-justify-content: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-line-pack: top;
    align-content: top;
    -webkit-align-content: top; 
    position: relative;
    width: 100%;
    margin-top: 40px;

}
.eh-announcements .two-col-buttons .right-button a,
.eh-announcements .two-col-buttons .left-button a{
  	color: #fff;
  }
.eh-announcements .two-col-buttons .left-button {
  text-transform: uppercase;
  font-size: 20px;
  color: #fff;
  padding: 10px 17px 11px 17px;
  background-color: #0A8288;
  margin-right: 30px;
  font-weight: 600;
  letter-spacing: .5px;
  white-space: nowrap; }


 .eh-announcements .two-col-buttons .right-button {
  text-transform: uppercase;
  font-size: 20px;
  color: #fff;
  padding: 10px 17px 11px 17px;
  background-color: #052D44;
  font-weight: 600;
  white-space: nowrap;
  letter-spacing: .5px; }



.full-center .eh-welcome {
  width: 100%;
  margin: 40px auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-line-pack: top;
  align-content: top;
  -webkit-align-content: top;
  flex-direction: row-reverse;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse; }
  .full-center .eh-welcome .left-col {
    width: 38%; }
    .full-center .eh-welcome .left-col img {
      width: 100%; }
  .full-center .eh-welcome .right-col {
    width: 58%;
    text-align: left; }
    .full-center .eh-welcome .right-col p {
      text-align: left;
      margin: 0 0 20px 0; }
    .full-center .eh-welcome .right-col h2 {
      margin: -2px 0 22px 0;
      font-size: 44px; }
    .full-center .eh-welcome .right-col .signature-content span.signature {
      font-family: 'Satisfy', cursive;
      color: #052D44;
      font-size: 34px; }
    .full-center .eh-welcome .right-col .signature-content span.title {
      text-transform: uppercase;
      letter-spacing: 0.5px;
      color: #5A6E87;
      font-size: 22px;
      font-weight: 700; }

.eh-mission .full-center {
  padding: 120px 0;
  color: #fff; }
  .eh-mission .full-center h2 {
    color: #fff;
    text-align: center;
    margin: 0 0 30px 0;
    font-size: 46px; }
  .eh-mission .full-center p {
    text-align: center;
    font-size: 21px;
    line-height: 30px;
    margin: 0 auto; }

.page-id-682 .full-center {
  max-width: 900px;
  width: 95%; }

.page-id-682 h1 {
  font-size: 50px;
  color: #5A6E87;
  margin: 0 0 15px 0; }

.page-id-682 .secondary-photo-header h1 {
  color: #fff;
  font-weight: 300;
  font-size: 50px;
  padding: 120px 0; }

.page-id-880 .full-center {
  max-width: 900px;
  width: 95%; }

.page-id-880 h1 {
  font-size: 50px;
  color: #5A6E87;
  margin: 0 0 15px 0; }

.page-id-880 .secondary-photo-header h1 {
  color: #fff;
  font-size: 60px; }

.eh-values {
  margin-top: 60px; }
  .eh-values h1 {
    text-align: center; }
  .eh-values ul.twocol-feed {
    width: 100%;
    margin: 40px auto 0px auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    display: -webkit-flex;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-justify-content: space-between;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-line-pack: top;
    align-content: top;
    -webkit-align-content: top; }
    .eh-values ul.twocol-feed li {
      width: 44%;
      text-align: center;
      margin: 0 auto 80px auto; }
      .eh-values ul.twocol-feed li img {
        height: 110px;
        width: auto;
        margin: 0 auto 15px auto; }
      .eh-values ul.twocol-feed li h4 {
        text-transform: uppercase;
        letter-spacing: 1.5px;
        color: #5A6E87;
        font-size: 26px;
        font-weight: 700;
        margin: 0 0 8px 0; }

.eh-history {
  background: #e6f3f3;
  /* Old browsers */
  /* FF3.6-15 */
  background: -webkit-linear-gradient(top, #e6f3f3 0%, #ffffff 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: -webkit-gradient(linear, left top, left bottom, from(#e6f3f3), to(#ffffff));
  background: -o-linear-gradient(top, #e6f3f3 0%, #ffffff 100%);
  background: linear-gradient(to bottom, #e6f3f3 0%, #ffffff 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#e6f3f3', endColorstr='#ffffff',GradientType=0 );
  /* IE6-9 */
  padding: 40px 0; }
  .eh-history h1 {
    text-align: center;
    color: #0A8288; }
  .eh-history ul.timeline {
    padding: 80px 0;
    position: relative;
    z-index: 1; }
    .eh-history ul.timeline li.milestone {
      margin: 0 auto;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      display: -webkit-flex;
      -webkit-box-sizing: border-box;
      box-sizing: border-box;
      -webkit-box-pack: justify;
      -ms-flex-pack: justify;
      justify-content: space-between;
      -webkit-justify-content: space-between;
      -ms-flex-wrap: wrap;
      flex-wrap: wrap;
      -ms-flex-line-pack: top;
      align-content: top;
      -webkit-align-content: top; }
      .eh-history ul.timeline li.milestone:nth-child(even) {
        flex-direction: row-reverse;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse; }
        .eh-history ul.timeline li.milestone:nth-child(even) .milestone-content {
          text-align: right;
          padding-right: 10%;
          border-right: 4px solid #0A8288; }
          .eh-history ul.timeline li.milestone:nth-child(even) .milestone-content p {
            margin: -40px 22px 0 0; }
        .eh-history ul.timeline li.milestone:nth-child(even) .year {
          right: 25%; }
      .eh-history ul.timeline li.milestone:nth-child(odd) .milestone-content {
        padding-left: 10%;
        border-left: 4px solid #0A8288; }
        .eh-history ul.timeline li.milestone:nth-child(odd) .milestone-content p {
          margin: -40px 0 0 22px; }
      .eh-history ul.timeline li.milestone:nth-child(odd) .year {
        left: 25%; }
      .eh-history ul.timeline li.milestone:last-child .milestone-content {
        padding-bottom: 60px; }
      .eh-history ul.timeline li.milestone .year {
        margin: 50px auto;
        text-align: center;
        position: relative; }
        .eh-history ul.timeline li.milestone .year span {
          color: #0A8288;
          background-color: #fff;
          padding: 39px 27px;
          border-radius: 200px;
          font-size: 36px;
          text-align: center;
          border: 4px solid #0A8288; }
      .eh-history ul.timeline li.milestone .milestone-content {
        width: calc(40% - 2px);
        padding-top: 35px;
        padding-bottom: 35px;
        min-height: 150px; }
  .eh-history .gradient-box {
    /* FF3.6-15 */
    background: -webkit-linear-gradient(top, rgba(250, 253, 253, 0) 0%, #fafdfd 51%, #fafdfd 100%);
    /* Chrome10-25,Safari5.1-6 */
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(250, 253, 253, 0)), color-stop(51%, #fafdfd), to(#fafdfd));
    background: -o-linear-gradient(top, rgba(250, 253, 253, 0) 0%, #fafdfd 51%, #fafdfd 100%);
    background: linear-gradient(to bottom, rgba(250, 253, 253, 0) 0%, #fafdfd 51%, #fafdfd 100%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00fafdfd', endColorstr='#fafdfd',GradientType=0 );
    /* IE6-9 */
    padding: 60px 20px;
    position: absolute;
    left: calc(54.5% - 60px);
    bottom: 12%;
    z-index: 99; }
  .eh-history h1.sm {
    font-size: 40px;
    text-align: center; }

.eh-whattoexpect {
  background-color: #052D44;
  padding: 40px 0; }
  .eh-whattoexpect .full-center h1 {
    text-align: center;
    color: #6c829d; }
  .eh-whattoexpect .full-center ul.timeframe-container {
    padding: 80px 0 40px 0;
    margin: 40px auto 0 auto;
    max-width: 800px;
    width: 90%;
    position: relative;
    z-index: 1; }
    .eh-whattoexpect .full-center ul.timeframe-container li.timeframe {
      margin: 0 auto 90px auto;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      display: -webkit-flex;
      -webkit-box-sizing: border-box;
      box-sizing: border-box;
      -webkit-box-pack: justify;
      -ms-flex-pack: justify;
      justify-content: space-between;
      -webkit-justify-content: space-between;
      -ms-flex-wrap: wrap;
      flex-wrap: wrap;
      -ms-flex-line-pack: middle;
      align-content: middle;
      -webkit-align-content: middle; }
      .eh-whattoexpect .full-center ul.timeframe-container li.timeframe:nth-child(even) {
        flex-direction: row-reverse;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse; }
        .eh-whattoexpect .full-center ul.timeframe-container li.timeframe:nth-child(even) .title {
          margin-left: 10%;
          text-align: right; }
      .eh-whattoexpect .full-center ul.timeframe-container li.timeframe:nth-child(odd) .title {
        margin-right: 10%;
        text-align: left; }
      .eh-whattoexpect .full-center ul.timeframe-container li.timeframe:last-child {
        margin-bottom: 0; }
      .eh-whattoexpect .full-center ul.timeframe-container li.timeframe .title {
        font-size: 100px;
        font-weight: 900;
        line-height: 100px;
        width: 40%;
        text-transform: uppercase;
        letter-spacing: 1px;
        color: #1e4257; }
      .eh-whattoexpect .full-center ul.timeframe-container li.timeframe .timeframe-content {
        width: 50%;
        color: #fff;
        padding-top: 10px; }
        .eh-whattoexpect .full-center ul.timeframe-container li.timeframe .timeframe-content p {
          color: #fff; }

.eh-policies {
  padding: 40px 0; }
  .eh-policies h1 {
    margin-bottom: 40px;
    text-align: center; }
  .eh-policies ul.twocol-feed {
    width: 100%;
    margin: 40px auto 0px auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    display: -webkit-flex;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-justify-content: space-between;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-line-pack: top;
    align-content: top;
    -webkit-align-content: top; }
    .eh-policies ul.twocol-feed li {
      width: 43%;
      text-align: left;
      margin: 0 auto 10px auto; }
      .eh-policies ul.twocol-feed li .content {
        text-align: left; }
        .eh-policies ul.twocol-feed li .content p {
          text-align: left; }
      .eh-policies ul.twocol-feed li h4 {
        text-transform: uppercase;
        letter-spacing: 1.5px;
        color: #5A6E87;
        font-size: 26px;
        font-weight: 700;
        margin: 0 0 8px 0; }

.eh-faqs {
  background-color: #f8f8f8;
  padding-bottom: 40px; }
  .eh-faqs .flex-control-paging li a {
    background-color: rgba(90, 110, 135, 0.6); }
    .eh-faqs .flex-control-paging li a.flex-active {
      background-color: #5a6e87; }
  .eh-faqs .flex-control-nav {
    bottom: -20px; }
  .eh-faqs .full-center h1 {
    text-align: center;
    color: #5A6E87; }
  .eh-faqs .flexslider {
    background: transparent; }
  .eh-faqs #faqs {
    margin: 0 auto;
    position: relative; }
    .eh-faqs #faqs ul.faq-feed {
      padding: 50px 0;
      max-width: 700px;
      width: 100%;
      margin: 0 auto; }
      .eh-faqs #faqs ul.faq-feed li {
        margin: 0 auto;
        position: relative; }
        .eh-faqs #faqs ul.faq-feed li .message-box {
          padding: 27px 30px;
          width: 38%;
          border-radius: 30px;
          color: #fff;
          font-size: 21px;
          line-height: 29px;
          position: relative;
          z-index: 99; }
        .eh-faqs #faqs ul.faq-feed li .content {
          position: relative;
          z-index: 99; }
          .eh-faqs #faqs ul.faq-feed li .content a {
            color: #fff;
            text-decoration: underline; }
        .eh-faqs #faqs ul.faq-feed li .question {
          background-color: #5A6E87;
          text-align: left;
          margin-bottom: 50px;
          left: 0; }
          .eh-faqs #faqs ul.faq-feed li .question .content {
            text-align: left; }
        .eh-faqs #faqs ul.faq-feed li .answer {
          background-color: #0A8288;
          text-align: right;
          margin-left: auto;
          margin-right: 0; }
          .eh-faqs #faqs ul.faq-feed li .answer .content {
            text-align: right; }
        .eh-faqs #faqs ul.faq-feed li .q-triangle,
        .eh-faqs #faqs ul.faq-feed li .q-triangle:before,
        .eh-faqs #faqs ul.faq-feed li .q-triangle:after {
          width: 4.5em;
          height: 4.5em; }
        .eh-faqs #faqs ul.faq-feed li .q-triangle {
          overflow: hidden;
          border-radius: 20%;
          -webkit-transform: translateY(50%) rotate(0deg) skewY(30deg) scaleX(0.866);
          -ms-transform: translateY(50%) rotate(0deg) skewY(30deg) scaleX(0.866);
          transform: translateY(50%) rotate(0deg) skewY(30deg) scaleX(0.866);
          cursor: pointer;
          pointer-events: none;
          position: absolute;
          bottom: -7px;
          left: -6px;
          z-index: 1; }
        .eh-faqs #faqs ul.faq-feed li .q-triangle:before,
        .eh-faqs #faqs ul.faq-feed li .q-triangle:after {
          position: absolute;
          background: #5A6E87;
          pointer-events: auto;
          content: ''; }
        .eh-faqs #faqs ul.faq-feed li .q-triangle:before {
          border-radius: 20% 20% 20% 53%;
          -webkit-transform: scaleX(1.155) skewY(-30deg) rotate(-30deg) translateY(-42.3%) skewX(30deg) scaleY(0.866) translateX(-24%);
          -ms-transform: scaleX(1.155) skewY(-30deg) rotate(-30deg) translateY(-42.3%) skewX(30deg) scaleY(0.866) translateX(-24%);
          transform: scaleX(1.155) skewY(-30deg) rotate(-30deg) translateY(-42.3%) skewX(30deg) scaleY(0.866) translateX(-24%); }
        .eh-faqs #faqs ul.faq-feed li .q-triangle:after {
          border-radius: 20% 20% 53% 20%;
          -webkit-transform: scaleX(1.155) skewY(-30deg) rotate(-30deg) translateY(-42.3%) skewX(-30deg) scaleY(0.866) translateX(24%);
          -ms-transform: scaleX(1.155) skewY(-30deg) rotate(-30deg) translateY(-42.3%) skewX(-30deg) scaleY(0.866) translateX(24%);
          transform: scaleX(1.155) skewY(-30deg) rotate(-30deg) translateY(-42.3%) skewX(-30deg) scaleY(0.866) translateX(24%); }
        .eh-faqs #faqs ul.faq-feed li .a-triangle,
        .eh-faqs #faqs ul.faq-feed li .a-triangle:before,
        .eh-faqs #faqs ul.faq-feed li .a-triangle:after {
          width: 4.5em;
          height: 4.5em; }
        .eh-faqs #faqs ul.faq-feed li .a-triangle {
          overflow: hidden;
          border-radius: 20%;
          -webkit-transform: translateY(50%) rotate(-117deg) skewY(30deg) scaleX(0.866);
          -ms-transform: translateY(50%) rotate(-117deg) skewY(30deg) scaleX(0.866);
          transform: translateY(50%) rotate(-117deg) skewY(30deg) scaleX(0.866);
          cursor: pointer;
          pointer-events: none;
          position: absolute;
          bottom: -7px;
          right: -6px;
          z-index: 1; }
        .eh-faqs #faqs ul.faq-feed li .a-triangle:before,
        .eh-faqs #faqs ul.faq-feed li .a-triangle:after {
          position: absolute;
          background: #0A8288;
          pointer-events: auto;
          content: ''; }
        .eh-faqs #faqs ul.faq-feed li .a-triangle:before {
          border-radius: 20% 20% 20% 53%;
          -webkit-transform: scaleX(1.155) skewY(-30deg) rotate(-30deg) translateY(-42.3%) skewX(30deg) scaleY(0.866) translateX(-24%);
          -ms-transform: scaleX(1.155) skewY(-30deg) rotate(-30deg) translateY(-42.3%) skewX(30deg) scaleY(0.866) translateX(-24%);
          transform: scaleX(1.155) skewY(-30deg) rotate(-30deg) translateY(-42.3%) skewX(30deg) scaleY(0.866) translateX(-24%); }
        .eh-faqs #faqs ul.faq-feed li .a-triangle:after {
          border-radius: 20% 20% 53% 20%;
          -webkit-transform: scaleX(1.155) skewY(-30deg) rotate(-30deg) translateY(-42.3%) skewX(-30deg) scaleY(0.866) translateX(24%);
          -ms-transform: scaleX(1.155) skewY(-30deg) rotate(-30deg) translateY(-42.3%) skewX(-30deg) scaleY(0.866) translateX(24%);
          transform: scaleX(1.155) skewY(-30deg) rotate(-30deg) translateY(-42.3%) skewX(-30deg) scaleY(0.866) translateX(24%); }

.flexslider {
  background: transparent; }

.eh-culture .flex-direction-nav a:before {
  opacity: 0; }

.eh-culture .flex-control-nav {
  display: none; }

.eh-culture .custom-navigation {
  position: relative;
  width: 100%;
  margin: 20px auto 0 auto; }
  .eh-culture .custom-navigation a {
    text-transform: uppercase;
    letter-spacing: .5px;
    color: #5A6E87;
    font-size: 20px;
    font-weight: 700; }
  .eh-culture .custom-navigation a.flex-prev {
    position: absolute;
    left: 0;
    top: 0; }
  .eh-culture .custom-navigation a.flex-next {
    position: absolute;
    right: 0;
    top: 0; }

.eh-faqs .flex-direction-nav a:before {
  opacity: 0; }

.eh-faqs .custom-navigation-faq {
  position: relative;
  width: 80%;
  margin: 0px auto 0 auto; }
  .eh-faqs .custom-navigation-faq a {
    text-transform: uppercase;
    letter-spacing: .5px;
    color: #5A6E87;
    font-size: 20px;
    font-weight: 700; }
  .eh-faqs .custom-navigation-faq a.flex-prev {
    position: absolute;
    left: 22%;
    top: -9px; }
  .eh-faqs .custom-navigation-faq a.flex-next {
    position: absolute;
    right: 22%;
    top: -9px; }

.eh-training {
  padding: 40px 0 20px 0; }
  .eh-training h1 {
    padding-bottom: 10px;
    color: #5A6E87;
    text-align: center; }
  .eh-training .content {
    margin-bottom: 60px; }
    .eh-training .content p {
      margin: 0 0 20px 0; }
  .eh-training ul.certifications-feed {
    margin: 40px auto 0 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    display: -webkit-flex;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-justify-content: space-between;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-line-pack: top;
    align-content: top;
    -webkit-align-content: top; }
    .eh-training ul.certifications-feed li {
      width: 25%;
      margin: 0 auto 60px auto;
      text-align: center; }
      .eh-training ul.certifications-feed li a {
        -webkit-transition: 0.3s ease-in-out;
        -o-transition: 0.3s ease-in-out;
        transition: 0.3s ease-in-out; }
        .eh-training ul.certifications-feed li a img {
          opacity: 1;
          -webkit-transition: 0.3s ease-in-out;
          -o-transition: 0.3s ease-in-out;
          transition: 0.3s ease-in-out; }
        .eh-training ul.certifications-feed li a:hover img {
          opacity: 0.7; }
      .eh-training ul.certifications-feed li img {
        height: 90px;
        width: auto; }

.eh-benefits {
  padding: 40px 0 10px 0; }
  .eh-benefits h1 {
    margin-bottom: 60px;
    text-align: center;
    color: #fff; }
  .eh-benefits ul.twocol-feed {
    width: 100%;
    margin: 40px auto 0px auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    display: -webkit-flex;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-justify-content: space-between;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-line-pack: top;
    align-content: top;
    -webkit-align-content: top; }
    .eh-benefits ul.twocol-feed li {
      width: 43%;
      text-align: left;
      margin: 0 auto 10px auto; }
      .eh-benefits ul.twocol-feed li .content {
        text-align: left; }
        .eh-benefits ul.twocol-feed li .content p {
          text-align: left;
          color: #fff; }
      .eh-benefits ul.twocol-feed li h4 {
        text-transform: uppercase;
        letter-spacing: 1.5px;
        color: #fff;
        font-size: 26px;
        font-weight: 700;
        margin: 0 0 8px 0; }

.cr-benefits ul.twocol-feed li {
  text-align: center;
  margin: 0 auto 30px auto; }

.eh-requests {
  padding: 40px 0 10px 0;
  background-color: #f8f8f8; }
  .eh-requests h1 {
    margin-bottom: 40px;
    text-align: center; }
  .eh-requests ul.request-links {
    margin: 40px auto 0px auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    display: -webkit-flex;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: center;
    -webkit-justify-content: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-line-pack: top;
    align-content: top;
    -webkit-align-content: top; }
    .eh-requests ul.request-links li {
      width: calc(40% - 90px);
      text-transform: uppercase;
      font-size: 16px;
      color: #fff;
      font-weight: 400;
      letter-spacing: 1.5px;
		margin-bottom: 45px;
      -webkit-transition: all 0.3s ease-in-out;
      -o-transition: all 0.3s ease-in-out;
      transition: all 0.3s ease-in-out;
      font-family: 'Source Sans Pro', sans-serif;
      border: none !important;
      text-align: center;
      white-space: nowrap; }
      .eh-requests ul.request-links li:hover {
        opacity: 0.7; }
      .eh-requests ul.request-links li:first-child a {
        background-color: #5A6E87; }
      .eh-requests ul.request-links li:nth-child(2n) a {
        background-color: #0A8288; }
      .eh-requests ul.request-links li:nth-child(3n) a {
        background-color: #052D44; }
      .eh-requests ul.request-links li:nth-child(4n) a {
        background-color: #0A8288; }
      .eh-requests ul.request-links li:nth-child(5n) a {
        background-color: #052D44; }
      .eh-requests ul.request-links li:nth-child(6n) a {
        background-color: #0A8288; }
      .eh-requests ul.request-links li a {
        color: #fff;
        padding: 10px 15px 11px 15px;
        border-radius: 2px;
        opacity: 1;
        -webkit-transition: all 0.3s ease-in-out;
        -o-transition: all 0.3s ease-in-out;
        transition: all 0.3s ease-in-out; }
        .eh-requests ul.request-links li a:hover {
          opacity: 0.9; }

.eh-holidays {
  padding: 40px 0 10px 0; }
  .eh-holidays h1 {
    margin-bottom: 40px;
    text-align: center; }
  .eh-holidays .holiday-feed ul {
    margin: 40px auto 0 auto;
    max-width: 800px;
    width: 95%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    display: -webkit-flex;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-justify-content: space-between;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-line-pack: top;
    align-content: top;
    -webkit-align-content: top; }
    .eh-holidays .holiday-feed ul li {
      width: 47%;
      text-align: left;
      text-transform: uppercase;
      letter-spacing: 1.5px;
      margin: 0 0 22px 0;
      font-size: 22px;
      font-weight: 700;
      color: #052D44; }

.eh-culture {
  padding: 40px 0 0 0;
  width: 100%; }
  .eh-culture .full-center {
    margin: 40px auto 50px auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    display: -webkit-flex;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-justify-content: space-between;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-line-pack: top;
    align-content: top;
    -webkit-align-content: top;
    flex-direction: row-reverse;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse; }
    .eh-culture .full-center .left-col {
      width: 48%; }
      .eh-culture .full-center .left-col img {
        width: 100%; }
    .eh-culture .full-center .right-col {
      width: 47%;
      text-align: left; }
      .eh-culture .full-center .right-col p {
        text-align: left;
        margin: 0 0 20px 0; }
      .eh-culture .full-center .right-col h2 {
        margin: -2px 0 22px 0;
        font-size: 44px; }
    .eh-culture .full-center #culture-photos .slides > li {
      overflow: hidden;
      position: relative;
      height: 400px;
      /* desired height here */ }
    .eh-culture .full-center #culture-photos .slides img {
      height: auto; }

.eh-contacts {
  padding: 40px 0 10px 0; }
  .eh-contacts h1 {
    margin-bottom: 40px;
    text-align: center;
    color: #fff; }
  .eh-contacts .content p {
    color: #fff;
    font-size: 22px; }
  .eh-contacts ul.twocol-feed {
    width: 100%;
    margin: 40px auto 0 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    display: -webkit-flex;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-justify-content: space-between;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-line-pack: top;
    align-content: top;
    -webkit-align-content: top; }
    .eh-contacts ul.twocol-feed li {
      width: 43%;
      text-align: center;
      margin: 0 auto 40px auto;
      color: #fff;
      font-size: 20px; }
      .eh-contacts ul.twocol-feed li span.name {
        font-weight: bold; }

.ftr-left .copyright .handbook {
  color: #5A6E87; }
  .ftr-left .copyright .handbook img {
    width: 16px;
    height: auto;
    margin: 0 5px 0 -2px; }
  .ftr-left .copyright .handbook span {
    position: relative;
    top: -1px; }
  .ftr-left .copyright .handbook a {
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #5A6E87 !important;
    font-size: 17px;
    font-weight: 700;
    -webkit-transition: 0.2s ease-in-out;
    -o-transition: 0.2s ease-in-out;
    transition: 0.2s ease-in-out;
    opacity: 1; }
    .ftr-left .copyright .handbook a:hover {
      opacity: 0.7; }

/*****************************************
CAREERS
*****************************************/
body.single-jobopenings .single-job .content ul {
  list-style: disc;
  margin-left: 55px; }

.frm_dropzone.dz-clickable.frm_single_upload,
.frm_dropzone.dz-clickable.frm_single_upload {
  max-width: none !important;
  width: 95% !important; }

.frm_style_formidable-style.with_frm_style p.description, .frm_style_formidable-style.with_frm_style div.description, .frm_style_formidable-style.with_frm_style div.frm_description, .frm_style_formidable-style.with_frm_style .frm-show-form > div.frm_description, .frm_style_formidable-style.with_frm_style .frm_error {
  padding-top: 4px; }

.page-id-880 .eh-values.full-center {
  padding-bottom: 0;
  margin-bottom: 0; }

.job-feed {
  padding: 40px 0 1px 0; }
  .job-feed h1 {
    margin-bottom: 85px;
    text-align: center;
    color: #fff; }
  .job-feed ul.twocol-feed {
    width: 100%;
    margin: 85px auto 0px auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    display: -webkit-flex;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-justify-content: space-between;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-line-pack: top;
    align-content: top;
    -webkit-align-content: top; }
    .job-feed ul.twocol-feed li {
      width: 43%;
      text-align: left;
      margin: 0 auto 110px auto; }
      .job-feed ul.twocol-feed li .content {
        text-align: left;
        color: #fff; }
        .job-feed ul.twocol-feed li .content p {
          text-align: left;
          color: #fff; }
      .job-feed ul.twocol-feed li h4 {
        text-transform: uppercase;
        letter-spacing: 1.5px;
        color: #fff;
        font-size: 26px;
        font-weight: 700;
        margin: 0 0 10px 0;
        -webkit-transition: all 0.3s ease-in-out;
        -o-transition: all 0.3s ease-in-out;
        transition: all 0.3s ease-in-out; }
        .job-feed ul.twocol-feed li h4:hover {
          color: #0A8288; }
      .job-feed ul.twocol-feed li .job-button {
        text-transform: uppercase;
        letter-spacing: 1.5px;
        font-size: 16px;
        font-weight: 700;
        position: relative;
        margin-top: 30px; }
        .job-feed ul.twocol-feed li .job-button a {
          -webkit-transition: all 0.3s ease-in-out;
          -o-transition: all 0.3s ease-in-out;
          transition: all 0.3s ease-in-out;
          color: #0A8288;
          border: 2px solid #0A8288;
          padding: 6px 13px; }
          .job-feed ul.twocol-feed li .job-button a:hover {
            color: #fff;
            border: 2px solid #fff; }

.single-job .content {
  padding-top: 60px;
  text-align: left; }
  .single-job .content p {
    text-align: left; }

.single-job .apply-button {
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 25px;
  font-weight: 700;
  position: relative;
  margin: 120px auto 60px auto;
  text-align: center; }
  .single-job .apply-button a {
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    color: #0A8288;
    border: 3px solid #0A8288;
    padding: 9px 15px;
    background-color: #fff; }
    .single-job .apply-button a:hover {
      color: #5A6E87;
      border: 3px solid #5A6E87; }

.single-job .full-part-time {
  position: relative;
  margin: 0 0 60px 0;
  border-bottom: 2px solid #888;
  padding-bottom: 20px; }
  .single-job .full-part-time span.title {
    color: #052D44;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 22px;
    padding: 0 0 40px 0;
    font-weight: 700; }
  .single-job .full-part-time span.details {
    color: #555;
    font-size: 22px; }

.job-bg {
  padding: 20px 0 60px 0; }

.header-right nav.social ul li.careers {
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 15px;
  font-weight: 700;
  position: relative;
  top: 2px; }
  .header-right nav.social ul li.careers a {
    color: #0A8288;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    opacity: 1; }
    .header-right nav.social ul li.careers a:hover {
      opacity: 0.8; }

/************
**************
***************


MEDIA QUERIES


***************
**************
************/

@media screen and (max-width: 1200px) {
  header .header-right nav.main ul li {
    margin-left: 40px;
  }
  header .header-right nav.main ul li a {
    font-size: 18px;
  }
  header .header-left .logo img {
    height: 62px;
  }
}

/*****************************************
iPad - Landscape - 1024px
*****************************************/
@media screen and (max-width: 1024px) {
  /************
  Header
************/
  header {
    padding: 8px 0; }
    header .header-left .logo{
      position: relative;
      top: 0;
    }
    .slicknav_menu {
      top: 0;
    }
  header .header-left .logo img {
    width: auto;
    height: 45px; }
  header .header-right nav.social ul {
    margin: 0; }
  header .header-right nav.social ul li.houzz {
    margin-top: -5px; }
  header .header-right nav.social ul li.houzz img {
    width: 60px; }
  header .header-right nav.main ul li {
    margin-left: 50px; }
  .secondary-photo-header h1 {
    padding: 60px 0;
    font-size: 45px; }
  .portfolio-header h1 {
    padding: 60px 0;
    font-size: 45px; }
  footer.main .ftr-flex .ftr-right h3 {
    font-size: 18px; }
  footer.main .ftr-flex .ftr-right ul li {
    margin-left: 12px; }
  footer.main .ftr-flex .ftr-right ul li img {
    height: 40px; }
  footer.main .ftr-flex .ftr-right footer.main .ftr-flex .ftr-left .copyright {
    font-size: 13px; }
  /************
  Home Page
************/
  .home-slides {
    height: calc(100vh - 130px); }
  .home-slides h1 {
    font-size: 75px; }
  .home-slides .flexslider {
    top: 130px; }
  .home-slides .down-arrow {
    padding: 12px 10px 6px 10px; }
  .home-slides .down-arrow img {
    width: 20px;
    height: 20px; }
  .ftr-cta .cta-flex h2 {
    font-size: 42px; }
  ul.home-services #service-2,
  ul.home-services #service-5 {
    margin-bottom: 0; }
  ul.featured-projects li {
    border-left: 3px solid #fff;
    border-right: 3px solid #fff;
    border-bottom: 2px solid #fff;
    width: calc(25% - 6px); }
  ul.featured-projects {
    margin-bottom: 120px; }
  .testimonial-cta {
    margin: 0 auto 75px auto; }
  ul.home-services li .content-container .content ul {
    margin-left: 20px; }
  /************
  About
************/
  .team-members ul li:last-child {
    margin-bottom: 40px; }
  .company-affiliations ul {
    width: 90%;
    max-width: 90%; }
  .company-affiliations ul li {
    margin: 0 2%; }
  .company-affiliations ul li img {
    height: 80px; }
	.canine-staff ul li .job-title h4 {
    letter-spacing: 0.25px; 
		font-size: 90%;
	}
  /************
  Process
************/
  .process-steps ul li.process {
    margin-bottom: 80px; }
  /************
  Portfolio
************/
  .portfolio-feed ul li {
    border-left: 3px solid #fff;
    border-right: 3px solid #fff;
    border-bottom: 2px solid #fff;
    width: calc(33.3% - 6px); }
  .portfolio-feed ul li .project-single .caption {
    padding: 15px 2%;
    width: 98%; }
  .portfolio-feed ul li .project-single .caption h3 {
    font-size: 20px;
    line-height: 24px; }
  .modular-portfolio .module-9 a div {
    border-left: 3px solid #fff;
    border-right: 3px solid #fff;
    border-bottom: 2px solid #fff;
    width: calc(100% - 6px); }
  .modular-portfolio .module-1 a div {
    border-left: 3px solid #fff;
    border-right: 3px solid #fff;
    border-bottom: 2px solid #fff;
    width: calc(100% - 6px); }
  .modular-portfolio .module-5 {
    height: 500px; }
  .modular-portfolio .module-5 .video {
    height: 500px; }
  .modular-portfolio .module-5 .full-length-photo {
    height: 500px; }
  .modular-portfolio .module-5 .full-length-photo span {
    top: 515px; }
  /************
  Testimonials
************/
  .testimonials-feed ul li .content .open-quote {
    font-size: 85px;
    left: -60px; }
  /************
  Contact
************/
  .full-map {
    padding: 150px 1%; }
  .full-map h2 {
    font-size: 36px; }
  /************
  Employee Handbook
************/
  .page-id-682 .full-center,
  .page-id-880 .full-center {
    width: 90%; }
    .page-id-682 .full-center .eh-welcome,
    .page-id-880 .full-center .eh-welcome {
      margin: 10px auto; }
      .page-id-682 .full-center .eh-welcome .right-col,
      .page-id-880 .full-center .eh-welcome .right-col {
        width: 100%; }
        .page-id-682 .full-center .eh-welcome .right-col h2,
        .page-id-880 .full-center .eh-welcome .right-col h2 {
          font-size: 40px; }
  .page-id-682 .eh-mission .full-center,
  .page-id-880 .eh-mission .full-center {
    padding: 100px 0; }
  .page-id-682 .secondary-photo-header h1,
  .page-id-880 .secondary-photo-header h1 {
    padding: 80px 0;
    font-size: 40px; }
  .page-id-682 .full-center .eh-welcome,
  .page-id-880 .full-center .eh-welcome {
    display: block; }
    .page-id-682 .full-center .eh-welcome .left-col,
    .page-id-880 .full-center .eh-welcome .left-col {
      width: 50%;
      text-align: center;
      margin: 60px auto 0 auto; }
    .page-id-682 .full-center .eh-welcome .right-col,
    .page-id-880 .full-center .eh-welcome .right-col {
      width: 90%;
      text-align: center;
      margin: 0 auto; }
      .page-id-682 .full-center .eh-welcome .right-col p,
      .page-id-880 .full-center .eh-welcome .right-col p {
        text-align: center; }
  .page-id-682 .eh-history h1.sm,
  .page-id-880 .eh-history h1.sm {
    font-size: 36px; }
  .page-id-682 .eh-history ul.timeline li.milestone .milestone-content p,
  .page-id-880 .eh-history ul.timeline li.milestone .milestone-content p {
    font-size: 18px;
    line-height: 26px; }
  .page-id-682 .eh-whattoexpect .full-center ul.timeframe-container,
  .page-id-880 .eh-whattoexpect .full-center ul.timeframe-container {
    padding-top: 30px;
    margin: 30px auto 0 auto; }
    .page-id-682 .eh-whattoexpect .full-center ul.timeframe-container li.timeframe,
    .page-id-880 .eh-whattoexpect .full-center ul.timeframe-container li.timeframe {
      margin: 0 auto 50px auto; }
      .page-id-682 .eh-whattoexpect .full-center ul.timeframe-container li.timeframe .timeframe-content,
      .page-id-880 .eh-whattoexpect .full-center ul.timeframe-container li.timeframe .timeframe-content {
        width: 45%; }
      .page-id-682 .eh-whattoexpect .full-center ul.timeframe-container li.timeframe .title,
      .page-id-880 .eh-whattoexpect .full-center ul.timeframe-container li.timeframe .title {
        font-size: 90px;
        line-height: 90px; }
  .page-id-682 .eh-requests ul.request-links,
  .page-id-880 .eh-requests ul.request-links {
    display: block; }
    .page-id-682 .eh-requests ul.request-links li,
    .page-id-880 .eh-requests ul.request-links li {
      width: 100%;
      margin-bottom: 40px; }
      .page-id-682 .eh-requests ul.request-links li:last-child,
      .page-id-880 .eh-requests ul.request-links li:last-child {
        margin-bottom: 0; }
  .page-id-682 .eh-culture .full-center,
  .page-id-880 .eh-culture .full-center {
    display: block; }
    .page-id-682 .eh-culture .full-center .left-col,
    .page-id-880 .eh-culture .full-center .left-col {
      width: 70%;
      margin: 0 auto; }
    .page-id-682 .eh-culture .full-center .right-col,
    .page-id-880 .eh-culture .full-center .right-col {
      width: 100%; }
      .page-id-682 .eh-culture .full-center .right-col h1,
      .page-id-880 .eh-culture .full-center .right-col h1 {
        text-align: center; }
      .page-id-682 .eh-culture .full-center .right-col .content,
      .page-id-880 .eh-culture .full-center .right-col .content {
        margin-bottom: 60px; }
        .page-id-682 .eh-culture .full-center .right-col .content p,
        .page-id-880 .eh-culture .full-center .right-col .content p {
          text-align: center; } }

@media screen and (max-width: 875px) {
  /************
    Module 1
  ************/
  .modular-portfolio .module-1 a div {
    padding: 45% 0; }
  /************
    Module 2
  ************/
  .modular-portfolio .module-2 {
    width: 90%;
    max-width: 90%;
    height: 315px; }
  .modular-portfolio .module-2 .large-photo {
    width: 49.5%;
    height: 300px; }
  .modular-portfolio .module-2 .large-photo span {
    top: 315px;
    left: 0; }
  .modular-portfolio .module-2 .small-photo {
    width: 49.5%;
    height: 300px;
    left: 0px;
    top: 0;
    border: none; }
  .modular-portfolio .module-2 .small-photo span {
    top: 315px; }
  /************
     Module 3
   ************/
  .modular-portfolio .module-3 {
    width: 90%;
    max-width: 90%;
    height: 400px; }
  .modular-portfolio .module-3 .large-photo {
    width: 58%;
    height: 400px; }
  .modular-portfolio .module-3 .large-photo span {
    top: 415px;
    left: 0; }
  .modular-portfolio .module-3 .video {
    width: 58%;
    height: 400px; }
  .modular-portfolio .module-3 .first-square-photo {
    width: 40.5%;
    height: 195px; }
  .modular-portfolio .module-3 .first-square-photo span {
    top: -30px;
    left: 0px; }
  .modular-portfolio .module-3 .second-square-photo {
    width: 40.5%;
    height: 195px;
    right: 0;
    top: 205px;
    border: none; }
  .modular-portfolio .module-3 .second-square-photo span {
    top: 210px; }
  /************
     Module 4
   ************/
  .modular-portfolio .module-4 {
    width: 90%;
    max-width: 95%;
    height: 575px; }
  .modular-portfolio .module-4 .top-photo {
    width: 55%;
    height: 300px; }
  .modular-portfolio .module-4 .top-photo span {
    top: 315px;
    left: 23%; }
  .modular-portfolio .module-4 .bottom-photo {
    width: 55%;
    height: 300px;
    top: 250px; }
  .modular-portfolio .module-4 .bottom-photo span {
    top: 315px; }
  /************
     Module 5
   ************/
  .modular-portfolio .module-5 {
    width: 100%;
    height: 400px; }
  .modular-portfolio .module-5 .full-length-photo {
    width: 100%;
    height: 400px; }
  .modular-portfolio .module-5 .full-length-photo span {
    top: 415px;
    left: 15px; }
  .modular-portfolio .module-5 .video {
    width: 100%;
    height: 400px; }
  /************
     Module 6
   ************/
  .modular-portfolio .module-6 {
    width: 90%;
    max-width: 95%;
    height: 420px; }
  .modular-portfolio .module-6 .large-photo {
    width: 85%;
    height: 350px; }
  .modular-portfolio .module-6 .large-photo span {
    top: 365px;
    left: 0; }
  .modular-portfolio .module-6 .square-photo {
    padding: 15%;
    width: auto;
    height: auto;
    top: 225px;
    right: 0; }
  /************
     Module 7
   ************/
  .modular-portfolio .module-7 {
    width: 90%;
    max-width: 95%;
    height: 365px; }
  .modular-portfolio .module-7 .right-photo {
    width: 85%;
    height: 350px; }
  .modular-portfolio .module-7 .right-photo span {
    top: 365px; }
  /************
     Module 8
   ************/
  .modular-portfolio .module-8 {
    width: 90%;
    max-width: 95%;
    height: 750px;
    position: relative; }
  .modular-portfolio .module-8 .top-photo {
    padding: 30%;
    width: auto;
    height: auto; }
  .modular-portfolio .module-8 .bottom-photo {
    padding: 30%;
    width: auto;
    height: auto;
    top: 40%; }
  /************
     Module 9
   ************/
  .modular-portfolio .module-9 {
    width: 100%; }
  .modular-portfolio .module-9 a {
    width: 50%; }
  .modular-portfolio .module-9 a div {
    width: calc(100% - 8px);
    padding: 40% 0; }
  /************
     Module 10
   ************/
  .modular-portfolio .module-10 {
    width: 90%;
    max-width: 95%;
    height: 350px; }
  .modular-portfolio .module-10 .left-photo {
    width: 35%;
    height: 350px; }
  .modular-portfolio .module-10 .horizontal-photo {
    width: 61%;
    height: 350px; }
  /************
     Module 11
   ************/
  .modular-portfolio .module-11 {
    width: 75%;
    max-width: 95%;
    height: 725px; }
  .modular-portfolio .module-11 .top-photo {
    width: 55%;
    height: 420px;
    left: 0; }
  .modular-portfolio .module-11 .bottom-photo {
    width: 55%;
    height: 420px;
    right: 0;
    top: 300px; } }

@media screen and (max-width: 850px) {
  header .header-right nav.social ul li img {
    width: 28px;
    height: 28px; }
  header .header-right nav.main ul li {
    margin-left: 35px; }
  header .header-right nav.main ul li a {
    font-size: 16px; }
  .home-slides h1 {
    font-size: 64px; }
  ul.home-services {
    width: 90%;
    max-width: 90%; }
  ul.home-services #service-2 .image-container .image-two {
    top: 31px; }
  ul.home-services li .image-container {
    width: 47%; }
  ul.home-services li .content-container {
    width: 49%; }
  #homeTestimonials {
    width: 75%;
    max-width: 75%; }
  #homeTestimonials .open-quote {
    font-size: 85px;
    left: -60px; } }

@media screen and (max-width: 767px) {
  header .header-right {
    display: none; }
  .slicknav_menu {
    display: block; }
  header .header-left .logo img {
    width: auto;
    height: 35px; }
  .home-slides .flexslider {
    top: 115px; }
  nav.mobile-social {
    margin-bottom: 0; }
    nav.mobile-social ul {
      margin-bottom: 0; }
    nav.mobile-social .careers-link {
      text-transform: uppercase;
      letter-spacing: 1px;
      font-size: 15px;
      font-weight: 700;
      position: relative;
      top: 0px;
      padding: 0 0 40px 0; }
      nav.mobile-social .careers-link a {
        color: #0A8288;
        -webkit-transition: all 0.3s ease-in-out;
        -o-transition: all 0.3s ease-in-out;
        transition: all 0.3s ease-in-out;
        opacity: 1; }
        nav.mobile-social .careers-link a:hover {
          opacity: 0.8; }
  .slicknav_menu nav.mobile-social ul {
    margin-bottom: 0; } }

/*****************************************
iPhone - Portrait - 768px
*****************************************/
@media screen and (max-width: 768px) {
  /************
 Home Page
************/
  .home-slides h1 {
    font-size: 60px; }
  .home-slides .down-arrow {
    padding: 12px 10px 6px 10px; }
  .home-slides .down-arrow img {
    width: 20px;
    height: 20px; }
  ul.home-services li .image-container {
    width: 100%;
    float: none;
    display: inline-block; }
  ul.home-services li .image-container .image-one {
    width: 49% !important;
    float: left;
    top: 0 !important; }
  ul.home-services li .image-container .image-two {
    width: 49% !important;
    float: right;
    top: 0 !important; }
  ul.home-services li .content-container {
    width: 100%;
    float: none;
    display: block;
    position: relative;
    top: 30px; }
  ul.featured-projects li .project-single h3 {
    padding: 38% 1%;
    width: 98%; }
  ul.home-services #service-2 .image-container .image-one {
    top: -7px !important; }
  /************
 Footer
************/
  .ftr-cta .cta-flex {
    padding: 50px 0; }
  .ftr-cta .cta-flex h2 {
    font-size: 40px; }
  /************
 About Page
************/
  .team-members ul li.member {
    display: block; }
  .team-members ul li.member .team-photo {
    width: 50%;
    margin: 0 0 30px 0; }
  .team-members ul li.member .team-content {
    width: 100%; }
  /************
 Process Page
************/
  .process-steps ul li.process {
    display: block;
    margin-bottom: 100px; }
  .process-steps ul li.process .step-photo {
    width: 50%;
    margin: 0 0 30px 0; }
  .process-steps ul li.process .step-content {
    width: 100%; }
  /************
 Portfolio Page
************/
  .modular-portfolio .module-8 {
    height: 700px; }
  /************
 Testimonials Page
************/
  .testimonials-feed ul li {
    width: 90%;
    padding: 80px 5%; }
  /************
 Contact Page
************/
  .contact-wrap {
    display: block; }
  .contact-wrap .contact-left {
    text-align: center;
    width: 100%;
    margin: 0 auto 30px auto;
    border-bottom: 1px solid #ccc;
    padding-bottom: 30px; }
  .contact-wrap .contact-left h4.email {
    margin-bottom: 25px; }
  .contact-wrap .contact-right {
    margin: 0 auto;
    width: 70%; }
  .contact-wrap .contact-right h3 {
    text-align: center; }
  .contact-wrap .contact-right .frm_submit {
    margin: 0 auto !important;
    text-align: center !important; }
  /************
  About
************/
  .company-affiliations ul {
    width: 90%;
    max-width: 90%; }
  .company-affiliations ul li {
    margin: 0 2%; }
  .company-affiliations ul li img {
    height: 70px; }
  .canine-staff ul li .job-title {
    padding: 15px 2%; }
  .canine-staff ul li .job-title h4 {
    font-size: 90%;
	 letter-spacing: 0.25px;
    line-height: 24px; }
  /************
  Contact
************/
  .full-map {
    padding: 100px 1%; }
  .full-map h2 {
    font-size: 30px;
    line-height: 38px; } }

/*****************************************
iPhone6 Plus - Landscape - 414px
*****************************************/
@media screen and (max-width: 414px) {
  ul.home-services li .image-container {
    float: none; }
  ul.home-services li .image-container .image-one {
    width: 100% !important; }
  ul.home-services li .image-container .image-two {
    display: none; }
  ul.home-services li .content-container h2,
  .team-members ul li.member .team-photo,
  .process-steps ul li.process .step-photo,
  .process-steps ul li.process .step-content h4 {
    margin-bottom: 20px; }
  ul.featured-projects li .project-single h3 {
    padding: 38% 1%; }
  .home-slides {
    height: calc(60vh - 90px); }
  .home-slides .down-arrow {
    display: none; }
  .full-center {
    padding: 40px 0; }
  .testimonials-feed ul li .content .open-quote,
  #homeTestimonials .open-quote {
    font-size: 55px;
    left: -30px; }
  footer.main .ftr-flex .ftr-right ul,
  .company-affiliations ul {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
    width: 100%; }
  footer.main .ftr-flex .ftr-right ul li,
  .company-affiliations ul li {
    margin-bottom: 5px; }
  .team-members ul li.member .team-photo {
    width: 100%; }
  .secondary-photo-header h1 {
    font-size: 38px; }
  /************
  Contact Page
************/
  .contact-wrap .contact-right {
    width: 80%; }
  .full-map {
    padding: 80px 1%; }
  .contact-wrap .contact-left h4 {
    font-size: 28px; }
  /************
  Employee Handbook
************/
  .page-id-682 .full-center,
  .page-id-880 .full-center {
    padding: 30px 0; }
    .page-id-682 .full-center .eh-welcome .right-col,
    .page-id-880 .full-center .eh-welcome .right-col {
      width: 100%; }
      .page-id-682 .full-center .eh-welcome .right-col .signature-content span.signature,
      .page-id-880 .full-center .eh-welcome .right-col .signature-content span.signature {
        font-size: 26px; }
      .page-id-682 .full-center .eh-welcome .right-col .signature-content span.title,
      .page-id-880 .full-center .eh-welcome .right-col .signature-content span.title {
        font-size: 19px; }
    .page-id-682 .full-center .eh-welcome .left-col,
    .page-id-880 .full-center .eh-welcome .left-col {
      margin: 30px auto 20px auto;
      width: 60%; }
  .page-id-682 .eh-whattoexpect .full-center ul.timeframe-container,
  .page-id-880 .eh-whattoexpect .full-center ul.timeframe-container {
    margin-top: 0; }
    .page-id-682 .eh-whattoexpect .full-center ul.timeframe-container li.timeframe .title,
    .page-id-880 .eh-whattoexpect .full-center ul.timeframe-container li.timeframe .title {
      font-size: 45px;
      color: #264e65; }
  .page-id-682 .eh-faqs .full-center,
  .page-id-880 .eh-faqs .full-center {
    padding: 50px 0; }
  .page-id-682 .eh-faqs .flex-control-nav,
  .page-id-880 .eh-faqs .flex-control-nav {
    display: none; }
  .page-id-682 .eh-faqs .custom-navigation-faq,
  .page-id-880 .eh-faqs .custom-navigation-faq {
    margin-top: 30px; }
  .page-id-682 .eh-faqs #faqs ul.faq-feed,
  .page-id-880 .eh-faqs #faqs ul.faq-feed {
    padding-bottom: 0; }
    .page-id-682 .eh-faqs #faqs ul.faq-feed li .message-box,
    .page-id-880 .eh-faqs #faqs ul.faq-feed li .message-box {
      width: 82%;
      line-height: 26px; }
  .page-id-682 .eh-values ul.twocol-feed li:last-child,
  .page-id-682 .eh-policies ul.twocol-feed li:last-child,
  .page-id-682 .eh-benefits ul.twocol-feed li:last-child,
  .page-id-682 .eh-contacts ul.twocol-feed li:last-child,
  .page-id-880 .eh-values ul.twocol-feed li:last-child,
  .page-id-880 .eh-policies ul.twocol-feed li:last-child,
  .page-id-880 .eh-benefits ul.twocol-feed li:last-child,
  .page-id-880 .eh-contacts ul.twocol-feed li:last-child {
    margin-bottom: 15px; }
    .page-id-682 .eh-values ul.twocol-feed li:last-child p:last-child,
    .page-id-682 .eh-policies ul.twocol-feed li:last-child p:last-child,
    .page-id-682 .eh-benefits ul.twocol-feed li:last-child p:last-child,
    .page-id-682 .eh-contacts ul.twocol-feed li:last-child p:last-child,
    .page-id-880 .eh-values ul.twocol-feed li:last-child p:last-child,
    .page-id-880 .eh-policies ul.twocol-feed li:last-child p:last-child,
    .page-id-880 .eh-benefits ul.twocol-feed li:last-child p:last-child,
    .page-id-880 .eh-contacts ul.twocol-feed li:last-child p:last-child {
      margin-bottom: 0; }
  .page-id-682 .eh.mission,
  .page-id-682 .eh-welcome,
  .page-id-682 .eh-values,
  .page-id-682 .eh-whattoexpect,
  .page-id-682 .eh-policies,
  .page-id-682 .eh-faqs,
  .page-id-682 .eh-training,
  .page-id-682 .eh-benefits,
  .page-id-682 .eh-requests,
  .page-id-682 .eh-holidays,
  .page-id-682 .eh-culture,
  .page-id-682 .eh-contacts,
  .page-id-682 .eh-history,
  .page-id-880 .eh.mission,
  .page-id-880 .eh-welcome,
  .page-id-880 .eh-values,
  .page-id-880 .eh-whattoexpect,
  .page-id-880 .eh-policies,
  .page-id-880 .eh-faqs,
  .page-id-880 .eh-training,
  .page-id-880 .eh-benefits,
  .page-id-880 .eh-requests,
  .page-id-880 .eh-holidays,
  .page-id-880 .eh-culture,
  .page-id-880 .eh-contacts,
  .page-id-880 .eh-history {
    padding: 30px 0; }
  .page-id-682 .eh-holidays .full-center .holiday-feed ul li,
  .page-id-880 .eh-holidays .full-center .holiday-feed ul li {
    margin-bottom: 30px; }
  .page-id-682 .eh-training .full-center ul.certifications-feed li,
  .page-id-880 .eh-training .full-center ul.certifications-feed li {
    margin-bottom: 30px; }
  .page-id-682 .eh-training .full-center ul.certifications-feed li:last-child,
  .page-id-880 .eh-training .full-center ul.certifications-feed li:last-child {
    margin-bottom: 0; }
  .page-id-682 .eh-contacts,
  .page-id-880 .eh-contacts {
    padding: 30px 0; }
  .page-id-880 .eh-values ul.twocol-feed li:last-child {
    margin-bottom: 60px; }
  .single-job .full-part-time {
    margin-bottom: 20px; }
    .single-job .full-part-time span.details {
      font-size: 18px;
      line-height: 24px; }
  .single-job .content {
    padding-top: 20px; } }

/*****************************************
iPhone6 - Portrait - 375px
*****************************************/
@media screen and (max-width: 375px) {
  .ftr-cta .cta-flex h2 {
    font-size: 28px; }
  footer.main .ftr-flex {
    width: 85%;
    padding: 5%; }
  footer.main .ftr-flex {
    line-height: 22px; }
  ul.home-services li .content-container .content ul li {
    width: 90%; }
  .company-affiliations ul li img {
    height: 52px; }
  .contact-wrap .contact-left h4 {
    font-size: 22px;
    line-height: 32px; }
  .full-map h2,
  .ftr-cta .cta-flex h2 {
    font-size: 22px;
    line-height: 32px; }
  footer.main .ftr-flex .ftr-left .contact-info p {
    font-size: 20px; }
  footer.main .ftr-flex .ftr-right ul li img {
    height: 40px; }
  footer.main .ftr-flex .ftr-right h3 {
    font-size: 18px;
    line-height: 27px; }
  footer.main .ftr-flex .ftr-left {
    margin: 0 auto 25px auto; }
  ul.home-services li .content-container h2,
  .team-members ul li.member .team-photo,
  .process-steps ul li.process .step-photo,
  .process-steps ul li.process .step-content h4,
  .ftr-cta .cta-flex h2,
  .team-members ul li.member .team-content h4,
  ul.home-services li .content-container h2,
  .process-steps ul li.process .step-content h4,
  .company-affiliations h3 {
    font-size: 28px; }
  .full-center .content h1 {
    font-size: 32px;
    line-height: 40px; } }

/* Custom Login Page Styles */
.login-page-container {
    max-width: 500px;
    margin: 60px auto;
    padding: 20px;
}

.login-form-wrapper {
    background: #ffffff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.login-form-wrapper h1 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 2.5rem;
    font-weight: 600;
    color: #5A6E87;
}

.login-error {
    background: #fff2f2;
    color: #dc3232;
    padding: 15px;
    border-radius: 4px;
    margin-bottom: 25px;
    text-align: center;
    font-size: 0.9rem;
}

.login-form .form-group {
    margin-bottom: 25px;
}

.login-form .form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 500;
    color: #5A6E87;
}

.login-form .form-group input[type="text"],
.login-form .form-group input[type="password"] {
    width: 100%;
    padding: 15px;
    border: 2px solid #eaeaea;
    border-radius: 6px;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-sizing: border-box;
    height: auto;
    line-height: normal;
    display: block;
}

.login-form .form-group input[type="text"]:focus,
.login-form .form-group input[type="password"]:focus {
    outline: none;
    border-color: #0A8288;
    box-shadow: 0 0 0 3px rgba(10, 130, 136, 0.1);
}

.login-form .remember-me {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 25px;
}

.login-form .remember-me input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin: 0;
    cursor: pointer;
}

.login-form .remember-me label {
    margin: 0;
    font-size: 0.95rem;
    cursor: pointer;
}

.login-form .login-button {
    width: 100%;
    padding: 15px;
    background: #0A8288;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.login-form .login-button:hover {
    background: #005487;
    transform: translateY(-1px);
}

.login-form .login-button:active {
    transform: translateY(0);
}

.login-form .form-links {
    text-align: center;
    margin-top: 25px;
}

.login-form .form-links a {
    color: #0A8288;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.login-form .form-links a:hover {
    color: #005487;
    text-decoration: underline;
}

@media screen and (max-width: 768px) {
    .login-page-container {
        margin: 30px auto;
        padding: 15px;
    }

    .login-form-wrapper {
        padding: 25px;
    }

    .login-form-wrapper h1 {
        font-size: 2rem;
    }
}

@media screen and (max-width: 480px) {
    .login-form-wrapper {
        padding: 20px;
    }

    .login-form-wrapper h1 {
        font-size: 1.8rem;
    }

    .login-form .form-group input[type="text"],
    .login-form .form-group input[type="password"] {
        padding: 12px;
    }
}

/* WooCommerce Lost Password Page Styles */
.woocommerce-ResetPassword {
    max-width: 500px;
    margin: 40px auto;
    padding: 40px;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.woocommerce-ResetPassword p {
    margin-bottom: 20px;
    color: #052D44;
    font-size: 14px;
    line-height: 1.6;
}

.woocommerce-ResetPassword .woocommerce-form-row {
    margin-bottom: 20px;
    width: 100%!important;
}

.woocommerce-ResetPassword .woocommerce-form-row label {
    display: block;
    margin-bottom: 8px;
    color: #052D44;
    font-size: 17px;
    font-weight: 500;
    text-align: left;
    display: block;
    margin-bottom: 10px;
    font-weight: 500;
    color: #5A6E87;
}

/* Updated input styles to match login form */
.woocommerce-ResetPassword .woocommerce-form-row input[type="text"],
.woocommerce-ResetPassword .woocommerce-form-row input[type="password"],
.woocommerce-ResetPassword .woocommerce-form-row input[type="email"] {
    width: 100%;
    padding: 15px;
    border: 2px solid #eaeaea;
    border-radius: 6px;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-sizing: border-box;
    height: auto;
    line-height: normal;
    display: block;
}

.woocommerce-ResetPassword .woocommerce-form-row input[type="text"]:focus,
.woocommerce-ResetPassword .woocommerce-form-row input[type="password"]:focus,
.woocommerce-ResetPassword .woocommerce-form-row input[type="email"]:focus {
    outline: none;
    border-color: #0A8288;
    box-shadow: 0 0 0 3px rgba(10, 130, 136, 0.1);
}

.woocommerce-ResetPassword .woocommerce-Button {
    width: 100%!important;
    padding: 15px!important;
    background: #0A8288!important;
    color: white!important;
    border: none!important;
    border-radius: 6px!important;
    font-size: 16px!important;
    font-weight: 600!important;
    cursor: pointer!important;
    transition: all 0.3s ease!important;
    margin-top: 10px!important;
    text-align: center!important;
    display: block!important;
}

.woocommerce-ResetPassword .woocommerce-Button:hover {
    background: #052D44;
    transform: translateY(-1px);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.woocommerce-message,
.woocommerce-error {
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 6px;
    font-size: 14px;
    line-height: 1.4;
    max-width: 500px;
    margin: 20px auto;
}

.woocommerce-message {
    background-color: #e8f5e9;
    color: #2e7d32;
    border: 1px solid #a5d6a7;
}

.woocommerce-error {
    background-color: #ffebee;
    color: #c62828;
    border: 1px solid #ffcdd2;
    list-style: none;
}

@media (max-width: 768px) {
    .woocommerce-ResetPassword {
        margin: 20px;
        padding: 30px 20px;
    }
}

#tab-description p {
  margin: 0 0 20px;
}

.starter-kit-message {
  background: #f5f5f5;
  padding: 20px;
  margin-bottom: 30px;
  border-radius: 4px;
  border-left: 4px solid #0A8288;
}

.starter-kit-message p {
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
}

