@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,300;0,400;0,600;0,700;1,400&display=swap");
@import url("../libs/animations.css");
* {
  box-sizing: border-box;
}

body, html {
  font-family: "Montserrat", sans-serif;
  margin: 0;
  overflow-x: hidden;
}

h1 {
  font-size: 4rem;
}

h2 {
  font-size: 2rem;
}
@media screen and (min-width: 600px) {
  h2 {
    font-size: 3rem;
  }
}

h3 {
  font-size: 1.8rem;
}
@media screen and (min-width: 600px) {
  h3 {
    font-size: 2rem;
  }
}

h4 {
  font-size: 1.5rem;
}

h5 {
  font-size: 1.25rem;
}

h6 {
  font-size: 1rem;
}

.text-primary {
  color: #00A14D;
}

.text-white {
  color: #FFFFFF;
}

textarea {
  font-family: "Montserrat";
}

::-moz-selection {
  color: #FFFFFF;
  background: #00ACA8;
}

::selection {
  color: #FFFFFF;
  background: #00ACA8;
}

.container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
}
.container.container-wide {
  max-width: 1600px;
  padding: 0;
}

.section-title {
  text-transform: uppercase;
  color: #00A14D;
  font-size: 3rem;
  margin: 0;
}

.text-uppercase {
  text-transform: uppercase;
}

.lead {
  font-size: 2rem;
}

.sub-lead {
  font-size: 1.25rem;
}

.green-bg {
  background-color: #00A14D;
  color: white;
}

.bg-gradient {
  background-image: linear-gradient(to right, #00A14D, #B4D405);
}

.skew-section {
  -webkit-transform: skewY(-12deg);
          transform: skewY(-12deg);
}

.skew-section-inner {
  -webkit-transform: skewY(12deg);
          transform: skewY(12deg);
}

.cta-section {
  padding: 25px 0;
  text-align: center;
  color: white;
  background-color: #00A14D;
}

.cta-button {
  text-transform: uppercase;
  cursor: pointer;
  border: 1px solid white;
  padding: 15px;
  background-color: #00A14D;
  color: white;
  font-weight: 700;
  font-size: 1.25rem;
  text-decoration: none;
  display: inline-block;
}
.cta-button:hover, .cta-button:focus {
  background-color: #00bb59;
}
.cta-button .cta-icon-l {
  margin-right: 3px;
}
.cta-button .cta-icon-r {
  margin-left: 3px;
}
.cta-button.white-button {
  color: #00A14D;
  border: 1px solid #00A14D;
  background: #FFFFFF;
}
.cta-button.white-button:hover, .cta-button.white-button:focus {
  color: #FFFFFF;
  border: 1px solid #FFFFFF;
  background: #00A14D;
}

.cta-link {
  color: #00A14D;
  text-decoration: none;
  font-weight: 700;
  border: 0;
  background-color: transparent;
  transition: 100ms linear all;
}
.cta-link:hover, .cta-link:focus {
  letter-spacing: 0.1rem;
}
.cta-link.white-link {
  color: #FFFFFF;
}
.cta-link.has-caret::after {
  content: " >";
  text-decoration: none;
  display: inline-block;
  white-space: pre;
}

.text-link {
  color: #00A14D;
  text-decoration: none;
  font-weight: 700;
  border: 0;
  background-color: transparent;
}
.text-link:hover, .text-link:focus {
  color: #00bb59;
}

@media screen and (max-width: 1440px) {
  .container {
    padding-left: 15px;
    padding-right: 15px;
  }
}
/* Change Autocomplete styles in Chrome*/
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus input:-webkit-autofill,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
  background-color: rgba(180, 212, 5, 0.3);
  -webkit-transition: background-color 5000s ease-in-out 0s;
  transition: background-color 5000s ease-in-out 0s;
}

.ajax-confirm, .ajax-error {
  display: none;
}
.ajax-confirm h2, .ajax-error h2 {
  font-weight: 400;
}

.input-group {
  width: 100%;
  margin-bottom: 25px;
}
.input-group input {
  display: block;
  width: 100%;
}

.input-group.half-group {
  width: calc(50% - 25px);
}
.input-group.half-group:nth-of-type(odd) {
  margin-right: 25px;
}

.input-group.third-group {
  width: 33%;
}
.input-group.third-group:not(:last-of-type) {
  margin-right: 25px;
}

.form-checkbox {
  cursor: pointer;
  display: inline-block;
}
.form-checkbox::before {
  content: " ";
  border: 1px solid #FFFFFF;
  height: 10px;
  width: 10px;
  display: inline-block;
  margin-right: 10px;
}

.form-input:checked + .form-checkbox::before {
  background: #B4D405;
  border-color: #c9ed06;
}

.form-input {
  border-radius: 0;
  border: 0;
  padding: 10px 15px;
  width: 100%;
  border-left: 1px solid #404040;
  border-bottom: 1px solid #404040;
}
.form-input::-webkit-input-placeholder {
  color: #404040;
  text-transform: uppercase;
  font-weight: 300;
  font-size: 0.75rem;
}
.form-input::-moz-placeholder {
  color: #404040;
  text-transform: uppercase;
  font-weight: 300;
  font-size: 0.75rem;
}
.form-input:-ms-input-placeholder {
  color: #404040;
  text-transform: uppercase;
  font-weight: 300;
  font-size: 0.75rem;
}
.form-input::placeholder {
  color: #404040;
  text-transform: uppercase;
  font-weight: 300;
  font-size: 0.75rem;
}
.form-input:focus {
  border-left-color: #00A14D;
  border-bottom-color: #00A14D;
}
.form-input.error {
  border-left-color: red !important;
  border-bottom-color: red !important;
}
.form-input.error + .form-checkbox {
  border-left-color: red !important;
  border-bottom-color: red !important;
}
.form-input[type=checkbox] {
  position: absolute;
  left: -200vw;
}

.green-bg .form-input {
  background-color: #00A14D;
  border-bottom: 1px solid #FFFFFF;
  border-left: 1px solid #FFFFFF;
  color: #FFFFFF;
}
.green-bg .form-input::-webkit-input-placeholder {
  color: #FFFFFF;
}
.green-bg .form-input::-moz-placeholder {
  color: #FFFFFF;
}
.green-bg .form-input:-ms-input-placeholder {
  color: #FFFFFF;
}
.green-bg .form-input::placeholder {
  color: #FFFFFF;
}
.green-bg .form-input:focus {
  border-left-color: #B4D405;
  border-bottom-color: #B4D405;
}

