/*!
 * 	Theme Variables
 * ----------------------------------------------- */
 :root {
	--primary: #86BD42;
	--primary-rgb: 134, 189, 66;

	--secondary: #0034BB;
	--secondary-rgb: 0, 52, 187;

	--dark: #03221B;
	--dark-rgb: 3, 34, 27;

  	--body-font-family: "Work Sans", sans-serif;
  	--body-font-size: 16px;
  	--body-font-weight: 400;
  	--body-bg: #ffffff;
  	--body-color: #727272;
  	--body-line-height: 1.45;

	--heading-font-size-base: 1rem;
  	--heading-font-family: "Work Sans", sans-serif;
  	--heading-font-weight: 700;
	--heading-color: var(--dark);
	--heading-margin-bottom: 16px;
	--heading-line-height: 1.25;

  	--link-color: var(--secondary);
  	--link-hover-color: var(--dark);

	--btn-font-family: var(--body-font-family);
	--btn-font-size: var(--body-font-size);
	--btn-font-weight: 600;
	--btn-line-height: 48px;
	--btn-padding: 0 20px;
	--btn-bg: transparent;
	--btn-border-width: 1px;
	--btn-color: var(--body-color);
	--btn-border-color: transparent;
	--btn-hover-bg: transparent;
	--btn-hover-color: var(--body-color);
	--btn-hover-border-color: transparent;

	--form-control-font-family: var(--body-font-family);
	--form-control-font-size: var(--body-font-size);
	--form-control-font-weight: var(--body-font-weight);
	--form-control-line-height: 1;
	--form-control-padding: 12px 16px;
	--form-control-min-height: 48px;
	--form-control-bg: rgba(255,255,255, 0.1);
	--form-control-border-color: rgba(255,255,255, 0.1);
	--form-control-border-radius: 8px;
	--form-control-placeholder-color: #ffffff;
	--form-control-arrow: url('data:image/svg+xml,<svg fill="%23ffffff" viewBox="0 0 24 24" height="20" width="20" xmlns="http://www.w3.org/2000/svg"><path d="M11.9997 13.1714L16.9495 8.22168L18.3637 9.63589L11.9997 15.9999L5.63574 9.63589L7.04996 8.22168L11.9997 13.1714Z"></path></svg>');

	--hamburger-line-bg: var(--dark);
	--header-height: 80px;

	--paragraph-margin-bottom: 24px;
	--section-padding-y: 80px;

	--container-width: ;
	--gutter-y: ;
	--gutter-x: 32px;
}

/*!
 * 	Reset Styles
 * ----------------------------------------------- */
*,
*::before,
*::after {
	-webkit-box-sizing: border-box;
	        box-sizing: border-box;
}

html {
	font-family: sans-serif;
	line-height: 1.15;
	-webkit-text-size-adjust: 100%;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

article, aside, figcaption, figure, footer, header, hgroup, main, nav, section {
  	display: block;
}

[tabindex="-1"]:focus:not(:focus-visible) {
	outline: 0 !important;
}

hr {
	-webkit-box-sizing: content-box;
	        box-sizing: content-box;
	height: 0;
	overflow: visible;
}

body {
	margin: 0;
	padding: 0;
    font-family: var(--body-font-family);
    font-size: var(--body-font-size);
    color: var(--body-color);
    line-height: var(--body-line-height);
    font-weight: var(--body-font-weight);
    background-color: var(--body-bg);
	text-align: left;
}

img {
    max-width: 100%;
	height: initial;
}

a {
    color: var(--link-color);
    text-decoration: none;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}

a:hover {
    color: var(--link-hover-color);
}

p {
	margin-top: 0;
    margin-bottom: var(--paragraph-margin-bottom);
}

p:last-child {
    margin-bottom: 0;
}

abbr[title],
abbr[data-original-title] {
	text-decoration: underline;
	-webkit-text-decoration: underline dotted;
	text-decoration: underline dotted;
	cursor: help;
	border-bottom: 0;
	-webkit-text-decoration-skip-ink: none;
	text-decoration-skip-ink: none;
}

address {
	margin-bottom: 16px;
	font-style: normal;
	line-height: inherit;
}

ol,
ul,
dl {
	margin-top: 0;
	margin-bottom: 1rem;
}

ol ol,
ul ul,
ol ul,
ul ol {
  	margin-bottom: 0;
}

dt {
  	font-weight: 700;
}

dd {
	margin-bottom: .5rem;
	margin-left: 0;
}

blockquote {
  	margin: 0 0 1rem;
}

b,
strong {
  	font-weight: bolder;
}

small {
  	font-size: 80%;
}

sub,
sup {
	position: relative;
	font-size: 75%;
	line-height: 0;
	vertical-align: baseline;
}

sub {
  	bottom: -.25em;
}

sup {
  	top: -.5em;
}

a:not([href]):not([class]),
a:not([href]):not([class]):hover {
	color: inherit;
	text-decoration: none;
}

pre,
code,
kbd,
samp {
  font-size: 1em;
}

pre {
	margin-top: 0;
	margin-bottom: 16px;
	overflow: auto;
	-ms-overflow-style: scrollbar;
}

figure {
	margin: 0 0 16px;
}

img {
	vertical-align: middle;
	border-style: none;
}

svg {
	overflow: hidden;
	vertical-align: middle;
}

table {
  	border-collapse: collapse;
}

caption {
	padding-top: 12px;
	padding-bottom: 12px;
	text-align: left;
	caption-side: bottom;
}

th {
	text-align: inherit;
	text-align: -webkit-match-parent;
}

label {
	display: inline-block;
	margin-bottom: 0.5rem;
}

button {
  	border-radius: 0;
}

button:focus {
	outline: 1px dotted;
	outline: 5px auto -webkit-focus-ring-color;
}

input,
button,
select,
optgroup,
textarea {
	margin: 0;
	font-family: inherit;
	font-size: inherit;
	line-height: inherit;
	outline: none !important;
}

button,
input {
  	overflow: visible;
}

button,
select {
  	text-transform: none;
}

[role="button"] {
  	cursor: pointer;
}

select {
  	word-wrap: normal;
}

button,
[type="button"],
[type="reset"],
[type="submit"] {
  	-webkit-appearance: button;
}

button:not(:disabled),
[type="button"]:not(:disabled),
[type="reset"]:not(:disabled),
[type="submit"]:not(:disabled) {
  	cursor: pointer;
}

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
	padding: 0;
	border-style: none;
}

input[type="radio"],
input[type="checkbox"] {
	-webkit-box-sizing: border-box;
	        box-sizing: border-box;
	padding: 0;
}

textarea {
	overflow: auto;
	resize: vertical;
}

fieldset {
	min-width: 0;
	padding: 0;
	margin: 0;
	border: 0;
}

legend {
	display: block;
	width: 100%;
	max-width: 100%;
	padding: 0;
	margin-bottom: 8px;
	font-size: 24px;
	line-height: inherit;
	color: inherit;
	white-space: normal;
}

