/* time taken: 7 ms */
html {
	color: #000;
	background: #FFF
}

body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, code, form, fieldset, legend, input, textarea, p, blockquote, th, td {
	margin: 0;
	padding: 0
}

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

fieldset, img {
	border: 0
}

address, caption, cite, code, dfn, em, strong, th, var {
	font-style: normal;
	font-weight: normal
}

ol, ul {
	list-style: none
}

caption, th {
	text-align: left
}

h1, h2, h3, h4, h5, h6 {
	font-size: 100%;
	font-weight: normal
}

q:before, q:after {
	content: ''
}

abbr, acronym {
	border: 0;
	font-variant: normal
}

sub, sup {
	/* Specified in % so that the sup/sup is the
	   right size relative to the surrounding text */
	font-size: 75%;

	/* Zero out the line-height so that it doesn't
	   interfere with the positioning that follows */
	line-height: 0;

	/* Where the magic happens: makes all browsers position
	   the sup/sup properly, relative to the surrounding text */
	position: relative;

	/* Note that if you're using Eric Meyer's reset.css, this
	   is already set and you can remove this rule */
	vertical-align: baseline;
}

sup {
	/* Move the superscripted text up */
	top: -0.5em;
}

sub {
	/* Move the subscripted text down, but only
	   half as far down as the superscript moved up */
	bottom: -0.25em;
}


input, textarea, select {
	font-family: inherit;
	font-size: inherit;
	font-weight: inherit;
	*font-size: 100%
}

legend {
	color: #000
}

@charset "UTF-8";


