html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

*, *:before, *:after {
	box-sizing: border-box;
}
:root {
	--color-primary: #ffd005;
	--color-secondary: #007dc6;
	--color-text: #222;
	--color-text-dark: #000;
	--color-text-soft: #444444;
	--color-yellow: var(--color-primary);
	--color-yellow-bright: #ffed3a;
	--color-yellow-gradient: linear-gradient(110deg, rgba(255,208,5,1) 0%, rgba(255,237,58,1) 100%);	
	--color-dark-gradient: linear-gradient(110deg, rgba(34,34,34,1) 0%, rgba(55,55,55,1) 100%);	
	--color-blue: var(--color-secondary);
	--color-blue-bright: #60b2ff;
	--color-blue-gradient: linear-gradient(110deg, rgba(0,125,198,1) 0%, rgba(96,178,255,1) 100%);
	--color-green: #06b052; 
	--color-notice: #f2ffad5;
	--color-notice-error: #f4c2c4;
	--color-section-gray: #f1f1f1;
	--color-gray-light: #d3d3d3;
	--color-content-gradient: linear-gradient(110deg, rgba(255,255,255,1) 0%, rgba(211,211,211,1) 100%);
	--color-content-gradient-reverse: linear-gradient(to right,rgba(211,211,211,1) 0%,rgba(255,255,255,1) 100%);

	--section-spacing: 90px;
	--offset: 60px;
	--offset-small: 30px;
	--base: 1200px;
	--column: calc((var(--base) - (var(--offset) * 11)) / 12);

	--font-family: 'Open Sans', arial,  sans-serif;
	--font-size: 18px;
	--line-height: 30px;

	--z-index-navigation: 2000; 
	--z-index-header: 1000; 
	--z-index-cookie: 900; 
	--z-index-hero: 800; 
	--z-index-hero-facts: 850; 

	--transition-speed: .25s;

	--grid-2: calc((var(--column) * 2) + (var(--offset) * 1));
	--grid-3: calc((var(--column) * 3) + (var(--offset) * 2));
	--grid-4: calc((var(--column) * 4) + (var(--offset) * 3));
	--grid-5: calc((var(--column) * 5) + (var(--offset) * 4));
	--grid-6: calc((var(--column) * 6) + (var(--offset) * 5));
	--grid-7: calc((var(--column) * 7) + (var(--offset) * 6));
	--grid-8: calc((var(--column) * 8) + (var(--offset) * 7));
	--grid-9: calc((var(--column) * 9) + (var(--offset) * 8));
	--grid-10: calc((var(--column) * 10) + (var(--offset) * 9));
	--grid-11: calc((var(--column) * 11) + (var(--offset) * 10));
	--grid-12: calc((var(--column) * 12) + (var(--offset) * 11));
}

/* Mobile */
@media screen and (max-width: 1024px) {
	:root {
		--base: 100%;
		--base-mobile: calc(var(--base) - (var(--offset) * 2));
		--offset: 30px;
		--offset-small: 15px;
		--column: calc((var(--base) - (var(--offset) * 5)) / 6);

		--section-spacing: 60px;
	}
}
body {
	color: var(--color-text);
	font-family: var(--font-family);
	line-height: var(--line-height); 
	font-size: var(--font-size);
	font-weight: 400;
}

h1, h2 {
	font-size: 30px;
	line-height:36px;
	font-weight: 700;
}

h1 span,
h2 span,
h3 span {
	font-size: 18px;
	line-height:30px;
	font-weight: 700;
	display: block;
	font-style: italic;
	text-transform: uppercase;
}

h3 {
	font-size: 24px;
	font-weight: 700;
}

h6 {
	font-size: 18px;
	font-weight: 700;
}

strong, b {
	font-weight: 700;
}

i,em {
	font-style: italic;
}

a {
	color: var(--color-text);
}

a:hover {
	color: var(--color-primary);
}

p {
	line-height: var(--line-height); 
	font-size: var(--font-size);
	margin: 0;
}
@keyframes fade-in {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}

@keyframes fade-out {
	0% {
		opacity: 1;
	}
	100% {
		opacity: 0;
	}
}
@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.
*/

.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;
}

section.calltoaction {
	padding: 0;
	display: grid; 
	grid-template-columns: auto var(--base) auto;
	grid-template-rows: auto;
	gap: var(--offset);
	position: relative;
}

section.calltoaction > * {
	grid-column: 2;
}
/* --------------- mobile --------------- */
@media screen and (max-width: 1199px) {
	section.calltoaction {
		grid-template-columns: var(--base-mobile);
		justify-content: center;
		
	}

	section.calltoaction > * {
		grid-column: 1;
	}
}

body {
	background: var(--color-section-gray);
}

main > section {
	padding: var(--section-spacing) 0; 
}

/* @import "icon.css"; */
.button-container {
	--height: 40px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
}

.button-container > a + a {
	margin: 0;
	border-radius: 0
}

.button-container > a:first-child {
	border-top-right-radius: 0;
	border-bottom-right-radius: 0;
}

.button-container > a:last-child {

	border-top-right-radius: var(--border-radius);
	border-bottom-right-radius:var(--border-radius);
}

/* Tablet */
@media screen and (max-width: 1190px) {

}

/* Mobile */
@media screen and (max-width: 1023px) {
	.button-container {
		flex-direction: column;
		align-items: flex-start;
	}

	.button-container > a,
	.button-container > a:first-child,
	.button-container > a:last-child   {
		border-radius: var(--border-radius);
	}

	.button-container > a + a {
		margin-top: 10px;
	}
}

.button,
button[type="submit"],
.button-container a {
	--height: 50px;
	--border-radius: calc(var(--height) / 2);
	display: inline-flex;
	justify-content: flex-start;
	align-items: center;
	padding: calc((var(--height) - var(--line-height)) /2) 20px;
	padding-right: 40px;
	text-decoration: none;
	color: var(--color-text);
	font-weight: 700;
	font-size: 16px;
	font-family: var(--font-family);
	border-radius: var(--border-radius); 
	box-shadow: 0 10px 10px rgba(0,0,0,.2);
	background: var(--color-yellow-gradient); 
	border: 0; 
	position: relative;
	cursor: pointer;
	transition: all var(--transition-speed);
	min-width: 200px;
}

.button::after,
button[type="submit"]::after,
.button-container a::after {
    content: '\f054';
    font-family: "Font Awesome 5 Pro";
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    right: 20px;
    top: 1px;
}

.search > button::after {
	content: unset;
}

.search > button {
	padding: calc((var(--height) - var(--line-height)) / 2) 20px;
	min-width: 10px !important;
}

.button.icon {
	padding-left: 59px;
	margin-left: 10px; 
	transition: all var(--transition-speed);
}

.button.icon[data-color="yellow"] > span {
	width: var(--height); 
	height: var(--height);
	color: #FFF;
	background: var(--color-blue); 
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 50%;
	position: absolute;
	margin-left: -60px;
}

/* --------------- small --------------- */

.button[data-size="small"] {
	--height: 40px;
	--border-radius: calc(var(--height) / 2);
}

.button.icon[data-size="small"] {
	padding-left: 39px;
	margin-left: 10px; 
}

.button.icon[data-color="yellow"][data-size="small"] > span {
	margin-left: -48px;
}

/* ----------------- yellow ----------------- */

.button[data-color="yellow"],
.button-container[data-color="yellow"] a {
	background: var(--color-yellow);  
	color: var(--color-text);
}

.button[data-color="yellow"]:hover,
.button[data-color="blue"]:hover,
.button-container a[data-color="yellow"]:hover,
.button-container a[data-color="blue"]:hover {
	background: var(--color-dark-gradient);  
	color: white;
	box-shadow: 0 0px 15px rgba(0,0,0,.2);
}



/* ----------------- blue ----------------- */

.button[data-color="blue"],
.button-container[data-color="blue"] a {
	background: var(--color-blue);  
	color: #fff; 
}

.button[data-color="blue"]:before,
.button-container a[data-color="blue"]:before {
	color: var(--color-primary);
}

/* ----------------- Transparent ----------------- */

.button[data-color="transparent"],
.button-container[data-color="transparent"] a {
	background: rgba(0,0,0,.6); 
	color: var(--color-primary); 
}