progress {
  	vertical-align: baseline;
}

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  	height: auto;
}

[type="search"] {
  	outline-offset: -2px;
  	-webkit-appearance: none;
}

[type="search"]::-webkit-search-decoration {
  	-webkit-appearance: none;
}

::-webkit-file-upload-button {
  	font: inherit;
  	-webkit-appearance: button;
}

output {
  	display: inline-block;
}

summary {
  	display: list-item;
  	cursor: pointer;
}

template {
  	display: none;
}

[hidden] {
  	display: none !important;
}

code {
	font-size: 87.5%;
	color: #e83e8c;
	word-wrap: break-word;
}

a > code {
  	color: inherit;
}

kbd {
	padding: 4px 8px;
	font-size: 87.5%;
	color: #fff;
	background-color: #212529;
	border-radius: 2px;
}

kbd kbd {
	padding: 0;
	font-size: 100%;
	font-weight: 700;
}

pre {
	display: block;
	font-size: 87.5%;
	color: #212529;
}

pre code {
	font-size: inherit;
	color: inherit;
	word-break: normal;
}

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
    font-family: var(--heading-font-family);
	color: var(--heading-color);
	font-weight: var(--heading-font-weight);
	margin-top: 0;
    margin-bottom: var(--heading-margin-bottom);
	line-height: var(--heading-line-height);
}

h1, .h1 {
	font-size: calc(1.425rem + 2.1vw);
}

h2, .h2 {
	font-size: calc(1.4rem + 1.5vw);
}

h3, .h3 {
	font-size: calc(1.325rem + 0.9vw);
}

h4, .h4 {
	font-size: calc(1.3rem + 0.6vw);
}

h5, .h5 {
	font-size: calc(1.275rem + 0.3vw);
}

h6, .h6 {
	font-size: calc(var(--heading-font-size-base) * 1.125);
}


/*!
 *	Common
 * ----------------------------------------------- */

#wrapper {
    position: relative;
	min-height: 100vh;
}

.section {
	padding-top: var(--section-padding-y);
	padding-bottom: var(--section-padding-y);
}

.overflow-hidden {
	overflow: hidden !important;
}

.fs-16 {
	font-size: 16px !important;
}

.fs-18 {
	font-size: 18px !important;
}

.fw-medium {
	font-weight: 500 !important;
}

.fw-semibold {
	font-weight: 600 !important;
}

.fw-bold {
	font-weight: 700 !important;
}

.fw-bolder {
	font-weight: 800 !important;
}

.text-center {
	text-align: center !important;
}

.bg-primary {
	--heading-color: #fff;
	background-color: var(--primary);
	color: #fff;
}

.bg-light {
	background-color: #FAFAFA;
}

.subtitle {
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	font-size: 16px;
	font-weight: 500;
	letter-spacing: 1px;
	text-transform: uppercase;
}

.subtitle .svg {
	width: 24px;
}

.subtitle > *:not(:first-child) {
	margin-left: 8px;
}

.text-dark {
	color: var(--dark);
}

.text-secondary {
	color: var(--secondary);
}

.text-primary {
	color: var(--primary);
}

.text-accent {
	color: #86BD42;
}


/*!
 *	Spacing
 * ----------------------------------------------- */
.ml-auto,
.mx-auto {
	margin-left: auto !important;
}

.mr-auto,
.mx-auto {
	margin-right: auto !important;
}

.mt-0,
.my-0 {
	margin-top: 0 !important;
}

.mb-0,
.my-0 {
	margin-bottom: 0 !important;
}

.mb-8 {
	margin-bottom: 8px !important;
}

.mb-16 {
	margin-bottom: 16px !important;
}

.mb-48 {
	margin-bottom: 48px !important;
} 

.mb-64 {
	margin-bottom: 64px !important;
}

.pt-0,
.py-0 {
	padding-top: 0 !important;
}

.pb-0,
.py-0 {
	padding-bottom: 0 !important;
}


/*!
 *	Grid System
 * ----------------------------------------------- */
.container,
.container-fluid {
    width: 100%;
    padding-left: calc(var(--gutter-x) * .5);
    padding-right: calc(var(--gutter-x) * .5);
}

.container *, 
.container-fluid * {
    -webkit-box-sizing: border-box;
    box-sizing: border-box; 
}

.container {
	max-width: var(--container-width);
	margin-left: auto;
	margin-right: auto;
}

.row {
	margin-top: calc(-1 * var(--gutter-y));
    margin-left: calc(-.5 * var(--gutter-x));
    margin-right: calc(-.5 * var(--gutter-x));
	display: -ms-flex;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
}

.row > * {
	-webkit-box-flex: 0;
	    -ms-flex: 0 0 auto;
	        flex: 0 0 auto;
	width: 100%;
    min-height: 1px;
	margin-top: var(--gutter-y);
    padding-left: calc(var(--gutter-x) * .5);
    padding-right: calc(var(--gutter-x) * .5);
}

.row.row--lg {
	--gutter-x: 48px;
}

.row.row--sm {
	--gutter-x: 24px;
}

.row.row--xs {
	--gutter-x: 16px;
}

.gap {
	--gutter-y: var(--gutter-x);
}

.col-1 {
    width: 8.33333333%;
}

.col-2 { 
    width: 16.66666667%;
}

.col-3 {
    width: 25%;
}

.col-4 {
    width: 33.33333333%;
}

.col-5 {
    width: 41.66666667%;
}

.col-6 {
    width: 50%;
}

.col-7 {
    width: 58.33333333%;
}

.col-8 {
    width: 66.66666667%;
}

.col-9 { 
    width: 75%;
}

.col-10 {
    width: 83.33333333%;
}

.col-11 {
    width: 91.66666667%;
}

.col-12 {
    width: 100%;
}

.no-gutter {
	--gutter-x: 0;
}

.flex-reverse {
	-webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
}

