/*
 *  Copyright 2017 Adobe
 *
 *  Licensed under the Apache License, Version 2.0 (the "License");
 *  you may not use this file except in compliance with the License.
 *  You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 *  Unless required by applicable law or agreed to in writing, software
 *  distributed under the License is distributed on an "AS IS" BASIS,
 *  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 *  See the License for the specific language governing permissions and
 *  limitations under the License.
 */
/** @define image */
.cmp-image__image {
  width: 100%;
}

/*
 *  Copyright 2017 Adobe
 *
 *  Licensed under the Apache License, Version 2.0 (the "License");
 *  you may not use this file except in compliance with the License.
 *  You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 *  Unless required by applicable law or agreed to in writing, software
 *  distributed under the License is distributed on an "AS IS" BASIS,
 *  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 *  See the License for the specific language governing permissions and
 *  limitations under the License.
 */
/** @define breadcrumb */
.cmp-breadcrumb {
  display: inline-block;
  list-style: none;
  padding: 0;
}
.cmp-breadcrumb__item {
  display: inline-block;
  vertical-align: top;
}

/*
 *  Copyright 2017 Adobe
 *
 *  Licensed under the Apache License, Version 2.0 (the "License");
 *  you may not use this file except in compliance with the License.
 *  You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 *  Unless required by applicable law or agreed to in writing, software
 *  distributed under the License is distributed on an "AS IS" BASIS,
 *  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 *  See the License for the specific language governing permissions and
 *  limitations under the License.
 */
.cmp-search {
  position: relative;
}
.cmp-search__field {
  position: relative;
  height: 2rem;
}
.cmp-search__input {
  padding-left: 2rem;
  padding-right: 2rem;
  height: 100%;
  width: 100%;
}
.cmp-search__icon {
  display: block;
  position: absolute;
  left: .5rem;
  top: .5rem;
  background-image: url("data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4NCjwhLS0gR2VuZXJhdG9yOiBBZG9iZSBJbGx1c3RyYXRvciAxNi4wLjAsIFNWRyBFeHBvcnQgUGx1Zy1JbiAuIFNWRyBWZXJzaW9uOiA2LjAwIEJ1aWxkIDApICAtLT4NCjwhRE9DVFlQRSBzdmcgUFVCTElDICItLy9XM0MvL0RURCBTVkcgMS4xLy9FTiIgImh0dHA6Ly93d3cudzMub3JnL0dyYXBoaWNzL1NWRy8xLjEvRFREL3N2ZzExLmR0ZCI+DQo8c3ZnIHZlcnNpb249IjEuMSIgaWQ9IkxheWVyXzEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHg9IjBweCIgeT0iMHB4Ig0KCSB3aWR0aD0iMTE1MnB4IiBoZWlnaHQ9IjExNTJweCIgdmlld0JveD0iMCAwIDExNTIgMTE1MiIgZW5hYmxlLWJhY2tncm91bmQ9Im5ldyAwIDAgMTE1MiAxMTUyIiB4bWw6c3BhY2U9InByZXNlcnZlIj4NCjxwYXRoIGQ9Ik02NzIsMEM0MDYuOTAzLDAsMTkyLDIxNC45MDMsMTkyLDQ4MGMwLDk1LjcsMjguMDExLDE4NC44NTUsNzYuMjc1LDI1OS43MjVDMTgxLjY0Niw4MjYuMzU0LDQ4LjA3NSw5NTkuOTI1LDM2LDk3Mg0KCWMtMTgsMTgtMzYsMzYtMzYsNzJzMTgsNTQsMzYsNzJzMzYuMDEyLDM2LDcyLDM2czU0LTE4LDcyLTM2YzEyLjA3NS0xMi4wNzUsMTQ1LjY0Ni0xNDUuNjQ2LDIzMi4yNzUtMjMyLjI3NQ0KCUM0ODcuMTQ0LDkzMS45ODgsNTc2LjMsOTYwLDY3Miw5NjBjMjY1LjA5NywwLDQ4MC0yMTQuOTAzLDQ4MC00ODBDMTE1MiwyMTQuOTAzLDkzNy4wOTcsMCw2NzIsMHogTTY3Miw4MTYNCgljLTE4NS41NjgsMC0zMzYtMTUwLjQzMy0zMzYtMzM2YzAtMTg1LjU2OCwxNTAuNDMyLTMzNiwzMzYtMzM2YzE4NS41NjcsMCwzMzYsMTUwLjQzMiwzMzYsMzM2QzEwMDgsNjY1LjU2Nyw4NTcuNTY3LDgxNiw2NzIsODE2eiINCgkvPg0KPC9zdmc+DQo=");
  background-size: contain;
  width: 1rem;
  height: 1rem;
  pointer-events: none;
}
.cmp-search__loading-indicator {
  display: none;
  position: absolute;
  top: .5rem;
  left: .5rem;
  border: 3px solid #ccc;
  border-top-color: #333;
  border-radius: 50%;
  width: 1rem;
  height: 1rem;
  animation: cmp-search__loading-indicator-spin 2s linear infinite;
}
@keyframes cmp-search__loading-indicator-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.cmp-search__clear {
  display: none;
  margin: 0;
  padding: 0;
  border: none;
  background: transparent;
}
.cmp-search__clear-icon {
  position: absolute;
  top: .5rem;
  right: .5rem;
  background-image: url("data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4NCjwhLS0gR2VuZXJhdG9yOiBBZG9iZSBJbGx1c3RyYXRvciAxOS4wLjAsIFNWRyBFeHBvcnQgUGx1Zy1JbiAuIFNWRyBWZXJzaW9uOiA2LjAwIEJ1aWxkIDApICAtLT4NCjwhRE9DVFlQRSBzdmcgUFVCTElDICItLy9XM0MvL0RURCBTVkcgMS4xLy9FTiIgImh0dHA6Ly93d3cudzMub3JnL0dyYXBoaWNzL1NWRy8xLjEvRFREL3N2ZzExLmR0ZCI+DQo8c3ZnIHZlcnNpb249IjEuMSIgaWQ9IkxheWVyXzEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHg9IjBweCIgeT0iMHB4Ig0KCSB3aWR0aD0iMTE1MnB4IiBoZWlnaHQ9IjExNTJweCIgdmlld0JveD0iMCAwIDExNTIgMTE1MiIgZW5hYmxlLWJhY2tncm91bmQ9Im5ldyAwIDAgMTE1MiAxMTUyIiB4bWw6c3BhY2U9InByZXNlcnZlIj4NCjxwYXRoIGlkPSJYTUxJRF85XyIgZD0iTTgyLjYsOTM3LjJsMzYyLTM2Mkw4NCwyMTQuOGMtMTQuMS0xNC4xLTE0LjEtMzYuOSwwLTUxbDgxLjItODEuMmMxNC4xLTE0LjEsMzYuOS0xNC4xLDUxLDBsMzYwLjUsMzYwLjUNCglMOTM3LjIsODIuNmMxNC4xLTE0LjEsMzYuOS0xNC4xLDUxLDBsODEuMiw4MS4yYzE0LjEsMTQuMSwxNC4xLDM2LjksMCw1MUw3MDguOSw1NzUuM2wzNjAuNSwzNjAuNWMxNC4xLDE0LjEsMTQuMSwzNi45LDAsNTENCglsLTgxLjIsODEuMmMtMTQuMSwxNC4xLTM2LjksMTQuMS01MSwwTDU3Ni43LDcwNy41bC0zNjIsMzYyYy0xNC4xLDE0LjEtMzYuOSwxNC4xLTUxLDBsLTgxLjItODEuMg0KCUM2OC41LDk3NC4yLDY4LjUsOTUxLjMsODIuNiw5MzcuMnoiLz4NCjwvc3ZnPg0K");
  background-size: contain;
  width: 1rem;
  height: 1rem;
}
.cmp-search__results {
  display: none;
  overflow-y: auto;
  min-width: 100%;
  max-height: 10rem;
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 999999;
  border: 1px solid #ccc;
  background: #fff;
}
.cmp-search__item {
  display: block;
}
.cmp-search__item--is-focused {
  background-color: #ccc;
}

/**
 * Owl Carousel v2.3.4
 * Copyright 2013-2018 David Deutsch
 * Licensed under: SEE LICENSE IN https://github.com/OwlCarousel2/OwlCarousel2/blob/master/LICENSE
 */
/*
 * 	Default theme - Owl Carousel CSS File
 */
.owl-theme .owl-nav {
  margin-top: 10px;
  text-align: center;
  -webkit-tap-highlight-color: transparent;
}
.owl-theme .owl-nav [class*='owl-'] {
  color: #FFF;
  font-size: 14px;
  margin: 5px;
  padding: 4px 7px;
  background: #D6D6D6;
  display: inline-block;
  cursor: pointer;
  border-radius: 3px;
}
.owl-theme .owl-nav [class*='owl-']:hover {
  background: #869791;
  color: #FFF;
  text-decoration: none;
}
.owl-theme .owl-nav .disabled {
  opacity: 0.5;
  cursor: default;
}
.owl-theme .owl-nav.disabled + .owl-dots {
  margin-top: 10px;
}
.owl-theme .owl-dots {
  text-align: center;
  -webkit-tap-highlight-color: transparent;
}
.owl-theme .owl-dots .owl-dot {
  display: inline-block;
  zoom: 1;
  *display: inline;
}
.owl-theme .owl-dots .owl-dot span {
  width: 10px;
  height: 10px;
  margin: 5px 7px;
  background: #D6D6D6;
  display: block;
  -webkit-backface-visibility: visible;
  transition: opacity 200ms ease;
  border-radius: 30px;
}
.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
  background: #869791;
}

/**
 * Owl Carousel v2.3.4
 * Copyright 2013-2018 David Deutsch
 * Licensed under: SEE LICENSE IN https://github.com/OwlCarousel2/OwlCarousel2/blob/master/LICENSE
 */
/*
 *  Owl Carousel - Core
 */
.owl-carousel {
  display: none;
  width: 100%;
  -webkit-tap-highlight-color: transparent;
  /* position relative and z-index fix webkit rendering fonts issue */
  position: relative;
  z-index: 1;
}
.owl-carousel .owl-stage {
  position: relative;
  -ms-touch-action: pan-Y;
  touch-action: manipulation;
  -moz-backface-visibility: hidden;
  /* fix firefox animation glitch */
}
.owl-carousel .owl-stage:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}
.owl-carousel .owl-stage-outer {
  position: relative;
  overflow: hidden;
  /* fix for flashing background */
  -webkit-transform: translate3d(0px, 0px, 0px);
}
.owl-carousel .owl-wrapper,
.owl-carousel .owl-item {
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
}
.owl-carousel .owl-item {
  position: relative;
  min-height: 1px;
  float: left;
  -webkit-backface-visibility: hidden;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
}
.owl-carousel .owl-item img {
  display: block;
  width: 100%;
}
.owl-carousel .owl-nav.disabled,
.owl-carousel .owl-dots.disabled {
  display: none;
}
.owl-carousel .owl-nav .owl-prev,
.owl-carousel .owl-nav .owl-next,
.owl-carousel .owl-dot {
  cursor: pointer;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.owl-carousel .owl-nav button.owl-prev,
.owl-carousel .owl-nav button.owl-next,
.owl-carousel button.owl-dot {
  background: none;
  color: inherit;
  border: none;
  padding: 0 !important;
  font: inherit;
}
.owl-carousel.owl-loaded {
  display: block;
}
.owl-carousel.owl-loading {
  opacity: 0;
  display: block;
}
.owl-carousel.owl-hidden {
  opacity: 0;
}
.owl-carousel.owl-refresh .owl-item {
  visibility: hidden;
}
.owl-carousel.owl-drag .owl-item {
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.owl-carousel.owl-grab {
  cursor: move;
  cursor: grab;
}
.owl-carousel.owl-rtl {
  direction: rtl;
}
.owl-carousel.owl-rtl .owl-item {
  float: right;
}
/* No Js */
.no-js .owl-carousel {
  display: block;
}
/*
 *  Owl Carousel - Animate Plugin
 */
.owl-carousel .animated {
  animation-duration: 1000ms;
  animation-fill-mode: both;
}
.owl-carousel .owl-animated-in {
  z-index: 0;
}
.owl-carousel .owl-animated-out {
  z-index: 1;
}
.owl-carousel .fadeOut {
  animation-name: fadeOut;
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
/*
 * 	Owl Carousel - Auto Height Plugin
 */
.owl-height {
  transition: height 500ms ease-in-out;
}
/*
 * 	Owl Carousel - Lazy Load Plugin
 */
.owl-carousel .owl-item {
  /**
			This is introduced due to a bug in IE11 where lazy loading combined with autoheight plugin causes a wrong
			calculation of the height of the owl-item that breaks page layouts
		 */
}
.owl-carousel .owl-item .owl-lazy {
  opacity: 0;
  transition: opacity 400ms ease;
}
.owl-carousel .owl-item .owl-lazy[src^=""],
.owl-carousel .owl-item .owl-lazy:not([src]) {
  max-height: 0;
}
.owl-carousel .owl-item img.owl-lazy {
  transform-style: preserve-3d;
}
/*
 * 	Owl Carousel - Video Plugin
 */
.owl-carousel .owl-video-wrapper {
  position: relative;
  height: 100%;
  background: #000;
}
.owl-carousel .owl-video-play-icon {
  position: absolute;
  height: 80px;
  width: 80px;
  left: 50%;
  top: 50%;
  margin-left: -40px;
  margin-top: -40px;
  background: url("clientlib-site/third-party/owl.carousel/owl.video.play.png") no-repeat;
  cursor: pointer;
  z-index: 1;
  -webkit-backface-visibility: hidden;
  transition: transform 100ms ease;
}
.owl-carousel .owl-video-play-icon:hover {
  -ms-transform: scale(1.3, 1.3);
  transform: scale(1.3, 1.3);
}
.owl-carousel .owl-video-playing .owl-video-tn,
.owl-carousel .owl-video-playing .owl-video-play-icon {
  display: none;
}
.owl-carousel .owl-video-tn {
  opacity: 0;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  transition: opacity 400ms ease;
}
.owl-carousel .owl-video-frame {
  position: relative;
  z-index: 1;
  height: 100%;
  width: 100%;
}

/*!
 * Polyfill CSS object-fit
 * http://helloanselm.com/object-fit
 *
 * @author: Anselm Hannemann <hello@anselm-hannemann.com>
 * @author: Christian "Schepp" Schaefer <schaepp@gmx.de>
 * @version: 0.3.4
 *
 */

x-object-fit {
	position: relative !important;
	display: inline-block !important;
}

x-object-fit > .x-object-fit-taller,
x-object-fit > .x-object-fit-wider {
	position: absolute !important;
	left: -100% !important;
	right: -100% !important;
	top: -100% !important;
	bottom: -100% !important;
	margin: auto !important;
}

.x-object-fit-none > .x-object-fit-taller,
.x-object-fit-none > .x-object-fit-wider {
	width: auto !important;
	height: auto !important;
}

.x-object-fit-fill > .x-object-fit-taller,
.x-object-fit-fill > .x-object-fit-wider {
	width: 100% !important;
	height: 100% !important;
}

.x-object-fit-contain > .x-object-fit-taller {
	width: auto !important;
	height: 100% !important;
}

.x-object-fit-contain > .x-object-fit-wider {
	width: 100% !important;
	height: auto !important;
}

.x-object-fit-cover > .x-object-fit-taller,
.x-object-fit-cover > .x-object-fit-wider {
	max-width: none !important;
	max-height: none !important;
}

.x-object-fit-cover > .x-object-fit-taller {
	width: 100% !important;
	height: auto !important;
	max-width: none !important;
}

.x-object-fit-cover > .x-object-fit-wider {
	width: auto !important;
	height: 100% !important;
	max-width: none !important;
}

.x-object-position-top > .x-object-fit-taller,
.x-object-position-top > .x-object-fit-wider {
	top: 0 !important;
	bottom: auto !important;
}

.x-object-position-right > .x-object-fit-taller,
.x-object-position-right > .x-object-fit-wider {
	left: auto !important;
	right: 0 !important;
}

.x-object-position-bottom > .x-object-fit-taller,
.x-object-position-bottom > .x-object-fit-wider {
	top: auto !important;
	bottom: 0 !important;
}

.x-object-position-left > .x-object-fit-taller,
.x-object-position-left > .x-object-fit-wider {
	left: 0 !important;
	right: auto !important;
}


@font-face {
  font-family: 'DIN Condensed';
  src: url('../../../etc/designs/efleets/clientlib-site/css/base/fonts/DINCondensedBold.ttf') format('truetype');
  font-weight: 900;
  font-style: normal;
  font-stretch: normal;
}

@font-face {
  font-family: 'DIN Condensed';
  src: url('../../../etc/designs/efleets/clientlib-site/css/base/fonts/DINCondensedBold.ttf') format('truetype');
  font-weight: 900;
  font-style: normal;
  font-stretch: normal;
}
/*---===<<< MEDIA QUERIES >>>===---*/
/*---===<<< COLORS >>>===---*/
/* ---<< button colors >> --- */
/* ---<< border colors >> --- */
/* Fonts */
/* CSS DOCUMENT */
/*---===<<< FLOATS >>>===---*/
.clearfix:after {
  content: " ";
  visibility: hidden;
  display: block;
  height: 0;
  clear: both;
}
/*---===<<< Display >>>===---*/
.flexbox {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
/*---===<<< FLOATS >>>===---*/
.pull-left {
  float: left;
}
.push-right {
  float: left;
}
/*---===<<< TEXT STYLING >>>===---*/
/*---=== TEXT ALIGNMENT ===---*/
.ta-left {
  text-align: left;
}
.ta-right {
  text-align: right;
}
.ta-center {
  text-align: center;
}
.ta-justify {
  text-align: justify;
}
/*---=== TEXT TRANSFORMS ===---*/
.tt-upper {
  text-transform: uppercase;
}
.tt-lower {
  text-transform: lowercase;
}
.tt-none {
  text-transform: none;
}
.tt-caps {
  text-transform: capitalize;
}
/*---=== TEXT DECORATION ===---*/
.td-none {
  text-decoration: none;
}
.td-underline {
  text-decoration: underline;
}
.td-strike {
  text-decoration: strike;
}
/*---=== WEIGHTS ===---*/
.fw-black {
  font-weight: 900;
}
.fw-exbold {
  font-weight: 800;
}
.fw-bold {
  font-weight: 700;
}
.fw-semi {
  font-weight: 600;
}
.fw-medi {
  font-weight: 500;
}
.fw-regular {
  font-weight: 400;
}
.fw-light {
  font-weight: 300;
}
.fw-xlight {
  font-weight: 200;
}
/*---=== STYLING ===---*/
.fs-italic {
  font-style: italic;
}
.fs-oblique {
  font-style: oblique;
}
.fs-normal {
  font-style: normal;
}
/*---=== FONT SIZE ===---*/
/*---===<<< COLORS >>>===---*/
/*---=== BACKGROUNDS ===---*/
/*---=== TEXT ===--*/
/*---===<<< STYLING >>>===---*/
/*---=== OPACITY  ===---*/
/*---=== CSS 3 COMPONENTS ===---*/
.box-shadow-none {
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
}
.text-shadow-none {
  text-shadow: none;
}
/*--- TRANSFORMS ---*/
/*--- FILTERS ---*/
.object-center {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
/*
  This mixin can be used to set the object-fit:
  .object-fit(contain);
  or object-fit and object-position:
  .object-fit(cover, top);
  uses object fit polyfill in third party js (font family portion of this mixin)
*/

label {
  color: #6b6360;
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 2.6rem;
  display: block;
}
input,
textarea {
  height: 4.2rem;
  border: 1px solid #a9a2a0;
  background-color: #ffffff;
  font-size: 1.6rem;
  border-radius: 0.5rem;
  padding: 0 0.5rem;
  width: 100%;
}
input:hover,
textarea:hover {
  border: 1px solid #3d3633;
}
input:focus,
textarea:focus {
  border: 1px solid #015457;
  outline: none;
}
input.success,
textarea.success {
  color: #00a664;
  border: 1px solid #00a664;
  background-image: url('../../../etc.clientlibs/efleets/clientlibs/clientlib-site/resources/Check-Mark-Form.svg');
  background-repeat: no-repeat;
  background-position: 97%;
  padding: 0 2.5rem 0 0.5rem;
}
input.error,
textarea.error {
  color: #f12c35;
  border: 1px solid #f12c35;
  background-image: url('../../../etc.clientlibs/efleets/clientlibs/clientlib-site/resources/Close-Form.svg');
  background-repeat: no-repeat;
  background-position: 97%;
  padding: 0 2.5rem 0 0.5rem;
}
input:disabled,
textarea:disabled {
  border: 1px solid #a9a2a0;
  background-color: #f0efee;
  color: #a9a2a0;
}
select {
  border: 1px solid #a9a2a0;
  border-radius: 0.5rem;
  -webkit-appearance: none;
  width: 100%;
  display: inline-block;
  height: 4.2rem;
  font-size: 1.6rem;
  padding: 0.8rem 0.5rem;
  cursor: pointer;
  background-image: url("../../../etc.clientlibs/efleets/clientlibs/clientlib-site/resources/down-chevron.svg");
  background-color: #fff;
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 1.25rem auto;
}
select * {
  font-weight: normal;
  display: block;
  white-space: pre;
  min-height: 1.2em;
  padding: 0px 2px 1px;
}
textarea {
  min-height: 12rem;
  height: unset;
  border: 1px solid #a9a2a0;
  background-color: #ffffff;
}
/*---===<<< OOTB form components >>>===---*/
.form_row .form_leftcol .form_leftcollabel,
.form_row .form_leftcol .form_leftcolmark {
  display: inline-block;
}
.form_row [type="submit"] {
  background-color: #00a664;
  color: #ffffff;
  border-radius: 25px;
}
.form_row [type="submit"]:hover {
  background-color: #5dbe91;
  color: #f0efee;
  border: none;
}
button.g-recaptcha,
.efleets-form-container button.btn.primary {
  background-color: #00a664;
  border: 1px solid #a9a2a0;
  border-radius: 25px;
  color: #ffffff;
  font-size: 1.6rem;
  height: 4.2rem;
  padding: 0 0.5rem;
  width: 100%;
}
button.g-recaptcha:hover,
.efleets-form-container button.btn.primary:hover {
  color: #ffffff;
}
.text.section,
.submit.section,
.dropdown.section,
.text {
  padding-bottom: 2.5rem;
}
@media  screen and (min-width: 992px) {
  .text.section,
  .submit.section,
  .dropdown.section,
  .text {
    padding-bottom: 3.5rem;
  }
}
.submit.section .form_leftcol {
  line-height: 0;
}
.form_error {
  background-color: transparent;
  border: none;
  color: #f12c35;
  min-height: 4.7rem;
  font-family: Arial;
  font-size: 1.6rem;
  line-height: 2.6rem;
  padding: unset;
  position: relative;
  border-radius: 0.5rem;
}
.form_error:before {
  display: none;
}
.form_error:after {
  display: none;
}
.checkbox .form_row label {
  padding-left: 0;
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 2.6rem;
  margin-bottom: 2rem;
}
.checkbox .form_row .form_rightcol {
  position: relative;
  font-size: 1.6rem;
  line-height: 2.6rem;
  padding-left: 1.8rem;
  margin-bottom: 0.5rem;
}
.checkbox .form_row .form_rightcol [type="checkbox"] {
  height: 15px;
  width: 15px;
  position: absolute;
  top: 1px;
  left: 0;
  margin-left: 0;
  visibility: unset;
}
.checkbox .form_row .form_rightcol [type="checkbox"]:before {
  content: '';
  width: 14px;
  height: 15px;
  border: 0.1rem solid #e2dfde;
  background-color: #ffffff;
  display: inline-block;
  border-radius: 2px;
}
.checkbox .form_row .form_rightcol [type="checkbox"]:checked:before {
  background-image: url(../../../etc.clientlibs/efleets/clientlibs/clientlib-site/resources/Check-Mark-Form.svg);
  background-size: 10px 8px;
  background-repeat: no-repeat;
  background-position: 1px;
}
.radio .form_row label {
  padding-left: 0;
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 2.6rem;
  margin-bottom: 2rem;
}
.radio .form_row .form_rightcol {
  position: relative;
  font-size: 1.6rem;
  line-height: 2.6rem;
  padding-left: 1.8rem;
  margin-bottom: 0.5rem;
}
.radio .form_row .form_rightcol [type="radio"] {
  height: 15px;
  width: 15px;
  position: absolute;
  top: 1px;
  left: 0;
  margin-left: 0;
  visibility: unset;
}
.radio .form_row .form_rightcol [type="radio"]:before {
  content: '';
  width: 15px;
  height: 15px;
  border: 0.1rem solid #e2dfde;
  background-color: #ffffff;
  display: inline-block;
  border-radius: 100%;
}
.radio .form_row .form_rightcol [type="radio"]:checked:before {
  background-color: #015457;
  box-shadow: 0 0 0px 3px #ffffff inset;
}
.dropdown .form_row .form_rightcol {
  position: relative;
}
.dropdown .form_row .form_rightcol:after {
  position: absolute;
  top: 14px;
  right: 16px;
  border-style: solid;
  border-width: 1.5px 1.5px 0 0;
  content: '';
  display: inline-block;
  height: 1rem;
  vertical-align: top;
  width: 1rem;
  transform: rotate(135deg);
  pointer-events: none;
}
.dropdown .form_row select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.form_rightcol.form_error {
  background-color: #f12c35;
  color: #ffffff;
  display: block;
  padding-right: 0rem;
  font-size: 1.5rem;
  position: relative;
  font-weight: normal;
  margin-top: -1.5rem;
  padding-left: 1rem;
  min-height: 3.5rem;
  border-radius: 5px;
  border: none;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
.form_rightcol.form_error:before,
.form_rightcol.form_error:after {
  display: none;
}
/* checkbox and radio button style */
input[type="checkbox"],
input[type="radio"] {
  height: 0;
  width: 0;
  position: absolute;
  top: 2rem;
  left: 2rem;
  visibility: visible;
  -moz-appearance: none;
  -webkit-appearance: none;
}
input[type="checkbox"] + label,
input[type="radio"] + label {
  position: relative;
}
input[type="checkbox"] + label:before,
input[type="radio"] + label:before {
  height: 2.5rem;
  width: 2.5rem;
  border: 0.2rem solid #ffffff;
  content: '';
  display: block;
  position: absolute;
  left: 2rem;
  top: 2rem;
}
input[type="radio"] + label:before {
  border-radius: 100%;
}
input[type="radio"]:checked + label:before {
  background: #ffffff;
  box-shadow: 0 0 0px 5px #00a664 inset;
}
input[type="checkbox"] + label:before {
  height: 1.5rem;
  width: 1.5rem;
  border: 0.1rem solid #e2dfde;
  left: 8px;
  top: 5px;
  background-color: #ffffff;
}
input[type="checkbox"]:checked + label:before {
  background-image: url(../../../etc.clientlibs/efleets/clientlibs/clientlib-site/resources/Check-Mark-Form.svg);
  background-size: 10px 8px;
  background-repeat: no-repeat;
  background-position: 1px;
}
input[type=file]:focus,
input[type=checkbox]:focus,
input[type=radio]:focus {
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
  width: 2.8rem;
  height: 2.7rem;
  z-index: 1;
  top: 1.6rem;
  left: 1.8rem;
  background: transparent;
  -webkit-appearance: none;
  visibility: visible;
}
input[type=checkbox]:focus {
  width: 1.7rem;
  height: 1.7rem;
  z-index: 1;
  top: 0;
  left: 0.6rem;
}
.form-fields.showLess article .container-fluid div > div:nth-of-type(n+3) {
  opacity: 0;
  max-height: 0;
  visibility: hidden;
  position: absolute;
  transition: all .6s linear;
}
.form-fields.showLess .container-fluid > div > div:nth-child(-n + 2) {
  display: block;
}
.form-fields.showLess > .section:nth-child(n + 2) {
  opacity: 0;
  visibility: hidden;
  transition: all .6s linear;
  display: flex;
  max-height: 0;
}
.form-fields.showLess > .section:nth-child(-n + 2) {
  display: block;
  opacity: 1;
  visibility: visible;
  max-height: max-content;
}
.form-fields.showLess > .section > input:focus > * {
  display: block;
}
.formStyle,
.formStyleCheck div:nth-of-type(n+3) {
  max-height: 50vh !important;
  opacity: 1 !important;
  visibility: visible!important;
  display: block !important;
  position: relative !important;
}
.formStyleCheck {
  opacity: 1 !important;
  visibility: visible!important;
  display: block !important;
  position: relative !important;
  max-height: max-content !important;
}
.grecaptcha-badge {
  left: 5px !important;
  width: 70px !important;
}

/*---===<<< Button Styles >>>===---*/
a,
button {
  color: #00a664;
  white-space: unset;
}
a.has-underline,
button.has-underline {
  text-decoration: underline;
}
a.external-link,
button.external-link {
  margin-right: 2.2rem;
}
a.external-link:after,
button.external-link:after {
  content: "\e164";
  font-family: 'Glyphicons Halflings';
  position: absolute;
  margin-left: 5px;
  margin-right: -2.2rem;
}
a.has-arrow,
button.has-arrow {
  margin-left: 2rem;
  display: inline-block;
  position: relative;
}
a.has-arrow:before,
button.has-arrow:before {
  content: "\e250";
  font-family: 'Glyphicons Halflings';
  padding-right: 10px;
  font-size: 10px;
  position: absolute;
  left: 0;
  margin-left: -2rem;
}
a:hover,
button:hover {
  text-decoration: underline;
  color: #028852;
}
a.btn,
button.btn {
  min-height: 5rem;
  font-size: 1.6rem;
  padding: 1.2rem 3rem;
  border-radius: 2.5rem;
  font-family: Arial;
  font-weight: bold;
  line-height: 2.6rem;
  text-align: center;
  white-space: unset;
}
a.btn.primary,
button.btn.primary {
  color: #ffffff;
  background: #00a664;
}
a.btn.primary.small,
button.btn.primary.small {
  min-height: 4rem;
  padding: 1.2rem 2.5rem 1.2rem 2rem;
  line-height: 1.6rem;
}
a.btn.primary:hover,
button.btn.primary:hover,
a.btn.primary.hover,
button.btn.primary.hover {
  background: #5dbe91;
}
a.btn.primary:active,
button.btn.primary:active,
a.btn.primary.active,
button.btn.primary.active {
  background: #028852;
}
a.btn.primary:disabled,
button.btn.primary:disabled,
a.btn.primary.disabled,
button.btn.primary.disabled {
  background: #a9a2a0;
}
a.btn.primary.has-arrow,
button.btn.primary.has-arrow {
  padding-left: 4.5rem;
}
a.btn.secondary,
button.btn.secondary {
  color: #00a664;
  background: #ffffff;
  border: 1px solid #00a664;
}
a.btn.secondary.small,
button.btn.secondary.small {
  min-height: 4rem;
  padding: 1.2rem 2.5rem 1.2rem 2rem;
  line-height: 1.6rem;
}
a.btn.secondary:hover,
button.btn.secondary:hover,
a.btn.secondary.hover,
button.btn.secondary.hover {
  color: #5dbe91;
  border: 1px solid #5dbe91;
}
a.btn.secondary:active,
button.btn.secondary:active,
a.btn.secondary.active,
button.btn.secondary.active {
  color: #028852;
  border: 1px solid #028852;
}
a.btn.secondary:disabled,
button.btn.secondary:disabled,
a.btn.secondary.disabled,
button.btn.secondary.disabled {
  color: #a9a2a0;
  border: 1px solid #a9a2a0;
}
a.btn.secondary.has-arrow,
button.btn.secondary.has-arrow {
  padding-left: 4.5rem;
}
a.btn.has-icon:after,
button.btn.has-icon:after {
  content: "\e092";
  font-family: 'Glyphicons Halflings';
  font-style: normal;
  margin-left: 1rem;
}

/******************************
 *
 *  Trustee Specific
 *
 ******************************/
#consent_blackbar {
  width: 100%;
  margin: 0 auto;
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 200;
}
#truste-consent-text {
  width: 50%;
  float: left;
}
#truste-consent-text h2 {
  font-size: 1.8rem;
  font-weight: normal;
  color: #3d3633;
  line-height: 2.8rem;
  margin-bottom: 0;
  padding-bottom: 1rem;
}
#truste-consent-buttons {
  width: 50%;
  float: left;
  padding-top: 35px;
}
#truste-consent-buttons button {
  cursor: pointer;
  text-align: left;
}
.half-width {
  width: 50%;
  float: left;
  padding-left: 20px;
}
#truste-cookie-button,
#truste-show-consent {
  font-size: 16px;
  font-weight: normal;
  color: #00a664;
  text-decoration: underline;
  border: none;
  outline: none;
  background: none;
}
#truste-consent-content {
  min-height: 130px;
  overflow: hidden;
}
#truste-consent-button {
  border: 0px;
  padding: 10px;
  background-color: #00a664;
  font-size: 18px;
  font-weight: normal;
  color: white;
}
#truste-consent-track {
  border-top: 6px solid #00a85f;
  border-left: 2px solid #00a85f;
  border-right: 2px solid #00a85f;
  background: #ffffff;
  padding: 25px 25px 50px 25px;
  max-width: 1024px;
  margin: 0 auto;
  width: 100%;
  display: none;
}
.three-column {
  width: 25%;
  float: left;
}
#teconsent {
  position: relative;
  padding-left: 55px;
  bottom: 10px;
  z-index: 1000;
}
.bordered {
  border: 1px solid #f0efee;
}
@media only screen and (max-width: 1024px) {
  #truste-consent-text {
    width: 100%;
  }
  #truste-consent-track {
    padding: 15px 15px 50px 15px;
  }
  #truste-show-consent,
  #truste-cookie-button {
    padding-left: 0;
  }
  #truste-consent-buttons {
    width: 100%;
    padding-top: 25px;
  }
  #truste-consent-buttons .half-width {
    padding-left: 0;
  }
  #truste-consent-text h2 {
    font-size: 20px;
  }
}
@media only screen and (max-width: 768px) {
  #truste-cookie-button,
  #truste-show-consent {
    font-size: 13px;
  }
  #truste-consent-button {
    font-size: 13px;
  }
  #truste-consent-track {
    max-width: 768px;
  }
  #truste-consent-text h2 {
    font-size: 15px;
  }
}
.icon-ad-choices {
  background-image: url(../../../etc.clientlibs/efleets/clientlibs/clientlib-site/resources/ad-choices-icon-transparent.png);
}
.show-adchoice .adchoice-sticker {
  display: block;
}
.show-adchoice .adchoice-text {
  font-size: 13px;
  margin-right: 25px;
}
.adchoice-sticker {
  display: none;
  z-index: 2;
  top: 0;
  width: 100%;
  padding: 2px 4px;
  background-color: #ccc;
  text-align: right;
  font-size: 14px;
}
.adchoice-sticker .icon {
  display: inline-block;
  height: 14px;
  width: 13px;
  background-repeat: no-repeat;
  vertical-align: top;
  position: relative;
  top: 2px;
}