.button[data-color="transparent"]:hover,
.button-container a[data-color="transparent"]:hover {
	background: rgba(0,0,0,1); 
}

/* ----------------- submit ----------------- */

button[type="submit"] {
	background: var(--color-primary); 
	color: #FFF; 
	min-height: var(--height); 
}

button[type="submit"]:hover {
	background-color: var(--color-green);
	color: #FFF;
}

/* --------------- mobile --------------- */
@media screen and (max-width: 1199px) {

}
.wrapper {
	width: var(--base);
	margin-left: auto; 
	margin-right: auto;
}
.wrapper.text {
	display: grid;
    grid-template-columns: var(--grid-4) var(--grid-8);
    gap: var(--offset);
}
/* Tablet */
@media screen and (max-width: 1199px) {
	.wrapper {
		width: calc(100% - var(--offset));
	}
}

/* Mobile */
@media screen and (max-width: 1023px) {
	.wrapper {
		width: calc(100% - (var(--offset) * 2));
	}
}

header#header a#navigation-trigger {
	--height: 60px;
	display: inline-flex;
	width: var(--height); 
	height: var(--height);
	color: #FFF;
	background: var(--color-blue-gradient); 
	justify-content: center;
	align-items: center;
	border-radius: 50%;
text-decoration: none;
}
header#header.scroll a#navigation-trigger {
top: 35px;
width: var(--height); 
height: var(--height);
}
header#header a#navigation-trigger > span{
	font-size: 30px;
	text-decoration: none;
	transition: 0.25s all linear;
}
header#header a#navigation-trigger:hover {
	background: var(--color-dark-gradient);
}

[data-interactive="1"] header#header a.navigation-trigger {
	top: 75px;
}
@media screen and (max-width: 1199px) {
	header#header a#navigation-trigger {
		--height: 40px;
		z-index: 999999999999999;
		position: relative;
	}
	header#header.scroll a#navigation-trigger {
		top: 0;
	}
	header#header a#navigation-trigger > span{
	font-size: 20px;
	}
}
header#header .links {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 30px
}

header#header .links a {
	color: black;
	font-size: 15px;
	font-weight: 700;
	text-decoration: none;
}

header#header.scroll .links a,
[data-interactive="1"] header#header .links a {
	color: var(--color-text);
}

header#header .links a + a {
	/* margin-left: var(--offset); */
}
header#header .links a i{
	margin-right: 5px;
}
header#header .links a:hover {
	color: var(--color-primary);
}

header#header.scroll .links a:hover {
	color: var(--color-primary);
}

[data-interactive="1"]	header#header .links a { padding: 0 15px; }


/* --------------- mobile --------------- */
@media screen and (max-width: 1199px) {
	header#header .links {
		display: none;
	}
}

header#header {
	position: sticky;
	width:100%;
	top: 0;
	z-index: var(--z-index-header); 
	color: black;
	transition: all .25s;
	box-shadow: 0 0 var(--offset-small) rgba(0,0,0,0);
	background-color: white;
}

header#header .top-header > a:hover { 
	color: var(--color-section-gray);
}

[data-interactive="1"] header#header,
header#header.scroll {
	background-color: rgba(255,255,255);	
	box-shadow: 0 0 var(--offset-small) rgba(0,0,0,.2);
}

header#header .base {
	padding: 10px 0px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	border-bottom: 1px solid rgba(255,255,255,.2);
	transition: all .25s linear;
	background-color: white;
	max-width: var(--base);
	margin: 0 auto;
}

header#header.scroll .base { 
	padding-top: 10px;
	padding-bottom: 10px;
}

header#header .base figure {
	line-height: 0;
}

header#header .base .right a {
	box-shadow: none;
}

header#header .base .right a + a {
	margin-left: calc(var(--offset-small) / 2);
}

/* ----------------- cms ----------------- */

[data-interactive="1"]	header#header { position: relative; }

/* --------------- mobile --------------- */
@media screen and (max-width: 1199px) {
	header#header .base{
		background: white;
		padding: 5px var(--offset-small);
		border-bottom: 0; 
		box-shadow: 0 0 var(--offset-small) rgba(0,0,0,.2);
		justify-content: space-between;
	}
	header#header .base figure,
	header#header .base figure a {
		max-width: 200px;
	}

	header#header .base figure img {
		max-width: 100%; 
	}

	header#header .base .right .button.icon span {
		display: none;
	}

	header#header .base .right .button.icon {
		padding: calc((var(--height) - var(--line-height)) / 2) 20px;
		display: none;
	}

	header#header .base .right a + a {
		margin-left: calc(var(--offset-small) / 4);
	}
	header#header .top-header{
		display: flex;
		flex-direction: column;
		gap: 5px;
		height: 40px;
	}
	header#header.scroll .top-header { 
		height: 35px !important;
	& > a{
		font-size: 12px !important;
	}
}

.top-mail {
		display: none !important;
	}
}

header .top-header
{
	height: 35px;
	background: var(--color-yellow);
	z-index: 211122222;
	position: relative;
	top: 0;
	transition: 0.1s all linear;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 30px;
}

header#header.scroll .top-header { 
	height: 35px;
	& > a{
		font-size: 14px !important;
	}
}

header#header .top-header > * { 
	color: black;
    font-weight: 600;
	font-size: 15px !important;
    text-decoration: auto;
}

header#header .top-header > a {
	display: flex;
	align-items: center;
	gap: 5px;
	height: 100%;
	transition: 0.2s all linear;
}
footer address {
	display: flex;
	flex-direction: column;	
}

footer address div {
	padding: 0 0 0 30px;
	line-height: 24px;
}

footer address div > span {
	color: var(--color-secondary); 
	font-size: 20px;
	position: absolute; 
	margin-left: -30px;
	margin-top: 3px;
}

footer address div + div {
	margin-top: var(--line-height); 
}
footer .bottom {
	line-height: 24px;
}
footer .bottom .wrapper {
	border-top: 2px solid rgba(0,0,0,.1);
	margin-top: var(--offset-small);
	padding-top: var(--offset-small); 
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	gap: var(--offset);
}

footer .bottom .wrapper > div:nth-child(2) {
	text-align: center;
}

footer .bottom .wrapper > div:last-child {
	justify-self: self-end;
	text-align: right;
}

/* --------------- mobile --------------- */
@media screen and (max-width: 1199px) {
	footer .bottom .wrapper {
		grid-template-columns: 1fr;
		text-align: center;
	}

	footer .bottom .wrapper > div:last-child {
		justify-self: self-start;
		text-align: center;
	}

	footer .bottom .wrapper > div {
		width: 100%;
	}
}
footer .socialmedia {
	display: flex;
}


footer .socialmedia a {
	--height: 40px;
	background: rgba(255,255,255,.12);
	box-shadow: 0 0 10px rgba(0,0,0,.1);
	color: var(--color-secondary);
	font-size: 18px;
	transition: all var(--transition-speed);
}

footer .socialmedia a:hover {
	background: rgba(255,255,255,1);
	box-shadow: 0 0 10px rgba(0,0,0,.1);
	color: var(--color-text);
}

/* --------------- mobile --------------- */
@media screen and (max-width: 1199px) {
	footer .socialmedia {
		justify-content: center;
	}
	
}

footer { 
	--heading-size: 75px;
	color: var(--color-text-soft);
	font-size: 14px; 
	line-height: 30px;
	padding: var(--section-spacing) 0;
}

footer figure a {
	padding: 0;
	margin-left: 0 !important;
}
footer > .wrapper {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	grid-template-rows: auto;
	gap: var(--offset);
}

footer > .wrapper > div {
	display: flex;
	flex-direction: column;
}

footer figure,
footer h5 {
	min-height: 35px;

}

footer figure img { 
	width: 210px;
	max-width: 100%;
}

footer h5 {
	color: var(--color-secondary);
	font-size: 18px;
    font-weight: 700;
}

footer a {
	text-decoration: none;
	color: var(--color-text-soft);
}

footer a:hover {
	color: var(--color-yellow);
	text-decoration: underline;
	cursor: pointer;
}