.form-btn {
  cursor: pointer;
  background: #FFFFFF;
  border: 1px solid #00A14D;
  color: #00A14D;
  display: inline-block;
  text-transform: uppercase;
  font-weight: 700;
  padding: 10px 15px;
}
.form-btn:hover, .form-btn:focus {
  color: #FFFFFF;
  background: #00A14D;
}

.green-bg .form-btn {
  margin-top: 25px;
  padding: 10px 15px;
  color: #FFFFFF;
  background-color: #00A14D;
  border: 1px solid #FFFFFF;
  font-size: 1.5rem;
}
.green-bg .form-btn:hover, .green-bg .form-btn:focus {
  background-color: #00bb59;
}

label {
  font-size: 0.75rem;
}
label.error {
  color: red;
}

.green-bg label.error {
  color: #FFFFFF;
}

@media screen and (max-width: 760px) {
  .input-group.third-group {
    width: 100%;
  }
}
@media screen and (max-width: 600px) {
  .input-group.half-group {
    width: 100%;
  }
  .input-group.half-group:nth-of-type(odd) {
    margin-right: 0;
  }

  .input-group.third-group {
    width: 100%;
  }
}
.site {
  margin-top: 151px;
}

.header {
  position: fixed;
  top: 0;
  background-color: white;
  z-index: 4;
  width: 100%;
}
.header .nav-container, .header .header-logo {
  -webkit-transform: scale(1);
          transform: scale(1);
  transition: all 200ms ease-in-out;
}
.header .container {
  display: flex;
  justify-content: space-between;
  align-content: center;
  padding: 25px 0;
  transition: all 200ms ease-in-out;
}
.header .nav-container {
  align-content: center;
}
.header.scrolled {
  background-color: rgba(255, 255, 255, 0.9);
  box-shadow: 5px 0 15px #404040;
}
.header.scrolled .container {
  padding: 0 15px;
}
.header.scrolled .nav-container, .header.scrolled .header-logo {
  -webkit-transform: scale(0.75);
          transform: scale(0.75);
}
.header.scrolled .nav-container {
  -webkit-transform-origin: right;
          transform-origin: right;
}
.header.scrolled .header-logo {
  -webkit-transform-origin: left;
          transform-origin: left;
}
.header .site-burger {
  display: none;
}

.header-logo img {
  width: 100%;
  max-width: 150px;
}
.header-logo span {
  display: none;
}

.main-nav {
  display: flex;
  align-items: center;
  height: 100%;
}
.main-nav ul {
  padding: 0;
  margin: 0;
  list-style-type: none;
  display: inline-block;
}
.main-nav ul li {
  padding: 0;
  margin: 0;
  list-style-type: none;
  display: inline-block;
  position: relative;
}
.main-nav ul li:hover .dropdown {
  display: block;
}
.main-nav ul li:hover > a {
  color: #00A14D;
}
.main-nav ul li > .dropdown > li:hover {
  color: #00A14D;
}
.main-nav .dropdown > li:not(:only-child) {
  background-color: rgba(255, 255, 255, 0.75);
}
.main-nav a {
  text-transform: uppercase;
  color: black;
  text-decoration: none;
  margin: 0 25px;
}
.main-nav a:hover, .main-nav a:focus, .main-nav a:focus-within {
  color: #00A14D;
}
.main-nav a:active, .main-nav a .active {
  color: #404040;
}
.main-nav a.active {
  color: #404040;
  font-weight: 700;
}
.main-nav .dropdown {
  position: absolute;
  left: 0;
  width: 100%;
  min-width: 230px;
  display: none;
  padding: 15px;
  font-size: 0.75rem;
}
.main-nav .dropdown li {
  display: block;
  padding-bottom: 15px;
}
.main-nav .dropdown:hover {
  display: block;
}