body {
  font-family: Arial, Helvetica, sans-serif;
}
.container-fluid {
  width: 100%;
  max-width: 1200px;
}
.home-page-header,
.page-header {
  background-color: #e3edeb;
  box-shadow: 0 0 7px 7px #00000020;
}
.home-page-header .container-fluid,
.page-header .container-fluid {
  max-width: 1440px;
}
.page-header {
  background-color: #ffffff;
}
/*---===<<< Header Styles >>>===---*/
h1,
h2,
h3,
h4 {
  font-family: 'din-condensed', sans-serif;
  text-transform: uppercase;
  letter-spacing: 2px;
}
h1 {
  font-size: 5rem;
  line-height: 5.4rem;
  margin-bottom: 4.5rem;
}
@media  screen and (max-width: 767px) {
  h1 {
    font-size: 3.4rem;
    line-height: 4rem;
  }
}
h2 {
  font-size: 4rem;
  line-height: 4.4rem;
  margin-bottom: 4rem;
}
h3 {
  font-size: 3.4rem;
  line-height: 4rem;
  margin-bottom: 3.5rem;
}
h4 {
  font-size: 2.8rem;
  line-height: 3.4rem;
  margin-bottom: 4rem;
}
h5,
h6 {
  font-family: Arial, Helvetica, sans-serif;
  letter-spacing: 0;
  margin-bottom: 1rem;
}
h5 {
  font-size: 2.4rem;
  line-height: 3.2rem;
}
h6 {
  font-size: 2rem;
  font-weight: bold;
  line-height: 3rem;
}
/*---===<<< Paragraph Styles >>>===---*/
p {
  font-family: "Arial", Helvetica, sans-serif;
  font-size: 1.8rem;
  letter-spacing: 0;
  line-height: 2.8rem;
  margin-bottom: 2.5rem;
}
.small {
  font-size: 1.6rem;
  line-height: 2.6rem;
  margin-bottom: 2rem;
}
.large-format {
  font-size: 2.4rem;
  line-height: 2.8rem;
}
/*---===<<< List styles >>>===---*/
ol li,
ul li {
  font-family: "Arial", Helvetica, sans-serif;
  font-size: 1.8rem;
  letter-spacing: 0;
  line-height: 2.8rem;
  margin-bottom: 2.5rem;
  color: #015457;
}
/*---===<<< Utilities >>>===---*/
.detail {
  font-family: "Arial", Helvetica, sans-serif;
  font-size: 1.4rem;
  letter-spacing: 0.233rem;
  line-height: 2rem;
  margin-bottom: 1rem;
}
.edit-in-dialog-msg {
  padding: 1rem 1.5rem;
  font-size: 3rem;
  margin: 0;
}
.carousel-quote {
  position: relative;
  font-style: italic;
}
.carousel-quote:before {
  content: "\201C";
  font-weight: bold;
  margin-right: 0.2rem;
}
.carousel-quote:after {
  content: "\201D";
  font-weight: bold;
  margin-left: 0.2rem;
}
.menu-alt-text {
  font-size: 0;
}
/*---===<<< Text Colors >>>===---*/
.dark-green {
  color: #015457;
}
.medium-green {
  color: #00a664;
}
.white {
  color: #ffffff;
}
.dark-grey {
  color: #3d3633;
}
.hide {
  display: none;
}
.show {
  display: block;
}
/*---===<<< Bread Crumb >>>===---*/
.breadcrumbs .container {
  display: contents;
}
.cmp-breadcrumb {
  background-color: #e2dfde;
  display: block;
  margin-bottom: 0;
}
.cmp-breadcrumb__list {
  background-color: #e2dfde;
  padding: 1rem 3rem;
  border-radius: 0;
  max-width: 1440px;
  margin: 0 auto;
  list-style: none;
}
.cmp-breadcrumb__list .breadcrumb__item {
  color: #00a664;
  font-size: 1.8rem;
  line-height: 2.8rem;
  margin-bottom: 0;
}
.cmp-breadcrumb__list .breadcrumb__item a {
  text-decoration: underline;
}
.cmp-breadcrumb__list .breadcrumb__item.active {
  color: #3d3633;
}
.cmp-breadcrumb__list .breadcrumb__item .cmp-breadcrumb__list > li + li:before {
  padding: 0 5px;
  color: #ccc;
  content: "/\00a0";
}
.cmp-breadcrumb__list .breadcrumb__item .breadcrumb__active-item {
  color: #3d3633;
}
.cmp-breadcrumb__list li + li:before {
  padding: 0 5px;
  color: #ccc;
  content: "/\00a0";
}
.cmp-breadcrumb__list .breadcrumb__active-item {
  color: #3d3633;
}
.cmp-breadcrumb__list li {
  display: inline-block;
}
/*---===<<< Owl carousel Global styles >>>===---*/
.owl-theme .owl-dots {
  padding-top: 3rem;
}
.owl-theme .owl-dots .owl-dot.active span {
  background-color: #00a664;
}
.owl-theme .owl-dots .owl-dot span {
  width: 5rem;
  height: 0.7rem;
  background-color: #a9a2a0;
  border-radius: 0;
}
/*---===<<< New Par height >>>===---*/
.cq-placeholder,
.new {
  height: 4.875rem;
}
.no-padding {
  padding: 0!important;
}
/*---===<<< text component styles >>>===---*/
.cmp-text a {
  text-decoration: underline;
}
.cmp-text a:hover {
  color: #3d3633;
}
.cmp-text a span {
  text-decoration: underline;
}
.cmp-text a span:hover {
  color: #3d3633;
}
/*---===<<< Background styles >>>===---*/
.bg-light-grey {
  background-color: #f0efee;
}
.bg-white {
  background-color: #ffffff;
}
.bg-medium-green {
  background-color: #00a664;
}
.bg-dark-green {
  background-color: #015457;
}
.bg-green {
  background-color: #028852;
}


/**
* CSS themes for simplePagination.js
* Author: Flavius Matis - http://flaviusmatis.github.com/
* URL: https://github.com/flaviusmatis/simplePagination.js
*/

ul.simple-pagination {
	list-style: none;
}

.simple-pagination {
	display: block;
	overflow: hidden;
	padding: 0 5px 5px 0;
	margin: 0;
}

.simple-pagination ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.simple-pagination li {
	list-style: none;
	padding: 0;
	margin: 0;
	float: left;
}
span.ellipse.clickable {
	cursor: pointer;
}

.ellipse input {
	width: 3em;
}

/*------------------------------------*\
	Compact Theme Styles
\*------------------------------------*/
.compact-theme span {
	cursor:pointer;
}