.align-items-center {
	-webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.justify-content-center {
	justify-content: center;
}


/*!
 *	Form Styling
 * ----------------------------------------------- */
.btn {
	display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
	-webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	padding: var(--btn-padding);
	color: var(--btn-color);
	background-color: var(--btn-bg);
	font-family: var(--btn-font-family);
	font-size: var(--btn-font-size);
	font-weight: var(--btn-font-weight);
	/* border: var(--btn-border-width) solid var(--btn-border-color); */
	border: none;
	cursor: pointer;
	-webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
	/* line-height: calc(var(--btn-line-height) - (var(--btn-border-width) * 2)); */
	line-height: var(--btn-line-height);
	text-align: center;
	border-radius: 8px;
	position: relative;
	overflow: hidden;
}

.btn:before {
	content: '';
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: -15%;
    right: 0;
    width: 0;
    height: 106%;
    background: #86BD42;
    -webkit-transform: skew(45deg);
        -ms-transform: skew(45deg);
            transform: skew(45deg);
    -webkit-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

.btn:hover {
	background-color: var(--btn-hover-bg);
	color: var(--btn-hover-color);
	border-color: var(--btn-hover-border-color);
}

.btn:hover:before {
    width: 100%;
    -webkit-transform: skew(0deg);
        -ms-transform: skew(0deg);
            transform: skew(0deg);
    left: 0;
}

.btn > * {
	position: relative;
	z-index: 1;
}

.btn > .svg {
	-webkit-transition: all 250ms;
	-o-transition: all 250ms;
	transition: all 250ms;
}

.btn:hover > .svg {
	-webkit-transform: translateX(3px);
	    -ms-transform: translateX(3px);
	        transform: translateX(3px);
}

.btn > *:not(:first-child) {
	margin-left: 8px;
}

.btn.btn--lg {
	--btn-font-size: 16px;
	--btn-padding: 0 24px;
	--btn-line-height: 48px;
}

.btn.btn--icon {
	padding: 0;
	width: var(--btn-line-height);
	height: var(--btn-line-height);
}

.btn.btn--primary {
	--btn-bg: var(--primary);
	--btn-color: #ffffff;
	--btn-hover-bg: var(--primary);
	--btn-hover-color: var(--secondary);
}

.btn.btn--info {
	--btn-bg: #0D99FF;
	--btn-color: #ffffff;
	--btn-hover-bg: #0D99FF;
	--btn-hover-color: var(--secondary);
}

.btn.btn--blue {
	--btn-bg: var(--secondary);
	--btn-color: #ffffff;
	--btn-hover-bg: var(--secondary);
	--btn-hover-color: #ffffff;
}

.btn.btn--white {
	--btn-bg: #ffffff;
	--btn-color: var(--secondary);
	--btn-hover-bg: var(--btn-bg);
	--btn-hover-color: #ffffff;
}

.btn.btn--hover-dark {
	--btn-hover-color: #ffffff;
}

.btn.btn--hover-dark:before {
	background-color: var(--secondary);
}

#intro .btn {
	--btn-hover-color: var(--secondary);
}

#intro .btn:before {
	background: #ffffff;
}

.form-control {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	width: 100%;
	border: 1px solid var(--form-control-border-color);
	min-height: var(--form-control-min-height);
	padding: var(--form-control-padding);
	background-color: var(--form-control-bg);
	font-family: var(--form-control-font-family);
	font-size: var(--form-control-font-size);
	color: #ffffff;
	border-radius: var(--form-control-border-radius);
	line-height: var(--form-control-line-height);
}

.form-control:focus {
	--form-control-border-color: #ffffff;
}

.form-control::-webkit-input-placeholder {
	color: var(--form-control-placeholder-color);
	opacity: 1;
}

.form-control::-moz-placeholder {
	color: var(--form-control-placeholder-color);
	opacity: 1;
}

.form-control:-ms-input-placeholder {
	color: var(--form-control-placeholder-color);
	opacity: 1;
}

.form-control::-ms-input-placeholder {
	color: var(--form-control-placeholder-color);
	opacity: 1;
}

.form-control::placeholder {
	color: var(--form-control-placeholder-color);
	opacity: 1;
}

.form-control::-webkit-input-placeholder {
	color: var(--form-control-placeholder-color);
	opacity: 1;
}

.form-control::-moz-placeholder {
	color: var(--form-control-placeholder-color);
	opacity: 1;
}

.form-control::-ms-placeholder {
	color: var(--form-control-placeholder-color);
	opacity: 1;
}

select.form-control {
	background-image: var(--form-control-arrow);
	background-position: center right 16px;
	background-repeat: no-repeat;
	padding-right: 42px;
}

.form-group {
	margin-bottom: 16px;
	position: relative;
}

.select-control {
	display: none;
}

.select-box {
	position: relative;
}

.select-box .select-box__control {
	cursor: pointer;
	position: relative;
	padding-right: 32px;
	white-space: nowrap;
	-o-text-overflow: ellipsis;
	   text-overflow: ellipsis;
	overflow: hidden;
	min-width: 0;
	line-height: 22px;
	color: #ffffff;
}

.select-box .select-box__control:after {
	content: '';
	display: block;
	position: absolute;
	right: 8px;
	top: 50%;
	margin-top: -10px;
	width: 20px;
	height: 20px;
	background: var(--form-control-arrow) center no-repeat;
}

.select-box .select-box__options {
	position: absolute;
	display: none;
	left: 0;
	top: 100%;
	width: 100%;
	margin: 0;
	padding: 12px 0;
	list-style: none;
	z-index: 999;
	background-color: #fff;
	font-size: 14px;
	-webkit-box-shadow: 0 1px 8px 0 rgba(0,0,0, 0.1);
	        box-shadow: 0 1px 8px 0 rgba(0,0,0, 0.1);
	max-height: 280px;
	overflow: auto;
	text-align: left;
}

.select-box .select-box__options.show {
	display: block;
}

.select-box .select-box__options li {
	padding: 8px 16px;
	cursor: pointer;
	white-space: nowrap;
	-o-text-overflow: ellipsis;
	   text-overflow: ellipsis;
	overflow: hidden;
	color: var(--dark);
}

.select-box .select-box__options li:hover {
	background-color: #f5f5f5;
}

.form-group {
	margin-bottom: 32px;
	position: relative;
}

.form-error {
	font-size: 12px;
	margin-top: 8px;
}

#form_message {
	margin-top: 16px;
	text-align: center;
}

#loader {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1001;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	background-color: #ffffff;
}

.loader-container {
	width: 120px;
	height: 120px;
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
}

.loader-container:before {
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	border-radius: 120px;
	border: 1px solid transparent;
    border-color: transparent var(--primary) transparent var(--primary);
	-webkit-animation: rotateLoader 1.5s linear 0s infinite normal;
	        animation: rotateLoader 1.5s linear 0s infinite normal;
    -webkit-transform-origin: 50% 50%;
        -ms-transform-origin: 50% 50%;
            transform-origin: 50% 50%;
}

.loader-container > * {
	max-width: 56px;
	margin-top: 8px;
}

@-webkit-keyframes rotateLoader {
	to {
		-webkit-transform: rotate(360deg);
		        transform: rotate(360deg);
	}
}

@keyframes rotateLoader {
	to {
		-webkit-transform: rotate(360deg);
		        transform: rotate(360deg);
	}
}

/*!
 *	Cursor
 * ----------------------------------------------- */
.cb-cursor {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 150;
	contain: layout style size;
	pointer-events: none;
	will-change: transform;
	-webkit-transition: opacity 0.3s, color 0.4s;
	-o-transition: opacity 0.3s, color 0.4s;
	transition: opacity 0.3s, color 0.4s;
}

.cb-cursor:before {
	content: "";
	position: absolute;
	top: -24px;
	left: -24px;
	display: block;
	width: 48px;
	height: 48px;
	-webkit-transform: scale(0);
	-ms-transform: scale(0);
	transform: scale(0);
	border-radius: 50%;
	-webkit-transition: opacity 0.1s, -webkit-transform 0.3s ease-in-out;
	transition: opacity 0.1s, -webkit-transform 0.3s ease-in-out;
	-o-transition: opacity 0.1s, -o-transform 0.3s ease-in-out;
	-o-transition: transform 0.3s ease-in-out, opacity 0.1s;
	transition: transform 0.3s ease-in-out, opacity 0.1s;
	transition: transform 0.3s ease-in-out, opacity 0.1s, -webkit-transform 0.3s ease-in-out;
	background: var(--secondary);
}