@media screen and (max-width: 1440px) {
  .site {
    margin-top: 132px;
  }

  .header .container {
    padding: 15px;
  }
}
@media screen and (max-width: 1124px) {
  .site {
    margin-top: 100px;
  }

  .main-nav {
    position: fixed;
    width: 600px;
    top: 102px;
    right: 0;
    bottom: 0;
    -webkit-transform: translateX(615px);
            transform: translateX(615px);
    transition: -webkit-transform 200ms ease-in-out;
    transition: transform 200ms ease-in-out;
    transition: transform 200ms ease-in-out, -webkit-transform 200ms ease-in-out;
    font-size: 2.5rem;
    text-align: right;
    z-index: 3;
    height: calc(100vh - 102px);
    background-color: #00A14D;
  }
  .main-nav a {
    text-decoration: none;
  }
  .main-nav.open-menu {
    -webkit-transform: translateX(15px);
            transform: translateX(15px);
    box-shadow: 0 10px 15px #404040;
  }
  .main-nav ul {
    margin: 0;
    padding-top: 25px;
    padding-bottom: 25px;
    width: 100%;
    height: 100%;
  }
  .main-nav ul li {
    padding-right: 25px;
  }
  .main-nav ul li a {
    display: inline-block;
    padding-bottom: 20px;
    color: #FFFFFF;
  }
  .main-nav ul li a:hover, .main-nav ul li a:focus {
    color: #B4D405;
  }
  .main-nav ul li:hover > a {
    color: #B4D405;
  }
  .main-nav ul li > .dropdown > li:hover {
    color: #B4D405;
  }
  .main-nav ul, .main-nav ul li {
    display: block;
  }
  .main-nav .dropdown {
    display: block;
    margin-top: -10px;
    margin-bottom: 10px;
    height: auto;
    position: unset;
    left: unset;
    font-size: 1.5rem;
    padding: 0;
  }
  .main-nav .dropdown li {
    padding-bottom: 0;
  }

  .header .container {
    padding: 0 15px;
  }
  .header .header-logo {
    -webkit-transform: scale(0.75);
            transform: scale(0.75);
  }
  .header .header-logo {
    -webkit-transform-origin: left;
            transform-origin: left;
  }
  .header .site-burger {
    display: block;
  }
  .header.scrolled .nav-container, .header .nav-container {
    -webkit-transform: scale(1);
            transform: scale(1);
    display: flex;
    align-items: center;
    -webkit-transform-origin: right;
            transform-origin: right;
  }
}
@media screen and (max-width: 600px) {
  .main-nav {
    font-size: 2rem;
  }
  .main-nav .dropdown {
    font-size: 1.25rem;
  }
}
@media screen and (max-width: 400px) {
  .main-nav {
    font-size: 1.5rem;
  }
  .main-nav .dropdown {
    font-size: 1rem;
  }

  .main-nav ul li {
    padding-right: 5px;
  }

  .main-nav a {
    margin: 0 5px;
  }
}
.banner {
  color: white;
  background-color: #00A14D;
  position: relative;
  z-index: -1;
  width: 100%;
  margin: 0 auto;
  max-width: 1600px;
  margin-bottom: 50px;
}
.banner h1 {
  font-weight: 400;
  font-size: 4rem;
  -webkit-transform: skewY(15deg);
          transform: skewY(15deg);
  -webkit-transform-origin: left;
          transform-origin: left;
  max-width: 750px;
  text-transform: uppercase;
  margin-left: 5px;
}
.banner h1 small {
  margin-left: 5px;
  display: block;
  font-size: 1rem;
}
.banner .container {
  display: flex;
  justify-content: flex-end;
  max-width: 1600px;
  padding: 0;
}
.banner .content {
  width: 40%;
}
.banner .banner-image {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.banner .banner-image.valign-top {
  background-position: top;
}
.banner .banner-image.valign-bottom {
  background-position: bottom;
}

.banner-text {
  background-image: linear-gradient(to right, #00A14D, #B4D405);
  position: relative;
  -webkit-transform: skewY(-15deg);
          transform: skewY(-15deg);
  padding: 25px 0 130px 10px;
  margin-right: 0;
  margin-top: 50px;
  margin-bottom: 140px;
  -webkit-transform-origin: right;
          transform-origin: right;
  z-index: 1;
}
.banner-text h1 {
  max-width: 400px;
  margin: 0;
  line-height: 1;
}

body.home .banner::before {
  content: "";
  position: absolute;
  background-color: white;
  width: 100%;
  bottom: -100px;
  height: 200px;
  -webkit-transform: skewY(-7deg);
          transform: skewY(-7deg);
  z-index: 0;
}
body.home .banner::after {
  background-image: url("/wp-content/themes/versiv/assets/images/transparent-overlay.svg");
  background-repeat: no-repeat;
  background-position: top left;
  background-size: cover;
  content: "";
  position: absolute;
  top: -5px;
  right: -30px;
  z-index: 0;
  width: 1630px;
  height: 100%;
}
body.home .content {
  width: 50%;
  z-index: 1;
}
body.home .banner-text {
  margin-top: 0;
  margin-bottom: 190px;
}

.banner-video video {
  width: 100%;
  position: absolute;
  bottom: 0;
  z-index: -1;
}

@media screen and (max-width: 1440px) {
  .banner .content {
    width: 60%;
  }
}
@media screen and (max-width: 1024px) {
  .banner .content {
    width: 60%;
  }
  .banner .banner-text {
    margin-top: 250px;
  }

  .banner-video video {
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
    width: auto;
  }
}
@media screen and (max-width: 760px) {
  .banner {
    margin-bottom: 0;
  }

  .banner .content {
    width: 75%;
  }
}
@media screen and (max-width: 600px) {
  .banner .content {
    width: 90%;
  }
  .banner .banner-text {
    margin-bottom: 100px;
  }
  .banner h1 {
    font-size: 2rem;
  }

  body.home .banner .banner-text {
    margin-top: 250px;
    margin-bottom: 120px;
  }
  body.home .banner .content {
    width: auto;
  }
  body.home .banner:after {
    top: -250px;
    left: -6px;
  }
  body.home .banner .banner-image {
    background-position-x: left;
    background-position-y: center;
  }
}
.site-footer {
  color: white;
  background-color: #404040;
}
.site-footer.container {
  padding: 50px;
  display: grid;
  gap: 0px;
}
.site-footer a {
  color: white;
  text-decoration: none;
}
.site-footer a:hover, .site-footer a:focus {
  color: #B4D405;
}
.site-footer .brand-group {
  grid-area: 1/1/2/2;
}
.site-footer .brand-group a {
  display: block;
}
.site-footer .contact-group {
  grid-area: 1/2/2/3;
}
.site-footer .nav-group {
  grid-area: 1/3/2/4;
}
.site-footer .social-group {
  grid-area: 1/4/2/5;
}
.site-footer .copyright {
  grid-area: 2/1/3/5;
}

.social-group {
  display: flex;
  justify-content: space-around;
  align-items: flex-start;
}
.social-group a {
  display: inline-block;
  padding: 5px;
}

.brand-group {
  max-width: 125px;
  margin-right: 125px;
  margin-top: -25px;
  text-transform: uppercase;
  display: block;
}
.brand-group img {
  width: 100%;
  max-width: 125px;
}
.brand-group p {
  max-width: 125px;
  padding-left: 23px;
}

.split-columns {
  text-transform: uppercase;
  list-style-type: none;
  -webkit-columns: 2;
     -moz-columns: 2;
          columns: 2;
  padding: 0;
  margin: 0;
}
.split-columns li {
  margin-bottom: 30px;
}

.copyright {
  font-size: 0.75rem;
  padding-top: 25px;
  padding-left: 25px;
  font-weight: 300;
  text-align: center;
}

.contact-method {
  display: flex;
  align-items: center;
  margin-bottom: 40px;
}
.contact-method .footer-icon {
  margin-right: 15px;
  max-width: 24px;
  width: 100%;
}
.contact-method p {
  margin: 0;
}

@media screen and (max-width: 1440px) {
  .site-footer.container {
    padding: 50px 15px;
  }
}
@media screen and (max-width: 1024px) {
  .site-footer {
    font-size: 0.75rem;
  }
  .site-footer .brand-group {
    margin-right: 25px;
  }
  .site-footer .social-group {
    grid-area: 2/2/3/3;
    justify-content: flex-start;
    max-width: 150px;
  }
  .site-footer .social-group a {
    margin-right: 15px;
  }
  .site-footer .copyright {
    grid-area: 5/1/6/4;
  }
}
@media screen and (max-width: 760px) {
  .site-footer.container {
    row-gap: 30px;
  }
  .site-footer .brand-group {
    margin: 0 auto;
    grid-area: 1/1/2/4;
  }
  .site-footer .contact-group {
    grid-area: 2/1/3/3;
  }
  .site-footer .contact-group .contact-method {
    margin-left: 25px;
  }
  .site-footer .nav-group {
    grid-area: 2/3/2/4;
  }
  .site-footer .social-group {
    width: 100%;
    min-width: 100%;
    grid-area: 3/1/4/4;
    align-items: center;
    justify-content: center;
  }
  .site-footer .social-group a {
    margin-left: 25px;
    margin-right: 25px;
  }
  .site-footer .copyright {
    padding-left: 0;
    grid-area: 4/1/5/4;
  }
}
@media screen and (max-width: 600px) {
  .site-footer {
    font-size: 1rem;
  }

  .site-footer.container {
    place-items: center;
  }
  .site-footer.container .footer-group {
    width: 100%;
    max-width: 300px;
  }
  .site-footer.container .brand-group {
    grid-area: 1/1/2/2;
    display: flex;
  }
  .site-footer.container .brand-group p {
    margin-top: 30px;
    margin-left: 25px;
    padding-left: 0;
  }
  .site-footer.container .contact-group {
    grid-area: 2/1/3/2;
  }
  .site-footer.container .contact-group .contact-method {
    margin-bottom: 10px;
    margin-left: 0;
    min-height: 40px;
  }
  .site-footer.container .nav-group {
    grid-area: 3/1/4/2;
  }
  .site-footer.container .social-group {
    width: 100%;
    grid-area: 4/1/5/2;
    justify-content: center;
  }
  .site-footer.container .social-group a {
    margin-right: 25px;
  }
  .site-footer.container .copyright {
    grid-area: 5/1/6/2;
  }

  .brand-group {
    margin: 0;
  }

  .social-group {
    margin-top: 25px;
  }

  .copyright {
    padding-top: 25px;
  }
}
.hp-lead {
  max-width: 1200px;
  margin: 0 auto;
}

.esg-stats {
  margin-bottom: 32px;
}
.esg-stats .container {
  text-align: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
  padding: 30px 0;
}
.esg-stats .esg-stat {
  max-width: 50%;
  margin-bottom: 25px;
}
.esg-stats .num {
  color: #00A14D;
  font-size: 4rem;
  font-weight: 700;
  display: block;
  margin: 0;
}
.esg-stats .units {
  color: #00A14D;
  display: block;
  font-weight: 700;
}
.esg-stats .desc {
  display: inline-block;
  max-width: 250px;
}

.services-section .container {
  display: flex;
  justify-content: space-evenly;
  margin-bottom: -275px;
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 48.9%, 0% 100%);
          clip-path: polygon(0 0, 100% 0, 100% 48.9%, 0% 100%);
}

.esg-overview, .featured-services {
  color: white;
  width: 50%;
  padding: 25px 50px 200px 50px;
}
.esg-overview h3, .featured-services h3 {
  text-transform: uppercase;
  font-size: 3rem;
}

.esg-overview {
  background-color: #00A14D;
  border-right: 4px white solid;
}

.featured-services {
  background-color: #80AE41;
}

.image-section {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 500px 0 250px 0;
}
.image-section span {
  display: none;
}

@media screen and (max-width: 1440px) {
  .lead.hp-lead {
    font-size: 1.75rem;
    padding: 15px;
  }

  .esg-stats .num {
    font-size: 3rem;
  }

  .services-section .container {
    padding-left: 0;
    padding-right: 0;
    margin-bottom: -300px;
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 60%, 0% 100%);
            clip-path: polygon(0 0, 100% 0, 100% 60%, 0% 100%);
  }

  .esg-overview h3, .featured-services h3 {
    font-size: 3rem;
  }
}
@media screen and (max-width: 1024px) {
  .lead.hp-lead {
    font-size: 1.5rem;
  }

  .services-section .container {
    flex-direction: column;
  }

  .services-section .container {
    padding: 0;
    margin-bottom: -160px;
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 80%, 0% 100%);
            clip-path: polygon(0 0, 100% 0, 100% 80%, 0% 100%);
    justify-content: flex-start;
  }

  .esg-overview, .featured-services {
    width: 100%;
    border: 0;
    padding: 25px;
  }

  .featured-services {
    padding-bottom: 100px;
    border-top: 4px solid white;
  }

  .esg-stats .esg-stat {
    width: 50%;
  }
}
@media screen and (max-width: 600px) {
  .lead.hp-lead {
    font-size: 1.25rem;
  }

  .services-section .container {
    margin-bottom: -100px;
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 90%, 0% 100%);
            clip-path: polygon(0 0, 100% 0, 100% 90%, 0% 100%);
  }

  .esg-overview h3, .featured-services h3 {
    font-size: 2rem;
  }

  .featured-services {
    padding-bottom: 50px;
  }

  .esg-stats .container {
    flex-direction: column;
  }

  .esg-stats .esg-stat {
    width: 100%;
    max-width: none;
  }
  .esg-stats .esg-stat .num {
    font-size: 2.5rem;
  }
  .esg-stats .esg-stat:last-of-type {
    margin: 25px 0;
  }
}
.about-intro {
  margin: 150px 0 200px 0;
}
.about-intro .sub-lead {
  max-width: 1050px;
}