.compact-theme a, .compact-theme span {
	float: left;
	color: #333;
	font-size:14px;
	line-height:24px;
	font-weight: normal;
	text-align: center;
	border: 1px solid #AAA;
	border-left: none;
	min-width: 14px;
	padding: 0 7px;
	box-shadow: 2px 2px 2px rgba(0,0,0,0.2);
	background: #efefef; /* Old browsers */
	background: -moz-linear-gradient(top, #ffffff 0%, #efefef 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ffffff), color-stop(100%,#efefef)); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top, #ffffff 0%,#efefef 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top, #ffffff 0%,#efefef 100%); /* Opera11.10+ */
	background: -ms-linear-gradient(top, #ffffff 0%,#efefef 100%); /* IE10+ */
	background: linear-gradient(top, #ffffff 0%,#efefef 100%); /* W3C */
}

.compact-theme a:hover, .compact-theme li:not(.disabled):not(.active) span:hover {
	text-decoration: none;
	background: #efefef; /* Old browsers */
	background: -moz-linear-gradient(top, #efefef 0%, #bbbbbb 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#efefef), color-stop(100%,#bbbbbb)); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top, #efefef 0%,#bbbbbb 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top, #efefef 0%,#bbbbbb 100%); /* Opera11.10+ */
	background: -ms-linear-gradient(top, #efefef 0%,#bbbbbb 100%); /* IE10+ */
	background: linear-gradient(top, #efefef 0%,#bbbbbb 100%); /* W3C */
}

.compact-theme li:first-child a, .compact-theme li:first-child span {
	border-left: 1px solid #AAA;
	border-radius: 3px 0 0 3px;
}

.compact-theme li:last-child a, .compact-theme li:last-child span {
	border-radius: 0 3px 3px 0;
}

.compact-theme .current {
	background: #bbbbbb; /* Old browsers */
	background: -moz-linear-gradient(top, #bbbbbb 0%, #efefef 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#bbbbbb), color-stop(100%,#efefef)); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top, #bbbbbb 0%,#efefef 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top, #bbbbbb 0%,#efefef 100%); /* Opera11.10+ */
	background: -ms-linear-gradient(top, #bbbbbb 0%,#efefef 100%); /* IE10+ */
	background: linear-gradient(top, #bbbbbb 0%,#efefef 100%); /* W3C */
	cursor: default;
}

.compact-theme .ellipse {
	background: #EAEAEA;
	padding: 0 10px;
	cursor: default;
}

/*------------------------------------*\
	Light Theme Styles
\*------------------------------------*/
.light-theme span {
	cursor:pointer;
}

.light-theme a, .light-theme span {
	float: left;
	color: #666;
	font-size:14px;
	line-height:24px;
	font-weight: normal;
	text-align: center;
	border: 1px solid #BBB;
	min-width: 14px;
	padding: 0 7px;
	margin: 0 5px 0 0;
	border-radius: 3px;
	box-shadow: 0 1px 2px rgba(0,0,0,0.2);
	background: #efefef; /* Old browsers */
	background: -moz-linear-gradient(top, #ffffff 0%, #efefef 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ffffff), color-stop(100%,#efefef)); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top, #ffffff 0%,#efefef 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top, #ffffff 0%,#efefef 100%); /* Opera11.10+ */
	background: -ms-linear-gradient(top, #ffffff 0%,#efefef 100%); /* IE10+ */
	background: linear-gradient(top, #ffffff 0%,#efefef 100%); /* W3C */
}

.light-theme a:hover, .light-theme li:not(.disabled):not(.active) span:hover {
	text-decoration: none;
	background: #FCFCFC;
}

.light-theme .current {
	background: #666;
	color: #FFF;
	border-color: #444;
	box-shadow: 0 1px 0 rgba(255,255,255,1), 0 0 2px rgba(0, 0, 0, 0.3) inset;
	cursor: default;
}

.light-theme .ellipse {
	background: none;
	border: none;
	border-radius: 0;
	box-shadow: none;
	font-weight: bold;
	cursor: default;
}

/*------------------------------------*\
	Dark Theme Styles
\*------------------------------------*/
.dark-theme span {
	cursor:pointer;
}

.dark-theme a, .dark-theme span {
	float: left;
	color: #CCC;
	font-size:14px;
	line-height:24px;
	font-weight: normal;
	text-align: center;
	border: 1px solid #222;
	min-width: 14px;
	padding: 0 7px;
	margin: 0 5px 0 0;
	border-radius: 3px;
	box-shadow: 0 1px 2px rgba(0,0,0,0.2);
	background: #555; /* Old browsers */
	background: -moz-linear-gradient(top, #555 0%, #333 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#555), color-stop(100%,#333)); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top, #555 0%,#333 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top, #555 0%,#333 100%); /* Opera11.10+ */
	background: -ms-linear-gradient(top, #555 0%,#333 100%); /* IE10+ */
	background: linear-gradient(top, #555 0%,#333 100%); /* W3C */
}

.dark-theme a:hover, .dark-theme li:not(.disabled):not(.active) span:hover {
	text-decoration: none;
	background: #444;
}

.dark-theme .current {
	background: #222;
	color: #FFF;
	border-color: #000;
	box-shadow: 0 1px 0 rgba(255,255,255,0.2), 0 0 1px 1px rgba(0, 0, 0, 0.1) inset;
	cursor: default;
}

.dark-theme .ellipse {
	background: none;
	border: none;
	border-radius: 0;
	box-shadow: none;
	font-weight: bold;
	cursor: default;
}
header {
  position: relative;
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 10;
}
header.page-header {
  margin: 0 auto;
  background-color: #ffffff;
  padding-bottom: 0;
}
@media  screen and (min-width: 992px) {
  header.page-header {
    padding-bottom: 0.9rem;
  }
}
header .logo {
  display: inline-block;
  float: left;
  margin-top: 1.5rem;
  margin-bottom: 2rem;
}
header .logo .logo-anchor {
  display: inline-block;
  width: 17.5rem;
}
@media  screen and (min-width: 768px) {
  header .logo .logo-anchor {
    width: 23.5rem;
  }
}
header .logo .logo-anchor img {
  width: 100%;
}
@media  screen and (min-width: 992px) {
  header .logo {
    margin-top: 3rem;
  }
}
header .hamburger-menu {
  float: right;
  margin-top: 2.5rem;
  margin-right: 0.5rem;
}
@media  screen and (min-width: 992px) {
  header .hamburger-menu {
    display: none;
  }
}
header .hamburger-menu a {
  font-size: 2.5rem;
  color: #00a664;
  text-decoration: none;
}
@media  screen and (min-width: 768px) {
  header .hamburger-menu {
    margin-top: 3.5rem;
  }
}
header .navigation-links {
  float: right;
  display: inline-block;
  text-align: right;
}
@media  screen and (min-width: 992px) {
  header .navigation-links {
    width: calc(100% - 24rem);;
  }
}
header .utility-nav {
  background-color: #00a664;
  padding: 0.5rem 1.4rem;
  text-align: right;
  border-radius: 0 0 0.5rem 0.5rem;
  display: none;
}
@media  screen and (min-width: 992px) {
  header .utility-nav {
    display: inline-block;
  }
}
header .utility-nav .nav-utility {
  padding-left: 1.7rem;
  margin-bottom: 0;
  padding-right: 1.7rem;
}
header .utility-nav .nav-utility li {
  display: inline-block;
  margin-bottom: 0;
  line-height: 1.4rem;
  padding-right: 3.5rem;
}
header .utility-nav .nav-utility li:last-child {
  padding-right: 0;
}
header .utility-nav .nav-utility li a {
  color: #ffffff;
  font-size: 1.3rem;
  font-weight: bold;
  line-height: 2.6rem;
  text-align: right;
}
header .lang-switcher {
  color: #6b6360;
  display: inline-block;
  font-size: 1.3rem;
  font-weight: bold;
  line-height: 2.6rem;
  padding-left: 7px;
  position: relative;
  text-align: right;
  text-transform: uppercase;
  z-index: 1;
  padding: 2.5rem 1.5rem 0 0;
}
@media  screen and (min-width: 768px) {
  header .lang-switcher {
    padding: 3.5rem 1.5rem 0 0;
  }
}
@media  screen and (min-width: 992px) {
  header .lang-switcher {
    padding: 0 0 0 0.7rem;
  }
}
header .lang-switcher .lang-flag {
  display: inline-block;
  height: 11px;
  margin-right: 3px;
  width: 16px;
}
header .lang-switcher .lang-flag.flag-en {
  background: url("../../../content/dam/efleets/css/flag-en.png") center center no-repeat;
}
header .lang-switcher .lang-flag.flag-fr {
  background: url("../../../content/dam/efleets/css/flag-fr.png") center center no-repeat;
}
header .lang-switcher ul {
  display: none;
  left: -48px;
  list-style: none;
  position: absolute;
  width: max-content;
}
header .lang-switcher ul .glyphicon {
  margin-right: 2px;
}
@media  screen and (min-width: 992px) {
  header .lang-switcher ul {
    left: -40px;
  }
}
header .lang-switcher:focus ul,
header .lang-switcher:hover ul {
  display: block;
}
header .lang-switcher li {
  background-color: #f0efee;
  border: solid 1px #e2dfde;
  border-top: none;
  font-size: 1.3rem;
  font-weight: bold;
  margin: 0;
  padding: 0 5px;
  text-align: left;
  width: max-content;
  text-transform: uppercase;
}
header .lang-switcher li:first-child {
  border-top: solid 1px #e2dfde;
}
header .lang-switcher a {
  color: #6b6360;
}
header .mega-menu {
  padding-top: 3rem;
  text-align: right;
  display: none;
}
@media  screen and (min-width: 992px) {
  header .mega-menu {
    display: inline-block;
  }
}
header .mega-menu .btn {
  margin-left: 1.25rem;
}
header .mega-menu .menu-list {
  display: inline-block;
}
@media  screen and (min-width: 992px) and (max-width: 1199px) {
  header .mega-menu .menu-list {
    display: block;
    padding-bottom: 1rem;
  }
}
header .mega-menu .menu-list .mega-nav {
  padding-left: 0;
}
header .mega-menu .menu-list .mega-nav li {
  display: inline-block;
  margin-bottom: 0;
  line-height: 1.4rem;
  padding: 0 1.25rem 1rem;
  position: relative;
  right: 0;
}
header .mega-menu .menu-list .mega-nav li:hover > .sub-menu {
  display: block;
}
header .mega-menu .menu-list .mega-nav li > a {
  color: #00a664;
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 2rem;
}
header .mega-menu .menu-list .mega-nav li > a:hover {
  text-decoration: none;
}
header .mega-menu .menu-list .mega-nav li > a.active,
header .mega-menu .menu-list .mega-nav li > a.hovered {
  color: #028852;
}
header .mega-menu .menu-list .mega-nav li > a.hovered:not(:only-child):after {
  content: '';
  position: absolute;
  top: 60%;
  left: 50%;
  width: 0;
  height: 0;
  border-left: 9px solid transparent;
  border-right: 9px solid transparent;
  border-bottom: 9px solid #00a664;
}
header .mega-menu .menu-list .mega-nav li:last-child {
  padding-right: 0;
}
header .mega-menu .menu-list .mega-nav li .sub-menu {
  display: none;
  position: absolute;
  z-index: 2;
  top: 1.1rem;
  background-color: #fff;
  text-align: left;
  padding: 4rem 3rem 3rem 3rem;
  border-top: 4px solid #00aa64;
  left: 20%;
  transform: translateX(-50%);
  margin-top: 1.5rem;
  min-width: 36.5rem;
  box-shadow: 0 0 7px 7px #00000020;
}
header .mega-menu .menu-list .mega-nav li .sub-menu p {
  color: #00a664;
  font-size: 2rem;
  font-weight: bold;
  line-height: 2rem;
}
header .mega-menu .menu-list .mega-nav li .sub-menu p span {
  float: right;
  position: absolute;
  right: 4rem;
  top: 3rem;
  z-index: 6;
  width: 2.2rem;
  height: 2.2rem;
  cursor: pointer;
}
header .mega-menu .menu-list .mega-nav li .sub-menu p span:after,
header .mega-menu .menu-list .mega-nav li .sub-menu p span:before {
  content: '';
  position: absolute;
  left: 0;
  top: 15px;
  width: 100%;
  height: 2px;
  display: block;
  background-color: #00a664;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}
header .mega-menu .menu-list .mega-nav li .sub-menu p span:before {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
header .mega-menu .menu-list .mega-nav li .sub-menu p a {
  font-size: 2rem;
  font-weight: bold;
  line-height: 2rem;
}
header .mega-menu .menu-list .mega-nav li .sub-menu p a:hover {
  text-decoration: none;
}
header .mega-menu .menu-list .mega-nav li .sub-menu p a > img {
  margin-left: 1.2rem;
}
header .mega-menu .menu-list .mega-nav li .sub-menu ul {
  padding-left: 0;
  padding-top: 0;
  overflow: hidden;
}
header .mega-menu .menu-list .mega-nav li .sub-menu ul li {
  width: 50%;
  display: inline-block;
  float: left;
  padding: 1rem 0;
}
header .mega-menu .menu-list .mega-nav li .sub-menu ul li a {
  color: #00a664;
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 2.6rem;
  white-space: break-spaces;
}
header .mega-menu .menu-list .mega-nav li .sub-menu ul li a:hover {
  text-decoration: underline;
  color: #028852;
}
header .mega-menu .menu-list .mega-nav li .sub-menu ul li:first-child:nth-last-child(1),
header .mega-menu .menu-list .mega-nav li .sub-menu ul li:first-child:nth-last-child(1) ~ li {
  display: block;
  float: none;
  width: 36.5rem;
}
header .mega-menu .menu-list .mega-nav li .sub-menu ul li:first-child:nth-last-child(2),
header .mega-menu .menu-list .mega-nav li .sub-menu ul li:first-child:nth-last-child(2) ~ li {
  display: block;
  float: none;
  width: 36.5rem;
}
header .mega-menu .menu-list .mega-nav li .sub-menu ul li:first-child:nth-last-child(3),
header .mega-menu .menu-list .mega-nav li .sub-menu ul li:first-child:nth-last-child(3) ~ li {
  display: block;
  float: none;
  width: 36.5rem;
}
header .mega-menu .menu-list .mega-nav li .sub-menu ul.large-dropdown {
  width: 75.5rem;
}
header .mobile-links {
  display: none;
}
header .mobile-nav-links .utility-nav-mobile {
  padding: 3rem 0;
  position: fixed;
  top: 0;
  background: #ffffff;
  width: 100%;
  z-index: 10;
  height: 100vh;
  right: 0;
  -webkit-transition: all 0.15s linear;
  -moz-transition: all 0.15s linear;
  -ms-transition: all 0.15s linear;
  -o-transition: all 0.15s linear;
  transition: all 0.15s linear;
  overflow-x: hidden;
  overflow-y: scroll;
}
header .mobile-nav-links .utility-nav-mobile > a {
  margin: 0 3rem;
}
@media  screen and (min-width: 768px) and (max-width: 991px) {
  header .mobile-nav-links .utility-nav-mobile > a {
    margin-left: 6rem;
  }
}
header .mobile-nav-links .utility-nav-mobile .logo-anchor {
  margin-left: 1.5rem;
  width: 17.5rem;
  display: inline-block;
}
@media  screen and (min-width: 768px) {
  header .mobile-nav-links .utility-nav-mobile .logo-anchor {
    width: 23.5rem;
  }
}
header .mobile-nav-links .utility-nav-mobile .logo-anchor img {
  width: 100%;
}
header .mobile-nav-links .utility-nav-mobile.is-iframe {
  z-index: 0;
}
header .mobile-nav-links .utility-nav-mobile.is-left {
  transform: translateX(-100%);
}
header .mobile-nav-links .utility-nav-mobile.open {
  height: 100vh;
  right: 0;
  -webkit-transition: all 0.15s linear;
  -moz-transition: all 0.15s linear;
  -ms-transition: all 0.15s linear;
  -o-transition: all 0.15s linear;
  transition: all 0.15s linear;
  overflow-x: hidden;
  overflow-y: scroll;
}
header .mobile-nav-links .utility-nav-mobile .close-icon {
  float: right;
  font-size: 3rem;
  color: #00a664;
  top: 5rem;
}
@media  screen and (max-width: 767px) {
  header .mobile-nav-links .utility-nav-mobile .close-icon {
    top: 4.5rem;
  }
}
header .mobile-nav-links .utility-nav-mobile .nav-utility {
  padding: 3rem 3rem 0 3rem;
  margin: 2rem 0;
  border-top: 2px solid grey;
  text-align: left;
}
@media  screen and (min-width: 768px) and (max-width: 991px) {
  header .mobile-nav-links .utility-nav-mobile .nav-utility {
    padding-left: 6rem;
  }
}
header .mobile-nav-links .utility-nav-mobile .nav-utility li {
  list-style: none;
}
header .mobile-nav-links .utility-nav-mobile .nav-utility li a {
  color: #00a664;
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 2rem;
}
header .mobile-nav-links .mega-nav-mobile {
  padding: 0rem 3rem 5rem 3rem;
  text-align: left;
}
@media  screen and (min-width: 768px) and (max-width: 991px) {
  header .mobile-nav-links .mega-nav-mobile {
    padding-left: 6rem;
  }
}
header .mobile-nav-links .mega-nav-mobile li {
  list-style: none;
}
header .mobile-nav-links .mega-nav-mobile li.has-children .sub-menu-trigger:after {
  content: "\e080";
  font-family: 'Glyphicons Halflings';
  float: right;
  color: #00a664;
}
header .mobile-nav-links .mega-nav-mobile li a {
  color: #00a664;
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 2rem;
}
header .mobile-nav-links .mega-nav-mobile .sub-menu-mobile {
  transform: translateX(200%);
  right: 0;
  padding: 0;
  transition: transform .5s;
  position: absolute;
  background-color: #ffffff;
  height: 100vh;
  top: 0;
  left: 0;
  z-index: 5;
}
header .mobile-nav-links .mega-nav-mobile .sub-menu-mobile p {
  padding: 5rem 0 2rem 4rem;
  border-bottom: 2px solid #e2dfde;
  min-height: 11rem;
}
header .mobile-nav-links .mega-nav-mobile .sub-menu-mobile p > span {
  font-size: 2rem;
  font-weight: bold;
  line-height: 3rem;
  color: #00a664;
}
header .mobile-nav-links .mega-nav-mobile .sub-menu-mobile p a {
  font-size: 2rem;
  font-weight: bold;
  line-height: 3rem;
}
header .mobile-nav-links .mega-nav-mobile .sub-menu-mobile p .menu-trigger:after {
  content: "\e079";
  font-family: 'Glyphicons Halflings';
  float: left;
  color: #00a664;
  position: absolute;
  left: 1.2rem;
}
header .mobile-nav-links .mega-nav-mobile .sub-menu-mobile.slide {
  transform: translateX(0);
  transition: transform .5s;
}
header .mobile-nav-links .mega-nav-mobile .sub-menu-mobile ul {
  padding: 0;
  background-color: #ffffff;
}
header .mobile-nav-links .mega-nav-mobile .sub-menu-mobile ul li {
  list-style: none;
  padding-left: 4rem;
}
header .close-icon {
  float: right;
  position: absolute;
  right: 2.75rem;
  top: 5.5rem;
  z-index: 6;
  width: 2.2rem;
  height: 2.2rem;
  cursor: pointer;
  margin-right: 0;
  margin-top: 0;
}
header .close-icon:after,
header .close-icon:before {
  content: '';
  position: absolute;
  left: 0;
  top: 15px;
  width: 100%;
  height: 2px;
  display: block;
  background-color: #00a664;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}
header .close-icon:before {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.overflow {
  overflow: hidden;
}

.login-wrapper {
  display: none;
  overflow: hidden;
  z-index: 10;
}
.login-wrapper .lb-mask {
  position: fixed;
  width: 100vw;
  height: 100vh;
  top: 0;
  bottom: 0;
  right: 0;
  background-color: #00a664;
  opacity: 0.9;
  z-index: 10;
}
.login-wrapper .login-close {
  position: absolute;
  top: 0;
  right: 1rem;
  padding: 1rem 0rem 0 0;
}
@media  screen and (max-width: 767px) {
  .login-wrapper .login-close {
    right: 1.5rem;
    padding: 0.5rem 0 0 0;
  }
}
.login-wrapper .login-close .login-close-icon {
  font-size: 2.5rem;
  cursor: pointer;
}
.login-wrapper .login-form {
  position: absolute;
  height: 50rem;
  top: 50%;
  width: 37.5rem;
  left: 50%;
  transform: translate(-50%, -50%);
  overflow: hidden;
  z-index: 10;
}
.login-wrapper .login-form .form-wrapper {
  float: none;
  margin: 0 auto;
  background-color: #ffffff;
  overflow: hidden;
  padding: 0;
}
.login-wrapper .login-form .form-wrapper iframe {
  width: 100%;
  height: 50rem;
  border: none;
  overflow: hidden;
}
@media  screen and (max-width: 767px) {
  .login-wrapper .login-form .form-wrapper iframe {
    padding: 2rem 0;
  }
}
.login-wrapper .login-form .form-wrapper html {
  overflow: hidden;
}

.super-footer-section {
  padding: 5rem 0;
  background-color: #ffffff;
  overflow: hidden;
}
@media  screen and (max-width: 991px) {
  .super-footer-section .logo-section {
    text-align: center;
  }
}
.super-footer-section .logo-section img {
  width: 280px;
}
.locator-section {
  padding: 3.5rem 2.5rem;
  background-color: #3d3633;
  background-position: top right;
  background-repeat: no-repeat;
}
@media  screen and (min-width: 768px) {
  .locator-section {
    padding: 5.5rem 6.5rem 5.5rem 5.5rem;
    background-position: right 30px top 20px;
  }
}
@media  screen and (min-width: 992px) {
  .locator-section {
    padding: 3rem 6rem 3rem 2.5rem;
    background-position: top right;
  }
}
.locator-section h4 {
  margin-bottom: 2rem;
  padding-right: 7rem;
}
@media  screen and (min-width: 768px) {
  .locator-section h4 {
    padding-right: 0;
  }
}
.locator-section h4,
.locator-section label {
  color: #ffffff;
}
.locator-section label {
  display: block;
  color: #ffffff;
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 2.6rem;
}
.locator-section input {
  height: 4.5rem;
  width: 100%;
  font-size: 1.6rem;
  margin-bottom: 2.5rem;
  border: 1px solid #a9a2a0;
  border-radius: 0.5rem;
}
.locator-section .btn {
  width: 17rem;
}

.primary-footer-section {
  text-align: center;
  background-color: #f0efee;
  padding: 4rem 0;
}
@media  screen and (min-width: 1200px) {
  .primary-footer-section .wrapper {
    padding: 0 11rem;
    max-width: 1440px;
  }
}
@media screen and (max-width: 1400px) {
  .primary-footer-section .wrapper {
    padding: 0 3rem;
  }
}
.primary-footer-section h6 {
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  line-height: 3rem;
  margin-bottom: 1.5rem;
  margin-left: 0;
  text-transform: uppercase;
  color: #6b6360;
  text-align: left;
  margin-top: 0;
}
.primary-footer-section .company-links {
  display: inline-block;
  text-align: left;
  padding-right: 2rem;
}
@media  screen and (max-width: 1199px) {
  .primary-footer-section .company-links {
    float: none;
    display: block;
    overflow: hidden;
  }
}
.primary-footer-section .company-links .company-links-list {
  display: inline-block;
  float: left;
  max-width: 27rem;
  padding-left: 0rem;
}
@media  screen and (max-width: 1199px) {
  .primary-footer-section .company-links .company-links-list {
    width: 33.33%;
    padding-bottom: 2rem;
    max-width: unset;
  }
}
@media  screen and (max-width: 767px) {
  .primary-footer-section .company-links .company-links-list {
    width: 50%;
    max-width: unset;
  }
}
.primary-footer-section .company-links .company-links-list li {
  list-style: none;
  display: block;
  padding: 1rem 2.4rem 1rem 2rem;
  position: relative;
  margin-bottom: 0;
}
.primary-footer-section .company-links .company-links-list li:before {
  content: "\e250";
  font-family: 'Glyphicons Halflings';
  padding-right: 10px;
  font-size: 12px;
  color: #00a664;
  position: absolute;
  left: 0;
}
.primary-footer-section .company-links .company-links-list li a {
  color: #00a664;
  font-size: 1.6rem;
}
.primary-footer-section .company-links .company-links-list li a:hover {
  color: #028852;
  text-decoration: underline;
}
@media  screen and (min-width: 768px) and (max-width: 1199px) {
  .primary-footer-section .company-links .links-wrapper ul:first-child:nth-last-child(1),
  .primary-footer-section .company-links .links-wrapper ul:first-child:nth-last-child(1) ~ ul {
    width: 50%;
  }
  .primary-footer-section .company-links .links-wrapper ul:first-child:nth-last-child(2),
  .primary-footer-section .company-links .links-wrapper ul:first-child:nth-last-child(2) ~ ul {
    width: 50%;
  }
}
.primary-footer-section .services-links {
  display: inline-block;
  text-align: left;
  border-left: 2px solid #a9a2a0;
}
@media  screen and (max-width: 1199px) {
  .primary-footer-section .services-links {
    border-left: none;
    border-top: 2px solid #a9a2a0;
  }
}
@media  screen and (max-width: 1199px) {
  .primary-footer-section .services-links {
    float: none;
    display: block;
    overflow: hidden;
  }
}
@media  screen and (min-width: 1200px) {
  .primary-footer-section .services-links {
    padding-left: 4rem;
  }
}
@media  screen and (max-width: 1199px) {
  .primary-footer-section .services-links {
    padding-top: 4rem;
  }
}
.primary-footer-section .services-links .services-links-list {
  display: inline-block;
  float: left;
  max-width: 27rem;
}
@media  screen and (max-width: 1199px) {
  .primary-footer-section .services-links .services-links-list {
    max-width: unset;
    width: 33.33%;
  }
}
@media  screen and (max-width: 767px) {
  .primary-footer-section .services-links .services-links-list {
    width: 50%;
    max-width: unset;
  }
}
.primary-footer-section .services-links .services-links-list li {
  list-style: none;
  display: block;
  padding: 1rem 2.4rem 1rem 2rem;
  position: relative;
  margin-bottom: 0;
}
.primary-footer-section .services-links .services-links-list li:before {
  content: "\e250";
  font-family: 'Glyphicons Halflings';
  padding-right: 10px;
  font-size: 12px;
  color: #00a664;
  position: absolute;
  left: 0;
}
.primary-footer-section .services-links .services-links-list li a {
  color: #00a664;
  font-size: 1.6rem;
}
.primary-footer-section .services-links .services-links-list li a:hover {
  color: #028852;
  text-decoration: underline;
}
@media  screen and (min-width: 768px) and (max-width: 1199px) {
  .primary-footer-section .services-links .links-wrapper ul:first-child:nth-last-child(1),
  .primary-footer-section .services-links .links-wrapper ul:first-child:nth-last-child(1) ~ ul {
    width: 50%;
  }
  .primary-footer-section .services-links .links-wrapper ul:first-child:nth-last-child(2),
  .primary-footer-section .services-links .links-wrapper ul:first-child:nth-last-child(2) ~ ul {
    width: 50%;
  }
}
.padding-none {
  padding: 0!important;
}

.utility-footer {
  background-color: #ffffff;
  padding: 1.5rem 2rem;
  max-width: 1440px;
}
@media  screen and (min-width: 768px) and (max-width: 1199px) {
  .utility-footer {
    padding-top: 3.5rem;
  }
}
@media  screen and (max-width: 767px) {
  .utility-footer {
    padding-top: 2.5rem;
  }
}
@media  screen and (max-width: 1199px) {
  .utility-footer {
    text-align: center;
  }
}
.utility-footer img.icon-footer-link {
  vertical-align: baseline !important;
  width: auto !important;
  margin: 0px 0px -1px 0px !important;
}
.utility-footer a > span {
  text-decoration: underline;
}
.utility-footer a > span:hover {
  text-decoration: underline;
}
.utility-footer a:hover,
.utility-footer a:focus {
  text-decoration: none;
}
.utility-footer .footer-links {
  padding-left: 2rem;
}
.utility-footer .footer-links .footer-links-list {
  padding-left: 0rem;
  display: inline-block;
}
.utility-footer .footer-links .footer-links-list li {
  list-style: none;
  display: inline-block;
  margin-bottom: 0;
}
@media  screen and (min-width: 768px) and (max-width: 1199px) {
  .utility-footer .footer-links .footer-links-list li {
    padding-top: 0.8rem;
  }
}
.utility-footer .footer-links .footer-links-list li:after {
  content: '|';
  padding: 0 1rem;
  color: #6b6360;
}
.utility-footer .footer-links .footer-links-list li:last-child:after {
  display: none;
}
.utility-footer .footer-links .footer-links-list li a {
  color: #00a664;
  font-size: 1.6rem;
  padding-bottom: 0.1rem;
  line-height: 2.6rem;
}
.utility-footer .footer-links .footer-links-list li a:hover {
  color: #028852;
}
.utility-footer .footer-links img {
  vertical-align: baseline;
  margin-left: 0.5rem;
  width: 1.3rem;
}
.utility-footer .efleets-links {
  text-align: right;
  padding-left: 2rem;
}
@media  screen and (max-width: 1199px) {
  .utility-footer .efleets-links {
    text-align: center;
    padding-top: 1rem;
  }
}
@media  screen and (min-width: 768px) and (max-width: 1199px) {
  .utility-footer .efleets-links {
    padding-top: 0;
  }
}
.utility-footer .efleets-links .footer-efleets-links {
  padding-left: 0;
}
.utility-footer .efleets-links .footer-efleets-links li {
  list-style: none;
  display: inline-block;
  padding: 0;
  margin-bottom: 0;
}
@media  screen and (min-width: 1200px) {
  .utility-footer .efleets-links .footer-efleets-links li:last-child {
    padding-right: 0;
  }
}
@media  screen and (min-width: 768px) and (max-width: 1199px) {
  .utility-footer .efleets-links .footer-efleets-links li {
    padding-top: 0.8rem;
  }
}
.utility-footer .efleets-links .footer-efleets-links li:after {
  content: '|';
  padding: 0 1rem;
  color: #6b6360;
}
.utility-footer .efleets-links .footer-efleets-links li:last-child:after {
  display: none;
}
.utility-footer .efleets-links .footer-efleets-links li a {
  color: #00a664;
  font-size: 1.6rem;
  padding-bottom: 0.1rem;
  line-height: 2.6rem;
}
.utility-footer .efleets-links .footer-efleets-links li a:hover {
  color: #028852;
}
.utility-footer .efleets-links p {
  font-size: 1.6rem;
  color: #6b6360;
  padding-top: 0.5rem;
  margin-bottom: 1.5rem;
}
@media  screen and (max-width: 1199px) {
  .utility-footer .efleets-links p {
    padding-top: 1rem;
  }
}
@media  screen and (max-width: 767px) {
  .utility-footer .efleets-links p {
    padding-top: 2rem;
  }
}

.csmodal {
  position: fixed;
  width: 100%;
  height: 100vh;
  left: 0;
  top: 0;
  overflow: hidden;
  overflow-y: auto;
  z-index: 10;
  transition: opacity 0.4s;
}
.csmodal .csmodal-close {
  position: fixed;
  right: 4rem;
  top: 3rem;
  z-index: 6;
  width: 3.5rem;
  height: 3.5rem;
  cursor: pointer;
}
.csmodal .csmodal-close:after,
.csmodal .csmodal-close:before {
  content: '';
  position: absolute;
  left: 0;
  top: 15px;
  width: 100%;
  height: 2px;
  display: block;
  background-color: #ffffff;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}
.csmodal .csmodal-close:before {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.csmodal .csmodal-mask {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #00a664;
  opacity: 0.95;
}
.csmodal .csmodal-content {
  padding: 0;
  -webkit-transform: scale(0.4);
  -moz-transform: scale(0.4);
  -ms-transform: scale(0.4);
  -o-transform: scale(0.4);
  transform: scale(0.4);
  opacity: 0;
  width: 80%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media  screen and (min-width: 992px) {
  .csmodal .csmodal-content {
    padding: 0 10%;
    width: 67%;
  }
}
.csmodal .csmodal-content > article {
  position: relative;
  padding-top: 56.25%;
}
.csmodal .csmodal-content .vid-iframe {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  border: none;
}
.csmodal .csmodal-content .modal-content-inner {
  color: #ffffff;
}
.csmodal .csmodal-content .modal-content-inner > h4 {
  margin: 2rem 0;
  font-size: 18px;
  font-size: 1.8rem;
  color: #ffffff;
  text-transform: none;
  letter-spacing: initial;
  font-weight: 700;
}
.csmodal .csmodal-content .modal-content-inner .main-modal-content {
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 2.4rem;
  max-width: 80%;
}
.csmodal .csmodal-content .modal-content-inner .main-modal-content p {
  font-size: inherit;
  line-height: inherit;
}
.csmodal .csmodal-content .modal-content-inner .modal-vid-link {
  color: #ffffff;
  text-decoration: underline;
  padding-left: 1.6rem;
  font-size: 16px;
  font-size: 1.6rem;
  position: relative;
}
.csmodal .csmodal-content .modal-content-inner .modal-vid-link:before {
  content: '';
  width: 0;
  height: 0;
  border-top: 3px solid transparent;
  border-bottom: 3px solid transparent;
  border-left: 5px solid #ffffff;
  position: absolute;
  top: 0.3rem;
  left: 0;
}
.csmodal.show-modal {
  display: block;
}
.csmodal.animate-show {
  opacity: 1;
}
.csmodal.show-content .csmodal-content {
  opacity: 1;
}
body.csmodal-open {
  overflow: hidden;
}

/* Paddings */
.t-p-default {
  padding-top: 0;
}
.t-p-large {
  padding-top: 3rem;
}
.t-p-medium {
  padding-top: 1.5rem;
}
.t-p-small {
  padding-top: 1rem;
}
.b-p-default {
  padding-bottom: 0;
}
.b-p-large {
  padding-bottom: 3rem;
}
.b-p-medium {
  padding-bottom: 1.5rem;
}
.b-p-small {
  padding-bottom: 1rem;
}
@media  screen and (min-width: 768px) {
  .sm-t-p-default {
    padding-top: 0;
  }
  .sm-t-p-large {
    padding-top: 7.5rem;
  }
  .sm-t-p-medium {
    padding-top: 4.5rem;
  }
  .sm-t-p-small {
    padding-top: 3rem;
  }
  .sm-b-p-default {
    padding-bottom: 0;
  }
  .sm-b-p-large {
    padding-bottom: 7.5rem;
  }
  .sm-b-p-medium {
    padding-bottom: 4.5rem;
  }
  .sm-b-p-small {
    padding-bottom: 3rem;
  }
}
@media  screen and (min-width: 992px) {
  .lg-t-p-default {
    padding-top: 0;
  }
  .lg-t-p-large {
    padding-top: 15rem;
  }
  .lg-t-p-medium {
    padding-top: 12rem;
  }
  .lg-t-p-small {
    padding-top: 7.5rem;
  }
  .lg-b-p-default {
    padding-bottom: 0;
  }
  .lg-b-p-large {
    padding-bottom: 15rem;
  }
  .lg-b-p-medium {
    padding-bottom: 12rem;
  }
  .lg-b-p-small {
    padding-bottom: 7.5rem;
  }
}
/* Margin */
.t-m-default {
  margin-top: 0;
}
.t-m-large {
  margin-top: 3rem;
}
.t-m-medium {
  margin-top: 1.5rem;
}
.t-m-small {
  margin-top: 1rem;
}
.b-m-default {
  margin-bottom: 0;
}
.b-m-large {
  margin-bottom: 3rem;
}
.b-m-medium {
  margin-bottom: 1.5rem;
}
.b-m-small {
  margin-bottom: 1rem;
}
@media  screen and (min-width: 768px) {
  .sm-t-m-default {
    margin-top: 0;
  }
  .sm-t-m-large {
    margin-top: 7.5rem;
  }
  .sm-t-m-medium {
    margin-top: 4.5rem;
  }
  .sm-t-m-small {
    margin-top: 3rem;
  }
  .sm-b-m-default {
    margin-bottom: 0;
  }
  .sm-b-m-large {
    margin-bottom: 7.5rem;
  }
  .sm-b-m-medium {
    margin-bottom: 4.5rem;
  }
  .sm-b-m-small {
    margin-bottom: 3rem;
  }
}
@media  screen and (min-width: 992px) {
  .lg-t-m-default {
    margin-top: 0;
  }
  .lg-t-m-large {
    margin-top: 15rem;
  }
  .lg-t-m-medium {
    margin-top: 12rem;
  }
  .lg-t-m-small {
    margin-top: 7.5rem;
  }
  .lg-b-m-default {
    margin-bottom: 0;
  }
  .lg-b-m-large {
    margin-bottom: 15rem;
  }
  .lg-b-m-medium {
    margin-bottom: 12rem;
  }
  .lg-b-m-small {
    margin-bottom: 7.5rem;
  }
}

.side-navigation-wrapper {
  text-align: center;
}
@media  screen and (min-width: 992px) {
  .side-navigation-wrapper {
    text-align: left;
  }
}
.side-navigation-wrapper > p {
  color: #a9a2a0;
  font-size: 14px;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 2rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin: 1.6rem 0;
}
.side-navigation-wrapper .side-nav-list {
  padding-left: 0;
  margin-bottom: 0;
}
.side-navigation-wrapper .side-nav-list li {
  list-style: none;
  margin-bottom: 0;
  padding: 0.8rem 0;
  border-top: 1px solid #e2dfde;
  transition: padding .15s;
}
.side-navigation-wrapper .side-nav-list li a {
  color: #00a664;
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 3.5rem;
}
.side-navigation-wrapper .side-nav-list li a:hover {
  text-decoration: none;
  padding-left: 3rem;
}
.side-navigation-wrapper .side-nav-list li a:hover:before {
  left: 3rem;
}
@media  screen and (min-width: 992px) {
  .side-navigation-wrapper .side-nav-list {
    display: inline-block;
    width: 100%;
  }
}

/* START - SECTION STYLES */
/* SECTION */
section.component {
  background-size: cover;
  background-repeat: no-repeat;
  /*COLOR BACKGROUNDS*/
  background-position: right;
  position: relative;
  /* Paddings */
  /* Margin */
}
section.component h2 {
  margin-bottom: 1rem;
}
section.component.full-width article.container-fluid {
  max-width: none;
}
section.component.bg-white {
  background-color: #ffffff;
}
section.component.bg-transparent {
  background-color: transparent;
}
section.component.bg-light {
  background-color: #e3edeb;
}
section.component.bg-medium-green {
  background-color: #00a664;
}
section.component.bg-medium-green h2 {
  color: #ffffff;
}
section.component.bg-light-grey {
  background-color: #f0efee;
}
section.component.bg-dark-green {
  background-color: #015457;
}
section.component.bg-dark-green h2 {
  color: #ffffff;
}
section.component.bg-gradient:after {
  width: 100%;
  height: 100%;
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  background: linear-gradient(231deg, #005356, #028852);
}
section.component.bg-gradient h2 {
  color: #ffffff;
}
section.component.bg-green {
  background-color: #028852;
}
section.component.bg-green h2 {
  color: #ffffff;
}
section.component .text-dark-green {
  color: #015457;
}
section.component.l-p-default {
  padding-left: 0;
}
section.component.l-p-large {
  padding-left: 3rem;
}
section.component.l-p-medium {
  padding-left: 1.5rem;
}
section.component.l-p-small {
  padding-left: 1rem;
}
section.component.r-p-default {
  padding-right: 0;
}
section.component.r-p-large {
  padding-right: 3rem;
}
section.component.r-p-medium {
  padding-right: 1.5rem;
}
section.component.r-p-small {
  padding-right: 1rem;
}
section.component.t-p-default {
  padding-top: 0;
}
section.component.t-p-large {
  padding-top: 3rem;
}
section.component.t-p-medium {
  padding-top: 1.5rem;
}
section.component.t-p-small {
  padding-top: 1rem;
}
section.component.b-p-default {
  padding-bottom: 0;
}
section.component.b-p-large {
  padding-bottom: 3rem;
}
section.component.b-p-medium {
  padding-bottom: 1.5rem;
}
section.component.b-p-small {
  padding-bottom: 1rem;
}
@media  screen and (min-width: 768px) {
  section.component.sm-l-p-default {
    padding-left: 0;
  }
  section.component.sm-l-p-large {
    padding-left: 7.5rem;
  }
  section.component.sm-l-p-medium {
    padding-left: 4.5rem;
  }
  section.component.sm-l-p-small {
    padding-left: 3rem;
  }
  section.component.sm-r-p-default {
    padding-right: 0;
  }
  section.component.sm-r-p-large {
    padding-right: 7.5rem;
  }
  section.component.sm-r-p-medium {
    padding-right: 4.5rem;
  }
  section.component.sm-r-p-small {
    padding-right: 3rem;
  }
  section.component.sm-t-p-default {
    padding-top: 0;
  }
  section.component.sm-t-p-large {
    padding-top: 7.5rem;
  }
  section.component.sm-t-p-medium {
    padding-top: 4.5rem;
  }
  section.component.sm-t-p-small {
    padding-top: 3rem;
  }
  section.component.sm-b-p-default {
    padding-bottom: 0;
  }
  section.component.sm-b-p-large {
    padding-bottom: 7.5rem;
  }
  section.component.sm-b-p-medium {
    padding-bottom: 4.5rem;
  }
  section.component.sm-b-p-small {
    padding-bottom: 3rem;
  }
}
@media  screen and (min-width: 992px) {
  section.component.lg-l-p-default {
    padding-left: 0;
  }
  section.component.lg-l-p-large {
    padding-left: 7rem;
  }
  section.component.lg-l-p-medium {
    padding-left: 4.5rem;
  }
  section.component.lg-l-p-small {
    padding-left: 3rem;
  }
  section.component.lg-r-p-default {
    padding-right: 0;
  }
  section.component.lg-r-p-large {
    padding-right: 7rem;
  }
  section.component.lg-r-p-medium {
    padding-right: 4.5rem;
  }
  section.component.lg-r-p-small {
    padding-right: 3rem;
  }
  section.component.lg-t-p-default {
    padding-top: 0;
  }
  section.component.lg-t-p-large {
    padding-top: 12rem;
  }
  section.component.lg-t-p-medium {
    padding-top: 7rem;
  }
  section.component.lg-t-p-small {
    padding-top: 3.5rem;
  }
  section.component.lg-b-p-default {
    padding-bottom: 0;
  }
  section.component.lg-b-p-large {
    padding-bottom: 12rem;
  }
  section.component.lg-b-p-medium {
    padding-bottom: 7rem;
  }
  section.component.lg-b-p-small {
    padding-bottom: 3.5rem;
  }
}
section.component.l-m-default {
  margin-left: 0;
}
section.component.l-m-large {
  margin-left: 3rem;
}
section.component.l-m-medium {
  margin-left: 1.5rem;
}
section.component.l-m-small {
  margin-left: 1rem;
}
section.component.r-m-default {
  margin-right: 0;
}
section.component.r-m-large {
  margin-right: 3rem;
}
section.component.r-m-medium {
  margin-right: 1.5rem;
}
section.component.r-m-small {
  margin-right: 1rem;
}
section.component.t-m-default {
  margin-top: 0;
}
section.component.t-m-large {
  margin-top: 3rem;
}
section.component.t-m-medium {
  margin-top: 1.5rem;
}
section.component.t-m-small {
  margin-top: 1rem;
}
section.component.b-m-default {
  margin-bottom: 0;
}
section.component.b-m-large {
  margin-bottom: 3rem;
}
section.component.b-m-medium {
  margin-bottom: 1.5rem;
}
section.component.b-m-small {
  margin-bottom: 1rem;
}
@media  screen and (min-width: 768px) {
  section.component.sm-l-m-default {
    margin-left: 0;
  }
  section.component.sm-l-m-large {
    margin-left: 7.5rem;
  }
  section.component.sm-l-m-medium {
    margin-left: 4.5rem;
  }
  section.component.sm-l-m-small {
    margin-left: 3rem;
  }
  section.component.sm-r-m-default {
    margin-right: 0;
  }
  section.component.sm-r-m-large {
    margin-right: 7.5rem;
  }
  section.component.sm-r-m-medium {
    margin-right: 4.5rem;
  }
  section.component.sm-r-m-small {
    margin-right: 3rem;
  }
  section.component.sm-t-m-default {
    margin-top: 0;
  }
  section.component.sm-t-m-large {
    margin-top: 7.5rem;
  }
  section.component.sm-t-m-medium {
    margin-top: 4.5rem;
  }
  section.component.sm-t-m-small {
    margin-top: 3rem;
  }
  section.component.sm-b-m-default {
    margin-bottom: 0;
  }
  section.component.sm-b-m-large {
    margin-bottom: 7.5rem;
  }
  section.component.sm-b-m-medium {
    margin-bottom: 4.5rem;
  }
  section.component.sm-b-m-small {
    margin-bottom: 3rem;
  }
}
@media  screen and (min-width: 992px) {
  section.component.lg-l-m-default {
    margin-left: 0;
  }
  section.component.lg-l-m-large {
    margin-left: 15rem;
  }
  section.component.lg-l-m-medium {
    margin-left: 12rem;
  }
  section.component.lg-l-m-small {
    margin-left: 7.5rem;
  }
  section.component.lg-r-m-default {
    margin-right: 0;
  }
  section.component.lg-r-m-large {
    margin-right: 15rem;
  }
  section.component.lg-r-m-medium {
    margin-right: 12rem;
  }
  section.component.lg-r-m-small {
    margin-right: 7.5rem;
  }
  section.component.lg-t-m-default {
    margin-top: 0;
  }
  section.component.lg-t-m-large {
    margin-top: 12rem;
  }
  section.component.lg-t-m-medium {
    margin-top: 7rem;
  }
  section.component.lg-t-m-small {
    margin-top: 3.5rem;
  }
  section.component.lg-b-m-default {
    margin-bottom: 0;
  }
  section.component.lg-b-m-large {
    margin-bottom: 12rem;
  }
  section.component.lg-b-m-medium {
    margin-bottom: 7rem;
  }
  section.component.lg-b-m-small {
    margin-bottom: 3.5rem;
  }
}
@media  screen and (max-width: 991px) {
  section.component .mobile-padding {
    padding: 0;
  }
}
@media  screen and (max-width: 767px) {
  section.component.hide-image {
    background-image: none!important;
  }
}

.quote-component-wrapper {
  padding: 3rem 0;
  position: relative;
}
.quote-component-wrapper .icon-wrapper {
  width: 4.5rem;
  height: 4.5rem;
  position: absolute;
  left: 0;
}
.quote-component-wrapper .icon-wrapper img {
  height: 45px;
  width: 45px;
}
.quote-component-wrapper .icon-wrapper.white-svg {
  display: none;
}
.quote-component-wrapper .icon-wrapper.green-svg {
  display: inline-block;
}
.quote-component-wrapper .text-wrapper {
  padding-left: 6rem;
}
.quote-component-wrapper .text-wrapper > a {
  font-size: 16px;
  font-weight: bold;
  line-height: 2.6rem;
  font-style: italic;
  padding: 0;
  border: none;
  position: relative;
  margin-bottom: 1rem;
  display: inline-block;
  min-height: 4.5rem;
  line-height: 4.5rem;
}
.quote-component-wrapper .text-wrapper > a span {
  line-height: 26px;
  display: inline-block;
  position: relative;
}
.quote-component-wrapper .text-wrapper > a span:before {
  content: "\201C";
  font-weight: bold;
  font-size: 14px;
  position: absolute;
  top: -0.1rem;
  left: -0.5em;
}
.quote-component-wrapper .text-wrapper > a span:after {
  content: "\201D";
  font-weight: bold;
  font-size: 14px;
  position: absolute;
}
.quote-component-wrapper .text-wrapper > a.text-white {
  color: #ffffff;
}
.quote-component-wrapper .text-wrapper > a.text-green {
  color: #00a664;
}
.quote-component-wrapper .text-wrapper > a.text-black {
  color: #3d3633;
}
.quote-component-wrapper .text-wrapper .info-section {
  position: relative;
  display: flex;
  gap: 2rem;
}
.quote-component-wrapper .text-wrapper .info-section .image-wrapper {
  width: 4.5rem;
  height: 4.5rem;
  left: 0;
  border-radius: 2.5rem;
}
@media  screen and (max-width: 767px) {
  .quote-component-wrapper .text-wrapper .info-section .image-wrapper {
    position: unset;
    margin-bottom: 1rem;
  }
}
.quote-component-wrapper .text-wrapper .info-section .image-wrapper img {
  width: 50px;
  border-radius: 2.5rem;
  border: 2px solid #e2dfde;
}
@media  screen and (max-width: 767px) {
  .quote-component-wrapper .text-wrapper .info-section .info-wrapper {
    display: block;
    padding-left: 0;
  }
}
.quote-component-wrapper .text-wrapper .info-section .info-wrapper p {
  margin-bottom: 0;
  font-size: 16px;
  font-weight: bold;
  line-height: 2.6rem;
}
.quote-component-wrapper.bg-grey {
  color: #00a664;
}
.quote-component-wrapper.bg-grey .text-wrapper > a {
  color: #00a664;
}
.quote-component-wrapper.bg-grey .text-wrapper > a:hover {
  color: #028852;
}
.quote-component-wrapper.bg-grey .text-wrapper > a:hover span {
  text-decoration: underline;
}
.quote-component-wrapper.bg-grey .text-wrapper .info-section .image-wrapper img {
  border-color: #00a664;
}
.quote-component-wrapper.bg-grey .text-wrapper .info-section .info-wrapper p {
  color: #3d3633;
}
.quote-component-wrapper.bg-green {
  color: #ffffff;
}
.quote-component-wrapper.bg-green .icon-wrapper.green-svg {
  display: none;
}
.quote-component-wrapper.bg-green .icon-wrapper.white-svg {
  display: inline-block;
}
.quote-component-wrapper.bg-green .text-wrapper > a {
  color: #ffffff;
}
.quote-component-wrapper.bg-green .text-wrapper > a:hover {
  color: #f0efee;
}
.quote-component-wrapper.bg-green .text-wrapper > a:hover span {
  text-decoration: underline;
}
.quote-component-wrapper.bg-green .text-wrapper .info-section .image-wrapper img {
  border-color: #ffffff;
}
.quote-component-wrapper.no-link .icon-wrapper {
  display: none;
}
.quote-component-wrapper.no-link .text-wrapper {
  padding-left: 0.5rem;
}
.quote-component-wrapper.no-image {
  background-color: transparent;
}
.quote-component-wrapper.no-image .icon-wrapper {
  width: 0;
  height: 0;
  border: none;
  display: none;
}
.quote-component-wrapper.no-image .text-wrapper {
  padding-left: 0;
}
.quote-component-wrapper.no-image .text-wrapper .info-section .info-wrapper {
  padding-left: 0;
  padding-top: 1rem;
}
.quote-component-wrapper.no-image .text-wrapper .info-section .info-wrapper p {
  text-transform: uppercase;
  color: #3d3633;
}
.quote-component-wrapper.no-image .text-wrapper .info-section .info-wrapper p:last-child {
  display: none;
}
.quote-component-wrapper.no-image .text-wrapper .info-section .image-wrapper {
  display: none;
}
.quote-component-wrapper.no-image .text-wrapper img {
  display: none;
}
.quote-component-wrapper.no-image .text-wrapper > a {
  color: #015457;
  font-size: 2.8rem;
  font-weight: bold;
  line-height: 3.4rem;
  font-style: normal;
  text-transform: uppercase;
  padding-top: 25px;
  padding-bottom: 40px;
  margin-bottom: 0;
  font-family: 'din-condensed', sans-serif;
}
.quote-component-wrapper.no-image .text-wrapper > a span {
  line-height: 3.4rem;
  font-weight: normal;
  letter-spacing: 0.1rem;
}
.quote-component-wrapper.no-image .text-wrapper > a:hover {
  color: #015457;
}
.quote-component-wrapper.no-image .text-wrapper > a:hover span {
  text-decoration: none;
}
.quote-component-wrapper.no-image .text-wrapper > a span:before,
.quote-component-wrapper.no-image .text-wrapper > a span:after {
  position: unset;
  font-size: unset;
}
.quote-component-wrapper.style-3.bg-green {
  background-color: transparent;
}
.quote-component-wrapper.style-3.bg-green .text-wrapper > a {
  color: #ffffff;
}
.quote-component-wrapper.style-3.bg-green .text-wrapper .info-section .info-wrapper > p {
  color: #ffffff;
}
.quote-component-wrapper.style-3 .text-wrapper > a {
  text-align: center;
}
.quote-component-wrapper.style-3 .text-wrapper > a:hover span {
  text-decoration: none;
}
.quote-component-wrapper.style-3 .text-wrapper > a span {
  padding: 0 1rem;
  font-size: 2rem;
}
.quote-component-wrapper.style-3 .text-wrapper > a span:before {
  display: none;
}
.quote-component-wrapper.style-3 .text-wrapper > a span:after {
  display: none;
}
.quote-component-wrapper.style-3 .text-wrapper .quotes-mark {
  width: 60px;
  transform: rotateY(180deg);
}
.quote-component-wrapper.style-3 .text-wrapper .info-section {
  padding: 0 2rem;
}
.quote-component-wrapper.style-3 .text-wrapper .info-section .info-wrapper > p {
  font-style: italic;
  font-weight: 400;
}
.quote-component-wrapper.style-3 .text-wrapper .info-section .image-wrapper img {
  border: 4px solid #00a664;
}
.quote-component-wrapper.style-3 .icon-wrapper {
  display: none !important;
}

.page-list-items {
  display: flex;
  flex-wrap: wrap;
  margin-top: 4rem;
  padding-left: 0;
  max-width: 40rem;
  margin: 0 auto;
}
@media  screen and (min-width: 768px) {
  .page-list-items {
    margin-top: 0;
    max-width: none;
  }
}
.page-list-items li {
  list-style: none;
  background-color: #ffffff;
  padding: 20px;
  margin: 0;
  width: 100%;
  display: none;
  border: 1px solid #e2dfde;
  margin-bottom: 2rem;
}
@media  screen and (min-width: 768px) {
  .page-list-items li {
    width: calc(50% - 3rem);;
    margin: 0 1.5rem 2rem 1.5rem;
  }
}
@media  screen and (min-width: 992px) {
  .page-list-items li {
    width: calc(33.3% - 3rem);;
  }
}
.page-list-items li h3 {
  color: #015457;
}
.page-list-items li p {
  margin-bottom: 0;
  font-size: 1.6rem;
}
.page-list-items li p.detail {
  font-weight: 700;
  margin: 2.5rem 0 1.5rem 0;
  font-size: 1.4rem;
  text-transform: uppercase;
  color: #3d3633;
}
.page-list-items li a {
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 2.8rem;
  text-decoration: underline;
  margin-bottom: 3rem;
  display: inline-block;
}
.page-list-items li img {
  width: 100%;
  height: 20rem;
}
.pagination-list {
  text-align: center;
  clear: both;
}
.pagination-list li {
  overflow: hidden;
  display: inline-block;
  float: none;
}
.pagination-list li a,
.pagination-list li span {
  color: #ffffff;
  float: left;
  background: #000000;
  box-shadow: none;
  border: none;
  text-decoration: none;
  width: 40px;
  margin: 0 0.5rem;
  height: 40px;
  line-height: 14px;
  padding: 13px 0;
}
.pagination-list li a:hover,
.pagination-list li span:hover,
.pagination-list li a.active,
.pagination-list li span.active {
  color: #ffffff;
  background-color: #00a664;
}
.pagination-list li a.prev,
.pagination-list li span.prev,
.pagination-list li a.next,
.pagination-list li span.next {
  color: #fff;
  background-color: #6b6360;
  margin: 0 5px;
}
.pagination-list li.active .current {
  background-color: #00a664;
}
.pagination-list li.disabled span {
  background-color: #e2dfde;
}

.marketing-cta-wrapper {
  overflow: hidden;
  position: relative;
  padding: 2rem 15rem 3rem 15rem;
  background-color: #015457;
  color: #ffffff;
}
@media  screen and (min-width: 992px) {
  .marketing-cta-wrapper.left-spacing {
    padding-right: 15rem;
    padding-left: 2.5rem;
  }
  .marketing-cta-wrapper.right-spacing {
    padding-left: 15rem;
    padding-right: 2.5rem;
  }
}
@media  screen and (min-width: 992px) and (max-width: 1199px) {
  .marketing-cta-wrapper.left-spacing {
    padding-right: 2.5rem;
  }
  .marketing-cta-wrapper.right-spacing {
    padding-left: 2.5rem;
  }
}
@media  screen and (min-width: 768px) and (max-width: 991px) {
  .marketing-cta-wrapper {
    padding: 4rem 7rem;
  }
}
@media  screen and (max-width: 767px) {
  .marketing-cta-wrapper {
    padding: 3rem;
  }
}
@media  screen and (min-width: 768px) {
  .marketing-cta-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
  }
}
.marketing-cta-wrapper .image-wrapper {
  width: 12rem;
  position: relative;
  display: inline-block;
  float: left;
  box-shadow: -1px 8px 9px 2px rgba(0, 0, 0, 0.3);
}
@media  screen and (max-width: 767px) {
  .marketing-cta-wrapper .image-wrapper {
    left: 50%;
    transform: translateX(-50%);
    margin-bottom: 2rem;
    position: relative;
  }
}
.marketing-cta-wrapper .image-wrapper.image-thumbnail:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: linear-gradient(246deg, transparent 0%, #006f3c 100%);
}
.marketing-cta-wrapper .image-wrapper img {
  width: 100%;
}
.marketing-cta-wrapper .image-wrapper a {
  display: inline-block;
}
.marketing-cta-wrapper .image-wrapper span {
  position: absolute;
  right: -3.4rem;
  top: 50%;
  width: 7rem;
  border-radius: 35px;
  height: 7rem;
  text-align: center;
  transform: translateY(-50%);
  background-color: #006f3c;
  z-index: 1;
}
.marketing-cta-wrapper .image-wrapper span:before {
  font-size: 3.5rem;
  top: 50%;
  left: 50%;
  color: #ffffff;
  transform: translate(-50%, -50%);
  position: absolute;
}
.marketing-cta-wrapper .image-wrapper .play-icon {
  display: none;
  position: absolute;
  cursor: pointer;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 5rem;
  height: 5rem;
  pointer-events: unset;
}
.marketing-cta-wrapper .image-wrapper .play-icon:after {
  content: '';
  width: 0;
  height: 0;
  border-top: 7px solid #ffffff;
  border-bottom: 7px solid #ffffff;
  border-left: 10px solid #3d3633;
  position: absolute;
  top: 50%;
  left: calc(50% + 2px);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.marketing-cta-wrapper .image-wrapper .play-icon:before {
  content: '';
  position: absolute;
  width: 50px;
  height: 50px;
  background-color: #ffffff;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.marketing-cta-wrapper .content-wrapper {
  display: block;
  width: 100%;
  margin-left: 0;
  float: left;
  padding: 1rem 0;
}
.marketing-cta-wrapper .content-wrapper p.detail {
  text-transform: uppercase;
  margin-bottom: 1rem;
  color: #e2dfde;
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 2rem;
}
@media  screen and (min-width: 768px) {
  .marketing-cta-wrapper .content-wrapper {
    display: inline-block;
    margin-left: 10rem;
    width: calc(100% - 22rem);;
  }
}
@media  screen and (min-width: 992px) and (max-width: 1199px) {
  .marketing-cta-wrapper .content-wrapper {
    max-width: 47rem;
  }
}
@media  screen and (min-width: 992px) {
  .marketing-cta-wrapper .content-wrapper {
    max-width: 60rem;
  }
}
.marketing-cta-wrapper .content-wrapper p {
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 2.6rem;
  margin-bottom: 0;
}
.marketing-cta-wrapper .content-wrapper a {
  color: #ffffff;
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 2rem;
  text-decoration: underline;
  display: inline-block;
  margin-bottom: 1.5rem;
}
.marketing-cta-wrapper .content-wrapper a:hover {
  color: #f0efee;
}
.marketing-cta-wrapper.bg-grey {
  background-color: #f0efee;
  color: #3d3633;
}
.marketing-cta-wrapper.bg-grey .content-wrapper p.detail {
  color: #3d3633;
}
.marketing-cta-wrapper.bg-grey .content-wrapper a {
  color: #00a664;
  text-decoration: underline;
}
.marketing-cta-wrapper.bg-grey .content-wrapper a:hover {
  color: #41d298;
}
.marketing-cta-wrapper.video-wrapper .image-wrapper {
  width: 18rem;
}
.marketing-cta-wrapper.video-wrapper .image-wrapper span.glyphicon {
  display: none;
}
.marketing-cta-wrapper.video-wrapper .image-wrapper .play-icon {
  display: block;
}
.marketing-cta-wrapper.video-wrapper .image-wrapper img {
  width: 100%;
  height: 100%;
}
.marketing-cta-wrapper.video-wrapper .content-wrapper {
  margin-left: 0;
}
@media  screen and (min-width: 768px) {
  .marketing-cta-wrapper.video-wrapper .content-wrapper {
    display: inline-block;
    margin-left: 7rem;
    width: calc(100% - 25rem);;
  }
}

.location-finder-wrapper {
  overflow: hidden;
}
@media  screen and (max-width: 991px) {
  .location-finder-wrapper.change-order {
    display: flex;
    flex-flow: column;
  }
  .location-finder-wrapper.change-order .search-section {
    -webkit-order: 2;
    order: 2;
  }
  .location-finder-wrapper.change-order .map-section {
    -webkit-order: 1;
    order: 1;
  }
}
@media  screen and (min-width: 992px) {
  .location-finder-wrapper .search-section {
    max-height: 800px;
  }
}
@media  screen and (min-width: 992px) and (max-width: 1199px) {
  .location-finder-wrapper .search-section {
    max-height: 850px;
  }
}
.location-finder-wrapper .search-section .search-form-wrapper {
  padding: 5rem 2rem;
  background: linear-gradient(231deg, #005356, #028852);
}
@media  screen and (min-width: 768px) {
  .location-finder-wrapper .search-section .search-form-wrapper {
    padding: 8rem 6rem;
  }
}
@media  screen and (min-width: 992px) {
  .location-finder-wrapper .search-section .search-form-wrapper {
    padding: 10rem 8rem 8rem 8rem;
    min-height: 800px;
  }
}
@media  screen and (min-width: 992px) and (max-width: 1199px) {
  .location-finder-wrapper .search-section .search-form-wrapper {
    min-height: 850px;
  }
}
.location-finder-wrapper .search-section h2 {
  color: #ffffff;
  margin-top: 0;
}
.location-finder-wrapper .search-section .detail {
  color: #ffffff;
  text-transform: uppercase;
}
.location-finder-wrapper .search-section .zipcode-val,
.location-finder-wrapper .search-section .miles-val {
  height: 6rem;
  width: 100%;
  font-size: 18px;
  font-size: 1.8rem;
}
.location-finder-wrapper .search-section .miles-val {
  font-weight: 700;
  padding: 8px 2rem;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  margin-bottom: 1rem;
}
.location-finder-wrapper .search-section .location-finder {
  position: relative;
}
.location-finder-wrapper .search-section .vendor-finder {
  overflow: hidden;
  display: none;
  position: relative;
}
@media  screen and (min-width: 768px) {
  .location-finder-wrapper .search-section .vendor-finder > div {
    width: calc(50% - 1rem);;
    margin-left: 1rem;
    float: left;
  }
  .location-finder-wrapper .search-section .vendor-finder > div:first-child {
    margin: 0 1rem 0 0;
  }
}
.location-finder-wrapper .search-section .vendor-finder > div:last-child {
  position: relative;
}
.location-finder-wrapper .search-section .input-wrapper input {
  transition: all 0.2s;
  max-width: none;
}
.location-finder-wrapper .search-section .input-wrapper .error-msg {
  position: absolute;
  right: 0px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: bold;
  min-height: 35px;
  font-size: 12px;
  color: #ffffff;
  margin-bottom: 0;
  top: 9rem;
}
.location-finder-wrapper .search-section .search-link {
  color: #ffffff;
  text-decoration: underline;
  font-size: 16px;
  font-size: 1.6rem;
  display: inline-block;
  margin-bottom: 2rem;
  margin-top: 2.5rem;
  margin-left: 0.5rem;
}
@media  screen and (min-width: 768px) {
  .location-finder-wrapper .search-section .search-link {
    margin-bottom: 5rem;
  }
}
.location-finder-wrapper .search-section button {
  min-width: 200px;
}
.location-finder-wrapper .search-section .results-wrapper {
  display: none;
  background-color: #f0efee;
  padding: 5rem 3rem;
}
@media  screen and (min-width: 768px) {
  .location-finder-wrapper .search-section .results-wrapper {
    padding: 5rem 8rem;
  }
}
@media  screen and (min-width: 992px) {
  .location-finder-wrapper .search-section .results-wrapper {
    padding: 5rem 8rem 5rem 9rem;
    min-height: 800px;
  }
}
@media  screen and (min-width: 992px) and (max-width: 1199px) {
  .location-finder-wrapper .search-section .results-wrapper {
    min-height: 850px;
  }
}
.location-finder-wrapper .search-section .results-wrapper .no-results-text {
  width: 100%;
  background-color: #fff;
  text-align: center;
  padding: 100px 0;
  font-size: 39px;
  color: #ccc;
}
.location-finder-wrapper .search-section .results-wrapper .location .filters-section,
.location-finder-wrapper .search-section .results-wrapper .no-results .filters-section {
  display: none;
}
.location-finder-wrapper .search-section .results-wrapper .vendor .no-results-text,
.location-finder-wrapper .search-section .results-wrapper .location .no-results-text {
  display: none;
}
.location-finder-wrapper .search-section .results-wrapper .filters-section {
  margin-bottom: 2rem;
}
.location-finder-wrapper .search-section .results-wrapper .filters-section .detail {
  color: #3d3633;
  font-weight: 700;
  margin-right: 2rem;
}
.location-finder-wrapper .search-section .results-wrapper .filters-section .filters {
  display: inline-block;
  margin-right: 1.5rem;
}
@media  screen and (min-width: 992px) and (max-width: 1199px) {
  .location-finder-wrapper .search-section .results-wrapper .filters-section .filters {
    display: block;
  }
}
.location-finder-wrapper .search-section .results-wrapper .filters-section .filters > div {
  display: inline-block;
  position: relative;
  margin-right: 2rem;
}
.location-finder-wrapper .search-section .results-wrapper .filters-section .filters > div > label {
  display: inline-block;
  font-weight: normal;
  padding-left: 3rem;
}
.location-finder-wrapper .search-section .results-wrapper .filters-section .input-wrapper {
  position: relative;
}
.location-finder-wrapper .search-section .results-wrapper .filters-section .input-wrapper .autocomplete-list {
  position: absolute;
  border: 1px solid #d4d4d4;
  border-top: none;
  z-index: 9;
  /*position the autocomplete items to be the same width as the container:*/
  top: 100%;
  left: 0;
  right: 0;
  overflow-y: auto;
  max-height: 48rem;
}
.location-finder-wrapper .search-section .results-wrapper .filters-section .input-wrapper .autocomplete-list div {
  padding: 10px;
  cursor: pointer;
  background-color: #fff;
  border-bottom: 1px solid #d4d4d4;
}
.location-finder-wrapper .search-section .results-wrapper .filters-section .input-wrapper .autocomplete-list div:hover {
  background-color: #e9e9e9;
}
.location-finder-wrapper .search-section .results-wrapper .filters-section .input-wrapper .autocomplete-list .autocomplete-active {
  background-color: #00a664 !important;
  color: #ffffff;
}
.location-finder-wrapper .search-section .results-wrapper .filters-section .input-wrapper .btn-filter {
  display: flex;
  position: absolute;
  align-items: center;
  right: 0.5rem;
  margin-top: 0.3rem;
  top: 0;
}
.location-finder-wrapper .search-section .results-wrapper .filters-section .input-wrapper .btn-filter .close-filter {
  background: none;
  border: none;
  font-size: 2.5rem;
  visibility: hidden;
  min-width: 3rem;
  padding: 0;
}
.location-finder-wrapper .search-section .results-wrapper .filters-section .input-wrapper .btn-filter .search-filter {
  background: none;
  border: none;
  font-size: 2rem;
  display: inline-block;
  min-width: 3rem;
  padding: 0;
}
.location-finder-wrapper .search-section .results-wrapper h2 {
  color: #3d3633;
}
.location-finder-wrapper .search-section .results-wrapper h2 span {
  color: #015457;
}
.location-finder-wrapper .search-section .results-wrapper p > a {
  text-decoration: underline;
}
.location-finder-wrapper .search-section .results-wrapper ul {
  max-height: 450px;
  overflow-y: scroll;
  margin-bottom: 0;
}
.location-finder-wrapper .search-section .results-wrapper ul li {
  border: 1px solid #e2dfde;
  border-radius: 0.5rem;
  padding: 2.2rem 1.5rem 2.5rem 6.5rem;
  background-color: #ffffff;
  font-size: 16px;
  font-size: 1.6rem;
}
@media  screen and (min-width: 768px) {
  .location-finder-wrapper .search-section .results-wrapper ul li {
    padding: 2.2rem 12.5rem 2.5rem 6.5rem;
  }
}
@media  screen and (min-width: 992px) and (max-width: 1199px) {
  .location-finder-wrapper .search-section .results-wrapper ul li {
    padding: 2.2rem 1.5rem 2.5rem 6.5rem;
  }
}
.location-finder-wrapper .search-section .results-wrapper ul li > img {
  width: 3.5rem;
  position: absolute;
  top: 2.4rem;
  left: 1.5rem;
}
.location-finder-wrapper .search-section .results-wrapper ul li p {
  margin-bottom: 0;
  font-size: 16px;
  font-size: 1.6rem;
  color: #3d3633;
}
.location-finder-wrapper .search-section .results-wrapper ul li .shop-name {
  color: #3d3633;
  margin-bottom: 0.5rem;
  font-weight: 700;
}
.location-finder-wrapper .search-section .results-wrapper ul li span {
  color: #00a664;
}
.location-finder-wrapper .search-section .results-wrapper ul li .icon-wrapper {
  margin-top: 2rem;
}
.location-finder-wrapper .search-section .results-wrapper ul li .icon-wrapper a {
  display: inline-block;
  margin-right: 1rem;
}
@media  screen and (min-width: 768px) {
  .location-finder-wrapper .search-section .results-wrapper ul li .icon-wrapper {
    position: absolute;
    right: 0;
    top: 2.5rem;
    margin-top: 0;
  }
  .location-finder-wrapper .search-section .results-wrapper ul li .icon-wrapper a {
    display: inline-block;
    margin-right: 1.5rem;
  }
}
@media  screen and (min-width: 992px) and (max-width: 1199px) {
  .location-finder-wrapper .search-section .results-wrapper ul li .icon-wrapper {
    margin-top: 2rem;
    position: unset;
  }
  .location-finder-wrapper .search-section .results-wrapper ul li .icon-wrapper a {
    display: inline-block;
    margin-right: 1rem;
  }
}
.location-finder-wrapper .search-section .results-wrapper .location .results-list .nt_pref {
  padding-left: 2rem;
}
.location-finder-wrapper .search-section .results-wrapper .location .results-list .nt_pref > img {
  display: none;
}
.location-finder-wrapper ul {
  list-style: none;
  margin: 0 0 3rem 0;
  padding: 0;
  overflow: auto;
}
.location-finder-wrapper ul li {
  margin-bottom: 0.5rem;
  display: block;
  position: relative;
  float: left;
  width: 100%;
}
.location-finder-wrapper ul li label {
  display: block;
  font-weight: 300;
  font-size: 18px;
  font-size: 1.8rem;
  padding: 20px 25px 20px 65px;
  border: 1px solid #ffffff;
  color: #ffffff;
  border-radius: 0.5rem;
  cursor: pointer;
  -webkit-transition: all 0.25s linear;
}
.location-finder-wrapper input[type=radio]:checked ~ label {
  background-color: #00a664;
  border: none;
}
.location-finder-wrapper .map-section #map {
  width: 100%;
  height: 400px;
  overflow: hidden;
}
@media  screen and (min-width: 992px) {
  .location-finder-wrapper .map-section #map {
    height: 800px;
  }
}
@media  screen and (min-width: 992px) and (max-width: 1199px) {
  .location-finder-wrapper .map-section #map {
    height: 850px;
  }
}
.location-finder-wrapper .map-section #map > div {
  height: 100%;
}
.location-finder-wrapper .map-section #map > div .ad-image {
  height: 100%;
}
.location-finder-wrapper .map-section #map > div .ad-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.location-finder-wrapper .map-section #map .edit-view {
  display: none;
}
.location-finder-wrapper .map-section.hide-map #map {
  display: none!important;
}
.location-finder-wrapper .map-section.hide-map .map-parsys-wrapper {
  display: block!important;
}
.location-finder-wrapper .map-section.show-map #map {
  display: block!important;
}
.location-finder-wrapper .map-section.show-map .map-parsys-wrapper {
  display: none!important;
}
.location-finder-wrapper .div-ie11 {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: black;
  font-size: 2.8rem;
}
#iw-container {
  width: 240px!important;
  font-size: 16px;
  font-size: 1.6rem;
  padding: 1rem;
  color: #3d3633;
  font-family: arial;
}
#iw-container .iw-title {
  color: #3d3633;
  margin-bottom: 1.5rem;
  font-weight: 700;
}
#iw-container .iw-address,
#iw-container .city {
  margin-bottom: 0.5rem;
}
#iw-container .iw-address span,
#iw-container .city span {
  display: inline-block;
}
#iw-container .icon-wrapper {
  margin-top: 1rem;
}
#iw-container .icon-wrapper a {
  display: inline-block;
  margin-right: 1.5rem;
}
#iw-container .phone {
  color: #00a664;
}
#loading-image {
  display: none;
  position: fixed;
  width: 100%;
  height: 100%;
  background-color: #f0efee;
  opacity: 0.7;
  top: 0;
  left: 0;
  z-index: 10;
}
#loading-image img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 10rem;
  height: 10rem;
}
.is-ie .map-section {
  overflow: hidden;
}
.is-ie x-object-fit {
  position: static!important;
}
.is-ie select::-ms-expand {
  display: none;
}

.link-list-wrapper {
  padding: 3rem 0;
  color: #3d3633;
  overflow: hidden;
}
.link-list-wrapper .section-title {
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 2.8rem;
  margin: 0 0 25px;
}
.link-list-wrapper ul {
  padding-left: 0;
  overflow: hidden;
  margin-bottom: 0;
}
@media  screen and (min-width: 768px) {
  .link-list-wrapper ul {
    width: 50%;
    float: left;
  }
  .link-list-wrapper ul.column-1 {
    width: 100%;
  }
}
@media  screen and (min-width: 992px) {
  .link-list-wrapper ul.column-3 {
    width: 33.33%;
    float: left;
  }
  .link-list-wrapper ul.column-4 {
    width: 25%;
    float: left;
  }
}
.link-list-wrapper ul li {
  list-style: none;
  margin-bottom: 1.5rem;
}
.link-list-wrapper ul li a {
  color: #00a664;
  font-size: 1.6rem;
  font-weight: bold;
}
.link-list-wrapper ul li a:hover {
  color: #006f3c;
}
.link-list-wrapper ul.one-column {
  width: 100%;
  float: none;
}
.link-list-wrapper.green-bg {
  color: #ffffff;
}
.link-list-wrapper.green-bg ul li a {
  color: #ffffff;
  text-decoration: underline;
}
.link-list-wrapper.green-bg ul li a:hover {
  color: #f0efee;
}
@media  screen and (min-width: 992px) {
  .col-md-6 .link-list-wrapper ul.column-3,
  .col-lg-6 .link-list-wrapper ul.column-3,
  .col-md-6 .link-list-wrapper ul.column-4,
  .col-lg-6 .link-list-wrapper ul.column-4 {
    width: 50%;
    float: left;
  }
}

.large-list-wrapper {
  list-style: none;
  border-bottom: 2px solid #e2dfde;
  padding: 3.8rem 6.5rem 3.8rem 0rem;
  margin-bottom: 0;
  position: relative;
}
@media  screen and (min-width: 992px) {
  .large-list-wrapper {
    padding: 4.5rem 6.5rem 4.5rem 8.5rem;
  }
}
.large-list-wrapper:hover {
  background-color: #ffffff;
}
.large-list-wrapper > img {
  width: 7rem;
  height: 7rem;
  margin-bottom: 2rem;
  left: 0;
  position: unset;
  display: block;
  top: 50%;
}
@media  screen and (min-width: 992px) {
  .large-list-wrapper > img {
    display: inline-block;
    margin-right: 2rem;
    position: absolute;
    transform: translateY(-50%);
  }
}
.large-list-wrapper a img {
  width: 4.5rem;
  position: absolute;
  right: 0;
  bottom: 3.5rem;
}
@media  screen and (min-width: 992px) {
  .large-list-wrapper a img {
    bottom: unset;
    top: 50%;
    transform: translateY(-50%);
  }
}
.large-list-wrapper a span {
  color: #00a664;
  font-size: 2rem;
  font-weight: bold;
  line-height: 3rem;
}
.large-list-wrapper a:hover {
  text-decoration: none;
}
.large-list-wrapper a:hover span {
  color: #006f3c;
}
.large-list-wrapper.no-image {
  padding-left: 3rem;
  padding-right: 9rem;
}
@media  screen and (min-width: 992px) {
  .large-list-wrapper.no-image {
    padding-left: 2rem;
    padding-right: 8rem;
  }
}
.large-list-wrapper.no-image > img {
  display: none;
}
.large-list-wrapper.no-image a img {
  right: 3rem;
  top: 50%;
  transform: translateY(-50%);
  bottom: unset;
}
@media  screen and (min-width: 992px) {
  .large-list-wrapper.no-image a img {
    right: 2rem;
  }
}

.interior-hero-section {
  position: relative;
  overflow: hidden;
  min-height: 300px;
}
@media  screen and (min-width: 992px) {
  .interior-hero-section {
    padding: 0 15rem;
    min-height: 500px;
  }
}
.interior-hero-section.hide-text {
  padding: 0;
}
.interior-hero-section.hide-text .image-wrapper {
  position: relative;
  width: 100%;
}
.interior-hero-section .image-wrapper {
  position: relative;
}
.interior-hero-section .image-wrapper > div {
  height: 100%;
}
.interior-hero-section .image-wrapper .edit-view {
  display: none;
}
@media  screen and (min-width: 768px) {
  .interior-hero-section .image-wrapper {
    position: absolute;
    height: 100%;
    width: 100%;
    left: 0;
  }
}
@media  screen and (min-width: 768px) and (max-width: 991px) {
  .interior-hero-section .image-wrapper {
    width: 50%;
  }
}
.interior-hero-section .image-wrapper.gradient:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: linear-gradient(231deg, transparent, #028852);
}
.interior-hero-section .image-wrapper .ad-image {
  height: 100%;
}
.interior-hero-section .image-wrapper .ad-image img {
  width: 100%;
  height: 100%;
}
@media  screen and (min-width: 768px) {
  .interior-hero-section .image-wrapper .ad-image img {
    object-position: 0 0;
    object-fit: cover;
  }
}
.interior-hero-section .text-content {
  padding: 2rem 0;
  margin: 0 auto;
  float: none;
  text-align: left;
}
@media  screen and (min-width: 768px) {
  .interior-hero-section .text-content {
    width: 50%;
    max-width: 665px;
    float: left;
    position: relative;
  }
}
.interior-hero-section .text-content.background-white {
  background-color: #ffffff;
}
.interior-hero-section .text-content.background-white p {
  color: #3d3633;
}
.interior-hero-section .text-content.background-green {
  background-color: #015457;
}
.interior-hero-section .text-content.background-green p {
  color: #ffffff;
}
@media  screen and (min-width: 768px) and (max-width: 991px) {
  .interior-hero-section .text-content {
    padding: 0 1.5rem;
    margin: 0;
    float: right;
    text-align: left;
  }
}
@media  screen and (min-width: 992px) {
  .interior-hero-section .text-content {
    padding: 11rem 0;
  }
}
@media  screen and (min-width: 992px) {
  .interior-hero-section .text-content.text-center {
    text-align: center;
  }
  .interior-hero-section .text-content.text-left {
    text-align: left;
  }
  .interior-hero-section .text-content.align-center {
    float: none;
  }
  .interior-hero-section .text-content.align-left {
    float: left;
  }
  .interior-hero-section .text-content.align-right {
    float: right;
  }
}
.interior-hero-section .text-content h1,
.interior-hero-section .text-content h2,
.interior-hero-section .text-content h3,
.interior-hero-section .text-content h4,
.interior-hero-section .text-content h5,
.interior-hero-section .text-content h6 {
  margin-top: 0;
}
.interior-hero-section .text-content img {
  margin-bottom: 2rem;
}
.interior-hero-section .text-content .content-wrapper {
  padding: 3rem 2.5rem;
}
@media  screen and (min-width: 768px) and (max-width: 991px) {
  .interior-hero-section .text-content .content-wrapper {
    padding: 8rem 3rem;
  }
}
@media  screen and (min-width: 992px) {
  .interior-hero-section .text-content .content-wrapper {
    padding: 8rem 7rem;
  }
}
.interior-hero-section .text-content .content-wrapper img {
  max-width: 100%;
}
.interior-hero-section .text-content .content-wrapper img.is-icon {
  width: 7rem;
}
.interior-hero-section .text-content .content-wrapper h1 {
  margin-bottom: 2rem;
}
.interior-hero-section .text-content .content-wrapper > p {
  margin-bottom: 0;
}
@media  screen and (min-width: 992px) {
  .interior-hero-section .text-content.background-white {
    background-color: transparent;
  }
  .interior-hero-section .text-content.background-white .content-wrapper {
    background-color: #ffffff;
  }
  .interior-hero-section .text-content.background-green {
    background-color: transparent;
  }
  .interior-hero-section .text-content.background-green .content-wrapper {
    background-color: #015457;
  }
}
.interior-hero-section .text-content .text-white {
  color: #ffffff;
  word-break: break-word;
}
.interior-hero-section .text-content .text-green {
  color: #015457;
  word-break: break-word;
}
.interior-hero-section .text-content .text-black {
  color: #3d3633;
  word-break: break-word;
}

.image > .image-wrapper {
  display: table;
  text-align: center;
  padding: 0;
  margin: 0 auto;
}
.image > .image-wrapper.video-modal-wrap {
  position: relative;
}
.image > .image-wrapper.no-bottom-margin .ad-image {
  margin-bottom: 0;
  display: flex;
}
.image > .image-wrapper .edit-view {
  height: 0;
}
.image > .image-wrapper .ad-image {
  margin-bottom: 3rem;
}
@media  screen and (min-width: 768px) {
  .image > .image-wrapper .ad-image {
    margin-bottom: 2rem;
  }
}
.image > .image-wrapper img {
  width: auto;
  height: auto;
  max-width: 100%;
}
.image > .image-wrapper > p {
  text-align: left;
  color: #6b6360;
  font-size: 1.4rem;
  font-weight: bold;
  line-height: 2.2rem;
  display: table-caption;
  caption-side: bottom;
}
.image > .image-wrapper > p a {
  text-decoration: underline;
}
.image > .image-wrapper > a {
  display: inline-block;
}
.play-icon {
  position: absolute;
  cursor: pointer;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 5rem;
  height: 5rem;
  pointer-events: none;
}
.play-icon:after {
  content: '';
  width: 0;
  height: 0;
  border-top: 7px solid #ffffff;
  border-bottom: 7px solid #ffffff;
  border-left: 10px solid #3d3633;
  position: absolute;
  top: 50%;
  left: calc(50% + 2px);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.play-icon:before {
  content: '';
  position: absolute;
  width: 50px;
  height: 50px;
  background-color: #ffffff;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.is-ie .image .image-wrapper img {
  width: 100%;
  max-width: 100%;
}
.bg-medium-green .image > .image-wrapper > p,
.bg-dark-green .image > .image-wrapper > p,
.bg-gradient .image > .image-wrapper > p,
.bg-green .image > .image-wrapper > p {
  color: #ffffff;
}
.bg-medium-green .image > .image-wrapper > p a,
.bg-dark-green .image > .image-wrapper > p a,
.bg-gradient .image > .image-wrapper > p a,
.bg-green .image > .image-wrapper > p a {
  color: #ffffff;
}
.bg-medium-green .image > .image-wrapper > p a:hover,
.bg-dark-green .image > .image-wrapper > p a:hover,
.bg-gradient .image > .image-wrapper > p a:hover,
.bg-green .image > .image-wrapper > p a:hover,
.bg-medium-green .image > .image-wrapper > p a.hover,
.bg-dark-green .image > .image-wrapper > p a.hover,
.bg-gradient .image > .image-wrapper > p a.hover,
.bg-green .image > .image-wrapper > p a.hover {
  color: #f0efee;
}

/* START - HORIZONTAL LINE STYLES */
.horizontal-line-wrapper {
  width: 100%;
  overflow: hidden;
}
.horizontal-line-wrapper .horizontal-line.full-width {
  border-bottom: 1px solid #e2dfde;
}
.horizontal-line-wrapper .horizontal-line.partial {
  border-bottom: 1px solid #e2dfde;
  width: 40%;
}
.horizontal-line-wrapper .horizontal-line.partial.left {
  float: left;
}
.horizontal-line-wrapper .horizontal-line.partial.center {
  margin: 0 auto;
}
.horizontal-line-wrapper .horizontal-line.partial.right {
  float: right;
}


.hero-carousel {
  background-repeat: no-repeat;
  overflow: hidden;
  background-color: #f0efee;
}
.hero-carousel.bg-light-grey {
  background-color: #f0efee;
}
.hero-carousel.bg-white {
  background-color: #ffffff;
}
.hero-carousel.bg-medium-green {
  background-color: #00a664;
}
.hero-carousel.bg-dark-green {
  background-color: #015457;
}
.hero-carousel.bg-green {
  background-color: #028852;
}
.hero-carousel .edit-row .item {
  display: none;
}
.hero-carousel .banner-text {
  padding-top: 5rem;
  background-color: #e3edeb;
}
@media  screen and (min-width: 768px) {
  .hero-carousel .banner-text {
    padding-top: 6rem;
  }
}
.hero-carousel .banner-text .banner-content {
  margin: 0 auto;
  float: none;
}
.hero-carousel .banner-text .hero-title {
  color: #3d3633;
  font-family: 'din-condensed', sans-serif;
  font-size: 6rem;
  line-height: 5.4rem;
  text-align: center;
  text-transform: uppercase;
  padding-bottom: 3.6rem;
  letter-spacing: 1px;
  margin: 0;
}
@media  screen and (max-width: 767px) {
  .hero-carousel .banner-text .hero-title {
    font-size: 5rem;
  }
}
.hero-carousel .banner-text p {
  color: #3d3633;
  text-align: center;
  padding-top: 4.5rem;
  margin-bottom: 0;
  padding-bottom: 2.5rem;
}
.hero-carousel #banner-carousel {
  z-index: unset;
  position: relative;
}
.hero-carousel #banner-carousel .item {
  background-repeat: no-repeat;
  background-size: 100% 100%;
  padding-top: 0;
}
.hero-carousel #banner-carousel .item.compat-object-fit {
  background-size: cover;
  background-position: center center;
}
.hero-carousel #banner-carousel .item .image img {
  max-width: min-content;
  height: auto;
  object-fit: cover !important;
  margin: auto !important;
}
.hero-carousel #banner-carousel .item .image .ad-image {
  position: relative;
}
.hero-carousel #banner-carousel .item .ad-image {
  position: absolute;
  width: 100%;
  left: 0;
  height: 100%;
}
.hero-carousel #banner-carousel .item .item-shade {
  content: '';
  display: block;
  width: 100%;
  height: 230px;
  position: absolute;
  background: linear-gradient(180deg, #e3edeb 0%, rgba(227, 237, 235, 0) 90%);
  /* top: -7rem; */
  top: 0;
}
.hero-carousel #banner-carousel .item .item-container {
  position: relative;
  padding-top: 4rem;
  padding-bottom: 20rem;
  min-height: 400px;
}
@media  screen and (min-width: 992px) and (max-width: 1199px) {
  .hero-carousel #banner-carousel .item .item-container {
    padding: 4rem 7rem 20rem 7rem;
  }
}
.hero-carousel #banner-carousel .item .left-content,
.hero-carousel #banner-carousel .item .right-content {
  width: 34.9rem;
  background-color: #ffffff;
  float: left;
  margin-left: 11.5rem;
  padding: 3rem;
  border-radius: 0.5rem;
  box-shadow: -1px 8px 9px 2px rgba(0, 0, 0, 0.3);
}
.hero-carousel #banner-carousel .item .left-content > div,
.hero-carousel #banner-carousel .item .right-content > div {
  font-size: 1.6rem;
  position: relative;
  padding-left: 5.5rem;
  line-height: 4.5rem;
  margin-bottom: 0;
  color: #3d3633;
  min-height: 4.5rem;
}
.hero-carousel #banner-carousel .item .left-content > div span,
.hero-carousel #banner-carousel .item .right-content > div span {
  display: inline-block;
  line-height: 2.2rem;
}
.hero-carousel #banner-carousel .item .left-content > div span p img,
.hero-carousel #banner-carousel .item .right-content > div span p img {
  position: relative;
  left: 0;
  width: 100%;
  height: 100%;
  display: inline-block;
  border-radius: 0.5rem;
}
.hero-carousel #banner-carousel .item .left-content .no-image,
.hero-carousel #banner-carousel .item .right-content .no-image {
  padding-left: 0rem;
}
.hero-carousel #banner-carousel .item .left-content img,
.hero-carousel #banner-carousel .item .right-content img {
  position: absolute;
  left: 0;
  width: 4.5rem;
  height: 4.5rem;
  display: inline-block;
  border-radius: 2.5rem;
  text-align: center;
}
.hero-carousel #banner-carousel .item .left-content .secondary-text,
.hero-carousel #banner-carousel .item .right-content .secondary-text {
  position: relative;
  padding-left: 11rem;
  margin-top: 3.3rem;
}
.hero-carousel #banner-carousel .item .left-content .secondary-text img,
.hero-carousel #banner-carousel .item .right-content .secondary-text img {
  position: absolute;
  left: 5.5rem;
  width: 4.5rem;
  height: 4.5rem;
  display: inline-block;
  border-radius: 2.5rem;
}
.hero-carousel #banner-carousel .item .left-content .secondary-text p,
.hero-carousel #banner-carousel .item .right-content .secondary-text p {
  font-size: 1.6rem;
  margin-bottom: 0;
  line-height: 2.2rem;
  color: #6b6360;
}
.hero-carousel #banner-carousel .item .left-content .secondary-text p.title,
.hero-carousel #banner-carousel .item .right-content .secondary-text p.title {
  font-weight: bold;
}
.hero-carousel #banner-carousel .item .left-content .secondary-text p.description,
.hero-carousel #banner-carousel .item .right-content .secondary-text p.description {
  font-size: 1.4rem;
}
.hero-carousel #banner-carousel .item .right-content {
  float: right;
  margin-right: 11.5rem;
  margin-left: 0;
}
@media  screen and (max-width: 1199px) {
  .hero-carousel #banner-carousel .item .left-content,
  .hero-carousel #banner-carousel .item .right-content {
    width: 31.5rem;
    margin-left: 2.5rem;
    margin-right: 0;
  }
  .hero-carousel #banner-carousel .item .right-content {
    margin-left: 0 ;
    margin-right: 2.5rem;
  }
}
@media  screen and (max-width: 767px) {
  .hero-carousel #banner-carousel .item .left-content,
  .hero-carousel #banner-carousel .item .right-content {
    width: 29rem;
    margin-left: auto;
    margin-right: auto;
    float: none;
  }
  .hero-carousel #banner-carousel .item .right-content {
    display: none;
  }
}
.hero-carousel #banner-carousel .item img {
  /*
                display: none;
                position: absolute;
                */
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-carousel #banner-carousel .item p img,
.hero-carousel #banner-carousel .item h1 img,
.hero-carousel #banner-carousel .item h2 img,
.hero-carousel #banner-carousel .item h3 img,
.hero-carousel #banner-carousel .item h4 img,
.hero-carousel #banner-carousel .item h5 img,
.hero-carousel #banner-carousel .item h6 img {
  max-width: min-content;
  height: auto;
  object-fit: cover !important;
  margin: auto !important;
}
.hero-carousel #banner-carousel .owl-dots {
  padding-top: 3rem;
}
.hero-carousel #banner-carousel .owl-dots .owl-dot.active span {
  background-color: #00a664;
}
.hero-carousel #banner-carousel .owl-dots .owl-dot span {
  width: 5rem;
  height: 0.7rem;
  background-color: #a9a2a0;
  border-radius: 0;
}
.hero-carousel #banner-carousel .owl-prev,
.hero-carousel #banner-carousel .owl-next {
  position: absolute;
  top: 2rem;
  right: 4rem;
  padding: 0;
  width: 4.5rem;
  height: 4.5rem;
  border-radius: 2.5rem;
}
@media  screen and (max-width: 991px) {
  .hero-carousel #banner-carousel .owl-prev,
  .hero-carousel #banner-carousel .owl-next {
    display: none;
  }
}
.hero-carousel #banner-carousel .owl-prev i,
.hero-carousel #banner-carousel .owl-next i {
  left: 5.5rem;
  width: 4.5rem;
  height: 4.5rem;
  background-color: #3d3633;
  content: '+';
  display: inline-block;
  border-radius: 2.5rem;
}
.hero-carousel #banner-carousel .owl-prev i:before,
.hero-carousel #banner-carousel .owl-next i:before {
  content: "\e080";
  font-family: 'Glyphicons Halflings';
  font-style: normal;
  font-weight: 400;
  line-height: 4.5rem;
}
.hero-carousel #banner-carousel .owl-prev:hover i,
.hero-carousel #banner-carousel .owl-next:hover i {
  background-color: #6b6360;
}
.hero-carousel #banner-carousel .owl-prev {
  right: unset;
  left: 4rem;
}
.hero-carousel #banner-carousel .owl-prev i:before {
  content: "\e079";
}
/*
.aem-AuthorLayer-Edit {
    .hero-carousel {
        #banner-carousel {
            display: none;
        }

        .hero-slide-wrapper {
            margin: 0 2%;
            .item {
                display: inline-block;
            }

            .hero-slide {
                width: 100%;
                display: inline-block;
                border: 2px solid @medium-green;
                overflow: hidden;

                .left-content  {
					img {
						width: 52px;
                        height: 52px;
                    }
                }
                .right-content  {
					img {
						width: 52px;
                        height: 52px;
                    }
                }
            }
          
        }
    }
}
*/