/*!
Animate.css - http://daneden.me/animate
Licensed under the MIT license

Copyright (c) 2013 Daniel Eden

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/
.wow {
	visibility: hidden;
}
.animated {
	-webkit-animation-duration: 1s;
	animation-duration: 1s;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
}

.animated.hinge {
	-webkit-animation-duration: 2s;
	animation-duration: 2s;
}

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

	40% {
		-webkit-transform: translateY(-30px);
		transform: translateY(-30px);
	}

	60% {
		-webkit-transform: translateY(-15px);
		transform: translateY(-15px);
	}
}

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

	40% {
		-webkit-transform: translateY(-30px);
		-ms-transform: translateY(-30px);
		transform: translateY(-30px);
	}

	60% {
		-webkit-transform: translateY(-15px);
		-ms-transform: translateY(-15px);
		transform: translateY(-15px);
	}
}

.bounce {
	-webkit-animation-name: bounce;
	animation-name: bounce;
}

@-webkit-keyframes flash {
	0%, 50%, 100% {
		opacity: 1;
	}

	25%, 75% {
		opacity: 0;
	}
}

@keyframes flash {
	0%, 50%, 100% {
		opacity: 1;
	}

	25%, 75% {
		opacity: 0;
	}
}

.flash {
	-webkit-animation-name: flash;
	animation-name: flash;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@-webkit-keyframes pulse {
	0% {
		-webkit-transform: scale(1);
		transform: scale(1);
	}

	50% {
		-webkit-transform: scale(1.1);
		transform: scale(1.1);
	}

	100% {
		-webkit-transform: scale(1);
		transform: scale(1);
	}
}

@keyframes pulse {
	0% {
		-webkit-transform: scale(1);
		-ms-transform: scale(1);
		transform: scale(1);
	}

	50% {
		-webkit-transform: scale(1.1);
		-ms-transform: scale(1.1);
		transform: scale(1.1);
	}

	100% {
		-webkit-transform: scale(1);
		-ms-transform: scale(1);
		transform: scale(1);
	}
}

.pulse {
	-webkit-animation-name: pulse;
	animation-name: pulse;
}

@-webkit-keyframes shake {
	0%, 100% {
		-webkit-transform: translateX(0);
		transform: translateX(0);
	}

	10%, 30%, 50%, 70%, 90% {
		-webkit-transform: translateX(-10px);
		transform: translateX(-10px);
	}

	20%, 40%, 60%, 80% {
		-webkit-transform: translateX(10px);
		transform: translateX(10px);
	}
}

@keyframes shake {
	0%, 100% {
		-webkit-transform: translateX(0);
		-ms-transform: translateX(0);
		transform: translateX(0);
	}

	10%, 30%, 50%, 70%, 90% {
		-webkit-transform: translateX(-10px);
		-ms-transform: translateX(-10px);
		transform: translateX(-10px);
	}

	20%, 40%, 60%, 80% {
		-webkit-transform: translateX(10px);
		-ms-transform: translateX(10px);
		transform: translateX(10px);
	}
}

.shake {
	-webkit-animation-name: shake;
	animation-name: shake;
}

@-webkit-keyframes swing {
	20% {
		-webkit-transform: rotate(15deg);
		transform: rotate(15deg);
	}

	40% {
		-webkit-transform: rotate(-10deg);
		transform: rotate(-10deg);
	}

	60% {
		-webkit-transform: rotate(5deg);
		transform: rotate(5deg);
	}

	80% {
		-webkit-transform: rotate(-5deg);
		transform: rotate(-5deg);
	}

	100% {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
	}
}

@keyframes swing {
	20% {
		-webkit-transform: rotate(15deg);
		-ms-transform: rotate(15deg);
		transform: rotate(15deg);
	}

	40% {
		-webkit-transform: rotate(-10deg);
		-ms-transform: rotate(-10deg);
		transform: rotate(-10deg);
	}

	60% {
		-webkit-transform: rotate(5deg);
		-ms-transform: rotate(5deg);
		transform: rotate(5deg);
	}

	80% {
		-webkit-transform: rotate(-5deg);
		-ms-transform: rotate(-5deg);
		transform: rotate(-5deg);
	}

	100% {
		-webkit-transform: rotate(0deg);
		-ms-transform: rotate(0deg);
		transform: rotate(0deg);
	}
}

.swing {
	-webkit-transform-origin: top center;
	-ms-transform-origin: top center;
	transform-origin: top center;
	-webkit-animation-name: swing;
	animation-name: swing;
}

@-webkit-keyframes tada {
	0% {
		-webkit-transform: scale(1);
		transform: scale(1);
	}

	10%, 20% {
		-webkit-transform: scale(0.9) rotate(-3deg);
		transform: scale(0.9) rotate(-3deg);
	}

	30%, 50%, 70%, 90% {
		-webkit-transform: scale(1.1) rotate(3deg);
		transform: scale(1.1) rotate(3deg);
	}

	40%, 60%, 80% {
		-webkit-transform: scale(1.1) rotate(-3deg);
		transform: scale(1.1) rotate(-3deg);
	}

	100% {
		-webkit-transform: scale(1) rotate(0);
		transform: scale(1) rotate(0);
	}
}

@keyframes tada {
	0% {
		-webkit-transform: scale(1);
		-ms-transform: scale(1);
		transform: scale(1);
	}

	10%, 20% {
		-webkit-transform: scale(0.9) rotate(-3deg);
		-ms-transform: scale(0.9) rotate(-3deg);
		transform: scale(0.9) rotate(-3deg);
	}

	30%, 50%, 70%, 90% {
		-webkit-transform: scale(1.1) rotate(3deg);
		-ms-transform: scale(1.1) rotate(3deg);
		transform: scale(1.1) rotate(3deg);
	}

	40%, 60%, 80% {
		-webkit-transform: scale(1.1) rotate(-3deg);
		-ms-transform: scale(1.1) rotate(-3deg);
		transform: scale(1.1) rotate(-3deg);
	}

	100% {
		-webkit-transform: scale(1) rotate(0);
		-ms-transform: scale(1) rotate(0);
		transform: scale(1) rotate(0);
	}
}

.tada {
	-webkit-animation-name: tada;
	animation-name: tada;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@-webkit-keyframes wobble {
	0% {
		-webkit-transform: translateX(0%);
		transform: translateX(0%);
	}

	15% {
		-webkit-transform: translateX(-25%) rotate(-5deg);
		transform: translateX(-25%) rotate(-5deg);
	}

	30% {
		-webkit-transform: translateX(20%) rotate(3deg);
		transform: translateX(20%) rotate(3deg);
	}

	45% {
		-webkit-transform: translateX(-15%) rotate(-3deg);
		transform: translateX(-15%) rotate(-3deg);
	}

	60% {
		-webkit-transform: translateX(10%) rotate(2deg);
		transform: translateX(10%) rotate(2deg);
	}

	75% {
		-webkit-transform: translateX(-5%) rotate(-1deg);
		transform: translateX(-5%) rotate(-1deg);
	}

	100% {
		-webkit-transform: translateX(0%);
		transform: translateX(0%);
	}
}

@keyframes wobble {
	0% {
		-webkit-transform: translateX(0%);
		-ms-transform: translateX(0%);
		transform: translateX(0%);
	}

	15% {
		-webkit-transform: translateX(-25%) rotate(-5deg);
		-ms-transform: translateX(-25%) rotate(-5deg);
		transform: translateX(-25%) rotate(-5deg);
	}

	30% {
		-webkit-transform: translateX(20%) rotate(3deg);
		-ms-transform: translateX(20%) rotate(3deg);
		transform: translateX(20%) rotate(3deg);
	}

	45% {
		-webkit-transform: translateX(-15%) rotate(-3deg);
		-ms-transform: translateX(-15%) rotate(-3deg);
		transform: translateX(-15%) rotate(-3deg);
	}

	60% {
		-webkit-transform: translateX(10%) rotate(2deg);
		-ms-transform: translateX(10%) rotate(2deg);
		transform: translateX(10%) rotate(2deg);
	}

	75% {
		-webkit-transform: translateX(-5%) rotate(-1deg);
		-ms-transform: translateX(-5%) rotate(-1deg);
		transform: translateX(-5%) rotate(-1deg);
	}

	100% {
		-webkit-transform: translateX(0%);
		-ms-transform: translateX(0%);
		transform: translateX(0%);
	}
}

.wobble {
	-webkit-animation-name: wobble;
	animation-name: wobble;
}

@-webkit-keyframes bounceIn {
	0% {
		opacity: 0;
		-webkit-transform: scale(.3);
		transform: scale(.3);
	}

	50% {
		opacity: 1;
		-webkit-transform: scale(1.05);
		transform: scale(1.05);
	}

	70% {
		-webkit-transform: scale(.9);
		transform: scale(.9);
	}

	100% {
		-webkit-transform: scale(1);
		transform: scale(1);
	}
}

@keyframes bounceIn {
	0% {
		opacity: 0;
		-webkit-transform: scale(.3);
		-ms-transform: scale(.3);
		transform: scale(.3);
	}

	50% {
		opacity: 1;
		-webkit-transform: scale(1.05);
		-ms-transform: scale(1.05);
		transform: scale(1.05);
	}

	70% {
		-webkit-transform: scale(.9);
		-ms-transform: scale(.9);
		transform: scale(.9);
	}

	100% {
		-webkit-transform: scale(1);
		-ms-transform: scale(1);
		transform: scale(1);
	}
}

.bounceIn {
	-webkit-animation-name: bounceIn;
	animation-name: bounceIn;
}

@-webkit-keyframes bounceInDown {
	0% {
		opacity: 0;
		-webkit-transform: translateY(-2000px);
		transform: translateY(-2000px);
	}

	60% {
		opacity: 1;
		-webkit-transform: translateY(30px);
		transform: translateY(30px);
	}

	80% {
		-webkit-transform: translateY(-10px);
		transform: translateY(-10px);
	}

	100% {
		-webkit-transform: translateY(0);
		transform: translateY(0);
	}
}

@keyframes bounceInDown {
	0% {
		opacity: 0;
		-webkit-transform: translateY(-2000px);
		-ms-transform: translateY(-2000px);
		transform: translateY(-2000px);
	}

	60% {
		opacity: 1;
		-webkit-transform: translateY(30px);
		-ms-transform: translateY(30px);
		transform: translateY(30px);
	}

	80% {
		-webkit-transform: translateY(-10px);
		-ms-transform: translateY(-10px);
		transform: translateY(-10px);
	}

	100% {
		-webkit-transform: translateY(0);
		-ms-transform: translateY(0);
		transform: translateY(0);
	}
}

.bounceInDown {
	-webkit-animation-name: bounceInDown;
	animation-name: bounceInDown;
}

@-webkit-keyframes bounceInLeft {
	0% {
		opacity: 0;
		-webkit-transform: translateX(-2000px);
		transform: translateX(-2000px);
	}

	60% {
		opacity: 1;
		-webkit-transform: translateX(30px);
		transform: translateX(30px);
	}

	80% {
		-webkit-transform: translateX(-10px);
		transform: translateX(-10px);
	}

	100% {
		-webkit-transform: translateX(0);
		transform: translateX(0);
	}
}

@keyframes bounceInLeft {
	0% {
		opacity: 0;
		-webkit-transform: translateX(-2000px);
		-ms-transform: translateX(-2000px);
		transform: translateX(-2000px);
	}

	60% {
		opacity: 1;
		-webkit-transform: translateX(30px);
		-ms-transform: translateX(30px);
		transform: translateX(30px);
	}

	80% {
		-webkit-transform: translateX(-10px);
		-ms-transform: translateX(-10px);
		transform: translateX(-10px);
	}

	100% {
		-webkit-transform: translateX(0);
		-ms-transform: translateX(0);
		transform: translateX(0);
	}
}

.bounceInLeft {
	-webkit-animation-name: bounceInLeft;
	animation-name: bounceInLeft;
}

@-webkit-keyframes bounceInRight {
	0% {
		opacity: 0;
		-webkit-transform: translateX(2000px);
		transform: translateX(2000px);
	}

	60% {
		opacity: 1;
		-webkit-transform: translateX(-30px);
		transform: translateX(-30px);
	}

	80% {
		-webkit-transform: translateX(10px);
		transform: translateX(10px);
	}

	100% {
		-webkit-transform: translateX(0);
		transform: translateX(0);
	}
}

@keyframes bounceInRight {
	0% {
		opacity: 0;
		-webkit-transform: translateX(2000px);
		-ms-transform: translateX(2000px);
		transform: translateX(2000px);
	}

	60% {
		opacity: 1;
		-webkit-transform: translateX(-30px);
		-ms-transform: translateX(-30px);
		transform: translateX(-30px);
	}

	80% {
		-webkit-transform: translateX(10px);
		-ms-transform: translateX(10px);
		transform: translateX(10px);
	}

	100% {
		-webkit-transform: translateX(0);
		-ms-transform: translateX(0);
		transform: translateX(0);
	}
}

.bounceInRight {
	-webkit-animation-name: bounceInRight;
	animation-name: bounceInRight;
}

@-webkit-keyframes bounceInUp {
	0% {
		opacity: 0;
		-webkit-transform: translateY(2000px);
		transform: translateY(2000px);
	}

	60% {
		opacity: 1;
		-webkit-transform: translateY(-30px);
		transform: translateY(-30px);
	}

	80% {
		-webkit-transform: translateY(10px);
		transform: translateY(10px);
	}

	100% {
		-webkit-transform: translateY(0);
		transform: translateY(0);
	}
}

@keyframes bounceInUp {
	0% {
		opacity: 0;
		-webkit-transform: translateY(2000px);
		-ms-transform: translateY(2000px);
		transform: translateY(2000px);
	}

	60% {
		opacity: 1;
		-webkit-transform: translateY(-30px);
		-ms-transform: translateY(-30px);
		transform: translateY(-30px);
	}

	80% {
		-webkit-transform: translateY(10px);
		-ms-transform: translateY(10px);
		transform: translateY(10px);
	}

	100% {
		-webkit-transform: translateY(0);
		-ms-transform: translateY(0);
		transform: translateY(0);
	}
}

.bounceInUp {
	-webkit-animation-name: bounceInUp;
	animation-name: bounceInUp;
}

@-webkit-keyframes bounceOut {
	0% {
		-webkit-transform: scale(1);
		transform: scale(1);
	}

	25% {
		-webkit-transform: scale(.95);
		transform: scale(.95);
	}

	50% {
		opacity: 1;
		-webkit-transform: scale(1.1);
		transform: scale(1.1);
	}

	100% {
		opacity: 0;
		-webkit-transform: scale(.3);
		transform: scale(.3);
	}
}

@keyframes bounceOut {
	0% {
		-webkit-transform: scale(1);
		-ms-transform: scale(1);
		transform: scale(1);
	}

	25% {
		-webkit-transform: scale(.95);
		-ms-transform: scale(.95);
		transform: scale(.95);
	}

	50% {
		opacity: 1;
		-webkit-transform: scale(1.1);
		-ms-transform: scale(1.1);
		transform: scale(1.1);
	}

	100% {
		opacity: 0;
		-webkit-transform: scale(.3);
		-ms-transform: scale(.3);
		transform: scale(.3);
	}
}

.bounceOut {
	-webkit-animation-name: bounceOut;
	animation-name: bounceOut;
}

@-webkit-keyframes bounceOutDown {
	0% {
		-webkit-transform: translateY(0);
		transform: translateY(0);
	}

	20% {
		opacity: 1;
		-webkit-transform: translateY(-20px);
		transform: translateY(-20px);
	}

	100% {
		opacity: 0;
		-webkit-transform: translateY(2000px);
		transform: translateY(2000px);
	}
}

@keyframes bounceOutDown {
	0% {
		-webkit-transform: translateY(0);
		-ms-transform: translateY(0);
		transform: translateY(0);
	}

	20% {
		opacity: 1;
		-webkit-transform: translateY(-20px);
		-ms-transform: translateY(-20px);
		transform: translateY(-20px);
	}

	100% {
		opacity: 0;
		-webkit-transform: translateY(2000px);
		-ms-transform: translateY(2000px);
		transform: translateY(2000px);
	}
}

.bounceOutDown {
	-webkit-animation-name: bounceOutDown;
	animation-name: bounceOutDown;
}

@-webkit-keyframes bounceOutLeft {
	0% {
		-webkit-transform: translateX(0);
		transform: translateX(0);
	}

	20% {
		opacity: 1;
		-webkit-transform: translateX(20px);
		transform: translateX(20px);
	}

	100% {
		opacity: 0;
		-webkit-transform: translateX(-2000px);
		transform: translateX(-2000px);
	}
}

@keyframes bounceOutLeft {
	0% {
		-webkit-transform: translateX(0);
		-ms-transform: translateX(0);
		transform: translateX(0);
	}

	20% {
		opacity: 1;
		-webkit-transform: translateX(20px);
		-ms-transform: translateX(20px);
		transform: translateX(20px);
	}

	100% {
		opacity: 0;
		-webkit-transform: translateX(-2000px);
		-ms-transform: translateX(-2000px);
		transform: translateX(-2000px);
	}
}

.bounceOutLeft {
	-webkit-animation-name: bounceOutLeft;
	animation-name: bounceOutLeft;
}

@-webkit-keyframes bounceOutRight {
	0% {
		-webkit-transform: translateX(0);
		transform: translateX(0);
	}

	20% {
		opacity: 1;
		-webkit-transform: translateX(-20px);
		transform: translateX(-20px);
	}

	100% {
		opacity: 0;
		-webkit-transform: translateX(2000px);
		transform: translateX(2000px);
	}
}

@keyframes bounceOutRight {
	0% {
		-webkit-transform: translateX(0);
		-ms-transform: translateX(0);
		transform: translateX(0);
	}

	20% {
		opacity: 1;
		-webkit-transform: translateX(-20px);
		-ms-transform: translateX(-20px);
		transform: translateX(-20px);
	}

	100% {
		opacity: 0;
		-webkit-transform: translateX(2000px);
		-ms-transform: translateX(2000px);
		transform: translateX(2000px);
	}
}

.bounceOutRight {
	-webkit-animation-name: bounceOutRight;
	animation-name: bounceOutRight;
}

@-webkit-keyframes bounceOutUp {
	0% {
		-webkit-transform: translateY(0);
		transform: translateY(0);
	}

	20% {
		opacity: 1;
		-webkit-transform: translateY(20px);
		transform: translateY(20px);
	}

	100% {
		opacity: 0;
		-webkit-transform: translateY(-2000px);
		transform: translateY(-2000px);
	}
}

@keyframes bounceOutUp {
	0% {
		-webkit-transform: translateY(0);
		-ms-transform: translateY(0);
		transform: translateY(0);
	}

	20% {
		opacity: 1;
		-webkit-transform: translateY(20px);
		-ms-transform: translateY(20px);
		transform: translateY(20px);
	}

	100% {
		opacity: 0;
		-webkit-transform: translateY(-2000px);
		-ms-transform: translateY(-2000px);
		transform: translateY(-2000px);
	}
}

.bounceOutUp {
	-webkit-animation-name: bounceOutUp;
	animation-name: bounceOutUp;
}

@-webkit-keyframes fadeIn {
	0% {
		opacity: 0;
	}

	100% {
		opacity: 1;
	}
}

@keyframes fadeIn {
	0% {
		opacity: 0;
	}

	100% {
		opacity: 1;
	}
}

.fadeIn {
	-webkit-animation-name: fadeIn;
	animation-name: fadeIn;
}

@-webkit-keyframes fadeInDown {
	0% {
		opacity: 0;
		-webkit-transform: translateY(-20px);
		transform: translateY(-20px);
	}

	100% {
		opacity: 1;
		-webkit-transform: translateY(0);
		transform: translateY(0);
	}
}

@keyframes fadeInDown {
	0% {
		opacity: 0;
		-webkit-transform: translateY(-20px);
		-ms-transform: translateY(-20px);
		transform: translateY(-20px);
	}

	100% {
		opacity: 1;
		-webkit-transform: translateY(0);
		-ms-transform: translateY(0);
		transform: translateY(0);
	}
}

.fadeInDown {
	-webkit-animation-name: fadeInDown;
	animation-name: fadeInDown;
}

@-webkit-keyframes fadeInDownBig {
	0% {
		opacity: 0;
		-webkit-transform: translateY(-2000px);
		transform: translateY(-2000px);
	}

	100% {
		opacity: 1;
		-webkit-transform: translateY(0);
		transform: translateY(0);
	}
}

@keyframes fadeInDownBig {
	0% {
		opacity: 0;
		-webkit-transform: translateY(-2000px);
		-ms-transform: translateY(-2000px);
		transform: translateY(-2000px);
	}

	100% {
		opacity: 1;
		-webkit-transform: translateY(0);
		-ms-transform: translateY(0);
		transform: translateY(0);
	}
}

.fadeInDownBig {
	-webkit-animation-name: fadeInDownBig;
	animation-name: fadeInDownBig;
}

@-webkit-keyframes fadeInLeft {
	0% {
		opacity: 0;
		-webkit-transform: translateX(-20px);
		transform: translateX(-20px);
	}

	100% {
		opacity: 1;
		-webkit-transform: translateX(0);
		transform: translateX(0);
	}
}

@keyframes fadeInLeft {
	0% {
		opacity: 0;
		-webkit-transform: translateX(-20px);
		-ms-transform: translateX(-20px);
		transform: translateX(-20px);
	}

	100% {
		opacity: 1;
		-webkit-transform: translateX(0);
		-ms-transform: translateX(0);
		transform: translateX(0);
	}
}

.fadeInLeft {
	-webkit-animation-name: fadeInLeft;
	animation-name: fadeInLeft;
}

@-webkit-keyframes fadeInLeftBig {
	0% {
		opacity: 0;
		-webkit-transform: translateX(-2000px);
		transform: translateX(-2000px);
	}

	100% {
		opacity: 1;
		-webkit-transform: translateX(0);
		transform: translateX(0);
	}
}

@keyframes fadeInLeftBig {
	0% {
		opacity: 0;
		-webkit-transform: translateX(-2000px);
		-ms-transform: translateX(-2000px);
		transform: translateX(-2000px);
	}

	100% {
		opacity: 1;
		-webkit-transform: translateX(0);
		-ms-transform: translateX(0);
		transform: translateX(0);
	}
}

.fadeInLeftBig {
	-webkit-animation-name: fadeInLeftBig;
	animation-name: fadeInLeftBig;
}

@-webkit-keyframes fadeInRight {
	0% {
		opacity: 0;
		-webkit-transform: translateX(20px);
		transform: translateX(20px);
	}

	100% {
		opacity: 1;
		-webkit-transform: translateX(0);
		transform: translateX(0);
	}
}

@keyframes fadeInRight {
	0% {
		opacity: 0;
		-webkit-transform: translateX(20px);
		-ms-transform: translateX(20px);
		transform: translateX(20px);
	}

	100% {
		opacity: 1;
		-webkit-transform: translateX(0);
		-ms-transform: translateX(0);
		transform: translateX(0);
	}
}

.fadeInRight {
	-webkit-animation-name: fadeInRight;
	animation-name: fadeInRight;
}

@-webkit-keyframes fadeInRightBig {
	0% {
		opacity: 0;
		-webkit-transform: translateX(2000px);
		transform: translateX(2000px);
	}

	100% {
		opacity: 1;
		-webkit-transform: translateX(0);
		transform: translateX(0);
	}
}

@keyframes fadeInRightBig {
	0% {
		opacity: 0;
		-webkit-transform: translateX(2000px);
		-ms-transform: translateX(2000px);
		transform: translateX(2000px);
	}

	100% {
		opacity: 1;
		-webkit-transform: translateX(0);
		-ms-transform: translateX(0);
		transform: translateX(0);
	}
}

.fadeInRightBig {
	-webkit-animation-name: fadeInRightBig;
	animation-name: fadeInRightBig;
}

@-webkit-keyframes fadeInUp {
	0% {
		opacity: 0;
		-webkit-transform: translateY(20px);
		transform: translateY(20px);
	}

	100% {
		opacity: 1;
		-webkit-transform: translateY(0);
		transform: translateY(0);
	}
}

@keyframes fadeInUp {
	0% {
		opacity: 0;
		-webkit-transform: translateY(20px);
		-ms-transform: translateY(20px);
		transform: translateY(20px);
	}

	100% {
		opacity: 1;
		-webkit-transform: translateY(0);
		-ms-transform: translateY(0);
		transform: translateY(0);
	}
}

.fadeInUp {
	-webkit-animation-name: fadeInUp;
	animation-name: fadeInUp;
}

@-webkit-keyframes fadeInUpBig {
	0% {
		opacity: 0;
		-webkit-transform: translateY(2000px);
		transform: translateY(2000px);
	}

	100% {
		opacity: 1;
		-webkit-transform: translateY(0);
		transform: translateY(0);
	}
}

@keyframes fadeInUpBig {
	0% {
		opacity: 0;
		-webkit-transform: translateY(2000px);
		-ms-transform: translateY(2000px);
		transform: translateY(2000px);
	}

	100% {
		opacity: 1;
		-webkit-transform: translateY(0);
		-ms-transform: translateY(0);
		transform: translateY(0);
	}
}

.fadeInUpBig {
	-webkit-animation-name: fadeInUpBig;
	animation-name: fadeInUpBig;
}

@-webkit-keyframes fadeOut {
	0% {
		opacity: 1;
	}

	100% {
		opacity: 0;
	}
}

@keyframes fadeOut {
	0% {
		opacity: 1;
	}

	100% {
		opacity: 0;
	}
}

.fadeOut {
	-webkit-animation-name: fadeOut;
	animation-name: fadeOut;
}

@-webkit-keyframes fadeOutDown {
	0% {
		opacity: 1;
		-webkit-transform: translateY(0);
		transform: translateY(0);
	}

	100% {
		opacity: 0;
		-webkit-transform: translateY(20px);
		transform: translateY(20px);
	}
}

@keyframes fadeOutDown {
	0% {
		opacity: 1;
		-webkit-transform: translateY(0);
		-ms-transform: translateY(0);
		transform: translateY(0);
	}

	100% {
		opacity: 0;
		-webkit-transform: translateY(20px);
		-ms-transform: translateY(20px);
		transform: translateY(20px);
	}
}

.fadeOutDown {
	-webkit-animation-name: fadeOutDown;
	animation-name: fadeOutDown;
}

@-webkit-keyframes fadeOutDownBig {
	0% {
		opacity: 1;
		-webkit-transform: translateY(0);
		transform: translateY(0);
	}

	100% {
		opacity: 0;
		-webkit-transform: translateY(2000px);
		transform: translateY(2000px);
	}
}

@keyframes fadeOutDownBig {
	0% {
		opacity: 1;
		-webkit-transform: translateY(0);
		-ms-transform: translateY(0);
		transform: translateY(0);
	}

	100% {
		opacity: 0;
		-webkit-transform: translateY(2000px);
		-ms-transform: translateY(2000px);
		transform: translateY(2000px);
	}
}

.fadeOutDownBig {
	-webkit-animation-name: fadeOutDownBig;
	animation-name: fadeOutDownBig;
}

@-webkit-keyframes fadeOutLeft {
	0% {
		opacity: 1;
		-webkit-transform: translateX(0);
		transform: translateX(0);
	}

	100% {
		opacity: 0;
		-webkit-transform: translateX(-20px);
		transform: translateX(-20px);
	}
}

@keyframes fadeOutLeft {
	0% {
		opacity: 1;
		-webkit-transform: translateX(0);
		-ms-transform: translateX(0);
		transform: translateX(0);
	}

	100% {
		opacity: 0;
		-webkit-transform: translateX(-20px);
		-ms-transform: translateX(-20px);
		transform: translateX(-20px);
	}
}

.fadeOutLeft {
	-webkit-animation-name: fadeOutLeft;
	animation-name: fadeOutLeft;
}

@-webkit-keyframes fadeOutLeftBig {
	0% {
		opacity: 1;
		-webkit-transform: translateX(0);
		transform: translateX(0);
	}

	100% {
		opacity: 0;
		-webkit-transform: translateX(-2000px);
		transform: translateX(-2000px);
	}
}

@keyframes fadeOutLeftBig {
	0% {
		opacity: 1;
		-webkit-transform: translateX(0);
		-ms-transform: translateX(0);
		transform: translateX(0);
	}

	100% {
		opacity: 0;
		-webkit-transform: translateX(-2000px);
		-ms-transform: translateX(-2000px);
		transform: translateX(-2000px);
	}
}

.fadeOutLeftBig {
	-webkit-animation-name: fadeOutLeftBig;
	animation-name: fadeOutLeftBig;
}

@-webkit-keyframes fadeOutRight {
	0% {
		opacity: 1;
		-webkit-transform: translateX(0);
		transform: translateX(0);
	}

	100% {
		opacity: 0;
		-webkit-transform: translateX(20px);
		transform: translateX(20px);
	}
}

@keyframes fadeOutRight {
	0% {
		opacity: 1;
		-webkit-transform: translateX(0);
		-ms-transform: translateX(0);
		transform: translateX(0);
	}

	100% {
		opacity: 0;
		-webkit-transform: translateX(20px);
		-ms-transform: translateX(20px);
		transform: translateX(20px);
	}
}

.fadeOutRight {
	-webkit-animation-name: fadeOutRight;
	animation-name: fadeOutRight;
}

@-webkit-keyframes fadeOutRightBig {
	0% {
		opacity: 1;
		-webkit-transform: translateX(0);
		transform: translateX(0);
	}

	100% {
		opacity: 0;
		-webkit-transform: translateX(2000px);
		transform: translateX(2000px);
	}
}

@keyframes fadeOutRightBig {
	0% {
		opacity: 1;
		-webkit-transform: translateX(0);
		-ms-transform: translateX(0);
		transform: translateX(0);
	}

	100% {
		opacity: 0;
		-webkit-transform: translateX(2000px);
		-ms-transform: translateX(2000px);
		transform: translateX(2000px);
	}
}

.fadeOutRightBig {
	-webkit-animation-name: fadeOutRightBig;
	animation-name: fadeOutRightBig;
}

@-webkit-keyframes fadeOutUp {
	0% {
		opacity: 1;
		-webkit-transform: translateY(0);
		transform: translateY(0);
	}

	100% {
		opacity: 0;
		-webkit-transform: translateY(-20px);
		transform: translateY(-20px);
	}
}

@keyframes fadeOutUp {
	0% {
		opacity: 1;
		-webkit-transform: translateY(0);
		-ms-transform: translateY(0);
		transform: translateY(0);
	}

	100% {
		opacity: 0;
		-webkit-transform: translateY(-20px);
		-ms-transform: translateY(-20px);
		transform: translateY(-20px);
	}
}

.fadeOutUp {
	-webkit-animation-name: fadeOutUp;
	animation-name: fadeOutUp;
}

@-webkit-keyframes fadeOutUpBig {
	0% {
		opacity: 1;
		-webkit-transform: translateY(0);
		transform: translateY(0);
	}

	100% {
		opacity: 0;
		-webkit-transform: translateY(-2000px);
		transform: translateY(-2000px);
	}
}

@keyframes fadeOutUpBig {
	0% {
		opacity: 1;
		-webkit-transform: translateY(0);
		-ms-transform: translateY(0);
		transform: translateY(0);
	}

	100% {
		opacity: 0;
		-webkit-transform: translateY(-2000px);
		-ms-transform: translateY(-2000px);
		transform: translateY(-2000px);
	}
}

.fadeOutUpBig {
	-webkit-animation-name: fadeOutUpBig;
	animation-name: fadeOutUpBig;
}

@-webkit-keyframes flip {
	0% {
		-webkit-transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
		transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
		-webkit-animation-timing-function: ease-out;
		animation-timing-function: ease-out;
	}

	40% {
		-webkit-transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
		transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
		-webkit-animation-timing-function: ease-out;
		animation-timing-function: ease-out;
	}

	50% {
		-webkit-transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
		transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
		-webkit-animation-timing-function: ease-in;
		animation-timing-function: ease-in;
	}

	80% {
		-webkit-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(.95);
		transform: perspective(400px) translateZ(0) rotateY(360deg) scale(.95);
		-webkit-animation-timing-function: ease-in;
		animation-timing-function: ease-in;
	}

	100% {
		-webkit-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
		transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
		-webkit-animation-timing-function: ease-in;
		animation-timing-function: ease-in;
	}
}

@keyframes flip {
	0% {
		-webkit-transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
		-ms-transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
		transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
		-webkit-animation-timing-function: ease-out;
		animation-timing-function: ease-out;
	}

	40% {
		-webkit-transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
		-ms-transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
		transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
		-webkit-animation-timing-function: ease-out;
		animation-timing-function: ease-out;
	}

	50% {
		-webkit-transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
		-ms-transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
		transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
		-webkit-animation-timing-function: ease-in;
		animation-timing-function: ease-in;
	}

	80% {
		-webkit-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(.95);
		-ms-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(.95);
		transform: perspective(400px) translateZ(0) rotateY(360deg) scale(.95);
		-webkit-animation-timing-function: ease-in;
		animation-timing-function: ease-in;
	}

	100% {
		-webkit-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
		-ms-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
		transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
		-webkit-animation-timing-function: ease-in;
		animation-timing-function: ease-in;
	}
}

.animated.flip {
	-webkit-backface-visibility: visible;
	-ms-backface-visibility: visible;
	backface-visibility: visible;
	-webkit-animation-name: flip;
	animation-name: flip;
}

@-webkit-keyframes flipInX {
	0% {
		-webkit-transform: perspective(400px) rotateX(90deg);
		transform: perspective(400px) rotateX(90deg);
		opacity: 0;
	}

	40% {
		-webkit-transform: perspective(400px) rotateX(-10deg);
		transform: perspective(400px) rotateX(-10deg);
	}

	70% {
		-webkit-transform: perspective(400px) rotateX(10deg);
		transform: perspective(400px) rotateX(10deg);
	}

	100% {
		-webkit-transform: perspective(400px) rotateX(0deg);
		transform: perspective(400px) rotateX(0deg);
		opacity: 1;
	}
}

@keyframes flipInX {
	0% {
		-webkit-transform: perspective(400px) rotateX(90deg);
		-ms-transform: perspective(400px) rotateX(90deg);
		transform: perspective(400px) rotateX(90deg);
		opacity: 0;
	}

	40% {
		-webkit-transform: perspective(400px) rotateX(-10deg);
		-ms-transform: perspective(400px) rotateX(-10deg);
		transform: perspective(400px) rotateX(-10deg);
	}

	70% {
		-webkit-transform: perspective(400px) rotateX(10deg);
		-ms-transform: perspective(400px) rotateX(10deg);
		transform: perspective(400px) rotateX(10deg);
	}

	100% {
		-webkit-transform: perspective(400px) rotateX(0deg);
		-ms-transform: perspective(400px) rotateX(0deg);
		transform: perspective(400px) rotateX(0deg);
		opacity: 1;
	}
}

.flipInX {
	-webkit-backface-visibility: visible !important;
	-ms-backface-visibility: visible !important;
	backface-visibility: visible !important;
	-webkit-animation-name: flipInX;
	animation-name: flipInX;
}

@-webkit-keyframes flipInY {
	0% {
		-webkit-transform: perspective(400px) rotateY(90deg);
		transform: perspective(400px) rotateY(90deg);
		opacity: 0;
	}

	40% {
		-webkit-transform: perspective(400px) rotateY(-10deg);
		transform: perspective(400px) rotateY(-10deg);
	}

	70% {
		-webkit-transform: perspective(400px) rotateY(10deg);
		transform: perspective(400px) rotateY(10deg);
	}

	100% {
		-webkit-transform: perspective(400px) rotateY(0deg);
		transform: perspective(400px) rotateY(0deg);
		opacity: 1;
	}
}

@keyframes flipInY {
	0% {
		-webkit-transform: perspective(400px) rotateY(90deg);
		-ms-transform: perspective(400px) rotateY(90deg);
		transform: perspective(400px) rotateY(90deg);
		opacity: 0;
	}

	40% {
		-webkit-transform: perspective(400px) rotateY(-10deg);
		-ms-transform: perspective(400px) rotateY(-10deg);
		transform: perspective(400px) rotateY(-10deg);
	}

	70% {
		-webkit-transform: perspective(400px) rotateY(10deg);
		-ms-transform: perspective(400px) rotateY(10deg);
		transform: perspective(400px) rotateY(10deg);
	}

	100% {
		-webkit-transform: perspective(400px) rotateY(0deg);
		-ms-transform: perspective(400px) rotateY(0deg);
		transform: perspective(400px) rotateY(0deg);
		opacity: 1;
	}
}

.flipInY {
	-webkit-backface-visibility: visible !important;
	-ms-backface-visibility: visible !important;
	backface-visibility: visible !important;
	-webkit-animation-name: flipInY;
	animation-name: flipInY;
}

@-webkit-keyframes flipOutX {
	0% {
		-webkit-transform: perspective(400px) rotateX(0deg);
		transform: perspective(400px) rotateX(0deg);
		opacity: 1;
	}

	100% {
		-webkit-transform: perspective(400px) rotateX(90deg);
		transform: perspective(400px) rotateX(90deg);
		opacity: 0;
	}
}

@keyframes flipOutX {
	0% {
		-webkit-transform: perspective(400px) rotateX(0deg);
		-ms-transform: perspective(400px) rotateX(0deg);
		transform: perspective(400px) rotateX(0deg);
		opacity: 1;
	}

	100% {
		-webkit-transform: perspective(400px) rotateX(90deg);
		-ms-transform: perspective(400px) rotateX(90deg);
		transform: perspective(400px) rotateX(90deg);
		opacity: 0;
	}
}

.flipOutX {
	-webkit-animation-name: flipOutX;
	animation-name: flipOutX;
	-webkit-backface-visibility: visible !important;
	-ms-backface-visibility: visible !important;
	backface-visibility: visible !important;
}

@-webkit-keyframes flipOutY {
	0% {
		-webkit-transform: perspective(400px) rotateY(0deg);
		transform: perspective(400px) rotateY(0deg);
		opacity: 1;
	}

	100% {
		-webkit-transform: perspective(400px) rotateY(90deg);
		transform: perspective(400px) rotateY(90deg);
		opacity: 0;
	}
}

@keyframes flipOutY {
	0% {
		-webkit-transform: perspective(400px) rotateY(0deg);
		-ms-transform: perspective(400px) rotateY(0deg);
		transform: perspective(400px) rotateY(0deg);
		opacity: 1;
	}

	100% {
		-webkit-transform: perspective(400px) rotateY(90deg);
		-ms-transform: perspective(400px) rotateY(90deg);
		transform: perspective(400px) rotateY(90deg);
		opacity: 0;
	}
}

.flipOutY {
	-webkit-backface-visibility: visible !important;
	-ms-backface-visibility: visible !important;
	backface-visibility: visible !important;
	-webkit-animation-name: flipOutY;
	animation-name: flipOutY;
}

@-webkit-keyframes lightSpeedIn {
	0% {
		-webkit-transform: translateX(100%) skewX(-30deg);
		transform: translateX(100%) skewX(-30deg);
		opacity: 0;
	}

	60% {
		-webkit-transform: translateX(-20%) skewX(30deg);
		transform: translateX(-20%) skewX(30deg);
		opacity: 1;
	}

	80% {
		-webkit-transform: translateX(0%) skewX(-15deg);
		transform: translateX(0%) skewX(-15deg);
		opacity: 1;
	}

	100% {
		-webkit-transform: translateX(0%) skewX(0deg);
		transform: translateX(0%) skewX(0deg);
		opacity: 1;
	}
}

@keyframes lightSpeedIn {
	0% {
		-webkit-transform: translateX(100%) skewX(-30deg);
		-ms-transform: translateX(100%) skewX(-30deg);
		transform: translateX(100%) skewX(-30deg);
		opacity: 0;
	}

	60% {
		-webkit-transform: translateX(-20%) skewX(30deg);
		-ms-transform: translateX(-20%) skewX(30deg);
		transform: translateX(-20%) skewX(30deg);
		opacity: 1;
	}

	80% {
		-webkit-transform: translateX(0%) skewX(-15deg);
		-ms-transform: translateX(0%) skewX(-15deg);
		transform: translateX(0%) skewX(-15deg);
		opacity: 1;
	}

	100% {
		-webkit-transform: translateX(0%) skewX(0deg);
		-ms-transform: translateX(0%) skewX(0deg);
		transform: translateX(0%) skewX(0deg);
		opacity: 1;
	}
}

.lightSpeedIn {
	-webkit-animation-name: lightSpeedIn;
	animation-name: lightSpeedIn;
	-webkit-animation-timing-function: ease-out;
	animation-timing-function: ease-out;
}

@-webkit-keyframes lightSpeedOut {
	0% {
		-webkit-transform: translateX(0%) skewX(0deg);
		transform: translateX(0%) skewX(0deg);
		opacity: 1;
	}

	100% {
		-webkit-transform: translateX(100%) skewX(-30deg);
		transform: translateX(100%) skewX(-30deg);
		opacity: 0;
	}
}

@keyframes lightSpeedOut {
	0% {
		-webkit-transform: translateX(0%) skewX(0deg);
		-ms-transform: translateX(0%) skewX(0deg);
		transform: translateX(0%) skewX(0deg);
		opacity: 1;
	}

	100% {
		-webkit-transform: translateX(100%) skewX(-30deg);
		-ms-transform: translateX(100%) skewX(-30deg);
		transform: translateX(100%) skewX(-30deg);
		opacity: 0;
	}
}

.lightSpeedOut {
	-webkit-animation-name: lightSpeedOut;
	animation-name: lightSpeedOut;
	-webkit-animation-timing-function: ease-in;
	animation-timing-function: ease-in;
}

@-webkit-keyframes rotateIn {
	0% {
		-webkit-transform-origin: center center;
		transform-origin: center center;
		-webkit-transform: rotate(-200deg);
		transform: rotate(-200deg);
		opacity: 0;
	}

	100% {
		-webkit-transform-origin: center center;
		transform-origin: center center;
		-webkit-transform: rotate(0);
		transform: rotate(0);
		opacity: 1;
	}
}

@keyframes rotateIn {
	0% {
		-webkit-transform-origin: center center;
		-ms-transform-origin: center center;
		transform-origin: center center;
		-webkit-transform: rotate(-200deg);
		-ms-transform: rotate(-200deg);
		transform: rotate(-200deg);
		opacity: 0;
	}

	100% {
		-webkit-transform-origin: center center;
		-ms-transform-origin: center center;
		transform-origin: center center;
		-webkit-transform: rotate(0);
		-ms-transform: rotate(0);
		transform: rotate(0);
		opacity: 1;
	}
}

.rotateIn {
	-webkit-animation-name: rotateIn;
	animation-name: rotateIn;
}

@-webkit-keyframes rotateInDownLeft {
	0% {
		-webkit-transform-origin: left bottom;
		transform-origin: left bottom;
		-webkit-transform: rotate(-90deg);
		transform: rotate(-90deg);
		opacity: 0;
	}

	100% {
		-webkit-transform-origin: left bottom;
		transform-origin: left bottom;
		-webkit-transform: rotate(0);
		transform: rotate(0);
		opacity: 1;
	}
}

@keyframes rotateInDownLeft {
	0% {
		-webkit-transform-origin: left bottom;
		-ms-transform-origin: left bottom;
		transform-origin: left bottom;
		-webkit-transform: rotate(-90deg);
		-ms-transform: rotate(-90deg);
		transform: rotate(-90deg);
		opacity: 0;
	}

	100% {
		-webkit-transform-origin: left bottom;
		-ms-transform-origin: left bottom;
		transform-origin: left bottom;
		-webkit-transform: rotate(0);
		-ms-transform: rotate(0);
		transform: rotate(0);
		opacity: 1;
	}
}

.rotateInDownLeft {
	-webkit-animation-name: rotateInDownLeft;
	animation-name: rotateInDownLeft;
}

@-webkit-keyframes rotateInDownRight {
	0% {
		-webkit-transform-origin: right bottom;
		transform-origin: right bottom;
		-webkit-transform: rotate(90deg);
		transform: rotate(90deg);
		opacity: 0;
	}

	100% {
		-webkit-transform-origin: right bottom;
		transform-origin: right bottom;
		-webkit-transform: rotate(0);
		transform: rotate(0);
		opacity: 1;
	}
}

@keyframes rotateInDownRight {
	0% {
		-webkit-transform-origin: right bottom;
		-ms-transform-origin: right bottom;
		transform-origin: right bottom;
		-webkit-transform: rotate(90deg);
		-ms-transform: rotate(90deg);
		transform: rotate(90deg);
		opacity: 0;
	}

	100% {
		-webkit-transform-origin: right bottom;
		-ms-transform-origin: right bottom;
		transform-origin: right bottom;
		-webkit-transform: rotate(0);
		-ms-transform: rotate(0);
		transform: rotate(0);
		opacity: 1;
	}
}

.rotateInDownRight {
	-webkit-animation-name: rotateInDownRight;
	animation-name: rotateInDownRight;
}

@-webkit-keyframes rotateInUpLeft {
	0% {
		-webkit-transform-origin: left bottom;
		transform-origin: left bottom;
		-webkit-transform: rotate(90deg);
		transform: rotate(90deg);
		opacity: 0;
	}

	100% {
		-webkit-transform-origin: left bottom;
		transform-origin: left bottom;
		-webkit-transform: rotate(0);
		transform: rotate(0);
		opacity: 1;
	}
}

@keyframes rotateInUpLeft {
	0% {
		-webkit-transform-origin: left bottom;
		-ms-transform-origin: left bottom;
		transform-origin: left bottom;
		-webkit-transform: rotate(90deg);
		-ms-transform: rotate(90deg);
		transform: rotate(90deg);
		opacity: 0;
	}

	100% {
		-webkit-transform-origin: left bottom;
		-ms-transform-origin: left bottom;
		transform-origin: left bottom;
		-webkit-transform: rotate(0);
		-ms-transform: rotate(0);
		transform: rotate(0);
		opacity: 1;
	}
}

.rotateInUpLeft {
	-webkit-animation-name: rotateInUpLeft;
	animation-name: rotateInUpLeft;
}

@-webkit-keyframes rotateInUpRight {
	0% {
		-webkit-transform-origin: right bottom;
		transform-origin: right bottom;
		-webkit-transform: rotate(-90deg);
		transform: rotate(-90deg);
		opacity: 0;
	}

	100% {
		-webkit-transform-origin: right bottom;
		transform-origin: right bottom;
		-webkit-transform: rotate(0);
		transform: rotate(0);
		opacity: 1;
	}
}

@keyframes rotateInUpRight {
	0% {
		-webkit-transform-origin: right bottom;
		-ms-transform-origin: right bottom;
		transform-origin: right bottom;
		-webkit-transform: rotate(-90deg);
		-ms-transform: rotate(-90deg);
		transform: rotate(-90deg);
		opacity: 0;
	}

	100% {
		-webkit-transform-origin: right bottom;
		-ms-transform-origin: right bottom;
		transform-origin: right bottom;
		-webkit-transform: rotate(0);
		-ms-transform: rotate(0);
		transform: rotate(0);
		opacity: 1;
	}
}

.rotateInUpRight {
	-webkit-animation-name: rotateInUpRight;
	animation-name: rotateInUpRight;
}

@-webkit-keyframes rotateOut {
	0% {
		-webkit-transform-origin: center center;
		transform-origin: center center;
		-webkit-transform: rotate(0);
		transform: rotate(0);
		opacity: 1;
	}

	100% {
		-webkit-transform-origin: center center;
		transform-origin: center center;
		-webkit-transform: rotate(200deg);
		transform: rotate(200deg);
		opacity: 0;
	}
}

@keyframes rotateOut {
	0% {
		-webkit-transform-origin: center center;
		-ms-transform-origin: center center;
		transform-origin: center center;
		-webkit-transform: rotate(0);
		-ms-transform: rotate(0);
		transform: rotate(0);
		opacity: 1;
	}

	100% {
		-webkit-transform-origin: center center;
		-ms-transform-origin: center center;
		transform-origin: center center;
		-webkit-transform: rotate(200deg);
		-ms-transform: rotate(200deg);
		transform: rotate(200deg);
		opacity: 0;
	}
}

.rotateOut {
	-webkit-animation-name: rotateOut;
	animation-name: rotateOut;
}

@-webkit-keyframes rotateOutDownLeft {
	0% {
		-webkit-transform-origin: left bottom;
		transform-origin: left bottom;
		-webkit-transform: rotate(0);
		transform: rotate(0);
		opacity: 1;
	}

	100% {
		-webkit-transform-origin: left bottom;
		transform-origin: left bottom;
		-webkit-transform: rotate(90deg);
		transform: rotate(90deg);
		opacity: 0;
	}
}

@keyframes rotateOutDownLeft {
	0% {
		-webkit-transform-origin: left bottom;
		-ms-transform-origin: left bottom;
		transform-origin: left bottom;
		-webkit-transform: rotate(0);
		-ms-transform: rotate(0);
		transform: rotate(0);
		opacity: 1;
	}

	100% {
		-webkit-transform-origin: left bottom;
		-ms-transform-origin: left bottom;
		transform-origin: left bottom;
		-webkit-transform: rotate(90deg);
		-ms-transform: rotate(90deg);
		transform: rotate(90deg);
		opacity: 0;
	}
}

.rotateOutDownLeft {
	-webkit-animation-name: rotateOutDownLeft;
	animation-name: rotateOutDownLeft;
}

@-webkit-keyframes rotateOutDownRight {
	0% {
		-webkit-transform-origin: right bottom;
		transform-origin: right bottom;
		-webkit-transform: rotate(0);
		transform: rotate(0);
		opacity: 1;
	}

	100% {
		-webkit-transform-origin: right bottom;
		transform-origin: right bottom;
		-webkit-transform: rotate(-90deg);
		transform: rotate(-90deg);
		opacity: 0;
	}
}

@keyframes rotateOutDownRight {
	0% {
		-webkit-transform-origin: right bottom;
		-ms-transform-origin: right bottom;
		transform-origin: right bottom;
		-webkit-transform: rotate(0);
		-ms-transform: rotate(0);
		transform: rotate(0);
		opacity: 1;
	}

	100% {
		-webkit-transform-origin: right bottom;
		-ms-transform-origin: right bottom;
		transform-origin: right bottom;
		-webkit-transform: rotate(-90deg);
		-ms-transform: rotate(-90deg);
		transform: rotate(-90deg);
		opacity: 0;
	}
}

.rotateOutDownRight {
	-webkit-animation-name: rotateOutDownRight;
	animation-name: rotateOutDownRight;
}

@-webkit-keyframes rotateOutUpLeft {
	0% {
		-webkit-transform-origin: left bottom;
		transform-origin: left bottom;
		-webkit-transform: rotate(0);
		transform: rotate(0);
		opacity: 1;
	}

	100% {
		-webkit-transform-origin: left bottom;
		transform-origin: left bottom;
		-webkit-transform: rotate(-90deg);
		transform: rotate(-90deg);
		opacity: 0;
	}
}

@keyframes rotateOutUpLeft {
	0% {
		-webkit-transform-origin: left bottom;
		-ms-transform-origin: left bottom;
		transform-origin: left bottom;
		-webkit-transform: rotate(0);
		-ms-transform: rotate(0);
		transform: rotate(0);
		opacity: 1;
	}

	100% {
		-webkit-transform-origin: left bottom;
		-ms-transform-origin: left bottom;
		transform-origin: left bottom;
		-webkit-transform: rotate(-90deg);
		-ms-transform: rotate(-90deg);
		transform: rotate(-90deg);
		opacity: 0;
	}
}

.rotateOutUpLeft {
	-webkit-animation-name: rotateOutUpLeft;
	animation-name: rotateOutUpLeft;
}

@-webkit-keyframes rotateOutUpRight {
	0% {
		-webkit-transform-origin: right bottom;
		transform-origin: right bottom;
		-webkit-transform: rotate(0);
		transform: rotate(0);
		opacity: 1;
	}

	100% {
		-webkit-transform-origin: right bottom;
		transform-origin: right bottom;
		-webkit-transform: rotate(90deg);
		transform: rotate(90deg);
		opacity: 0;
	}
}

@keyframes rotateOutUpRight {
	0% {
		-webkit-transform-origin: right bottom;
		-ms-transform-origin: right bottom;
		transform-origin: right bottom;
		-webkit-transform: rotate(0);
		-ms-transform: rotate(0);
		transform: rotate(0);
		opacity: 1;
	}

	100% {
		-webkit-transform-origin: right bottom;
		-ms-transform-origin: right bottom;
		transform-origin: right bottom;
		-webkit-transform: rotate(90deg);
		-ms-transform: rotate(90deg);
		transform: rotate(90deg);
		opacity: 0;
	}
}

.rotateOutUpRight {
	-webkit-animation-name: rotateOutUpRight;
	animation-name: rotateOutUpRight;
}

@-webkit-keyframes slideInDown {
	0% {
		opacity: 0;
		-webkit-transform: translateY(-2000px);
		transform: translateY(-2000px);
	}

	100% {
		-webkit-transform: translateY(0);
		transform: translateY(0);
	}
}

@keyframes slideInDown {
	0% {
		opacity: 0;
		-webkit-transform: translateY(-2000px);
		-ms-transform: translateY(-2000px);
		transform: translateY(-2000px);
	}

	100% {
		-webkit-transform: translateY(0);
		-ms-transform: translateY(0);
		transform: translateY(0);
	}
}

.slideInDown {
	-webkit-animation-name: slideInDown;
	animation-name: slideInDown;
}

@-webkit-keyframes slideInLeft {
	0% {
		opacity: 0;
		-webkit-transform: translateX(-2000px);
		transform: translateX(-2000px);
	}

	100% {
		-webkit-transform: translateX(0);
		transform: translateX(0);
	}
}

@keyframes slideInLeft {
	0% {
		opacity: 0;
		-webkit-transform: translateX(-2000px);
		-ms-transform: translateX(-2000px);
		transform: translateX(-2000px);
	}

	100% {
		-webkit-transform: translateX(0);
		-ms-transform: translateX(0);
		transform: translateX(0);
	}
}

.slideInLeft {
	-webkit-animation-name: slideInLeft;
	animation-name: slideInLeft;
}

@-webkit-keyframes slideInRight {
	0% {
		opacity: 0;
		-webkit-transform: translateX(2000px);
		transform: translateX(2000px);
	}

	100% {
		-webkit-transform: translateX(0);
		transform: translateX(0);
	}
}

@keyframes slideInRight {
	0% {
		opacity: 0;
		-webkit-transform: translateX(2000px);
		-ms-transform: translateX(2000px);
		transform: translateX(2000px);
	}

	100% {
		-webkit-transform: translateX(0);
		-ms-transform: translateX(0);
		transform: translateX(0);
	}
}

.slideInRight {
	-webkit-animation-name: slideInRight;
	animation-name: slideInRight;
}

@-webkit-keyframes slideOutLeft {
	0% {
		-webkit-transform: translateX(0);
		transform: translateX(0);
	}

	100% {
		opacity: 0;
		-webkit-transform: translateX(-2000px);
		transform: translateX(-2000px);
	}
}

@keyframes slideOutLeft {
	0% {
		-webkit-transform: translateX(0);
		-ms-transform: translateX(0);
		transform: translateX(0);
	}

	100% {
		opacity: 0;
		-webkit-transform: translateX(-2000px);
		-ms-transform: translateX(-2000px);
		transform: translateX(-2000px);
	}
}

.slideOutLeft {
	-webkit-animation-name: slideOutLeft;
	animation-name: slideOutLeft;
}

@-webkit-keyframes slideOutRight {
	0% {
		-webkit-transform: translateX(0);
		transform: translateX(0);
	}

	100% {
		opacity: 0;
		-webkit-transform: translateX(2000px);
		transform: translateX(2000px);
	}
}

@keyframes slideOutRight {
	0% {
		-webkit-transform: translateX(0);
		-ms-transform: translateX(0);
		transform: translateX(0);
	}

	100% {
		opacity: 0;
		-webkit-transform: translateX(2000px);
		-ms-transform: translateX(2000px);
		transform: translateX(2000px);
	}
}

.slideOutRight {
	-webkit-animation-name: slideOutRight;
	animation-name: slideOutRight;
}

@-webkit-keyframes slideOutUp {
	0% {
		-webkit-transform: translateY(0);
		transform: translateY(0);
	}

	100% {
		opacity: 0;
		-webkit-transform: translateY(-2000px);
		transform: translateY(-2000px);
	}
}

@keyframes slideOutUp {
	0% {
		-webkit-transform: translateY(0);
		-ms-transform: translateY(0);
		transform: translateY(0);
	}

	100% {
		opacity: 0;
		-webkit-transform: translateY(-2000px);
		-ms-transform: translateY(-2000px);
		transform: translateY(-2000px);
	}
}

.slideOutUp {
	-webkit-animation-name: slideOutUp;
	animation-name: slideOutUp;
}

@-webkit-keyframes hinge {
	0% {
		-webkit-transform: rotate(0);
		transform: rotate(0);
		-webkit-transform-origin: top left;
		transform-origin: top left;
		-webkit-animation-timing-function: ease-in-out;
		animation-timing-function: ease-in-out;
	}

	20%, 60% {
		-webkit-transform: rotate(80deg);
		transform: rotate(80deg);
		-webkit-transform-origin: top left;
		transform-origin: top left;
		-webkit-animation-timing-function: ease-in-out;
		animation-timing-function: ease-in-out;
	}

	40% {
		-webkit-transform: rotate(60deg);
		transform: rotate(60deg);
		-webkit-transform-origin: top left;
		transform-origin: top left;
		-webkit-animation-timing-function: ease-in-out;
		animation-timing-function: ease-in-out;
	}

	80% {
		-webkit-transform: rotate(60deg) translateY(0);
		transform: rotate(60deg) translateY(0);
		opacity: 1;
		-webkit-transform-origin: top left;
		transform-origin: top left;
		-webkit-animation-timing-function: ease-in-out;
		animation-timing-function: ease-in-out;
	}

	100% {
		-webkit-transform: translateY(700px);
		transform: translateY(700px);
		opacity: 0;
	}
}

@keyframes hinge {
	0% {
		-webkit-transform: rotate(0);
		-ms-transform: rotate(0);
		transform: rotate(0);
		-webkit-transform-origin: top left;
		-ms-transform-origin: top left;
		transform-origin: top left;
		-webkit-animation-timing-function: ease-in-out;
		animation-timing-function: ease-in-out;
	}

	20%, 60% {
		-webkit-transform: rotate(80deg);
		-ms-transform: rotate(80deg);
		transform: rotate(80deg);
		-webkit-transform-origin: top left;
		-ms-transform-origin: top left;
		transform-origin: top left;
		-webkit-animation-timing-function: ease-in-out;
		animation-timing-function: ease-in-out;
	}

	40% {
		-webkit-transform: rotate(60deg);
		-ms-transform: rotate(60deg);
		transform: rotate(60deg);
		-webkit-transform-origin: top left;
		-ms-transform-origin: top left;
		transform-origin: top left;
		-webkit-animation-timing-function: ease-in-out;
		animation-timing-function: ease-in-out;
	}

	80% {
		-webkit-transform: rotate(60deg) translateY(0);
		-ms-transform: rotate(60deg) translateY(0);
		transform: rotate(60deg) translateY(0);
		opacity: 1;
		-webkit-transform-origin: top left;
		-ms-transform-origin: top left;
		transform-origin: top left;
		-webkit-animation-timing-function: ease-in-out;
		animation-timing-function: ease-in-out;
	}

	100% {
		-webkit-transform: translateY(700px);
		-ms-transform: translateY(700px);
		transform: translateY(700px);
		opacity: 0;
	}
}

.hinge {
	-webkit-animation-name: hinge;
	animation-name: hinge;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@-webkit-keyframes rollIn {
	0% {
		opacity: 0;
		-webkit-transform: translateX(-100%) rotate(-120deg);
		transform: translateX(-100%) rotate(-120deg);
	}

	100% {
		opacity: 1;
		-webkit-transform: translateX(0px) rotate(0deg);
		transform: translateX(0px) rotate(0deg);
	}
}

@keyframes rollIn {
	0% {
		opacity: 0;
		-webkit-transform: translateX(-100%) rotate(-120deg);
		-ms-transform: translateX(-100%) rotate(-120deg);
		transform: translateX(-100%) rotate(-120deg);
	}

	100% {
		opacity: 1;
		-webkit-transform: translateX(0px) rotate(0deg);
		-ms-transform: translateX(0px) rotate(0deg);
		transform: translateX(0px) rotate(0deg);
	}
}

.rollIn {
	-webkit-animation-name: rollIn;
	animation-name: rollIn;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@-webkit-keyframes rollOut {
	0% {
		opacity: 1;
		-webkit-transform: translateX(0px) rotate(0deg);
		transform: translateX(0px) rotate(0deg);
	}

	100% {
		opacity: 0;
		-webkit-transform: translateX(100%) rotate(120deg);
		transform: translateX(100%) rotate(120deg);
	}
}

@keyframes rollOut {
	0% {
		opacity: 1;
		-webkit-transform: translateX(0px) rotate(0deg);
		-ms-transform: translateX(0px) rotate(0deg);
		transform: translateX(0px) rotate(0deg);
	}

	100% {
		opacity: 0;
		-webkit-transform: translateX(100%) rotate(120deg);
		-ms-transform: translateX(100%) rotate(120deg);
		transform: translateX(100%) rotate(120deg);
	}
}

.rollOut {
	-webkit-animation-name: rollOut;
	animation-name: rollOut;
}

* {
	margin: 0;
	padding: 0;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
::selection {
	color: #fff;
	background: #004e5a;
}
html {
	-webkit-text-size-adjust: 100%;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	height: 100%;
	hyphens: auto;
}
body {
	position: relative;
	font-family: 'Open Sans', arial, sans-serif;
	font-weight: 400;
	font-size: 16px;
	line-height: 24px;
	color: #333333;
	min-height: 100%;
}
@media (min-width: 48.0625em) {
	body {
		font-size: 18px;
		line-height: 28px;
	}
}
body.show-overlay {
	overflow-y: hidden;
}
a {
	color: #004e5a;
	-webkit-transition: color 300ms ease;
	transition: color 300ms ease;
	text-decoration: none;
}
a:hover,
a:focus,
a:active {
	color: #004e5a;
}
.hidden {
	position: absolute;
	left: -999999px;
}
.show-mobile,
.hide-mobile {
	display: none;
}
@media (max-width: 64em) {
	.show-mobile {
		display: block;
	}
}
@media (min-width: 64.0625em) {
	.hide-mobile {
		display: block;
	}
}
strong,
b {
	font-family: 'Open Sans', arial, sans-serif;
	font-weight: 700;
}
h1,
h2,
h3,
.title-cell,
p.lead {
	font-family: 'DM Sans', arial, sans-serif;
	font-weight: 500;
}
h1 {
	font-size: 42px;
	line-height: 46px;
	margin-bottom: 40px;
	color: #4d4f53;
	background: -webkit-linear-gradient(0deg, #006443 0%, #85be00 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}
@media (min-width: 48.0625em) {
	h1 {
		font-size: 60px;
		line-height: 70px;
		margin-bottom: 60px;
	}
}
h2,
blockquote,
p.lead {
	font-size: 24px;
	line-height: 28px;
	color: #85be00;
	margin-bottom: 20px;
}
@media (min-width: 48.0625em) {
	h2,
	blockquote,
	p.lead {
		font-size: 30px;
		line-height: 35px;
		margin-bottom: 25px;
	}
}
h3,
.title-cell {
	font-size: 20px;
	line-height: 24px;
}
@media (min-width: 48.0625em) {
	h3,
	.title-cell {
		font-size: 24px;
		line-height: 28px;
	}
}
h4 {
	font-family: 'Open Sans', arial, sans-serif;
	font-weight: 700;
	margin-bottom: 5px;
}
@media (min-width: 48.0625em) {
	p.lead {
		margin-bottom: 60px;
	}
}
p.lead a {
	color: #85be00;
}
p.lead a:hover {
	color: #006443;
}
.text {
	margin-bottom: 30px;
}
@media (min-width: 48.0625em) {
	.text {
		margin-bottom: 60px;
	}
}
@media (min-width: 48.0625em) {
	.text p {
		font-size: 18px;
		line-height: 28px;
	}
}
.text p em {
	font-style: italic;
	hyphens: none;
}
ul.list li {
	position: relative;
	padding-left: 15px;
}
ul.list li:before {
	content: "–";
	position: absolute;
	left: 0;
	top: 0;
}
.number {
	font-family: 'DM Sans', arial, sans-serif;
	font-weight: 700;
	color: #85be00;
	font-size: 40px;
	line-height: 45px;
	background: -webkit-linear-gradient(0deg, #006443 0%, #85be00 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}
.number > span {
	color: #85be00 !important;
}
.section-color .number > span {
	color: #333333 !important;
}
@media (min-width: 48.0625em) {
	.number {
		font-size: 60px;
		line-height: 70px;
	}
}
.number-block {
	margin-bottom: 30px;
}
.number-block .number {
	white-space: nowrap;
	color: #85be00;
	margin-bottom: 5px;
}
.number-block .number + h4 {
	margin-top: 0;
}
.section-color .number-block .number {
	color: #333333;
}
.number-block .desc {
	margin: 0;
}
.blockquote {
	margin-bottom: 35px;
}
@media (min-width: 48.0625em) {
	.blockquote {
		margin-bottom: 70px;
	}
}
.blockquote blockquote {
	font-family: 'DM Sans', arial, sans-serif;
	font-weight: 500;
	font-size: 30px;
	line-height: 30px;
}
@media (min-width: 48.0625em) {
	.blockquote blockquote {
		font-size: 42px;
		line-height: 42px;
	}
}
.fullname {
	font-family: 'DM Sans', arial, sans-serif;
	font-weight: 700;
	color: #85be00;
	margin-bottom: 0;
	font-size: 25px;
}
.title-wrapper h1 {
	margin-bottom: 0;
}
.title-wrapper h4 {
	margin-bottom: 40px;
}
@media (min-width: 48.0625em) {
	.title-wrapper h4 {
		margin-bottom: 60px;
	}
}
address,
p {
	margin-bottom: 15px;
}
hr {
	border: none;
	border-bottom: 2px solid #d4d4d2;
	background: transparent;
	height: 0;
	margin: 40px 0;
}
table + h2,
ul + h2,
p + h2 {
	margin-top: 30px;
}
table + h3,
ul + h3,
p + h3 {
	margin-top: 30px;
}
table + h4,
ul + h4,
p + h4 {
	margin-top: 30px;
}
table {
	width: 100%;
	margin-bottom: 20px;
	border-collapse: collapse;
}
table th {
	font-family: 'Open Sans', arial, sans-serif;
	font-weight: 700;
}
table th,
table td {
	vertical-align: top;
	padding: 1px 3px;
	line-height: 1.2;
}
table.rich th,
table.rich td {
	padding: 10px 0 10px 4px;
	border-bottom: 1px solid #949090;
}
table.rich th.date {
	width: 140px;
}
@media (max-width: 33em) {
	table.rich th.date {
		width: 100px;
	}
}
table.rich tr.over td {
	color: #949090;
}
section {
	padding: 40px 0;
}
@media (min-width: 48.0625em) {
	section {
		padding: 120px 0;
	}
}
section.section-border {
	border-bottom: 2px solid #d4d4d2;
}
section.section-nopadding {
	padding: 0 !important;
}
section.section-dark {
	background: #333333;
}
section.section-dark * {
	color: #ffffff;
}
section.section-black {
	background: #000000;
}
section.section-black h1 {
	color: #ffffff;
	background: transparent;
	-webkit-background-clip: unset;
	-webkit-text-fill-color: #ffffff;
}
section.section-black * {
	color: #ffffff;
}
section.section-color {
	background: #85be00;
}
section.section-color * {
	color: #ffffff;
}
section.section-gray {
	background: #4d4f53;
}
section.section-gray * {
	color: #ffffff;
}
section.section-graylight {
	background: #d4d4d2;
}
section.section-full {
	padding: 0;
}
section > img {
	width: 100%;
}
img {
	max-width: 100%;
	height: auto;
}
.btn {
	position: relative;
	display: inline-block;
	padding: 20px;
	font-family: 'DM Sans', arial, sans-serif;
	font-weight: 700;
	border: 2px solid #333333;
	-webkit-transition: all 300ms ease;
	transition: all 300ms ease;
	font-size: 30px;
}
.btn:before {
	content: "";
	position: absolute;
	left: -13px;
	top: -11px;
	width: 23px;
	height: 26px;
	background: url(assets/img/plus-white.svg) no-repeat;
	background-size: 100% 100%;
}
@media (min-width: 64.0625em) {
	.btn:before {
		left: -33px;
		top: -32px;
		width: 70px;
		height: 70px;
	}
}
.btn.btn-invert {
	color: #85be00;
	border-color: #85be00;
}
.btn.btn-invert:hover,
.btn.btn-invert:active,
.btn.btn-invert:focus {
	color: #ffffff;
	border-color: #85be00;
	background: #85be00;
}
iframe {
	width: 100%;
	height: 100vh;
	border: none;
}
.text-nowrap {
	white-space: nowrap;
}
.font-green {
	color: #85be00;
}
.menu-trigger {
	position: absolute;
	top: 2px;
	right: 20px;
	vertical-align: middle;
	width: 40px;
	height: 40px;
	-webkit-transform: rotate(0deg);
	-ms-transform: rotate(0deg);
	transform: rotate(0deg);
	-webkit-transition: 0.5s ease-in-out;
	transition: 0.5s ease-in-out;
	cursor: pointer;
	z-index: 10;
}
@media (min-width: 48.0625em) {
	.menu-trigger {
		right: 40px;
		top: 8px;
		width: 65px;
	}
}
.menu-trigger span {
	display: block;
	position: absolute;
	height: 2px;
	width: 40px;
	background: #333333;
	opacity: 1;
	right: 0;
	-webkit-transform: rotate(0deg);
	-ms-transform: rotate(0deg);
	transform: rotate(0deg);
	-webkit-transition: 0.25s ease-in-out;
	transition: 0.25s ease-in-out;
}
.invert-menu .menu-trigger span {
	background: #ffffff;
}
@media (min-width: 48.0625em) {
	.menu-trigger span {
		width: 65px;
		height: 4px;
	}
}
.menu-trigger span:nth-child(1) {
	top: 0;
}
.menu-trigger span:nth-child(2) {
	top: 10px;
}
@media (min-width: 48.0625em) {
	.menu-trigger span:nth-child(2) {
		top: 15px;
	}
}
.menu-trigger span:nth-child(3) {
	top: 20px;
}
@media (min-width: 48.0625em) {
	.menu-trigger span:nth-child(3) {
		top: 30px;
	}
}
.menu-trigger.trigger-close span:nth-child(1),
.show-menu .menu-trigger span:nth-child(1) {
	top: 20%;
	-webkit-transform: rotate(135deg);
	-ms-transform: rotate(135deg);
	transform: rotate(135deg);
}
@media (min-width: 48.0625em) {
	.menu-trigger.trigger-close span:nth-child(1),
	.show-menu .menu-trigger span:nth-child(1) {
		width: 60px;
		top: 30%;
	}
}
.menu-trigger.trigger-close span:nth-child(2),
.show-menu .menu-trigger span:nth-child(2) {
	opacity: 0;
}
.menu-trigger.trigger-close span:nth-child(3),
.show-menu .menu-trigger span:nth-child(3) {
	top: 20%;
	width: 40px;
	-webkit-transform: rotate(-135deg);
	-ms-transform: rotate(-135deg);
	transform: rotate(-135deg);
}
@media (min-width: 48.0625em) {
	.menu-trigger.trigger-close span:nth-child(3),
	.show-menu .menu-trigger span:nth-child(3) {
		width: 60px;
		top: 30%;
	}
}

/*!
 * Font Awesome Pro 5.13.0 by @fontawesome - https://fontawesome.com
 * License - https://fontawesome.com/license (Commercial License)
 */