.about-image-section {
  margin: -250px 0 -350px 0;
  position: relative;
  z-index: 1;
}
.about-image-section .container {
  padding: 0;
}
.about-image-section .about-image {
  height: 750px;
  width: 100%;
  display: block;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  -webkit-clip-path: polygon(0 50%, 100% 0%, 100% 50%, 0% 100%);
          clip-path: polygon(0 50%, 100% 0%, 100% 50%, 0% 100%);
}
@media screen and (max-width: 1240px) {
  .about-image-section .about-image {
    -webkit-clip-path: polygon(0 40%, 100% 0%, 100% 60%, 0% 100%);
            clip-path: polygon(0 40%, 100% 0%, 100% 60%, 0% 100%);
  }
}
@media screen and (max-width: 760px) {
  .about-image-section .about-image {
    -webkit-clip-path: polygon(0 30%, 100% 0%, 100% 70%, 0% 100%);
            clip-path: polygon(0 30%, 100% 0%, 100% 70%, 0% 100%);
  }
}
@media screen and (max-width: 600px) {
  .about-image-section .about-image {
    -webkit-clip-path: polygon(0 20%, 100% 0%, 100% 80%, 0% 100%);
            clip-path: polygon(0 20%, 100% 0%, 100% 80%, 0% 100%);
  }
}