.cb-cursor-text {
	position: absolute;
	top: -18px;
	left: -18px;
	width: 36px;
	height: 36px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-transform: scale(0) rotate(10deg);
	-ms-transform: scale(0) rotate(10deg);
	transform: scale(0) rotate(10deg);
	opacity: 0;
	color: white;
	font-size: 16px;
	line-height: 20px;
	text-align: center;
	letter-spacing: -0.01em;
	-webkit-transition: opacity 0.4s, -webkit-transform 0.3s;
	transition: opacity 0.4s, -webkit-transform 0.3s;
	-o-transition: opacity 0.4s, -o-transform 0.3s;
	-o-transition: opacity 0.4s, transform 0.3s;
	transition: opacity 0.4s, transform 0.3s;
	transition: opacity 0.4s, transform 0.3s, -webkit-transform 0.3s;
}

@supports (mix-blend-mode: exclusion) {
	.cb-cursor.-exclusion, .cb-cursor.-opaque {
		mix-blend-mode: exclusion;
	}
}

@supports (mix-blend-mode: exclusion) {
	.cb-cursor.-exclusion:before, .cb-cursor.-opaque:before {
		background: white;
	}
}

.cb-cursor.-normal, .cb-cursor.-text {
	mix-blend-mode: normal;
}

.cb-cursor.-normal:before, .cb-cursor.-text:before {
	background: currentColor;
}

.cb-cursor.-inverse {
	color: white;
}

.cb-cursor.-visible:before {
	-webkit-transform: scale(0.2);
	-ms-transform: scale(0.2);
	transform: scale(0.2);
}

.cb-cursor.-visible.-active:before {
	-webkit-transform: scale(0.23);
	-ms-transform: scale(0.23);
	transform: scale(0.23);
	-webkit-transition-duration: 0.2s;
	-o-transition-duration: 0.2s;
	transition-duration: 0.2s;
}

.cb-cursor.-pointer:before {
	-webkit-transform: scale(0);
	-ms-transform: scale(0);
	transform: scale(0);
}

.cb-cursor.-text:before {
	background: #000;
	opacity: 0.80;
	-webkit-backdrop-filter: blur(10);
	        backdrop-filter: blur(10);
	-webkit-transform: scale(1.7);
	-ms-transform: scale(1.7);
	transform: scale(1.7);
}

.cb-cursor.-text .cb-cursor-text {
	opacity: 1;
	-webkit-transform: scale(1);
	-ms-transform: scale(1);
	transform: scale(1);
}

.cb-cursor.-text.-active:before {
	-webkit-transform: scale(1.6);
	-ms-transform: scale(1.6);
	transform: scale(1.6);
	-webkit-transition-duration: 0.2s;
	-o-transition-duration: 0.2s;
	transition-duration: 0.2s;
}

.cb-cursor.-opaque:before {
	-webkit-transform: scale(1.32);
	-ms-transform: scale(1.32);
	transform: scale(1.32);
}

.cb-cursor.-opaque.-active:before {
	-webkit-transform: scale(1.2);
	-ms-transform: scale(1.2);
	transform: scale(1.2);
}

.cb-cursor.-lg:before {
	-webkit-transform: scale(2);
	-ms-transform: scale(2);
	transform: scale(2);
}

.cb-cursor.-hidden:before {
	-webkit-transform: scale(0);
	-ms-transform: scale(0);
	transform: scale(0);
}

.-color-red {
	color: red;
}

.-color-green {
	color: #51c67d;
}

.cb-demo {
	background: #fff;
}

.cb-demo-content {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	height: 100vh;
}

.cb-demo-container {
	padding: 0 20px;
}

@media (min-width: 1600px) {
	.cb-demo-container {
		padding: 0 120px;
	}
}

.cb-demo-row {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	text-align: center;
	margin: 30px 0;
}

@media (min-width: 1600px) {
	.cb-demo-row {
		margin: 60px 0;
	}
}

.cb-demo-item {
	position: relative;
	-webkit-box-flex: 1;
	-ms-flex: 1;
	flex: 1;
	padding: 50px 30px;
	margin: 0 20px;
	color: #000;
}

@media (min-width: 1600px) {
	.cb-demo-item {
		padding: 90px 30px;
		margin: 0 30px;
	}
}

.cb-demo-item-title {
	position: relative;
	margin: 0 0 25px 0;
	font-size: 30px;
	font-weight: bold;
}

.cb-demo-item-text {
	position: relative;
	max-width: 70%;
	margin: 0 auto;
	color: rgba(0, 0, 0, 0.5);
	font-size: 16px;
	font-weight: 300;
	line-height: 150%;
}

.cb-demo-item:before {
	content: "";
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	border-radius: 30px;
	background: #f8f8f8;
	-webkit-transition: -webkit-box-shadow 0.2s;
	transition: -webkit-box-shadow 0.2s;
	-o-transition: box-shadow 0.2s;
	transition: box-shadow 0.2s;
	transition: box-shadow 0.2s, -webkit-box-shadow 0.2s;
}


/*!
 *	Header
 * ----------------------------------------------- */
#header {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 100;
	padding-top: 16px;
	padding-bottom: 16px;
	-webkit-transition: all 0.35s;
	-o-transition: all 0.35s;
	transition: all 0.35s;
	background-color: #ffffff;
	z-index: 1000;
}

.header-container {
	display: -ms-flex;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
}

.navbar {
	display: none;
	position: absolute;
	top: 100%;
	left: 0;
	width: 100%;
	background-color: #ffffff;
	padding-top: 32px;
	padding-bottom: 32px;
	z-index: 100;
	max-height: calc(100vh - var(--header-height));
	overflow: auto;
}

.navbar > ul {
	display: -ms-flex;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	max-width: var(--container-width);
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	margin: 0 auto;
	padding: 0 calc(.5 * var(--gutter-x));
	list-style: none;
}

.navbar > ul > li:not(:first-child) {
	margin-top: 24px;
}

.navbar > ul > li > a {
	--link-color: var(--dark);
	--link-hover-color: var(--link-color);
	display: inline-block;
	font-weight: 500;
}

.menu-item-has-children,
.menu-item-has-children > a {
	position: relative;
}

.menu-item-has-children {
	display: -ms-flex;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	cursor: pointer;
}

.sub-menu-handler {
	margin-left: auto;
	display: block;
	width: 20px;
	height: 20px;
	background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" height="20" width="20" viewBox="0 0 24 24" fill="%2303221B"><path d="M11.9999 13.1714L16.9497 8.22168L18.3639 9.63589L11.9999 15.9999L5.63599 9.63589L7.0502 8.22168L11.9999 13.1714Z"></path></svg>');
}