.fa,
.fas,
.far,
.fal,
.fad,
.fab {
	-moz-osx-font-smoothing: grayscale;
	-webkit-font-smoothing: antialiased;
	display: inline-block;
	font-style: normal;
	font-variant: normal;
	text-rendering: auto;
	line-height: 1;
}
.fa-lg {
	font-size: 1.33333em;
	line-height: .75em;
	vertical-align: -.0667em;
}
.fa-xs {
	font-size: .75em;
}
.fa-sm {
	font-size: .875em;
}
.fa-1x {
	font-size: 1em;
}
.fa-2x {
	font-size: 2em;
}
.fa-3x {
	font-size: 3em;
}
.fa-4x {
	font-size: 4em;
}
.fa-5x {
	font-size: 5em;
}
.fa-6x {
	font-size: 6em;
}
.fa-7x {
	font-size: 7em;
}
.fa-8x {
	font-size: 8em;
}
.fa-9x {
	font-size: 9em;
}
.fa-10x {
	font-size: 10em;
}
.fa-fw {
	text-align: center;
	width: 1.25em;
}
.fa-ul {
	list-style-type: none;
	margin-left: 2.5em;
	padding-left: 0;
}
.fa-ul > li {
	position: relative;
}
.fa-li {
	left: -2em;
	position: absolute;
	text-align: center;
	width: 2em;
	line-height: inherit;
}
.fa-border {
	border: solid 0.08em #eee;
	-webkit-border-radius: .1em;
	border-radius: .1em;
	padding: 0.2em 0.25em 0.15em;
}
.fa-pull-left {
	float: left;
}
.fa-pull-right {
	float: right;
}
.fa.fa-pull-left,
.fas.fa-pull-left,
.far.fa-pull-left,
.fal.fa-pull-left,
.fab.fa-pull-left {
	margin-right: .3em;
}
.fa.fa-pull-right,
.fas.fa-pull-right,
.far.fa-pull-right,
.fal.fa-pull-right,
.fab.fa-pull-right {
	margin-left: .3em;
}
.fa-spin {
	-webkit-animation: fa-spin 2s infinite linear;
	animation: fa-spin 2s infinite linear;
}
.fa-pulse {
	-webkit-animation: fa-spin 1s infinite steps(8);
	animation: fa-spin 1s infinite steps(8);
}
@-webkit-keyframes fa-spin {
	0% {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
	}
	100% {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}
@keyframes fa-spin {
	0% {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
	}
	100% {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}
.fa-rotate-90 {
	-ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";
	-webkit-transform: rotate(90deg);
	-ms-transform: rotate(90deg);
	transform: rotate(90deg);
}
.fa-rotate-180 {
	-ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";
	-webkit-transform: rotate(180deg);
	-ms-transform: rotate(180deg);
	transform: rotate(180deg);
}
.fa-rotate-270 {
	-ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";
	-webkit-transform: rotate(270deg);
	-ms-transform: rotate(270deg);
	transform: rotate(270deg);
}
.fa-flip-horizontal {
	-ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";
	-webkit-transform: scale(-1, 1);
	-ms-transform: scale(-1, 1);
	transform: scale(-1, 1);
}
.fa-flip-vertical {
	-ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";
	-webkit-transform: scale(1, -1);
	-ms-transform: scale(1, -1);
	transform: scale(1, -1);
}
.fa-flip-both,
.fa-flip-horizontal.fa-flip-vertical {
	-ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";
	-webkit-transform: scale(-1, -1);
	-ms-transform: scale(-1, -1);
	transform: scale(-1, -1);
}
:root .fa-rotate-90,
:root .fa-rotate-180,
:root .fa-rotate-270,
:root .fa-flip-horizontal,
:root .fa-flip-vertical,
:root .fa-flip-both {
	-webkit-filter: none;
	filter: none;
}
.fa-stack {
	display: inline-block;
	height: 2em;
	line-height: 2em;
	position: relative;
	vertical-align: middle;
	width: 2.5em;
}
.fa-stack-1x,
.fa-stack-2x {
	left: 0;
	position: absolute;
	text-align: center;
	width: 100%;
}
.fa-stack-1x {
	line-height: inherit;
}
.fa-stack-2x {
	font-size: 2em;
}
.fa-inverse {
	color: #fff;
}
.fa-angle-down:before {
	content: "\f107";
}
.fa-angle-left:before {
	content: "\f104";
}
.fa-angle-right:before {
	content: "\f105";
}
.fa-angle-up:before {
	content: "\f106";
}
.fa-arrows-alt-h:before {
	content: "\f337";
}
.fa-arrows-alt-v:before {
	content: "\f338";
}
.fa-arrows-h:before {
	content: "\f07e";
}
.fa-arrows-v:before {
	content: "\f07d";
}
.fa-chevron-down:before {
	content: "\f078";
}
.fa-chevron-left:before {
	content: "\f053";
}
.fa-chevron-right:before {
	content: "\f054";
}
.fa-chevron-up:before {
	content: "\f077";
}
.fa-facebook-f:before {
	content: "\f39e";
}
.fa-file:before {
	content: "\f15b";
}
.fa-file-alt:before {
	content: "\f15c";
}
.fa-file-pdf:before {
	content: "\f1c1";
}
.fa-instagram:before {
	content: "\f16d";
}
.fa-linkedin-in:before {
	content: "\f0e1";
}
.fa-minus:before {
	content: "\f068";
}
.fa-minus-circle:before {
	content: "\f056";
}
.fa-pinterest-p:before {
	content: "\f231";
}
.fa-plus:before {
	content: "\f067";
}
.fa-plus-circle:before {
	content: "\f055";
}
.fa-rss:before {
	content: "\f09e";
}
.fa-search:before {
	content: "\f002";
}
.fa-twitter:before {
	content: "\f099";
}
.fa-x-twitter:before {
	content: "\e61b";
}
.fa-xing:before {
	content: "\f168";
}
.fa-youtube:before {
	content: "\f167";
}
.sr-only {
	border: 0;
	clip: rect(0, 0, 0, 0);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute;
	width: 1px;
}
.sr-only-focusable:active,
.sr-only-focusable:focus {
	clip: auto;
	height: auto;
	margin: 0;
	overflow: visible;
	position: static;
	width: auto;
}
/*!
 * Font Awesome Pro 5.13.0 by @fontawesome - https://fontawesome.com
 * License - https://fontawesome.com/license (Commercial License)
 */
@font-face {
	font-family: 'Font Awesome 5 Pro';
	font-style: normal;
	font-weight: 300;
	font-display: block;
	src: url("assets/fonts/fontawesome-pro/fa-light-300.eot");
	src: url("assets/fonts/fontawesome-pro/fa-light-300.eot?#iefix") format("embedded-opentype"), url("assets/fonts/fontawesome-pro/fa-light-300.woff2") format("woff2"), url("assets/fonts/fontawesome-pro/fa-light-300.woff") format("woff"), url("assets/fonts/fontawesome-pro/fa-light-300.ttf") format("truetype"), url("assets/fonts/fontawesome-pro/fa-light-300.svg#fontawesome") format("svg");
}
.fal {
	font-family: 'Font Awesome 5 Pro';
	font-weight: 300;
}
/*!
 * Font Awesome Pro 5.13.0 by @fontawesome - https://fontawesome.com
 * License - https://fontawesome.com/license (Commercial License)
 */
@font-face {
	font-family: 'Font Awesome 5 Pro';
	font-style: normal;
	font-weight: 400;
	font-display: block;
	src: url("assets/fonts/fontawesome-pro/fa-regular-400.eot");
	src: url("assets/fonts/fontawesome-pro/fa-regular-400.eot?#iefix") format("embedded-opentype"), url("assets/fonts/fontawesome-pro/fa-regular-400.woff2") format("woff2"), url("assets/fonts/fontawesome-pro/fa-regular-400.woff") format("woff"), url("assets/fonts/fontawesome-pro/fa-regular-400.ttf") format("truetype"), url("assets/fonts/fontawesome-pro/fa-regular-400.svg#fontawesome") format("svg");
}
.far {
	font-family: 'Font Awesome 5 Pro';
	font-weight: 400;
}
/*!
 * Font Awesome Pro 5.13.0 by @fontawesome - https://fontawesome.com
 * License - https://fontawesome.com/license (Commercial License)
 */
@font-face {
	font-family: 'Font Awesome 5 Pro';
	font-style: normal;
	font-weight: 900;
	font-display: block;
	src: url("assets/fonts/fontawesome-pro/fa-solid-900.eot");
	src: url("assets/fonts/fontawesome-pro/fa-solid-900.eot?#iefix") format("embedded-opentype"), url("assets/fonts/fontawesome-pro/fa-solid-900.woff2") format("woff2"), url("assets/fonts/fontawesome-pro/fa-solid-900.woff") format("woff"), url("assets/fonts/fontawesome-pro/fa-solid-900.ttf") format("truetype"), url("assets/fonts/fontawesome-pro/fa-solid-900.svg#fontawesome") format("svg");
}
.fa,
.fas {
	font-family: 'Font Awesome 5 Pro';
	font-weight: 900;
}
/*!
 * Font Awesome Pro 5.13.0 by @fontawesome - https://fontawesome.com
 * License - https://fontawesome.com/license (Commercial License)
 */
@font-face {
	font-family: 'Font Awesome 5 Brands';
	font-style: normal;
	font-weight: 400;
	font-display: block;
	src: url('assets/fonts/fontawesome/fa-brands-400.woff2') format('woff2'), url('assets/fonts/fontawesome/fa-brands-400.ttf') format('truetype');
}
.fab {
	font-family: 'Font Awesome 5 Brands';
	font-weight: 400;
}

/* dm-sans-500 - latin */
@font-face {
	font-display: swap;
	font-family: 'DM Sans';
	font-style: normal;
	font-weight: 500;
	src: url('assets/fonts/dm-sans/dm-sans-v15-latin-500.woff2') format('woff2');

	/* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
	/* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* dm-sans-700 - latin */
@font-face {
	font-display: swap;
	font-family: 'DM Sans';
	font-style: normal;
	font-weight: 700;
	src: url('assets/fonts/dm-sans/dm-sans-v15-latin-700.woff2') format('woff2');

	/* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
	/* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* open-sans-regular - latin */
@font-face {
	font-display: swap;
	font-family: 'Open Sans';
	font-style: normal;
	font-weight: 400;
	src: url('assets/fonts/open-sans/open-sans-v40-latin-regular.woff2') format('woff2');

	/* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
	/* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* open-sans-700 - latin */
@font-face {
	font-display: swap;
	font-family: 'Open Sans';
	font-style: normal;
	font-weight: 700;
	src: url('assets/fonts/open-sans/open-sans-v40-latin-700.woff2') format('woff2');

	/* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
	/* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

.container,
.container-narrow,
.container-large,
.container-wide {
	margin-right: auto;
	margin-left: auto;
	padding-left: 20px;
	padding-right: 20px;
	width: 100%;
	max-width: 1180px;
}
@media (min-width: 64.0625em) {
	.container,
	.container-narrow,
	.container-large,
	.container-wide {
		padding-left: 25px;
		padding-right: 25px;
	}
}
.container .container,
.container-narrow .container,
.container-large .container,
.container-wide .container {
	padding-left: 0 !important;
	padding-right: 0 !important;
}
.container-narrow {
	max-width: 950px;
}
.container-large {
	max-width: 1600px;
}
.container-wide {
	max-width: 100%;
}
.mb-s {
	margin-bottom: 50px;
}
.row {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	margin: 0 -20px;
}
@media (min-width: 64.0625em) {
	.row {
		margin: 0 -25px;
	}
}
.row .col {
	width: 100%;
	position: relative;
}
@media (min-width: 33.0625em) {
	.row .col {
		width: 49.9%;
	}
}
@media (min-width: 33.0625em) {
	.row-two .col {
		width: 49.9%;
	}
}
.row-scroll {
	margin-bottom: 20px;
}
@media (min-width: 64.0625em) {
	.row-scroll {
		margin-bottom: 80px;
	}
}
@media (max-width: 64em) {
	.row-one > .col {
		width: 100%;
	}
}
.row-one-wide > .col {
	width: 75%;
}
@media (max-width: 64em) {
	.row-one-wide > .col {
		width: 100%;
	}
}
@media (min-width: 48.0625em) {
	.row-two-small {
		padding: 0 17.5%;
	}
}
@media (min-width: 64.0625em) {
	.row-three > .col {
		width: 33.2%;
	}
}
@media (max-width: 64em) {
	.row-three > .col:last-child {
		width: 100%;
	}
}
@media (min-width: 33.0625em) {
	.row-charts > .col {
		width: 100%;
	}
}
@media (min-width: 48.0625em) {
	.row-charts > .col {
		width: 50%;
	}
}
@media (min-width: 64.0625em) {
	.row-charts > .col {
		width: 33%;
	}
}
@media (min-width: 48.0625em) {
	.row-four > .col {
		width: 24.9%;
	}
}
@media (min-width: 48.0625em) {
	.row-five > .col {
		width: 33.3%;
	}
}
@media (min-width: 75.0625em) {
	.row-five > .col {
		width: 20%;
	}
}
@media (min-width: 48.0625em) {
	.row-footer > .col {
		width: 20%;
	}
	.row-footer > .col:first-child {
		width: 40%;
	}
}
@media (min-width: 33.0625em) {
	.row-two-one > .col:first-child {
		width: 66.4%;
	}
}
@media (min-width: 33.0625em) {
	.row-two-one > .col:last-child {
		width: 33.2%;
	}
}
@media (min-width: 33.0625em) {
	.row-two-one-overlay > .col:first-child {
		width: 60%;
	}
}
@media (min-width: 33.0625em) {
	.row-two-one-overlay > .col:last-child {
		width: 40%;
	}
}
@media (min-width: 48.0625em) {
	.row-one-two > .col:first-child {
		width: 33.2%;
	}
}
@media (min-width: 48.0625em) {
	.row-one-two > .col:last-child {
		width: 66.4%;
	}
}
.col {
	padding-left: 20px;
	padding-right: 20px;
}
@media (min-width: 64.0625em) {
	.col {
		padding-left: 25px;
		padding-right: 25px;
	}
}
.clearfix:before,
.clearfix:after,
.container:before,
.container:after,
.container-fluid:before,
.container-fluid:after,
.row:before,
.row:after {
	content: " ";
	display: table;
}
.clearfix:after,
.container:after,
.container-fluid:after,
.row:after {
	clear: both;
}
.hide {
	display: none !important;
}
.show {
	display: block !important;
}
.invisible {
	visibility: hidden;
}
.text-hide {
	font: 0/0 a;
	color: transparent;
	text-shadow: none;
	background-color: transparent;
	border: 0;
}
.hidden {
	display: none !important;
}
.affix {
	position: fixed;
}

@font-face {
	font-family: 'icons';
	src: url('assets/fonts/icons/icons.eot?qp33ye');
	src: url('assets/fonts/icons/icons.eot?qp33ye#iefix') format('embedded-opentype'), url('assets/fonts/icons/icons.ttf?qp33ye') format('truetype'), url('assets/fonts/icons/icons.woff?qp33ye') format('woff'), url('assets/fonts/icons/icons.svg?qp33ye#icons') format('svg');
	font-weight: normal;
	font-style: normal;
	font-display: block;
}
[class^="icon-"],
[class*=" icon-"] {
	/* use !important to prevent issues with browser extensions that change fonts */
	font-family: 'icons' !important;
	speak: never;
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	line-height: 1;
	/* Better Font Rendering =========== */
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}
.icon-close:before {
	content: "\e900";
}
.icon-down:before {
	content: "\e901";
}
.icon-plus:before {
	content: "\e902";
}

.l-wrapper {
	padding-top: 60px;
}
@media (min-width: 48.0625em) {
	.l-wrapper {
		padding-top: 80px;
	}
}
.l-header {
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	z-index: 10;
	background: #ffffff;
	padding: 16px 0 0;
	min-height: 60px;
	-webkit-transition: all 300ms ease;
	transition: all 300ms ease;
	font-family: 'DM Sans', arial, sans-serif;
	font-weight: 500;
}
.invert-menu .l-header {
	background: #333333;
}
@media (min-width: 48.0625em) {
	.l-header {
		padding-top: 17px;
		padding-bottom: 0;
		min-height: 80px;
	}
}
@media (min-width: 48.0625em) {
	.hide-header .l-header {
		top: -100px;
	}
}
.is-scrolled .l-header {
	box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
}
.l-header .container,
.l-header .container-wide {
	position: relative;
}
.l-emotion {
	margin: 0 auto;
}
.show-menu .l-emotion {
	filter: blur(5px);
}
.l-main {
	position: relative;
	z-index: 0;
}
.show-menu .l-main {
	filter: blur(5px);
}
.l-main > .container {
	position: relative;
	padding-top: 20px;
	padding-bottom: 20px;
	border-radius: 3px;
}
@media (min-width: 48.0625em) {
	.l-main > .container {
		padding-top: 30px;
		padding-bottom: 30px;
	}
}
.l-footer {
	position: relative;
	z-index: 2;
	background: #333333;
	padding: 80px 0;
	color: #d4d4d2;
	text-align: center;
}
@media (min-width: 48.0625em) {
	.l-footer {
		text-align: left;
	}
}
.show-menu .l-footer {
	filter: blur(5px);
}
@media (max-width: 64em) {
	.l-footer .container {
		width: 75%;
		margin: 0 auto;
	}
}
@media (min-width: 48.0625em) {
	.l-footer .row {
		margin-bottom: 40px;
	}
}
.l-footer * {
	color: #ffffff;
}
.l-footer a {
	color: #85be00;
}
.l-footer a:hover,
.l-footer a:active,
.l-footer a:focus {
	color: #ffffff;
}
.l-overlay {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	overflow-y: scroll;
	background: #333333;
	z-index: 12;
}
.l-overlay .overlay-header {
	min-height: 60px;
	background: #333333;
	position: fixed;
	left: 0;
	width: 100%;
	z-index: 13;
	padding-top: 16px;
}
@media (min-width: 48.0625em) {
	.l-overlay .overlay-header {
		padding-top: 17px;
		min-height: 80px;
	}
}
.l-overlay .overlay-header .logo {
	height: auto;
	width: 127px;
	float: left;
}
@media (min-width: 48.0625em) {
	.l-overlay .overlay-header .logo {
		width: 150px;
	}
}
.l-overlay .overlay-header .link-close {
	z-index: 15;
	color: #ffffff;
	float: right;
	margin-top: 5px;
}
.l-overlay .overlay-header .link-close .menu-trigger {
	position: static;
}
.l-overlay .overlay-header .link-close .menu-trigger span {
	background: #ffffff;
}
.show-overlay .l-overlay {
	display: block;
}
@media (max-width: 64em) {
	.l-overlay section {
		padding-top: 100px;
	}
}
.l-overlay .container {
	display: none;
}
.l-overlay blockquote {
	color: #85be00;
}
.l-overlay .text strong {
	color: #85be00;
}
.l-overlay .overlay-image {
	width: 85%;
	height: auto;
}

.mod-accordion {
	border-top: 1px solid #333333;
	margin-bottom: 40px;
}
@media (min-width: 48.0625em) {
	.mod-accordion {
		margin-bottom: 60px;
	}
}
.mod-accordion .accordion-item {
	border-bottom: 1px solid #333333;
}
.mod-accordion h3 {
	position: relative;
	cursor: pointer;
	font-family: 'DM Sans', arial, sans-serif;
	font-weight: 500;
	padding: 20px 80px 20px 0;
}
.mod-accordion h3:before {
	content: "\e902";
	position: absolute;
	/* use !important to prevent issues with browser extensions that change fonts */
	font-family: 'icons' !important;
	speak: never;
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	line-height: 1;
	/* Better Font Rendering =========== */
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	-webkit-transition: all 300ms ease-in-out;
	transition: all 300ms ease-in-out;
	font-size: 40px;
	line-height: 40px;
	top: 50%;
	-webkit-transform: translate(0, -50%);
	-ms-transform: translate(0, -50%);
	transform: translate(0, -50%);
	right: 10px;
}
@media (min-width: 48.0625em) {
	.mod-accordion h3:before {
		right: 32px;
	}
}
.mod-accordion h3:hover {
	color: #85be00;
}
.mod-accordion h3:hover:before {
	color: #85be00;
}
.mod-accordion h3.is-open {
	color: #85be00;
}
.mod-accordion h3.is-open:before {
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
	top: 18px;
}
.mod-accordion .accordion-content {
	display: none;
	padding: 15px 0;
}
@media (min-width: 48.0625em) {
	.mod-accordion .accordion-content {
		padding: 30px 0 15px;
	}
}
.mod-accordion .accordion-content img {
	width: 100%;
	height: auto;
}

.mod-ceo {
	margin-top: -10px;
}
.mod-ceo .swiper-container {
	padding-top: 35px;
	padding-bottom: 20px;
}
@media (min-width: 33.0625em) {
	.mod-ceo .swiper-container {
		padding-left: 20px;
		padding-right: 20px;
	}
}
@media (min-width: 48.0625em) {
	.mod-ceo .swiper-container {
		padding-top: 55px;
		padding-left: 12px;
		padding-right: 0;
	}
}
.mod-ceo .swiper-navigation {
	position: absolute;
	left: 46.5%;
	top: 0;
	width: 80px;
	height: 40px;
	z-index: 2;
}
@media (min-width: 48.0625em) {
	.mod-ceo .swiper-navigation {
		margin-left: -160px;
	}
}
@media (max-width: 48em) {
	.mod-ceo .swiper-navigation {
		left: 50%;
		-webkit-transform: translate(-50%, 0);
		-ms-transform: translate(-50%, 0);
		transform: translate(-50%, 0);
	}
}
.mod-ceo .swiper-navigation .ceo-button-next,
.mod-ceo .swiper-navigation .ceo-button-prev {
	position: absolute;
	top: 0;
}
.mod-ceo .swiper-navigation .ceo-button-next svg path,
.mod-ceo .swiper-navigation .ceo-button-prev svg path {
	-webkit-transition: all 300ms ease;
	transition: all 300ms ease;
}
.mod-ceo .swiper-navigation .ceo-button-next.swiper-button-disabled,
.mod-ceo .swiper-navigation .ceo-button-prev.swiper-button-disabled {
	opacity: 1;
	-ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=100);
	filter: alpha(opacity=100);
}
.mod-ceo .swiper-navigation .ceo-button-next.swiper-button-disabled svg path,
.mod-ceo .swiper-navigation .ceo-button-prev.swiper-button-disabled svg path {
	fill: #949090;
}
.mod-ceo .swiper-navigation .ceo-button-next:not(.swiper-button-disabled):hover svg path,
.mod-ceo .swiper-navigation .ceo-button-prev:not(.swiper-button-disabled):hover svg path {
	fill: #85be00;
}
.mod-ceo .swiper-navigation .ceo-button-next {
	right: 0;
}
.mod-ceo .swiper-navigation .ceo-button-prev {
	left: 0;
}
.mod-ceo .ceo-swiper-wrapper {
	position: relative;
}
.mod-ceo .swiper-image {
	text-align: center;
	background: #333333;
	margin-bottom: 40px;
}
@media (min-width: 48.0625em) {
	.mod-ceo .swiper-image {
		display: block;
		width: 250px;
		float: left;
		margin: 55px 20px 0 0;
	}
}
.mod-ceo .swiper-image img {
	width: 180px;
	max-width: 300px;
	height: auto;
}
@media (min-width: 48.0625em) {
	.mod-ceo .swiper-image img {
		width: 100%;
	}
}
.mod-ceo .swiper-slide {
	height: auto;
}
@media (min-width: 33.0625em) {
	.mod-ceo .swiper-slide-text {
		box-shadow: 0 0 17px rgba(0, 0, 0, 0.4);
	}
}
.mod-ceo .swiper-slide-text .slide-text {
	padding: 20px;
}
.mod-ceo .slide-image {
	text-align: center;
	width: 100%;
}
@media (max-width: 48em) {
	.mod-ceo .slide-image {
		display: none;
	}
}
.mod-ceo .slide-image img {
	max-width: 300px;
}
@media (min-width: 48.0625em) {
	.mod-ceo .slide-image img {
		max-width: 330px;
	}
}
.mod-ceo h3 {
	color: #85be00;
	margin-bottom: 10px;
}

.mod-chart-horizontal {
	margin-bottom: 60px;
}
@media (min-width: 48.0625em) {
	.mod-chart-horizontal h4 {
		margin-bottom: 0;
	}
}
@media (min-width: 64.0625em) {
	.mod-chart-horizontal h4.large-space {
		margin-bottom: 30px;
	}
}
.mod-chart-horizontal h4 span {
	font-family: 'Open Sans', arial, sans-serif;
	font-weight: 400;
}
.mod-chart-horizontal table th,
.mod-chart-horizontal table td {
	padding: 5px 0;
	vertical-align: middle;
}
.mod-chart-horizontal table th {
	width: 30px;
}
.mod-chart-horizontal table td {
	white-space: nowrap;
}
.mod-chart-horizontal table .bar {
	text-align: right;
	position: relative;
	display: block;
	width: 80px;
	padding: 20px 10px;
	color: #333333;
	background: #d4d4d2;
	overflow: hidden;
}
.mod-chart-horizontal table .bar .nr {
	color: #333333;
}
.mod-chart-horizontal table tr:last-child th {
	color: #85be00;
}
.mod-chart-horizontal table tr:last-child td {
	font-family: 'Open Sans', arial, sans-serif;
	font-weight: 700;
}
.mod-chart-horizontal table tr:last-child .bar {
	background: #85be00;
	background: linear-gradient(90deg, #006443 0%, #85be00 100%);
}
.section-color .mod-chart-horizontal table tr:last-child th {
	color: #333333;
}
.section-color .mod-chart-horizontal table tr:last-child .bar {
	background: #85be00;
	background: linear-gradient(90deg, #006443 0%, #85be00 100%);
}
.mod-chart-horizontal hr {
	height: 1px;
	background: #ffffff;
	width: 100%;
	margin: 0 0 10px;
}

.mod-chart-vertical {
	margin-bottom: 40px;
}
@media (min-width: 48.0625em) {
	.mod-chart-vertical {
		margin-bottom: 60px;
	}
}
@media (min-width: 48.0625em) {
	.mod-chart-vertical h4 {
		margin-bottom: 0;
	}
}
@media (min-width: 64.0625em) {
	.mod-chart-vertical h4.large-space {
		margin-bottom: 30px;
	}
}
.mod-chart-vertical h4 span {
	font-family: 'Open Sans', arial, sans-serif;
	font-weight: 400;
}
.mod-chart-vertical .table {
	margin: 0 -7px;
}
.mod-chart-vertical table {
	text-align: center;
	font-size: 16px;
	margin-bottom: 10px;
}
@media (min-width: 48.0625em) {
	.mod-chart-vertical table {
		font-size: 1em;
		margin-bottom: 20px;
	}
}
.mod-chart-vertical table td {
	width: 20%;
	padding: 0 7px;
}
.mod-chart-vertical table th {
	color: #ffffff;
	text-align: center;
}
.mod-chart-vertical table .row-bars td,
.mod-chart-vertical table .row-bars-minus td {
	vertical-align: bottom;
	height: 175px;
}
@media (min-width: 48.0625em) {
	.mod-chart-vertical table .row-bars td,
	.mod-chart-vertical table .row-bars-minus td {
		height: 200px;
	}
}
.mod-chart-vertical table .row-bars td:last-child .bar,
.mod-chart-vertical table .row-bars-minus td:last-child .bar {
	background: #85be00;
	background: linear-gradient(180deg, #85be00 0%, #006443 100%);
}
.mod-chart-vertical table .row-bars td.tiny .bar,
.mod-chart-vertical table .row-bars-minus td.tiny .bar {
	overflow: visible !important;
}
.mod-chart-vertical table .row-bars td.tiny .nr,
.mod-chart-vertical table .row-bars-minus td.tiny .nr {
	position: absolute;
	left: 0;
	top: -25px;
	width: 100%;
	display: block;
}
.mod-chart-vertical table .row-bars td.tiny .nr.nr-green,
.mod-chart-vertical table .row-bars-minus td.tiny .nr.nr-green {
	color: #85be00;
}
.mod-chart-vertical table .row-bars td:not(.tiny) .bar,
.mod-chart-vertical table .row-bars-minus td:not(.tiny) .bar {
	padding-top: 10px;
}
.mod-chart-vertical table .row-bars .bar,
.mod-chart-vertical table .row-bars-minus .bar {
	position: relative;
	display: block;
	height: 0;
	width: 100%;
	background: #949090;
	max-height: 175px !important;
	overflow: hidden;
}
@media (min-width: 48.0625em) {
	.mod-chart-vertical table .row-bars .bar,
	.mod-chart-vertical table .row-bars-minus .bar {
		max-height: 200px !important;
	}
}
.mod-chart-vertical table .row-bars .bar img,
.mod-chart-vertical table .row-bars-minus .bar img {
	width: 100%;
	vertical-align: top;
	height: auto;
}
.mod-chart-vertical table .row-bars .bar.bar-long:before,
.mod-chart-vertical table .row-bars-minus .bar.bar-long:before {
	content: "";
	position: absolute;
	top: 40%;
	left: -20%;
	right: -20%;
	height: 5px;
	background: #ffffff;
	-webkit-transform: rotate(-40deg);
	-ms-transform: rotate(-40deg);
	transform: rotate(-40deg);
}
.mod-chart-vertical table .row-bars-minus td {
	vertical-align: top;
	height: 100px;
}
@media (min-width: 48.0625em) {
	.mod-chart-vertical table .row-bars-minus td {
		height: 100px;
	}
}
.mod-chart-vertical table .bar-cell {
	vertical-align: bottom;
	height: 300px;
}
.mod-chart-vertical table .bar-cell .bar {
	display: block;
	height: 175px;
	width: 100%;
}
@media (min-width: 48.0625em) {
	.mod-chart-vertical table .bar-cell .bar {
		height: 300px;
	}
}
.mod-chart-vertical table .row-years th {
	padding-top: 8px;
}
@media (min-width: 48.0625em) {
	.mod-chart-vertical table .row-years th {
		padding-top: 15px;
		padding-bottom: 5px;
	}
}
.mod-chart-vertical table .row-years th:last-child {
	color: #85be00;
}
.mod-chart-vertical table .row-data {
	display: none;
}
.mod-chart-vertical table.chart-horizontal th {
	width: 50px;
	padding: 10px;
}
.mod-chart-vertical table.chart-horizontal td {
	padding: 10px;
}
.mod-chart-vertical table.chart-horizontal .bar {
	position: relative;
	display: block;
	height: 0;
	width: 100%;
	background: #949090;
	max-height: 175px !important;
	overflow: hidden;
}
@media (min-width: 48.0625em) {
	.mod-chart-vertical table.chart-horizontal .bar {
		max-height: 200px !important;
	}
}
.mod-chart-vertical hr {
	height: 1px;
	background: #ffffff;
	width: 100%;
	margin: 0 0 10px;
	display: none;
}



@media (min-width: 48.0625em) {
	.commitments__wrapper {
		display: grid;
		grid-gap: 30px;
		grid-template-columns: repeat(3, 30%);
		grid-template-rows: repeat(2, 350px);
		align-content: space-around;
		justify-content: space-between;
	}
}
@media (min-width: 64.0625em) {
	.commitments__wrapper {
		grid-template-rows: repeat(2, 480px);
	}
}
@media (min-width: 89.0625em) {
	.commitments__wrapper {
		grid-template-rows: repeat(2, 550px);
	}
}
.commitments__item {
	margin-bottom: 40px;
}
.commitments__item:nth-child(1) {
	grid-row: 1 / 3;
	grid-column: 1;
}
.commitments__item:nth-child(2) {
	grid-row: 1;
	grid-column: 2 / 5;
}
.commitments__item:nth-child(3) {
	grid-row: 2;
	grid-column: 2 / 5;
}
.commitments__logos-wrapper {
	padding: 30px;
	border: 2px dashed #85be00;
}
.commitments__item--commitments .commitments__logos-wrapper {
	max-width: 350px;
}

.mod-download .documents {
	width: 100%;
	font-family: 'DM Sans', arial, sans-serif;
	font-weight: 500;
}
.mod-download .doc-row {
	display: flex;
	width: 100%;
	position: relative;
	-webkit-transition: all 300ms ease;
	transition: all 300ms ease;
	color: #4d4f53;
	font-size: 24px;
	line-height: 28px;
}
@media (min-width: 48.0625em) {
	.mod-download .doc-row {
		font-size: 30px;
		line-height: 38px;
	}
}
.mod-download .doc-row:hover {
	color: #85be00;
	background: #ffffff;
}
.mod-download .doc-row:hover .doc-cell {
	border-color: #85be00;
}
.mod-download .doc-row:hover + .doc-row .doc-cell {
	border-color: #85be00;
}
.mod-download .doc-cell {
	text-align: center;
	padding: 20px 0;
	display: flex;
	align-items: center;
	border-top: 1px solid #4d4f53;
	border-bottom: 1px solid #4d4f53;
	margin-top: -1px;
}
@media (max-width: 64em) {
	.mod-download .doc-cell {
		height: 97px;
	}
}
.mod-download .doc-cell:nth-child(1) {
	text-align: left;
	padding-left: 0;
	width: 89%;
}
.mod-download .doc-cell:nth-child(2) {
	padding-right: .5em;
	width: 11%;
}
.mod-download .doc-cell i {
	font-size: 40px;
}

.mod-figure {
	display: block;
	margin: 0 0 100px;
}
.mod-figure figure {
	padding: 0 25px;
}
@media (min-width: 48.0625em) {
	.mod-figure figure {
		padding: 0 50px;
	}
}
.mod-figure figure img {
	width: 100%;
	display: block;
	margin-bottom: 15px;
}

.mod-focus .focus-desc {
	margin-top: 30px;
	margin-bottom: 45px;
}
.mod-focus .focus-btn {
	margin-bottom: 30px;
}
@media (max-width: 33em) {
	.mod-focus .focus-btn {
		text-align: center;
	}
}
.mod-focus .col-img {
	text-align: center;
}
.mod-focus img.figure {
	max-width: 90%;
	margin-top: 10px;
}
@media (min-width: 48.0625em) {
	.mod-focus img.figure {
		float: right;
	}
}

.mod-footer .logo svg {
	height: 50px;
	width: auto;
}
.mod-footer .logo svg .cls-logo-footer,
.mod-footer .logo svg .cls-logo-footer-2,
.mod-footer .logo svg .cls-logo-footer-3 {
	fill: #fff;
}
.mod-footer .socialmedia {
	margin: 15px 0 30px;
}
.mod-footer .socialmedia li {
	display: inline-block;
	vertical-align: top;
	margin-right: 4px;
}
.mod-footer .socialmedia li a {
	display: block;
	color: #fff;
	text-align: center;
	border: 1px solid #fff;
	-webkit-border-radius: 50%;
	border-radius: 50%;
}
.mod-footer .socialmedia li a i {
	display: block;
	padding: 8px;
	width: 35px;
	height: 35px;
	font-size: 1em;
}
@media (max-width: 64em) {
	.mod-footer .sitemap {
		display: none;
	}
}
.mod-footer .sitemap a {
	display: block;
	color: #ffffff;
}

.mod-glance .chart-map {
	overflow: hidden;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin-bottom: 60px;
}
@media (min-width: 48.0625em) {
	.mod-glance .chart-map {
		margin-bottom: 100px;
	}
}
.mod-glance .chart-map img {
	max-width: 100%;
	height: auto;
}
.mod-glance .chart-map .chart {
	width: 100%;
}
@media (min-width: 48.0625em) {
	.mod-glance .chart-map .chart {
		width: 25%;
	}
}
@media (min-width: 64.0625em) {
	.mod-glance .chart-map .chart {
		width: 18.5%;
	}
}
@media (max-width: 48em) {
	.mod-glance .chart-map .chart {
		order: 2;
	}
}
.mod-glance .chart-map .chart h4 {
	margin-bottom: 35px;
}
.mod-glance .chart-map .chart .chart-image {
	position: relative;
	width: 100%;
	height: 0;
	padding-bottom: 50%;
	max-width: 50%;
	float: left;
}
@media (min-width: 48.0625em) {
	.mod-glance .chart-map .chart .chart-image {
		float: none;
		max-width: 100%;
		padding-bottom: 100%;
		margin-bottom: 40px;
	}
}
.mod-glance .chart-map .chart .chart-image .svg-wrapper,
.mod-glance .chart-map .chart .chart-image .percentages {
	position: absolute;
	left: 0;
	width: 100%;
	top: 0;
	height: 100%;
}
.mod-glance .chart-map .chart .chart-image .percentages li {
	color: #ffffff;
	font-family: 'Open Sans', arial, sans-serif;
	font-weight: 700;
	position: absolute;
	pointer-events: none;
}
.mod-glance .chart-map .chart .chart-image .percentages li:nth-child(1) {
	top: 6%;
	left: 55%;
}
.mod-glance .chart-map .chart .chart-image .percentages li:nth-child(2) {
	bottom: 25%;
	right: 7%;
}
.mod-glance .chart-map .chart .chart-image .percentages li:nth-child(3) {
	top: 37%;
	left: 2.5%;
}
@media (max-width: 64em) {
	.mod-glance .chart-map .chart dl {
		overflow: hidden;
		padding-top: 15px;
		font-size: 14px;
		padding-left: 20px;
	}
}
.mod-glance .chart-map .chart dl dt {
	width: 15px;
	height: 15px;
	margin: 12px 9px 0 0;
	background: #333333;
	float: left;
}
@media (min-width: 48.0625em) {
	.mod-glance .chart-map .chart dl dt {
		margin: 6px 6px 0 0;
	}
}
.mod-glance .chart-map .chart dl dt.light {
	background: #c5de9d;
}
.mod-glance .chart-map .chart dl dt.default {
	background: #85be00;
}
.mod-glance .chart-map .chart dl dt.dark {
	background: #006443;
}
.mod-glance .chart-map .chart dl dd {
	overflow: hidden;
	margin-bottom: 12px;
	line-height: 1.3;
}
@media (min-width: 48.0625em) {
	.mod-glance .chart-map .chart dl dd {
		margin-bottom: 23px;
	}
}
.mod-glance .chart-map .chart dl dd.light {
	color: #c5de9d;
}
.mod-glance .chart-map .chart dl dd.default {
	color: #85be00;
}
.mod-glance .chart-map .chart dl dd.dark {
	color: #006443;
}
.mod-glance .chart-map .map {
	position: relative;
	width: 100%;
	margin-bottom: 40px;
}
@media (max-width: 48em) {
	.mod-glance .chart-map .map {
		order: 1;
	}
}
@media (min-width: 48.0625em) {
	.mod-glance .chart-map .map {
		width: 75%;
	}
}
@media (min-width: 64.0625em) {
	.mod-glance .chart-map .map {
		width: 81%;
	}
}
.mod-glance .chart-map .map .pin-dark {
	display: none;
}
@media (min-width: 48.0625em) {
	.mod-glance .chart-map .map .map-legend {
		position: absolute;
		right: 0;
		bottom: -20px;
	}
}
.mod-glance .chart-map .map .map-legend .legend {
	font-family: 'Open Sans', arial, sans-serif;
	font-weight: 400;
	vertical-align: baseline;
}
.mod-glance .chart-map .map .map-legend .legend li {
	position: relative;
	white-space: nowrap;
	line-height: 20px;
	margin-bottom: 0;
	vertical-align: baseline;
}
.mod-glance .chart-map .map .map-legend .legend li img {
	height: 25px;
	width: auto;
	margin-right: 5px;
}
.mod-glance .facts {
	padding-top: 10px;
	display: flex;
	flex-wrap: wrap;
}
@media (min-width: 64.0625em) {
	.mod-glance .facts {
		justify-content: space-between;
	}
}
.mod-glance .facts .fact-item {
	width: 100%;
}
@media screen and (min-width: 360px) {
	.mod-glance .facts .fact-item {
		width: 50%;
	}
}
@media (min-width: 33.0625em) {
	.mod-glance .facts .fact-item {
		width: 33%;
	}
}
@media (min-width: 64.0625em) {
	.mod-glance .facts .fact-item {
		width: auto;
	}
}
.mod-glance .facts p {
	position: relative;
	color: #000;
	padding-left: 10px;
	line-height: 1.4;
	margin-bottom: 45px;
}
.mod-glance .facts p:before {
	display: block;
	content: "";
	position: absolute;
	left: -7px;
	top: -13px;
	width: 18px;
	height: 20px;
	overflow: hidden;
	background: url(assets/img/plus-green.svg) no-repeat;
}
@media (min-width: 48.0625em) {
	.mod-glance .facts p:before {
		top: -10px;
	}
}
.doughnutTip {
	position: absolute;
	min-width: 30px;
	max-width: 300px;
	padding: 5px 15px;
	border-radius: 1px;
	background: rgba(0, 0, 0, 0.8);
	color: #ddd;
	font-size: 17px;
	text-shadow: 0 1px 0 #000;
	text-transform: uppercase;
	text-align: center;
	line-height: 1.3;
	letter-spacing: .06em;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
	pointer-events: none;
}
.doughnutTip::after {
	position: absolute;
	left: 50%;
	bottom: -6px;
	content: "";
	height: 0;
	margin: 0 0 0 -6px;
	border-right: 5px solid transparent;
	border-left: 5px solid transparent;
	border-top: 6px solid rgba(0, 0, 0, 0.7);
	line-height: 0;
}
.doughnutSummary {
	position: absolute;
	top: 50%;
	left: 50%;
	color: #d5d5d5;
	text-align: center;
	text-shadow: 0 -1px 0 #111111;
	cursor: default;
}
.doughnutSummaryTitle {
	display: none;
	position: absolute;
	top: 50%;
	width: 100%;
	margin-top: -27%;
	font-size: 22px;
	letter-spacing: .06em;
}
.doughnutSummaryNumber {
	display: none;
	position: absolute;
	top: 50%;
	width: 100%;
	margin-top: -15%;
	font-size: 55px;
}
.chart2 path:hover {
	opacity: 0.65;
}

.mod-header .logo-link {
	position: absolute;
	width: 127px;
	-webkit-transition: all 300ms ease;
	transition: all 300ms ease;
}
.is-scrolled .mod-header .logo-link {
	margin-top: -5px;
}
@media (min-width: 48.0625em) {
	.mod-header .logo-link {
		width: 150px;
		margin-top: 10px;
	}
	.is-scrolled .mod-header .logo-link {
		margin-top: 2px;
	}
}
.mod-header .logo-link:before {
	display: block;
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 82%;
	height: 30%;
	background: #fff;
	-webkit-transition: all 300ms ease;
	transition: all 300ms ease;
}
.is-scrolled .mod-header .logo-link:before {
	background: transparent;
}
.mod-header .logo-link img {
	display: block;
	vertical-align: top;
}
.mod-header .logo-link img.logo-invert {
	display: none;
	position: absolute;
	left: 0;
	top: 0;
}
.invert-menu .mod-header .logo-link img.logo-invert {
	display: block;
}
.mod-header .site-title {
	display: none;
	font-family: 'DM Sans', arial, sans-serif;
	font-weight: 500;
	font-size: 25px;
	line-height: 1;
	-webkit-transition: all 600ms ease;
	transition: all 600ms ease;
	margin: -2px 0 0;
	color: #d4d4d2;
	opacity: 0;
	-ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=0);
	filter: alpha(opacity=0);
	width: 100%;
	text-align: center;
}
.is-scrolled .mod-header .site-title {
	opacity: 1;
	-ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=100);
	filter: alpha(opacity=100);
}
.invert-menu .mod-header .site-title {
	color: #4d4f53;
}
@media (min-width: 48.0625em) {
	.mod-header .site-title {
		display: block;
		padding-top: 11px;
	}
}
@media (min-width: 64.0625em) {
	.mod-header .site-title {
		font-size: 30px;
	}
}
.mod-header .menu-download {
	display: none;
	position: absolute;
	right: 100px;
	top: 2px;
	font-family: 'Open Sans', arial, sans-serif;
	font-weight: 400;
	color: #333333;
}
.invert-menu .mod-header .menu-download {
	color: #ffffff;
}
@media (min-width: 33.0625em) {
	.mod-header .menu-download {
		display: block;
	}
}
@media (min-width: 48.0625em) {
	.mod-header .menu-download {
		right: 155px;
		top: 10px;
	}
}
.mod-header .menu {
	position: fixed;
	top: 60px;
	bottom: 0;
	width: 100vw;
	padding: 20px;
	background: #333333;
	-webkit-transition: all 300ms ease;
	transition: all 300ms ease;
	right: 0;
	visibility: hidden;
	-webkit-transform: translate(100%, 0);
	-ms-transform: translate(100%, 0);
	transform: translate(100%, 0);
	-webkit-transition: visibility 0ms ease 1000ms, -webkit-transform 600ms cubic-bezier(0.3, 0.4, 0.25, 1) 300ms;
	transition: visibility 0ms ease 1000ms, -webkit-transform 600ms cubic-bezier(0.3, 0.4, 0.25, 1) 300ms;
	transition: transform 600ms cubic-bezier(0.3, 0.4, 0.25, 1) 300ms, visibility 0ms ease 1000ms;
	transition: transform 600ms cubic-bezier(0.3, 0.4, 0.25, 1) 300ms, visibility 0ms ease 1000ms, -webkit-transform 600ms cubic-bezier(0.3, 0.4, 0.25, 1) 300ms;
	overflow-y: scroll;
}
.show-menu .mod-header .menu {
	visibility: visible;
	-webkit-transform: translate(0, 0);
	-ms-transform: translate(0, 0);
	transform: translate(0, 0);
	-webkit-transition: visibility 0ms ease 0ms, -webkit-transform 600ms cubic-bezier(0.3, 0.4, 0.25, 1) 200ms;
	transition: visibility 0ms ease 0ms, -webkit-transform 600ms cubic-bezier(0.3, 0.4, 0.25, 1) 200ms;
	transition: transform 600ms cubic-bezier(0.3, 0.4, 0.25, 1) 200ms, visibility 0ms ease 0ms;
	transition: transform 600ms cubic-bezier(0.3, 0.4, 0.25, 1) 200ms, visibility 0ms ease 0ms, -webkit-transform 600ms cubic-bezier(0.3, 0.4, 0.25, 1) 200ms;
}
@media (min-width: 48.0625em) {
	.mod-header .menu {
		width: 33vw;
		top: 80px;
	}
}
@media (min-width: 75.0625em) {
	.mod-header .menu {
		padding: 30px;
	}
}
.show-menu .mod-header .menu {
	right: 0;
}
.mod-header .menu-list {
	clear: both;
	font-family: 'Open Sans', arial, sans-serif;
	font-weight: 400;
	margin-bottom: 10px;
	border-top: 1px solid #85be00;
}
@media (min-width: 75.0625em) {
	.mod-header .menu-list {
		margin-bottom: 20px;
	}
}
.show-menu .mod-header .menu-list {
	display: block;
}
.mod-header .menu-list li {
	border-bottom: 1px solid #85be00;
	opacity: 0;
	-webkit-transform: translate(200px, 0);
	-ms-transform: translate(200px, 0);
	transform: translate(200px, 0);
	-webkit-transition: opacity 400ms ease 0ms, -webkit-transform 0ms cubic-bezier(0.3, 0.4, 0.25, 1) 1000ms;
	transition: opacity 400ms ease 0ms, -webkit-transform 0ms cubic-bezier(0.3, 0.4, 0.25, 1) 1000ms;
	transition: transform 0ms cubic-bezier(0.3, 0.4, 0.25, 1) 1000ms, opacity 400ms ease 0ms;
	transition: transform 0ms cubic-bezier(0.3, 0.4, 0.25, 1) 1000ms, opacity 400ms ease 0ms, -webkit-transform 0ms cubic-bezier(0.3, 0.4, 0.25, 1) 1000ms;
}
.show-menu .mod-header .menu-list li {
	opacity: 100;
	-webkit-transform: translate(0, 0);
	-ms-transform: translate(0, 0);
	transform: translate(0, 0);
	-webkit-transition: opacity 600ms ease, -webkit-transform 600ms cubic-bezier(0.3, 0.4, 0.25, 1);
	transition: opacity 600ms ease, -webkit-transform 600ms cubic-bezier(0.3, 0.4, 0.25, 1);
	transition: transform 600ms cubic-bezier(0.3, 0.4, 0.25, 1), opacity 600ms ease;
	transition: transform 600ms cubic-bezier(0.3, 0.4, 0.25, 1), opacity 600ms ease, -webkit-transform 600ms cubic-bezier(0.3, 0.4, 0.25, 1);
}
.mod-header .menu-list li.active > a {
	color: #85be00;
}
.mod-header .menu-list li.active > a i {
	left: 0.6em;
	color: #85be00;
}
.mod-header .menu-list li:nth-child(1) {
	-webkit-transition-delay: 350ms;
	transition-delay: 350ms;
}
.mod-header .menu-list li:nth-child(2) {
	-webkit-transition-delay: 400ms;
	transition-delay: 400ms;
}
.mod-header .menu-list li:nth-child(3) {
	-webkit-transition-delay: 450ms;
	transition-delay: 450ms;
}
.mod-header .menu-list li:nth-child(4) {
	-webkit-transition-delay: 500ms;
	transition-delay: 500ms;
}
.mod-header .menu-list li:nth-child(5) {
	-webkit-transition-delay: 550ms;
	transition-delay: 550ms;
}
.mod-header .menu-list li:nth-child(6) {
	-webkit-transition-delay: 600ms;
	transition-delay: 600ms;
}
.mod-header .menu-list li:nth-child(7) {
	-webkit-transition-delay: 650ms;
	transition-delay: 650ms;
}
.mod-header .menu-list li:nth-child(8) {
	-webkit-transition-delay: 700ms;
	transition-delay: 700ms;
}
.mod-header .menu-list li:nth-child(9) {
	-webkit-transition-delay: 750ms;
	transition-delay: 750ms;
}
.mod-header .menu-list a {
	position: relative;
	display: block;
	color: #ffffff;
	font-size: 18px;
	line-height: 1.2;
	padding: .4em 1em;
	-webkit-transition: all 300ms ease;
	transition: all 300ms ease;
}
@media (min-width: 48.0625em) {
	.mod-header .menu-list a {
		font-size: 1.25vw;
		padding: .5em 1em;
	}
}
.mod-header .menu-list a i {
	position: absolute;
	left: .5em;
	top: .75em;
	font-size: .75em;
	-webkit-transition: all 300ms ease;
	transition: all 300ms ease;
}
@media (min-width: 48.0625em) {
	.mod-header .menu-list a i {
		top: 1em;
	}
}
.mod-header .menu-list a:hover {
	color: #85be00;
}
.mod-header .menu-list a:hover i {
	left: 0.6em;
	color: #85be00;
}
.mod-header .menu-list + h3 {
	font-family: 'Open Sans', arial, sans-serif;
	font-weight: 700;
	font-size: 15px;
	line-height: 1.2;
	color: #ffffff;
	margin-bottom: 10px;
	margin-top: 2em;
}
@media (min-width: 48.0625em) {
	.mod-header .menu-list + h3 {
		margin-top: 5em;
	}
}
.mod-header .small-menu-list {
	font-family: 'Open Sans', arial, sans-serif;
	font-weight: 400;
}
.mod-header .small-menu-list li a {
	position: relative;
	display: block;
	color: #ffffff;
	font-size: 15px;
	line-height: 1.2;
	-webkit-transition: all 300ms ease;
	transition: all 300ms ease;
	padding: 5px 0;
}
@media (min-width: 75.0625em) {
	.mod-header .small-menu-list li a {
		padding: 10px 0;
	}
}
.mod-header .small-menu-list li a:hover {
	color: #85be00;
}

.mod-letter .row-photos {
	margin-top: 40px;
}
@media (min-width: 48.0625em) {
	.mod-letter .row-photos {
		width: 80%;
		margin-top: 60px;
	}
}
@media (min-width: 48.0625em) {
	.mod-letter .row-photo {
		width: 50%;
	}
}
.mod-letter .row-photo figure {
	margin-bottom: 20px;
}
.mod-letter figure {
	margin-bottom: 40px;
}
.mod-letter figure .photo {
	width: 100%;
	margin-bottom: 15px;
}
@media (min-width: 48.0625em) {
	.mod-letter figure .photo {
		margin-bottom: 20px;
	}
}
.mod-letter figcaption p {
	margin-bottom: 0;
}
.mod-letter .text h3 {
	padding: 30px 0 10px;
}
.mod-letter .text p {
	margin-bottom: 20px;
}

.mod-performance {
	position: relative;
}
.mod-performance img {
	display: block;
	vertical-align: top;
}
.mod-performance h1 {
	margin: 0 0 20px;
}
@media (min-width: 64.0625em) {
	.mod-performance h1 {
		float: left;
	}
}
.mod-performance .lead {
	color: #85be00;
}
@media (max-width: 64em) {
	.mod-performance .row-three {
		margin-bottom: 40px;
	}
}
.mod-performance .performance-filter {
	overflow: hidden;
	margin-bottom: 30px;
	font-family: 'DM Sans', arial, sans-serif;
	font-weight: 500;
	font-size: 40px;
	line-height: 40px;
}
@media (min-width: 48.0625em) {
	.mod-performance .performance-filter {
		font-size: 60px;
		line-height: 60px;
		z-index: 1;
	}
}
@media (min-width: 64.0625em) {
	.mod-performance .performance-filter {
		float: right;
		min-width: 39%;
	}
}
.mod-performance .performance-filter .performance-toggler a {
	position: relative;
	display: block;
	color: #ffffff;
	padding: 0 0 0 40px;
	white-space: nowrap;
	-webkit-transition: all 300ms ease;
	transition: all 300ms ease;
}
.mod-performance .performance-filter .performance-toggler a:hover {
	color: #85be00;
}
.mod-performance .performance-filter .performance-toggler a:hover i {
	color: #85be00;
	left: 5px;
}
.mod-performance .performance-filter .performance-toggler a i {
	position: absolute;
	left: 0;
	top: 0;
	font-size: 1em;
	-webkit-transition: all 300ms ease;
	transition: all 300ms ease;
}
.mod-performance .performance-filter .performance-toggler a.is-active {
	color: #85be00;
}
.mod-performance .performance-filter .performance-toggler a.is-active i {
	color: #85be00;
}
.mod-performance .performance-wrapper {
	clear: both;
	position: relative;
}
.mod-performance .performance-item {
	display: none;
	padding-top: 40px;
}
@media (min-width: 48.0625em) {
	.mod-performance .performance-item {
		padding-top: 85px;
	}
}
.mod-performance .performance-item.performance-item-group {
	display: block;
}
.mod-performance .performance-item .intro {
	font-size: 28px;
	line-height: 36px;
	color: #85be00;
	margin-bottom: 30px;
	font-family: 'DM Sans', arial, sans-serif;
	font-weight: 500;
	clear: both;
}
@media (min-width: 48.0625em) {
	.mod-performance .performance-item .intro {
		font-size: 30px;
		line-height: 36px;
		margin-bottom: 60px;
	}
}
.mod-performance .performance-item .number-blocks {
	display: flex;
	flex-wrap: wrap;
	align-items: stretch;
}
.mod-performance .performance-item .number-blocks .number-block {
	width: 100%;
}
.mod-performance .performance-item .number-blocks .number-block:last-child {
	margin-bottom: 0;
}
@media (max-width: 48em) {
	.mod-performance .performance-item .performance-button {
		text-align: center;
	}
}
.mod-performance .performance-blockquote {
	margin-bottom: 35px;
}
@media (min-width: 48.0625em) {
	.mod-performance .performance-blockquote {
		margin-bottom: 70px;
	}
}
.mod-performance .performance-blockquote blockquote {
	color: #85be00;
	font-family: 'DM Sans', arial, sans-serif;
	font-weight: 500;
	font-size: 20px;
	line-height: 24px;
}
@media (min-width: 48.0625em) {
	.mod-performance .performance-blockquote blockquote {
		font-size: 30px;
		line-height: 35px;
	}
}
.mod-performance .quote-image {
	margin-bottom: 10px;
}
.mod-performance .fullname {
	color: #85be00;
}

.mod-presence {
	position: relative;
}
@media (min-width: 89.0625em) {
	.mod-presence .presence__header {
		position: absolute;
		right: 0;
		top: 0;
	}
}
@media (min-width: 89.0625em) {
	.mod-presence .presence__row {
		margin-top: -150px;
		align-items: end;
	}
}
.mod-presence p.small {
	font-size: 15px;
}



.mod-stage {
	position: relative;
	background: #004e5a;
	height: calc(100vh - 60px);
	overflow: hidden;
	background-size: cover;
	background-position: center;
}
@media (orientation: portrait) {
	.mod-stage {
		height: calc(100vh - 160px);
	}
}
@media (min-width: 48.0625em) {
	.mod-stage {
		height: calc(100vh - 120px);
	}
}
.mod-stage:before {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	width: 10px;
	background: -webkit-linear-gradient(90deg, #006443 0%, #85be00 100%);
}
.mod-stage img {
	width: 100%;
	height: auto;
}
.mod-stage .stage-overlay {
	position: absolute;
	width: 94%;
	left: 6%;
	bottom: 4%;
}
@media (min-width: 48.0625em) {
	.mod-stage .stage-overlay {
		left: 7%;
		width: 93%;
		bottom: 9%;
	}
}
.mod-stage .stage-overlay h1 {
	clear: both;
	font-size: 7.5vw;
	line-height: 1;
	font-family: 'DM Sans', arial, sans-serif;
	font-weight: 500;
	background: transparent;
	color: #ffffff;
	-webkit-background-clip: unset;
	-webkit-text-fill-color: #ffffff;
	margin: 0;
	text-shadow: 0 0 10px #333333;
}
@media (min-width: 64.0625em) {
	.mod-stage .stage-overlay h1 {
		padding: 2vw;
		font-size: 4.3vw;
	}
}

.mod-sustainability .sustainability-percent-table {
	border-collapse: separate;
	border-spacing: 10px;
	margin: 0 -10px;
	font-size: 24px;
	line-height: 28px;
	font-family: 'DM Sans', arial, sans-serif;
	font-weight: 500;
	margin-top: 20px;
}
@media (min-width: 48.0625em) {
	.mod-sustainability .sustainability-percent-table {
		font-size: 30px;
		line-height: 35px;
	}
}
@media (min-width: 48.0625em) {
	.mod-sustainability .sustainability-percent-table {
		border-spacing: 15px;
		margin: 0 -15px;
	}
}
.mod-sustainability .sustainability-percent-table th,
.mod-sustainability .sustainability-percent-table td {
	border-bottom: 1px solid #333333;
	position: relative;
	padding: 0 10px 10px 0;
	-webkit-transition: color 300ms ease, background 300ms ease;
	transition: color 300ms ease, background 300ms ease;
}
.mod-sustainability .sustainability-percent-table th h2,
.mod-sustainability .sustainability-percent-table td h2 {
	margin: 0;
}
@media (max-width: 64em) {
	.mod-sustainability .sustainability-percent-table th h2,
	.mod-sustainability .sustainability-percent-table td h2 {
		font-family: 'Open Sans', arial, sans-serif;
		font-weight: 700;
		font-size: 16px;
		line-height: 1.25;
		color: #333333;
	}
}
.mod-sustainability .sustainability-percent-table th h3,
.mod-sustainability .sustainability-percent-table td h3 {
	margin-top: -5px;
}
@media (max-width: 64em) {
	.mod-sustainability .sustainability-percent-table th h3,
	.mod-sustainability .sustainability-percent-table td h3 {
		font-family: 'Open Sans', arial, sans-serif;
		font-weight: 400;
		font-size: 16px;
		line-height: 1.25;
		color: #333333;
	}
}
.mod-sustainability .sustainability-percent-table th img,
.mod-sustainability .sustainability-percent-table td img {
	width: 30px;
	height: auto;
	float: left;
	margin: 0 4px 4px 0;
}
@media (min-width: 48.0625em) {
	.mod-sustainability .sustainability-percent-table th img,
	.mod-sustainability .sustainability-percent-table td img {
		width: 65px;
		margin-top: -5px;
	}
}
.mod-sustainability .sustainability-percent-table th:first-child,
.mod-sustainability .sustainability-percent-table td:first-child {
	margin-left: 0;
}
.mod-sustainability .sustainability-percent-table th.title-cell,
.mod-sustainability .sustainability-percent-table td.title-cell {
	width: 35%;
}
.mod-sustainability .sustainability-percent-table th.icon-cell,
.mod-sustainability .sustainability-percent-table td.icon-cell {
	width: 110px;
}
@media (min-width: 48.0625em) {
	.mod-sustainability .sustainability-percent-table th.icon-cell,
	.mod-sustainability .sustainability-percent-table td.icon-cell {
		width: 230px;
	}
}
.mod-sustainability .sustainability-percent-table th.social .bar,
.mod-sustainability .sustainability-percent-table td.social .bar {
	background: #85be00;
}
.mod-sustainability .sustainability-percent-table th.governance .bar,
.mod-sustainability .sustainability-percent-table td.governance .bar {
	background: #c5de9d;
}
.mod-sustainability .sustainability-percent-table .bar-cell .nr-wrapper {
	color: #006443;
}
.mod-sustainability .sustainability-percent-table .bar-cell.social .nr-wrapper {
	color: #85be00;
}
.mod-sustainability .sustainability-percent-table .bar-cell.governance .nr-wrapper {
	color: #c5de9d;
}
.mod-sustainability .sustainability-percent-table .percent-wrapper {
	display: flex;
}
.mod-sustainability .sustainability-percent-table .percent-wrapper .nr-wrapper {
	width: 120px;
}
.mod-sustainability .sustainability-percent-table .percent-wrapper .bar-wrapper {
	width: 100%;
}
@media (max-width: 64em) {
	.mod-sustainability .sustainability-percent-table .percent-wrapper .bar-wrapper {
		display: none;
	}
}
.mod-sustainability .sustainability-percent-table .percent-wrapper .bar {
	height: 30px;
	width: 1%;
	background: #006443;
}
.mod-sustainability .sustainability-percent-table .legend {
	font-size: 16px;
	line-height: 24px;
	font-family: 'Open Sans', arial, sans-serif;
	font-weight: 400;
}
.mod-sustainability .sustainability-percent-table .legend li {
	position: relative;
	margin-right: 0;
	padding-left: 16px;
	display: block;
}
@media (min-width: 48.0625em) {
	.mod-sustainability .sustainability-percent-table .legend li {
		padding-left: 40px;
		float: left;
		margin-right: 25px;
	}
}
.mod-sustainability .sustainability-percent-table .legend li:before {
	display: block;
	content: "";
	position: absolute;
	left: 0;
	top: 6px;
	width: 12px;
	height: 12px;
	background: #006443;
}
@media (min-width: 48.0625em) {
	.mod-sustainability .sustainability-percent-table .legend li:before {
		width: 24px;
		height: 24px;
		top: 0;
	}
}
.mod-sustainability .sustainability-percent-table .legend li.social:before {
	background: #85be00;
}
.mod-sustainability .sustainability-percent-table .legend li.governance:before {
	background: #c5de9d;
}
.mod-sustainability .sustainability-percent-table tfoot td {
	border: none;
}
.mod-sustainability ul.targets-icons {
	display: flex;
	flex-wrap: wrap;
	margin: 25px 0 20px;
}
.mod-sustainability ul.targets-icons li.item {
	display: flex;
	width: calc((100% - 10px) / 2);
	margin: 0 5px 5px 0;
}
.mod-sustainability ul.targets-icons li.item:nth-child(2n) {
	margin-right: 0;
}
@media (min-width: 48.0625em) {
	.mod-sustainability ul.targets-icons li.item {
		width: calc((100% - 30px) / 4);
		margin: 0 10px 10px 0;
	}
	.mod-sustainability ul.targets-icons li.item:nth-child(2n) {
		margin-right: 10px;
	}
	.mod-sustainability ul.targets-icons li.item:nth-child(4n) {
		margin-right: 0;
	}
}
.mod-sustainability ul.targets-keywords {
	color: #85be00;
	margin-bottom: 25px;
	font-size: 18px;
	line-height: 24px;
}
@media (min-width: 48.0625em) {
	.mod-sustainability ul.targets-keywords {
		margin-bottom: 35px;
		font-size: 30px;
		line-height: 35px;
	}
}
.mod-sustainability ul.targets-keywords li {
	position: relative;
	padding: 0 0 0 20px;
}
@media (min-width: 48.0625em) {
	.mod-sustainability ul.targets-keywords li {
		padding: 0 0 0 30px;
	}
}
.mod-sustainability ul.targets-keywords li::before {
	position: absolute;
	content: "–";
	left: 0;
}
.mod-sustainability .sustainability-table thead {
	background: #339933;
	background: linear-gradient(90deg, #85be00 0%, #006443 100%);
}
.mod-sustainability .sustainability-table thead th {
	padding: 5px;
	color: #ffffff;
	border-left: 5px solid #ffffff;
	border-right: 5px solid #ffffff;
	vertical-align: bottom;
}
.mod-sustainability .sustainability-table thead th:first-child {
	border-left: none;
}
.mod-sustainability .sustainability-table thead th:last-child {
	border-right: none;
}
.mod-sustainability .sustainability-table tbody {
	border-bottom: 2px dotted #333333;
}
.mod-sustainability .sustainability-table tbody .tr-section {
	border-top: 2px dotted #333333;
}
.mod-sustainability .sustainability-table tbody th,
.mod-sustainability .sustainability-table tbody td {
	padding-right: 5px;
}
.mod-sustainability .sustainability-table tbody th[rowspan],
.mod-sustainability .sustainability-table tbody td[rowspan] {
	padding-top: 10px;
}
.mod-sustainability .sustainability-table tbody th[rowspan] ~ td,
.mod-sustainability .sustainability-table tbody td[rowspan] ~ td {
	padding-top: 10px;
}
.mod-sustainability .sustainability-table tbody th {
	color: #339933;
}
.mod-sustainability .sustainability-table tbody td[rowspan] {
	padding-bottom: 10px;
}
.mod-sustainability .sustainability-table tbody ul:not(.esg-icons) li {
	position: relative;
	padding-left: 15px;
}
.mod-sustainability .sustainability-table tbody ul:not(.esg-icons) li:before {
	content: "–";
	position: absolute;
	left: 0;
	top: 0;
}
.mod-sustainability .sustainability-table tbody .esg-icons {
	display: flex;
	flex-wrap: wrap;
	gap: 5px;
}
.mod-sustainability .sustainability-table tbody .esg-icons img {
	width: 50px;
	height: auto;
	vertical-align: top;
}
.mod-sustainability .sustainability-table tbody dl {
	display: flex;
}
.mod-sustainability .sustainability-table tbody dl dt {
	width: 15px;
}
.mod-sustainability .sustainability-table tbody dl dd {
	flex-grow: 1;
	margin-left: 15px;
}
.mod-sustainability .sustainability-strategy-table th,
.mod-sustainability .sustainability-strategy-table td {
	padding: 20px 20px 20px 0;
	border-bottom: 1px dotted #333333;
}
.mod-sustainability .sustainability-strategy-table .icon-cell {
	width: 75px;
}
.mod-sustainability .sustainability-strategy-table .title-cell {
	padding-right: 20px;
}
.mod-sustainability .sustainability-strategy-table .desc-cell {
	color: #024028;
	font-family: 'DM Sans', arial, sans-serif;
	font-weight: 500;
	font-size: 25px;
	line-height: 30px;
}
.mod-sustainability .sustainability-material-topics-image {
	margin-bottom: 30px;
}
.mod-sustainability .sustainability-dimensions h4 {
	color: #85be00;
}
.mod-sustainability .sustainability-dimensions .dimension-item {
	border-bottom: 1px solid #333333;
}

.sg__overview {
	min-height: 800px;
	margin: 0 -10px;
}
.sg__grid-sizer-item,
.sg__item {
	width: 50%;
	margin-bottom: 20px;
	padding: 0 10px;
}
@media (min-width: 48.0625em) {
	.sg__grid-sizer-item,
	.sg__item {
		width: 25%;
	}
}
@media (min-width: 64.0625em) {
	.sg__grid-sizer-item,
	.sg__item {
		width: 16.6666%;
	}
}
.sg__grid-sizer-item--two,
.sg__item--two {
	width: 100%;
}
@media (min-width: 48.0625em) {
	.sg__grid-sizer-item--two,
	.sg__item--two {
		width: 75%;
	}
}
@media (min-width: 64.0625em) {
	.sg__grid-sizer-item--two,
	.sg__item--two {
		width: 33.3333%;
	}
}
.sg__grid-sizer-item {
	padding: 0;
	margin: 0;
}
.sg__item {
	min-height: 200px;
	display: flex;
	flex-direction: column;
	flex-wrap: wrap;
	justify-content: end;
}
@media (min-width: 33.0625em) {
	.sg__item {
		min-height: 300px;
	}
}
.sg__item .number-block {
	margin-bottom: 0;
}
.sg__item .number,
.sg__item .desc {
	color: #024028;
	background: transparent;
	-webkit-text-fill-color: inherit;
}
.sg__item .number span,
.sg__item .desc span {
	color: inherit !important;
}
.sg__item .number {
	font-size: 30px;
	line-height: 35px;
}
@media (min-width: 89.0625em) {
	.sg__item .number {
		font-size: 60px;
		line-height: 70px;
	}
}
.sg__item .desc {
	font-family: 'Open Sans', arial, sans-serif;
	font-weight: 700;
}
.sg__item .icon {
	height: 45px;
	width: auto;
}
.sg__item--image-dark .number,
.sg__item--image-dark .desc {
	color: #ffffff;
}
.sg__item--green .sg__content {
	background: #339933;
}
.sg__item--green .number,
.sg__item--green .desc {
	color: #024028;
}
.sg__item--green-light .sg__content {
	background: #85be00;
}
.sg__item--green-light .number,
.sg__item--green-light .desc {
	color: #024028;
}
.sg__item--green-dark .sg__content {
	background: #024028;
}
.sg__item--green-dark .number,
.sg__item--green-dark .desc {
	color: #85be00;
}
.sg__content {
	display: flex;
	flex-grow: 1;
	padding: 20px;
	align-items: end;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: right top;
}

.mod-swiper {
	margin-bottom: 60px;
}
@media (min-width: 48.0625em) {
	.mod-swiper {
		margin-bottom: 120px;
	}
}
.mod-swiper .swiper-container {
	height: 60vh;
}
@media (orientation: landscape) {
	.mod-swiper .swiper-container {
		height: 100vh;
	}
}
.mod-swiper .swiper-slide {
	position: relative;
	height: 60vh;
}
@media (orientation: landscape) {
	.mod-swiper .swiper-slide {
		height: 100vh;
	}
}
.mod-swiper .swiper-slide .slide-content {
	width: 100%;
	background-repeat: no-repeat;
	background-position: top center;
	background-size: contain;
	height: 60vh;
}
@media (orientation: landscape) {
	.mod-swiper .swiper-slide .slide-content {
		height: 100vh;
	}
}
.mod-swiper .swiper-slide h1 {
	position: absolute;
	visibility: hidden;
	width: 50%;
	left: 5%;
	color: transparent;
}
.mod-swiper img {
	width: 100%;
	height: auto;
	vertical-align: top;
}
.mod-swiper .swiper-pagination {
	right: 30px;
	top: 30px;
	-webkit-transform: translate(0, 0);
	-ms-transform: translate(0, 0);
	transform: translate(0, 0);
}
@media (min-width: 48.0625em) {
	.mod-swiper .swiper-pagination {
		right: 60px;
		top: 60px;
	}
}
.mod-swiper .swiper-pagination.swiper-pagination-bullets .swiper-pagination-bullet {
	width: 20px;
	height: 20px;
	background: #ffffff;
	margin: 10px 0;
	opacity: 0.5;
	-ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=50);
	filter: alpha(opacity=50);
	border: 1px solid #333333;
}
@media (min-width: 48.0625em) {
	.mod-swiper .swiper-pagination.swiper-pagination-bullets .swiper-pagination-bullet {
		margin: 20px 0;
	}
}
.mod-swiper .swiper-pagination.swiper-pagination-bullets .swiper-pagination-bullet.swiper-pagination-bullet-active {
	opacity: 1;
	-ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=100);
	filter: alpha(opacity=100);
}
.mod-swiper .pagination-wrapper {
	position: absolute;
	right: 0;
	top: 0;
}
.mod-swiper .pagination-wrapper .pagination {
	position: fixed;
	right: 10px;
	top: 10px;
	font-size: 1.4em;
	z-index: 10;
}
@media (min-width: 48.0625em) {
	.mod-swiper .pagination-wrapper .pagination {
		right: 60px;
		top: 60px;
	}
}
.mod-swiper .pagination-wrapper .pagination a {
	display: block;
	height: 20px;
	margin-bottom: 5px;
	color: white;
	position: relative;
	padding: 4px;
}
.mod-swiper .pagination-wrapper .pagination a.active:after {
	box-shadow: inset 0 0 0 5px;
}
.mod-swiper .pagination-wrapper .pagination a .hover-text {
	display: none;
	position: absolute;
	right: 15px;
	top: 7px;
	opacity: 0;
	-webkit-transition: opacity 0.5s ease;
	transition: opacity 0.5s ease;
	padding-right: 15px;
}
.mod-swiper .pagination-wrapper .pagination a:hover .hover-text {
	opacity: 1;
}
.mod-swiper .pagination-wrapper .pagination a:after {
	-webkit-transition: box-shadow 0.5s ease;
	transition: box-shadow 0.5s ease;
	width: 10px;
	height: 10px;
	display: block;
	border: 1px solid;
	border-radius: 50%;
	content: '';
	position: absolute;
	margin: auto;
	top: 0;
	right: 4px;
	bottom: 0;
}
.swiper-iframe {
	position: relative;
	height: 80vh;
	margin: 10vh auto 10vh;
}
@media (min-width: 75.0625em) {
	.swiper-iframe {
		margin-bottom: 60px;
	}
}
.swiper-iframe iframe {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
}

.mod-table h2 {
	color: #333333;
}
@media (min-width: 48.0625em) {
	.mod-table h2 {
		margin-bottom: 60px;
	}
}
@media (max-width: 33em) {
	.mod-table .table-quote {
		text-align: center;
	}
}
@media (max-width: 33em) {
	.mod-table .table-quote figure {
		text-align: left;
	}
}
@media (max-width: 33em) {
	.mod-table .table-quote .quote-image {
		max-width: 50%;
		margin: 0 auto;
	}
}
@media (min-width: 33.0625em) {
	.mod-table .table-quote .quote-image {
		margin-top: 10px;
	}
}
@media (min-width: 48.0625em) {
	.mod-table .table-quote .quote-image {
		max-width: 70%;
	}
}
.mod-table .tablescroller {
	margin-bottom: 60px;
}
@media (max-width: 48em) {
	.mod-table .tablescroller {
		width: 100%;
		margin-top: 20px;
		padding: 15px;
		border: 1px solid #85be00;
		overflow: hidden;
		overflow-x: auto;
		-webkit-overflow-scrolling: touch;
		position: relative;
	}
	.mod-table .tablescroller:before {
		display: inline-block;
		font-style: normal;
		font-variant: normal;
		text-rendering: auto;
		-webkit-font-smoothing: antialiased;
		font-family: "Font Awesome 5 Pro";
		font-size: 2.25em;
		font-weight: 300;
		content: "\f07e";
		z-index: 5;
		position: absolute;
		top: 5px;
		left: 15px;
		-webkit-animation: pulsator 2s infinite cubic-bezier(0.55, 0.2, 0.45, 1) both;
		animation: pulsator 2s infinite cubic-bezier(0.55, 0.2, 0.45, 1) both;
	}
}
.mod-table .tablescroller + h2 {
	padding-top: 30px;
}
@-webkit-keyframes pulsator {
	0% {
		-webkit-transform: translateX(0%);
		transform: translateX(0%);
	}
	50% {
		-webkit-transform: translateX(50%);
		transform: translateX(50%);
	}
	100% {
		-webkit-transform: translateX(0%);
		transform: translateX(0%);
	}
}
@keyframes pulsator {
	0% {
		-webkit-transform: translateX(0%);
		transform: translateX(0%);
	}
	50% {
		-webkit-transform: translateX(50%);
		transform: translateX(50%);
	}
	100% {
		-webkit-transform: translateX(0%);
		transform: translateX(0%);
	}
}
.mod-table .figures-table {
	width: 100%;
	margin: 0;
	display: block;
	position: relative;
}
.mod-table .figures-table + p {
	margin-top: 15px;
}
@media (max-width: 64em) {
	.mod-table .figures-table .table-row {
		margin-right: 15px;
	}
	.mod-table .figures-table .first:before {
		right: 15px;
	}
}
@media (max-width: 48em) {
	.mod-table .figures-table {
		width: 580px;
	}
}
.mod-table .figures-table .table-row {
	display: flex;
	flex-wrap: nowrap;
	justify-content: space-between;
	align-items: stretch;
	align-content: center;
	position: relative;
}
.mod-table .figures-table .table-row .table-cell {
	width: 23%;
	line-height: 1.25;
	text-align: right;
	margin-left: 2%;
	padding: 0.55em 0;
	border-bottom: 1px solid #333333;
	position: relative;
	-webkit-transition: color 300ms ease, background 300ms ease;
	transition: color 300ms ease, background 300ms ease;
}
@media (min-width: 48.0625em) {
	.mod-table .figures-table .table-row .table-cell {
		width: 20%;
	}
}
.mod-table .figures-table .table-row .table-cell:nth-child(1) {
	flex-grow: 1;
	text-align: left;
	margin-left: 0;
}
.mod-table .figures-table .table-row .table-cell:nth-child(2):after {
	width: 6px;
	height: 105%;
	content: '';
	display: block;
	background-color: #85be00;
	position: absolute;
	top: 0;
	right: -12%;
}
.mod-table .figures-table .table-row .table-cell.table-cell:nth-child(3) {
	margin-left: 4%;
}
.mod-table .figures-table .table-row .table-cell.disabled {
	color: #fff;
	border-bottom: 1px solid #ffffff;
}
.mod-table .figures-table .table-row:first-child .table-cell {
	padding-top: 40px;
}
.mod-table .figures-table .table-row.titles .table-cell {
	font-weight: 600;
}
.mod-table .figures-table .table-row.titles.small .table-cell {
	font-size: 0.8rem;
	padding: 1em 0;
}
.mod-table .figures-table .table-row.total .table-cell {
	font-weight: 600;
}
.mod-table .figures-table.first {
	margin-top: 60px;
}
.mod-table .figures-table.first .table-row:first-child .table-cell {
	padding-top: 0.6em;
}
.mod-table .no-touch .figures-table .table-row:not(.titles):hover .table-cell:not(.disabled) {
	background-color: #f4f3f4;
}

.mod-video {
	text-align: center;
	position: relative;
}
.mod-video:before {
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	box-shadow: inset 0 0 4px #ffffff;
}
.mod-video video {
	margin: 0 auto;
	width: 100%;
	outline: none;
	vertical-align: top;
}
@media screen and (min-width: 1540px) {
	.mod-video video {
		width: 75%;
	}
}

.skin-accordion-white {
	border-top: 1px solid #ffffff;
}
.skin-accordion-white h3 {
	border-bottom: 1px solid #ffffff;
}