.stats-section .container {
  padding: 350px 50px 125px 50px;
}
.stats-section .stats-group {
  display: flex;
  justify-content: center;
  align-items: stretch;
}
.stats-section .stats-group .statistic {
  text-align: center;
  padding: 20px;
  width: 25%;
}
.stats-section .stats-group .statistic:not(:first-of-type) {
  border-left: 2px solid white;
}
.stats-section .stats-group .statistic .stats-block {
  font-size: 6rem;
  font-weight: 700;
  margin: 20px 0;
}
.stats-section .stats-group .statistic .stats-block span {
  display: block;
}
.stats-section .stats-group .statistic .stats-block .desc {
  font-size: 1.25rem;
  font-weight: 400;
  text-transform: uppercase;
}

.quote-section {
  overflow: hidden;
}
.quote-section .container {
  display: flex;
  padding-left: 0;
  padding-right: 0;
}
.quote-section .quote-block {
  width: 60%;
  padding: 100px 25px;
}
.quote-section .quote-block p {
  font-size: 2rem;
  margin: 0;
}
.quote-section .quote-block blockquote {
  margin: 0;
}
.quote-section .quote-block figcaption {
  margin-top: 15px;
  color: #00A14D;
  font-size: 1.75rem;
  font-weight: 600;
  text-transform: uppercase;
}
.quote-section .quote-image {
  width: 100%;
  margin-top: -100px;
  margin-bottom: -100px;
  display: block;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.leaders-listing {
  padding-top: 150px;
}
.leaders-listing .container {
  padding-left: 0;
  padding-right: 0;
}
.leaders-listing a {
  text-decoration: none;
}
.leaders-listing .two-wide {
  grid-column: 1/span 2;
}
.leaders-listing .crew-title {
  color: #FFFFFF;
  text-transform: uppercase;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 25px;
}
.leaders-listing .crew-list {
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(25%, 1fr));
  max-width: none;
}
@media screen and (max-width: 1024px) {
  .leaders-listing .crew-list {
    grid-template-columns: repeat(auto-fill, minmax(50%, 1fr));
  }
}
@media screen and (max-width: 600px) {
  .leaders-listing .crew-list {
    grid-template-columns: repeat(auto-fill, minmax(100%, 1fr));
  }
}
.leaders-listing .crew-footer {
  display: flex;
  justify-content: center;
  align-items: center;
}
.leaders-listing .crew-footer img {
  max-width: 200px;
  margin-top: 25px;
  margin-bottom: 25px;
}
.leaders-listing .crew-footer.wide {
  width: 200%;
}
.leaders-listing .crew-footer.wide img {
  max-width: 250px;
}
.leaders-listing .graphic {
  display: none;
}
@media screen and (em(1440): 760px) {
  .leaders-listing .graphic {
    align-items: center;
    display: flex;
    flex: 0 0 100%;
    justify-content: center;
    max-width: 100%;
    position: relative;
  }
}
.leaders-listing .graphic img {
  width: 100%;
  opacity: 0.35;
  max-height: 100vh;
}
@media screen and (em(1440): 760px) {
  .leaders-listing .two-wide {
    grid-column: 1/span 2;
  }
}
.leaders-listing .leader {
  background: transparent top center/cover no-repeat;
  display: grid;
  position: relative;
}
.leaders-listing .leader .leader-name {
  text-transform: uppercase;
  font-weight: 400;
  font-size: 2.5rem;
  line-height: 1;
  margin: 0;
}
.leaders-listing .leader .title {
  margin: 5px 0;
}
.leaders-listing .leader::after {
  content: "";
  display: block;
  position: absolute;
  right: 15px;
  bottom: 15px;
  width: 30px;
  height: 30px;
  background: transparent url(../images/icon-info.svg) 0 0/contain no-repeat;
  opacity: 0.5;
}
.leaders-listing .leader::before {
  content: "";
  display: block;
  grid-area: 1/1/2/2;
  padding-top: 100%;
}
.leaders-listing .leader:hover::after {
  display: none;
}
.leaders-listing .leader:hover .leader-ro {
  opacity: 1;
}
.leaders-listing .leader .leader-ro {
  transition: all 200ms linear 0.02s;
  background-color: rgba(255, 255, 255, 0.45);
  color: #fff;
  text-shadow: 0 0 25px #404040;
  display: flex;
  flex-direction: column;
  grid-area: 1/1/2/2;
  justify-content: flex-end;
  opacity: 0;
  padding: 20px;
}
.leaders-listing .leader-detail {
  overflow-y: scroll;
  background-color: #FFFFFF;
  display: none;
  height: 100vh;
  left: 0;
  position: fixed;
  top: 100px;
  width: 100vw;
  z-index: 3;
}
.leaders-listing .leader-detail h2 {
  font-weight: 600;
  margin-bottom: 3rem;
  margin-top: 0;
  position: relative;
  width: auto;
}
.leaders-listing .leader-detail h2 .name {
  display: inline-block;
  position: relative;
  text-transform: uppercase;
}
.leaders-listing .leader-detail h2 .title {
  display: block;
  font-size: 1.25rem;
  font-weight: 400;
}
.leaders-listing .leader-detail h2 .title::before {
  background-color: #fff;
  bottom: -1.5rem;
  content: "";
  height: 1px;
  left: 0;
  position: absolute;
  width: calc(100% + 15px);
}
.leaders-listing .leader-detail p {
  font-size: 1.125em;
}
.leaders-listing .leader-detail .bio {
  background-color: #00A14D;
  color: #FFFFFF;
  flex: 0 0 100%;
  max-width: 100%;
  padding: 8rem 4rem 4rem;
  grid-area: 5/7/12/13;
}
.leaders-listing .leader-detail .close {
  color: #FFFFFF;
  position: relative;
  margin-top: 75px;
  text-decoration: underline;
  text-transform: uppercase;
}
.leaders-listing .leader-detail .close-btn {
  color: #FFFFFF;
  text-decoration: none;
  text-transform: uppercase;
  position: absolute;
  top: -125px;
  right: 0;
  font-size: 3rem;
}
.leaders-listing .leader-detail .container {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
}
.leaders-listing .leader-detail .headshot {
  grid-area: 1/3/6/8;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
}
.leaders-listing .leader-detail .headshot img {
  max-width: 100%;
}
.leaders-listing .leader-detail .headshot-overlap {
  grid-area: 5/1/7/4;
  position: -webkit-sticky;
  position: sticky;
  top: 200px;
}
.leaders-listing .leader-detail .headshot-overlap img {
  max-width: 100%;
  border: 7px solid #FFFFFF;
}

.leader-detail-open {
  height: 100%;
  overflow-y: hidden;
}