.menu-item-has-children > .sub-menu-handler.active {
	-webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
}

.sub-menu {
	display: none;
	padding-top: 16px;
	-webkit-box-flex: 0;
	    -ms-flex: 0 0 auto;
	        flex: 0 0 auto;
	width: 100%;
	padding: 16px 0 0;
	margin: 0;
	list-style: none;
}

.sub-menu li a {
	display: -ms-flex;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	padding: 8px 16px;
	border-radius: 8px;
	font-size: 14px;
	color: rgba(0, 0, 0, 0.7);
	white-space: nowrap;
}

.sub-menu li a:hover {
	background-color: #86BD42;
	color: #ffffff;
}

#hamburger {
	background-color: transparent;
	border: none;
	position: relative;
	margin-left: auto;
	width: 24px;
	height: 20px;
	cursor: pointer;
	padding: 0;
}

#hamburger span:before,
#hamburger span:after {
	content: '';
}

#hamburger span,
#hamburger span:before,
#hamburger span:after {
	position: absolute;
	width: 24px;
	height: 2px;
	background-color: var(--hamburger-line-bg);
	display: block;
}

#hamburger span,
#hamburger span:after {
	top: 9px;
}

#hamburger span:before {
	top: -9px;
}

#hamburger.active span {
	background-color: transparent;
}

#hamburger.active span:after,
#hamburger.active span:before {
	top: 0;
}

#hamburger.active span:before {
	-webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

#hamburger.active span:after {
	-webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.brand {
	display: inline-block;
	max-width: 56px;
}

.hero {
	--heading-color: #fff;
	color: #fff;
	min-height: 100vh;
	background-size: cover;
	background-attachment: fixed;
	background-position: top right;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	padding-top: 100px;
	padding-bottom: 100px;
	font-size: 20px;
	position: relative;
}

.hero:before,
#inner_banner:before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(var(--secondary-rgb), 0.25);
}

.hero .container {
	position: relative;
}

#intro .swiper-pagination {
	--swiper-pagination-bullet-size: 12px;
	--swiper-pagination-color: var(--secondary);
	--swiper-pagination-bullet-inactive-color: var(--secondary);
	--swiper-pagination-bullet-inactive-opacity: 0.15;
	bottom: 40px;
	text-align: left;
	padding-left: 16px;
	padding-right: 16px;
	max-width: var(--container-width);
	left: 50%;
	-webkit-transform: translateX(-50%);
	    -ms-transform: translateX(-50%);
	        transform: translateX(-50%);
}

.section.section--about {
	background: url("../images/hero/section-bg-1.png") no-repeat;
	background-position: bottom -30px right -90px;
	background-size: 130% auto;
}

.environment-image {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
	position: relative;
}

.environment-image .environment-image__min,
.environment-image .environment-image__hero {
    width: 100%;
    border-radius: 20px;
}

.environment-image .environment-image__min img, 
.environment-image .environment-image__hero img {
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    border-radius: 20px;
}

.environment-image .environment-image__hero {
	max-width: 400px;
    margin-right: -80px;
}

.environment-image .environment-image__hero img {
    aspect-ratio: 1 / 1.5;
}

.environment-image .environment-image__min {
	border: 4px solid #ffffff;
	max-width: 280px;
	position: relative;
	z-index: 2;
}

.environment-image .environment-image__min img {
    aspect-ratio: 1 / 1.1;
}

.environment-image .environment-image__circle {
	position: relative;
    display: block;
	margin: -50px auto 0;
    z-index: 2;
	z-index: 2;
	border: 4px solid #ffffff;
	border-radius: 50%;
	max-width: 100px;
}

.environment-image .environment-image__circle .circle {
    -webkit-animation: rotateLoader 20s infinite linear;
            animation: rotateLoader 20s infinite linear;
	position: relative;
}

.environment-image .environment-image__circle .circle svg {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 100%;
	height: 100%;
	-webkit-transform: translate(-50%, -50%);
	    -ms-transform: translate(-50%, -50%);
	        transform: translate(-50%, -50%);
}

.environment-image .environment-image__circle .circle svg text {
	font-size: 8px;
	font-weight: 500;
	fill: #ffffff;
	letter-spacing: 1px;
}

.about-collage {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	grid-template-rows: repeat(2, 1fr);
	gap: 24px;
	height: 280px;
}

.about-collage > * {
	border-radius: 20px;
	overflow: hidden;
}

.about-collage .about-collage__hero {	
	grid-area: 1 / 1 / 3 / 4;
}

.about-collage .about-collage__min { 
	grid-area: 1 / 4 / 2 / 6; 
}

.about-collage .about-collage__circle { 
	grid-area: 2 / 4 / 3 / 6; 
	display: -webkit-box; 
	display: -ms-flexbox; 
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
}

.about-collage .about-collage__min > *,
.about-collage .about-collage__hero > * {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	   object-fit: cover;
	border-radius: 20px;
}

.about-collage .about-collage__circle .circle {
	max-width: 180px;
	max-height: 180px;
	width: 100%;
	height: 100%;
    -webkit-animation: rotateLoader 20s infinite linear;
            animation: rotateLoader 20s infinite linear;
	position: relative;
}

.about-collage .about-collage__circle .circle svg {
	position: absolute;
	top: 2.5%;
	left: 2.5%;
	width: 95%;
	height: 95%;	
}

.about-collage .about-collage__circle .circle svg text {
	font-size: 8px;
	font-weight: 500;
	fill: #ffffff;
	letter-spacing: 1px;
}

#marquee {
	--gap: 32px;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
    gap: var(--gap);
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
	font-size: 32px;
	font-weight: 500;
	background-color: var(--secondary);
	line-height: 32px;
	color: #ffffff;
}

.marquee-item {
	-ms-flex-negative: 0;
	    flex-shrink: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: var(--gap);
    -webkit-animation: scroll 60s linear infinite;
            animation: scroll 60s linear infinite;
	background-color: var(--secondary);
	padding-top: 20px;
	padding-bottom: 20px;
	-webkit-animation: marquee 60s linear infinite;
	        animation: marquee 60s linear infinite;
}

.marquee-item > span {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	gap: var(--gap);
}

@-webkit-keyframes marquee {
	0% {
		-webkit-transform: translateX(0);
		        transform: translateX(0);
	}
	100% {
		-webkit-transform: translateX(calc(-100% - var(--gap)));
		        transform: translateX(calc(-100% - var(--gap)));
	}
}

@keyframes marquee {
	0% {
		-webkit-transform: translateX(0);
		        transform: translateX(0);
	}
	100% {
		-webkit-transform: translateX(calc(-100% - var(--gap)));
		        transform: translateX(calc(-100% - var(--gap)));
	}
}

.swiper-slide {
	height: initial;
}

.card {
	--highlight-color: #86BD42;
	--card-padding: 32px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
	height: 100%;
	background-color: #ffffff;
	border-radius: 20px;
    padding: var(--card-padding);
    overflow: hidden;
	position: relative;
	border: 1px solid #03221B1A;
}