.grid-component {
  clear: both;
  margin: 3rem 0;
}
.grid-component > p {
  text-transform: uppercase;
  font-weight: 700;
}
@media  screen and (min-width: 768px) {
  .grid-component > p {
    padding: 0 1.5rem;
  }
}
.grid-component .grid-wrapper {
  overflow: hidden;
  display: flex;
  flex-wrap: wrap;
  margin: 1rem 0 3rem 0;
}
.grid-component .grid-wrapper .cmp-text {
  background-color: #ffffff;
  padding: 2rem 2rem 3.5rem 2rem;
  text-align: center;
  justify-content: center;
  display: flex;
  flex-direction: column;
}
.grid-component .grid-wrapper .cmp-text h1,
.grid-component .grid-wrapper .cmp-text h2,
.grid-component .grid-wrapper .cmp-text h3,
.grid-component .grid-wrapper .cmp-text h4,
.grid-component .grid-wrapper .cmp-text h5,
.grid-component .grid-wrapper .cmp-text h6 {
  color: #015457;
  margin: 1.2rem 0 1rem 0;
  word-break: break-word;
}
.grid-component .grid-wrapper .cmp-text p {
  color: #6b6360;
  margin-bottom: 0;
  word-break: break-word;
}
.grid-component .grid-wrapper .newpar.new {
  width: 100%;
}
.grid-component .grid-wrapper.three-col .cmp-text {
  width: 100%;
  margin: 1.5rem 0;
}
@media  screen and (min-width: 768px) {
  .grid-component .grid-wrapper.three-col .cmp-text {
    width: calc(50% - 3rem);;
    margin: 1.5rem;
  }
}
@media  screen and (min-width: 992px) {
  .grid-component .grid-wrapper.three-col .cmp-text {
    width: calc(33.3% - 3rem);;
    margin: 1.5rem;
  }
}
.grid-component .grid-wrapper.four-col .cmp-text {
  width: 100%;
  margin: 1.5rem 0;
}
@media  screen and (min-width: 768px) {
  .grid-component .grid-wrapper.four-col .cmp-text {
    width: calc(50% - 3rem);;
    margin: 1.5rem;
  }
}
@media  screen and (min-width: 992px) {
  .grid-component .grid-wrapper.four-col .cmp-text {
    width: calc(25% - 3rem);;
    margin: 1.5rem;
  }
}
.grid-component .grid-wrapper.dark-brown .cmp-text {
  border-top: 1rem solid #3d3633;
}
.grid-component .grid-wrapper.dark-green .cmp-text {
  border-top: 0.8rem solid #015457;
}
.is-ie .grid-component .grid-wrapper .cmp-text h1,
.is-ie .grid-component .grid-wrapper .cmp-text h2,
.is-ie .grid-component .grid-wrapper .cmp-text h3,
.is-ie .grid-component .grid-wrapper .cmp-text h4,
.is-ie .grid-component .grid-wrapper .cmp-text h5,
.is-ie .grid-component .grid-wrapper .cmp-text h6,
.is-ie .grid-component .grid-wrapper .cmp-text p {
  word-wrap: break-word;
}