@media screen and (max-width: 1440px) {
  .about-intro {
    margin: 150px 15px 300px 15px;
  }

  .leaders-listing .crew-title {
    padding-left: 15px;
    padding-right: 15px;
  }
}
@media screen and (max-width: 1024px) {
  .about-intro {
    margin: 50px 15px 250px 15px;
  }

  .stats-section .stats-group .statistic {
    width: auto;
  }

  .quote-section .quote-block {
    margin: 0;
    width: 100%;
  }
  .quote-section .quote-block p {
    font-size: 1.75rem;
  }
  .quote-section .quote-block figcaption {
    font-size: 1.5rem;
  }

  .leaders-listing .leader-detail .bio {
    grid-area: 5/7/12/13;
  }
  .leaders-listing .leader-detail .headshot {
    grid-area: 1/1/6/10;
  }
  .leaders-listing .leader-detail .headshot-overlap {
    grid-area: 5/2/7/6;
    top: 50px;
  }
}
@media screen and (max-width: 760px) {
  .quote-section .container {
    flex-direction: column-reverse;
  }

  .quote-section {
    overflow: visible;
  }
  .quote-section.skew-section {
    -webkit-transform: skew(0);
            transform: skew(0);
  }
  .quote-section.skew-section .skew-section-inner {
    -webkit-transform: skew(0);
            transform: skew(0);
  }
  .quote-section .quote-block {
    padding: 50px 25px;
  }
  .quote-section .quote-image {
    margin-top: -150px;
    min-height: 450px;
    -webkit-clip-path: polygon(0 40%, 100% 0%, 100% 60%, 0% 100%);
            clip-path: polygon(0 40%, 100% 0%, 100% 60%, 0% 100%);
    margin-bottom: 0;
  }

  .leaders-listing .crew-title {
    padding-top: 0;
  }
  .leaders-listing .leader-detail .headshot {
    grid-area: 1/1/6/12;
  }
}
@media screen and (max-width: 600px) {
  .stats-section .container {
    padding: 350px 15px 125px 15px;
  }
  .stats-section .stats-group {
    flex-direction: column;
    padding-left: 50px;
    padding-right: 50px;
  }
  .stats-section .stats-group .statistic:not(:first-of-type) {
    border-top: 2px solid white;
    border-left: none;
    margin-top: 10px;
  }
  .stats-section .stats-group .statistic:not(:first-of-type) h2 {
    margin-top: 0;
  }

  .quote-section .quote-block {
    padding: 50px 15px 100px;
  }

  .leaders-listing .container {
    padding: 0;
  }

  .leaders-listing .crew-title {
    padding-bottom: 0;
  }
  .leaders-listing .crew-title h2 {
    font-size: 2rem;
  }
  .leaders-listing .crew-title.two-wide {
    grid-column: auto;
  }
  .leaders-listing .crew-footer.wide {
    width: 100%;
  }
  .leaders-listing .leader-detail .headshot {
    grid-area: 1/1/6/13;
  }
  .leaders-listing .leader-detail .headshot-overlap {
    grid-area: 5/5/6/9;
    position: relative;
    z-index: 1;
  }
  .leaders-listing .leader-detail .bio {
    grid-area: 6/2/12/13;
    padding-left: 25px;
    padding-right: 25px;
  }
}
@media (hover: none) {
  .leaders-listing .leader .leader-ro {
    opacity: 1;
    background-color: transparent;
  }
}
.service-intro {
  padding-top: 25px;
  padding-bottom: 25px;
}
.service-intro .container {
  max-width: 1100px;
}

.service-areas {
  text-transform: uppercase;
  color: #00A14D;
  font-size: 2rem;
  padding-bottom: 25px;
}

.service-map {
  width: 100%;
  max-width: 1167px;
  margin: 0 auto;
  display: block;
}

.service-links {
  margin-top: 50px;
  display: flex;
  flex-wrap: wrap;
}
.service-links .item {
  position: relative;
  overflow: hidden;
  text-decoration: none !important;
  display: block;
  width: 50%;
  background-color: #404040;
  color: #FFFFFF !important;
  text-shadow: 0 0 50px #404040, 0 0 25px #404040;
  min-height: 250px;
}
.service-links .item .item-inner {
  position: relative;
  padding: 50px 75px;
  z-index: 2;
}
.service-links .item .item-bg {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  transition: -webkit-transform 2s linear, -webkit-filter 200ms linear;
  transition: transform 2s linear, filter 200ms linear;
  transition: transform 2s linear, filter 200ms linear, -webkit-transform 2s linear, -webkit-filter 200ms linear;
  z-index: 1;
}
.service-links .item:hover, .service-links .item:focus {
  background-color: rgba(0, 161, 77, 0.25);
  z-index: 2;
}
.service-links .item:hover .item-bg, .service-links .item:focus .item-bg {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
  -webkit-filter: grayscale(100%) brightness(30%) sepia(100%) hue-rotate(50deg) saturate(1000%);
          filter: grayscale(100%) brightness(30%) sepia(100%) hue-rotate(50deg) saturate(1000%);
}
.service-links .item h3 {
  line-height: 1;
  font-size: 3rem;
  margin: 0;
}
.service-links .item .lead {
  margin-top: 0;
}
.service-links .item:nth-child(odd) {
  border-bottom: solid 5px #FFFFFF;
  border-right: solid 5px #FFFFFF;
}
.service-links .item:nth-child(odd):nth-last-child(2) {
  border-bottom: 0;
}
.service-links .item:nth-child(even) {
  border-bottom: solid 5px #FFFFFF;
}
.service-links .item:nth-last-child(1) {
  border-bottom: 0;
}

@media screen and (max-width: 1440px) {
  .service-links.container {
    padding-left: 0;
    padding-right: 0;
  }
  .service-links.container .item-inner {
    padding: 50px;
  }
}
@media screen and (max-width: 1024px) {
  .service-links .item h3 {
    font-size: 2rem;
  }
  .service-links .item .lead {
    font-size: 1.5rem;
  }
  .service-links .item .item-inner {
    padding: 25px;
  }
}
@media screen and (max-width: 760px) {
  .service-links {
    flex-direction: column;
  }
  .service-links.container {
    padding-left: 0;
    padding-right: 0;
  }
  .service-links .item {
    width: 100%;
  }
  .service-links .item:nth-of-type(odd), .service-links .item:nth-of-type(even) {
    border-right: 0;
    border-bottom: 5px solid #FFFFFF !important;
  }
  .service-links .item:nth-of-type(odd):last-of-type, .service-links .item:nth-of-type(even):last-of-type {
    border-bottom: 0 !important;
  }
  .service-links .item .item-inner {
    padding: 50px 25px;
  }
}
.compression-intro {
  padding: 50px 0;
}
.compression-intro.sub-lead {
  max-width: 1100px;
  margin: 0 auto;
}