.card:before {
	content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--highlight-color);
    border-radius: 500px 500px 0 0;
    height: 0;
    width: 100%;
    -webkit-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
    z-index: 1;
}

.card:not(.card--sm):hover {
	color: #ffffff;
}

.card:hover:before {
    height: 100%;
    border-radius: 0;
}

.card:hover .card__icon {
	color: #000000;
	background: #ffffff;
}


.card:not(.card--sm):hover h3,
.card:not(.card--sm):hover .card__foot {
	color: #ffffff;
}

.card .card__image {
	position: relative;
	margin: calc(-1 * var(--card-padding)) calc(-1 * var(--card-padding)) 0;
	background-color: #f5f5f5;
}

.card .card__image:before {
	content: '';
	display: block;
	padding-bottom: calc(9 / 16 * 100%);
}

.card .card__image > * {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	   object-fit: cover;
}

.card .card__body {
	-webkit-box-flex: 1;
	    -ms-flex: 1;
	        flex: 1;	
}

.card .card__foot,
.card .card__body {
	position: relative;
	z-index: 2;
}

.card .card__foot {
	color: var(--dark);
	padding-top: 24px;
}

.card .card__icon {
    height: 72px;
    width: 72px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    background-color: var(--highlight-color);
    border-radius: 50%;
    margin-bottom: 32px;
    -webkit-transition: color 0.5s ease-in-out, background-color 0.5s ease-in-out;
    -o-transition: color 0.5s ease-in-out, background-color 0.5s ease-in-out;
    transition: color 0.5s ease-in-out, background-color 0.5s ease-in-out;
	color: #ffffff;
}

.card .card__icon > * {
	width: 100% !important;
	max-width: 40px;
	max-height: 40px;
}

.card h3 {
	font-size: 24px;
}

.card a,
.card a:hover {
	color: inherit;
}

.card.card--green {
	--highlight-color: #86BD42;
}

.card.card--green .card__icon {
	background-color: transparent;
	color: var(--highlight-color);
}

.card.card--green:hover .card__icon {
	color: #ffffff;
}

.card.card--green .card__icon > * {
	max-width: 64px;
	max-height: 64px;
}

.card.card--green .card__icon > .svg.svg--stroke {
	stroke: #ffffff;
}

.card.card--green:hover .card__icon > .svg.svg--stroke {
	stroke: var(--highlight-color);
}

.card.card--sm {
	--card-padding: 24px;
}

.card.card--sm .card__body {
	padding-top: var(--card-padding);
}

.card.card--sm:before {
	display: none;
}

.slider .swiper-pagination.swiper-pagination--green {
	--swiper-pagination-color: #86BD42;
}

.slider .swiper-pagination {
	--swiper-pagination-color: var(--secondary);
	--swiper-pagination-bullet-border-radius: 8px;
	position: relative;
	left: initial;
	top: initial;
	bottom: initial;
	margin-top: 32px;
}

.slider .swiper-pagination-bullet {
	-webkit-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

.slider .swiper-pagination-bullet.swiper-pagination-bullet-active {
	width: 24px;
}

.serve-card .serve-card__hero {
    border-radius: 16px;
	overflow: hidden;
	position: relative;
}

.serve-card .serve-card__hero:before {
	content: '';
	display: block;
	padding-bottom: calc(3 / 4 * 100%);
}

.serve-card .serve-card__hero > * {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	   object-fit: cover;
	-webkit-transition: all 0.4s ease-in-out;
	-o-transition: all 0.4s ease-in-out;
	transition: all 0.4s ease-in-out;
}

.serve-card .serve-card__content {
	margin-top: 8px;
	position: relative;
	padding-top: 24px;
	text-align: center;
}

.serve-card .serve-card__content h3 {
	font-size: 18px;
	font-weight: 600;
}

.serve-card .serve-card__content h3,
.serve-card .serve-card__content p {
    position: relative;
    z-index: 1;
}

.serve-card .serve-card__number {
	position: absolute;
    top: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
    font-size: 72px;
    font-weight: 700;
    line-height: 1;
    color: #FAFAFA;
    background: #03221B1A;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-stroke: 2px transparent;
    -webkit-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

.serve-card:hover .serve-card__number {
    color: transparent;
}

.serve-card:hover .serve-card__hero > * {
	-webkit-transform: scale(1.1);
	    -ms-transform: scale(1.1);
	        transform: scale(1.1);
}

.contact-form {
	--heading-color: #ffffff;
	background-color: var(--secondary);
	padding: 48px 32px;
	border-radius: 24px;
	color: #ffffff;
	text-align: center;
}

.contact-form .subtitle {
	margin-bottom: 16px;
}

.contact-form .btn {
	width: 100%;
}

.wm-slider {
	max-width: 480px;
}

.wm-img img {
	border-radius: 16px;
	aspect-ratio: 4 / 3;
	object-fit: cover;
}

/* .wm-img {
	border-radius: 16px;
	overflow: hidden;
	position: relative;
}

.wm-img:before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: #000000;
	opacity: 0.5;
}

.wm-img .wm-img__text {
	position: absolute;
	top: 50%;
	left: 0;
	right: 0;
	-webkit-transform: translateY(-50%);
	    -ms-transform: translateY(-50%);
	        transform: translateY(-50%);
	color: #ffffff;
	z-index: 2;
	font-size: 20px;
	font-weight: 500;
	padding: 16px;
	text-align: center;
} */

.ww-hero {
	border-radius: 32px;
	overflow: hidden;
}

.ww-hero > * {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	   object-fit: cover;
}

.accordion .accordion__item {
	position: relative;
    border: 1px solid #03221B1A;
    border-radius: 8px;
    padding: 0;
}

.accordion .accordion__item:not(:first-child) {
	margin-top: 24px;
}

.accordion .accordion__head {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	padding: 16px 20px;
	font-size: 20px;
	font-weight: 500;
	color: var(--dark);
	cursor: pointer;
}

.accordion .accordion__title {
	-webkit-box-flex: 1;
	    -ms-flex: 1;
	        flex: 1;
	padding-right: 16px;
}

.accordion .accordion__arrow {
	width: 20px;
	height: 20px;
	border-radius: 6px;
	background-color: var(--secondary);
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	color: #ffffff;
	-webkit-transition: all 0.4s ease;
	-o-transition: all 0.4s ease;
	transition: all 0.4s ease;
}

.accordion .accordion__arrow > * {
	width: 12px;
	height: 12px;
}

.accordion .accordion__head.active .accordion__arrow {
	-webkit-transform: rotate(90deg);
	    -ms-transform: rotate(90deg);
	        transform: rotate(90deg);
}

.accordion .accordion__body {
	max-height: 0;
  	-webkit-transition: max-height 0.4s ease;
  	-o-transition: max-height 0.4s ease;
  	transition: max-height 0.4s ease;
    overflow: hidden;
}

.accordion .accordion__body.show {
	height: auto;
}

.accordion .accordion__content {
	border-top: 1px solid #03221B1A;
	padding: 16px 20px;
}


/*!
 *	Inner pages
 * ----------------------------------------------- */

#inner_banner {
	--heading-color: #ffffff;
	color: #ffffff;
	position: relative;
    background-position: center;
	background-size: cover;
    padding: 230px 0px 120px;
	/* background-attachment: fixed; */
}

#inner_banner:before {
	z-index: 2;
}