/* START - SECTION STYLES */
/* GRID #2 */
.grid-2 {
  margin: 40px 0;
}
.col-md-10 .grid-2 {
  margin-left: -15px;
  margin-right: -15px;
}
@media  screen and (min-width: 992px) {
  .col-md-10 .grid-2 {
    margin-left: 0;
    margin-right: 0;
  }
}
.grid-2 .bg-white {
  background-color: #ffffff;
}
.grid-2 .bg-white a {
  color: #00a664;
}
.grid-2 .bg-white a:hover {
  color: #006f3c;
}
.grid-2 .bg-medium-green {
  background-color: #00a664;
  color: #ffffff;
}
.grid-2 .bg-medium-green a,
.grid-2 .bg-medium-green .eyebrow {
  color: #ffffff;
}
.grid-2 .bg-medium-green a:hover {
  color: #f0efee;
}
.grid-2 .bg-light-grey {
  background-color: #f0efee;
}
.grid-2 .bg-light-grey a {
  color: #00a664;
}
.grid-2 .bg-light-grey a:hover {
  color: #006f3c;
}
.grid-2 .bg-light-grey .eyebrow {
  color: #6b6360;
}
.grid-2 .bg-dark-green {
  background-color: #028852;
  color: #ffffff;
}
.grid-2 .bg-dark-green a,
.grid-2 .bg-dark-green .eyebrow {
  color: #ffffff;
}
.grid-2 .bg-dark-green a:hover {
  color: #f0efee;
}
.grid-2 .bg-navy-blue {
  background-color: #015457;
  color: #ffffff;
}
.grid-2 .bg-navy-blue a,
.grid-2 .bg-navy-blue .eyebrow {
  color: #ffffff;
}
.grid-2 .bg-navy-blue a:hover {
  color: #f0efee;
}
.grid-2 .eyebrow {
  display: block;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .18rem;
  text-transform: uppercase;
}
.grid-2 .grid2-description {
  font-size: 16px;
}
.grid-2 .grid2-title,
.grid-2 .grid2-title a {
  display: block;
  font-size: 18px;
  font-weight: 500;
  margin: 10px 0px;
  text-decoration: underline;
}
.grid-2 .img-container {
  margin-bottom: 30px;
  white-space: nowrap;
  height: auto;
  max-height: 110px;
  width: 100%;
  text-align: center;
}
@media  screen and (min-width: 768px) {
  .grid-2 .img-container {
    height: 190px;
    max-height: none;
  }
}
@media  screen and (min-width: 992px) {
  .grid-2 .img-container {
    height: 180px;
  }
}
.grid-2 .img-container img {
  width: auto;
  max-width: 100%;
  margin: auto;
  height: 110px;
}
@media  screen and (min-width: 768px) {
  .grid-2 .img-container img {
    max-height: 100%;
    height: auto;
  }
}
.grid-2 .tile-container {
  padding: 25px;
  height: 100%;
}
@media  screen and (min-width: 768px) {
  .grid-2 .tile-container {
    max-width: 360px;
    width: auto;
  }
}
@media  screen and (min-width: 992px) {
  .grid-2 .tile-container {
    margin-bottom: 2rem;
    flex: 0 1 32%;
    margin-right: 2%;
    height: auto;
    width: auto;
  }
  .grid-2 .tile-container:nth-child(3n) {
    margin-right: 0;
  }
}
/* OWL Carousel */
@media  screen and (min-width: 992px) {
  .grid2-carousel {
    display: flex;
    flex-flow: row nowrap;
    margin: 0 auto;
    max-width: 1200px;
    padding: 0 15px;
    flex-flow: row wrap;
    justify-content: flex-start;
  }
  .col-md-10 .grid2-carousel {
    padding: 0;
  }
}
.grid2-carousel .owl-stage {
  display: flex;
  flex-flow: row nowrap;
}
.grid2-carousel .owl-nav [class*='owl-'],
.grid2-carousel .owl-nav:hover [class*='owl-'] {
  background: none;
}
.grid2-carousel .owl-dots {
  padding-top: 3rem;
}
.grid2-carousel .owl-dots .owl-dot.active span {
  background-color: #00a664;
}
.grid2-carousel .owl-dots .owl-dot span {
  width: 5rem;
  height: 0.7rem;
  background-color: #a9a2a0;
  border-radius: 0;
}
.grid2-carousel .owl-prev,
.grid2-carousel .owl-next {
  position: absolute;
  top: 2rem;
  right: 4rem;
  padding: 0;
  width: 4.5rem;
  height: 4.5rem;
  border-radius: 2.5rem;
}
@media  screen and (max-width: 991px) {
  .grid2-carousel .owl-prev,
  .grid2-carousel .owl-next {
    display: none;
  }
}
.grid2-carousel .owl-prev i,
.grid2-carousel .owl-next i {
  left: 5.5rem;
  width: 4.5rem;
  height: 4.5rem;
  background-color: #3d3633;
  content: '+';
  display: inline-block;
  border-radius: 2.5rem;
}
.grid2-carousel .owl-prev i:before,
.grid2-carousel .owl-next i:before {
  content: "\e080";
  font-family: 'Glyphicons Halflings';
  font-style: normal;
  font-weight: 400;
  line-height: 4.5rem;
}
.grid2-carousel .owl-prev {
  right: unset;
  left: 4rem;
}
.grid2-carousel .owl-prev i:before {
  content: "\e079";
}

