<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">section.slider h2,
section.slider p {
	color: #000;
}

section.slider img {
	max-width: 100%;
	height: auto;
}
section.slider picture {
	display: flex;
	height: 100%;
	width: 100%;
}

section.slider {
	display: flex;
	flex-direction: row;
}

section.slider .single-slide {
	display: flex;
	width: 100%;
	flex-shrink: 0;
}

section.slider .single-slide .image {
	width: 100%;
}

section.slider .single-slide:first-child .image {
	padding-top: 56.35%;
}

section.slider .single-slide:first-child .image img {
	display: none;
}

section.slider .single-slide:first-child .image.loaded {
	padding-top: 0;
}

section.slider .single-slide:first-child .image.loaded img {
	display: flex;
}

section.slider .single-slide.active {
	opacity: 1;
	animation-name: fadeInOpacity;
	animation-iteration-count: 1;
	animation-timing-function: ease-in;
	animation-duration: 0.3s;
}

@keyframes fadeInOpacity {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}

section.slider .single-slide .description {
	display: none;
}

section.slider-wrapper {
	position: relative;
}

section.slider-wrapper &gt; button {
	position: absolute;
	height: 34px;
	width: 34px;
	top: calc(50% - 20px);
	background: transparent;
	border: none;
	background-size: cover;
}

section.slider-wrapper &gt; button.next {
	background-image: url('/i/arrow-right-white.png');
	right: 8px;
}

section.slider-wrapper &gt; button.prev {
	background-image: url('/i/arrow-left-white.png');
	left: 8px;
}
@media (min-width: 1051px) {
	section.slider .single-slide:first-child .image {
		padding-top: 42.25%;
	}

	section.slider .single-slide .image {
		width: 75%;
	}

	section.slider .single-slide .description {
		display: flex;
		flex-direction: column;
		width: 25%;
		padding: 40px 40px;
		color: #fff;
		background: #5d5d5d;
	}

	section.slider .description h2 {
		color: #fff;
		margin: 10px 0;
		width: 100%;
		font-size: 1.4em;
	}

	section.slider .description .green {
		color: #149589;
	}

	section.slider .description p {
		color: #fff;
	}
}

/*LITHIN*/
.lithin .image {
	position: relative;
}

.lithin img[data-lazy] {
	opacity: 0;
}

.lithin .loader {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
}
.lds-ring {
	display: inline-block;
	position: relative;
	width: 80px;
	height: 80px;
}

.lds-ring div {
	box-sizing: border-box;
	display: block;
	position: absolute;
	width: 64px;
	height: 64px;
	margin: 8px;
	border: 8px solid #000;
	border-radius: 50%;
	animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
	border-color: #000 transparent transparent transparent;
}

.lds-ring div:nth-child(1) {
	animation-delay: -0.45s;
}

.lds-ring div:nth-child(2) {
	animation-delay: -0.3s;
}

.lds-ring div:nth-child(3) {
	animation-delay: -0.15s;
}

@keyframes lds-ring {
	0% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(360deg);
	}
}
</pre></body></html>