@charset "UTF-8";
html, body {
  font-size: 18px;
  position: relative;
}

body {
  background: #FFF;
  color: #222;
  font-family: "Open Sans", Helvetica Neue, Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.6;
  margin: 0;
  min-height: 100vh;
  padding: 0;
}
body:before {
  background: #535868;
  bottom: 0;
  content: "";
  display: block;
  left: 0;
  position: absolute;
  top: 0;
  transform: translateX(-280px);
  transition: all 0.3s ease;
  width: 280px;
  z-index: -1;
}
body.menu-toggle {
  overflow-x: hidden;
}
body.menu-toggle:before {
  transform: translateX(0);
}

h1, h2, h3, h4, h5, h6 {
  color: #141519;
  font-family: "Archivo Black", Helvetica Neue, Helvetica, Arial, sans-serif;
  font-weight: 700;
  line-height: 1.2;
  margin: 0.25em 0;
}

h1 {
  font-size: 3rem;
}
@media screen and (max-width: 800px) {
  h1 {
    font-size: 2.5rem;
  }
}
@media screen and (max-width: 640px) {
  h1 {
    font-size: 2rem;
  }
}
@media screen and (max-width: 480px) {
  h1 {
    font-size: 1.5rem;
  }
}

h2 {
  font-size: 1.75rem;
}

h3 {
  font-size: 1.5rem;
}

h4 {
  font-size: 1.25rem;
}

p {
  margin: 1em 0;
}

a {
  color: #c0dd58;
  text-decoration: none;
}
a:hover {
  color: #a0c127;
}
a img {
  border: none;
}

input, button, textarea, select {
  font-family: "Open Sans", Helvetica Neue, Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  font-size: 1rem;
}

#header, #main-content-container, #footer {
  transition: all 0.3s ease;
}
.menu-toggle #header, .menu-toggle #main-content-container, .menu-toggle #footer {
  transform: translateX(280px);
}

#header {
  margin: auto;
  max-width: 1200px;
  padding: 30px 30px 0 30px;
}
@media screen and (max-width: 1024px) {
  #header {
    padding: 10px 0;
  }
}
@media screen and (max-width: 640px) {
  #header {
    box-sizing: border-box;
    min-height: 75px;
  }
}

#header-toggle {
  color: #141519;
  display: none;
  float: left;
  left: 20px;
  line-height: 1;
  margin-bottom: 5px;
  margin-left: 20px;
  margin-top: 18px;
  position: relative;
  text-transform: uppercase;
  top: 0;
  z-index: 35;
}
#header-toggle .fa {
  font-size: 44px;
  height: 44px;
  overflow: hidden;
  width: 38px;
}
.menu-toggle #header-toggle .fa:before {
  content: "";
  left: -1px;
  position: relative;
}
#header-toggle span {
  display: block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  line-height: 1;
}
@media screen and (max-width: 1024px) {
  #header-toggle {
    display: inline-block;
    position: absolute;
  }
}
@media screen and (max-width: 640px) {
  #header-toggle {
    left: 0;
    margin-top: 10px;
  }
}

#header-nav {
  text-align: center;
}

#logo-link {
  display: block;
  float: left;
  max-width: 384px;
}
@media screen and (max-width: 1024px) {
  #logo-link {
    float: none;
    margin: auto;
    width: 300px;
    max-width: 100%;
  }
}
@media screen and (max-width: 640px) {
  #logo-link {
    box-sizing: border-box;
    padding-left: 60px;
    padding-right: 20px;
  }
}

#logo-image {
  display: block;
  height: auto;
  max-width: 100%;
}

#nav-list {
  display: flex;
  flex-direction: column-reverse;
  text-align: right;
}
@media screen and (max-width: 1024px) {
  #nav-list {
    background: #2b2b2b;
    display: block;
    left: -280px;
    margin-right: 0;
    padding: 0;
    position: absolute;
    text-align: left;
    top: 0;
    width: 280px;
  }
}

#primary-nav {
  list-style: none;
  margin: 0;
  padding: 0;
}
#primary-nav li {
  display: inline-block;
}
#primary-nav a {
  color: #141519;
  display: block;
  line-height: 100px;
  margin: 0;
  padding: 0 0.5rem;
}