.grid-1-container {
  overflow: hidden;
  display: flex;
  flex-wrap: wrap;
}
.grid-1-container .grid1-tile {
  min-height: 200px;
  text-align: center;
  border: 1px solid #e2dfde;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  width: 100%;
}
@media  screen and (max-width: 991px) {
  .grid-1-container .grid1-tile {
    height: 100%;
  }
}
.grid-1-container .grid1-tile .grid-tile {
  padding-bottom: 40px;
  height: 100%;
  background-color: #ffffff;
}
.grid-1-container .grid1-tile:hover {
  border-color: #00a664;
}
.grid-1-container .grid1-tile .grid-img-container {
  background-color: #00a664;
}
.grid-1-container .grid1-tile .grid-img-container > img {
  max-width: 100%;
}
.grid-1-container .grid1-tile .grid-img {
  max-width: 100%;
}
.grid-1-container .grid1-tile .grid-content {
  padding: 2rem;
}
.grid-1-container .grid1-tile h4 {
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 2.8rem;
  text-transform: initial;
  letter-spacing: initial;
  margin: 1rem 0 2.5rem 0;
}
.grid-1-container .grid1-tile p {
  font-size: 16px;
  font-size: 1.6rem;
}
.grid-1-container .grid1-tile .grid-cta.btn {
  background-color: #ffffff;
  margin-top: 2rem;
  background: #00a664;
  color: #ffffff;
}
.grid-1-container .grid1-tile .grid-cta.btn:hover,
.grid-1-container .grid1-tile .grid-cta.btn.hover {
  background: #5dbe91;
}
.grid-1-container .grid1-tile .grid-cta.is-arrow-cta {
  width: 4.5rem;
  position: absolute;
  bottom: 15px;
  right: 15px;
  height: 4.5rem;
  background-size: 45px;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 50%;
  background-image: url(../../../etc.clientlibs/efleets/clientlibs/clientlib-site/resources/CircleArrow.svg);
  font-size: 0;
}
.grid-1-container .grid1-tile .grid-cta.is-arrow-cta:hover {
  text-decoration: none;
}
.grid-1-container .grid1-tile .bg-green {
  background-color: #00a664;
}
.grid-1-container .grid1-tile .bg-green h4,
.grid-1-container .grid1-tile .bg-green p {
  color: #ffffff;
}
.grid-1-container .grid1-tile .bg-green .grid-cta.btn {
  background: #ffffff;
  color: #00a664;
  border: 1px solid #00a664;
}
.grid-1-container .grid1-tile .bg-green .grid-cta.btn:hover,
.grid-1-container .grid1-tile .bg-green .grid-cta.btn.hover {
  color: #5dbe91;
  border: 1px solid #5dbe91;
}
.grid-1-container .newpar.new {
  clear: both;
  width: 100%;
}
.grid-1-container .owl-item .grid-tile {
  width: 100%;
}
.grid-1-container .owl-dots {
  padding-top: 2rem;
}
.grid-1-container .owl-dots .owl-dot span {
  width: 2rem;
  height: 0.5rem;
  background-color: #a9a2a0;
  border-radius: 0;
  margin: 5px;
}
.grid-1-container .owl-dots .owl-dot.active span {
  background-color: #00a664;
}
.grid-1-container .owl-stage {
  display: flex;
}
.grid-1-component h2 {
  padding: 0 3.5rem;
}
@media  screen and (min-width: 768px) {
  .grid-1-container {
    overflow: hidden;
  }
}
@media  screen and (min-width: 992px) {
  .grid-1-container {
    overflow: hidden;
    max-width: 990px;
    margin: 0 auto;
  }
  .grid-1-container .grid1-tile {
    width: calc(33.33% - 15px);
    margin-bottom: 20px;
    margin-right: 15px;
  }
  .grid-1-container .grid1-tile:nth-child(3n + 3) {
    margin-right: 0;
  }
  .grid-1-container .grid1-tile:nth-child(3n + 4) {
    clear: both;
  }
  .grid-1-container .grid1-tile:nth-child(3n + 2) {
    margin-right: 20px;
    margin-left: 7px;
  }
  .grid-1-component {
    max-width: 990px;
    margin: 0 auto;
  }
  .grid-1-component h2 {
    padding: 0;
  }
}