footer .wrapper > div:nth-child(2) a:before,
footer .wrapper > div:nth-child(3) a:before,
footer .wrapper > div:nth-child(4) a:before {
    position: absolute;
    content: "\f105";
    font-family: 'Font Awesome 5 Pro';
    color: var(--color-primary);
    margin-left: -20px;
    display: block;
    font-size: 18px;
    font-weight: 400;
}
footer .no-before-underline{
	text-decoration: underline;
}
footer .no-before-underline::before{
	content: unset !important;
}
/* --------------- mobile --------------- */
@media screen and (max-width: 1199px) {
	footer > .wrapper {
		grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
	}

	footer h5 {
		min-height: var(--line-height);
	}
}

@media screen and (max-width: 1199px) {
	footer > .wrapper a {
		margin-left: 20px;
	}
	footer address a{
		margin-left: 0 !important;
	}
}
.flex-job{
    display: flex;
    gap: 18px;
    justify-content: center;

}
.flex-job div{
display: flex;
align-items: center;
gap: 4px;
}
.flex-job div i{
color: var(--color-blue);
}
.job{
    display: flex;
    justify-content: space-between;
    text-align: center;
    background: white;
    border-radius: 10px;
    height: 100%;
    box-sizing: border-box;
 flex-direction: column;
 align-items: center;

 text-align: center;
}
.button-job{
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
    padding-bottom: 20px;
}
.image-job{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px 10px 0px 0px;
}
.job > .container-job{
    padding: 10px;
}
.job h3{
font-size: 19px;
}

@media screen and (max-width: 576px) {
    .job{
        display: grid;
        width: 100%;
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .button-job{
        display: flex;
        width: 100%;
        justify-content: flex-start;
        align-items: center;
    }
}
blockquote {
	font-size: 24px;
	line-height: 36px;
	color: var(--color-secondary);
	position: relative;
	font-weight: 600;
}

/* blockquote div {
	position: absolute;
	z-index: 10;
}*/

blockquote i {
	color: #e3e3e3;
	position: absolute; 
	margin-left: 0px;
	margin-top: -90px;
	font-size: 90px;
	z-index: 1;
}

/* --------------- mobile --------------- */
@media screen and (max-width: 1199px) {
	blockquote i {
		color: var(--color-secondary);
		position: relative; 
		margin-top: 0;
		font-size: 90px;
		z-index: 1;
		display: block;
		line-height: 90px;
	}

	blockquote div {
		display: flex;
		justify-content: flex-start;
		align-items: flex-start;
		flex-direction: column;
	}
}
.address{
	display: flex;
	flex-direction: row;
}

.address > div{
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
}

.address > div{
	font-size: 16px;
}

.address > div:last-child{
	margin-left: var(--offset);
}

.address > div a {
	text-decoration: none;
}

.address > div a span{ 
	color: var(--color-yellow);
}
/* ---------- layout---------- */

.faq .category {
	--icon-size: 60px;
}

.faq .category {
	display: grid; 
	grid-template-columns: var(--icon-size) 1fr;
	gap: var(--offset); 
}

.faq .category .question {
    display: flex;
    flex-direction: column;
    max-width: 570px;
}

.faq .category .question .anwser {
	display: none;
}

.faq .category .question[data-state="active"] .anwser {
	display: block;
	animation: fade-in .25s forwards; 
}

/* ---------- lipstick ---------- */

.faq .category + .category {
	margin-top: var(--offset); 
}

.faq .category .question {
	margin-top: 5px;
	padding-left: calc(var(--offset-small) / 2);
}

.faq .category .question > a {
	text-decoration: none;
}

.faq .category .question > a > span {
	color: var(--color-gray-light)
}

.faq .category .question > a:hover,
.faq .category .question > a:hover > span {
	color: var(--color-secondary); 
} 

.faq .category .question .anwser {
	opacity: 0; 
	background: #d3d3d3;
	padding: var(--offset-small); 
	border-radius: var(--offset-small); 
}

.faq .category .question .anwser > * + * {
	margin-top: var(--offset-small); 
}

.faq .category .question[data-state="active"] + .question {
	margin-top: var(--offset-small); 
}

.faq .category .icon {
	background: var(--color-blue-gradient);
	color: white;
	text-decoration: none;
	font-size: 30px;
	border-radius: 50%;
	width: var(--icon-size);
	height: var(--icon-size);
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	
}

.faq .category .icon:before  {
	font-family: 'Font Awesome 5 Pro';
	content: "\f105";
	font-weight: 400;
}

.faq .category .icon[data-code="pechhulp"]:before {
	content: "\f5e3";
}

.faq .category .icon[data-code="berging"]:before {
	content: "\f5e1";	
}

.faq .category .icon[data-code="transport"]:before {
	content: "\f018";
}

/* update fontawesome */
.faq .category .icon[data-code="facilitaire-dienstverlening"]:before { 
	content: "\f494";
}

/* ---------- media query ---------- */


/* --------------- mobile --------------- */
@media screen and (max-width: 1199px) {
	.faq .category {
		--icon-size: 60px;
	}
	
	.faq .category {
		grid-template-columns: 1fr;
		gap: 15px;
	}

	.faq .category .icon {
		margin-left: auto;
		margin-right: auto;
	}

	.faq .category .icon {
		font-size: 30px;
	}

	.faq .category .question {
		grid-template-columns: 1fr;
		gap: 5px;
	}
}


*[data-text-align="center"] {
    text-align: center;
}
*[data-text-align=""],
*[data-text-align="left"] {
    text-align: left;
}

*[data-text-align="right"] {
    text-align: right;
}

.text[data-text-size="small"],
.text[data-text-size="small"] p {
	--font-size: 14px;
	--line-height: 24px;
	font-size: var(--font-size); 
	line-height: var(--line-height);
}

.text > * + *,
[data-interactive="1"] .text p + p {
	margin-top: var(--line-height); 
}

.text > header > * span,
.text > header > [data-color="blue"] span {
	color: var(--color-secondary);
}

.text > header > [data-color="yellow"] span {
	color: var(--color-primary);
}

.text ul {}
.text ul li {
	padding-left: 30px;
}
.text ul li:before {
	font-family: "Font Awesome 5 Pro";
	content: "\f105";
	color: var(--color-primary);
	position: absolute; 
	margin-left: -20px;
}

.text .text-column {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
}

.text .text-column div {
	width: calc((100% - (var(--offset) * 1)) / 2);
	margin-top: 0;
}

.text figure img {
	max-width: 100%;
}
header#header nav .container .search p {
	font-size: 16px;
	color: var(--color-text);
}

header#header nav .container .search form {
	--height: 50px;
	margin-top: var(--offset-small);
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	background: #ccc;
	border-radius: calc(var(--height) / 2);
	max-width: 250px;
}

header#header nav .container .search form input {
	padding: calc((var(--height) - var(--line-height)) / 2) calc(var(--height) / 2);
	font-family: var(--font-family);
	font-weight: 700;
	background: transparent;
	display: block;
	width: calc(100% - 50px);
	border: 0;
	color: var(--color-text);
	outline: none;
}

header#header nav .container .search form input::placeholder {
	color: rgba(22,22,22,.7);
	font-style: italic;
}

header#header nav .container .search form button[type="submit"] {
	width: var(--height); 
	height: var(--height);
	color: #FFF;
	background: var(--color-blue-gradient); 
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 50%;
	margin-right: 0; 
	box-shadow: none;
	font-size: 24px;
}

header#header nav .container .column.socialmedia div {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	flex-direction: row;
}

header#header nav .container .socialmedia a { 
	font-size: 24px; 
	padding-left: 0; 
}

header#header nav .container .socialmedia a:before {
	display: none;
}

header#header nav {
	position: fixed;
	z-index: var(--z-index-navigation);
	background: url(/e2/site/collewijnberging/content/site/image/watermerk.png) no-repeat 100% 100%, var(--color-content-gradient);
	background-size: 600px, 100%;
	width: 100%;
	height: 100vh;
	padding: var(--offset);
	display: none;
	opacity: 0;
}

header#header nav.active,
[data-interactive="1"] header#header nav {
	display: block;
	animation: fade-in .2s forwards;
}

header#header nav .scroll {
	width: 100%;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	flex-direction: column;
	flex-wrap: wrap;
}

header#header nav .container {
	display: grid;	
	grid-template-columns: repeat(4, 1fr);
	gap: var(--offset);
/* 	max-width: var(--base); */
}