#secondary-nav {
  list-style: none;
  margin: -30px 0 0 0;
  padding: 0;
}
#secondary-nav li {
  display: inline-block;
}
#secondary-nav a {
  color: #141519;
  display: block;
  font-weight: 700;
  line-height: 48px;
  padding: 0 0.5rem;
}
#secondary-nav .secondary-nav-button {
  background: #c0dd58;
  padding: 0 3rem;
}
#secondary-nav .secondary-nav-social span {
  display: none;
}

@media screen and (max-width: 1024px) {
  #primary-nav, #secondary-nav {
    margin: 0;
  }
  #primary-nav li, #secondary-nav li {
    display: block;
  }
  #primary-nav a, #secondary-nav a {
    background: #535868;
    border-bottom: 1px solid #3c404c;
    font-size: 1.125em;
    font-weight: 400;
    line-height: 1.4;
    padding: 16px 18px;
  }
  #primary-nav a:hover, #secondary-nav a:hover {
    background: #c0dd58;
    color: #141519;
  }
  #primary-nav .secondary-nav-social span, #secondary-nav .secondary-nav-social span {
    display: inline-block;
  }
  #primary-nav .secondary-nav-button, #secondary-nav .secondary-nav-button {
    background: #535868;
    padding: 16px 18px;
  }
}

.page-home #main-content {
  position: relative;
  z-index: 5;
}

.home-heading {
  font-size: 2.5rem;
}

#home-carousel {
  max-height: 55vw;
  overflow: hidden;
  position: relative;
}
#home-carousel em {
  bottom: -0.5em;
  color: transparent;
  font-family: "Archivo Black", Helvetica Neue, Helvetica, Arial, sans-serif;
  font-size: 8rem;
  font-style: normal;
  line-height: 1;
  position: relative;
  -webkit-text-stroke: 1px rgba(192, 221, 88, 0.4);
  text-transform: uppercase;
}
#home-carousel strong {
  color: #FFF;
  font-family: "Archivo Black", Helvetica Neue, Helvetica, Arial, sans-serif;
  font-size: 4rem;
  font-style: normal;
  line-height: 1.1;
  text-transform: uppercase;
}
#home-carousel .wistia_responsive_padding {
  height: 100%;
  position: absolute;
  width: 100%;
}
@media screen and (max-width: 1200px) {
  #home-carousel em {
    font-size: 12vw;
  }
  #home-carousel strong {
    font-size: 6vw;
  }
}

.home-carousel-item {
  background-position: center center;
  background-size: cover;
  box-sizing: content-box;
  position: relative;
}
.home-carousel-item:before {
  background: rgba(0, 0, 0, 0.4);
  bottom: 0;
  content: "";
  display: block;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 1;
}
.home-carousel-item:after {
  background-image: url(/images/border-white.png);
  background-position: bottom center;
  background-repeat: no-repeat;
  bottom: 0;
  content: "";
  display: block;
  height: 800px;
  left: 0;
  position: absolute;
  width: 100%;
  z-index: 2;
}

.home-carousel-item-content {
  box-sizing: border-box;
  left: 50%;
  margin: auto;
  max-width: 100%;
  padding: 0 30px 10vw 30px;
  position: absolute;
  top: 50%;
  transform: translate3d(-50%, -50%, 0);
  width: 1260px;
  z-index: 5;
}
.home-carousel-item-content a {
  margin-top: 1em;
}
@media screen and (min-width: 1201px) {
  .home-carousel-item-content {
    padding-bottom: 8rem;
  }
}
@media screen and (max-width: 640px) {
  .home-carousel-item-content a {
    font-size: 0.85rem;
    margin-top: 0;
    padding: 6px 45px;
  }
}
@media screen and (max-width: 480px) {
  .home-carousel-item-content {
    padding: 0 20px 10vw 20px;
  }
  .home-carousel-item-content a {
    display: none !important;
  }
}

.wistia_embed {
  max-height: 80vh;
}
.wistia_embed div {
  display: block !important;
  height: auto !important;
  position: static !important;
  width: auto !important;
}
.wistia_embed .w-ui-container {
  display: none !important;
}

#home-services {
  height: 0;
  overflow: visible;
  position: relative;
  z-index: 5;
}
@media screen and (max-width: 800px) {
  #home-services {
    height: auto;
  }
  #home-services .content-inner {
    padding-top: 0;
  }
}