.form-wrapper {
  background-color: #ffffff;
  padding: 4rem 3rem;
}
.form-wrapper h2 {
  margin-top: 0;
}
@media  screen and (min-width: 768px) {
  .form-wrapper h2 {
    padding: 0 1.5rem;
  }
}
.form-wrapper input {
  width: 100%;
}
.form-wrapper textarea {
  width: 100%;
}
.form-wrapper .form-section {
  padding: 0;
}
.form-wrapper .form-section > div {
  padding: 0 0 2.5rem 0;
}
@media  screen and (min-width: 768px) {
  .form-wrapper .form-section > div {
    padding: 0 1.5rem 2.5rem 1.5rem;
  }
}
.form-wrapper .form-section .btn {
  padding: 1.2rem 6rem;
}
.form-wrapper .form-section .button-wrapper {
  text-align: center;
  padding: 0;
}
@media  screen and (min-width: 768px) {
  .form-wrapper .form-section .button-wrapper {
    padding: 0 1.5rem;
  }
}
.form-wrapper .form-section .button-wrapper .btn {
  margin-bottom: 1.5rem;
}
@media  screen and (min-width: 768px) {
  .form-wrapper .form-section .button-wrapper .btn {
    float: right;
  }
}
.form-wrapper .form-section .button-wrapper p {
  margin-bottom: 0;
  font-size: 1.4rem;
  padding-left: 0;
  text-align: left;
}

.form-fields {
  display: block;
}
.form-completed {
  display: none;
}
.asset_download .form-completed {
  color: #3d3633;
  font-size: 20px;
  font-size: 2rem;
  font-weight: 700;
}
.asset-download .form-completed p {
  color: #3d3633;
  font-size: 20px;
  font-size: 2rem;
  font-weight: 700;
}

.subscription-section {
  padding-right: 3rem;
  padding: 4rem 1.2rem;
}
.subscription-section .grecaptcha-badge {
  z-index: 2;
}
.subscription-section h4 {
  margin-bottom: 2rem;
  margin-top: 0;
  color: #015457;
  letter-spacing: 0.1rem;
}
.subscription-section p {
  color: #3d3633;
}
@media (max-width: 400px) {
  .subscription-section {
    padding: 4rem 1.2rem 5rem;
  }
}
@media  screen and (min-width: 768px) {
  .subscription-section {
    padding: 8rem;
  }
}
@media  screen and (min-width: 992px) {
  .subscription-section {
    padding: 2rem;
  }
}
.subscription-section .input-section.form-container {
  position: relative;
}
.subscription-section .input-section.form-container form {
  margin-top: 0;
}
.subscription-section .input-section.form-container .form-fields {
  position: relative;
}
.subscription-section .input-section.form-container .form-fields:after {
  position: absolute;
  bottom: 16px;
  right: 20px;
  border-style: solid;
  border-color: #ffffff;
  border-width: 1.5px 1.5px 0 0;
  content: '';
  display: inline-block;
  height: 1rem;
  vertical-align: top;
  width: 1rem;
  transform: rotate(45deg);
  pointer-events: none;
}
.subscription-section .input-section.form-container .form-fields .form_error {
  position: absolute !important;
  padding-left: 2rem;
}
.subscription-section .input-section.form-container .form-fields svg {
  display: block;
  left: 0;
  margin-top: 5px !important;
}
.subscription-section .input-section.form-container .btn-subscribe {
  position: absolute;
  right: 0px;
  bottom: 0px;
  border-radius: 0 5px 5px 0;
  width: 4.8rem;
  height: 4.2rem;
  background-color: #00a664;
  content: '';
}
.subscription-section .input-section.form-container .form-completed {
  color: #3d3633;
  font-style: italic;
  font-size: 20px;
  font-size: 2rem;
  font-weight: 700;
}
.subscription-section.partial {
  overflow: hidden;
}
@media  screen and (min-width: 992px) {
  .subscription-section.partial > div {
    width: calc(50% - 4rem);;
    display: inline-block;
    margin-right: 3rem;
  }
  .subscription-section.partial > div:last-child {
    margin-right: 0;
    margin-left: 3rem;
  }
}
.subscription-section.full-width {
  padding: 4rem;
  background: #028852;
  overflow: hidden;
}
.subscription-section.full-width .input-section.form-container form {
  margin-top: 2.5rem;
}
.subscription-section.full-width p {
  display: none;
}
.subscription-section.full-width h4 {
  color: #ffffff;
  font-size: 3rem;
  margin-bottom: 0;
}
.subscription-section.full-width .input-section .form-completed {
  color: #ffffff;
}
.subscription-section.full-width .input-section label {
  color: #ffffff;
}
.subscription-section.full-width .input-section .btn-subscribe {
  background-color: #3d3633;
  border: 1;
}
.subscription-section.full-width .input-section .btn-subscribe:hover {
  background-color: #6b6360;
  border: 1;
}
@media  screen and (min-width: 768px) {
  .subscription-section.full-width {
    padding: 4rem 8rem 4rem 8rem;
  }
  .subscription-section.full-width .input-section {
    width: 30rem;
  }
  .subscription-section.full-width .input-section .form-fields {
    margin-bottom: 2rem;
  }
}
@media  screen and (min-width: 992px) {
  .subscription-section.full-width .input-section.form-container form {
    margin-top: 0;
  }
  .subscription-section.full-width > div {
    display: inline-block;
  }
  .subscription-section.full-width > div:first-child {
    max-width: calc(100% - 35rem);;
    margin-right: 4rem;
  }
}