header#header nav .container .column,
header#header nav .container .column div {
	display: flex;
	justify-content: flex-start;
	align-items: flex-start;
	flex-direction: column;
}

header#header nav .container .column > div {
	margin-top: calc(var(--line-height) / 2);
}

header#header nav h3 {
	font-size: 18px;
	color: var(--color-text);
}

header#header nav a {
	text-decoration: none;
	font-size: 16px;
	padding-left: 20px;
	position: relative;
}

header#header nav a:before {
	position: absolute;
	content: "\f105";
	font-family: 'Font Awesome 5 Pro';
	color: var(--color-primary);
	margin-left: -20px;
	display: block;
	font-size: 18px;
	font-weight: 400;
}

header#header a.promo {
	background: #ffd106;
	padding: 2px 10px;
	font-size: 12px;
	text-transform: uppercase;
	border-radius: 2px;
}

header#header a.promo:hover {
	text-decoration: underline;
	color: #000000;
}

header#header a.promo i {
	display: none;
}

header#header nav a + a {
	margin-top: 5px;
}

/* --------------- interactive --------------- */

[data-interactive="1"] header#header nav {
	animation: none; 
	display: block; 
	position: relative;   
	opacity: 1;    
}

/* --------------- mobile --------------- */
@media screen and (max-width: 1199px) {
	header#header nav {
		width: 100%;
		height: 100vh;
		top: 0;
	}
	header#header nav .scroll {
		overflow-y: scroll;
		height: calc(100% - var(--offset));
		width: 100%;
	}
	header#header nav .container {
		grid-template-columns: 1fr;
	}
	header#header nav.active{
		margin-top: 99px;
	}
}
.socialmedia a {
	--height: 50px;
	width: var(--height); 
	height: var(--height);
	color: #FFF;
	background: var(--color-blue-gradient); 
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 50%;
	margin-right: 0; 
	box-shadow: none;
	font-size: 24px;
	padding: 0;
}

.socialmedia a + a {
	margin-top: 0;
	margin-left: 10px;
}
section.hero .navigation {
	position: absolute;
	margin-top: 0;
	height: 100%;
	right: 50%;
	left: 50%; /* Center horizontally */
	top: 95%; /* Center vertically */
	transform: translate(-50%, -50%); /* Adjust the position to fully center */
	color: #FFF;
	z-index: 100;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: row;
	gap: 10px;
}

section.hero .navigation a {
	color: var(--color-primary);
	font-size: 28px;
}

section.hero .navigation .swiper-pagination {
	position: relative;
	display: flex;
	flex-direction: row;
	gap: 10px;
	align-items: center;
	text-align: center;
}

section.hero .navigation .swiper-pagination span  {
	background: rgba(255,255,255,.5);
	transition: all var(--transition-speed);
	height: 16px !important;
	width: 16px !important;
}

section.hero .navigation .swiper-pagination span.swiper-pagination-bullet-active {
	background: var(--color-primary);
	height: 16px !important;
	width: 16px !important;

}
.swiper-pagination-bullet{
	height: 12px !important;
	width: 12px  !important;

}
section.hero .facts .wrapper {
	display: flex;
	justify-content: flex-end;
	align-items: flex-end;
}
section.hero .facts *{
    font-style: normal;
}
section.hero .facts .content {
    position: absolute;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    z-index: var(--z-index-hero-facts);
    background: white;
    color: black;
    width: auto;
    max-width: calc((var(--column)* 6) +(var(--offset)* 5));
    padding: var(--offset-small) var(--offset-small) var(--offset-small) 100px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

section.hero .facts .content > span {
    position: absolute;
    margin-left: -77px;
    margin-top: 8px;
    top: 35px;
    font-size: 65px;
    color: var(--color-primary);
}

section.hero .facts .content div + div {
	margin-left: var(--offset-small);
}

section.hero .facts .content div h3 {
	font-size: 24px;
	line-height: 24px;
	text-transform: uppercase;
}

section.hero .facts .content div h3 span { display: block; }

section.hero .facts .content div h3 span:first-child {
	color: var(--color-primary);
	font-size: 16px;
	font-style: italic;
}

section.hero .facts .content div h3 span:nth-child(2) {
	font-size: 16px;
	color: #c3c3c3;
	font-weight: 600;
}

/* --------------- mobile --------------- */
@media screen and (max-width: 1199px) {
	section.hero .facts .wrapper {
		justify-content: center;
	}
}

section.hero {
	--min-height: 800px;
	--height: 70vh;
	padding: 0;
	border-bottom: 20px solid var(--color-primary);

}

section.hero .item,
section.hero .item .overlay,
section.hero .item .content {
	min-height: var(--height);

}


section.hero .item { 
	background-repeat: no-repeat; 
	background-size: cover;
	background-position-y: 10% !important;
}

section.hero .item .overlay {
	background: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
	display: flex;
	justify-content: center;
	align-items: center;
}

section.hero .item .content {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	width: var(--base); 
	text-align: left;
	color: #fff;

}


section.hero .item .content > article {

	width: calc(45% - (var(--offset) / 2));
}

section.hero .item .content .text > header > * span { color: var(--color-primary); } 

section.hero .swiper-container {
	display: flex;
	justify-content: flex-start;
	align-items: stretch;
	max-height: 800px;
	border-bottom: 15px solid var(--color-primary);
}

/* --------------- interactive --------------- */

[data-interactive="1"] section.hero {
	--min-height: 400px;
	--height: 50vh;
}

[data-interactive="1"] section.hero .swiper-container {  overflow: none; }
[data-interactive="1"] section.hero .swiper-wrapper{  display: block; }

/* --------------- mobile --------------- */
@media screen and (max-width: 1199px) {
	section.hero {
		--min-height: 400px;
		--height: 75vh;
		padding: 0;
	}
	
	section.hero .item .content {
		padding-left: var(--offset); 
		padding-right: var(--offset); 
	}

	section.hero .item .content > article {
		width: 100%;
		margin-top: 0px;
	}
	section.hero a.button{
font-size: 15px;
	}
	section.hero p {
		font-size: 16px;
		line-height: 28px;
	}
	section.hero h2 {
		font-size: 27px;
	}

	section.hero .item {
background-image: url("/e2/site/collewijnberging/custom/site/upload/image/hero/.cache/hero_tablet-90-1920_1200_0.webp") !important;
background-size: cover;
background-position: bottom;
	}
}


@media screen and (max-width: 768px) {
	section.hero {
		--min-height: 400px;
		--height: 80vh;
		padding: 0;
	}
	section.hero .item {
background-image: url("/e2/site/collewijnberging/custom/site/upload/image/hero/.cache/hero_mobile-90-1920_1200_0.webp") !important;
background-size: cover;
background-position: bottom;
	}
}
section.transport {
	background: var(--color-content-gradient);
}

section.transport .wrapper {
	display:grid; 
	grid-template-columns: var(--grid-4) var(--grid-8); 
	gap: var(--offset); 
}

section.transport .wrapper article:first-child{
	width: var(--grid-4);
}

section.transport .wrapper article:last-child{
	width: var(--grid-8);
}

/* --------------- mobile --------------- */
@media screen and (max-width: 1199px) {

	section.transport .wrapper {
		grid-template-columns: 1fr;
	}
	
	section.transport .wrapper article:first-child,
	section.transport .wrapper article:last-child{
		width: 100%;
	}
}
input[type="text"],
input[type="email"],
input[type="password"],
input[type="search"],
input[type="tel"],
label.file div,
textarea,
select
{
	font-size: 14px;
	line-height: var(--line-height);
	color: #fff;
	background: rgba(255,255,255,.1);
	border: 1px solid rgba(0,0,0,0);
	border-radius: 5px;
	padding: 6px 10px;
	display: block;
	font-family: var(--font-family);
	width: 100%;
}

::placeholder {
	color: white;
	/*font-weight: 700;*/
	font-style: italic;
}

textarea {
	min-height: calc(var(--line-height) * 4);
}

label.file input[type="file"] { display: none; }

div.form {
	--row-spacing: 15px;
	margin-top: var(--line-height);
}

div.form .columns {
	display: grid;
}

div.form .fields > * + * {
	margin-top: var(--row-spacing);
}

div.row.action {
	display: flex;
	justify-content: center;
}

input.licenseplate {
	width: 50%;
	padding: 0 5px;
	border: 2px solid #515151;
	border-radius: 4px;
	color: #000;
	font-weight: 700;
	line-height: 45px;
	font-size: 18px;
	padding-left: 30px !important;
	background: #ffd400 url(/e2/site/collewijnberging/content/site/image/bg_licenceplate.png) no-repeat 0 50%;
	background-size: auto 106%;
}



input.licenseplate::placeholder {
	color: #000;
}

#carform input[type="text"]:not(.licenseplate), #carform input[type="email"], #carform input[type="password"], #carform input[type="search"], #carform input[type="tel"], #carform label.file div, #carform textarea, select {
	color: #000;
	background-color: #fff;
}