#inner_banner .container {
	position: relative;
	z-index: 3;
}

#inner_banner .image-collage {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
}

#inner_banner .image-collage > * {
	-webkit-box-flex: 1;
	    -ms-flex: 1;
	        flex: 1;
}

#inner_banner .image-collage .image-collage__item > * {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	   object-fit: cover;
}

.epr-image {
	position: -webkit-sticky;
	position: sticky;
	top: var(--image-top);
}

.epr-col {
	display: none;
}

.epr-title {
	text-align: center;
}

.epr-card {
	background-color: #f5f5f5;
	padding: 32px;
	border-radius: 24px;
	margin-bottom: 24px;
	color: #3b3838;
}

.steps > * {
	position: relative;
}

.steps .steps__num,
.steps .steps__icon {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	margin: 0 auto 16px;
	width: 64px;
	height: 64px;
	background-color: var(--primary);
	font-size: 20px;
	font-weight: 600;
	color: #ffffff;
	position: relative;
	z-index: 2;
	border-radius: 50%;
}

.steps .steps__icon img {
	max-width: 50%;
	max-height: 50%;
}

.steps .steps__number {
	position: absolute;
    top: 64px;
    left: 50%;
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
    font-size: 72px;
    font-weight: 700;
    line-height: 1;
    color: #FAFAFA;
    background: #03221B1A;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-stroke: 2px transparent;
    -webkit-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

.steps > *:hover .steps__number {
    color: transparent;
}

.steps .steps__content {
	position: relative;
	z-index: 1;
}

.card.card--epr {
	color: var(--body-color) !important;
}

.card.card--epr:before {
	display: none;
}

.card.card--epr:not(:first-child) {
	margin-top: 32px;
}

.card.card--epr h3 {
	color: var(--dark) !important;
}

.accordion ol,
.accordion ul,
.card.card--epr ol,
.card.card--epr ul {
	padding-left: 20px;
	margin: 0;
}

.card.card--epr ol:not(:last-child),
.card.card--epr ul:not(:last-child) {
	margin-bottom: 16px;
}

.accordion li:not(:first-child),
.card.card--epr li:not(:first-child) {
	margin-top: 8px;
}

.card.card--epr .card__image  {
	overflow: hidden;
	border-radius: 24px;
	margin: 0 0 16px;
}

.card.card--epr .card__image:before {
	content: '';
	display: block;
	padding-bottom: calc(3 / 4 * 100%);
}

.epr-slider {
	text-align: center;
}


/*!
 *	Footer styles
 * ----------------------------------------------- */

#sticky_brand {
	position: fixed;
	bottom: 8px;
	right: 8px;
	background-color: #fff;
	border-radius: 50%;
	z-index: 101;
	width: 80px;
	height: 80px;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

#sticky_brand .brand {
	max-width: 40px;
}

#footer {
	--link-color: var(--dark);
	--link-hover-color: var(--primary);
	--heading-color: var(--dark);
	color: var(--dark);
	position: relative;
	background-color: #f5f5f5;
}

#footer h5 {
	margin-bottom: 4px;
	font-weight: 600;
}

#footer .container {
	position: relative;
	z-index: 2;
}

#footer .brand {
    max-width: 80px;
	margin-bottom: 16px;
}

.footer-list {
	margin: 0;
	padding: 0;
	list-style: none;
}

.footer-list li:not(:last-child) {
    margin-bottom: 16px;
}

.contact-info {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: start;
	    -ms-flex-align: start;
	        align-items: flex-start;
}

.contact-info:not(:last-child) {
	margin-bottom: 20px;
}

.contact-info .contact-info__icon {
	-webkit-box-flex: 0;
	    -ms-flex: 0 0 auto;
	        flex: 0 0 auto;
	width: 16px;
}

.contact-info .contact-info__text {
	padding-left: 12px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
}

.last-footer {
	margin-top: 48px;
	font-size: 12px;
}

.last-footer .col-lg-5,
.last-footer .copy span {
	opacity: 0.5;
}

/*!
 *	Animation
 * ----------------------------------------------- */
.text-reveal-1 .char {
	opacity: 0;
	-webkit-transform: translateX(50px);
	    -ms-transform: translateX(50px);
	        transform: translateX(50px);
	display: inline-block;
}

.text-reveal-1 .word {
	display: inline-block;
}

.reveal-image {
	overflow: hidden;
	border-radius: inherit;
}

.reveal-image img {
    -webkit-transform-origin: left;
        -ms-transform-origin: left;
            transform-origin: left;
}


/*!
 *	Responsive
 * ----------------------------------------------- */
@media(min-width: 480px) {
	.col-xs-1 {
		width: 8.33333333%;
	}
	
	.col-xs-2 { 
		width: 16.66666667%;
	}
	
	.col-xs-3 {
		width: 25%;
	}
	
	.col-xs-4 {
		width: 33.33333333%;
	}
	
	.col-xs-5 {
		width: 41.66666667%;
	}
	
	.col-xs-6 {
		width: 50%;
	}
	
	.col-xs-7 {
		width: 58.33333333%;
	}
	
	.col-xs-8 {
		width: 66.66666667%;
	}
	
	.col-xs-9 { 
		width: 75%;
	}
	
	.col-xs-10 {
		width: 83.33333333%;
	}
	
	.col-xs-11 {
		width: 91.66666667%;
	}
	
	.col-xs-12 {
		width: 100%;
	}

	.about-collage {
		height: 380px;
	}

	.contact-form {
		padding: 48px;
	}

	.environment-image .environment-image__hero {
		margin-right: -120px;
	}
}

@media(min-width: 576px) {
	body {
		--container-width: 540px;
		--section-padding-y: 100px;
	}

	.col-sm-1 {
		width: 8.33333333%;
	}
	
	.col-sm-2 { 
		width: 16.66666667%;
	}
	
	.col-sm-3 {
		width: 25%;
	}
	
	.col-sm-4 {
		width: 33.33333333%;
	}
	
	.col-sm-5 {
		width: 41.66666667%;
	}
	
	.col-sm-6 {
		width: 50%;
	}
	
	.col-sm-7 {
		width: 58.33333333%;
	}
	
	.col-sm-8 {
		width: 66.66666667%;
	}
	
	.col-sm-9 { 
		width: 75%;
	}
	
	.col-sm-10 {
		width: 83.33333333%;
	}
	
	.col-sm-11 {
		width: 91.66666667%;
	}
	
	.col-sm-12 {
		width: 100%;
	}
}