.category-header h2 {
  color: #015457;
  margin-top: 0;
}
.category-header > p {
  color: #3d3633;
}
.category-header .read-more-link {
  font-weight: bold;
  padding-top: 20px;
  text-transform: uppercase;
  text-decoration: underline;
}
@media  screen and (min-width: 992px) {
  .category-header .read-more-link {
    float: right;
  }
}
.category-header .category-details {
  padding: 0 3.5rem;
}
@media  screen and (min-width: 768px) {
  .category-header .category-details {
    padding: 0 8rem;
  }
}
@media  screen and (min-width: 992px) {
  .category-header .category-details {
    padding: 0 1.5rem;
  }
}
.category-header .featured-items {
  display: flex;
  flex-wrap: wrap;
  margin-top: 4rem;
}
@media  screen and (min-width: 992px) {
  .category-header .featured-items {
    margin-top: 0;
  }
}
.category-header .featured-items .owl-dots {
  width: 100%;
}
.category-header .featured-items .owl-stage {
  display: flex;
}
.category-header .featured-items .owl-stage .owl-item {
  border: 1px solid #e2dfde;
  background-color: #ffffff;
}
.category-header .featured-items .featured-content {
  background-color: #ffffff;
  padding: 20px;
  margin: 0;
  width: 100%;
}
@media  screen and (min-width: 992px) {
  .category-header .featured-items .featured-content {
    width: calc(33.3% - 3rem);;
    margin: 0 1.5rem;
    border: 1px solid #e2dfde;
  }
}
.category-header .featured-items .featured-content h3 {
  color: #015457;
}
.category-header .featured-items .featured-content p {
  margin-bottom: 0;
  font-size: 1.6rem;
}
.category-header .featured-items .featured-content p.detail {
  margin: 2.5rem 0 1.5rem 0;
  font-size: 1.4rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #3d3633;
}
.category-header .featured-items .featured-content a {
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 2.8rem;
  text-decoration: underline;
  margin-bottom: 3rem;
  display: inline-block;
}
.category-header .featured-items .featured-content img {
  max-width: 100%;
}
.category-header .featured-items .featured-content > div {
  position: relative;
}
.category-header .featured-items .featured-content > div .play-icon {
  position: absolute;
  cursor: pointer;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 5rem;
  height: 5rem;
}
.category-header .featured-items .featured-content > div .play-icon:after {
  content: '';
  width: 0;
  height: 0;
  border-top: 7px solid #ffffff;
  border-bottom: 7px solid #ffffff;
  border-left: 10px solid #3d3633;
  position: absolute;
  top: 50%;
  left: calc(50% + 2px);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.category-header .featured-items .featured-content > div .play-icon:before {
  content: '';
  position: absolute;
  width: 50px;
  height: 50px;
  background-color: #ffffff;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.case-study-container .csmodal-trigger {
  cursor: pointer;
}
.case-study-container .play-btn {
  position: relative;
}
.case-study-container .play-btn:after {
  content: '';
  width: 0;
  height: 0;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-left: 10px solid #028852;
  position: absolute;
  top: 50%;
  left: calc(50% + 2px);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.case-study-container .play-btn:before {
  content: '';
  position: absolute;
  width: 50px;
  height: 50px;
  background-color: #ffffff;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.case-study-container .case-study-item-holder {
  position: relative;
}
.case-study-container .case-study-item-holder .case-study-item {
  transition: opacity 1s ease-in-out;
  opacity: 1;
  position: relative;
  z-index: 2;
}
.case-study-container .case-study-item-holder .case-study-item:not(.active) {
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.case-study-container .case-study-item-holder .case-study-item.active .author-details a {
  text-decoration: none;
  cursor: default;
}
.case-study-container .case-study-item-holder .img-wrapper {
  position: relative;
}
.case-study-container .case-study-item-holder .img-wrapper img {
  width: 100%;
  height: auto;
}
.case-study-container .case-study-item-holder .img-wrapper .img-play-trigger {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  background: -moz-linear-gradient(45deg, #028852 0%, rgba(2, 136, 82, 0.2) 47%, rgba(2, 136, 82, 0) 59%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(45deg, #028852 0%, rgba(2, 136, 82, 0.2) 47%, rgba(2, 136, 82, 0) 59%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(45deg, #028852 0%, rgba(2, 136, 82, 0.2) 47%, rgba(2, 136, 82, 0) 59%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#028852', endColorstr='#00028852', GradientType=1);
  /* IE6-9 fallback on horizontal gradient */
}
.case-study-container .case-study-item-holder .content {
  background-color: #00a664;
  padding: 20px 20px 50px 20px;
  color: #ffffff;
  font-size: 14px;
  font-size: 1.4rem;
}
.case-study-container .case-study-item-holder .content .main-content p {
  font-style: italic;
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 3.2rem;
  margin-bottom: 1.4rem;
  line-height: 2.4rem;
}
.case-study-container .case-study-item-holder .content .author-details {
  font-size: 16px;
  font-size: 1.6rem;
}
.case-study-container .case-study-item-holder .content .author-details p {
  margin-bottom: 0;
  font-size: inherit;
  line-height: 2.6rem;
  font-size: 16px;
  font-size: 1.6rem;
}
.case-study-container .case-study-item-holder .content .author-details a {
  margin-bottom: 0;
  font-size: 1.6rem;
  line-height: 2.6rem;
  font-family: "Arial", Helvetica, sans-serif;
  letter-spacing: 0;
  display: block;
  color: #ffffff;
}
.case-study-container .case-study-item-holder .case-study-trigger {
  color: #3d3633;
  margin-top: 2.4rem;
}
.case-study-container .case-study-item-holder .case-study-trigger .case-study-trigger-link {
  color: #3d3633;
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: 700;
  text-decoration: underline;
}
.case-study-container .case-study-item-holder .case-study-trigger .play-btn:before {
  left: calc(100% + 20px);
  background-color: #3d3633;
  -webkit-transform: translate(0, -50%);
  -moz-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  -o-transform: translate(0, -50%);
  transform: translate(0, -50%);
  width: 4rem;
  height: 4rem;
}
.case-study-container .case-study-item-holder .case-study-trigger .play-btn:after {
  left: calc(100% + 38px);
  -webkit-transform: translate(0, -50%);
  -moz-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  -o-transform: translate(0, -50%);
  transform: translate(0, -50%);
  border-top-width: 5px;
  border-bottom-width: 5px;
  border-left-width: 8px;
}
.case-study-container .case-study-author-holder {
  position: relative;
  margin-top: -3rem;
  z-index: 3;
}
.case-study-container .case-study-author-holder .case-study-author:not(.active) {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.case-study-container .case-study-author-holder .case-study-author a {
  margin-bottom: 1rem;
  font-size: 1.6rem;
  line-height: 2.6rem;
  font-family: "Arial", Helvetica, sans-serif;
  letter-spacing: 0;
  display: block;
}
.case-study-container .case-study-author-holder .author-img {
  width: 6rem;
  height: 6rem;
  overflow: hidden;
  border-radius: 50%;
  margin: 0 auto;
  border: 5px solid #e3edeb;
}
.case-study-container .case-study-author-holder .author-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.case-study-container .case-study-pagination {
  text-align: center;
  padding: 4rem 0 2rem;
  position: relative;
  z-index: 4;
}
.case-study-container .case-study-pagination .page {
  display: inline-block;
  cursor: pointer;
}
.case-study-container .case-study-pagination .page a {
  height: 0.5rem;
  font-size: 0;
}
.case-study-container .case-study-pagination .page span {
  width: 4rem;
  height: 0.5rem;
  margin: 5px;
  background-color: #a9a2a0;
  display: inline-block;
}
.case-study-container .case-study-pagination .page.active span {
  background-color: #00a664;
}
@media  screen and (min-width: 768px) {
  .case-study-container .case-study-item .content {
    padding: 2rem 4rem 5rem 4rem;
  }
  .case-study-container .case-study-item .content .main-content p {
    font-size: 24px;
    font-size: 2.4rem;
    font-style: normal;
    line-height: 3.2rem;
  }
  .case-study-container .case-study-author-holder {
    height: 6rem;
    display: table;
    width: 100%;
    margin: -3rem auto 0 auto;
  }
  .case-study-container .case-study-author-holder .case-study-author,
  .case-study-container .case-study-author-holder .case-study-author:not(.active) {
    position: static;
    opacity: 1;
    display: table-cell;
    width: 25%;
  }
  .case-study-container .case-study-author-holder .case-study-author {
    cursor: pointer;
  }
  .case-study-container .case-study-author-holder .case-study-author:hover .author-img {
    -webkit-transform: scale(1, 1);
    -moz-transform: scale(1, 1);
    -ms-transform: scale(1, 1);
    -o-transform: scale(1, 1);
    transform: scale(1, 1);
  }
  .case-study-container .case-study-author-holder .case-study-author:hover .author-img:after {
    -webkit-transform: scale(0, 0);
    -moz-transform: scale(0, 0);
    -ms-transform: scale(0, 0);
    -o-transform: scale(0, 0);
    transform: scale(0, 0);
  }
  .case-study-container .case-study-author-holder .author-img {
    position: relative;
    overflow: hidden;
    -webkit-transform: scale(0.7, 0.7);
    -moz-transform: scale(0.7, 0.7);
    -ms-transform: scale(0.7, 0.7);
    -o-transform: scale(0.7, 0.7);
    transform: scale(0.7, 0.7);
    transition: transform 0.2s;
  }
  .case-study-container .case-study-author-holder .author-img:after {
    content: '';
    width: 100%;
    height: 100%;
    border-radius: 50%;
    left: 0;
    top: 0;
    position: absolute;
    background-color: #ffffff;
    opacity: 0.4;
    transform-origin: center;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
    transition: transform 0.2s;
  }
  .case-study-container .case-study-author-holder .case-study-author.active .author-img {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
  }
  .case-study-container .case-study-author-holder .case-study-author.active .author-img:after {
    opacity: 0;
  }
}
@media  screen and (min-width: 992px) {
  .case-study-container .case-study-item {
    position: relative;
  }
  .case-study-container .case-study-item .content {
    position: absolute;
    left: 2.5rem;
    bottom: 5rem;
    width: 50%;
    z-index: 3;
    padding: 1rem 4rem 3rem 4rem;
    font-size: 11px;
    font-size: 1.1rem;
  }
  .case-study-container .case-study-item .img-play-trigger:after,
  .case-study-container .case-study-item .img-play-trigger:before {
    display: none;
  }
  .case-study-container .case-study-item .author-details {
    font-size: 13px;
    font-size: 1.3rem;
  }
  .case-study-container .case-study-author-holder {
    z-index: 3;
    padding-bottom: 10rem;
  }
  .case-study-container .case-study-author-holder .author-details {
    color: #00a664;
    transition: color 0.2s;
    position: relative;
    margin-top: 2rem;
    display: flex;
    flex-flow: column wrap;
    align-items: center;
  }
  .case-study-container .case-study-author-holder .author-details > div {
    position: relative;
  }
  .case-study-container .case-study-author-holder .author-details > div:before {
    content: '';
    width: 0;
    height: 0;
    border-top: 3px solid transparent;
    border-bottom: 3px solid transparent;
    border-left: 5px solid #028852;
    position: absolute;
    top: 1rem;
    left: -20px;
    transition: color 0.2s;
  }
  .case-study-container .case-study-author-holder .author-details:hover {
    text-decoration: underline;
    color: #028852;
  }
  .case-study-container .case-study-author-holder .author-details:hover:before {
    border-left-color: #028852;
  }
  .case-study-container .case-study-author-holder .author-details p {
    margin-bottom: 1rem;
    font-size: 16px;
    font-size: 1.6rem;
    line-height: 2.6rem;
  }
  .case-study-container .case-study-author-holder .case-study-author.active .author-details a,
  .case-study-container .case-study-author-holder .case-study-author.active .author-details {
    color: #3d3633;
  }
  .case-study-container .case-study-author-holder .case-study-author.active .author-details a:before,
  .case-study-container .case-study-author-holder .case-study-author.active .author-details:before {
    border-left-color: #000000;
  }
}

.carousel-component {
  overflow: hidden;
  background-color: #ffffff;
}
.carousel-component.bg-green {
  background-color: #00a664;
  color: #ffffff;
}
.carousel-component .edit-row .item {
  display: none;
}
.carousel-component .edit-mode {
  display: none;
}
.carousel-component .edit-mode .image {
  display: none;
}
.carousel-component #carousel-slider {
  z-index: unset;
  position: relative;
  padding: 3rem 0 7rem 0;
}
@media  screen and (min-width: 768px) {
  .carousel-component #carousel-slider {
    padding: 7rem 0 3rem 0;
  }
}
.carousel-component #carousel-slider .item {
  padding-top: 0;
  overflow: hidden;
}
.carousel-component #carousel-slider .item .text-container,
.carousel-component #carousel-slider .item .image-container {
  width: 100%;
  display: inline-block;
  float: left;
}
@media  screen and (min-width: 992px) {
  .carousel-component #carousel-slider .item .text-container,
  .carousel-component #carousel-slider .item .image-container {
    width: 50%;
    padding-right: 3.5rem;
  }
}
.carousel-component #carousel-slider .item .text-container {
  padding-top: 5rem;
}
@media  screen and (min-width: 992px) {
  .carousel-component #carousel-slider .item .text-container {
    padding: 3rem 0 3rem 3.5rem;
  }
}
.carousel-component #carousel-slider .owl-stage-outer {
  transform: translate3d(0, 0, 0);
  -ms-perspective: 1000px;
  perspective: 1000px;
}
.carousel-component #carousel-slider .owl-stage-outer .owl-stage {
  -ms-will-change: transform;
  will-change: transform;
  transition-property: transform !important;
}
.carousel-component #carousel-slider .owl-stage-outer .owl-item {
  padding: 0 3rem;
}
@media  screen and (min-width: 768px) {
  .carousel-component #carousel-slider .owl-stage-outer .owl-item {
    padding: 0 8.5rem;
  }
}
@media  screen and (min-width: 992px) {
  .carousel-component #carousel-slider .owl-stage-outer .owl-item {
    padding: 0 15rem;
  }
}
.carousel-component #carousel-slider .text-carousel .image-container {
  display: none;
}
@media  screen and (min-width: 992px) {
  .carousel-component #carousel-slider .text-carousel .text-container {
    padding: 3rem 15rem;
    width: 100%;
  }
}
.carousel-component #carousel-slider .image-carousel .text-container {
  display: none;
}
@media  screen and (min-width: 992px) {
  .carousel-component #carousel-slider .image-carousel .image-container {
    padding: 3rem 15rem;
    width: 100%;
  }
}
.carousel-component #carousel-slider .owl-dots {
  padding-top: 1rem;
}
@media  screen and (min-width: 768px) {
  .carousel-component #carousel-slider .owl-dots {
    padding-top: 3rem;
  }
}
.carousel-component #carousel-slider .owl-dots .owl-dot.active span {
  background-color: #ffffff;
}
.carousel-component #carousel-slider .owl-dots .owl-dot span {
  width: 5rem;
  height: 0.7rem;
  background-color: #015457;
  border-radius: 0;
}
.carousel-component #carousel-slider .owl-prev,
.carousel-component #carousel-slider .owl-next {
  position: absolute;
  padding: 0;
  width: 4.5rem;
  height: 4.5rem;
  border-radius: 2.5rem;
}
@media  screen and (max-width: 767px) {
  .carousel-component #carousel-slider .owl-prev,
  .carousel-component #carousel-slider .owl-next {
    bottom: 0;
    left: calc(50% + 3rem);;
    transform: translateX(-50%);
  }
}
@media  screen and (min-width: 768px) {
  .carousel-component #carousel-slider .owl-prev,
  .carousel-component #carousel-slider .owl-next {
    display: block;
    top: 40%;
    right: 1rem;
    transform: translateY(-50%);
  }
}
@media  screen and (min-width: 992px) {
  .carousel-component #carousel-slider .owl-prev,
  .carousel-component #carousel-slider .owl-next {
    top: 45%;
    right: 4rem;
  }
}
.carousel-component #carousel-slider .owl-prev {
  right: unset;
  left: 1rem;
}
@media  screen and (min-width: 992px) {
  .carousel-component #carousel-slider .owl-prev {
    left: 4rem;
  }
}
@media  screen and (max-width: 767px) {
  .carousel-component #carousel-slider .owl-prev {
    bottom: 0;
    left: calc(50% - 3rem);;
    transform: translateX(-50%);
  }
}
.carousel-component.bg-dark-green {
  background-color: #015457;
  color: #ffffff;
}
.carousel-component.bg-dark-green #carousel-slider .owl-dots .owl-dot span {
  background-color: #6b6360;
}
.carousel-component.bg-dark-green #carousel-slider .owl-dots .owl-dot.active span {
  background-color: #ffffff;
}
.carousel-component.bg-white {
  background-color: #ffffff;
  color: #00a664;
}
.carousel-component.bg-white #carousel-slider .owl-dots .owl-dot span {
  background-color: #015457;
}
.carousel-component.bg-white #carousel-slider .owl-dots .owl-dot.active span {
  background-color: #6b6360;
}
.carousel-component.bg-white #carousel-slider .item .text-container {
  color: #3d3633;
}
.carousel-component.bg-white #carousel-slider .item .text-container h1,
.carousel-component.bg-white #carousel-slider .item .text-container h2,
.carousel-component.bg-white #carousel-slider .item .text-container h3,
.carousel-component.bg-white #carousel-slider .item .text-container h4,
.carousel-component.bg-white #carousel-slider .item .text-container h5,
.carousel-component.bg-white #carousel-slider .item .text-container h6 {
  color: #015457;
}
/*
.aem-AuthorLayer-Edit {
    .carousel-component {

        #carousel-slider {
            display: none;
        }

        .carousel-component-wrapper {
            margin: 0 2%;
            display: block;
            .item {
                display: none;
            }
            .carousel-slide {
                width: 24%;
                display: inline-block;
                height: 25rem;
                border: 2px solid @border-color;
                overflow: hidden;
            }
            .image {
                display: block;
                overflow: hidden;
                width: 100%;
                height: 100%;

				img {
                    width: 100%;
                    height: 100%;
                    object-fit: cover;
                }
            }
        }
    }
}
*/
.is-ie .carousel-component .owl-item,
.is-ie .carousel-component .owl-item * {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  perspective: 1000px;
  backface-visibility: hidden;
}

.basic-header-wrapper {
  min-height: 25rem;
  position: relative;
  line-height: 25rem;
  padding: 0 3rem;
}
@media  screen and (min-width: 768px) {
  .basic-header-wrapper {
    min-height: 30rem;
    line-height: 30rem;
    padding: 0 6rem;
  }
}
@media  screen and (min-width: 992px) {
  .basic-header-wrapper {
    padding: 0 15rem;
  }
}
.basic-header-wrapper .header-fluid {
  max-width: 1200px;
  margin: auto;
}
@media  screen and (min-width: 992px) {
  .basic-header-wrapper .header-fluid {
    padding-right: 15px;
    padding-left: 15px;
  }
}
.basic-header-wrapper h1 {
  padding: 3rem 1rem;
  display: inline-block;
  margin: 0;
  vertical-align: middle;
  line-height: normal;
  word-break: break-word;
}
@media  screen and (min-width: 992px) {
  .basic-header-wrapper h1 {
    padding: 3rem 2rem;
  }
}
@media  screen and (min-width: 992px) {
  .basic-header-wrapper h1 {
    padding: 3rem 0;
  }
}
.basic-header-wrapper.title-green {
  background: linear-gradient(231deg, #005356, #028852);
}
.basic-header-wrapper.title-green h1 {
  color: #ffffff;
}
.basic-header-wrapper.title-grey {
  background-color: #f0efee;
  min-height: 20rem;
  line-height: 20rem;
}
@media  screen and (min-width: 768px) {
  .basic-header-wrapper.title-grey {
    min-height: 23rem;
    line-height: 23rem;
  }
}
.basic-header-wrapper.title-grey h1 {
  color: #3d3633;
}

.asset-download.section {
  clear: both;
  overflow: hidden;
}
@media  screen and (min-width: 992px) {
  .input-section.form-container {
    max-width: 40rem;
  }
}
.input-section.form-container > .form_error {
  text-align: left;
}
.input-section.form-container h3 {
  color: #015457;
  font-size: 3.4rem;
  font-weight: 700;
  line-height: 4rem;
  letter-spacing: 1px;
  margin-bottom: 2rem;
}
.input-section.form-container form {
  margin-top: 1.5rem;
}
.input-section.form-container form .form-fields .form_row {
  margin-bottom: 2.5rem;
  padding-bottom: 0;
}
.input-section.form-container form .form-fields .form_row .form_error {
  background-color: transparent;
  border: none;
  color: #f12c35;
  padding: 1rem 0 0 0;
}
.input-section.form-container form .form-fields .form_row .form_error:before,
.input-section.form-container form .form-fields .form_row .form_error:after {
  display: none;
}
.input-section.form-container .image-wrapper {
  position: relative;
  display: inline-block;
  margin-bottom: 2rem;
  box-shadow: -1px 8px 9px 2px rgba(0, 0, 0, 0.3);
  width: 10rem;
}
.input-section.form-container .image-wrapper img {
  width: 100%;
}
.input-section.form-container .image-wrapper span {
  position: absolute;
  top: 50%;
  right: -28px;
  transform: translateY(-50%);
  font-size: 2.5rem;
  color: #ffffff;
  background: #00a664;
  padding: 1.5rem;
  border-radius: 4rem;
  z-index: 1;
  cursor: pointer;
}
.input-section.form-container .image-wrapper:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: linear-gradient(246deg, transparent 0%, #006f3c 100%);
}
.btn-container {
  margin-top: 3.5rem;
  position: relative;
  width: 100%;
}
.btn-container .btn-download {
  height: 5rem;
  border-radius: 2.5rem;
  width: 100%;
  background-color: #00a664;
  color: #ffffff;
  padding-left: 2rem;
  text-align: left;
  font-weight: 700;
}
.btn-container .btn-download:hover {
  background-color: #41d298;
  border: none;
}
.btn-container span {
  color: #ffffff;
  position: absolute;
  top: 1.4rem;
  right: 2.4rem;
  font-size: 2.2rem;
  content: '';
  display: inline-block;
  pointer-events: none;
}
.asset-download .form_error {
  height: auto;
}

.accordion-wrapper .accordion-container {
  margin: 1.5rem 0;
  border: 1px solid #e2dfde;
}
.accordion-wrapper {
  background-color: #ffffff;
}
.accordion-wrapper .accordion-content {
  margin: 0 2rem;
  position: relative;
}
.accordion-wrapper .accordion-content > p {
  font-family: Arial;
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 2rem;
  color: #00a664;
  margin: 0;
  padding: 3.5rem 4rem 3.3rem 0;
  margin: 0 0 0 4rem;
  position: relative;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 2px;
}
.accordion-wrapper .accordion-content > p.with-number {
  margin-left: 5rem;
}
.accordion-wrapper .accordion-content > p span {
  cursor: pointer;
}
.accordion-wrapper .accordion-content .accordion-number {
  color: #00a664;
  border: 2px solid #00a664;
  border-radius: 50%;
  padding: 0.8rem;
  min-width: 3.6rem;
  left: 0;
  top: 50%;
  line-height: 1.6rem;
  transform: translateY(-50%);
  position: absolute;
  height: 3.6rem;
  text-align: center;
  display: inline-block;
  font-size: 16px;
  font-size: 1.6rem;
  margin-right: 2rem;
}
.accordion-wrapper .accordion-content .no-number {
  width: 2rem;
  height: 1.5rem;
  vertical-align: text-bottom;
  display: inline-block;
  background-image: url(../../../etc.clientlibs/efleets/clientlibs/clientlib-site/resources/Check-Mark-Form.svg);
  background-repeat: no-repeat;
  background-size: 100%;
  left: 0.5rem;
  top: 50%;
  transform: translateY(-50%);
  position: absolute;
}
.accordion-wrapper .accordion-content span.icon-trigger {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 1rem;
  width: 1.6rem;
  height: 1.6rem;
  float: right;
  cursor: pointer;
}
.accordion-wrapper .accordion-content span.icon-trigger:before,
.accordion-wrapper .accordion-content span.icon-trigger:after {
  content: "";
  position: absolute;
  background-color: #00a664;
  transition: transform 0.25s ease-out;
}
.accordion-wrapper .accordion-content span.icon-trigger:after {
  top: 50%;
  left: 0;
  width: 100%;
  height: 4px;
  margin-top: -2px;
}
.accordion-wrapper .accordion-content span.icon-trigger.plus-icon:before {
  top: 0;
  left: 50%;
  width: 4px;
  height: 100%;
  margin-left: -2px;
}
.accordion-wrapper .accordion-content span.icon-trigger.minus-icon:before {
  transform: rotate(90deg);
}
.accordion-wrapper .accordion-content span.icon-trigger.minus-icon:after {
  transform: rotate(180deg);
}
.accordion-wrapper .accordion-data {
  display: none;
  border-top: 1px solid #e2dfde;
  margin: 0 2rem 3rem 2rem;
  padding-top: 2.5rem;
}
.accordion-wrapper .accordion-data.active {
  display: block;
}
.accordion-wrapper .accordion-data.show-accordion-data {
  display: block!important;
}
/*
.aem-AuthorLayer-Edit {
    .accordion-wrapper {
        .accordion-data {
            display: block;
        }
    }
}
*/