#carform input::placeholder {
	color: #000;
}

#carform button[type="submit"] {
    width: 200px;
    display: block;
    margin-left: auto;
    margin-right: 0;
    text-align: left;
}

div.form.car .fields .row {
	display: grid;
	width: 100%;
	align-items: center;
	justify-content: space-between;
	max-width: 570px;
	grid-template-columns: 1fr 2fr;
}

div.form.car .radios div {
	display: inline-block;
}

div.form.car .fields {
	display: grid;
	&  h3{
		padding-bottom: 20px;
	}
}

div.form.car .alert {
	background: #1482c2;
	padding: 10px;
	border-radius: 5px;
	margin: 20px 0;
	width: auto;
	color: #fff;
	max-width: 570px;
	font-weight: 700;
	font-size: 14px;
}

div.form .fields .row.box {
	grid-template-columns: 1fr;
}

div.form .fields .row label {
	/*font-weight: 700;*/
	font-size: 14px;
}

.calc-form div.columns {
	display: grid !important;
	gap: 8px !important;
	grid-template-columns: 1fr 1fr !important;
}

.calc-form input {
	background: rgba(0, 0, 0, 0.425);
	border-radius: 10px;
}

.calc-form div.row.action {
	justify-content: start !important;
	margin-top: 8px;
}

#licenseForm > .row {
	display: flex;
	flex-direction: row;
	gap: 10px;
	margin-top: 20px;
	align-items: center;
}

#licenseForm > .row > input.licenseplate {
	padding: unset;
	width: 25%;
}
section.news {
	background: white;
}

section.news .wrapper:first-child {
	display:grid;
	grid-template-columns: var(--grid-4) var(--grid-8);
	gap: var(--offset);
}

section.news .wrapper:first-child article:first-child{
	width: var(--grid-4);
}

section.news .wrapper:first-child article:last-child{
	width: var(--grid-8);
}

section.news .container .swiper-wrapper {
	padding: var(--offset) 0;
}

section.news .container .swiper-wrapper h2 {
	max-width: 100%;
	white-space: nowrap;
	overflow: hidden !important;
	text-overflow: ellipsis;
}

.swiper-wrapper .swiper-background{
	width: 100%;
	height: 290px;
	background-size: cover;
}

section.news .container .news {
	max-width: var(--grid-6);
	box-shadow: 0 0px calc(var(--offset-small) / 2) rgba(0,0,0,.2);
	background-size: 100% 290px;
	background-position: 50% 0%;
	cursor: pointer;
	background-repeat: no-repeat;
}

section.news .container .news .overlay {
	background: rgba(0,125,198,0);
	transition: 0.2s all linear;
}

section.news .container .news article {
	background: white;
	padding: var(--offset-small);
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	flex-wrap: wrap;
	flex-direction: column;
}

section.news .container .news article h3 {
	width: 100%;
	font-size: 18px;
	line-height: 24px;
}

section.news .container .news article h3 span {
	font-size: 14px;
	font-style: normal;
	line-height: 24px;

}

section.news .container .news article span {
	color: var(--color-blue)
}
section.news .container .news article div {
    margin-top: 5px;
    font-size: 15px;
    line-height: 25px;
	display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 2;
    line-height: 1.5em;
    max-height: 3em;
    width: 100%;
    box-sizing: border-box;
}

section.news .container .news .overlay {
	position: absolute;
	height: 290px;
	width: 100%;
}

section.news .container .news:hover .overlay {
	background: rgba(0,125,198,.8);
}

section.news .container .news:hover article {
	background: rgba(255,255,255,0);
}

section.news .container .news:hover article h3,
section.news .container .news:hover article h3 span,
section.news .container .news:hover article span  {
	color: white;
}

section.news .container .news:hover:before {
	--circle-size: 120px;
	content: "\f09a";
	font-family: 'Font Awesome 5 Brands';
	font-size: 30px;
	width: var(--circle-size);
	height: var(--circle-size);
	display: flex;
	justify-content: center;
	align-items: center;
	color: rgba(255,255,255,1);
	position: absolute;
	z-index: 100;
	border: 1px solid rgba(255,255,255,.2);
	border-radius: 50%;
	left: calc(50% - (var(--circle-size) / 2));
	font-weight: 500;
	top: calc(30% - (var(--circle-size) / 2));
}
section.news .wrapper:first-child {
	display:grid;
	grid-template-columns: var(--grid-4) var(--grid-8);
	gap: var(--offset);
}

section.news .wrapper:first-child article:first-child{
	width: var(--grid-4);
}

section.news .wrapper:first-child article:last-child{
	width: var(--grid-8);
}
section.news .link-news{
	color: var(--color-blue);
}
/* --------------- mobile --------------- */
@media screen and (max-width: 1199px) {
	section.news .wrapper:first-child {
		display:grid;
		grid-template-columns: 1fr;
	}

	section.news .wrapper:first-child article:last-child {
		width: 100%;
	}

	section.news .container .news {
		max-width: 320px;
	}

	section.news .swiper-pagination {
		position: relative;
	}
}

section.landingspage > .container {
    display: flex;
    flex-direction: column;
    margin: 0 auto;
    max-width: var(--grid-12);
    gap: 10px;
}

section.landingspage > .wrapper{
	width: var(--base);
    margin-left: auto;
    margin-right: auto;
    display: grid;
    grid-template-columns: var(--grid-6) var(--grid-6);
    margin-top: var(--offset);
	gap: var(--offset);
}
section.landingspage .link-landingspage {
    font-size: 11px;
    font-weight: 600;
    color: var(--color-blue);
	text-decoration: underline;
	-webkit-appearance: none;
    appearance: none; 
}
.toggle-button {
    color: var(--color-blue);
    cursor: pointer;
    padding: 10px 10px;
    border: none;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 600;
	max-width: 220px;
	margin: 0 auto;
    transition: background-color 0.3s ease;
	font-family: 'Open Sans';
}

.links-container {
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    text-align: left;
	margin-top: 2px;
    gap: 4px;
}

.links-container a:before {
	content: " " !important;
	margin-left: 0px !important;
}

.links-container a:hover {
	text-decoration: none;
}

section.landingspage .wrapper aside img{
	width: 100%;
	aspect-ratio: 9/16;
	max-height: 600px;
	object-fit: cover;
}
section.landingspage .wrapper aside p:has(> strong) {
    font-size: 20px;
    font-weight: 500;
    color: var(--color-blue);
    margin-bottom: 10px;
    margin-top: 20px;
}
section.landingspage .wrapper h3{
	color: var(--color-blue);
}
.swiper-container-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet{
    margin: 0 5px !important;
}
@media screen and (max-width: 1500px) {
	.links-container { grid-template-columns: 1fr 1fr 1fr 1fr 1fr ;}
}
@media screen and (max-width: 1200px) {
	.links-container { grid-template-columns: 1fr 1fr 1fr; }
}
@media screen and (max-width: 766px) {
	.links-container { grid-template-columns: 1fr 1fr; }

	section.landingspage > .wrapper {
		width: var(--base);
		margin-left: auto;
		margin-right: auto;
		display: grid;
		grid-template-columns: var(--base-mobile);
		margin-top: var(--offset);
		gap: var(--offset);
		justify-content: center;
	}
}

@media screen and (max-width: 400px) {
	.links-container { grid-template-columns: 1fr ; }
}

div.cookie {
	position: fixed;
	z-index: var(--z-index-cookie);
	bottom: 0;
	padding: calc(var(--offset) / 2) 0;
	width: 100%;
	background: rgba(0,0,0,.9);
	color: #fff;
	display: none;
}

div.cookie.active {
	display: block;
}