.compression-video {
  margin: 0 auto;
  margin-bottom: -4px;
  padding: 0;
}
.compression-video video {
  width: 100%;
}

@media screen and (max-height: 921px) {
  .compression-video {
    max-width: calc(100vh - 102px);
  }
}
.compression-form {
  padding: 70px 85px 100px;
  -webkit-clip-path: polygon(0 0, 100% 0%, 100% 80%, 0% 100%);
          clip-path: polygon(0 0, 100% 0%, 100% 80%, 0% 100%);
}
.compression-form h2, .compression-form h3, .compression-form h4, .compression-form h5 {
  text-transform: uppercase;
}
.compression-form h3 {
  margin-bottom: 15px;
  font-weight: 400;
}
.compression-form p {
  font-size: 1.25rem;
  max-width: 600px;
  margin-bottom: 25px;
}
.compression-form form {
  padding: 25px 0;
}

.compression-faqs {
  padding: 0 15px;
  margin-bottom: 50px;
}

.compression-form form {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  margin-bottom: 50px;
}
.compression-form form .row {
  display: flex;
}
.compression-form form .row-spacer {
  padding-top: 50px;
}

@media screen and (max-width: 1024px) {
  .compression-form {
    padding: 70px 50px;
    -webkit-clip-path: polygon(0 0, 100% 0%, 100% 85%, 0% 100%);
            clip-path: polygon(0 0, 100% 0%, 100% 85%, 0% 100%);
  }
}
@media screen and (max-width: 760px) {
  .compression-form {
    padding: 50px 25px;
    -webkit-clip-path: polygon(0 0, 100% 0%, 100% 90%, 0% 100%);
            clip-path: polygon(0 0, 100% 0%, 100% 90%, 0% 100%);
  }
  .compression-form .row {
    flex-direction: column;
  }
  .compression-form form .input-group.third-group {
    width: 100%;
  }
}
@media screen and (max-width: 600px) {
  .compression-form {
    padding: 25px 15px;
    -webkit-clip-path: polygon(0 0, 100% 0%, 100% 95%, 0% 100%);
            clip-path: polygon(0 0, 100% 0%, 100% 95%, 0% 100%);
  }
}
.accordion {
  list-style: none;
  padding: 0;
  position: relative;
  width: 100%;
  margin-top: 20px;
}
.accordion > li {
  margin-bottom: 0 !important;
}
.accordion .content-hidden {
  display: none;
}
.accordion .content-hidden p {
  margin-top: 0;
  max-width: 1024px;
}
.accordion .trigger {
  text-decoration: none;
  display: block;
  padding: 25px 0;
  margin-top: 0 !important;
  color: #404040;
  transition: 100ms linear all;
}
.accordion .trigger:hover, .accordion .trigger:focus {
  letter-spacing: 0.1rem;
}
.accordion .trigger::after {
  color: #00A14D;
  content: "[+]";
  display: inline-block;
  margin-left: 10px;
  position: relative;
  font-weight: 700;
}
.accordion .trigger.active {
  font-weight: 700;
}
.accordion .trigger.active::after {
  content: "[–]";
}

.full-width-content .container {
  padding-left: 0;
  padding-right: 0;
}

.featured-news {
  margin-top: 50px;
}
.featured-news .article-search {
  text-align: right;
  padding: 0 50px 50px;
}
.featured-news .article-search strong {
  text-transform: uppercase;
}
.featured-news .article-search select {
  padding: 5px;
  width: 150px;
  margin-bottom: 5px;
}
.featured-news article {
  display: flex;
  flex-direction: row;
}
.featured-news article:nth-child(even) {
  flex-direction: row-reverse;
}
.featured-news article:nth-child(even) .article-image {
  margin-top: -150px;
  margin-bottom: 100px;
}
.featured-news article time {
  text-transform: uppercase;
}
.featured-news article .section-title {
  font-size: 2rem;
  text-transform: uppercase;
}
.featured-news article .article-image {
  max-height: 600px;
  min-height: 500px;
  max-width: 600px;
  min-width: 350px;
}
.featured-news article .article-image img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
  width: 100%;
  -webkit-clip-path: polygon(0 30%, 100% 0%, 100% 70%, 0% 100%);
          clip-path: polygon(0 30%, 100% 0%, 100% 70%, 0% 100%);
}
.featured-news article .article-body {
  max-width: 600px;
  padding-left: 15px;
  padding-right: 15px;
  margin-bottom: 120px;
}
.featured-news .load-more {
  text-align: center;
}
.featured-news .image-section {
  margin-top: -100px;
  -webkit-clip-path: polygon(0 50%, 100% 0%, 100% 100%, 0% 100%);
          clip-path: polygon(0 50%, 100% 0%, 100% 100%, 0% 100%);
  z-index: -1;
}

.main-post-image {
  position: relative;
  max-width: 100%;
  max-height: 700px;
  overflow: hidden;
}
.main-post-image img {
  width: 100%;
}

.post-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px 50px;
}

.post-sharing {
  display: flex;
  justify-content: flex-end;
}
.post-sharing .share-title {
  margin-right: 25px;
}
.post-sharing i {
  margin-left: 10px;
}

.post-content {
  padding: 25px 50px;
}
.post-content time {
  margin-bottom: 5px;
  display: block;
}
.post-content h1, .post-content h2, .post-content h3, .post-content h4, .post-content h5, .post-content h6 {
  color: #00A14D;
  font-weight: 400;
  margin: 0;
}
.post-content p {
  line-height: 1.2;
}
.post-content img {
  width: 100%;
}
.post-content a {
  color: #00A14D;
}
.post-content a:hover, .post-content a:focus {
  color: #00bb59;
}

.post-categories {
  line-height: 2;
  margin: 50px 0;
}