@media(min-width: 768px) {
	body {
		--container-width: 720px;
	}

	.col-md-1 {
		width: 8.33333333%;
	}
	
	.col-md-2 { 
		width: 16.66666667%;
	}
	
	.col-md-3 {
		width: 25%;
	}
	
	.col-md-4 {
		width: 33.33333333%;
	}
	
	.col-md-5 {
		width: 41.66666667%;
	}
	
	.col-md-6 {
		width: 50%;
	}
	
	.col-md-7 {
		width: 58.33333333%;
	}
	
	.col-md-8 {
		width: 66.66666667%;
	}
	
	.col-md-9 { 
		width: 75%;
	}
	
	.col-md-10 {
		width: 83.33333333%;
	}
	
	.col-md-11 {
		width: 91.66666667%;
	}
	
	.col-md-12 {
		width: 100%;
	}

	.navbar {
		margin-top: 0;
		margin-left: auto;
		position: relative;
		top: initial;
		width: initial;
		background-color: transparent;
		padding: 0;
		border: none;
		display: block;
		max-height: initial;
		overflow: visible;
		border-radius: 0;
	}

	.navbar > ul {
		-webkit-box-orient: horizontal;
		-webkit-box-direction: normal;
		-ms-flex-direction: row;
		flex-direction: row;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
		padding: 0;
		margin: 0;
		max-width: initial;
	}

	.navbar > ul > li:not(:first-child) {
		margin-left: 40px;
		margin-top: initial;
	}

	.navbar > ul > li > a {
		padding-top: 8px;
		padding-bottom: 8px;
		position: relative;
	}

	.navbar > ul > li > a:after,
	.navbar > ul > li > a:before {
		content: '';
		position: absolute;
		bottom: 0;
		width: 0;
		height: 2px;
		-webkit-transition: all 250ms;
		-o-transition: all 250ms;
		transition: all 250ms;
		background-color: currentColor;
	}

	.navbar > ul > li > a:after {
		right: 50%;
	}

	.navbar > ul > li > a:before {
		left: 50%;
	}

	.navbar > ul > li > a:hover:after,
	.navbar > ul > li > a:hover:before {
		width: 50%;
	}

	.sub-menu-handler {
		margin-left: 4px;
	}

	.menu-item-has-children:hover .sub-menu {
		opacity: 1;
		visibility: visible;
		-webkit-transition: all .5s;
		-o-transition: all .5s;
		transition: all .5s;
	}
	
	.sub-menu {
		position: absolute;
		top: 100%;
		left: 50%;
		min-width: 220px;
		width: initial;
		-webkit-box-shadow: 0 0 20px 4px rgba(0, 0, 0, 0.1);
		box-shadow: 0 0 20px 4px rgba(0, 0, 0, 0.1);
		background-color: #fff;
		-webkit-transform: translateX(-50%);
		-ms-transform: translateX(-50%);
		transform: translateX(-50%);
		padding: 16px;
		border-radius: 8px;
		opacity: 0;
		visibility: hidden;
		display: block;
	}

	#hamburger {
		display: none;
	}

	.about-collage {
		height: 420px;
	}

	.contact-form {
		padding: 64px;
		border-radius: 32px;
	}

	.environment-image .environment-image__circle {
		margin-top: -70px;
		max-width: 140px;
	}

	.epr-card {
		padding: 40px;
		border-radius: 32px;
	}

	#sticky_brand {
		bottom: 16px;
		right: 16px;
		width: 100px;
		height: 100px;
	}

	#sticky_brand .brand {
		max-width: 54px;
	}
}

@media(min-width: 992px) {
	body {
		--container-width: 960px;
	}

	.col-lg-1 {
		width: 8.33333333%;
	}
	
	.col-lg-2 { 
		width: 16.66666667%;
	}
	
	.col-lg-3 {
		width: 25%;
	}
	
	.col-lg-4 {
		width: 33.33333333%;
	}
	
	.col-lg-5 {
		width: 41.66666667%;
	}
	
	.col-lg-6 {
		width: 50%;
	}
	
	.col-lg-7 {
		width: 58.33333333%;
	}
	
	.col-lg-8 {
		width: 66.66666667%;
	}
	
	.col-lg-9 { 
		width: 75%;
	}
	
	.col-lg-10 {
		width: 83.33333333%;
	}
	
	.col-lg-11 {
		width: 91.66666667%;
	}
	
	.col-lg-12 {
		width: 100%;
	}

	.hero:before {
		display: none;
	}

	.section.section--about {
		background-position: bottom -70px right -200px;
		background-size: auto;
	}

	.contact-form {
		text-align: left;
		border-radius: 40px;
	}

	.contact-form .btn {
		width: 180px;
	}

	.epr-col {
		display: block;
	}

	.epr-title {
		text-align: left;
	}

	.section.section--epr {
		padding-bottom: 0;
	}

	.epr-card:last-child {
		margin-bottom: 80px;
	}

	.epr-slider {
		padding-left: 48px;
	}

	.flex-reverse .epr-slider {
		padding-left: 0;
		padding-right: 48px;
	}
}

@media(min-width: 1200px) {
	body {
		--container-width: 1140px;
	}

	h1, .h1 {
		font-size: calc(var(--heading-font-size-base) * 4);
	}
	
	h2, .h2 {
		font-size: calc(var(--heading-font-size-base) * 3);
	}
	
	h3, .h3 {
		font-size: calc(var(--heading-font-size-base) * 2);
	}
	
	h4, .h4 {
		font-size: calc(var(--heading-font-size-base) * 1.5);
	}
	
	h5, .h5 {
		font-size: calc(var(--heading-font-size-base) * 1.25);
	}

	.col-xl-1 {
		width: 8.33333333%;
	}
	
	.col-xl-2 { 
		width: 16.66666667%;
	}
	
	.col-xl-3 {
		width: 25%;
	}
	
	.col-xl-4 {
		width: 33.33333333%;
	}
	
	.col-xl-5 {
		width: 41.66666667%;
	}
	
	.col-xl-6 {
		width: 50%;
	}
	
	.col-xl-7 {
		width: 58.33333333%;
	}
	
	.col-xl-8 {
		width: 66.66666667%;
	}
	
	.col-xl-9 { 
		width: 75%;
	}
	
	.col-xl-10 {
		width: 83.33333333%;
	}
	
	.col-xl-11 {
		width: 91.66666667%;
	}
	
	.col-xl-12 {
		width: 100%;
	}

	.about-content {
		padding-left: 50px;
	}

	.about-collage {
		height: 480px;
	}

	.contact-form {
		padding: 80px;
	}

	.environment-image .environment-image__circle {
		max-width: 160px;
	}

	.step-col,
	.custom-5 {
		width: 20%;
	}

	.steps {
		position: relative;
	}

	.steps:before {
		content: '';
		position: absolute;
		top: 56px;
        left: 10%;
        right: 10%;
		background-color: var(--primary);
		height: 1px;
	}

	#inner_banner {
		min-height: 520px;
		display: flex;
		align-items: center;
		justify-content: center;
	}
}

@media(min-width: 1400px) {
	body {
		--container-width: 1320px;
	}
}