.home-service-column {
  box-sizing: border-box;
  float: left;
  margin-top: -60px;
  padding: 20px;
  width: 33.33%;
}
@media screen and (max-width: 800px) {
  .home-service-column {
    float: none;
    margin-top: 0;
    width: auto;
  }
}

.home-service {
  align-items: center;
  background-position: center center;
  background-size: cover;
  border: 10px solid #FFF;
  border-radius: 480px;
  box-sizing: border-box;
  color: #FFF;
  display: flex;
  flex-wrap: wrap;
  font-family: "Archivo Black", Helvetica Neue, Helvetica, Arial, sans-serif;
  font-size: 2.25rem;
  line-height: 1.2;
  min-height: 375px;
  min-height: calc(1120px/3);
  overflow: hidden;
  position: relative;
  text-align: center;
  width: 100%;
}
.home-service:before {
  background: rgba(0, 0, 0, 0.5);
  bottom: 0;
  content: "";
  display: block;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}
@media screen and (max-width: 1200px) {
  .home-service {
    min-height: 33.33vw;
    min-height: calc(100vw/3 - 60px);
  }
}
@media screen and (max-width: 1024px) {
  .home-service {
    font-size: 2.5vw;
  }
  .home-service .button, .home-service #home-carousel a, #home-carousel .home-service a {
    font-size: 1.5vw;
    padding: 12px 3vw;
  }
}

.home-service-content {
  box-sizing: border-box;
  position: relative;
  width: 100%;
  z-index: 5;
}
.home-service-content .button, .home-service-content #home-carousel a, #home-carousel .home-service-content a {
  text-shadow: 1px 1px 10px rgba(0, 0, 0, 0.5);
}

#home-testimonials {
  background-color: #c0dd58;
  background-size: cover;
  margin-top: -360px;
  padding: 820px 0 200px 0;
  position: relative;
}
#home-testimonials a {
  color: #FFF;
}
#home-testimonials .button, #home-testimonials #home-carousel a, #home-carousel #home-testimonials a {
  border-color: #141519;
  color: #141519;
}
#home-testimonials:after {
  background-image: url(/images/border-multi.png);
  background-position: bottom center;
  background-repeat: no-repeat;
  bottom: 95%;
  bottom: calc(100% - 600px);
  content: "";
  display: block;
  height: 600px;
  left: 0;
  position: absolute;
  width: 100%;
  z-index: 2;
}
@media screen and (max-width: 1200px) and (min-width: 801px) {
  #home-testimonials {
    padding-top: calc(820px - 30vw);
  }
}
@media screen and (max-width: 1024px) {
  #home-testimonials {
    text-align: center;
  }
}
@media screen and (max-width: 800px) {
  #home-testimonials {
    margin-top: 0;
    padding-bottom: 50px;
    padding-top: 50px;
  }
  #home-testimonials:after {
    bottom: auto;
    height: 50px;
    top: 0;
  }
}

.home-testimonials-content {
  box-sizing: border-box;
  position: relative;
  width: 100%;
}
@media screen and (max-width: 1024px) {
  .home-testimonials-content {
    float: none;
    padding-left: 0;
    width: auto;
  }
}

#home-testimonials-heading {
  text-align: center;
}
@media screen and (max-width: 1024px) {
  #home-testimonials-heading {
    margin-bottom: 30px;
    text-align: center;
  }
}

.home-testimonials-carousel .slick-arrow:before, .home-testimonials-carousel .slick-arrow:after {
  color: #333;
}

.home-testimonial {
  position: relative;
}

.home-testimonial-image-container {
  /*border-radius: 400px;
  left: 30px;
  overflow: hidden;
  position: absolute;
  top: 40px;
  width: 33.33%;
  @media screen and (max-width: 1024px){
  	float: left;
  	margin-right: 30px;
  	max-width: 25%;
  	position: static;
  	width: auto;
  }
  @media screen and (max-width: 640px){
  	box-sizing: border-box;
  	float: none;
  	margin: auto auto 30px auto;
  	max-width: 50%;
  	text-align: center;
  	width: auto;
  }*/
  float: left;
  width: 33.33%;
}
@media screen and (max-width: 640px) {
  .home-testimonial-image-container {
    float: none;
    margin: auto auto 40px auto;
    max-width: 400px;
    width: auto;
  }
}

.home-testimonial-image {
  border-radius: 0;
  display: block;
  height: auto;
  margin: auto;
  max-width: 100%;
}