@media screen and (max-width: 1440px) {
  .featured-news .container {
    padding-left: 0;
    padding-right: 0;
  }
}
@media screen and (max-width: 760px) {
  .featured-news article .article-image {
    min-width: 40%;
    max-width: 40%;
  }
}
@media screen and (max-width: 600px) {
  .featured-news article, .featured-news article:nth-child(even) {
    flex-direction: column;
  }
  .featured-news article .article-image, .featured-news article:nth-child(even) .article-image {
    min-width: 100%;
    max-width: 100%;
    min-height: auto;
    max-height: none;
    margin: 0;
  }
  .featured-news article .article-body, .featured-news article:nth-child(even) .article-body {
    margin-bottom: 0;
  }
  .featured-news .image-section {
    margin-top: 0;
    -webkit-clip-path: polygon(0 15%, 100% 0%, 100% 100%, 0% 100%);
            clip-path: polygon(0 15%, 100% 0%, 100% 100%, 0% 100%);
  }
  .featured-news .article-search {
    margin-bottom: 0;
  }
  .featured-news .article-search strong {
    display: block;
  }

  .post-sharing {
    padding: 15px 15px 0 0;
  }
  .post-sharing .share-title {
    margin-right: 15px;
  }

  .post-content {
    padding: 25px 15px;
  }
}
.featured-news .ajax-load-more-wrap .alm-btn-wrap .alm-load-more-btn {
  text-transform: uppercase;
  cursor: pointer;
  color: #00A14D !important;
  border: 1px solid #00A14D !important;
  background-color: #FFFFFF !important;
  font-weight: 700;
  font-size: 1.25rem;
  text-decoration: none;
  display: inline-block;
  border-radius: 0;
  opacity: 1;
}
.featured-news .ajax-load-more-wrap .alm-btn-wrap .alm-load-more-btn:hover, .featured-news .ajax-load-more-wrap .alm-btn-wrap .alm-load-more-btn:focus {
  color: #FFFFFF !important;
  background: #00A14D !important;
}
.featured-news .ajax-load-more-wrap .alm-btn-wrap .alm-load-more-btn.done {
  cursor: default;
  color: lightgray !important;
  border: 1px solid lightgray !important;
  background-color: #FFFFFF !important;
}

.career-intro .sub-lead {
  margin-bottom: 50px;
  max-width: 1100px;
}
.career-intro h2, .career-intro h3 {
  color: #00A14D;
  text-transform: uppercase;
}

.benefit-cta {
  padding: 50px 0;
}
.benefit-cta.container {
  display: flex;
  justify-content: space-around;
  align-items: center;
}
.benefit-cta h3 {
  text-transform: uppercase;
  font-size: 2rem;
  max-width: 500px;
  margin: 0;
  line-height: 1;
}
.benefit-cta .cta-button {
  font-weight: 400;
  padding: 20px 35px;
  font-size: 2rem;
  max-width: 450px;
  line-height: 1;
  text-align: center;
}

.career-map {
  padding: 100px 15px;
}

.all-jobs {
  text-align: right;
}
.all-jobs .cta-button {
  margin: 50px 0;
  padding: 10px 20px;
}

.open-jobs {
  display: flex;
  justify-content: space-around;
  padding-bottom: 50px;
}
.open-jobs div {
  width: 40%;
}
.open-jobs a {
  display: block;
  margin-bottom: 25px;
  color: black;
  font-size: 2rem;
}
.open-jobs a:hover, .open-jobs a:focus {
  color: #B4D405;
}

@media screen and (max-width: 1440px) {
  .career-intro {
    margin-top: 100px;
  }

  .careers-iframe.container {
    padding-left: 0;
    padding-right: 0;
  }
  .careers-iframe.container .embed-container {
    min-height: 600px;
  }
}
@media screen and (max-width: 1024px) {
  .career-intro {
    margin-top: 0;
  }

  .benefit-cta.container {
    flex-direction: column;
    text-align: center;
  }
  .benefit-cta.container .cta-button {
    margin-top: 15px;
    margin-left: 15px;
    margin-right: 15px;
    font-size: 1.5rem;
  }

  .open-jobs a {
    font-size: 1.25rem;
  }
  .open-jobs div {
    width: 50%;
  }
}
@media screen and (max-width: 600px) {
  .career-intro {
    margin-top: 50px;
  }

  .open-jobs {
    flex-direction: column;
  }
  .open-jobs div {
    width: 1000%;
  }

  .all-jobs .cta-button {
    width: 100%;
    display: block;
  }
}
.contact-page {
  padding: 100px 50px;
}
.contact-page .contact-form {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  margin-bottom: 100px;
  max-width: 600px;
}
.contact-page .location-info {
  margin: 50px 0;
}

@media screen and (max-width: 600px) {
  .contact-page {
    padding: 80px 15px;
  }
}
.entry-header, .post-header {
  background-image: linear-gradient(to right, #00A14D, #B4D405);
  color: white;
  padding: 20px 50px;
  text-transform: uppercase;
}
.entry-header h1, .post-header h1 {
  font-size: 3rem;
  font-weight: 400;
  margin: 0;
  line-height: 1;
}

.embed-container {
  height: 0;
  max-width: 100%;
  overflow: hidden;
  padding-bottom: 56.25%;
  position: relative;
}
.embed-container iframe,
.embed-container object,
.embed-container embed {
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}

.entry-content, .entry-header, .entry-footer, .widget-area {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
}
.entry-content h2, .entry-header h2, .entry-footer h2, .widget-area h2 {
  font-size: 2rem;
  font-weight: 400;
  margin: 0;
}

.post-content, .entry-content, .widget-area {
  padding: 25px 50px;
  max-width: 1024px;
  margin: 0;
}

.entry-footer {
  padding: 25px 0;
}

.error-404 {
  padding: 50px 0 50vh 0;
  text-align: center;
}
.error-404 h1 {
  font-size: 3rem;
  color: #00A14D;
}
.error-404 .cta-button {
  margin-top: 25px;
}

@media screen and (max-width: 1440px) {
  .terms-of-use main .container, .single main .container {
    padding-left: 0;
    padding-right: 0;
  }

  .entry-content, .entry-footer {
    padding-left: 15px;
    padding-right: 15px;
  }
}
@media screen and (max-width: 600px) {
  .entry-header, .post-header {
    padding-left: 15px;
    padding-right: 15px;
  }
  .entry-header h1, .post-header h1 {
    font-size: 2rem;
  }

  .post-content, .entry-content, .widget-area {
    padding: 25px 15px;
  }

  .post-content h2 {
    font-size: 1.75rem;
  }

  .post-meta {
    flex-direction: column-reverse;
    align-items: flex-start;
    padding: 15px 15px 0 15px;
  }
}

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