div.cookie .text h3 {
	font-size: 24px;
	margin-bottom: 15px;
	line-height: 30px;
}

div.cookie .text p {
	font-size: 14px;
	line-height: 24px;
	margin-top: 0;
}

div.cookie .wrapper {
	display: flex;
	justify-content: center;
	align-items: flex-start;
}

div.cookie .wrapper div {
	width: var(--grid-6);
}
div.cookie .wrapper div:last-child {
	width: var(--grid-2);
}

/* Mobile */
@media screen and (max-width: 1023px) {
	div.cookie .wrapper {
		flex-direction: column;
	}
	div.cookie .wrapper div,
	div.cookie .wrapper div:last-child {
		width: 100%;
	}

	div.cookie .wrapper div:last-child {
		padding-bottom: 60px;
	}

}
/* --------------- lipstick --------------- */

section.calltoaction .transport > * {
	padding: var(--offset-small);
}

section.calltoaction .transport .title h4 {
	font-size: 30px;
	line-height: 36px;
	font-weight: 700;
}

section.calltoaction .transport .content {
	background: var(--color-text);
	color: white;
	border-top-right-radius: var(--offset-small);
	border-bottom-right-radius: var(--offset-small);
	padding-left: 0;
}

section.calltoaction .transport .content h3 span {
	color: var(--color-primary);
}

/* --------------- form --------------- */

section.calltoaction .transport div.form .columns {
	display: grid; 
	grid-template-columns: repeat(2, calc(50% - (var(--offset-small) / 2)));
	gap: var(--row-spacing)var(--offset-small);
}

section.calltoaction .transport div.form div.row.action {
	margin-top: var(--row-spacing);
}

/* --------------- mobile --------------- */
@media screen and (max-width: 1023px) {

	section.calltoaction .transport div.form div.row.action {
	margin-top: var(--line-height);
}
} 
section.calltoaction .call {
	--icon-size: 90px;
	position: relative;
	
}

section.calltoaction .call .icon {
	position: absolute;
	width: var(--icon-size);
	height: var(--icon-size);
	display: flex;
	justify-content: center;
	align-items: center;
}

section.calltoaction .call .title,
section.calltoaction .call .content {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

/* --------------- lipstick --------------- */

section.calltoaction .call .icon {
	background: var(--color-blue-gradient);
	color: white;
	text-decoration: none;
	font-size: 40px;
	border-radius: 50%;
	top: calc(50% - calc(var(--icon-size) / 2));
	left: calc(var(--grid-4) - (var(--icon-size) / 2));
}

section.calltoaction .call .title,
section.calltoaction .call .content  {
	padding: var(--offset-small);
}

section.calltoaction .call .title {
	background: linear-gradient(130deg, var(--color-primary) 0%, var(--color-yellow-bright) 100%);	
	color:var(--color-text);
	padding: var(--offset-small) 60px;
	
}

section.calltoaction .call .title h4 { 
	font-size: 30px;
	line-height: 36px;
	font-weight: 700;
}

section.calltoaction .call .content {
	color: #fff;
}

section.calltoaction .call .content article + article {
	padding-left: var(--offset-small);
}

section.calltoaction .call .content article.text {
	padding-right: var(--offset-small);
	border-right: 1px solid rgba(255,255,255,.2);
}

section.calltoaction .call .content article.text h3,
section.calltoaction .call .content article.text h3 span {
	display: inline-block; 
	font-style: normal;
	font-size: 24px;
	text-transform: uppercase;
	color: var(--color-primary);
}

section.calltoaction .call .content article.text h3 span {
	text-transform: none;
	color: white;
	margin-right: 5px;
}

section.calltoaction .call .content article.text p {
	margin-top: 0;
}

section.calltoaction .call .content article a[href*="tel:"] {
	color: var(--color-primary); 
	font-size: 36px;
	text-decoration: none;
	font-weight: 700;
	display: inline-block;
	white-space: nowrap;
}

section.calltoaction .call .content article a[href*="tel:"]:hover {
	color: #fff;
}

/* --------------- mobile --------------- */
@media screen and (max-width: 1199px) {
	section.calltoaction .call .icon {
		top: calc(200px - (var(--icon-size) / 2));
		left: calc(50% - (var(--icon-size) / 2));
	}

	section.calltoaction .container.call .title,		
	section.calltoaction .container.call .content {
		display: flex;
		align-items: center;
		justify-content: center;
		flex-direction: column;
		padding-bottom: calc(var(--icon-size) / 2);
	}

	section.calltoaction .container.call .content {
		padding-top: calc(var(--offset-small) + (var(--icon-size) / 2)) ;
		padding-bottom: var(--offset-small);
	}

	section.calltoaction .call .content article.text {
		border: 0; 
	}

	section.calltoaction .call .content article + article {
		padding: 0; 
		margin-top: var(--offset-small);
	}
}
/* --------------- lipstick --------------- */

section.calltoaction .contact > * {
	padding: var(--offset-small);
}

section.calltoaction .contact .content {
	background: var(--color-text);
	color: white;
	border-top-right-radius: var(--offset-small);
	border-bottom-right-radius: var(--offset-small);
	padding-left: 0;
}

section.calltoaction .contact .content h3 span {
	color: var(--color-primary);
}

/* --------------- form --------------- */

section.calltoaction .contact div.form .columns {
	display: grid; 
	grid-template-columns: repeat(2, calc(50% - (var(--offset-small) / 2)));
	gap: var(--row-spacing) var(--offset-small);
}

section.calltoaction .contact div.form div.row.action {
	margin-top: var(--row-spacing);
}

/* --------------- mobile --------------- */
@media screen and (max-width: 1199px) {

	section.calltoaction .contact.container .image {
		border-top-left-radius: var(--offset-small);
		border-top-right-radius: var(--offset-small);
		border-bottom-right-radius: 0;
		border-bottom-left-radius: 0;
		min-height: 300px;
	}

	section.calltoaction .contact div.form .columns {
		grid-template-columns: 1fr;
		gap: var(--row-spacing) var(--offset-small);
	}

} 


section.calltoaction[data-type="static"] {
	padding: var(--section-spacing) 0 0 0;
	background: white;
}

section.calltoaction[data-type="static"] + section.seperator {
	padding-bottom: var(--section-spacing);
}

section.calltoaction .container {
	display: grid;
	grid-template-columns: 1fr 1fr;
	background: var(--color-text); 
	border-radius: calc(var(--offset-small) + 3px);
	max-width: var(--base);
	box-shadow: 0 0 var(--offset-small) rgba(0,0,0,.2);
	z-index: 22;
}

section.calltoaction[data-type="floating"] .container {
	position: absolute;
}
section.calltoaction[data-type="floating"] .container.cta-both {
	position: relative;
}
section.calltoaction[data-type="floating"] .cta-both .container{
	position: relative;
}
section.calltoaction[data-type="floating"]:has(.cta-both) {
position: absolute;
    width: 100%;
}
section.calltoaction .container .title,
section.calltoaction .container .image {
	width: var(--grid-4);
}

section.calltoaction .container .content {
	width: var(--grid-8);
}

/* --------------- lipstick --------------- */

section.calltoaction .container .title,
section.calltoaction .container .image {
	background: url(/e2/site/collewijnberging/content/site/image/compass.png), linear-gradient(130deg, var(--color-primary) 0%, var(--color-yellow-bright) 100%);	
	color:var(--color-text);
	border-top-left-radius: var(--offset-small);
	border-bottom-left-radius: var(--offset-small);
	background-position: 50%, 50%;
	background-repeat: no-repeat, no-repeat;
}

[data-interactive="1"] section.calltoaction .container {
	position: relative;
}

/* --------------- mobile --------------- */
@media screen and (max-width: 1199px) {
	section.calltoaction .container {
		grid-template-columns: 1fr;
		border-radius: calc(var(--offset-small) + 3px);
	}

	section.calltoaction[data-type="floating"] {
		padding: var(--section-spacing) 0;
		background: white;
	}

	section.calltoaction[data-type="floating"] .container {
		position: relative;
	}

	section.calltoaction .container .title, 
	section.calltoaction .container .image, 
	section.calltoaction .container .content {
		width: 100%;
		padding: var(--offset-small);
	}

	section.calltoaction .container .title {
		border-bottom-left-radius: 0;
		border-top-right-radius: var(--offset-small);
		min-height: 200px;
		display: flex;
		justify-content: center;
		align-items: center;
		padding: var(--offset-small);
	}
	
	section.calltoaction .container .content {
		border-bottom-left-radius: var(--offset-small);
		border-bottom-right-radius: var(--offset-small);
	}


}
.cta-both {
	padding: 0px;
	grid-template-columns: 8fr 6fr !important;
    border-radius: 40px !important;
}

.cta-both div.form .columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.cta-both div.call.container{
	background: none;
	display: flex;
	justify-content: center;
	padding: 0;
	margin: 0
}
.cta-both div.call.container .content, .cta-both div.call.container .title{
	width: unset;
	border-radius: 0;
}
.cta-both .call .icon{
	left: unset !important;
}
.cta-both div.call.container .content{
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
	gap: 10px	;
}
.cta-both div.call.container .content article + article{
	padding-left: 0;
}
.cta-both div.call.container .content article.text{
	padding: 0;
	border: none;
}
.cta-both div.call.container  .title{
	padding: 30px;
}
.cta-both div.call.container  .title h4{
	text-align: center;
}
.cta-both  > article.text{
	padding: 20px;
}
.cta-both  > article.text h3{
color: white;
& > span{
	color: var(--color-primary);
}
}
.cta-both div.call.container .title{
	border-radius: 37px 0px 0px 37px !important;
}



@media screen and (max-width: 766px) {
	section.calltoaction[data-type="floating"]:has(.cta-both){
	position: relative;
	display: flex;
	flex-direction: column;
	width: var(--base-mobile);
    margin: 0 auto;
	background: none;
	}
		section.calltoaction[data-type="floating"] .container.cta-both, section.calltoaction[data-type="floating"] .cta-both .container{
			display: flex;
			flex-direction: column !important;
		}
		.cta-both div.call.container .title{
			border-radius: 17px 17px 0px 0px !important;
		}
	}
[data-interactive='1'] section.calltoaction{
	position: relative !important;
}
 .list {
	display: grid; 
	grid-template-columns: repeat(auto-fit, minmax(var(--grid-3), 1fr));
	gap: var(--offset);
	margin-top: -190px;
}

 .list .item {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: space-between;
	height: 100%;
}

 .list .item {
	--font-size: 16px; 
	--line-height: 30px;
	font-weight: 400;
	color: var(--color-text-soft);
	border-radius: 20px;
	width: 100%;
    overflow: hidden;
}
.departments  .list .item{
	border-radius: 0px;
}
 .list .item .icon {
    width: 100%;
	height: 180px;
	    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 40px;
    background: var(--color-secondary);
    align-self: center;
    z-index: 000;
    overflow: hidden;
	background-size: cover;
}


 .list .item h3 {
	font-size: 20px;

	
}

 .list .item article {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: space-between;
	text-align: left;
	background: white;
	border-radius: 10px;
	padding: 20px; 
	height: 70%;
	box-sizing: border-box;
}
 .list .item article p {
	font-size: 14px;
}

 .list .item article > a {
box-shadow: none;
font-size: 15px;
width: 100%;
margin: 0 auto;
}

@media screen and (max-width: 1199px) {
 .list {
		grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	}
}
@media screen and (max-width: 380px) {
.list {
	display: grid; 
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: var(--offset);
	margin-top: -110px;
}
}
@media screen and (max-height: 430px) {
	.list {
		display: grid; 
		grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
		gap: var(--offset);
		margin-top: -100px;
	} 
    section.hero {
        --height: 95vh;
        padding: 0;
    }
}
  

section.service {
	background: url(/e2/site/collewijnberging/content/site/image/watermerk_large.png),  var(--color-content-gradient);
	background-position:-90% 60%;
	background-repeat: no-repeat;

}

section.service .wrapper {
	display: grid; 
	grid-template-columns: repeat(2, var(--grid-6));
	grid-template-areas: 
		"content image"
		"list list";
	gap: var(--offset); 
}

section.service .wrapper .content {
	grid-area: content;
	height: 100%;
	display: flex;
	align-items: center;
}

section.service .wrapper .image {
	grid-area: image;
}

section.service .wrapper .list {
	grid-area: list;
}

/* --------------- lipstick --------------- */

section.service .wrapper .content {
    padding-bottom: var(--offset-small);
}

section.service .wrapper .image {
	background-size: cover;
}

/* --------------- mobile --------------- */
@media screen and (max-width: 1199px) {
	section.service .wrapper {
		grid-template-columns: 1fr;
		grid-template-areas: 
		"image"
		"content"
		"list";
	}

	section.service .wrapper .image {
		min-height: 400px;
		
	}
}
section.seperator {
	background-size: cover;
	background-position: 50%;
	height: 40vh;
	min-height: 400px;
	position: relative;
	max-height: 500px;
} 
.seperator::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0));
    pointer-events: none; /* Makes sure the overlay doesn't block any interactions with the section */
}