.home-testimonial-content {
  box-sizing: border-box;
  float: right;
  font-size: 1.25rem;
  overflow: hidden;
  padding-left: 40px;
  text-align: left;
  width: 66.67%;
}
.home-testimonial-content p:first-child {
  margin-top: 0;
}
@media screen and (max-width: 1024px) {
  .home-testimonial-content {
    font-size: 1.125rem;
  }
}
@media screen and (max-width: 800px) {
  .home-testimonial-content {
    font-size: 1rem;
  }
}
@media screen and (max-width: 640px) {
  .home-testimonial-content {
    float: none;
    padding-left: 0;
    width: 100%;
  }
}

.home-testimonial-text {
  font-style: italic;
}

.home-testimonial-name {
  margin-bottom: 2rem;
}

#home-news {
  background-color: #535868;
  background-size: cover;
  color: #FAFAFA;
  padding: 100px 0;
}
#home-news a {
  color: #FFF;
}
#home-news .button, #home-news #home-carousel a, #home-carousel #home-news a {
  color: #c0dd58;
}

#home-news-heading {
  color: #FFF;
  margin-bottom: 40px;
}

.home-news-excerpt {
  margin-bottom: 30px;
}

.home-news-excerpt-image {
  float: left;
  width: 240px;
}

.home-news-excerpt-content {
  padding-left: 30px;
  overflow: hidden;
}

.home-news-excerpt-heading {
  font-family: "Montserrat", Helvetica Neue, Helvetica, Arial, sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.6em;
  text-transform: uppercase;
}

.home-news-excerpt-more {
  color: #FFF;
  display: block;
  font-weight: 600;
  margin-top: 1em;
}

#main-content {
  padding: 60px 0;
  position: relative;
}
@media screen and (max-width: 800px) {
  #main-content {
    padding: 30px 0 0 0;
  }
}
@media screen and (max-width: 640px) {
  #main-content {
    padding: 10px 0;
  }
}

div.z-container, .content-inner {
  margin: auto;
  max-width: 1200px;
  padding: 30px;
  position: relative;
}

.z-default-subpage-title {
  color: #FFF;
  font-family: "Archivo Black", Helvetica Neue, Helvetica, Arial, sans-serif;
  font-size: 3em;
  font-weight: 700;
  padding: 100px 0;
}
@media screen and (max-width: 800px) {
  .z-default-subpage-title {
    font-size: 1.75em;
  }
}

.column-container {
  margin: 0 -20px;
}

.button, #home-carousel a {
  background: none;
  border: 3px solid #c0dd58;
  color: #c0dd58;
  display: inline-block;
  font-family: "Montserrat", Helvetica Neue, Helvetica, Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  padding: 12px 60px;
  text-align: center;
  text-transform: uppercase;
}
.button:hover, #home-carousel a:hover {
  border-color: #a0c127;
}

#footer {
  background-color: #141519;
  clear: both;
  color: #FAFCFD;
  padding: 60px 30px;
}
#footer h2, #footer h3, #footer h4 {
  color: #FFF;
}
#footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
#footer li {
  display: block;
}
#footer a {
  color: #FFF;
}

#footer-inner {
  margin: auto;
  max-width: 1200px;
}

#footer-copyright {
  text-align: center;
}

#zOS_mode_table_tag {
  background: #e7e9ec;
  box-sizing: border-box;
  font-size: 0.89rem;
  margin-top: calc(-1rem * 1.55);
  padding: 30px;
  position: relative;
}
#zOS_mode_table_tag:after {
  background: #e7e9ec;
  bottom: 0;
  content: "";
  display: block;
  left: 100%;
  position: absolute;
  top: 0;
  width: 1vw;
}
#zOS_mode_table_tag a {
  color: #535868;
}
#zOS_mode_table_tag .zOS_mode_td {
  padding-bottom: 2em;
}
#zOS_mode_table_tag .zOS_mode_td > br:first-child {
  display: none;
}
#zOS_mode_table_tag .z-manager-search-button {
  background: #c0dd58;
  border-radius: 4px;
  color: #141519 !important;
  display: inline-block;
  margin: 0 0.5em;
  padding: 8px 20px;
}

.clearer:before, .clearer:after {
  content: "";
  display: table;
}

.clearer:after, section:after, article:after {
  clear: both;
}

.clearer, section, article {
  zoom: 1;
  /* IE 6 & 7 */
}

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