section.skeleton div.columns {
	--column-count: 3; 
	--column-size: var(--grid-4); 

	display: grid;
	grid-template-columns: repeat(var(--column-count), var(--column-size));
	gap: var(--offset); 
}

section.skeleton div.columns[data-align="start"] { align-items: start; }
section.skeleton div.columns[data-align="center"] { align-items: center; }
section.skeleton div.columns[data-align="end"] { align-items: end; }
section.skeleton div.columns[data-align="stretch"] { align-items: stretch; }

section.skeleton div.columns > *[data-self="start"] { align-self: start; }
section.skeleton div.columns > *[data-self="center"] { align-self: center; }
section.skeleton div.columns > *[data-self="end"] { align-self: end; }
section.skeleton div.columns > *[data-self="stretch"] { align-self: stretch; }

section.skeleton div.columns[data-size="2"] {
	--column-count: 2; 
	--column-size: var(--grid-6); 
}

/* --------------- mobile --------------- */
@media screen and (max-width: 1199px) {
	section.skeleton div.columns {
		grid-template-columns: 1fr;
	}
}
section.skeleton .story {
	display: grid; 
	grid-template-columns: repeat(2, 1fr);
	justify-content: center;
	gap: var(--offset);
}

section.skeleton .story[data-size="media"] .media { width: var(--grid-8); }
section.skeleton .story[data-size="media"] .content { width: var(--grid-4); }

section.skeleton .story[data-size="content"] .content { width: var(--grid-8); }
section.skeleton .story[data-size="content"] .media { width: var(--grid-4); }

section.skeleton .story[data-order="content"] .content { order: 1; }
section.skeleton .story[data-order="content"] .media { order: 2; }

section.skeleton .story[data-order="media"] .content { order: 2; }
section.skeleton .story[data-order="media"] .media { order: 1; }

/* --------------- lipstick --------------- */

section.skeleton .story .content {
	display: flex;
	flex-direction: column;
	padding-bottom: var(--offset-small);
}

section.skeleton .story .content .text > header + p {
	font-weight: 400;
}

section.skeleton .story .media figure img {
	max-width: 100%;
}

/* --------------- mobile --------------- */
@media screen and (max-width: 1199px) {
	section.skeleton .story {
		grid-template-columns: 1fr;
	}

	
	section.skeleton .story[data-size="media"] .media,
	section.skeleton .story[data-size="media"] .content,
	section.skeleton .story[data-size="content"] .content,
	section.skeleton .story[data-size="content"] .media { width: 100%; }

	section.skeleton .story .content {
		padding: 0;
	}
}
section.skeleton.media {
	--min-height: 40vh;
	background: #222;
	display: block;
	padding: 0; 
	position: relative;
}

section.skeleton.media .overlay {
	position: absolute;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	background: rgba(0,0,0,.5);
	color: white;
	min-height: 400px;
	padding: var(--section-spacing) 0;
}

section.skeleton.media .mediaholder.image {
	background-size: cover;
	background-position: 50%;
}

.data > .inner > .container {
	margin-top: 20px;
	margin-bottom: 20px;
	display: flex;
	justify-content: space-between;
}

.calculator-result.container {
    display: grid;
    grid-template-columns: var(--grid-4) var(--grid-8);
    gap: var(--offset);
    max-width: var(--base);
    margin: 0 auto;

	align-items: center;
}

.googlemaps {
    max-width: var(--grid-6);
    max-height: 280px;
    height: 280px;
	width: 100%;
    position: relative;
    margin: 0 auto;
	& > #map{
		max-width: var(--grid-6);
		height: 100%;
	}
}
section.result > .wrapper{
	display: grid;
    grid-template-columns: var(--grid-4) var(--grid-8);
    gap: var(--offset);
	margin: 0 auto;
	padding: 29px 0px;
}

@media screen and (max-width: 1199px) {
.calculator-result.container{
	grid-template-columns: 1fr;
	width: var(--base-mobile);
}
section.result > .wrapper{
	grid-template-columns: 1fr;

}
section.result .data > .inner > .container{
	flex-direction: column;

}
section.result{
	font-size: 16px;
}
	}
html{
	scroll-behavior: smooth;
}
section.skeleton .container .title a[data-scroll-target] { 
	color: var(--color-primary);
	font-size: 30px;
	margin-top: var(--line-height);
	display: inline-block;
}

section.skeleton .container .title a[data-scroll-target]:hover {
	color: white;
}
 section.skeleton div.container div.centered {
	display: flex;
	justify-content: center;
	align-items: center;	
}

section.skeleton div.container div.centered > * {
	width: var(--grid-8);
}

section.skeleton div.container div.centered[data-size="large"] > * {
	width: var(--grid-12);
}

/* --------------- mobile --------------- */
@media screen and (max-width: 1199px) {
	section.skeleton div.container div.centered > *,
	section.skeleton div.container div.centered[data-size="large"] > * {
		width: 100%;
	}
}

section.skeleton {
	background: url(/e2/site/collewijnberging/content/site/image/watermerk_large.png), var(--color-content-gradient);
	background-position: -500px -500px , 0;
	background-repeat: no-repeat;
	display: flex;
	justify-content: center;
}

section.skeleton[data-background="reverse"] {
	background: url(/e2/site/collewijnberging/content/site/image/watermerk_large.png), var(--color-content-gradient-reverse);
	background-position: 140% 350% , 0;
	background-repeat: no-repeat;
}

section.skeleton .container {
	width: var(--base);
}

section.skeleton .container > div:not(.overlay) + div {
	margin-top: var(--offset);
}

/* --------------- interactive --------------- */

[data-interactive="1"] section.skeleton {
	padding: var(--offset);
}

/* --------------- mobile --------------- */
@media screen and (max-width: 1199px) {
	section.skeleton .container {
		width: var(--base-mobile) ;
	}
}
.fixed-image { 
	width: 100%;
	height: 100%;
	max-height: 600px;
	background-size: cover;
	background-position: 50% 50%; 
}


.overview-image > img{
	max-height: 280px;
    width: 100%;
    object-fit: cover;
}

.media h3{
	padding-top: 20px;
}
.sqaure-image{
	overflow: hidden;
    aspect-ratio: 1 / 1;
}
.sqaure-image > img{
	width: 100%;
}

/* --------------- mobile --------------- */
@media screen and (max-width: 1199px) {
	.fixed-image[data-orientation="portrait"] {
		height: 50vh;
		min-height: 400px;
	}

	.fixed-image[data-orientation="landscape"] {
		height: 30vh;
		min-height: 400px;
	}
}
section.cases {
	background: white;
}

section.cases .wrapper:first-child {
	display:grid; 
	grid-template-columns: var(--grid-4) var(--grid-8); 
	gap: var(--offset); 
}

section.cases .wrapper:first-child article:first-child{
	width: var(--grid-4);
}

section.cases .wrapper:first-child article:last-child{
	width: var(--grid-8);
}

section.cases .container .swiper-wrapper {
	padding: var(--offset) 0;  
}

section.cases .container .case {
	max-width: var(--grid-4); 
	box-shadow: 0 0px calc(var(--offset-small) / 2) rgba(0,0,0,.2); 
	background-size: cover;
	background-position: 50% 50%; 
	cursor: pointer;
}

section.cases .container .case .overlay {
	padding: 290px 0 0 0;
	background: rgba(0,125,198,0);
	transition: all var(--transition-speed); 
} 

section.cases .container .case article {
	background: white;
	padding: var(--offset-small);
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	flex-wrap: wrap;
	transition: all var(--transition-speed); 
}

section.cases .container .case article h3 { 
	width: 100%;
	font-size: 18px;
	line-height: 24px;
}

section.cases .container .case article h3 span { 
	font-size: 14px;
	font-style: normal;
	line-height: 24px;

} 

section.cases .container .case article span {
	color: var(--color-blue)
}
section.cases .container .case article div {
	margin-top: 10px;
	
}

section.cases .container .case:hover .overlay {
	background: rgba(0,125,198,.8);
	color: #fff;
}

section.cases .container .case:hover article {
	background: rgba(255,255,255,0);
}

section.cases .container .case:hover article h3,
section.cases .container .case:hover article h3 span,
section.cases .container .case:hover article span  {
	color: white;
} 

section.cases .container .case:hover:before {
	--circle-size: 120px;
	content: "\f055";
	font-family: 'Font Awesome 5 Pro';
	font-size: 30px;
	width: var(--circle-size);
	height: var(--circle-size);
	display: flex;
	justify-content: center;
	align-items: center;
	color: rgba(255,255,255,1);
	position: absolute;
	z-index: 100;
	border: 1px solid rgba(255,255,255,.2);
	border-radius: 50%;
	left: calc(50% - (var(--circle-size) / 2));
	font-weight: 500;
	top: calc(30% - (var(--circle-size) / 2));
}

/* --------------- mobile --------------- */
@media screen and (max-width: 1199px) {
	section.cases .wrapper:first-child {
		display:grid; 
		grid-template-columns: 1fr; 
	}
	
	section.cases .wrapper:first-child article:last-child {
		width: 100%;
	}

	section.cases .container .case {
		max-width: 320px;
	}

	section.cases .swiper-pagination {
		position: relative;
	}
}
div.notice {
    background: rgba(0,0,0,.05);
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    padding: calc(var(--offset-small) / 2);
    border-radius: calc(var(--offset-small) / 2);
    font-size: 14px; 
    line-height: 20px;
}

div.notice > span {
    margin-right: 10px;
    font-size: 18px;
    color: var(--color-blue)
}
section.departments {
	padding-top: 0;
}

section.departments .maps,
section.departments .maps #map {
	height: 70vh;
	min-height: 400px;
}

section.departments .list {
	padding: var(--offset) 0; 
	display: flex;
	align-items: center;
	flex-direction: column;
	margin-top: unset;
	gap: 0px;
}

section.departments .list .container {
	margin-top: var(--offset); 
	display: grid; 
	grid-template-columns: repeat(4,1fr);
	gap: var(--offset);
	width: var(--grid-12);
}

section.departments .list .text {
	width: var(--grid-8);
}

section.departments .list .container .item {
	font-size: 14px;
	line-height: 24px;
}


section.departments .list .container .item address{
	width: 100%;
}

section.departments .list .container .item h3 {
	width: 100%;
	font-size: 18px;
	color: var(--color-secondary)
}

section.departments .list .container .item a {
	text-decoration: none;
}

section.departments .list .container .item a span {
	color: var(--color-secondary);
}

section.departments .list .container .item a:hover {
	color: var(--color-secondary);
}


@media screen and (max-width: 576px) {

section.departments .list .container {
    margin-top: var(--offset);
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--offset);
    width: 100%;
    text-align: center;
}
section.departments .list .text {
    padding: 0 var(--offset);
}
}
div.search.results > article + article {
	margin-top: var(--offset-small);
}


div.search.results > article h4 {
	font-size: 24px;
	font-weight: 700;
}

div.search.results > article p {
	font-size: 16px;
	line-height: 28px;
}

div.search.results > article p + .button {
	margin-top: 10px;
}
/* ---------- vars ---------- */


/* ---------- layout ---------- */
section.iframe {
	display: grid;
	grid-template-columns: var(--grid-10);
	justify-content: center;
}

section.iframe iframe {
	width: 100%;
}

/* ---------- lipstick ---------- */
section.iframe {
	background: white;
}

/* ---------- mediaquery ---------- */


@media screen and (max-width: 1199px) {
	section.iframe {
		grid-template-columns: 1fr;
	}
}