.glide{position:relative;width:100%;box-sizing:border-box}.glide *{box-sizing:inherit}.glide__track{overflow:hidden}.glide__slides{position:relative;width:100%;list-style:none;backface-visibility:hidden;transform-style:preserve-3d;touch-action:pan-Y;overflow:hidden;margin:0;padding:0;white-space:nowrap;display:flex;flex-wrap:nowrap;will-change:transform}.glide__slides--dragging{user-select:none}.glide__slide{width:100%;height:100%;flex-shrink:0;white-space:normal;user-select:none;-webkit-touch-callout:none;-webkit-tap-highlight-color:transparent}.glide__slide a{user-select:none;-webkit-user-drag:none;-moz-user-select:none;-ms-user-select:none}.glide__arrows{-webkit-touch-callout:none;user-select:none}.glide__bullets{-webkit-touch-callout:none;user-select:none}.glide--rtl{direction:rtl}/*# sourceMappingURL=glide.core.min.css.map */

/* required styles */

.leaflet-pane,
.leaflet-tile,
.leaflet-marker-icon,
.leaflet-marker-shadow,
.leaflet-tile-container,
.leaflet-pane > svg,
.leaflet-pane > canvas,
.leaflet-zoom-box,
.leaflet-image-layer,
.leaflet-layer {
	position: absolute;
	left: 0;
	top: 0;
	}
.leaflet-container {
	overflow: hidden;
	}
.leaflet-tile,
.leaflet-marker-icon,
.leaflet-marker-shadow {
	-webkit-user-select: none;
	   -moz-user-select: none;
	        user-select: none;
	  -webkit-user-drag: none;
	}
/* Prevents IE11 from highlighting tiles in blue */
.leaflet-tile::selection {
	background: transparent;
}
/* Safari renders non-retina tile on retina better with this, but Chrome is worse */
.leaflet-safari .leaflet-tile {
	image-rendering: -webkit-optimize-contrast;
	}
/* hack that prevents hw layers "stretching" when loading new tiles */
.leaflet-safari .leaflet-tile-container {
	width: 1600px;
	height: 1600px;
	-webkit-transform-origin: 0 0;
	}
.leaflet-marker-icon,
.leaflet-marker-shadow {
	display: block;
	}
/* .leaflet-container svg: reset svg max-width decleration shipped in Joomla! (joomla.org) 3.x */
/* .leaflet-container img: map is broken in FF if you have max-width: 100% on tiles */
.leaflet-container .leaflet-overlay-pane svg {
	max-width: none !important;
	max-height: none !important;
	}
.leaflet-container .leaflet-marker-pane img,
.leaflet-container .leaflet-shadow-pane img,
.leaflet-container .leaflet-tile-pane img,
.leaflet-container img.leaflet-image-layer,
.leaflet-container .leaflet-tile {
	max-width: none !important;
	max-height: none !important;
	width: auto;
	padding: 0;
	}

.leaflet-container img.leaflet-tile {
	/* See: https://bugs.chromium.org/p/chromium/issues/detail?id=600120 */
	mix-blend-mode: plus-lighter;
}

.leaflet-container.leaflet-touch-zoom {
	-ms-touch-action: pan-x pan-y;
	touch-action: pan-x pan-y;
	}
.leaflet-container.leaflet-touch-drag {
	-ms-touch-action: pinch-zoom;
	/* Fallback for FF which doesn't support pinch-zoom */
	touch-action: none;
	touch-action: pinch-zoom;
}
.leaflet-container.leaflet-touch-drag.leaflet-touch-zoom {
	-ms-touch-action: none;
	touch-action: none;
}
.leaflet-container {
	-webkit-tap-highlight-color: transparent;
}
.leaflet-container a {
	-webkit-tap-highlight-color: rgba(51, 181, 229, 0.4);
}
.leaflet-tile {
	filter: inherit;
	visibility: hidden;
	}
.leaflet-tile-loaded {
	visibility: inherit;
	}
.leaflet-zoom-box {
	width: 0;
	height: 0;
	-moz-box-sizing: border-box;
	     box-sizing: border-box;
	z-index: 800;
	}
/* workaround for https://bugzilla.mozilla.org/show_bug.cgi?id=888319 */
.leaflet-overlay-pane svg {
	-moz-user-select: none;
	}

.leaflet-pane         { z-index: 400; }

.leaflet-tile-pane    { z-index: 200; }
.leaflet-overlay-pane { z-index: 400; }
.leaflet-shadow-pane  { z-index: 500; }
.leaflet-marker-pane  { z-index: 600; }
.leaflet-tooltip-pane   { z-index: 650; }
.leaflet-popup-pane   { z-index: 700; }

.leaflet-map-pane canvas { z-index: 100; }
.leaflet-map-pane svg    { z-index: 200; }

.leaflet-vml-shape {
	width: 1px;
	height: 1px;
	}
.lvml {
	behavior: url(#default#VML);
	display: inline-block;
	position: absolute;
	}


/* control positioning */

.leaflet-control {
	position: relative;
	z-index: 800;
	pointer-events: visiblePainted; /* IE 9-10 doesn't have auto */
	pointer-events: auto;
	}
.leaflet-top,
.leaflet-bottom {
	position: absolute;
	z-index: 1000;
	pointer-events: none;
	}
.leaflet-top {
	top: 0;
	}
.leaflet-right {
	right: 0;
	}
.leaflet-bottom {
	bottom: 0;
	}
.leaflet-left {
	left: 0;
	}
.leaflet-control {
	float: left;
	clear: both;
	}
.leaflet-right .leaflet-control {
	float: right;
	}
.leaflet-top .leaflet-control {
	margin-top: 10px;
	}
.leaflet-bottom .leaflet-control {
	margin-bottom: 10px;
	}
.leaflet-left .leaflet-control {
	margin-left: 10px;
	}
.leaflet-right .leaflet-control {
	margin-right: 10px;
	}


/* zoom and fade animations */

.leaflet-fade-anim .leaflet-popup {
	opacity: 0;
	-webkit-transition: opacity 0.2s linear;
	   -moz-transition: opacity 0.2s linear;
	        transition: opacity 0.2s linear;
	}
.leaflet-fade-anim .leaflet-map-pane .leaflet-popup {
	opacity: 1;
	}
.leaflet-zoom-animated {
	-webkit-transform-origin: 0 0;
	    -ms-transform-origin: 0 0;
	        transform-origin: 0 0;
	}
svg.leaflet-zoom-animated {
	will-change: transform;
}

.leaflet-zoom-anim .leaflet-zoom-animated {
	-webkit-transition: -webkit-transform 0.25s cubic-bezier(0,0,0.25,1);
	   -moz-transition:    -moz-transform 0.25s cubic-bezier(0,0,0.25,1);
	        transition:         transform 0.25s cubic-bezier(0,0,0.25,1);
	}
.leaflet-zoom-anim .leaflet-tile,
.leaflet-pan-anim .leaflet-tile {
	-webkit-transition: none;
	   -moz-transition: none;
	        transition: none;
	}

.leaflet-zoom-anim .leaflet-zoom-hide {
	visibility: hidden;
	}


/* cursors */

.leaflet-interactive {
	cursor: pointer;
	}
.leaflet-grab {
	cursor: -webkit-grab;
	cursor:    -moz-grab;
	cursor:         grab;
	}
.leaflet-crosshair,
.leaflet-crosshair .leaflet-interactive {
	cursor: crosshair;
	}
.leaflet-popup-pane,
.leaflet-control {
	cursor: auto;
	}
.leaflet-dragging .leaflet-grab,
.leaflet-dragging .leaflet-grab .leaflet-interactive,
.leaflet-dragging .leaflet-marker-draggable {
	cursor: move;
	cursor: -webkit-grabbing;
	cursor:    -moz-grabbing;
	cursor:         grabbing;
	}

/* marker & overlays interactivity */
.leaflet-marker-icon,
.leaflet-marker-shadow,
.leaflet-image-layer,
.leaflet-pane > svg path,
.leaflet-tile-container {
	pointer-events: none;
	}

.leaflet-marker-icon.leaflet-interactive,
.leaflet-image-layer.leaflet-interactive,
.leaflet-pane > svg path.leaflet-interactive,
svg.leaflet-image-layer.leaflet-interactive path {
	pointer-events: visiblePainted; /* IE 9-10 doesn't have auto */
	pointer-events: auto;
	}

/* visual tweaks */

.leaflet-container {
	background: #ddd;
	outline-offset: 1px;
	}
.leaflet-container a {
	color: #0078A8;
	}
.leaflet-zoom-box {
	border: 2px dotted #38f;
	background: rgba(255,255,255,0.5);
	}


/* general typography */
.leaflet-container {
	font-family: "Helvetica Neue", Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-size: 0.75rem;
	line-height: 1.5;
	}


/* general toolbar styles */

.leaflet-bar {
	box-shadow: 0 1px 5px rgba(0,0,0,0.65);
	border-radius: 4px;
	}
.leaflet-bar a {
	background-color: #fff;
	border-bottom: 1px solid #ccc;
	width: 26px;
	height: 26px;
	line-height: 26px;
	display: block;
	text-align: center;
	text-decoration: none;
	color: black;
	}
.leaflet-bar a,
.leaflet-control-layers-toggle {
	background-position: 50% 50%;
	background-repeat: no-repeat;
	display: block;
	}
.leaflet-bar a:hover,
.leaflet-bar a:focus {
	background-color: #f4f4f4;
	}
.leaflet-bar a:first-child {
	border-top-left-radius: 4px;
	border-top-right-radius: 4px;
	}
.leaflet-bar a:last-child {
	border-bottom-left-radius: 4px;
	border-bottom-right-radius: 4px;
	border-bottom: none;
	}
.leaflet-bar a.leaflet-disabled {
	cursor: default;
	background-color: #f4f4f4;
	color: #bbb;
	}

.leaflet-touch .leaflet-bar a {
	width: 30px;
	height: 30px;
	line-height: 30px;
	}
.leaflet-touch .leaflet-bar a:first-child {
	border-top-left-radius: 2px;
	border-top-right-radius: 2px;
	}
.leaflet-touch .leaflet-bar a:last-child {
	border-bottom-left-radius: 2px;
	border-bottom-right-radius: 2px;
	}

/* zoom control */

.leaflet-control-zoom-in,
.leaflet-control-zoom-out {
	font: bold 18px 'Lucida Console', Monaco, monospace;
	text-indent: 1px;
	}

.leaflet-touch .leaflet-control-zoom-in, .leaflet-touch .leaflet-control-zoom-out  {
	font-size: 22px;
	}


/* layers control */

.leaflet-control-layers {
	box-shadow: 0 1px 5px rgba(0,0,0,0.4);
	background: #fff;
	border-radius: 5px;
	}
.leaflet-control-layers-toggle {
	background-image: url(../Assets/layers.png);
	width: 36px;
	height: 36px;
	}
.leaflet-retina .leaflet-control-layers-toggle {
	background-image: url(../Assets/layers-2x.png);
	background-size: 26px 26px;
	}
.leaflet-touch .leaflet-control-layers-toggle {
	width: 44px;
	height: 44px;
	}
.leaflet-control-layers .leaflet-control-layers-list,
.leaflet-control-layers-expanded .leaflet-control-layers-toggle {
	display: none;
	}
.leaflet-control-layers-expanded .leaflet-control-layers-list {
	display: block;
	position: relative;
	}
.leaflet-control-layers-expanded {
	padding: 6px 10px 6px 6px;
	color: #333;
	background: #fff;
	}
.leaflet-control-layers-scrollbar {
	overflow-y: scroll;
	overflow-x: hidden;
	padding-right: 5px;
	}
.leaflet-control-layers-selector {
	margin-top: 2px;
	position: relative;
	top: 1px;
	}
.leaflet-control-layers label {
	display: block;
	font-size: 13px;
	font-size: 1.08333em;
	}
.leaflet-control-layers-separator {
	height: 0;
	border-top: 1px solid #ddd;
	margin: 5px -10px 5px -6px;
	}

/* Default icon URLs */
.leaflet-default-icon-path { /* used only in path-guessing heuristic, see L.Icon.Default */
	background-image: url(../Assets/marker-icon.png);
	}


/* attribution and scale controls */

.leaflet-container .leaflet-control-attribution {
	background: #fff;
	background: rgba(255, 255, 255, 0.8);
	margin: 0;
	}
.leaflet-control-attribution,
.leaflet-control-scale-line {
	padding: 0 5px;
	color: #333;
	line-height: 1.4;
	}
.leaflet-control-attribution a {
	text-decoration: none;
	}
.leaflet-control-attribution a:hover,
.leaflet-control-attribution a:focus {
	text-decoration: underline;
	}
.leaflet-attribution-flag {
	display: inline !important;
	vertical-align: baseline !important;
	width: 1em;
	height: 0.6669em;
	}
.leaflet-left .leaflet-control-scale {
	margin-left: 5px;
	}
.leaflet-bottom .leaflet-control-scale {
	margin-bottom: 5px;
	}
.leaflet-control-scale-line {
	border: 2px solid #777;
	border-top: none;
	line-height: 1.1;
	padding: 2px 5px 1px;
	white-space: nowrap;
	-moz-box-sizing: border-box;
	     box-sizing: border-box;
	background: rgba(255, 255, 255, 0.8);
	text-shadow: 1px 1px #fff;
	}
.leaflet-control-scale-line:not(:first-child) {
	border-top: 2px solid #777;
	border-bottom: none;
	margin-top: -2px;
	}
.leaflet-control-scale-line:not(:first-child):not(:last-child) {
	border-bottom: 2px solid #777;
	}

.leaflet-touch .leaflet-control-attribution,
.leaflet-touch .leaflet-control-layers,
.leaflet-touch .leaflet-bar {
	box-shadow: none;
	}
.leaflet-touch .leaflet-control-layers,
.leaflet-touch .leaflet-bar {
	border: 2px solid rgba(0,0,0,0.2);
	background-clip: padding-box;
	}


/* popup */

.leaflet-popup {
	position: absolute;
	text-align: center;
	margin-bottom: 20px;
	}
.leaflet-popup-content-wrapper {
	padding: 1px;
	text-align: left;
	border-radius: 12px;
	}
.leaflet-popup-content {
	margin: 13px 24px 13px 20px;
	line-height: 1.3;
	font-size: 13px;
	font-size: 1.08333em;
	min-height: 1px;
	}
.leaflet-popup-content p {
	margin: 17px 0;
	margin: 1.3em 0;
	}
.leaflet-popup-tip-container {
	width: 40px;
	height: 20px;
	position: absolute;
	left: 50%;
	margin-top: -1px;
	margin-left: -20px;
	overflow: hidden;
	pointer-events: none;
	}
.leaflet-popup-tip {
	width: 17px;
	height: 17px;
	padding: 1px;

	margin: -10px auto 0;
	pointer-events: auto;

	-webkit-transform: rotate(45deg);
	   -moz-transform: rotate(45deg);
	    -ms-transform: rotate(45deg);
	        transform: rotate(45deg);
	}
.leaflet-popup-content-wrapper,
.leaflet-popup-tip {
	background: white;
	color: #333;
	box-shadow: 0 3px 14px rgba(0,0,0,0.4);
	}
.leaflet-container a.leaflet-popup-close-button {
	position: absolute;
	top: 0;
	right: 0;
	border: none;
	text-align: center;
	width: 24px;
	height: 24px;
	font: 16px/24px Tahoma, Verdana, sans-serif;
	color: #757575;
	text-decoration: none;
	background: transparent;
	}
.leaflet-container a.leaflet-popup-close-button:hover,
.leaflet-container a.leaflet-popup-close-button:focus {
	color: #585858;
	}
.leaflet-popup-scrolled {
	overflow: auto;
	}

.leaflet-oldie .leaflet-popup-content-wrapper {
	-ms-zoom: 1;
	}
.leaflet-oldie .leaflet-popup-tip {
	width: 24px;
	margin: 0 auto;

	-ms-filter: "progid:DXImageTransform.Microsoft.Matrix(M11=0.70710678, M12=0.70710678, M21=-0.70710678, M22=0.70710678)";
	filter: progid:DXImageTransform.Microsoft.Matrix(M11=0.70710678, M12=0.70710678, M21=-0.70710678, M22=0.70710678);
	}

.leaflet-oldie .leaflet-control-zoom,
.leaflet-oldie .leaflet-control-layers,
.leaflet-oldie .leaflet-popup-content-wrapper,
.leaflet-oldie .leaflet-popup-tip {
	border: 1px solid #999;
	}


/* div icon */

.leaflet-div-icon {
	background: #fff;
	border: 1px solid #666;
	}


/* Tooltip */
/* Base styles for the element that has a tooltip */
.leaflet-tooltip {
	position: absolute;
	padding: 6px;
	background-color: #fff;
	border: 1px solid #fff;
	border-radius: 3px;
	color: #222;
	white-space: nowrap;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	pointer-events: none;
	box-shadow: 0 1px 3px rgba(0,0,0,0.4);
	}
.leaflet-tooltip.leaflet-interactive {
	cursor: pointer;
	pointer-events: auto;
	}
.leaflet-tooltip-top:before,
.leaflet-tooltip-bottom:before,
.leaflet-tooltip-left:before,
.leaflet-tooltip-right:before {
	position: absolute;
	pointer-events: none;
	border: 6px solid transparent;
	background: transparent;
	content: "";
	}

/* Directions */

.leaflet-tooltip-bottom {
	margin-top: 6px;
}
.leaflet-tooltip-top {
	margin-top: -6px;
}
.leaflet-tooltip-bottom:before,
.leaflet-tooltip-top:before {
	left: 50%;
	margin-left: -6px;
	}
.leaflet-tooltip-top:before {
	bottom: 0;
	margin-bottom: -12px;
	border-top-color: #fff;
	}
.leaflet-tooltip-bottom:before {
	top: 0;
	margin-top: -12px;
	margin-left: -6px;
	border-bottom-color: #fff;
	}
.leaflet-tooltip-left {
	margin-left: -6px;
}
.leaflet-tooltip-right {
	margin-left: 6px;
}
.leaflet-tooltip-left:before,
.leaflet-tooltip-right:before {
	top: 50%;
	margin-top: -6px;
	}
.leaflet-tooltip-left:before {
	right: 0;
	margin-right: -12px;
	border-left-color: #fff;
	}
.leaflet-tooltip-right:before {
	left: 0;
	margin-left: -12px;
	border-right-color: #fff;
	}

/* Printing */

@media print {
	/* Prevent printers from removing background-images of controls. */
	.leaflet-control {
		-webkit-print-color-adjust: exact;
		print-color-adjust: exact;
		}
	}

.fullscreen-icon {
	background-image: url(../Assets/icon-fullscreen.svg);
	background-size: 26px 52px;
}

.fullscreen-icon.leaflet-fullscreen-on {
	background-position: 0 -26px;
}

.leaflet-touch .fullscreen-icon {
	background-position: 2px 2px;
}

.leaflet-touch .fullscreen-icon.leaflet-fullscreen-on {
	background-position: 2px -24px;
}

/* Safari still needs this vendor-prefix: https://caniuse.com/mdn-css_selectors_fullscreen */
/* stylelint-disable-next-line selector-no-vendor-prefix */
.leaflet-container:-webkit-full-screen {
	width: 100% !important;
	height: 100% !important;
	z-index: 99999;
}

.leaflet-container:fullscreen {
	width: 100% !important;
	height: 100% !important;
	z-index: 99999;
}

.leaflet-pseudo-fullscreen {
	position: fixed !important;
	width: 100% !important;
	height: 100% !important;
	top: 0 !important;
	left: 0 !important;
	z-index: 99999;
}

:root,[data-bs-theme=light]{--bs-blue: #0d6efd;--bs-indigo: #6610f2;--bs-purple: #6f42c1;--bs-pink: #d63384;--bs-red: #eb2800;--bs-orange: #fd7e14;--bs-yellow: #ffc107;--bs-green: #198754;--bs-teal: #20c997;--bs-cyan: #0dcaf0;--bs-black: #232323;--bs-white: #ffffff;--bs-gray: #6c757d;--bs-gray-dark: #343a40;--bs-gray-100: #f8f9fa;--bs-gray-200: #e9ecef;--bs-gray-300: #dee2e6;--bs-gray-400: #ced4da;--bs-gray-500: #adb5bd;--bs-gray-600: #6c757d;--bs-gray-700: #495057;--bs-gray-800: #343a40;--bs-gray-900: #212529;--bs-primary: #4963f6;--bs-secondary: #64002d;--bs-success: #58df55;--bs-info: #4963f6;--bs-warning: #ffcf31;--bs-danger: #eb2800;--bs-light: #ebebeb;--bs-dark: #919191;--bs-primary-rgb: 73, 99, 246;--bs-secondary-rgb: 100, 0, 45;--bs-success-rgb: 88, 223, 85;--bs-info-rgb: 73, 99, 246;--bs-warning-rgb: 255, 207, 49;--bs-danger-rgb: 235, 40, 0;--bs-light-rgb: 235, 235, 235;--bs-dark-rgb: 145, 145, 145;--bs-primary-text-emphasis: rgb(29.2, 39.6, 98.4);--bs-secondary-text-emphasis: #280012;--bs-success-text-emphasis: rgb(35.2, 89.2, 34);--bs-info-text-emphasis: rgb(29.2, 39.6, 98.4);--bs-warning-text-emphasis: rgb(102, 82.8, 19.6);--bs-danger-text-emphasis: #5e1000;--bs-light-text-emphasis: #495057;--bs-dark-text-emphasis: #495057;--bs-primary-bg-subtle: rgb(218.6, 223.8, 253.2);--bs-secondary-bg-subtle: #e0ccd5;--bs-success-bg-subtle: rgb(221.6, 248.6, 221);--bs-info-bg-subtle: rgb(218.6, 223.8, 253.2);--bs-warning-bg-subtle: rgb(255, 245.4, 213.8);--bs-danger-bg-subtle: #fbd4cc;--bs-light-bg-subtle: rgb(251.5, 252, 252.5);--bs-dark-bg-subtle: #ced4da;--bs-primary-border-subtle: rgb(182.2, 192.6, 251.4);--bs-secondary-border-subtle: #c199ab;--bs-success-border-subtle: rgb(188.2, 242.2, 187);--bs-info-border-subtle: rgb(182.2, 192.6, 251.4);--bs-warning-border-subtle: rgb(255, 235.8, 172.6);--bs-danger-border-subtle: #f7a999;--bs-light-border-subtle: #e9ecef;--bs-dark-border-subtle: #adb5bd;--bs-white-rgb: 255, 255, 255;--bs-black-rgb: 35, 35, 35;--bs-font-sans-serif: "Saans-Web", -apple-system, "Segoe UI", Roboto, "Helvetica Neue", sans-serif;--bs-font-monospace: "SaansSemiMono-Web", SFMono-Regular, Menlo, Monaco, "Liberation Mono", monospace;--bs-gradient: linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0));--bs-root-font-size: 16px;--bs-body-font-family: var(--bs-font-sans-serif);--bs-body-font-size:1rem;--bs-body-font-weight: 400;--bs-body-line-height: 1.5;--bs-body-color: #212529;--bs-body-color-rgb: 33, 37, 41;--bs-body-bg: #ffffff;--bs-body-bg-rgb: 255, 255, 255;--bs-emphasis-color: #232323;--bs-emphasis-color-rgb: 35, 35, 35;--bs-secondary-color: rgba(33, 37, 41, 0.75);--bs-secondary-color-rgb: 33, 37, 41;--bs-secondary-bg: #e9ecef;--bs-secondary-bg-rgb: 233, 236, 239;--bs-tertiary-color: rgba(33, 37, 41, 0.5);--bs-tertiary-color-rgb: 33, 37, 41;--bs-tertiary-bg: #f8f9fa;--bs-tertiary-bg-rgb: 248, 249, 250;--bs-heading-color: #232323;--bs-link-color: #64002d;--bs-link-color-rgb: 100, 0, 45;--bs-link-decoration: underline;--bs-link-hover-color: #9E0047;--bs-link-hover-color-rgb: 158, 0, 71;--bs-link-hover-decoration: underline;--bs-code-color: #d63384;--bs-highlight-color: #212529;--bs-highlight-bg: rgb(255, 242.6, 205.4);--bs-border-width: 1px;--bs-border-style: solid;--bs-border-color: #dee2e6;--bs-border-color-translucent: rgba(35, 35, 35, 0.175);--bs-border-radius: 0.375rem;--bs-border-radius-sm: 0.25rem;--bs-border-radius-lg: 0.5rem;--bs-border-radius-xl: 1rem;--bs-border-radius-xxl: 2rem;--bs-border-radius-2xl: var(--bs-border-radius-xxl);--bs-border-radius-pill: 50rem;--bs-box-shadow: 0 0.5rem 1rem rgba(35, 35, 35, 0.15);--bs-box-shadow-sm: 0 0.125rem 0.25rem rgba(35, 35, 35, 0.075);--bs-box-shadow-lg: 0 1rem 3rem rgba(35, 35, 35, 0.175);--bs-box-shadow-inset: inset 0 1px 2px rgba(35, 35, 35, 0.075);--bs-focus-ring-width: 0.25rem;--bs-focus-ring-opacity: 0.25;--bs-focus-ring-color: rgba(73, 99, 246, 0.25);--bs-form-valid-color: #58df55;--bs-form-valid-border-color: #58df55;--bs-form-invalid-color: #eb2800;--bs-form-invalid-border-color: #eb2800}*,*::before,*::after{box-sizing:border-box}:root{font-size:16px;font-size:var(--bs-root-font-size)}@media(prefers-reduced-motion: no-preference){:root{scroll-behavior:smooth}}body{margin:0;font-family:"Saans-Web", -apple-system, "Segoe UI", Roboto, "Helvetica Neue", sans-serif;font-family:var(--bs-body-font-family);font-size:1rem;font-size:var(--bs-body-font-size);font-weight:400;font-weight:var(--bs-body-font-weight);line-height:1.5;line-height:var(--bs-body-line-height);color:#212529;color:var(--bs-body-color);text-align:var(--bs-body-text-align);background-color:#ffffff;background-color:var(--bs-body-bg);-webkit-text-size-adjust:100%;-webkit-tap-highlight-color:rgba(35,35,35,0)}hr{margin:1rem 0;color:inherit;border:0;border-top:1px solid;border-top:var(--bs-border-width) solid;opacity:.25}h6,.h6,h5,.h5,h4,.h4,h3,.h3,h2,.h2,h1,.h1{margin-top:0;margin-bottom:1rem;font-family:"Saans-Web",-apple-system,"Segoe UI",Roboto,"Helvetica Neue",sans-serif,"sans-serif";font-weight:bold;line-height:1.1;color:#232323;color:var(--bs-heading-color)}h1,.h1{font-size:3rem}h2,.h2{font-size:2.5rem}h3,.h3{font-size:2.0625rem}h4,.h4{font-size:1.75rem}h5,.h5{font-size:1.4375rem}h6,.h6{font-size:1.1875rem}p{margin-top:0;margin-bottom:1em}abbr[title]{text-decoration:underline;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:help;-webkit-text-decoration-skip-ink:none;text-decoration-skip-ink:none}address{margin-bottom:1rem;font-style:normal;line-height:inherit}ol,ul{padding-left:2rem}ol,ul,dl{margin-top:0;margin-bottom:1rem}ol ol,ul ul,ol ul,ul ol{margin-bottom:0}dt{font-weight:700}dd{margin-bottom:.5rem;margin-left:0}blockquote{margin:0 0 1rem}b,strong{font-weight:bolder}small,.small{font-size:0.875em}mark,.mark{padding:.1875em;color:#212529;color:var(--bs-highlight-color);background-color:rgb(255, 242.6, 205.4);background-color:var(--bs-highlight-bg)}sub,sup{position:relative;font-size:0.75em;line-height:0;vertical-align:baseline}sub{bottom:-0.25em}sup{top:-0.5em}a{color:rgba(100, 0, 45, 1);color:rgba(var(--bs-link-color-rgb), var(--bs-link-opacity, 1));-webkit-text-decoration:underline;text-decoration:underline}a:hover{--bs-link-color-rgb: var(--bs-link-hover-color-rgb);-webkit-text-decoration:underline;text-decoration:underline}a:not([href]):not([class]),a:not([href]):not([class]):hover{color:inherit;-webkit-text-decoration:none;text-decoration:none}pre,code,kbd,samp{font-family:"SaansSemiMono-Web", SFMono-Regular, Menlo, Monaco, "Liberation Mono", monospace;font-family:var(--bs-font-monospace);font-size:1em}pre{display:block;margin-top:0;margin-bottom:1rem;overflow:auto;font-size:0.875em}pre code{font-size:inherit;color:inherit;word-break:normal}code{font-size:0.875em;color:#d63384;color:var(--bs-code-color);word-wrap:break-word}a>code{color:inherit}kbd{padding:.1875rem .375rem;font-size:0.875em;color:#ffffff;color:var(--bs-body-bg);background-color:#212529;background-color:var(--bs-body-color)}kbd kbd{padding:0;font-size:1em}figure{margin:0 0 1rem}img,svg{vertical-align:middle}table{caption-side:bottom;border-collapse:collapse}caption{padding-top:.5rem;padding-bottom:.5rem;color:rgba(33, 37, 41, 0.75);color:var(--bs-secondary-color);text-align:left}th{text-align:inherit;text-align:-webkit-match-parent}thead,tbody,tfoot,tr,td,th{border-color:inherit;border-style:solid;border-width:0}label{display:inline-block}button{border-radius:0}button:focus:not(:focus-visible){outline:0}input,button,select,.ff-form-overrides .ff-react-dropdown__control,optgroup,textarea{margin:0;font-family:inherit;font-size:inherit;line-height:inherit}button,select,.ff-form-overrides .ff-react-dropdown__control{text-transform:none}[role=button]{cursor:pointer}select,.ff-form-overrides .ff-react-dropdown__control{word-wrap:normal}select:disabled,.ff-form-overrides .ff-react-dropdown__control:disabled{opacity:1}[list]:not([type=date]):not([type=datetime-local]):not([type=month]):not([type=week]):not([type=time])::-webkit-calendar-picker-indicator{display:none !important}button,[type=button],[type=reset],[type=submit]{-webkit-appearance:button}button:not(:disabled),[type=button]:not(:disabled),[type=reset]:not(:disabled),[type=submit]:not(:disabled){cursor:pointer}::-moz-focus-inner{padding:0;border-style:none}textarea{resize:vertical}fieldset{min-width:0;padding:0;margin:0;border:0}legend{float:left;width:100%;padding:0;margin-bottom:.5rem;font-size:1.5rem;line-height:inherit}legend+*{clear:left}::-webkit-datetime-edit-fields-wrapper,::-webkit-datetime-edit-text,::-webkit-datetime-edit-minute,::-webkit-datetime-edit-hour-field,::-webkit-datetime-edit-day-field,::-webkit-datetime-edit-month-field,::-webkit-datetime-edit-year-field{padding:0}::-webkit-inner-spin-button{height:auto}[type=search]{-webkit-appearance:textfield;outline-offset:-2px}::-webkit-search-decoration{-webkit-appearance:none}::-webkit-color-swatch-wrapper{padding:0}::file-selector-button{font:inherit;-webkit-appearance:button}output{display:inline-block}iframe{border:0}summary{display:list-item;cursor:pointer}progress{vertical-align:baseline}[hidden]{display:none !important}.lead{font-size:1.25rem;font-weight:300}.display-1{font-size:5rem;font-weight:300;line-height:1.1}.display-2{font-size:4.5rem;font-weight:300;line-height:1.1}.display-3{font-size:4rem;font-weight:300;line-height:1.1}.display-4{font-size:3.5rem;font-weight:300;line-height:1.1}.display-5{font-size:3rem;font-weight:300;line-height:1.1}.display-6{font-size:2.5rem;font-weight:300;line-height:1.1}.list-unstyled{padding-left:0;list-style:none}.list-inline{padding-left:0;list-style:none}.list-inline-item{display:inline-block}.list-inline-item:not(:last-child){margin-right:.5rem}.initialism{font-size:0.875em;text-transform:uppercase}.blockquote{margin-bottom:1rem;font-size:1.25rem}.blockquote>:last-child{margin-bottom:0}.blockquote-footer{margin-top:-1rem;margin-bottom:1rem;font-size:0.875em;color:#6c757d}.blockquote-footer::before{content:"— "}.img-fluid{max-width:100%;height:auto}.img-thumbnail{padding:.25rem;background-color:#ffffff;background-color:var(--bs-body-bg);border:1px solid #dee2e6;border:var(--bs-border-width) solid var(--bs-border-color);max-width:100%;height:auto}.figure{display:inline-block}.figure-img{margin-bottom:.5rem;line-height:1}.figure-caption{font-size:0.875em;color:rgba(33, 37, 41, 0.75);color:var(--bs-secondary-color)}.container,.container-fluid,.container-xxl,.container-xl,.container-lg,.container-md,.container-sm{--bs-gutter-x: 1rem;--bs-gutter-y: 0;width:100%;padding-right:calc(1rem*.5);padding-right:calc(var(--bs-gutter-x)*.5);padding-left:calc(1rem*.5);padding-left:calc(var(--bs-gutter-x)*.5);margin-right:auto;margin-left:auto}@media(min-width: 576px){.container-sm,.container{max-width:540px}}@media(min-width: 768px){.container-md,.container-sm,.container{max-width:720px}}@media(min-width: 992px){.container-lg,.container-md,.container-sm,.container{max-width:960px}}@media(min-width: 1200px){.container-xl,.container-lg,.container-md,.container-sm,.container{max-width:1200px}}@media(min-width: 1400px){.container-xxl,.container-xl,.container-lg,.container-md,.container-sm,.container{max-width:1380px}}:root{--bs-breakpoint-xs: 0;--bs-breakpoint-sm: 576px;--bs-breakpoint-md: 768px;--bs-breakpoint-lg: 992px;--bs-breakpoint-xl: 1200px;--bs-breakpoint-xxl: 1400px}.row,.ff-form-overrides .schemable-form-section [class*=_sectionedContent]{--bs-gutter-x: 1rem;--bs-gutter-y: 0;display:flex;flex-wrap:wrap;margin-top:calc(-1*0);margin-top:calc(-1*var(--bs-gutter-y));margin-right:calc(-0.5*1rem);margin-right:calc(-0.5*var(--bs-gutter-x));margin-left:calc(-0.5*1rem);margin-left:calc(-0.5*var(--bs-gutter-x))}.row>*,.ff-form-overrides .schemable-form-section [class*=_sectionedContent]>*{flex-shrink:0;width:100%;max-width:100%;padding-right:calc(var(--bs-gutter-x)*.5);padding-left:calc(var(--bs-gutter-x)*.5);margin-top:var(--bs-gutter-y)}.col{flex:1 0 0%}.row-cols-auto>*{flex:0 0 auto;width:auto}.row-cols-1>*{flex:0 0 auto;width:100%}.row-cols-2>*{flex:0 0 auto;width:50%}.row-cols-3>*{flex:0 0 auto;width:33.33333333%}.row-cols-4>*{flex:0 0 auto;width:25%}.row-cols-5>*{flex:0 0 auto;width:20%}.row-cols-6>*{flex:0 0 auto;width:16.66666667%}.col-auto{flex:0 0 auto;width:auto}.col-1{flex:0 0 auto;width:8.33333333%}.col-2{flex:0 0 auto;width:16.66666667%}.col-3{flex:0 0 auto;width:25%}.col-4{flex:0 0 auto;width:33.33333333%}.col-5{flex:0 0 auto;width:41.66666667%}.col-6{flex:0 0 auto;width:50%}.col-7{flex:0 0 auto;width:58.33333333%}.col-8{flex:0 0 auto;width:66.66666667%}.col-9{flex:0 0 auto;width:75%}.col-10{flex:0 0 auto;width:83.33333333%}.col-11{flex:0 0 auto;width:91.66666667%}.col-12,.ff-form-overrides .schemable-form-section [class*=_sectionedContent]>*{flex:0 0 auto;width:100%}.offset-1{margin-left:8.33333333%}.offset-2{margin-left:16.66666667%}.offset-3{margin-left:25%}.offset-4{margin-left:33.33333333%}.offset-5{margin-left:41.66666667%}.offset-6{margin-left:50%}.offset-7{margin-left:58.33333333%}.offset-8{margin-left:66.66666667%}.offset-9{margin-left:75%}.offset-10{margin-left:83.33333333%}.offset-11{margin-left:91.66666667%}.g-0,.gx-0{--bs-gutter-x: 0}.g-0,.gy-0{--bs-gutter-y: 0}.g-1,.gx-1{--bs-gutter-x: 0.25rem}.g-1,.gy-1{--bs-gutter-y: 0.25rem}.g-2,.gx-2{--bs-gutter-x: 0.5rem}.g-2,.gy-2{--bs-gutter-y: 0.5rem}.g-3,.gx-3{--bs-gutter-x: 1rem}.g-3,.gy-3{--bs-gutter-y: 1rem}.g-4,.gx-4{--bs-gutter-x: 1.5rem}.g-4,.gy-4{--bs-gutter-y: 1.5rem}.g-5,.gx-5{--bs-gutter-x: 3rem}.g-5,.gy-5{--bs-gutter-y: 3rem}@media(min-width: 576px){.col-sm{flex:1 0 0%}.row-cols-sm-auto>*{flex:0 0 auto;width:auto}.row-cols-sm-1>*{flex:0 0 auto;width:100%}.row-cols-sm-2>*{flex:0 0 auto;width:50%}.row-cols-sm-3>*{flex:0 0 auto;width:33.33333333%}.row-cols-sm-4>*{flex:0 0 auto;width:25%}.row-cols-sm-5>*{flex:0 0 auto;width:20%}.row-cols-sm-6>*{flex:0 0 auto;width:16.66666667%}.col-sm-auto{flex:0 0 auto;width:auto}.col-sm-1{flex:0 0 auto;width:8.33333333%}.col-sm-2{flex:0 0 auto;width:16.66666667%}.col-sm-3{flex:0 0 auto;width:25%}.col-sm-4{flex:0 0 auto;width:33.33333333%}.col-sm-5{flex:0 0 auto;width:41.66666667%}.col-sm-6{flex:0 0 auto;width:50%}.col-sm-7{flex:0 0 auto;width:58.33333333%}.col-sm-8{flex:0 0 auto;width:66.66666667%}.col-sm-9{flex:0 0 auto;width:75%}.col-sm-10{flex:0 0 auto;width:83.33333333%}.col-sm-11{flex:0 0 auto;width:91.66666667%}.col-sm-12{flex:0 0 auto;width:100%}.offset-sm-0{margin-left:0}.offset-sm-1{margin-left:8.33333333%}.offset-sm-2{margin-left:16.66666667%}.offset-sm-3{margin-left:25%}.offset-sm-4{margin-left:33.33333333%}.offset-sm-5{margin-left:41.66666667%}.offset-sm-6{margin-left:50%}.offset-sm-7{margin-left:58.33333333%}.offset-sm-8{margin-left:66.66666667%}.offset-sm-9{margin-left:75%}.offset-sm-10{margin-left:83.33333333%}.offset-sm-11{margin-left:91.66666667%}.g-sm-0,.gx-sm-0{--bs-gutter-x: 0}.g-sm-0,.gy-sm-0{--bs-gutter-y: 0}.g-sm-1,.gx-sm-1{--bs-gutter-x: 0.25rem}.g-sm-1,.gy-sm-1{--bs-gutter-y: 0.25rem}.g-sm-2,.gx-sm-2{--bs-gutter-x: 0.5rem}.g-sm-2,.gy-sm-2{--bs-gutter-y: 0.5rem}.g-sm-3,.gx-sm-3{--bs-gutter-x: 1rem}.g-sm-3,.gy-sm-3{--bs-gutter-y: 1rem}.g-sm-4,.gx-sm-4{--bs-gutter-x: 1.5rem}.g-sm-4,.gy-sm-4{--bs-gutter-y: 1.5rem}.g-sm-5,.gx-sm-5{--bs-gutter-x: 3rem}.g-sm-5,.gy-sm-5{--bs-gutter-y: 3rem}}@media(min-width: 768px){.col-md{flex:1 0 0%}.row-cols-md-auto>*{flex:0 0 auto;width:auto}.row-cols-md-1>*{flex:0 0 auto;width:100%}.row-cols-md-2>*{flex:0 0 auto;width:50%}.row-cols-md-3>*{flex:0 0 auto;width:33.33333333%}.row-cols-md-4>*{flex:0 0 auto;width:25%}.row-cols-md-5>*{flex:0 0 auto;width:20%}.row-cols-md-6>*{flex:0 0 auto;width:16.66666667%}.col-md-auto{flex:0 0 auto;width:auto}.col-md-1{flex:0 0 auto;width:8.33333333%}.col-md-2{flex:0 0 auto;width:16.66666667%}.col-md-3{flex:0 0 auto;width:25%}.col-md-4{flex:0 0 auto;width:33.33333333%}.col-md-5{flex:0 0 auto;width:41.66666667%}.col-md-6,.ff-form-overrides .schemable-form-section [class*=_sectionedContent]>*{flex:0 0 auto;width:50%}.col-md-7{flex:0 0 auto;width:58.33333333%}.col-md-8{flex:0 0 auto;width:66.66666667%}.col-md-9{flex:0 0 auto;width:75%}.col-md-10{flex:0 0 auto;width:83.33333333%}.col-md-11{flex:0 0 auto;width:91.66666667%}.col-md-12{flex:0 0 auto;width:100%}.offset-md-0{margin-left:0}.offset-md-1{margin-left:8.33333333%}.offset-md-2{margin-left:16.66666667%}.offset-md-3{margin-left:25%}.offset-md-4{margin-left:33.33333333%}.offset-md-5{margin-left:41.66666667%}.offset-md-6{margin-left:50%}.offset-md-7{margin-left:58.33333333%}.offset-md-8{margin-left:66.66666667%}.offset-md-9{margin-left:75%}.offset-md-10{margin-left:83.33333333%}.offset-md-11{margin-left:91.66666667%}.g-md-0,.gx-md-0{--bs-gutter-x: 0}.g-md-0,.gy-md-0{--bs-gutter-y: 0}.g-md-1,.gx-md-1{--bs-gutter-x: 0.25rem}.g-md-1,.gy-md-1{--bs-gutter-y: 0.25rem}.g-md-2,.gx-md-2{--bs-gutter-x: 0.5rem}.g-md-2,.gy-md-2{--bs-gutter-y: 0.5rem}.g-md-3,.gx-md-3{--bs-gutter-x: 1rem}.g-md-3,.gy-md-3{--bs-gutter-y: 1rem}.g-md-4,.gx-md-4{--bs-gutter-x: 1.5rem}.g-md-4,.gy-md-4{--bs-gutter-y: 1.5rem}.g-md-5,.gx-md-5{--bs-gutter-x: 3rem}.g-md-5,.gy-md-5{--bs-gutter-y: 3rem}}@media(min-width: 992px){.col-lg{flex:1 0 0%}.row-cols-lg-auto>*{flex:0 0 auto;width:auto}.row-cols-lg-1>*{flex:0 0 auto;width:100%}.row-cols-lg-2>*{flex:0 0 auto;width:50%}.row-cols-lg-3>*{flex:0 0 auto;width:33.33333333%}.row-cols-lg-4>*{flex:0 0 auto;width:25%}.row-cols-lg-5>*{flex:0 0 auto;width:20%}.row-cols-lg-6>*{flex:0 0 auto;width:16.66666667%}.col-lg-auto{flex:0 0 auto;width:auto}.col-lg-1{flex:0 0 auto;width:8.33333333%}.col-lg-2{flex:0 0 auto;width:16.66666667%}.col-lg-3{flex:0 0 auto;width:25%}.col-lg-4{flex:0 0 auto;width:33.33333333%}.col-lg-5{flex:0 0 auto;width:41.66666667%}.col-lg-6{flex:0 0 auto;width:50%}.col-lg-7{flex:0 0 auto;width:58.33333333%}.col-lg-8{flex:0 0 auto;width:66.66666667%}.col-lg-9{flex:0 0 auto;width:75%}.col-lg-10{flex:0 0 auto;width:83.33333333%}.col-lg-11{flex:0 0 auto;width:91.66666667%}.col-lg-12{flex:0 0 auto;width:100%}.offset-lg-0{margin-left:0}.offset-lg-1{margin-left:8.33333333%}.offset-lg-2{margin-left:16.66666667%}.offset-lg-3{margin-left:25%}.offset-lg-4{margin-left:33.33333333%}.offset-lg-5{margin-left:41.66666667%}.offset-lg-6{margin-left:50%}.offset-lg-7{margin-left:58.33333333%}.offset-lg-8{margin-left:66.66666667%}.offset-lg-9{margin-left:75%}.offset-lg-10{margin-left:83.33333333%}.offset-lg-11{margin-left:91.66666667%}.g-lg-0,.gx-lg-0{--bs-gutter-x: 0}.g-lg-0,.gy-lg-0{--bs-gutter-y: 0}.g-lg-1,.gx-lg-1{--bs-gutter-x: 0.25rem}.g-lg-1,.gy-lg-1{--bs-gutter-y: 0.25rem}.g-lg-2,.gx-lg-2{--bs-gutter-x: 0.5rem}.g-lg-2,.gy-lg-2{--bs-gutter-y: 0.5rem}.g-lg-3,.gx-lg-3{--bs-gutter-x: 1rem}.g-lg-3,.gy-lg-3{--bs-gutter-y: 1rem}.g-lg-4,.gx-lg-4{--bs-gutter-x: 1.5rem}.g-lg-4,.gy-lg-4{--bs-gutter-y: 1.5rem}.g-lg-5,.gx-lg-5{--bs-gutter-x: 3rem}.g-lg-5,.gy-lg-5{--bs-gutter-y: 3rem}}@media(min-width: 1200px){.col-xl{flex:1 0 0%}.row-cols-xl-auto>*{flex:0 0 auto;width:auto}.row-cols-xl-1>*{flex:0 0 auto;width:100%}.row-cols-xl-2>*{flex:0 0 auto;width:50%}.row-cols-xl-3>*{flex:0 0 auto;width:33.33333333%}.row-cols-xl-4>*{flex:0 0 auto;width:25%}.row-cols-xl-5>*{flex:0 0 auto;width:20%}.row-cols-xl-6>*{flex:0 0 auto;width:16.66666667%}.col-xl-auto{flex:0 0 auto;width:auto}.col-xl-1{flex:0 0 auto;width:8.33333333%}.col-xl-2{flex:0 0 auto;width:16.66666667%}.col-xl-3{flex:0 0 auto;width:25%}.col-xl-4{flex:0 0 auto;width:33.33333333%}.col-xl-5{flex:0 0 auto;width:41.66666667%}.col-xl-6{flex:0 0 auto;width:50%}.col-xl-7{flex:0 0 auto;width:58.33333333%}.col-xl-8{flex:0 0 auto;width:66.66666667%}.col-xl-9{flex:0 0 auto;width:75%}.col-xl-10{flex:0 0 auto;width:83.33333333%}.col-xl-11{flex:0 0 auto;width:91.66666667%}.col-xl-12{flex:0 0 auto;width:100%}.offset-xl-0{margin-left:0}.offset-xl-1{margin-left:8.33333333%}.offset-xl-2{margin-left:16.66666667%}.offset-xl-3{margin-left:25%}.offset-xl-4{margin-left:33.33333333%}.offset-xl-5{margin-left:41.66666667%}.offset-xl-6{margin-left:50%}.offset-xl-7{margin-left:58.33333333%}.offset-xl-8{margin-left:66.66666667%}.offset-xl-9{margin-left:75%}.offset-xl-10{margin-left:83.33333333%}.offset-xl-11{margin-left:91.66666667%}.g-xl-0,.gx-xl-0{--bs-gutter-x: 0}.g-xl-0,.gy-xl-0{--bs-gutter-y: 0}.g-xl-1,.gx-xl-1{--bs-gutter-x: 0.25rem}.g-xl-1,.gy-xl-1{--bs-gutter-y: 0.25rem}.g-xl-2,.gx-xl-2{--bs-gutter-x: 0.5rem}.g-xl-2,.gy-xl-2{--bs-gutter-y: 0.5rem}.g-xl-3,.gx-xl-3{--bs-gutter-x: 1rem}.g-xl-3,.gy-xl-3{--bs-gutter-y: 1rem}.g-xl-4,.gx-xl-4{--bs-gutter-x: 1.5rem}.g-xl-4,.gy-xl-4{--bs-gutter-y: 1.5rem}.g-xl-5,.gx-xl-5{--bs-gutter-x: 3rem}.g-xl-5,.gy-xl-5{--bs-gutter-y: 3rem}}@media(min-width: 1400px){.col-xxl{flex:1 0 0%}.row-cols-xxl-auto>*{flex:0 0 auto;width:auto}.row-cols-xxl-1>*{flex:0 0 auto;width:100%}.row-cols-xxl-2>*{flex:0 0 auto;width:50%}.row-cols-xxl-3>*{flex:0 0 auto;width:33.33333333%}.row-cols-xxl-4>*{flex:0 0 auto;width:25%}.row-cols-xxl-5>*{flex:0 0 auto;width:20%}.row-cols-xxl-6>*{flex:0 0 auto;width:16.66666667%}.col-xxl-auto{flex:0 0 auto;width:auto}.col-xxl-1{flex:0 0 auto;width:8.33333333%}.col-xxl-2{flex:0 0 auto;width:16.66666667%}.col-xxl-3{flex:0 0 auto;width:25%}.col-xxl-4{flex:0 0 auto;width:33.33333333%}.col-xxl-5{flex:0 0 auto;width:41.66666667%}.col-xxl-6{flex:0 0 auto;width:50%}.col-xxl-7{flex:0 0 auto;width:58.33333333%}.col-xxl-8{flex:0 0 auto;width:66.66666667%}.col-xxl-9{flex:0 0 auto;width:75%}.col-xxl-10{flex:0 0 auto;width:83.33333333%}.col-xxl-11{flex:0 0 auto;width:91.66666667%}.col-xxl-12{flex:0 0 auto;width:100%}.offset-xxl-0{margin-left:0}.offset-xxl-1{margin-left:8.33333333%}.offset-xxl-2{margin-left:16.66666667%}.offset-xxl-3{margin-left:25%}.offset-xxl-4{margin-left:33.33333333%}.offset-xxl-5{margin-left:41.66666667%}.offset-xxl-6{margin-left:50%}.offset-xxl-7{margin-left:58.33333333%}.offset-xxl-8{margin-left:66.66666667%}.offset-xxl-9{margin-left:75%}.offset-xxl-10{margin-left:83.33333333%}.offset-xxl-11{margin-left:91.66666667%}.g-xxl-0,.gx-xxl-0{--bs-gutter-x: 0}.g-xxl-0,.gy-xxl-0{--bs-gutter-y: 0}.g-xxl-1,.gx-xxl-1{--bs-gutter-x: 0.25rem}.g-xxl-1,.gy-xxl-1{--bs-gutter-y: 0.25rem}.g-xxl-2,.gx-xxl-2{--bs-gutter-x: 0.5rem}.g-xxl-2,.gy-xxl-2{--bs-gutter-y: 0.5rem}.g-xxl-3,.gx-xxl-3{--bs-gutter-x: 1rem}.g-xxl-3,.gy-xxl-3{--bs-gutter-y: 1rem}.g-xxl-4,.gx-xxl-4{--bs-gutter-x: 1.5rem}.g-xxl-4,.gy-xxl-4{--bs-gutter-y: 1.5rem}.g-xxl-5,.gx-xxl-5{--bs-gutter-x: 3rem}.g-xxl-5,.gy-xxl-5{--bs-gutter-y: 3rem}}.table{--bs-table-color-type: initial;--bs-table-bg-type: initial;--bs-table-color-state: initial;--bs-table-bg-state: initial;--bs-table-color: var(--bs-emphasis-color);--bs-table-bg: var(--bs-body-bg);--bs-table-border-color: lightgray;--bs-table-accent-bg: transparent;--bs-table-striped-color: var(--bs-emphasis-color);--bs-table-striped-bg: rgba(var(--bs-emphasis-color-rgb), 0.05);--bs-table-active-color: var(--bs-emphasis-color);--bs-table-active-bg: rgba(var(--bs-emphasis-color-rgb), 0.1);--bs-table-hover-color: var(--bs-emphasis-color);--bs-table-hover-bg: rgba(var(--bs-emphasis-color-rgb), 0.075);width:100%;margin-bottom:1rem;vertical-align:top;border-color:lightgray;border-color:var(--bs-table-border-color)}.table>:not(caption)>*>*{padding:.5rem .5rem;color:var(--bs-table-color-state, var(--bs-table-color-type, var(--bs-table-color)));background-color:var(--bs-table-bg);border-bottom-width:1px;border-bottom-width:var(--bs-border-width);box-shadow:inset 0 0 0 9999px var(--bs-table-bg-state, var(--bs-table-bg-type, var(--bs-table-accent-bg)))}.table>tbody{vertical-align:inherit}.table>thead{vertical-align:bottom}.table-group-divider{border-top:calc(1px*2) solid currentcolor;border-top:calc(var(--bs-border-width)*2) solid currentcolor}.caption-top{caption-side:top}.table-sm>:not(caption)>*>*{padding:.25rem .25rem}.table-bordered>:not(caption)>*{border-width:1px 0;border-width:var(--bs-border-width) 0}.table-bordered>:not(caption)>*>*{border-width:0 1px;border-width:0 var(--bs-border-width)}.table-borderless>:not(caption)>*>*{border-bottom-width:0}.table-borderless>:not(:first-child){border-top-width:0}.table-striped>tbody>tr:nth-of-type(odd)>*{--bs-table-color-type: var(--bs-table-striped-color);--bs-table-bg-type: var(--bs-table-striped-bg)}.table-striped-columns>:not(caption)>tr>:nth-child(even){--bs-table-color-type: var(--bs-table-striped-color);--bs-table-bg-type: var(--bs-table-striped-bg)}.table-active{--bs-table-color-state: var(--bs-table-active-color);--bs-table-bg-state: var(--bs-table-active-bg)}.table-hover>tbody>tr:hover>*{--bs-table-color-state: var(--bs-table-hover-color);--bs-table-bg-state: var(--bs-table-hover-bg)}.table-primary{--bs-table-color: #232323;--bs-table-bg: rgb(218.6, 223.8, 253.2);--bs-table-border-color: rgb(181.88, 186.04, 209.56);--bs-table-striped-bg: rgb(209.42, 214.36, 242.29);--bs-table-striped-color: #232323;--bs-table-active-bg: rgb(200.24, 204.92, 231.38);--bs-table-active-color: #232323;--bs-table-hover-bg: rgb(204.83, 209.64, 236.835);--bs-table-hover-color: #232323;color:#232323;color:var(--bs-table-color);border-color:rgb(181.88, 186.04, 209.56);border-color:var(--bs-table-border-color)}.table-secondary{--bs-table-color: #232323;--bs-table-bg: #e0ccd5;--bs-table-border-color: rgb(186.2, 170.2, 177.4);--bs-table-striped-bg: rgb(214.55, 195.55, 204.1);--bs-table-striped-color: #232323;--bs-table-active-bg: rgb(205.1, 187.1, 195.2);--bs-table-active-color: #232323;--bs-table-hover-bg: rgb(209.825, 191.325, 199.65);--bs-table-hover-color: #232323;color:#232323;color:var(--bs-table-color);border-color:rgb(186.2, 170.2, 177.4);border-color:var(--bs-table-border-color)}.table-success{--bs-table-color: #232323;--bs-table-bg: rgb(221.6, 248.6, 221);--bs-table-border-color: rgb(184.28, 205.88, 183.8);--bs-table-striped-bg: rgb(212.27, 237.92, 211.7);--bs-table-striped-color: #232323;--bs-table-active-bg: rgb(202.94, 227.24, 202.4);--bs-table-active-color: #232323;--bs-table-hover-bg: rgb(207.605, 232.58, 207.05);--bs-table-hover-color: #232323;color:#232323;color:var(--bs-table-color);border-color:rgb(184.28, 205.88, 183.8);border-color:var(--bs-table-border-color)}.table-info{--bs-table-color: #232323;--bs-table-bg: rgb(218.6, 223.8, 253.2);--bs-table-border-color: rgb(181.88, 186.04, 209.56);--bs-table-striped-bg: rgb(209.42, 214.36, 242.29);--bs-table-striped-color: #232323;--bs-table-active-bg: rgb(200.24, 204.92, 231.38);--bs-table-active-color: #232323;--bs-table-hover-bg: rgb(204.83, 209.64, 236.835);--bs-table-hover-color: #232323;color:#232323;color:var(--bs-table-color);border-color:rgb(181.88, 186.04, 209.56);border-color:var(--bs-table-border-color)}.table-warning{--bs-table-color: #232323;--bs-table-bg: rgb(255, 245.4, 213.8);--bs-table-border-color: rgb(211, 203.32, 178.04);--bs-table-striped-bg: rgb(244, 234.88, 204.86);--bs-table-striped-color: #232323;--bs-table-active-bg: rgb(233, 224.36, 195.92);--bs-table-active-color: #232323;--bs-table-hover-bg: rgb(238.5, 229.62, 200.39);--bs-table-hover-color: #232323;color:#232323;color:var(--bs-table-color);border-color:rgb(211, 203.32, 178.04);border-color:var(--bs-table-border-color)}.table-danger{--bs-table-color: #232323;--bs-table-bg: #fbd4cc;--bs-table-border-color: rgb(207.8, 176.6, 170.2);--bs-table-striped-bg: rgb(240.2, 203.15, 195.55);--bs-table-striped-color: #232323;--bs-table-active-bg: rgb(229.4, 194.3, 187.1);--bs-table-active-color: #232323;--bs-table-hover-bg: rgb(234.8, 198.725, 191.325);--bs-table-hover-color: #232323;color:#232323;color:var(--bs-table-color);border-color:rgb(207.8, 176.6, 170.2);border-color:var(--bs-table-border-color)}.table-light{--bs-table-color: #232323;--bs-table-bg: #ebebeb;--bs-table-border-color: #c3c3c3;--bs-table-striped-bg: #e1e1e1;--bs-table-striped-color: #232323;--bs-table-active-bg: #d7d7d7;--bs-table-active-color: #232323;--bs-table-hover-bg: gainsboro;--bs-table-hover-color: #232323;color:#232323;color:var(--bs-table-color);border-color:#c3c3c3;border-color:var(--bs-table-border-color)}.table-dark{--bs-table-color: #232323;--bs-table-bg: #919191;--bs-table-border-color: #7b7b7b;--bs-table-striped-bg: rgb(139.5, 139.5, 139.5);--bs-table-striped-color: #232323;--bs-table-active-bg: #868686;--bs-table-active-color: #232323;--bs-table-hover-bg: rgb(136.75, 136.75, 136.75);--bs-table-hover-color: #232323;color:#232323;color:var(--bs-table-color);border-color:#7b7b7b;border-color:var(--bs-table-border-color)}.table-responsive{overflow-x:auto;-webkit-overflow-scrolling:touch}@media(max-width: 575.98px){.table-responsive-sm{overflow-x:auto;-webkit-overflow-scrolling:touch}}@media(max-width: 767.98px){.table-responsive-md{overflow-x:auto;-webkit-overflow-scrolling:touch}}@media(max-width: 991.98px){.table-responsive-lg{overflow-x:auto;-webkit-overflow-scrolling:touch}}@media(max-width: 1199.98px){.table-responsive-xl{overflow-x:auto;-webkit-overflow-scrolling:touch}}@media(max-width: 1399.98px){.table-responsive-xxl{overflow-x:auto;-webkit-overflow-scrolling:touch}}.clearfix::after{display:block;clear:both;content:""}.text-bg-primary{color:#fff !important;background-color:RGBA(73, 99, 246, 1) !important;background-color:RGBA(var(--bs-primary-rgb), var(--bs-bg-opacity, 1)) !important}.text-bg-secondary{color:#fff !important;background-color:RGBA(100, 0, 45, 1) !important;background-color:RGBA(var(--bs-secondary-rgb), var(--bs-bg-opacity, 1)) !important}.text-bg-success{color:#232323 !important;background-color:RGBA(88, 223, 85, 1) !important;background-color:RGBA(var(--bs-success-rgb), var(--bs-bg-opacity, 1)) !important}.text-bg-info{color:#fff !important;background-color:RGBA(73, 99, 246, 1) !important;background-color:RGBA(var(--bs-info-rgb), var(--bs-bg-opacity, 1)) !important}.text-bg-warning{color:#232323 !important;background-color:RGBA(255, 207, 49, 1) !important;background-color:RGBA(var(--bs-warning-rgb), var(--bs-bg-opacity, 1)) !important}.text-bg-danger{color:#fff !important;background-color:RGBA(235, 40, 0, 1) !important;background-color:RGBA(var(--bs-danger-rgb), var(--bs-bg-opacity, 1)) !important}.text-bg-light{color:#232323 !important;background-color:RGBA(235, 235, 235, 1) !important;background-color:RGBA(var(--bs-light-rgb), var(--bs-bg-opacity, 1)) !important}.text-bg-dark{color:#232323 !important;background-color:RGBA(145, 145, 145, 1) !important;background-color:RGBA(var(--bs-dark-rgb), var(--bs-bg-opacity, 1)) !important}.link-primary{color:RGBA(73, 99, 246, 1) !important;color:RGBA(var(--bs-primary-rgb), var(--bs-link-opacity, 1)) !important;text-decoration-color:RGBA(73, 99, 246, 1) !important;text-decoration-color:RGBA(var(--bs-primary-rgb), var(--bs-link-underline-opacity, 1)) !important}.link-primary:hover,.link-primary:focus{color:RGBA(58, 79, 197, 1) !important;color:RGBA(58, 79, 197, var(--bs-link-opacity, 1)) !important;text-decoration-color:RGBA(58, 79, 197, 1) !important;text-decoration-color:RGBA(58, 79, 197, var(--bs-link-underline-opacity, 1)) !important}.link-secondary{color:RGBA(100, 0, 45, 1) !important;color:RGBA(var(--bs-secondary-rgb), var(--bs-link-opacity, 1)) !important;text-decoration-color:RGBA(100, 0, 45, 1) !important;text-decoration-color:RGBA(var(--bs-secondary-rgb), var(--bs-link-underline-opacity, 1)) !important}.link-secondary:hover,.link-secondary:focus{color:RGBA(80, 0, 36, 1) !important;color:RGBA(80, 0, 36, var(--bs-link-opacity, 1)) !important;text-decoration-color:RGBA(80, 0, 36, 1) !important;text-decoration-color:RGBA(80, 0, 36, var(--bs-link-underline-opacity, 1)) !important}.link-success{color:RGBA(88, 223, 85, 1) !important;color:RGBA(var(--bs-success-rgb), var(--bs-link-opacity, 1)) !important;text-decoration-color:RGBA(88, 223, 85, 1) !important;text-decoration-color:RGBA(var(--bs-success-rgb), var(--bs-link-underline-opacity, 1)) !important}.link-success:hover,.link-success:focus{color:RGBA(121, 229, 119, 1) !important;color:RGBA(121, 229, 119, var(--bs-link-opacity, 1)) !important;text-decoration-color:RGBA(121, 229, 119, 1) !important;text-decoration-color:RGBA(121, 229, 119, var(--bs-link-underline-opacity, 1)) !important}.link-info{color:RGBA(73, 99, 246, 1) !important;color:RGBA(var(--bs-info-rgb), var(--bs-link-opacity, 1)) !important;text-decoration-color:RGBA(73, 99, 246, 1) !important;text-decoration-color:RGBA(var(--bs-info-rgb), var(--bs-link-underline-opacity, 1)) !important}.link-info:hover,.link-info:focus{color:RGBA(58, 79, 197, 1) !important;color:RGBA(58, 79, 197, var(--bs-link-opacity, 1)) !important;text-decoration-color:RGBA(58, 79, 197, 1) !important;text-decoration-color:RGBA(58, 79, 197, var(--bs-link-underline-opacity, 1)) !important}.link-warning{color:RGBA(255, 207, 49, 1) !important;color:RGBA(var(--bs-warning-rgb), var(--bs-link-opacity, 1)) !important;text-decoration-color:RGBA(255, 207, 49, 1) !important;text-decoration-color:RGBA(var(--bs-warning-rgb), var(--bs-link-underline-opacity, 1)) !important}.link-warning:hover,.link-warning:focus{color:RGBA(255, 217, 90, 1) !important;color:RGBA(255, 217, 90, var(--bs-link-opacity, 1)) !important;text-decoration-color:RGBA(255, 217, 90, 1) !important;text-decoration-color:RGBA(255, 217, 90, var(--bs-link-underline-opacity, 1)) !important}.link-danger{color:RGBA(235, 40, 0, 1) !important;color:RGBA(var(--bs-danger-rgb), var(--bs-link-opacity, 1)) !important;text-decoration-color:RGBA(235, 40, 0, 1) !important;text-decoration-color:RGBA(var(--bs-danger-rgb), var(--bs-link-underline-opacity, 1)) !important}.link-danger:hover,.link-danger:focus{color:RGBA(188, 32, 0, 1) !important;color:RGBA(188, 32, 0, var(--bs-link-opacity, 1)) !important;text-decoration-color:RGBA(188, 32, 0, 1) !important;text-decoration-color:RGBA(188, 32, 0, var(--bs-link-underline-opacity, 1)) !important}.link-light{color:RGBA(235, 235, 235, 1) !important;color:RGBA(var(--bs-light-rgb), var(--bs-link-opacity, 1)) !important;text-decoration-color:RGBA(235, 235, 235, 1) !important;text-decoration-color:RGBA(var(--bs-light-rgb), var(--bs-link-underline-opacity, 1)) !important}.link-light:hover,.link-light:focus{color:RGBA(239, 239, 239, 1) !important;color:RGBA(239, 239, 239, var(--bs-link-opacity, 1)) !important;text-decoration-color:RGBA(239, 239, 239, 1) !important;text-decoration-color:RGBA(239, 239, 239, var(--bs-link-underline-opacity, 1)) !important}.link-dark{color:RGBA(145, 145, 145, 1) !important;color:RGBA(var(--bs-dark-rgb), var(--bs-link-opacity, 1)) !important;text-decoration-color:RGBA(145, 145, 145, 1) !important;text-decoration-color:RGBA(var(--bs-dark-rgb), var(--bs-link-underline-opacity, 1)) !important}.link-dark:hover,.link-dark:focus{color:RGBA(167, 167, 167, 1) !important;color:RGBA(167, 167, 167, var(--bs-link-opacity, 1)) !important;text-decoration-color:RGBA(167, 167, 167, 1) !important;text-decoration-color:RGBA(167, 167, 167, var(--bs-link-underline-opacity, 1)) !important}.link-body-emphasis{color:RGBA(35, 35, 35, 1) !important;color:RGBA(var(--bs-emphasis-color-rgb), var(--bs-link-opacity, 1)) !important;text-decoration-color:RGBA(35, 35, 35, 1) !important;text-decoration-color:RGBA(var(--bs-emphasis-color-rgb), var(--bs-link-underline-opacity, 1)) !important}.link-body-emphasis:hover,.link-body-emphasis:focus{color:RGBA(35, 35, 35, 0.75) !important;color:RGBA(var(--bs-emphasis-color-rgb), var(--bs-link-opacity, 0.75)) !important;text-decoration-color:RGBA(35, 35, 35, 0.75) !important;text-decoration-color:RGBA(var(--bs-emphasis-color-rgb), var(--bs-link-underline-opacity, 0.75)) !important}.focus-ring:focus{outline:0;box-shadow:0 0 0 0.25rem rgba(73, 99, 246, 0.25);box-shadow:var(--bs-focus-ring-x, 0) var(--bs-focus-ring-y, 0) var(--bs-focus-ring-blur, 0) var(--bs-focus-ring-width) var(--bs-focus-ring-color)}.icon-link{display:inline-flex;gap:.375rem;align-items:center;text-decoration-color:rgba(100, 0, 45, 0.5);text-decoration-color:rgba(var(--bs-link-color-rgb), var(--bs-link-opacity, 0.5));text-underline-offset:.25em;backface-visibility:hidden}.icon-link>.bi{flex-shrink:0;width:1em;height:1em;fill:currentcolor}.icon-link-hover:hover>.bi,.icon-link-hover:focus-visible>.bi{transform:translate3d(0.25em, 0, 0);transform:var(--bs-icon-link-transform, translate3d(0.25em, 0, 0))}.ratio{position:relative;width:100%}.ratio::before{display:block;padding-top:var(--bs-aspect-ratio);content:""}.ratio>*{position:absolute;top:0;left:0;width:100%;height:100%}.ratio-1x1{--bs-aspect-ratio: 100%}.ratio-2x1{--bs-aspect-ratio: 50%}.ratio-4x3{--bs-aspect-ratio: 75%}.ratio-16x9{--bs-aspect-ratio: 56.25%}.ratio-1x2{--bs-aspect-ratio: 200%}.ratio-3x4{--bs-aspect-ratio: 133.3333333333%}.ratio-9x16{--bs-aspect-ratio: 177.7777777778%}.fixed-top{position:fixed;top:0;right:0;left:0;z-index:1030}.fixed-bottom{position:fixed;right:0;bottom:0;left:0;z-index:1030}.sticky-top{position:sticky;top:0;z-index:1020}.sticky-bottom{position:sticky;bottom:0;z-index:1020}@media(min-width: 576px){.sticky-sm-top{position:sticky;top:0;z-index:1020}.sticky-sm-bottom{position:sticky;bottom:0;z-index:1020}}@media(min-width: 768px){.sticky-md-top{position:sticky;top:0;z-index:1020}.sticky-md-bottom{position:sticky;bottom:0;z-index:1020}}@media(min-width: 992px){.sticky-lg-top{position:sticky;top:0;z-index:1020}.sticky-lg-bottom{position:sticky;bottom:0;z-index:1020}}@media(min-width: 1200px){.sticky-xl-top{position:sticky;top:0;z-index:1020}.sticky-xl-bottom{position:sticky;bottom:0;z-index:1020}}@media(min-width: 1400px){.sticky-xxl-top{position:sticky;top:0;z-index:1020}.sticky-xxl-bottom{position:sticky;bottom:0;z-index:1020}}.hstack{display:flex;flex-direction:row;align-items:center;align-self:stretch}.vstack{display:flex;flex:1 1 auto;flex-direction:column;align-self:stretch}.visually-hidden,.visually-hidden-focusable:not(:focus):not(:focus-within){width:1px !important;height:1px !important;padding:0 !important;margin:-1px !important;overflow:hidden !important;clip:rect(0, 0, 0, 0) !important;white-space:nowrap !important;border:0 !important}.visually-hidden:not(caption),.visually-hidden-focusable:not(:focus):not(:focus-within):not(caption){position:absolute !important}.stretched-link::after{position:absolute;top:0;right:0;bottom:0;left:0;z-index:1;content:""}.text-truncate{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.vr{display:inline-block;align-self:stretch;width:1px;width:var(--bs-border-width);min-height:1em;background-color:currentcolor;opacity:.25}.dropup,.dropend,.dropdown,.dropstart,.dropup-center,.dropdown-center{position:relative}.dropdown-toggle{white-space:nowrap}.dropdown-menu{--bs-dropdown-zindex: 1000;--bs-dropdown-min-width: 10rem;--bs-dropdown-padding-x: 0;--bs-dropdown-padding-y: 0.5rem;--bs-dropdown-spacer: 0.125rem;--bs-dropdown-font-size:1rem;--bs-dropdown-color: var(--bs-body-color);--bs-dropdown-bg: #4963f6;--bs-dropdown-border-color: transparent;--bs-dropdown-border-radius: var(--bs-border-radius);--bs-dropdown-border-width: 0;--bs-dropdown-inner-border-radius: calc(var(--bs-border-radius) - 0);--bs-dropdown-divider-bg: transparent;--bs-dropdown-divider-margin-y: 0.5rem;--bs-dropdown-box-shadow: var(--bs-box-shadow);--bs-dropdown-link-color: var(--bs-body-color);--bs-dropdown-link-hover-color: var(--bs-body-color);--bs-dropdown-link-hover-bg: var(--bs-tertiary-bg);--bs-dropdown-link-active-color: #ffffff;--bs-dropdown-link-active-bg: #4963f6;--bs-dropdown-link-disabled-color: var(--bs-tertiary-color);--bs-dropdown-item-padding-x: 1rem;--bs-dropdown-item-padding-y: 0.25rem;--bs-dropdown-header-color: #6c757d;--bs-dropdown-header-padding-x: 1rem;--bs-dropdown-header-padding-y: 0.5rem;position:absolute;z-index:1000;z-index:var(--bs-dropdown-zindex);display:none;min-width:10rem;min-width:var(--bs-dropdown-min-width);padding:0.5rem 0;padding:var(--bs-dropdown-padding-y) var(--bs-dropdown-padding-x);margin:0;font-size:1rem;font-size:var(--bs-dropdown-font-size);color:#212529;color:var(--bs-dropdown-color);text-align:left;list-style:none;background-color:#4963f6;background-color:var(--bs-dropdown-bg);background-clip:padding-box;border:0 solid transparent;border:var(--bs-dropdown-border-width) solid var(--bs-dropdown-border-color)}.dropdown-menu[data-bs-popper]{top:100%;left:0;margin-top:var(--bs-dropdown-spacer)}.dropdown-menu-start{--bs-position: start}.dropdown-menu-start[data-bs-popper]{right:auto;left:0}.dropdown-menu-end{--bs-position: end}.dropdown-menu-end[data-bs-popper]{right:0;left:auto}@media(min-width: 576px){.dropdown-menu-sm-start{--bs-position: start}.dropdown-menu-sm-start[data-bs-popper]{right:auto;left:0}.dropdown-menu-sm-end{--bs-position: end}.dropdown-menu-sm-end[data-bs-popper]{right:0;left:auto}}@media(min-width: 768px){.dropdown-menu-md-start{--bs-position: start}.dropdown-menu-md-start[data-bs-popper]{right:auto;left:0}.dropdown-menu-md-end{--bs-position: end}.dropdown-menu-md-end[data-bs-popper]{right:0;left:auto}}@media(min-width: 992px){.dropdown-menu-lg-start{--bs-position: start}.dropdown-menu-lg-start[data-bs-popper]{right:auto;left:0}.dropdown-menu-lg-end{--bs-position: end}.dropdown-menu-lg-end[data-bs-popper]{right:0;left:auto}}@media(min-width: 1200px){.dropdown-menu-xl-start{--bs-position: start}.dropdown-menu-xl-start[data-bs-popper]{right:auto;left:0}.dropdown-menu-xl-end{--bs-position: end}.dropdown-menu-xl-end[data-bs-popper]{right:0;left:auto}}@media(min-width: 1400px){.dropdown-menu-xxl-start{--bs-position: start}.dropdown-menu-xxl-start[data-bs-popper]{right:auto;left:0}.dropdown-menu-xxl-end{--bs-position: end}.dropdown-menu-xxl-end[data-bs-popper]{right:0;left:auto}}.dropup .dropdown-menu[data-bs-popper]{top:auto;bottom:100%;margin-top:0;margin-bottom:var(--bs-dropdown-spacer)}.dropend .dropdown-menu[data-bs-popper]{top:0;right:auto;left:100%;margin-top:0;margin-left:var(--bs-dropdown-spacer)}.dropend .dropdown-toggle::after{vertical-align:0}.dropstart .dropdown-menu[data-bs-popper]{top:0;right:100%;left:auto;margin-top:0;margin-right:var(--bs-dropdown-spacer)}.dropstart .dropdown-toggle::before{vertical-align:0}.dropdown-divider{height:0;margin:var(--bs-dropdown-divider-margin-y) 0;overflow:hidden;border-top:1px solid var(--bs-dropdown-divider-bg);opacity:1}.dropdown-item{display:block;width:100%;padding:var(--bs-dropdown-item-padding-y) var(--bs-dropdown-item-padding-x);clear:both;font-weight:400;color:var(--bs-dropdown-link-color);text-align:inherit;-webkit-text-decoration:none;text-decoration:none;white-space:nowrap;background-color:rgba(0,0,0,0);border:0}.dropdown-item:hover,.dropdown-item:focus{color:var(--bs-dropdown-link-hover-color);-webkit-text-decoration:none;text-decoration:none;background-color:var(--bs-dropdown-link-hover-bg)}.dropdown-item.active,.dropdown-item:active{color:var(--bs-dropdown-link-active-color);-webkit-text-decoration:none;text-decoration:none;background-color:var(--bs-dropdown-link-active-bg)}.dropdown-item.disabled,.dropdown-item:disabled{color:var(--bs-dropdown-link-disabled-color);pointer-events:none;background-color:rgba(0,0,0,0)}.dropdown-menu.show{display:block}.dropdown-header{display:block;padding:var(--bs-dropdown-header-padding-y) var(--bs-dropdown-header-padding-x);margin-bottom:0;font-size:0.875rem;color:var(--bs-dropdown-header-color);white-space:nowrap}.dropdown-item-text{display:block;padding:var(--bs-dropdown-item-padding-y) var(--bs-dropdown-item-padding-x);color:var(--bs-dropdown-link-color)}.dropdown-menu-dark{--bs-dropdown-color: #dee2e6;--bs-dropdown-bg: #343a40;--bs-dropdown-border-color: transparent;--bs-dropdown-box-shadow: ;--bs-dropdown-link-color: #dee2e6;--bs-dropdown-link-hover-color: #ffffff;--bs-dropdown-divider-bg: transparent;--bs-dropdown-link-hover-bg: rgba(255, 255, 255, 0.15);--bs-dropdown-link-active-color: #ffffff;--bs-dropdown-link-active-bg: #4963f6;--bs-dropdown-link-disabled-color: #adb5bd;--bs-dropdown-header-color: #adb5bd}.fade:not(.show){opacity:0}.collapse:not(.show){display:none}.collapsing{height:0;overflow:hidden}.collapsing.collapse-horizontal{width:0;height:auto}.align-baseline{vertical-align:baseline !important}.align-top{vertical-align:top !important}.align-middle{vertical-align:middle !important}.align-bottom{vertical-align:bottom !important}.align-text-bottom{vertical-align:text-bottom !important}.align-text-top{vertical-align:text-top !important}.float-start{float:left !important}.float-end{float:right !important}.float-none{float:none !important}.object-fit-contain{-o-object-fit:contain !important;object-fit:contain !important}.object-fit-cover{-o-object-fit:cover !important;object-fit:cover !important}.object-fit-fill{-o-object-fit:fill !important;object-fit:fill !important}.object-fit-scale{-o-object-fit:scale-down !important;object-fit:scale-down !important}.object-fit-none{-o-object-fit:none !important;object-fit:none !important}.opacity-0{opacity:0 !important}.opacity-25{opacity:.25 !important}.opacity-50{opacity:.5 !important}.opacity-75{opacity:.75 !important}.opacity-100{opacity:1 !important}.overflow-auto{overflow:auto !important}.overflow-hidden{overflow:hidden !important}.overflow-visible{overflow:visible !important}.overflow-scroll{overflow:scroll !important}.overflow-x-auto{overflow-x:auto !important}.overflow-x-hidden{overflow-x:hidden !important}.overflow-x-visible{overflow-x:visible !important}.overflow-x-scroll{overflow-x:scroll !important}.overflow-y-auto{overflow-y:auto !important}.overflow-y-hidden{overflow-y:hidden !important}.overflow-y-visible{overflow-y:visible !important}.overflow-y-scroll{overflow-y:scroll !important}.d-inline{display:inline !important}.d-inline-block{display:inline-block !important}.d-block{display:block !important}.d-grid{display:grid !important}.d-inline-grid{display:inline-grid !important}.d-table{display:table !important}.d-table-row{display:table-row !important}.d-table-cell{display:table-cell !important}.d-flex{display:flex !important}.d-inline-flex{display:inline-flex !important}.d-none{display:none !important}.shadow{box-shadow:0 0.5rem 1rem rgba(35, 35, 35, 0.15) !important;box-shadow:var(--bs-box-shadow) !important}.shadow-sm{box-shadow:0 0.125rem 0.25rem rgba(35, 35, 35, 0.075) !important;box-shadow:var(--bs-box-shadow-sm) !important}.shadow-lg{box-shadow:0 1rem 3rem rgba(35, 35, 35, 0.175) !important;box-shadow:var(--bs-box-shadow-lg) !important}.shadow-none{box-shadow:none !important}.focus-ring-primary{--bs-focus-ring-color: rgba(var(--bs-primary-rgb), var(--bs-focus-ring-opacity))}.focus-ring-secondary{--bs-focus-ring-color: rgba(var(--bs-secondary-rgb), var(--bs-focus-ring-opacity))}.focus-ring-success{--bs-focus-ring-color: rgba(var(--bs-success-rgb), var(--bs-focus-ring-opacity))}.focus-ring-info{--bs-focus-ring-color: rgba(var(--bs-info-rgb), var(--bs-focus-ring-opacity))}.focus-ring-warning{--bs-focus-ring-color: rgba(var(--bs-warning-rgb), var(--bs-focus-ring-opacity))}.focus-ring-danger{--bs-focus-ring-color: rgba(var(--bs-danger-rgb), var(--bs-focus-ring-opacity))}.focus-ring-light{--bs-focus-ring-color: rgba(var(--bs-light-rgb), var(--bs-focus-ring-opacity))}.focus-ring-dark{--bs-focus-ring-color: rgba(var(--bs-dark-rgb), var(--bs-focus-ring-opacity))}.position-static{position:static !important}.position-relative{position:relative !important}.position-absolute{position:absolute !important}.position-fixed{position:fixed !important}.position-sticky{position:sticky !important}.top-0{top:0 !important}.top-50{top:50% !important}.top-100{top:100% !important}.bottom-0{bottom:0 !important}.bottom-50{bottom:50% !important}.bottom-100{bottom:100% !important}.start-0{left:0 !important}.start-50{left:50% !important}.start-100{left:100% !important}.end-0{right:0 !important}.end-50{right:50% !important}.end-100{right:100% !important}.translate-middle{transform:translate(-50%, -50%) !important}.translate-middle-x{transform:translateX(-50%) !important}.translate-middle-y{transform:translateY(-50%) !important}.border{border:1px solid #dee2e6 !important;border:var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important}.border-0{border:0 !important}.border-top{border-top:1px solid #dee2e6 !important;border-top:var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important}.border-top-0{border-top:0 !important}.border-end{border-right:1px solid #dee2e6 !important;border-right:var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important}.border-end-0{border-right:0 !important}.border-bottom{border-bottom:1px solid #dee2e6 !important;border-bottom:var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important}.border-bottom-0{border-bottom:0 !important}.border-start{border-left:1px solid #dee2e6 !important;border-left:var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important}.border-start-0{border-left:0 !important}.border-primary{--bs-border-opacity: 1;border-color:rgba(73, 99, 246, 1) !important;border-color:rgba(var(--bs-primary-rgb), var(--bs-border-opacity)) !important}.border-secondary{--bs-border-opacity: 1;border-color:rgba(100, 0, 45, 1) !important;border-color:rgba(var(--bs-secondary-rgb), var(--bs-border-opacity)) !important}.border-success{--bs-border-opacity: 1;border-color:rgba(88, 223, 85, 1) !important;border-color:rgba(var(--bs-success-rgb), var(--bs-border-opacity)) !important}.border-info{--bs-border-opacity: 1;border-color:rgba(73, 99, 246, 1) !important;border-color:rgba(var(--bs-info-rgb), var(--bs-border-opacity)) !important}.border-warning{--bs-border-opacity: 1;border-color:rgba(255, 207, 49, 1) !important;border-color:rgba(var(--bs-warning-rgb), var(--bs-border-opacity)) !important}.border-danger{--bs-border-opacity: 1;border-color:rgba(235, 40, 0, 1) !important;border-color:rgba(var(--bs-danger-rgb), var(--bs-border-opacity)) !important}.border-light{--bs-border-opacity: 1;border-color:rgba(235, 235, 235, 1) !important;border-color:rgba(var(--bs-light-rgb), var(--bs-border-opacity)) !important}.border-dark{--bs-border-opacity: 1;border-color:rgba(145, 145, 145, 1) !important;border-color:rgba(var(--bs-dark-rgb), var(--bs-border-opacity)) !important}.border-black{--bs-border-opacity: 1;border-color:rgba(35, 35, 35, 1) !important;border-color:rgba(var(--bs-black-rgb), var(--bs-border-opacity)) !important}.border-white{--bs-border-opacity: 1;border-color:rgba(255, 255, 255, 1) !important;border-color:rgba(var(--bs-white-rgb), var(--bs-border-opacity)) !important}.border-primary-subtle{border-color:rgb(182.2, 192.6, 251.4) !important;border-color:var(--bs-primary-border-subtle) !important}.border-secondary-subtle{border-color:#c199ab !important;border-color:var(--bs-secondary-border-subtle) !important}.border-success-subtle{border-color:rgb(188.2, 242.2, 187) !important;border-color:var(--bs-success-border-subtle) !important}.border-info-subtle{border-color:rgb(182.2, 192.6, 251.4) !important;border-color:var(--bs-info-border-subtle) !important}.border-warning-subtle{border-color:rgb(255, 235.8, 172.6) !important;border-color:var(--bs-warning-border-subtle) !important}.border-danger-subtle{border-color:#f7a999 !important;border-color:var(--bs-danger-border-subtle) !important}.border-light-subtle{border-color:#e9ecef !important;border-color:var(--bs-light-border-subtle) !important}.border-dark-subtle{border-color:#adb5bd !important;border-color:var(--bs-dark-border-subtle) !important}.border-1{border-width:1px !important}.border-2{border-width:2px !important}.border-3{border-width:3px !important}.border-4{border-width:4px !important}.border-5{border-width:5px !important}.border-opacity-10{--bs-border-opacity: 0.1}.border-opacity-25{--bs-border-opacity: 0.25}.border-opacity-50{--bs-border-opacity: 0.5}.border-opacity-75{--bs-border-opacity: 0.75}.border-opacity-100{--bs-border-opacity: 1}.w-25{width:25% !important}.w-50{width:50% !important}.w-75{width:75% !important}.w-100{width:100% !important}.w-auto{width:auto !important}.mw-100{max-width:100% !important}.vw-100{width:100vw !important}.min-vw-100{min-width:100vw !important}.h-25{height:25% !important}.h-50{height:50% !important}.h-75{height:75% !important}.h-100{height:100% !important}.h-auto{height:auto !important}.mh-100{max-height:100% !important}.vh-100{height:100vh !important}.min-vh-100{min-height:100vh !important}.flex-fill{flex:1 1 auto !important}.flex-row{flex-direction:row !important}.flex-column{flex-direction:column !important}.flex-row-reverse{flex-direction:row-reverse !important}.flex-column-reverse{flex-direction:column-reverse !important}.flex-grow-0{flex-grow:0 !important}.flex-grow-1{flex-grow:1 !important}.flex-shrink-0{flex-shrink:0 !important}.flex-shrink-1{flex-shrink:1 !important}.flex-wrap{flex-wrap:wrap !important}.flex-nowrap{flex-wrap:nowrap !important}.flex-wrap-reverse{flex-wrap:wrap-reverse !important}.justify-content-start{justify-content:flex-start !important}.justify-content-end{justify-content:flex-end !important}.justify-content-center{justify-content:center !important}.justify-content-between{justify-content:space-between !important}.justify-content-around{justify-content:space-around !important}.justify-content-evenly{justify-content:space-evenly !important}.align-items-start{align-items:flex-start !important}.align-items-end{align-items:flex-end !important}.align-items-center{align-items:center !important}.align-items-baseline{align-items:baseline !important}.align-items-stretch{align-items:stretch !important}.align-content-start{align-content:flex-start !important}.align-content-end{align-content:flex-end !important}.align-content-center{align-content:center !important}.align-content-between{align-content:space-between !important}.align-content-around{align-content:space-around !important}.align-content-stretch{align-content:stretch !important}.align-self-auto{align-self:auto !important}.align-self-start{align-self:flex-start !important}.align-self-end{align-self:flex-end !important}.align-self-center{align-self:center !important}.align-self-baseline{align-self:baseline !important}.align-self-stretch{align-self:stretch !important}.order-first{order:-1 !important}.order-0{order:0 !important}.order-1{order:1 !important}.order-2{order:2 !important}.order-3{order:3 !important}.order-4{order:4 !important}.order-5{order:5 !important}.order-last{order:6 !important}.m-0{margin:0 !important}.m-1{margin:.25rem !important}.m-2{margin:.5rem !important}.m-3{margin:1rem !important}.m-4{margin:1.5rem !important}.m-5{margin:2rem !important}.m-6{margin:2.5rem !important}.m-7{margin:3rem !important}.m-8{margin:4rem !important}.m-9{margin:5rem !important}.m-10{margin:6rem !important}.m-1px{margin:1px !important}.m-gutter{margin:1rem !important}.m-auto{margin:auto !important}.mx-0{margin-right:0 !important;margin-left:0 !important}.mx-1{margin-right:.25rem !important;margin-left:.25rem !important}.mx-2{margin-right:.5rem !important;margin-left:.5rem !important}.mx-3{margin-right:1rem !important;margin-left:1rem !important}.mx-4{margin-right:1.5rem !important;margin-left:1.5rem !important}.mx-5{margin-right:2rem !important;margin-left:2rem !important}.mx-6{margin-right:2.5rem !important;margin-left:2.5rem !important}.mx-7{margin-right:3rem !important;margin-left:3rem !important}.mx-8{margin-right:4rem !important;margin-left:4rem !important}.mx-9{margin-right:5rem !important;margin-left:5rem !important}.mx-10{margin-right:6rem !important;margin-left:6rem !important}.mx-1px{margin-right:1px !important;margin-left:1px !important}.mx-gutter{margin-right:1rem !important;margin-left:1rem !important}.mx-auto{margin-right:auto !important;margin-left:auto !important}.my-0{margin-top:0 !important;margin-bottom:0 !important}.my-1{margin-top:.25rem !important;margin-bottom:.25rem !important}.my-2{margin-top:.5rem !important;margin-bottom:.5rem !important}.my-3{margin-top:1rem !important;margin-bottom:1rem !important}.my-4{margin-top:1.5rem !important;margin-bottom:1.5rem !important}.my-5{margin-top:2rem !important;margin-bottom:2rem !important}.my-6{margin-top:2.5rem !important;margin-bottom:2.5rem !important}.my-7{margin-top:3rem !important;margin-bottom:3rem !important}.my-8{margin-top:4rem !important;margin-bottom:4rem !important}.my-9{margin-top:5rem !important;margin-bottom:5rem !important}.my-10{margin-top:6rem !important;margin-bottom:6rem !important}.my-1px{margin-top:1px !important;margin-bottom:1px !important}.my-gutter{margin-top:1rem !important;margin-bottom:1rem !important}.my-auto{margin-top:auto !important;margin-bottom:auto !important}.mt-0{margin-top:0 !important}.mt-1{margin-top:.25rem !important}.mt-2{margin-top:.5rem !important}.mt-3{margin-top:1rem !important}.mt-4{margin-top:1.5rem !important}.mt-5{margin-top:2rem !important}.mt-6{margin-top:2.5rem !important}.mt-7{margin-top:3rem !important}.mt-8{margin-top:4rem !important}.mt-9{margin-top:5rem !important}.mt-10{margin-top:6rem !important}.mt-1px{margin-top:1px !important}.mt-gutter{margin-top:1rem !important}.mt-auto{margin-top:auto !important}.me-0{margin-right:0 !important}.me-1{margin-right:.25rem !important}.me-2{margin-right:.5rem !important}.me-3{margin-right:1rem !important}.me-4{margin-right:1.5rem !important}.me-5{margin-right:2rem !important}.me-6{margin-right:2.5rem !important}.me-7{margin-right:3rem !important}.me-8{margin-right:4rem !important}.me-9{margin-right:5rem !important}.me-10{margin-right:6rem !important}.me-1px{margin-right:1px !important}.me-gutter{margin-right:1rem !important}.me-auto{margin-right:auto !important}.mb-0{margin-bottom:0 !important}.mb-1{margin-bottom:.25rem !important}.mb-2{margin-bottom:.5rem !important}.mb-3{margin-bottom:1rem !important}.mb-4{margin-bottom:1.5rem !important}.mb-5{margin-bottom:2rem !important}.mb-6{margin-bottom:2.5rem !important}.mb-7{margin-bottom:3rem !important}.mb-8{margin-bottom:4rem !important}.mb-9{margin-bottom:5rem !important}.mb-10{margin-bottom:6rem !important}.mb-1px{margin-bottom:1px !important}.mb-gutter{margin-bottom:1rem !important}.mb-auto{margin-bottom:auto !important}.ms-0{margin-left:0 !important}.ms-1{margin-left:.25rem !important}.ms-2{margin-left:.5rem !important}.ms-3{margin-left:1rem !important}.ms-4{margin-left:1.5rem !important}.ms-5{margin-left:2rem !important}.ms-6{margin-left:2.5rem !important}.ms-7{margin-left:3rem !important}.ms-8{margin-left:4rem !important}.ms-9{margin-left:5rem !important}.ms-10{margin-left:6rem !important}.ms-1px{margin-left:1px !important}.ms-gutter{margin-left:1rem !important}.ms-auto{margin-left:auto !important}.m-n1{margin:-0.25rem !important}.m-n2{margin:-0.5rem !important}.m-n3{margin:-1rem !important}.m-n4{margin:-1.5rem !important}.m-n5{margin:-2rem !important}.m-n6{margin:-2.5rem !important}.m-n7{margin:-3rem !important}.m-n8{margin:-4rem !important}.m-n9{margin:-5rem !important}.m-n10{margin:-6rem !important}.m-n1px{margin:-1px !important}.m-ngutter{margin:-1rem !important}.mx-n1{margin-right:-0.25rem !important;margin-left:-0.25rem !important}.mx-n2{margin-right:-0.5rem !important;margin-left:-0.5rem !important}.mx-n3{margin-right:-1rem !important;margin-left:-1rem !important}.mx-n4{margin-right:-1.5rem !important;margin-left:-1.5rem !important}.mx-n5{margin-right:-2rem !important;margin-left:-2rem !important}.mx-n6{margin-right:-2.5rem !important;margin-left:-2.5rem !important}.mx-n7{margin-right:-3rem !important;margin-left:-3rem !important}.mx-n8{margin-right:-4rem !important;margin-left:-4rem !important}.mx-n9{margin-right:-5rem !important;margin-left:-5rem !important}.mx-n10{margin-right:-6rem !important;margin-left:-6rem !important}.mx-n1px{margin-right:-1px !important;margin-left:-1px !important}.mx-ngutter{margin-right:-1rem !important;margin-left:-1rem !important}.my-n1{margin-top:-0.25rem !important;margin-bottom:-0.25rem !important}.my-n2{margin-top:-0.5rem !important;margin-bottom:-0.5rem !important}.my-n3{margin-top:-1rem !important;margin-bottom:-1rem !important}.my-n4{margin-top:-1.5rem !important;margin-bottom:-1.5rem !important}.my-n5{margin-top:-2rem !important;margin-bottom:-2rem !important}.my-n6{margin-top:-2.5rem !important;margin-bottom:-2.5rem !important}.my-n7{margin-top:-3rem !important;margin-bottom:-3rem !important}.my-n8{margin-top:-4rem !important;margin-bottom:-4rem !important}.my-n9{margin-top:-5rem !important;margin-bottom:-5rem !important}.my-n10{margin-top:-6rem !important;margin-bottom:-6rem !important}.my-n1px{margin-top:-1px !important;margin-bottom:-1px !important}.my-ngutter{margin-top:-1rem !important;margin-bottom:-1rem !important}.mt-n1{margin-top:-0.25rem !important}.mt-n2{margin-top:-0.5rem !important}.mt-n3{margin-top:-1rem !important}.mt-n4{margin-top:-1.5rem !important}.mt-n5{margin-top:-2rem !important}.mt-n6{margin-top:-2.5rem !important}.mt-n7{margin-top:-3rem !important}.mt-n8{margin-top:-4rem !important}.mt-n9{margin-top:-5rem !important}.mt-n10{margin-top:-6rem !important}.mt-n1px{margin-top:-1px !important}.mt-ngutter{margin-top:-1rem !important}.me-n1{margin-right:-0.25rem !important}.me-n2{margin-right:-0.5rem !important}.me-n3{margin-right:-1rem !important}.me-n4{margin-right:-1.5rem !important}.me-n5{margin-right:-2rem !important}.me-n6{margin-right:-2.5rem !important}.me-n7{margin-right:-3rem !important}.me-n8{margin-right:-4rem !important}.me-n9{margin-right:-5rem !important}.me-n10{margin-right:-6rem !important}.me-n1px{margin-right:-1px !important}.me-ngutter{margin-right:-1rem !important}.mb-n1{margin-bottom:-0.25rem !important}.mb-n2{margin-bottom:-0.5rem !important}.mb-n3{margin-bottom:-1rem !important}.mb-n4{margin-bottom:-1.5rem !important}.mb-n5{margin-bottom:-2rem !important}.mb-n6{margin-bottom:-2.5rem !important}.mb-n7{margin-bottom:-3rem !important}.mb-n8{margin-bottom:-4rem !important}.mb-n9{margin-bottom:-5rem !important}.mb-n10{margin-bottom:-6rem !important}.mb-n1px{margin-bottom:-1px !important}.mb-ngutter{margin-bottom:-1rem !important}.ms-n1{margin-left:-0.25rem !important}.ms-n2{margin-left:-0.5rem !important}.ms-n3{margin-left:-1rem !important}.ms-n4{margin-left:-1.5rem !important}.ms-n5{margin-left:-2rem !important}.ms-n6{margin-left:-2.5rem !important}.ms-n7{margin-left:-3rem !important}.ms-n8{margin-left:-4rem !important}.ms-n9{margin-left:-5rem !important}.ms-n10{margin-left:-6rem !important}.ms-n1px{margin-left:-1px !important}.ms-ngutter{margin-left:-1rem !important}.p-0{padding:0 !important}.p-1{padding:.25rem !important}.p-2{padding:.5rem !important}.p-3{padding:1rem !important}.p-4{padding:1.5rem !important}.p-5{padding:2rem !important}.p-6{padding:2.5rem !important}.p-7{padding:3rem !important}.p-8{padding:4rem !important}.p-9{padding:5rem !important}.p-10{padding:6rem !important}.p-1px{padding:1px !important}.p-gutter{padding:1rem !important}.px-0{padding-right:0 !important;padding-left:0 !important}.px-1{padding-right:.25rem !important;padding-left:.25rem !important}.px-2{padding-right:.5rem !important;padding-left:.5rem !important}.px-3{padding-right:1rem !important;padding-left:1rem !important}.px-4{padding-right:1.5rem !important;padding-left:1.5rem !important}.px-5{padding-right:2rem !important;padding-left:2rem !important}.px-6{padding-right:2.5rem !important;padding-left:2.5rem !important}.px-7{padding-right:3rem !important;padding-left:3rem !important}.px-8{padding-right:4rem !important;padding-left:4rem !important}.px-9{padding-right:5rem !important;padding-left:5rem !important}.px-10{padding-right:6rem !important;padding-left:6rem !important}.px-1px{padding-right:1px !important;padding-left:1px !important}.px-gutter{padding-right:1rem !important;padding-left:1rem !important}.py-0{padding-top:0 !important;padding-bottom:0 !important}.py-1{padding-top:.25rem !important;padding-bottom:.25rem !important}.py-2{padding-top:.5rem !important;padding-bottom:.5rem !important}.py-3{padding-top:1rem !important;padding-bottom:1rem !important}.py-4{padding-top:1.5rem !important;padding-bottom:1.5rem !important}.py-5{padding-top:2rem !important;padding-bottom:2rem !important}.py-6{padding-top:2.5rem !important;padding-bottom:2.5rem !important}.py-7{padding-top:3rem !important;padding-bottom:3rem !important}.py-8{padding-top:4rem !important;padding-bottom:4rem !important}.py-9{padding-top:5rem !important;padding-bottom:5rem !important}.py-10{padding-top:6rem !important;padding-bottom:6rem !important}.py-1px{padding-top:1px !important;padding-bottom:1px !important}.py-gutter{padding-top:1rem !important;padding-bottom:1rem !important}.pt-0{padding-top:0 !important}.pt-1{padding-top:.25rem !important}.pt-2{padding-top:.5rem !important}.pt-3{padding-top:1rem !important}.pt-4{padding-top:1.5rem !important}.pt-5{padding-top:2rem !important}.pt-6{padding-top:2.5rem !important}.pt-7{padding-top:3rem !important}.pt-8{padding-top:4rem !important}.pt-9{padding-top:5rem !important}.pt-10{padding-top:6rem !important}.pt-1px{padding-top:1px !important}.pt-gutter{padding-top:1rem !important}.pe-0{padding-right:0 !important}.pe-1{padding-right:.25rem !important}.pe-2{padding-right:.5rem !important}.pe-3{padding-right:1rem !important}.pe-4{padding-right:1.5rem !important}.pe-5{padding-right:2rem !important}.pe-6{padding-right:2.5rem !important}.pe-7{padding-right:3rem !important}.pe-8{padding-right:4rem !important}.pe-9{padding-right:5rem !important}.pe-10{padding-right:6rem !important}.pe-1px{padding-right:1px !important}.pe-gutter{padding-right:1rem !important}.pb-0{padding-bottom:0 !important}.pb-1{padding-bottom:.25rem !important}.pb-2{padding-bottom:.5rem !important}.pb-3{padding-bottom:1rem !important}.pb-4{padding-bottom:1.5rem !important}.pb-5{padding-bottom:2rem !important}.pb-6{padding-bottom:2.5rem !important}.pb-7{padding-bottom:3rem !important}.pb-8{padding-bottom:4rem !important}.pb-9{padding-bottom:5rem !important}.pb-10{padding-bottom:6rem !important}.pb-1px{padding-bottom:1px !important}.pb-gutter{padding-bottom:1rem !important}.ps-0{padding-left:0 !important}.ps-1{padding-left:.25rem !important}.ps-2{padding-left:.5rem !important}.ps-3{padding-left:1rem !important}.ps-4{padding-left:1.5rem !important}.ps-5{padding-left:2rem !important}.ps-6{padding-left:2.5rem !important}.ps-7{padding-left:3rem !important}.ps-8{padding-left:4rem !important}.ps-9{padding-left:5rem !important}.ps-10{padding-left:6rem !important}.ps-1px{padding-left:1px !important}.ps-gutter{padding-left:1rem !important}.gap-0{gap:0 !important}.gap-1{gap:.25rem !important}.gap-2{gap:.5rem !important}.gap-3{gap:1rem !important}.gap-4{gap:1.5rem !important}.gap-5{gap:2rem !important}.gap-6{gap:2.5rem !important}.gap-7{gap:3rem !important}.gap-8{gap:4rem !important}.gap-9{gap:5rem !important}.gap-10{gap:6rem !important}.gap-1px{gap:1px !important}.gap-gutter{gap:1rem !important}.row-gap-0{row-gap:0 !important}.row-gap-1{row-gap:.25rem !important}.row-gap-2{row-gap:.5rem !important}.row-gap-3{row-gap:1rem !important}.row-gap-4{row-gap:1.5rem !important}.row-gap-5{row-gap:2rem !important}.row-gap-6{row-gap:2.5rem !important}.row-gap-7{row-gap:3rem !important}.row-gap-8{row-gap:4rem !important}.row-gap-9{row-gap:5rem !important}.row-gap-10{row-gap:6rem !important}.row-gap-1px{row-gap:1px !important}.row-gap-gutter{row-gap:1rem !important}.column-gap-0{-moz-column-gap:0 !important;column-gap:0 !important}.column-gap-1{-moz-column-gap:.25rem !important;column-gap:.25rem !important}.column-gap-2{-moz-column-gap:.5rem !important;column-gap:.5rem !important}.column-gap-3{-moz-column-gap:1rem !important;column-gap:1rem !important}.column-gap-4{-moz-column-gap:1.5rem !important;column-gap:1.5rem !important}.column-gap-5{-moz-column-gap:2rem !important;column-gap:2rem !important}.column-gap-6{-moz-column-gap:2.5rem !important;column-gap:2.5rem !important}.column-gap-7{-moz-column-gap:3rem !important;column-gap:3rem !important}.column-gap-8{-moz-column-gap:4rem !important;column-gap:4rem !important}.column-gap-9{-moz-column-gap:5rem !important;column-gap:5rem !important}.column-gap-10{-moz-column-gap:6rem !important;column-gap:6rem !important}.column-gap-1px{-moz-column-gap:1px !important;column-gap:1px !important}.column-gap-gutter{-moz-column-gap:1rem !important;column-gap:1rem !important}.font-monospace{font-family:"SaansSemiMono-Web", SFMono-Regular, Menlo, Monaco, "Liberation Mono", monospace !important;font-family:var(--bs-font-monospace) !important}.fs-1{font-size:3rem !important}.fs-2{font-size:2.5rem !important}.fs-3{font-size:2.0625rem !important}.fs-4{font-size:1.75rem !important}.fs-5{font-size:1.4375rem !important}.fs-6{font-size:1.1875rem !important}.fst-italic{font-style:italic !important}.fst-normal{font-style:normal !important}.fw-lighter{font-weight:lighter !important}.fw-light{font-weight:300 !important}.fw-normal{font-weight:400 !important}.fw-medium{font-weight:500 !important}.fw-semibold{font-weight:600 !important}.fw-bold{font-weight:700 !important}.fw-bolder{font-weight:bolder !important}.lh-1{line-height:1 !important}.lh-sm{line-height:1.25 !important}.lh-base{line-height:1.5 !important}.lh-lg{line-height:2 !important}.text-start{text-align:left !important}.text-end{text-align:right !important}.text-center{text-align:center !important}.text-decoration-none{-webkit-text-decoration:none !important;text-decoration:none !important}.text-decoration-underline{-webkit-text-decoration:underline !important;text-decoration:underline !important}.text-decoration-line-through{-webkit-text-decoration:line-through !important;text-decoration:line-through !important}.text-lowercase{text-transform:lowercase !important}.text-uppercase{text-transform:uppercase !important}.text-capitalize{text-transform:capitalize !important}.text-wrap{white-space:normal !important}.text-nowrap{white-space:nowrap !important}.text-break{word-wrap:break-word !important;word-break:break-word !important}.text-primary{--bs-text-opacity: 1;color:rgba(73, 99, 246, 1) !important;color:rgba(var(--bs-primary-rgb), var(--bs-text-opacity)) !important}.text-secondary{--bs-text-opacity: 1;color:rgba(100, 0, 45, 1) !important;color:rgba(var(--bs-secondary-rgb), var(--bs-text-opacity)) !important}.text-success{--bs-text-opacity: 1;color:rgba(88, 223, 85, 1) !important;color:rgba(var(--bs-success-rgb), var(--bs-text-opacity)) !important}.text-info{--bs-text-opacity: 1;color:rgba(73, 99, 246, 1) !important;color:rgba(var(--bs-info-rgb), var(--bs-text-opacity)) !important}.text-warning{--bs-text-opacity: 1;color:rgba(255, 207, 49, 1) !important;color:rgba(var(--bs-warning-rgb), var(--bs-text-opacity)) !important}.text-danger{--bs-text-opacity: 1;color:rgba(235, 40, 0, 1) !important;color:rgba(var(--bs-danger-rgb), var(--bs-text-opacity)) !important}.text-light{--bs-text-opacity: 1;color:rgba(235, 235, 235, 1) !important;color:rgba(var(--bs-light-rgb), var(--bs-text-opacity)) !important}.text-dark{--bs-text-opacity: 1;color:rgba(145, 145, 145, 1) !important;color:rgba(var(--bs-dark-rgb), var(--bs-text-opacity)) !important}.text-black{--bs-text-opacity: 1;color:rgba(35, 35, 35, 1) !important;color:rgba(var(--bs-black-rgb), var(--bs-text-opacity)) !important}.text-white{--bs-text-opacity: 1;color:rgba(255, 255, 255, 1) !important;color:rgba(var(--bs-white-rgb), var(--bs-text-opacity)) !important}.text-body{--bs-text-opacity: 1;color:rgba(33, 37, 41, 1) !important;color:rgba(var(--bs-body-color-rgb), var(--bs-text-opacity)) !important}.text-muted{--bs-text-opacity: 1;color:rgba(33, 37, 41, 0.75) !important;color:var(--bs-secondary-color) !important}.text-black-50{--bs-text-opacity: 1;color:rgba(35,35,35,.5) !important}.text-white-50{--bs-text-opacity: 1;color:hsla(0,0%,100%,.5) !important}.text-body-secondary{--bs-text-opacity: 1;color:rgba(33, 37, 41, 0.75) !important;color:var(--bs-secondary-color) !important}.text-body-tertiary{--bs-text-opacity: 1;color:rgba(33, 37, 41, 0.5) !important;color:var(--bs-tertiary-color) !important}.text-body-emphasis{--bs-text-opacity: 1;color:#232323 !important;color:var(--bs-emphasis-color) !important}.text-reset{--bs-text-opacity: 1;color:inherit !important}.text-opacity-25{--bs-text-opacity: 0.25}.text-opacity-50{--bs-text-opacity: 0.5}.text-opacity-75{--bs-text-opacity: 0.75}.text-opacity-100{--bs-text-opacity: 1}.text-primary-emphasis{color:rgb(29.2, 39.6, 98.4) !important;color:var(--bs-primary-text-emphasis) !important}.text-secondary-emphasis{color:#280012 !important;color:var(--bs-secondary-text-emphasis) !important}.text-success-emphasis{color:rgb(35.2, 89.2, 34) !important;color:var(--bs-success-text-emphasis) !important}.text-info-emphasis{color:rgb(29.2, 39.6, 98.4) !important;color:var(--bs-info-text-emphasis) !important}.text-warning-emphasis{color:rgb(102, 82.8, 19.6) !important;color:var(--bs-warning-text-emphasis) !important}.text-danger-emphasis{color:#5e1000 !important;color:var(--bs-danger-text-emphasis) !important}.text-light-emphasis{color:#495057 !important;color:var(--bs-light-text-emphasis) !important}.text-dark-emphasis{color:#495057 !important;color:var(--bs-dark-text-emphasis) !important}.link-opacity-10{--bs-link-opacity: 0.1}.link-opacity-10-hover:hover{--bs-link-opacity: 0.1}.link-opacity-25{--bs-link-opacity: 0.25}.link-opacity-25-hover:hover{--bs-link-opacity: 0.25}.link-opacity-50{--bs-link-opacity: 0.5}.link-opacity-50-hover:hover{--bs-link-opacity: 0.5}.link-opacity-75{--bs-link-opacity: 0.75}.link-opacity-75-hover:hover{--bs-link-opacity: 0.75}.link-opacity-100{--bs-link-opacity: 1}.link-opacity-100-hover:hover{--bs-link-opacity: 1}.link-offset-1{text-underline-offset:.125em !important}.link-offset-1-hover:hover{text-underline-offset:.125em !important}.link-offset-2{text-underline-offset:.25em !important}.link-offset-2-hover:hover{text-underline-offset:.25em !important}.link-offset-3{text-underline-offset:.375em !important}.link-offset-3-hover:hover{text-underline-offset:.375em !important}.link-underline-primary{--bs-link-underline-opacity: 1;text-decoration-color:rgba(73, 99, 246, 1) !important;text-decoration-color:rgba(var(--bs-primary-rgb), var(--bs-link-underline-opacity)) !important}.link-underline-secondary{--bs-link-underline-opacity: 1;text-decoration-color:rgba(100, 0, 45, 1) !important;text-decoration-color:rgba(var(--bs-secondary-rgb), var(--bs-link-underline-opacity)) !important}.link-underline-success{--bs-link-underline-opacity: 1;text-decoration-color:rgba(88, 223, 85, 1) !important;text-decoration-color:rgba(var(--bs-success-rgb), var(--bs-link-underline-opacity)) !important}.link-underline-info{--bs-link-underline-opacity: 1;text-decoration-color:rgba(73, 99, 246, 1) !important;text-decoration-color:rgba(var(--bs-info-rgb), var(--bs-link-underline-opacity)) !important}.link-underline-warning{--bs-link-underline-opacity: 1;text-decoration-color:rgba(255, 207, 49, 1) !important;text-decoration-color:rgba(var(--bs-warning-rgb), var(--bs-link-underline-opacity)) !important}.link-underline-danger{--bs-link-underline-opacity: 1;text-decoration-color:rgba(235, 40, 0, 1) !important;text-decoration-color:rgba(var(--bs-danger-rgb), var(--bs-link-underline-opacity)) !important}.link-underline-light{--bs-link-underline-opacity: 1;text-decoration-color:rgba(235, 235, 235, 1) !important;text-decoration-color:rgba(var(--bs-light-rgb), var(--bs-link-underline-opacity)) !important}.link-underline-dark{--bs-link-underline-opacity: 1;text-decoration-color:rgba(145, 145, 145, 1) !important;text-decoration-color:rgba(var(--bs-dark-rgb), var(--bs-link-underline-opacity)) !important}.link-underline{--bs-link-underline-opacity: 1;text-decoration-color:rgba(100, 0, 45, 1) !important;text-decoration-color:rgba(var(--bs-link-color-rgb), var(--bs-link-underline-opacity, 1)) !important}.link-underline-opacity-0{--bs-link-underline-opacity: 0}.link-underline-opacity-0-hover:hover{--bs-link-underline-opacity: 0}.link-underline-opacity-10{--bs-link-underline-opacity: 0.1}.link-underline-opacity-10-hover:hover{--bs-link-underline-opacity: 0.1}.link-underline-opacity-25{--bs-link-underline-opacity: 0.25}.link-underline-opacity-25-hover:hover{--bs-link-underline-opacity: 0.25}.link-underline-opacity-50{--bs-link-underline-opacity: 0.5}.link-underline-opacity-50-hover:hover{--bs-link-underline-opacity: 0.5}.link-underline-opacity-75{--bs-link-underline-opacity: 0.75}.link-underline-opacity-75-hover:hover{--bs-link-underline-opacity: 0.75}.link-underline-opacity-100{--bs-link-underline-opacity: 1}.link-underline-opacity-100-hover:hover{--bs-link-underline-opacity: 1}.bg-primary{--bs-bg-opacity: 1;background-color:rgba(73, 99, 246, 1) !important;background-color:rgba(var(--bs-primary-rgb), var(--bs-bg-opacity)) !important}.bg-secondary{--bs-bg-opacity: 1;background-color:rgba(100, 0, 45, 1) !important;background-color:rgba(var(--bs-secondary-rgb), var(--bs-bg-opacity)) !important}.bg-success{--bs-bg-opacity: 1;background-color:rgba(88, 223, 85, 1) !important;background-color:rgba(var(--bs-success-rgb), var(--bs-bg-opacity)) !important}.bg-info{--bs-bg-opacity: 1;background-color:rgba(73, 99, 246, 1) !important;background-color:rgba(var(--bs-info-rgb), var(--bs-bg-opacity)) !important}.bg-warning{--bs-bg-opacity: 1;background-color:rgba(255, 207, 49, 1) !important;background-color:rgba(var(--bs-warning-rgb), var(--bs-bg-opacity)) !important}.bg-danger{--bs-bg-opacity: 1;background-color:rgba(235, 40, 0, 1) !important;background-color:rgba(var(--bs-danger-rgb), var(--bs-bg-opacity)) !important}.bg-light{--bs-bg-opacity: 1;background-color:rgba(235, 235, 235, 1) !important;background-color:rgba(var(--bs-light-rgb), var(--bs-bg-opacity)) !important}.bg-dark{--bs-bg-opacity: 1;background-color:rgba(145, 145, 145, 1) !important;background-color:rgba(var(--bs-dark-rgb), var(--bs-bg-opacity)) !important}.bg-black{--bs-bg-opacity: 1;background-color:rgba(35, 35, 35, 1) !important;background-color:rgba(var(--bs-black-rgb), var(--bs-bg-opacity)) !important}.bg-white{--bs-bg-opacity: 1;background-color:rgba(255, 255, 255, 1) !important;background-color:rgba(var(--bs-white-rgb), var(--bs-bg-opacity)) !important}.bg-body{--bs-bg-opacity: 1;background-color:rgba(255, 255, 255, 1) !important;background-color:rgba(var(--bs-body-bg-rgb), var(--bs-bg-opacity)) !important}.bg-transparent{--bs-bg-opacity: 1;background-color:rgba(0,0,0,0) !important}.bg-body-secondary{--bs-bg-opacity: 1;background-color:rgba(233, 236, 239, 1) !important;background-color:rgba(var(--bs-secondary-bg-rgb), var(--bs-bg-opacity)) !important}.bg-body-tertiary{--bs-bg-opacity: 1;background-color:rgba(248, 249, 250, 1) !important;background-color:rgba(var(--bs-tertiary-bg-rgb), var(--bs-bg-opacity)) !important}.bg-opacity-10{--bs-bg-opacity: 0.1}.bg-opacity-25{--bs-bg-opacity: 0.25}.bg-opacity-50{--bs-bg-opacity: 0.5}.bg-opacity-75{--bs-bg-opacity: 0.75}.bg-opacity-100{--bs-bg-opacity: 1}.bg-primary-subtle{background-color:rgb(218.6, 223.8, 253.2) !important;background-color:var(--bs-primary-bg-subtle) !important}.bg-secondary-subtle{background-color:#e0ccd5 !important;background-color:var(--bs-secondary-bg-subtle) !important}.bg-success-subtle{background-color:rgb(221.6, 248.6, 221) !important;background-color:var(--bs-success-bg-subtle) !important}.bg-info-subtle{background-color:rgb(218.6, 223.8, 253.2) !important;background-color:var(--bs-info-bg-subtle) !important}.bg-warning-subtle{background-color:rgb(255, 245.4, 213.8) !important;background-color:var(--bs-warning-bg-subtle) !important}.bg-danger-subtle{background-color:#fbd4cc !important;background-color:var(--bs-danger-bg-subtle) !important}.bg-light-subtle{background-color:rgb(251.5, 252, 252.5) !important;background-color:var(--bs-light-bg-subtle) !important}.bg-dark-subtle{background-color:#ced4da !important;background-color:var(--bs-dark-bg-subtle) !important}.bg-gradient{background-image:linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0)) !important;background-image:var(--bs-gradient) !important}.user-select-all{-webkit-user-select:all !important;-moz-user-select:all !important;user-select:all !important}.user-select-auto{-webkit-user-select:auto !important;-moz-user-select:auto !important;user-select:auto !important}.user-select-none{-webkit-user-select:none !important;-moz-user-select:none !important;user-select:none !important}.pe-none{pointer-events:none !important}.pe-auto{pointer-events:auto !important}.rounded{border-radius:0.375rem !important;border-radius:var(--bs-border-radius) !important}.rounded-0{border-radius:0 !important}.rounded-1{border-radius:0.25rem !important;border-radius:var(--bs-border-radius-sm) !important}.rounded-2{border-radius:0.375rem !important;border-radius:var(--bs-border-radius) !important}.rounded-3{border-radius:0.5rem !important;border-radius:var(--bs-border-radius-lg) !important}.rounded-4{border-radius:1rem !important;border-radius:var(--bs-border-radius-xl) !important}.rounded-5{border-radius:2rem !important;border-radius:var(--bs-border-radius-xxl) !important}.rounded-circle{border-radius:50% !important}.rounded-pill{border-radius:50rem !important;border-radius:var(--bs-border-radius-pill) !important}.rounded-top{border-top-left-radius:0.375rem !important;border-top-left-radius:var(--bs-border-radius) !important;border-top-right-radius:0.375rem !important;border-top-right-radius:var(--bs-border-radius) !important}.rounded-top-0{border-top-left-radius:0 !important;border-top-right-radius:0 !important}.rounded-top-1{border-top-left-radius:0.25rem !important;border-top-left-radius:var(--bs-border-radius-sm) !important;border-top-right-radius:0.25rem !important;border-top-right-radius:var(--bs-border-radius-sm) !important}.rounded-top-2{border-top-left-radius:0.375rem !important;border-top-left-radius:var(--bs-border-radius) !important;border-top-right-radius:0.375rem !important;border-top-right-radius:var(--bs-border-radius) !important}.rounded-top-3{border-top-left-radius:0.5rem !important;border-top-left-radius:var(--bs-border-radius-lg) !important;border-top-right-radius:0.5rem !important;border-top-right-radius:var(--bs-border-radius-lg) !important}.rounded-top-4{border-top-left-radius:1rem !important;border-top-left-radius:var(--bs-border-radius-xl) !important;border-top-right-radius:1rem !important;border-top-right-radius:var(--bs-border-radius-xl) !important}.rounded-top-5{border-top-left-radius:2rem !important;border-top-left-radius:var(--bs-border-radius-xxl) !important;border-top-right-radius:2rem !important;border-top-right-radius:var(--bs-border-radius-xxl) !important}.rounded-top-circle{border-top-left-radius:50% !important;border-top-right-radius:50% !important}.rounded-top-pill{border-top-left-radius:50rem !important;border-top-left-radius:var(--bs-border-radius-pill) !important;border-top-right-radius:50rem !important;border-top-right-radius:var(--bs-border-radius-pill) !important}.rounded-end{border-top-right-radius:0.375rem !important;border-top-right-radius:var(--bs-border-radius) !important;border-bottom-right-radius:0.375rem !important;border-bottom-right-radius:var(--bs-border-radius) !important}.rounded-end-0{border-top-right-radius:0 !important;border-bottom-right-radius:0 !important}.rounded-end-1{border-top-right-radius:0.25rem !important;border-top-right-radius:var(--bs-border-radius-sm) !important;border-bottom-right-radius:0.25rem !important;border-bottom-right-radius:var(--bs-border-radius-sm) !important}.rounded-end-2{border-top-right-radius:0.375rem !important;border-top-right-radius:var(--bs-border-radius) !important;border-bottom-right-radius:0.375rem !important;border-bottom-right-radius:var(--bs-border-radius) !important}.rounded-end-3{border-top-right-radius:0.5rem !important;border-top-right-radius:var(--bs-border-radius-lg) !important;border-bottom-right-radius:0.5rem !important;border-bottom-right-radius:var(--bs-border-radius-lg) !important}.rounded-end-4{border-top-right-radius:1rem !important;border-top-right-radius:var(--bs-border-radius-xl) !important;border-bottom-right-radius:1rem !important;border-bottom-right-radius:var(--bs-border-radius-xl) !important}.rounded-end-5{border-top-right-radius:2rem !important;border-top-right-radius:var(--bs-border-radius-xxl) !important;border-bottom-right-radius:2rem !important;border-bottom-right-radius:var(--bs-border-radius-xxl) !important}.rounded-end-circle{border-top-right-radius:50% !important;border-bottom-right-radius:50% !important}.rounded-end-pill{border-top-right-radius:50rem !important;border-top-right-radius:var(--bs-border-radius-pill) !important;border-bottom-right-radius:50rem !important;border-bottom-right-radius:var(--bs-border-radius-pill) !important}.rounded-bottom{border-bottom-right-radius:0.375rem !important;border-bottom-right-radius:var(--bs-border-radius) !important;border-bottom-left-radius:0.375rem !important;border-bottom-left-radius:var(--bs-border-radius) !important}.rounded-bottom-0{border-bottom-right-radius:0 !important;border-bottom-left-radius:0 !important}.rounded-bottom-1{border-bottom-right-radius:0.25rem !important;border-bottom-right-radius:var(--bs-border-radius-sm) !important;border-bottom-left-radius:0.25rem !important;border-bottom-left-radius:var(--bs-border-radius-sm) !important}.rounded-bottom-2{border-bottom-right-radius:0.375rem !important;border-bottom-right-radius:var(--bs-border-radius) !important;border-bottom-left-radius:0.375rem !important;border-bottom-left-radius:var(--bs-border-radius) !important}.rounded-bottom-3{border-bottom-right-radius:0.5rem !important;border-bottom-right-radius:var(--bs-border-radius-lg) !important;border-bottom-left-radius:0.5rem !important;border-bottom-left-radius:var(--bs-border-radius-lg) !important}.rounded-bottom-4{border-bottom-right-radius:1rem !important;border-bottom-right-radius:var(--bs-border-radius-xl) !important;border-bottom-left-radius:1rem !important;border-bottom-left-radius:var(--bs-border-radius-xl) !important}.rounded-bottom-5{border-bottom-right-radius:2rem !important;border-bottom-right-radius:var(--bs-border-radius-xxl) !important;border-bottom-left-radius:2rem !important;border-bottom-left-radius:var(--bs-border-radius-xxl) !important}.rounded-bottom-circle{border-bottom-right-radius:50% !important;border-bottom-left-radius:50% !important}.rounded-bottom-pill{border-bottom-right-radius:50rem !important;border-bottom-right-radius:var(--bs-border-radius-pill) !important;border-bottom-left-radius:50rem !important;border-bottom-left-radius:var(--bs-border-radius-pill) !important}.rounded-start{border-bottom-left-radius:0.375rem !important;border-bottom-left-radius:var(--bs-border-radius) !important;border-top-left-radius:0.375rem !important;border-top-left-radius:var(--bs-border-radius) !important}.rounded-start-0{border-bottom-left-radius:0 !important;border-top-left-radius:0 !important}.rounded-start-1{border-bottom-left-radius:0.25rem !important;border-bottom-left-radius:var(--bs-border-radius-sm) !important;border-top-left-radius:0.25rem !important;border-top-left-radius:var(--bs-border-radius-sm) !important}.rounded-start-2{border-bottom-left-radius:0.375rem !important;border-bottom-left-radius:var(--bs-border-radius) !important;border-top-left-radius:0.375rem !important;border-top-left-radius:var(--bs-border-radius) !important}.rounded-start-3{border-bottom-left-radius:0.5rem !important;border-bottom-left-radius:var(--bs-border-radius-lg) !important;border-top-left-radius:0.5rem !important;border-top-left-radius:var(--bs-border-radius-lg) !important}.rounded-start-4{border-bottom-left-radius:1rem !important;border-bottom-left-radius:var(--bs-border-radius-xl) !important;border-top-left-radius:1rem !important;border-top-left-radius:var(--bs-border-radius-xl) !important}.rounded-start-5{border-bottom-left-radius:2rem !important;border-bottom-left-radius:var(--bs-border-radius-xxl) !important;border-top-left-radius:2rem !important;border-top-left-radius:var(--bs-border-radius-xxl) !important}.rounded-start-circle{border-bottom-left-radius:50% !important;border-top-left-radius:50% !important}.rounded-start-pill{border-bottom-left-radius:50rem !important;border-bottom-left-radius:var(--bs-border-radius-pill) !important;border-top-left-radius:50rem !important;border-top-left-radius:var(--bs-border-radius-pill) !important}.visible{visibility:visible !important}.invisible{visibility:hidden !important}.z-n1{z-index:-1 !important}.z-0{z-index:0 !important}.z-1{z-index:1 !important}.z-2{z-index:2 !important}.z-3{z-index:3 !important}@media(min-width: 576px){.float-sm-start{float:left !important}.float-sm-end{float:right !important}.float-sm-none{float:none !important}.object-fit-sm-contain{-o-object-fit:contain !important;object-fit:contain !important}.object-fit-sm-cover{-o-object-fit:cover !important;object-fit:cover !important}.object-fit-sm-fill{-o-object-fit:fill !important;object-fit:fill !important}.object-fit-sm-scale{-o-object-fit:scale-down !important;object-fit:scale-down !important}.object-fit-sm-none{-o-object-fit:none !important;object-fit:none !important}.d-sm-inline{display:inline !important}.d-sm-inline-block{display:inline-block !important}.d-sm-block{display:block !important}.d-sm-grid{display:grid !important}.d-sm-inline-grid{display:inline-grid !important}.d-sm-table{display:table !important}.d-sm-table-row{display:table-row !important}.d-sm-table-cell{display:table-cell !important}.d-sm-flex{display:flex !important}.d-sm-inline-flex{display:inline-flex !important}.d-sm-none{display:none !important}.flex-sm-fill{flex:1 1 auto !important}.flex-sm-row{flex-direction:row !important}.flex-sm-column{flex-direction:column !important}.flex-sm-row-reverse{flex-direction:row-reverse !important}.flex-sm-column-reverse{flex-direction:column-reverse !important}.flex-sm-grow-0{flex-grow:0 !important}.flex-sm-grow-1{flex-grow:1 !important}.flex-sm-shrink-0{flex-shrink:0 !important}.flex-sm-shrink-1{flex-shrink:1 !important}.flex-sm-wrap{flex-wrap:wrap !important}.flex-sm-nowrap{flex-wrap:nowrap !important}.flex-sm-wrap-reverse{flex-wrap:wrap-reverse !important}.justify-content-sm-start{justify-content:flex-start !important}.justify-content-sm-end{justify-content:flex-end !important}.justify-content-sm-center{justify-content:center !important}.justify-content-sm-between{justify-content:space-between !important}.justify-content-sm-around{justify-content:space-around !important}.justify-content-sm-evenly{justify-content:space-evenly !important}.align-items-sm-start{align-items:flex-start !important}.align-items-sm-end{align-items:flex-end !important}.align-items-sm-center{align-items:center !important}.align-items-sm-baseline{align-items:baseline !important}.align-items-sm-stretch{align-items:stretch !important}.align-content-sm-start{align-content:flex-start !important}.align-content-sm-end{align-content:flex-end !important}.align-content-sm-center{align-content:center !important}.align-content-sm-between{align-content:space-between !important}.align-content-sm-around{align-content:space-around !important}.align-content-sm-stretch{align-content:stretch !important}.align-self-sm-auto{align-self:auto !important}.align-self-sm-start{align-self:flex-start !important}.align-self-sm-end{align-self:flex-end !important}.align-self-sm-center{align-self:center !important}.align-self-sm-baseline{align-self:baseline !important}.align-self-sm-stretch{align-self:stretch !important}.order-sm-first{order:-1 !important}.order-sm-0{order:0 !important}.order-sm-1{order:1 !important}.order-sm-2{order:2 !important}.order-sm-3{order:3 !important}.order-sm-4{order:4 !important}.order-sm-5{order:5 !important}.order-sm-last{order:6 !important}.m-sm-0{margin:0 !important}.m-sm-1{margin:.25rem !important}.m-sm-2{margin:.5rem !important}.m-sm-3{margin:1rem !important}.m-sm-4{margin:1.5rem !important}.m-sm-5{margin:2rem !important}.m-sm-6{margin:2.5rem !important}.m-sm-7{margin:3rem !important}.m-sm-8{margin:4rem !important}.m-sm-9{margin:5rem !important}.m-sm-10{margin:6rem !important}.m-sm-1px{margin:1px !important}.m-sm-gutter{margin:1rem !important}.m-sm-auto{margin:auto !important}.mx-sm-0{margin-right:0 !important;margin-left:0 !important}.mx-sm-1{margin-right:.25rem !important;margin-left:.25rem !important}.mx-sm-2{margin-right:.5rem !important;margin-left:.5rem !important}.mx-sm-3{margin-right:1rem !important;margin-left:1rem !important}.mx-sm-4{margin-right:1.5rem !important;margin-left:1.5rem !important}.mx-sm-5{margin-right:2rem !important;margin-left:2rem !important}.mx-sm-6{margin-right:2.5rem !important;margin-left:2.5rem !important}.mx-sm-7{margin-right:3rem !important;margin-left:3rem !important}.mx-sm-8{margin-right:4rem !important;margin-left:4rem !important}.mx-sm-9{margin-right:5rem !important;margin-left:5rem !important}.mx-sm-10{margin-right:6rem !important;margin-left:6rem !important}.mx-sm-1px{margin-right:1px !important;margin-left:1px !important}.mx-sm-gutter{margin-right:1rem !important;margin-left:1rem !important}.mx-sm-auto{margin-right:auto !important;margin-left:auto !important}.my-sm-0{margin-top:0 !important;margin-bottom:0 !important}.my-sm-1{margin-top:.25rem !important;margin-bottom:.25rem !important}.my-sm-2{margin-top:.5rem !important;margin-bottom:.5rem !important}.my-sm-3{margin-top:1rem !important;margin-bottom:1rem !important}.my-sm-4{margin-top:1.5rem !important;margin-bottom:1.5rem !important}.my-sm-5{margin-top:2rem !important;margin-bottom:2rem !important}.my-sm-6{margin-top:2.5rem !important;margin-bottom:2.5rem !important}.my-sm-7{margin-top:3rem !important;margin-bottom:3rem !important}.my-sm-8{margin-top:4rem !important;margin-bottom:4rem !important}.my-sm-9{margin-top:5rem !important;margin-bottom:5rem !important}.my-sm-10{margin-top:6rem !important;margin-bottom:6rem !important}.my-sm-1px{margin-top:1px !important;margin-bottom:1px !important}.my-sm-gutter{margin-top:1rem !important;margin-bottom:1rem !important}.my-sm-auto{margin-top:auto !important;margin-bottom:auto !important}.mt-sm-0{margin-top:0 !important}.mt-sm-1{margin-top:.25rem !important}.mt-sm-2{margin-top:.5rem !important}.mt-sm-3{margin-top:1rem !important}.mt-sm-4{margin-top:1.5rem !important}.mt-sm-5{margin-top:2rem !important}.mt-sm-6{margin-top:2.5rem !important}.mt-sm-7{margin-top:3rem !important}.mt-sm-8{margin-top:4rem !important}.mt-sm-9{margin-top:5rem !important}.mt-sm-10{margin-top:6rem !important}.mt-sm-1px{margin-top:1px !important}.mt-sm-gutter{margin-top:1rem !important}.mt-sm-auto{margin-top:auto !important}.me-sm-0{margin-right:0 !important}.me-sm-1{margin-right:.25rem !important}.me-sm-2{margin-right:.5rem !important}.me-sm-3{margin-right:1rem !important}.me-sm-4{margin-right:1.5rem !important}.me-sm-5{margin-right:2rem !important}.me-sm-6{margin-right:2.5rem !important}.me-sm-7{margin-right:3rem !important}.me-sm-8{margin-right:4rem !important}.me-sm-9{margin-right:5rem !important}.me-sm-10{margin-right:6rem !important}.me-sm-1px{margin-right:1px !important}.me-sm-gutter{margin-right:1rem !important}.me-sm-auto{margin-right:auto !important}.mb-sm-0{margin-bottom:0 !important}.mb-sm-1{margin-bottom:.25rem !important}.mb-sm-2{margin-bottom:.5rem !important}.mb-sm-3{margin-bottom:1rem !important}.mb-sm-4{margin-bottom:1.5rem !important}.mb-sm-5{margin-bottom:2rem !important}.mb-sm-6{margin-bottom:2.5rem !important}.mb-sm-7{margin-bottom:3rem !important}.mb-sm-8{margin-bottom:4rem !important}.mb-sm-9{margin-bottom:5rem !important}.mb-sm-10{margin-bottom:6rem !important}.mb-sm-1px{margin-bottom:1px !important}.mb-sm-gutter{margin-bottom:1rem !important}.mb-sm-auto{margin-bottom:auto !important}.ms-sm-0{margin-left:0 !important}.ms-sm-1{margin-left:.25rem !important}.ms-sm-2{margin-left:.5rem !important}.ms-sm-3{margin-left:1rem !important}.ms-sm-4{margin-left:1.5rem !important}.ms-sm-5{margin-left:2rem !important}.ms-sm-6{margin-left:2.5rem !important}.ms-sm-7{margin-left:3rem !important}.ms-sm-8{margin-left:4rem !important}.ms-sm-9{margin-left:5rem !important}.ms-sm-10{margin-left:6rem !important}.ms-sm-1px{margin-left:1px !important}.ms-sm-gutter{margin-left:1rem !important}.ms-sm-auto{margin-left:auto !important}.m-sm-n1{margin:-0.25rem !important}.m-sm-n2{margin:-0.5rem !important}.m-sm-n3{margin:-1rem !important}.m-sm-n4{margin:-1.5rem !important}.m-sm-n5{margin:-2rem !important}.m-sm-n6{margin:-2.5rem !important}.m-sm-n7{margin:-3rem !important}.m-sm-n8{margin:-4rem !important}.m-sm-n9{margin:-5rem !important}.m-sm-n10{margin:-6rem !important}.m-sm-n1px{margin:-1px !important}.m-sm-ngutter{margin:-1rem !important}.mx-sm-n1{margin-right:-0.25rem !important;margin-left:-0.25rem !important}.mx-sm-n2{margin-right:-0.5rem !important;margin-left:-0.5rem !important}.mx-sm-n3{margin-right:-1rem !important;margin-left:-1rem !important}.mx-sm-n4{margin-right:-1.5rem !important;margin-left:-1.5rem !important}.mx-sm-n5{margin-right:-2rem !important;margin-left:-2rem !important}.mx-sm-n6{margin-right:-2.5rem !important;margin-left:-2.5rem !important}.mx-sm-n7{margin-right:-3rem !important;margin-left:-3rem !important}.mx-sm-n8{margin-right:-4rem !important;margin-left:-4rem !important}.mx-sm-n9{margin-right:-5rem !important;margin-left:-5rem !important}.mx-sm-n10{margin-right:-6rem !important;margin-left:-6rem !important}.mx-sm-n1px{margin-right:-1px !important;margin-left:-1px !important}.mx-sm-ngutter{margin-right:-1rem !important;margin-left:-1rem !important}.my-sm-n1{margin-top:-0.25rem !important;margin-bottom:-0.25rem !important}.my-sm-n2{margin-top:-0.5rem !important;margin-bottom:-0.5rem !important}.my-sm-n3{margin-top:-1rem !important;margin-bottom:-1rem !important}.my-sm-n4{margin-top:-1.5rem !important;margin-bottom:-1.5rem !important}.my-sm-n5{margin-top:-2rem !important;margin-bottom:-2rem !important}.my-sm-n6{margin-top:-2.5rem !important;margin-bottom:-2.5rem !important}.my-sm-n7{margin-top:-3rem !important;margin-bottom:-3rem !important}.my-sm-n8{margin-top:-4rem !important;margin-bottom:-4rem !important}.my-sm-n9{margin-top:-5rem !important;margin-bottom:-5rem !important}.my-sm-n10{margin-top:-6rem !important;margin-bottom:-6rem !important}.my-sm-n1px{margin-top:-1px !important;margin-bottom:-1px !important}.my-sm-ngutter{margin-top:-1rem !important;margin-bottom:-1rem !important}.mt-sm-n1{margin-top:-0.25rem !important}.mt-sm-n2{margin-top:-0.5rem !important}.mt-sm-n3{margin-top:-1rem !important}.mt-sm-n4{margin-top:-1.5rem !important}.mt-sm-n5{margin-top:-2rem !important}.mt-sm-n6{margin-top:-2.5rem !important}.mt-sm-n7{margin-top:-3rem !important}.mt-sm-n8{margin-top:-4rem !important}.mt-sm-n9{margin-top:-5rem !important}.mt-sm-n10{margin-top:-6rem !important}.mt-sm-n1px{margin-top:-1px !important}.mt-sm-ngutter{margin-top:-1rem !important}.me-sm-n1{margin-right:-0.25rem !important}.me-sm-n2{margin-right:-0.5rem !important}.me-sm-n3{margin-right:-1rem !important}.me-sm-n4{margin-right:-1.5rem !important}.me-sm-n5{margin-right:-2rem !important}.me-sm-n6{margin-right:-2.5rem !important}.me-sm-n7{margin-right:-3rem !important}.me-sm-n8{margin-right:-4rem !important}.me-sm-n9{margin-right:-5rem !important}.me-sm-n10{margin-right:-6rem !important}.me-sm-n1px{margin-right:-1px !important}.me-sm-ngutter{margin-right:-1rem !important}.mb-sm-n1{margin-bottom:-0.25rem !important}.mb-sm-n2{margin-bottom:-0.5rem !important}.mb-sm-n3{margin-bottom:-1rem !important}.mb-sm-n4{margin-bottom:-1.5rem !important}.mb-sm-n5{margin-bottom:-2rem !important}.mb-sm-n6{margin-bottom:-2.5rem !important}.mb-sm-n7{margin-bottom:-3rem !important}.mb-sm-n8{margin-bottom:-4rem !important}.mb-sm-n9{margin-bottom:-5rem !important}.mb-sm-n10{margin-bottom:-6rem !important}.mb-sm-n1px{margin-bottom:-1px !important}.mb-sm-ngutter{margin-bottom:-1rem !important}.ms-sm-n1{margin-left:-0.25rem !important}.ms-sm-n2{margin-left:-0.5rem !important}.ms-sm-n3{margin-left:-1rem !important}.ms-sm-n4{margin-left:-1.5rem !important}.ms-sm-n5{margin-left:-2rem !important}.ms-sm-n6{margin-left:-2.5rem !important}.ms-sm-n7{margin-left:-3rem !important}.ms-sm-n8{margin-left:-4rem !important}.ms-sm-n9{margin-left:-5rem !important}.ms-sm-n10{margin-left:-6rem !important}.ms-sm-n1px{margin-left:-1px !important}.ms-sm-ngutter{margin-left:-1rem !important}.p-sm-0{padding:0 !important}.p-sm-1{padding:.25rem !important}.p-sm-2{padding:.5rem !important}.p-sm-3{padding:1rem !important}.p-sm-4{padding:1.5rem !important}.p-sm-5{padding:2rem !important}.p-sm-6{padding:2.5rem !important}.p-sm-7{padding:3rem !important}.p-sm-8{padding:4rem !important}.p-sm-9{padding:5rem !important}.p-sm-10{padding:6rem !important}.p-sm-1px{padding:1px !important}.p-sm-gutter{padding:1rem !important}.px-sm-0{padding-right:0 !important;padding-left:0 !important}.px-sm-1{padding-right:.25rem !important;padding-left:.25rem !important}.px-sm-2{padding-right:.5rem !important;padding-left:.5rem !important}.px-sm-3{padding-right:1rem !important;padding-left:1rem !important}.px-sm-4{padding-right:1.5rem !important;padding-left:1.5rem !important}.px-sm-5{padding-right:2rem !important;padding-left:2rem !important}.px-sm-6{padding-right:2.5rem !important;padding-left:2.5rem !important}.px-sm-7{padding-right:3rem !important;padding-left:3rem !important}.px-sm-8{padding-right:4rem !important;padding-left:4rem !important}.px-sm-9{padding-right:5rem !important;padding-left:5rem !important}.px-sm-10{padding-right:6rem !important;padding-left:6rem !important}.px-sm-1px{padding-right:1px !important;padding-left:1px !important}.px-sm-gutter{padding-right:1rem !important;padding-left:1rem !important}.py-sm-0{padding-top:0 !important;padding-bottom:0 !important}.py-sm-1{padding-top:.25rem !important;padding-bottom:.25rem !important}.py-sm-2{padding-top:.5rem !important;padding-bottom:.5rem !important}.py-sm-3{padding-top:1rem !important;padding-bottom:1rem !important}.py-sm-4{padding-top:1.5rem !important;padding-bottom:1.5rem !important}.py-sm-5{padding-top:2rem !important;padding-bottom:2rem !important}.py-sm-6{padding-top:2.5rem !important;padding-bottom:2.5rem !important}.py-sm-7{padding-top:3rem !important;padding-bottom:3rem !important}.py-sm-8{padding-top:4rem !important;padding-bottom:4rem !important}.py-sm-9{padding-top:5rem !important;padding-bottom:5rem !important}.py-sm-10{padding-top:6rem !important;padding-bottom:6rem !important}.py-sm-1px{padding-top:1px !important;padding-bottom:1px !important}.py-sm-gutter{padding-top:1rem !important;padding-bottom:1rem !important}.pt-sm-0{padding-top:0 !important}.pt-sm-1{padding-top:.25rem !important}.pt-sm-2{padding-top:.5rem !important}.pt-sm-3{padding-top:1rem !important}.pt-sm-4{padding-top:1.5rem !important}.pt-sm-5{padding-top:2rem !important}.pt-sm-6{padding-top:2.5rem !important}.pt-sm-7{padding-top:3rem !important}.pt-sm-8{padding-top:4rem !important}.pt-sm-9{padding-top:5rem !important}.pt-sm-10{padding-top:6rem !important}.pt-sm-1px{padding-top:1px !important}.pt-sm-gutter{padding-top:1rem !important}.pe-sm-0{padding-right:0 !important}.pe-sm-1{padding-right:.25rem !important}.pe-sm-2{padding-right:.5rem !important}.pe-sm-3{padding-right:1rem !important}.pe-sm-4{padding-right:1.5rem !important}.pe-sm-5{padding-right:2rem !important}.pe-sm-6{padding-right:2.5rem !important}.pe-sm-7{padding-right:3rem !important}.pe-sm-8{padding-right:4rem !important}.pe-sm-9{padding-right:5rem !important}.pe-sm-10{padding-right:6rem !important}.pe-sm-1px{padding-right:1px !important}.pe-sm-gutter{padding-right:1rem !important}.pb-sm-0{padding-bottom:0 !important}.pb-sm-1{padding-bottom:.25rem !important}.pb-sm-2{padding-bottom:.5rem !important}.pb-sm-3{padding-bottom:1rem !important}.pb-sm-4{padding-bottom:1.5rem !important}.pb-sm-5{padding-bottom:2rem !important}.pb-sm-6{padding-bottom:2.5rem !important}.pb-sm-7{padding-bottom:3rem !important}.pb-sm-8{padding-bottom:4rem !important}.pb-sm-9{padding-bottom:5rem !important}.pb-sm-10{padding-bottom:6rem !important}.pb-sm-1px{padding-bottom:1px !important}.pb-sm-gutter{padding-bottom:1rem !important}.ps-sm-0{padding-left:0 !important}.ps-sm-1{padding-left:.25rem !important}.ps-sm-2{padding-left:.5rem !important}.ps-sm-3{padding-left:1rem !important}.ps-sm-4{padding-left:1.5rem !important}.ps-sm-5{padding-left:2rem !important}.ps-sm-6{padding-left:2.5rem !important}.ps-sm-7{padding-left:3rem !important}.ps-sm-8{padding-left:4rem !important}.ps-sm-9{padding-left:5rem !important}.ps-sm-10{padding-left:6rem !important}.ps-sm-1px{padding-left:1px !important}.ps-sm-gutter{padding-left:1rem !important}.gap-sm-0{gap:0 !important}.gap-sm-1{gap:.25rem !important}.gap-sm-2{gap:.5rem !important}.gap-sm-3{gap:1rem !important}.gap-sm-4{gap:1.5rem !important}.gap-sm-5{gap:2rem !important}.gap-sm-6{gap:2.5rem !important}.gap-sm-7{gap:3rem !important}.gap-sm-8{gap:4rem !important}.gap-sm-9{gap:5rem !important}.gap-sm-10{gap:6rem !important}.gap-sm-1px{gap:1px !important}.gap-sm-gutter{gap:1rem !important}.row-gap-sm-0{row-gap:0 !important}.row-gap-sm-1{row-gap:.25rem !important}.row-gap-sm-2{row-gap:.5rem !important}.row-gap-sm-3{row-gap:1rem !important}.row-gap-sm-4{row-gap:1.5rem !important}.row-gap-sm-5{row-gap:2rem !important}.row-gap-sm-6{row-gap:2.5rem !important}.row-gap-sm-7{row-gap:3rem !important}.row-gap-sm-8{row-gap:4rem !important}.row-gap-sm-9{row-gap:5rem !important}.row-gap-sm-10{row-gap:6rem !important}.row-gap-sm-1px{row-gap:1px !important}.row-gap-sm-gutter{row-gap:1rem !important}.column-gap-sm-0{-moz-column-gap:0 !important;column-gap:0 !important}.column-gap-sm-1{-moz-column-gap:.25rem !important;column-gap:.25rem !important}.column-gap-sm-2{-moz-column-gap:.5rem !important;column-gap:.5rem !important}.column-gap-sm-3{-moz-column-gap:1rem !important;column-gap:1rem !important}.column-gap-sm-4{-moz-column-gap:1.5rem !important;column-gap:1.5rem !important}.column-gap-sm-5{-moz-column-gap:2rem !important;column-gap:2rem !important}.column-gap-sm-6{-moz-column-gap:2.5rem !important;column-gap:2.5rem !important}.column-gap-sm-7{-moz-column-gap:3rem !important;column-gap:3rem !important}.column-gap-sm-8{-moz-column-gap:4rem !important;column-gap:4rem !important}.column-gap-sm-9{-moz-column-gap:5rem !important;column-gap:5rem !important}.column-gap-sm-10{-moz-column-gap:6rem !important;column-gap:6rem !important}.column-gap-sm-1px{-moz-column-gap:1px !important;column-gap:1px !important}.column-gap-sm-gutter{-moz-column-gap:1rem !important;column-gap:1rem !important}.text-sm-start{text-align:left !important}.text-sm-end{text-align:right !important}.text-sm-center{text-align:center !important}}@media(min-width: 768px){.float-md-start{float:left !important}.float-md-end{float:right !important}.float-md-none{float:none !important}.object-fit-md-contain{-o-object-fit:contain !important;object-fit:contain !important}.object-fit-md-cover{-o-object-fit:cover !important;object-fit:cover !important}.object-fit-md-fill{-o-object-fit:fill !important;object-fit:fill !important}.object-fit-md-scale{-o-object-fit:scale-down !important;object-fit:scale-down !important}.object-fit-md-none{-o-object-fit:none !important;object-fit:none !important}.d-md-inline{display:inline !important}.d-md-inline-block{display:inline-block !important}.d-md-block{display:block !important}.d-md-grid{display:grid !important}.d-md-inline-grid{display:inline-grid !important}.d-md-table{display:table !important}.d-md-table-row{display:table-row !important}.d-md-table-cell{display:table-cell !important}.d-md-flex{display:flex !important}.d-md-inline-flex{display:inline-flex !important}.d-md-none{display:none !important}.flex-md-fill{flex:1 1 auto !important}.flex-md-row{flex-direction:row !important}.flex-md-column{flex-direction:column !important}.flex-md-row-reverse{flex-direction:row-reverse !important}.flex-md-column-reverse{flex-direction:column-reverse !important}.flex-md-grow-0{flex-grow:0 !important}.flex-md-grow-1{flex-grow:1 !important}.flex-md-shrink-0{flex-shrink:0 !important}.flex-md-shrink-1{flex-shrink:1 !important}.flex-md-wrap{flex-wrap:wrap !important}.flex-md-nowrap{flex-wrap:nowrap !important}.flex-md-wrap-reverse{flex-wrap:wrap-reverse !important}.justify-content-md-start{justify-content:flex-start !important}.justify-content-md-end{justify-content:flex-end !important}.justify-content-md-center{justify-content:center !important}.justify-content-md-between{justify-content:space-between !important}.justify-content-md-around{justify-content:space-around !important}.justify-content-md-evenly{justify-content:space-evenly !important}.align-items-md-start{align-items:flex-start !important}.align-items-md-end{align-items:flex-end !important}.align-items-md-center{align-items:center !important}.align-items-md-baseline{align-items:baseline !important}.align-items-md-stretch{align-items:stretch !important}.align-content-md-start{align-content:flex-start !important}.align-content-md-end{align-content:flex-end !important}.align-content-md-center{align-content:center !important}.align-content-md-between{align-content:space-between !important}.align-content-md-around{align-content:space-around !important}.align-content-md-stretch{align-content:stretch !important}.align-self-md-auto{align-self:auto !important}.align-self-md-start{align-self:flex-start !important}.align-self-md-end{align-self:flex-end !important}.align-self-md-center{align-self:center !important}.align-self-md-baseline{align-self:baseline !important}.align-self-md-stretch{align-self:stretch !important}.order-md-first{order:-1 !important}.order-md-0{order:0 !important}.order-md-1{order:1 !important}.order-md-2{order:2 !important}.order-md-3{order:3 !important}.order-md-4{order:4 !important}.order-md-5{order:5 !important}.order-md-last{order:6 !important}.m-md-0{margin:0 !important}.m-md-1{margin:.25rem !important}.m-md-2{margin:.5rem !important}.m-md-3{margin:1rem !important}.m-md-4{margin:1.5rem !important}.m-md-5{margin:2rem !important}.m-md-6{margin:2.5rem !important}.m-md-7{margin:3rem !important}.m-md-8{margin:4rem !important}.m-md-9{margin:5rem !important}.m-md-10{margin:6rem !important}.m-md-1px{margin:1px !important}.m-md-gutter{margin:1rem !important}.m-md-auto{margin:auto !important}.mx-md-0{margin-right:0 !important;margin-left:0 !important}.mx-md-1{margin-right:.25rem !important;margin-left:.25rem !important}.mx-md-2{margin-right:.5rem !important;margin-left:.5rem !important}.mx-md-3{margin-right:1rem !important;margin-left:1rem !important}.mx-md-4{margin-right:1.5rem !important;margin-left:1.5rem !important}.mx-md-5{margin-right:2rem !important;margin-left:2rem !important}.mx-md-6{margin-right:2.5rem !important;margin-left:2.5rem !important}.mx-md-7{margin-right:3rem !important;margin-left:3rem !important}.mx-md-8{margin-right:4rem !important;margin-left:4rem !important}.mx-md-9{margin-right:5rem !important;margin-left:5rem !important}.mx-md-10{margin-right:6rem !important;margin-left:6rem !important}.mx-md-1px{margin-right:1px !important;margin-left:1px !important}.mx-md-gutter{margin-right:1rem !important;margin-left:1rem !important}.mx-md-auto{margin-right:auto !important;margin-left:auto !important}.my-md-0{margin-top:0 !important;margin-bottom:0 !important}.my-md-1{margin-top:.25rem !important;margin-bottom:.25rem !important}.my-md-2{margin-top:.5rem !important;margin-bottom:.5rem !important}.my-md-3{margin-top:1rem !important;margin-bottom:1rem !important}.my-md-4{margin-top:1.5rem !important;margin-bottom:1.5rem !important}.my-md-5{margin-top:2rem !important;margin-bottom:2rem !important}.my-md-6{margin-top:2.5rem !important;margin-bottom:2.5rem !important}.my-md-7{margin-top:3rem !important;margin-bottom:3rem !important}.my-md-8{margin-top:4rem !important;margin-bottom:4rem !important}.my-md-9{margin-top:5rem !important;margin-bottom:5rem !important}.my-md-10{margin-top:6rem !important;margin-bottom:6rem !important}.my-md-1px{margin-top:1px !important;margin-bottom:1px !important}.my-md-gutter{margin-top:1rem !important;margin-bottom:1rem !important}.my-md-auto{margin-top:auto !important;margin-bottom:auto !important}.mt-md-0{margin-top:0 !important}.mt-md-1{margin-top:.25rem !important}.mt-md-2{margin-top:.5rem !important}.mt-md-3{margin-top:1rem !important}.mt-md-4{margin-top:1.5rem !important}.mt-md-5{margin-top:2rem !important}.mt-md-6{margin-top:2.5rem !important}.mt-md-7{margin-top:3rem !important}.mt-md-8{margin-top:4rem !important}.mt-md-9{margin-top:5rem !important}.mt-md-10{margin-top:6rem !important}.mt-md-1px{margin-top:1px !important}.mt-md-gutter{margin-top:1rem !important}.mt-md-auto{margin-top:auto !important}.me-md-0{margin-right:0 !important}.me-md-1{margin-right:.25rem !important}.me-md-2{margin-right:.5rem !important}.me-md-3{margin-right:1rem !important}.me-md-4{margin-right:1.5rem !important}.me-md-5{margin-right:2rem !important}.me-md-6{margin-right:2.5rem !important}.me-md-7{margin-right:3rem !important}.me-md-8{margin-right:4rem !important}.me-md-9{margin-right:5rem !important}.me-md-10{margin-right:6rem !important}.me-md-1px{margin-right:1px !important}.me-md-gutter{margin-right:1rem !important}.me-md-auto{margin-right:auto !important}.mb-md-0{margin-bottom:0 !important}.mb-md-1{margin-bottom:.25rem !important}.mb-md-2{margin-bottom:.5rem !important}.mb-md-3{margin-bottom:1rem !important}.mb-md-4{margin-bottom:1.5rem !important}.mb-md-5{margin-bottom:2rem !important}.mb-md-6{margin-bottom:2.5rem !important}.mb-md-7{margin-bottom:3rem !important}.mb-md-8{margin-bottom:4rem !important}.mb-md-9{margin-bottom:5rem !important}.mb-md-10{margin-bottom:6rem !important}.mb-md-1px{margin-bottom:1px !important}.mb-md-gutter{margin-bottom:1rem !important}.mb-md-auto{margin-bottom:auto !important}.ms-md-0{margin-left:0 !important}.ms-md-1{margin-left:.25rem !important}.ms-md-2{margin-left:.5rem !important}.ms-md-3{margin-left:1rem !important}.ms-md-4{margin-left:1.5rem !important}.ms-md-5{margin-left:2rem !important}.ms-md-6{margin-left:2.5rem !important}.ms-md-7{margin-left:3rem !important}.ms-md-8{margin-left:4rem !important}.ms-md-9{margin-left:5rem !important}.ms-md-10{margin-left:6rem !important}.ms-md-1px{margin-left:1px !important}.ms-md-gutter{margin-left:1rem !important}.ms-md-auto{margin-left:auto !important}.m-md-n1{margin:-0.25rem !important}.m-md-n2{margin:-0.5rem !important}.m-md-n3{margin:-1rem !important}.m-md-n4{margin:-1.5rem !important}.m-md-n5{margin:-2rem !important}.m-md-n6{margin:-2.5rem !important}.m-md-n7{margin:-3rem !important}.m-md-n8{margin:-4rem !important}.m-md-n9{margin:-5rem !important}.m-md-n10{margin:-6rem !important}.m-md-n1px{margin:-1px !important}.m-md-ngutter{margin:-1rem !important}.mx-md-n1{margin-right:-0.25rem !important;margin-left:-0.25rem !important}.mx-md-n2{margin-right:-0.5rem !important;margin-left:-0.5rem !important}.mx-md-n3{margin-right:-1rem !important;margin-left:-1rem !important}.mx-md-n4{margin-right:-1.5rem !important;margin-left:-1.5rem !important}.mx-md-n5{margin-right:-2rem !important;margin-left:-2rem !important}.mx-md-n6{margin-right:-2.5rem !important;margin-left:-2.5rem !important}.mx-md-n7{margin-right:-3rem !important;margin-left:-3rem !important}.mx-md-n8{margin-right:-4rem !important;margin-left:-4rem !important}.mx-md-n9{margin-right:-5rem !important;margin-left:-5rem !important}.mx-md-n10{margin-right:-6rem !important;margin-left:-6rem !important}.mx-md-n1px{margin-right:-1px !important;margin-left:-1px !important}.mx-md-ngutter{margin-right:-1rem !important;margin-left:-1rem !important}.my-md-n1{margin-top:-0.25rem !important;margin-bottom:-0.25rem !important}.my-md-n2{margin-top:-0.5rem !important;margin-bottom:-0.5rem !important}.my-md-n3{margin-top:-1rem !important;margin-bottom:-1rem !important}.my-md-n4{margin-top:-1.5rem !important;margin-bottom:-1.5rem !important}.my-md-n5{margin-top:-2rem !important;margin-bottom:-2rem !important}.my-md-n6{margin-top:-2.5rem !important;margin-bottom:-2.5rem !important}.my-md-n7{margin-top:-3rem !important;margin-bottom:-3rem !important}.my-md-n8{margin-top:-4rem !important;margin-bottom:-4rem !important}.my-md-n9{margin-top:-5rem !important;margin-bottom:-5rem !important}.my-md-n10{margin-top:-6rem !important;margin-bottom:-6rem !important}.my-md-n1px{margin-top:-1px !important;margin-bottom:-1px !important}.my-md-ngutter{margin-top:-1rem !important;margin-bottom:-1rem !important}.mt-md-n1{margin-top:-0.25rem !important}.mt-md-n2{margin-top:-0.5rem !important}.mt-md-n3{margin-top:-1rem !important}.mt-md-n4{margin-top:-1.5rem !important}.mt-md-n5{margin-top:-2rem !important}.mt-md-n6{margin-top:-2.5rem !important}.mt-md-n7{margin-top:-3rem !important}.mt-md-n8{margin-top:-4rem !important}.mt-md-n9{margin-top:-5rem !important}.mt-md-n10{margin-top:-6rem !important}.mt-md-n1px{margin-top:-1px !important}.mt-md-ngutter{margin-top:-1rem !important}.me-md-n1{margin-right:-0.25rem !important}.me-md-n2{margin-right:-0.5rem !important}.me-md-n3{margin-right:-1rem !important}.me-md-n4{margin-right:-1.5rem !important}.me-md-n5{margin-right:-2rem !important}.me-md-n6{margin-right:-2.5rem !important}.me-md-n7{margin-right:-3rem !important}.me-md-n8{margin-right:-4rem !important}.me-md-n9{margin-right:-5rem !important}.me-md-n10{margin-right:-6rem !important}.me-md-n1px{margin-right:-1px !important}.me-md-ngutter{margin-right:-1rem !important}.mb-md-n1{margin-bottom:-0.25rem !important}.mb-md-n2{margin-bottom:-0.5rem !important}.mb-md-n3{margin-bottom:-1rem !important}.mb-md-n4{margin-bottom:-1.5rem !important}.mb-md-n5{margin-bottom:-2rem !important}.mb-md-n6{margin-bottom:-2.5rem !important}.mb-md-n7{margin-bottom:-3rem !important}.mb-md-n8{margin-bottom:-4rem !important}.mb-md-n9{margin-bottom:-5rem !important}.mb-md-n10{margin-bottom:-6rem !important}.mb-md-n1px{margin-bottom:-1px !important}.mb-md-ngutter{margin-bottom:-1rem !important}.ms-md-n1{margin-left:-0.25rem !important}.ms-md-n2{margin-left:-0.5rem !important}.ms-md-n3{margin-left:-1rem !important}.ms-md-n4{margin-left:-1.5rem !important}.ms-md-n5{margin-left:-2rem !important}.ms-md-n6{margin-left:-2.5rem !important}.ms-md-n7{margin-left:-3rem !important}.ms-md-n8{margin-left:-4rem !important}.ms-md-n9{margin-left:-5rem !important}.ms-md-n10{margin-left:-6rem !important}.ms-md-n1px{margin-left:-1px !important}.ms-md-ngutter{margin-left:-1rem !important}.p-md-0{padding:0 !important}.p-md-1{padding:.25rem !important}.p-md-2{padding:.5rem !important}.p-md-3{padding:1rem !important}.p-md-4{padding:1.5rem !important}.p-md-5{padding:2rem !important}.p-md-6{padding:2.5rem !important}.p-md-7{padding:3rem !important}.p-md-8{padding:4rem !important}.p-md-9{padding:5rem !important}.p-md-10{padding:6rem !important}.p-md-1px{padding:1px !important}.p-md-gutter{padding:1rem !important}.px-md-0{padding-right:0 !important;padding-left:0 !important}.px-md-1{padding-right:.25rem !important;padding-left:.25rem !important}.px-md-2{padding-right:.5rem !important;padding-left:.5rem !important}.px-md-3{padding-right:1rem !important;padding-left:1rem !important}.px-md-4{padding-right:1.5rem !important;padding-left:1.5rem !important}.px-md-5{padding-right:2rem !important;padding-left:2rem !important}.px-md-6{padding-right:2.5rem !important;padding-left:2.5rem !important}.px-md-7{padding-right:3rem !important;padding-left:3rem !important}.px-md-8{padding-right:4rem !important;padding-left:4rem !important}.px-md-9{padding-right:5rem !important;padding-left:5rem !important}.px-md-10{padding-right:6rem !important;padding-left:6rem !important}.px-md-1px{padding-right:1px !important;padding-left:1px !important}.px-md-gutter{padding-right:1rem !important;padding-left:1rem !important}.py-md-0{padding-top:0 !important;padding-bottom:0 !important}.py-md-1{padding-top:.25rem !important;padding-bottom:.25rem !important}.py-md-2{padding-top:.5rem !important;padding-bottom:.5rem !important}.py-md-3{padding-top:1rem !important;padding-bottom:1rem !important}.py-md-4{padding-top:1.5rem !important;padding-bottom:1.5rem !important}.py-md-5{padding-top:2rem !important;padding-bottom:2rem !important}.py-md-6{padding-top:2.5rem !important;padding-bottom:2.5rem !important}.py-md-7{padding-top:3rem !important;padding-bottom:3rem !important}.py-md-8{padding-top:4rem !important;padding-bottom:4rem !important}.py-md-9{padding-top:5rem !important;padding-bottom:5rem !important}.py-md-10{padding-top:6rem !important;padding-bottom:6rem !important}.py-md-1px{padding-top:1px !important;padding-bottom:1px !important}.py-md-gutter{padding-top:1rem !important;padding-bottom:1rem !important}.pt-md-0{padding-top:0 !important}.pt-md-1{padding-top:.25rem !important}.pt-md-2{padding-top:.5rem !important}.pt-md-3{padding-top:1rem !important}.pt-md-4{padding-top:1.5rem !important}.pt-md-5{padding-top:2rem !important}.pt-md-6{padding-top:2.5rem !important}.pt-md-7{padding-top:3rem !important}.pt-md-8{padding-top:4rem !important}.pt-md-9{padding-top:5rem !important}.pt-md-10{padding-top:6rem !important}.pt-md-1px{padding-top:1px !important}.pt-md-gutter{padding-top:1rem !important}.pe-md-0{padding-right:0 !important}.pe-md-1{padding-right:.25rem !important}.pe-md-2{padding-right:.5rem !important}.pe-md-3{padding-right:1rem !important}.pe-md-4{padding-right:1.5rem !important}.pe-md-5{padding-right:2rem !important}.pe-md-6{padding-right:2.5rem !important}.pe-md-7{padding-right:3rem !important}.pe-md-8{padding-right:4rem !important}.pe-md-9{padding-right:5rem !important}.pe-md-10{padding-right:6rem !important}.pe-md-1px{padding-right:1px !important}.pe-md-gutter{padding-right:1rem !important}.pb-md-0{padding-bottom:0 !important}.pb-md-1{padding-bottom:.25rem !important}.pb-md-2{padding-bottom:.5rem !important}.pb-md-3{padding-bottom:1rem !important}.pb-md-4{padding-bottom:1.5rem !important}.pb-md-5{padding-bottom:2rem !important}.pb-md-6{padding-bottom:2.5rem !important}.pb-md-7{padding-bottom:3rem !important}.pb-md-8{padding-bottom:4rem !important}.pb-md-9{padding-bottom:5rem !important}.pb-md-10{padding-bottom:6rem !important}.pb-md-1px{padding-bottom:1px !important}.pb-md-gutter{padding-bottom:1rem !important}.ps-md-0{padding-left:0 !important}.ps-md-1{padding-left:.25rem !important}.ps-md-2{padding-left:.5rem !important}.ps-md-3{padding-left:1rem !important}.ps-md-4{padding-left:1.5rem !important}.ps-md-5{padding-left:2rem !important}.ps-md-6{padding-left:2.5rem !important}.ps-md-7{padding-left:3rem !important}.ps-md-8{padding-left:4rem !important}.ps-md-9{padding-left:5rem !important}.ps-md-10{padding-left:6rem !important}.ps-md-1px{padding-left:1px !important}.ps-md-gutter{padding-left:1rem !important}.gap-md-0{gap:0 !important}.gap-md-1{gap:.25rem !important}.gap-md-2{gap:.5rem !important}.gap-md-3{gap:1rem !important}.gap-md-4{gap:1.5rem !important}.gap-md-5{gap:2rem !important}.gap-md-6{gap:2.5rem !important}.gap-md-7{gap:3rem !important}.gap-md-8{gap:4rem !important}.gap-md-9{gap:5rem !important}.gap-md-10{gap:6rem !important}.gap-md-1px{gap:1px !important}.gap-md-gutter{gap:1rem !important}.row-gap-md-0{row-gap:0 !important}.row-gap-md-1{row-gap:.25rem !important}.row-gap-md-2{row-gap:.5rem !important}.row-gap-md-3{row-gap:1rem !important}.row-gap-md-4{row-gap:1.5rem !important}.row-gap-md-5{row-gap:2rem !important}.row-gap-md-6{row-gap:2.5rem !important}.row-gap-md-7{row-gap:3rem !important}.row-gap-md-8{row-gap:4rem !important}.row-gap-md-9{row-gap:5rem !important}.row-gap-md-10{row-gap:6rem !important}.row-gap-md-1px{row-gap:1px !important}.row-gap-md-gutter{row-gap:1rem !important}.column-gap-md-0{-moz-column-gap:0 !important;column-gap:0 !important}.column-gap-md-1{-moz-column-gap:.25rem !important;column-gap:.25rem !important}.column-gap-md-2{-moz-column-gap:.5rem !important;column-gap:.5rem !important}.column-gap-md-3{-moz-column-gap:1rem !important;column-gap:1rem !important}.column-gap-md-4{-moz-column-gap:1.5rem !important;column-gap:1.5rem !important}.column-gap-md-5{-moz-column-gap:2rem !important;column-gap:2rem !important}.column-gap-md-6{-moz-column-gap:2.5rem !important;column-gap:2.5rem !important}.column-gap-md-7{-moz-column-gap:3rem !important;column-gap:3rem !important}.column-gap-md-8{-moz-column-gap:4rem !important;column-gap:4rem !important}.column-gap-md-9{-moz-column-gap:5rem !important;column-gap:5rem !important}.column-gap-md-10{-moz-column-gap:6rem !important;column-gap:6rem !important}.column-gap-md-1px{-moz-column-gap:1px !important;column-gap:1px !important}.column-gap-md-gutter{-moz-column-gap:1rem !important;column-gap:1rem !important}.text-md-start{text-align:left !important}.text-md-end{text-align:right !important}.text-md-center{text-align:center !important}}@media(min-width: 992px){.float-lg-start{float:left !important}.float-lg-end{float:right !important}.float-lg-none{float:none !important}.object-fit-lg-contain{-o-object-fit:contain !important;object-fit:contain !important}.object-fit-lg-cover{-o-object-fit:cover !important;object-fit:cover !important}.object-fit-lg-fill{-o-object-fit:fill !important;object-fit:fill !important}.object-fit-lg-scale{-o-object-fit:scale-down !important;object-fit:scale-down !important}.object-fit-lg-none{-o-object-fit:none !important;object-fit:none !important}.d-lg-inline{display:inline !important}.d-lg-inline-block{display:inline-block !important}.d-lg-block{display:block !important}.d-lg-grid{display:grid !important}.d-lg-inline-grid{display:inline-grid !important}.d-lg-table{display:table !important}.d-lg-table-row{display:table-row !important}.d-lg-table-cell{display:table-cell !important}.d-lg-flex{display:flex !important}.d-lg-inline-flex{display:inline-flex !important}.d-lg-none{display:none !important}.flex-lg-fill{flex:1 1 auto !important}.flex-lg-row{flex-direction:row !important}.flex-lg-column{flex-direction:column !important}.flex-lg-row-reverse{flex-direction:row-reverse !important}.flex-lg-column-reverse{flex-direction:column-reverse !important}.flex-lg-grow-0{flex-grow:0 !important}.flex-lg-grow-1{flex-grow:1 !important}.flex-lg-shrink-0{flex-shrink:0 !important}.flex-lg-shrink-1{flex-shrink:1 !important}.flex-lg-wrap{flex-wrap:wrap !important}.flex-lg-nowrap{flex-wrap:nowrap !important}.flex-lg-wrap-reverse{flex-wrap:wrap-reverse !important}.justify-content-lg-start{justify-content:flex-start !important}.justify-content-lg-end{justify-content:flex-end !important}.justify-content-lg-center{justify-content:center !important}.justify-content-lg-between{justify-content:space-between !important}.justify-content-lg-around{justify-content:space-around !important}.justify-content-lg-evenly{justify-content:space-evenly !important}.align-items-lg-start{align-items:flex-start !important}.align-items-lg-end{align-items:flex-end !important}.align-items-lg-center{align-items:center !important}.align-items-lg-baseline{align-items:baseline !important}.align-items-lg-stretch{align-items:stretch !important}.align-content-lg-start{align-content:flex-start !important}.align-content-lg-end{align-content:flex-end !important}.align-content-lg-center{align-content:center !important}.align-content-lg-between{align-content:space-between !important}.align-content-lg-around{align-content:space-around !important}.align-content-lg-stretch{align-content:stretch !important}.align-self-lg-auto{align-self:auto !important}.align-self-lg-start{align-self:flex-start !important}.align-self-lg-end{align-self:flex-end !important}.align-self-lg-center{align-self:center !important}.align-self-lg-baseline{align-self:baseline !important}.align-self-lg-stretch{align-self:stretch !important}.order-lg-first{order:-1 !important}.order-lg-0{order:0 !important}.order-lg-1{order:1 !important}.order-lg-2{order:2 !important}.order-lg-3{order:3 !important}.order-lg-4{order:4 !important}.order-lg-5{order:5 !important}.order-lg-last{order:6 !important}.m-lg-0{margin:0 !important}.m-lg-1{margin:.25rem !important}.m-lg-2{margin:.5rem !important}.m-lg-3{margin:1rem !important}.m-lg-4{margin:1.5rem !important}.m-lg-5{margin:2rem !important}.m-lg-6{margin:2.5rem !important}.m-lg-7{margin:3rem !important}.m-lg-8{margin:4rem !important}.m-lg-9{margin:5rem !important}.m-lg-10{margin:6rem !important}.m-lg-1px{margin:1px !important}.m-lg-gutter{margin:1rem !important}.m-lg-auto{margin:auto !important}.mx-lg-0{margin-right:0 !important;margin-left:0 !important}.mx-lg-1{margin-right:.25rem !important;margin-left:.25rem !important}.mx-lg-2{margin-right:.5rem !important;margin-left:.5rem !important}.mx-lg-3{margin-right:1rem !important;margin-left:1rem !important}.mx-lg-4{margin-right:1.5rem !important;margin-left:1.5rem !important}.mx-lg-5{margin-right:2rem !important;margin-left:2rem !important}.mx-lg-6{margin-right:2.5rem !important;margin-left:2.5rem !important}.mx-lg-7{margin-right:3rem !important;margin-left:3rem !important}.mx-lg-8{margin-right:4rem !important;margin-left:4rem !important}.mx-lg-9{margin-right:5rem !important;margin-left:5rem !important}.mx-lg-10{margin-right:6rem !important;margin-left:6rem !important}.mx-lg-1px{margin-right:1px !important;margin-left:1px !important}.mx-lg-gutter{margin-right:1rem !important;margin-left:1rem !important}.mx-lg-auto{margin-right:auto !important;margin-left:auto !important}.my-lg-0{margin-top:0 !important;margin-bottom:0 !important}.my-lg-1{margin-top:.25rem !important;margin-bottom:.25rem !important}.my-lg-2{margin-top:.5rem !important;margin-bottom:.5rem !important}.my-lg-3{margin-top:1rem !important;margin-bottom:1rem !important}.my-lg-4{margin-top:1.5rem !important;margin-bottom:1.5rem !important}.my-lg-5{margin-top:2rem !important;margin-bottom:2rem !important}.my-lg-6{margin-top:2.5rem !important;margin-bottom:2.5rem !important}.my-lg-7{margin-top:3rem !important;margin-bottom:3rem !important}.my-lg-8{margin-top:4rem !important;margin-bottom:4rem !important}.my-lg-9{margin-top:5rem !important;margin-bottom:5rem !important}.my-lg-10{margin-top:6rem !important;margin-bottom:6rem !important}.my-lg-1px{margin-top:1px !important;margin-bottom:1px !important}.my-lg-gutter{margin-top:1rem !important;margin-bottom:1rem !important}.my-lg-auto{margin-top:auto !important;margin-bottom:auto !important}.mt-lg-0{margin-top:0 !important}.mt-lg-1{margin-top:.25rem !important}.mt-lg-2{margin-top:.5rem !important}.mt-lg-3{margin-top:1rem !important}.mt-lg-4{margin-top:1.5rem !important}.mt-lg-5{margin-top:2rem !important}.mt-lg-6{margin-top:2.5rem !important}.mt-lg-7{margin-top:3rem !important}.mt-lg-8{margin-top:4rem !important}.mt-lg-9{margin-top:5rem !important}.mt-lg-10{margin-top:6rem !important}.mt-lg-1px{margin-top:1px !important}.mt-lg-gutter{margin-top:1rem !important}.mt-lg-auto{margin-top:auto !important}.me-lg-0{margin-right:0 !important}.me-lg-1{margin-right:.25rem !important}.me-lg-2{margin-right:.5rem !important}.me-lg-3{margin-right:1rem !important}.me-lg-4{margin-right:1.5rem !important}.me-lg-5{margin-right:2rem !important}.me-lg-6{margin-right:2.5rem !important}.me-lg-7{margin-right:3rem !important}.me-lg-8{margin-right:4rem !important}.me-lg-9{margin-right:5rem !important}.me-lg-10{margin-right:6rem !important}.me-lg-1px{margin-right:1px !important}.me-lg-gutter{margin-right:1rem !important}.me-lg-auto{margin-right:auto !important}.mb-lg-0{margin-bottom:0 !important}.mb-lg-1{margin-bottom:.25rem !important}.mb-lg-2{margin-bottom:.5rem !important}.mb-lg-3{margin-bottom:1rem !important}.mb-lg-4{margin-bottom:1.5rem !important}.mb-lg-5{margin-bottom:2rem !important}.mb-lg-6{margin-bottom:2.5rem !important}.mb-lg-7{margin-bottom:3rem !important}.mb-lg-8{margin-bottom:4rem !important}.mb-lg-9{margin-bottom:5rem !important}.mb-lg-10{margin-bottom:6rem !important}.mb-lg-1px{margin-bottom:1px !important}.mb-lg-gutter{margin-bottom:1rem !important}.mb-lg-auto{margin-bottom:auto !important}.ms-lg-0{margin-left:0 !important}.ms-lg-1{margin-left:.25rem !important}.ms-lg-2{margin-left:.5rem !important}.ms-lg-3{margin-left:1rem !important}.ms-lg-4{margin-left:1.5rem !important}.ms-lg-5{margin-left:2rem !important}.ms-lg-6{margin-left:2.5rem !important}.ms-lg-7{margin-left:3rem !important}.ms-lg-8{margin-left:4rem !important}.ms-lg-9{margin-left:5rem !important}.ms-lg-10{margin-left:6rem !important}.ms-lg-1px{margin-left:1px !important}.ms-lg-gutter{margin-left:1rem !important}.ms-lg-auto{margin-left:auto !important}.m-lg-n1{margin:-0.25rem !important}.m-lg-n2{margin:-0.5rem !important}.m-lg-n3{margin:-1rem !important}.m-lg-n4{margin:-1.5rem !important}.m-lg-n5{margin:-2rem !important}.m-lg-n6{margin:-2.5rem !important}.m-lg-n7{margin:-3rem !important}.m-lg-n8{margin:-4rem !important}.m-lg-n9{margin:-5rem !important}.m-lg-n10{margin:-6rem !important}.m-lg-n1px{margin:-1px !important}.m-lg-ngutter{margin:-1rem !important}.mx-lg-n1{margin-right:-0.25rem !important;margin-left:-0.25rem !important}.mx-lg-n2{margin-right:-0.5rem !important;margin-left:-0.5rem !important}.mx-lg-n3{margin-right:-1rem !important;margin-left:-1rem !important}.mx-lg-n4{margin-right:-1.5rem !important;margin-left:-1.5rem !important}.mx-lg-n5{margin-right:-2rem !important;margin-left:-2rem !important}.mx-lg-n6{margin-right:-2.5rem !important;margin-left:-2.5rem !important}.mx-lg-n7{margin-right:-3rem !important;margin-left:-3rem !important}.mx-lg-n8{margin-right:-4rem !important;margin-left:-4rem !important}.mx-lg-n9{margin-right:-5rem !important;margin-left:-5rem !important}.mx-lg-n10{margin-right:-6rem !important;margin-left:-6rem !important}.mx-lg-n1px{margin-right:-1px !important;margin-left:-1px !important}.mx-lg-ngutter{margin-right:-1rem !important;margin-left:-1rem !important}.my-lg-n1{margin-top:-0.25rem !important;margin-bottom:-0.25rem !important}.my-lg-n2{margin-top:-0.5rem !important;margin-bottom:-0.5rem !important}.my-lg-n3{margin-top:-1rem !important;margin-bottom:-1rem !important}.my-lg-n4{margin-top:-1.5rem !important;margin-bottom:-1.5rem !important}.my-lg-n5{margin-top:-2rem !important;margin-bottom:-2rem !important}.my-lg-n6{margin-top:-2.5rem !important;margin-bottom:-2.5rem !important}.my-lg-n7{margin-top:-3rem !important;margin-bottom:-3rem !important}.my-lg-n8{margin-top:-4rem !important;margin-bottom:-4rem !important}.my-lg-n9{margin-top:-5rem !important;margin-bottom:-5rem !important}.my-lg-n10{margin-top:-6rem !important;margin-bottom:-6rem !important}.my-lg-n1px{margin-top:-1px !important;margin-bottom:-1px !important}.my-lg-ngutter{margin-top:-1rem !important;margin-bottom:-1rem !important}.mt-lg-n1{margin-top:-0.25rem !important}.mt-lg-n2{margin-top:-0.5rem !important}.mt-lg-n3{margin-top:-1rem !important}.mt-lg-n4{margin-top:-1.5rem !important}.mt-lg-n5{margin-top:-2rem !important}.mt-lg-n6{margin-top:-2.5rem !important}.mt-lg-n7{margin-top:-3rem !important}.mt-lg-n8{margin-top:-4rem !important}.mt-lg-n9{margin-top:-5rem !important}.mt-lg-n10{margin-top:-6rem !important}.mt-lg-n1px{margin-top:-1px !important}.mt-lg-ngutter{margin-top:-1rem !important}.me-lg-n1{margin-right:-0.25rem !important}.me-lg-n2{margin-right:-0.5rem !important}.me-lg-n3{margin-right:-1rem !important}.me-lg-n4{margin-right:-1.5rem !important}.me-lg-n5{margin-right:-2rem !important}.me-lg-n6{margin-right:-2.5rem !important}.me-lg-n7{margin-right:-3rem !important}.me-lg-n8{margin-right:-4rem !important}.me-lg-n9{margin-right:-5rem !important}.me-lg-n10{margin-right:-6rem !important}.me-lg-n1px{margin-right:-1px !important}.me-lg-ngutter{margin-right:-1rem !important}.mb-lg-n1{margin-bottom:-0.25rem !important}.mb-lg-n2{margin-bottom:-0.5rem !important}.mb-lg-n3{margin-bottom:-1rem !important}.mb-lg-n4{margin-bottom:-1.5rem !important}.mb-lg-n5{margin-bottom:-2rem !important}.mb-lg-n6{margin-bottom:-2.5rem !important}.mb-lg-n7{margin-bottom:-3rem !important}.mb-lg-n8{margin-bottom:-4rem !important}.mb-lg-n9{margin-bottom:-5rem !important}.mb-lg-n10{margin-bottom:-6rem !important}.mb-lg-n1px{margin-bottom:-1px !important}.mb-lg-ngutter{margin-bottom:-1rem !important}.ms-lg-n1{margin-left:-0.25rem !important}.ms-lg-n2{margin-left:-0.5rem !important}.ms-lg-n3{margin-left:-1rem !important}.ms-lg-n4{margin-left:-1.5rem !important}.ms-lg-n5{margin-left:-2rem !important}.ms-lg-n6{margin-left:-2.5rem !important}.ms-lg-n7{margin-left:-3rem !important}.ms-lg-n8{margin-left:-4rem !important}.ms-lg-n9{margin-left:-5rem !important}.ms-lg-n10{margin-left:-6rem !important}.ms-lg-n1px{margin-left:-1px !important}.ms-lg-ngutter{margin-left:-1rem !important}.p-lg-0{padding:0 !important}.p-lg-1{padding:.25rem !important}.p-lg-2{padding:.5rem !important}.p-lg-3{padding:1rem !important}.p-lg-4{padding:1.5rem !important}.p-lg-5{padding:2rem !important}.p-lg-6{padding:2.5rem !important}.p-lg-7{padding:3rem !important}.p-lg-8{padding:4rem !important}.p-lg-9{padding:5rem !important}.p-lg-10{padding:6rem !important}.p-lg-1px{padding:1px !important}.p-lg-gutter{padding:1rem !important}.px-lg-0{padding-right:0 !important;padding-left:0 !important}.px-lg-1{padding-right:.25rem !important;padding-left:.25rem !important}.px-lg-2{padding-right:.5rem !important;padding-left:.5rem !important}.px-lg-3{padding-right:1rem !important;padding-left:1rem !important}.px-lg-4{padding-right:1.5rem !important;padding-left:1.5rem !important}.px-lg-5{padding-right:2rem !important;padding-left:2rem !important}.px-lg-6{padding-right:2.5rem !important;padding-left:2.5rem !important}.px-lg-7{padding-right:3rem !important;padding-left:3rem !important}.px-lg-8{padding-right:4rem !important;padding-left:4rem !important}.px-lg-9{padding-right:5rem !important;padding-left:5rem !important}.px-lg-10{padding-right:6rem !important;padding-left:6rem !important}.px-lg-1px{padding-right:1px !important;padding-left:1px !important}.px-lg-gutter{padding-right:1rem !important;padding-left:1rem !important}.py-lg-0{padding-top:0 !important;padding-bottom:0 !important}.py-lg-1{padding-top:.25rem !important;padding-bottom:.25rem !important}.py-lg-2{padding-top:.5rem !important;padding-bottom:.5rem !important}.py-lg-3{padding-top:1rem !important;padding-bottom:1rem !important}.py-lg-4{padding-top:1.5rem !important;padding-bottom:1.5rem !important}.py-lg-5{padding-top:2rem !important;padding-bottom:2rem !important}.py-lg-6{padding-top:2.5rem !important;padding-bottom:2.5rem !important}.py-lg-7{padding-top:3rem !important;padding-bottom:3rem !important}.py-lg-8{padding-top:4rem !important;padding-bottom:4rem !important}.py-lg-9{padding-top:5rem !important;padding-bottom:5rem !important}.py-lg-10{padding-top:6rem !important;padding-bottom:6rem !important}.py-lg-1px{padding-top:1px !important;padding-bottom:1px !important}.py-lg-gutter{padding-top:1rem !important;padding-bottom:1rem !important}.pt-lg-0{padding-top:0 !important}.pt-lg-1{padding-top:.25rem !important}.pt-lg-2{padding-top:.5rem !important}.pt-lg-3{padding-top:1rem !important}.pt-lg-4{padding-top:1.5rem !important}.pt-lg-5{padding-top:2rem !important}.pt-lg-6{padding-top:2.5rem !important}.pt-lg-7{padding-top:3rem !important}.pt-lg-8{padding-top:4rem !important}.pt-lg-9{padding-top:5rem !important}.pt-lg-10{padding-top:6rem !important}.pt-lg-1px{padding-top:1px !important}.pt-lg-gutter{padding-top:1rem !important}.pe-lg-0{padding-right:0 !important}.pe-lg-1{padding-right:.25rem !important}.pe-lg-2{padding-right:.5rem !important}.pe-lg-3{padding-right:1rem !important}.pe-lg-4{padding-right:1.5rem !important}.pe-lg-5{padding-right:2rem !important}.pe-lg-6{padding-right:2.5rem !important}.pe-lg-7{padding-right:3rem !important}.pe-lg-8{padding-right:4rem !important}.pe-lg-9{padding-right:5rem !important}.pe-lg-10{padding-right:6rem !important}.pe-lg-1px{padding-right:1px !important}.pe-lg-gutter{padding-right:1rem !important}.pb-lg-0{padding-bottom:0 !important}.pb-lg-1{padding-bottom:.25rem !important}.pb-lg-2{padding-bottom:.5rem !important}.pb-lg-3{padding-bottom:1rem !important}.pb-lg-4{padding-bottom:1.5rem !important}.pb-lg-5{padding-bottom:2rem !important}.pb-lg-6{padding-bottom:2.5rem !important}.pb-lg-7{padding-bottom:3rem !important}.pb-lg-8{padding-bottom:4rem !important}.pb-lg-9{padding-bottom:5rem !important}.pb-lg-10{padding-bottom:6rem !important}.pb-lg-1px{padding-bottom:1px !important}.pb-lg-gutter{padding-bottom:1rem !important}.ps-lg-0{padding-left:0 !important}.ps-lg-1{padding-left:.25rem !important}.ps-lg-2{padding-left:.5rem !important}.ps-lg-3{padding-left:1rem !important}.ps-lg-4{padding-left:1.5rem !important}.ps-lg-5{padding-left:2rem !important}.ps-lg-6{padding-left:2.5rem !important}.ps-lg-7{padding-left:3rem !important}.ps-lg-8{padding-left:4rem !important}.ps-lg-9{padding-left:5rem !important}.ps-lg-10{padding-left:6rem !important}.ps-lg-1px{padding-left:1px !important}.ps-lg-gutter{padding-left:1rem !important}.gap-lg-0{gap:0 !important}.gap-lg-1{gap:.25rem !important}.gap-lg-2{gap:.5rem !important}.gap-lg-3{gap:1rem !important}.gap-lg-4{gap:1.5rem !important}.gap-lg-5{gap:2rem !important}.gap-lg-6{gap:2.5rem !important}.gap-lg-7{gap:3rem !important}.gap-lg-8{gap:4rem !important}.gap-lg-9{gap:5rem !important}.gap-lg-10{gap:6rem !important}.gap-lg-1px{gap:1px !important}.gap-lg-gutter{gap:1rem !important}.row-gap-lg-0{row-gap:0 !important}.row-gap-lg-1{row-gap:.25rem !important}.row-gap-lg-2{row-gap:.5rem !important}.row-gap-lg-3{row-gap:1rem !important}.row-gap-lg-4{row-gap:1.5rem !important}.row-gap-lg-5{row-gap:2rem !important}.row-gap-lg-6{row-gap:2.5rem !important}.row-gap-lg-7{row-gap:3rem !important}.row-gap-lg-8{row-gap:4rem !important}.row-gap-lg-9{row-gap:5rem !important}.row-gap-lg-10{row-gap:6rem !important}.row-gap-lg-1px{row-gap:1px !important}.row-gap-lg-gutter{row-gap:1rem !important}.column-gap-lg-0{-moz-column-gap:0 !important;column-gap:0 !important}.column-gap-lg-1{-moz-column-gap:.25rem !important;column-gap:.25rem !important}.column-gap-lg-2{-moz-column-gap:.5rem !important;column-gap:.5rem !important}.column-gap-lg-3{-moz-column-gap:1rem !important;column-gap:1rem !important}.column-gap-lg-4{-moz-column-gap:1.5rem !important;column-gap:1.5rem !important}.column-gap-lg-5{-moz-column-gap:2rem !important;column-gap:2rem !important}.column-gap-lg-6{-moz-column-gap:2.5rem !important;column-gap:2.5rem !important}.column-gap-lg-7{-moz-column-gap:3rem !important;column-gap:3rem !important}.column-gap-lg-8{-moz-column-gap:4rem !important;column-gap:4rem !important}.column-gap-lg-9{-moz-column-gap:5rem !important;column-gap:5rem !important}.column-gap-lg-10{-moz-column-gap:6rem !important;column-gap:6rem !important}.column-gap-lg-1px{-moz-column-gap:1px !important;column-gap:1px !important}.column-gap-lg-gutter{-moz-column-gap:1rem !important;column-gap:1rem !important}.text-lg-start{text-align:left !important}.text-lg-end{text-align:right !important}.text-lg-center{text-align:center !important}}@media(min-width: 1200px){.float-xl-start{float:left !important}.float-xl-end{float:right !important}.float-xl-none{float:none !important}.object-fit-xl-contain{-o-object-fit:contain !important;object-fit:contain !important}.object-fit-xl-cover{-o-object-fit:cover !important;object-fit:cover !important}.object-fit-xl-fill{-o-object-fit:fill !important;object-fit:fill !important}.object-fit-xl-scale{-o-object-fit:scale-down !important;object-fit:scale-down !important}.object-fit-xl-none{-o-object-fit:none !important;object-fit:none !important}.d-xl-inline{display:inline !important}.d-xl-inline-block{display:inline-block !important}.d-xl-block{display:block !important}.d-xl-grid{display:grid !important}.d-xl-inline-grid{display:inline-grid !important}.d-xl-table{display:table !important}.d-xl-table-row{display:table-row !important}.d-xl-table-cell{display:table-cell !important}.d-xl-flex{display:flex !important}.d-xl-inline-flex{display:inline-flex !important}.d-xl-none{display:none !important}.flex-xl-fill{flex:1 1 auto !important}.flex-xl-row{flex-direction:row !important}.flex-xl-column{flex-direction:column !important}.flex-xl-row-reverse{flex-direction:row-reverse !important}.flex-xl-column-reverse{flex-direction:column-reverse !important}.flex-xl-grow-0{flex-grow:0 !important}.flex-xl-grow-1{flex-grow:1 !important}.flex-xl-shrink-0{flex-shrink:0 !important}.flex-xl-shrink-1{flex-shrink:1 !important}.flex-xl-wrap{flex-wrap:wrap !important}.flex-xl-nowrap{flex-wrap:nowrap !important}.flex-xl-wrap-reverse{flex-wrap:wrap-reverse !important}.justify-content-xl-start{justify-content:flex-start !important}.justify-content-xl-end{justify-content:flex-end !important}.justify-content-xl-center{justify-content:center !important}.justify-content-xl-between{justify-content:space-between !important}.justify-content-xl-around{justify-content:space-around !important}.justify-content-xl-evenly{justify-content:space-evenly !important}.align-items-xl-start{align-items:flex-start !important}.align-items-xl-end{align-items:flex-end !important}.align-items-xl-center{align-items:center !important}.align-items-xl-baseline{align-items:baseline !important}.align-items-xl-stretch{align-items:stretch !important}.align-content-xl-start{align-content:flex-start !important}.align-content-xl-end{align-content:flex-end !important}.align-content-xl-center{align-content:center !important}.align-content-xl-between{align-content:space-between !important}.align-content-xl-around{align-content:space-around !important}.align-content-xl-stretch{align-content:stretch !important}.align-self-xl-auto{align-self:auto !important}.align-self-xl-start{align-self:flex-start !important}.align-self-xl-end{align-self:flex-end !important}.align-self-xl-center{align-self:center !important}.align-self-xl-baseline{align-self:baseline !important}.align-self-xl-stretch{align-self:stretch !important}.order-xl-first{order:-1 !important}.order-xl-0{order:0 !important}.order-xl-1{order:1 !important}.order-xl-2{order:2 !important}.order-xl-3{order:3 !important}.order-xl-4{order:4 !important}.order-xl-5{order:5 !important}.order-xl-last{order:6 !important}.m-xl-0{margin:0 !important}.m-xl-1{margin:.25rem !important}.m-xl-2{margin:.5rem !important}.m-xl-3{margin:1rem !important}.m-xl-4{margin:1.5rem !important}.m-xl-5{margin:2rem !important}.m-xl-6{margin:2.5rem !important}.m-xl-7{margin:3rem !important}.m-xl-8{margin:4rem !important}.m-xl-9{margin:5rem !important}.m-xl-10{margin:6rem !important}.m-xl-1px{margin:1px !important}.m-xl-gutter{margin:1rem !important}.m-xl-auto{margin:auto !important}.mx-xl-0{margin-right:0 !important;margin-left:0 !important}.mx-xl-1{margin-right:.25rem !important;margin-left:.25rem !important}.mx-xl-2{margin-right:.5rem !important;margin-left:.5rem !important}.mx-xl-3{margin-right:1rem !important;margin-left:1rem !important}.mx-xl-4{margin-right:1.5rem !important;margin-left:1.5rem !important}.mx-xl-5{margin-right:2rem !important;margin-left:2rem !important}.mx-xl-6{margin-right:2.5rem !important;margin-left:2.5rem !important}.mx-xl-7{margin-right:3rem !important;margin-left:3rem !important}.mx-xl-8{margin-right:4rem !important;margin-left:4rem !important}.mx-xl-9{margin-right:5rem !important;margin-left:5rem !important}.mx-xl-10{margin-right:6rem !important;margin-left:6rem !important}.mx-xl-1px{margin-right:1px !important;margin-left:1px !important}.mx-xl-gutter{margin-right:1rem !important;margin-left:1rem !important}.mx-xl-auto{margin-right:auto !important;margin-left:auto !important}.my-xl-0{margin-top:0 !important;margin-bottom:0 !important}.my-xl-1{margin-top:.25rem !important;margin-bottom:.25rem !important}.my-xl-2{margin-top:.5rem !important;margin-bottom:.5rem !important}.my-xl-3{margin-top:1rem !important;margin-bottom:1rem !important}.my-xl-4{margin-top:1.5rem !important;margin-bottom:1.5rem !important}.my-xl-5{margin-top:2rem !important;margin-bottom:2rem !important}.my-xl-6{margin-top:2.5rem !important;margin-bottom:2.5rem !important}.my-xl-7{margin-top:3rem !important;margin-bottom:3rem !important}.my-xl-8{margin-top:4rem !important;margin-bottom:4rem !important}.my-xl-9{margin-top:5rem !important;margin-bottom:5rem !important}.my-xl-10{margin-top:6rem !important;margin-bottom:6rem !important}.my-xl-1px{margin-top:1px !important;margin-bottom:1px !important}.my-xl-gutter{margin-top:1rem !important;margin-bottom:1rem !important}.my-xl-auto{margin-top:auto !important;margin-bottom:auto !important}.mt-xl-0{margin-top:0 !important}.mt-xl-1{margin-top:.25rem !important}.mt-xl-2{margin-top:.5rem !important}.mt-xl-3{margin-top:1rem !important}.mt-xl-4{margin-top:1.5rem !important}.mt-xl-5{margin-top:2rem !important}.mt-xl-6{margin-top:2.5rem !important}.mt-xl-7{margin-top:3rem !important}.mt-xl-8{margin-top:4rem !important}.mt-xl-9{margin-top:5rem !important}.mt-xl-10{margin-top:6rem !important}.mt-xl-1px{margin-top:1px !important}.mt-xl-gutter{margin-top:1rem !important}.mt-xl-auto{margin-top:auto !important}.me-xl-0{margin-right:0 !important}.me-xl-1{margin-right:.25rem !important}.me-xl-2{margin-right:.5rem !important}.me-xl-3{margin-right:1rem !important}.me-xl-4{margin-right:1.5rem !important}.me-xl-5{margin-right:2rem !important}.me-xl-6{margin-right:2.5rem !important}.me-xl-7{margin-right:3rem !important}.me-xl-8{margin-right:4rem !important}.me-xl-9{margin-right:5rem !important}.me-xl-10{margin-right:6rem !important}.me-xl-1px{margin-right:1px !important}.me-xl-gutter{margin-right:1rem !important}.me-xl-auto{margin-right:auto !important}.mb-xl-0{margin-bottom:0 !important}.mb-xl-1{margin-bottom:.25rem !important}.mb-xl-2{margin-bottom:.5rem !important}.mb-xl-3{margin-bottom:1rem !important}.mb-xl-4{margin-bottom:1.5rem !important}.mb-xl-5{margin-bottom:2rem !important}.mb-xl-6{margin-bottom:2.5rem !important}.mb-xl-7{margin-bottom:3rem !important}.mb-xl-8{margin-bottom:4rem !important}.mb-xl-9{margin-bottom:5rem !important}.mb-xl-10{margin-bottom:6rem !important}.mb-xl-1px{margin-bottom:1px !important}.mb-xl-gutter{margin-bottom:1rem !important}.mb-xl-auto{margin-bottom:auto !important}.ms-xl-0{margin-left:0 !important}.ms-xl-1{margin-left:.25rem !important}.ms-xl-2{margin-left:.5rem !important}.ms-xl-3{margin-left:1rem !important}.ms-xl-4{margin-left:1.5rem !important}.ms-xl-5{margin-left:2rem !important}.ms-xl-6{margin-left:2.5rem !important}.ms-xl-7{margin-left:3rem !important}.ms-xl-8{margin-left:4rem !important}.ms-xl-9{margin-left:5rem !important}.ms-xl-10{margin-left:6rem !important}.ms-xl-1px{margin-left:1px !important}.ms-xl-gutter{margin-left:1rem !important}.ms-xl-auto{margin-left:auto !important}.m-xl-n1{margin:-0.25rem !important}.m-xl-n2{margin:-0.5rem !important}.m-xl-n3{margin:-1rem !important}.m-xl-n4{margin:-1.5rem !important}.m-xl-n5{margin:-2rem !important}.m-xl-n6{margin:-2.5rem !important}.m-xl-n7{margin:-3rem !important}.m-xl-n8{margin:-4rem !important}.m-xl-n9{margin:-5rem !important}.m-xl-n10{margin:-6rem !important}.m-xl-n1px{margin:-1px !important}.m-xl-ngutter{margin:-1rem !important}.mx-xl-n1{margin-right:-0.25rem !important;margin-left:-0.25rem !important}.mx-xl-n2{margin-right:-0.5rem !important;margin-left:-0.5rem !important}.mx-xl-n3{margin-right:-1rem !important;margin-left:-1rem !important}.mx-xl-n4{margin-right:-1.5rem !important;margin-left:-1.5rem !important}.mx-xl-n5{margin-right:-2rem !important;margin-left:-2rem !important}.mx-xl-n6{margin-right:-2.5rem !important;margin-left:-2.5rem !important}.mx-xl-n7{margin-right:-3rem !important;margin-left:-3rem !important}.mx-xl-n8{margin-right:-4rem !important;margin-left:-4rem !important}.mx-xl-n9{margin-right:-5rem !important;margin-left:-5rem !important}.mx-xl-n10{margin-right:-6rem !important;margin-left:-6rem !important}.mx-xl-n1px{margin-right:-1px !important;margin-left:-1px !important}.mx-xl-ngutter{margin-right:-1rem !important;margin-left:-1rem !important}.my-xl-n1{margin-top:-0.25rem !important;margin-bottom:-0.25rem !important}.my-xl-n2{margin-top:-0.5rem !important;margin-bottom:-0.5rem !important}.my-xl-n3{margin-top:-1rem !important;margin-bottom:-1rem !important}.my-xl-n4{margin-top:-1.5rem !important;margin-bottom:-1.5rem !important}.my-xl-n5{margin-top:-2rem !important;margin-bottom:-2rem !important}.my-xl-n6{margin-top:-2.5rem !important;margin-bottom:-2.5rem !important}.my-xl-n7{margin-top:-3rem !important;margin-bottom:-3rem !important}.my-xl-n8{margin-top:-4rem !important;margin-bottom:-4rem !important}.my-xl-n9{margin-top:-5rem !important;margin-bottom:-5rem !important}.my-xl-n10{margin-top:-6rem !important;margin-bottom:-6rem !important}.my-xl-n1px{margin-top:-1px !important;margin-bottom:-1px !important}.my-xl-ngutter{margin-top:-1rem !important;margin-bottom:-1rem !important}.mt-xl-n1{margin-top:-0.25rem !important}.mt-xl-n2{margin-top:-0.5rem !important}.mt-xl-n3{margin-top:-1rem !important}.mt-xl-n4{margin-top:-1.5rem !important}.mt-xl-n5{margin-top:-2rem !important}.mt-xl-n6{margin-top:-2.5rem !important}.mt-xl-n7{margin-top:-3rem !important}.mt-xl-n8{margin-top:-4rem !important}.mt-xl-n9{margin-top:-5rem !important}.mt-xl-n10{margin-top:-6rem !important}.mt-xl-n1px{margin-top:-1px !important}.mt-xl-ngutter{margin-top:-1rem !important}.me-xl-n1{margin-right:-0.25rem !important}.me-xl-n2{margin-right:-0.5rem !important}.me-xl-n3{margin-right:-1rem !important}.me-xl-n4{margin-right:-1.5rem !important}.me-xl-n5{margin-right:-2rem !important}.me-xl-n6{margin-right:-2.5rem !important}.me-xl-n7{margin-right:-3rem !important}.me-xl-n8{margin-right:-4rem !important}.me-xl-n9{margin-right:-5rem !important}.me-xl-n10{margin-right:-6rem !important}.me-xl-n1px{margin-right:-1px !important}.me-xl-ngutter{margin-right:-1rem !important}.mb-xl-n1{margin-bottom:-0.25rem !important}.mb-xl-n2{margin-bottom:-0.5rem !important}.mb-xl-n3{margin-bottom:-1rem !important}.mb-xl-n4{margin-bottom:-1.5rem !important}.mb-xl-n5{margin-bottom:-2rem !important}.mb-xl-n6{margin-bottom:-2.5rem !important}.mb-xl-n7{margin-bottom:-3rem !important}.mb-xl-n8{margin-bottom:-4rem !important}.mb-xl-n9{margin-bottom:-5rem !important}.mb-xl-n10{margin-bottom:-6rem !important}.mb-xl-n1px{margin-bottom:-1px !important}.mb-xl-ngutter{margin-bottom:-1rem !important}.ms-xl-n1{margin-left:-0.25rem !important}.ms-xl-n2{margin-left:-0.5rem !important}.ms-xl-n3{margin-left:-1rem !important}.ms-xl-n4{margin-left:-1.5rem !important}.ms-xl-n5{margin-left:-2rem !important}.ms-xl-n6{margin-left:-2.5rem !important}.ms-xl-n7{margin-left:-3rem !important}.ms-xl-n8{margin-left:-4rem !important}.ms-xl-n9{margin-left:-5rem !important}.ms-xl-n10{margin-left:-6rem !important}.ms-xl-n1px{margin-left:-1px !important}.ms-xl-ngutter{margin-left:-1rem !important}.p-xl-0{padding:0 !important}.p-xl-1{padding:.25rem !important}.p-xl-2{padding:.5rem !important}.p-xl-3{padding:1rem !important}.p-xl-4{padding:1.5rem !important}.p-xl-5{padding:2rem !important}.p-xl-6{padding:2.5rem !important}.p-xl-7{padding:3rem !important}.p-xl-8{padding:4rem !important}.p-xl-9{padding:5rem !important}.p-xl-10{padding:6rem !important}.p-xl-1px{padding:1px !important}.p-xl-gutter{padding:1rem !important}.px-xl-0{padding-right:0 !important;padding-left:0 !important}.px-xl-1{padding-right:.25rem !important;padding-left:.25rem !important}.px-xl-2{padding-right:.5rem !important;padding-left:.5rem !important}.px-xl-3{padding-right:1rem !important;padding-left:1rem !important}.px-xl-4{padding-right:1.5rem !important;padding-left:1.5rem !important}.px-xl-5{padding-right:2rem !important;padding-left:2rem !important}.px-xl-6{padding-right:2.5rem !important;padding-left:2.5rem !important}.px-xl-7{padding-right:3rem !important;padding-left:3rem !important}.px-xl-8{padding-right:4rem !important;padding-left:4rem !important}.px-xl-9{padding-right:5rem !important;padding-left:5rem !important}.px-xl-10{padding-right:6rem !important;padding-left:6rem !important}.px-xl-1px{padding-right:1px !important;padding-left:1px !important}.px-xl-gutter{padding-right:1rem !important;padding-left:1rem !important}.py-xl-0{padding-top:0 !important;padding-bottom:0 !important}.py-xl-1{padding-top:.25rem !important;padding-bottom:.25rem !important}.py-xl-2{padding-top:.5rem !important;padding-bottom:.5rem !important}.py-xl-3{padding-top:1rem !important;padding-bottom:1rem !important}.py-xl-4{padding-top:1.5rem !important;padding-bottom:1.5rem !important}.py-xl-5{padding-top:2rem !important;padding-bottom:2rem !important}.py-xl-6{padding-top:2.5rem !important;padding-bottom:2.5rem !important}.py-xl-7{padding-top:3rem !important;padding-bottom:3rem !important}.py-xl-8{padding-top:4rem !important;padding-bottom:4rem !important}.py-xl-9{padding-top:5rem !important;padding-bottom:5rem !important}.py-xl-10{padding-top:6rem !important;padding-bottom:6rem !important}.py-xl-1px{padding-top:1px !important;padding-bottom:1px !important}.py-xl-gutter{padding-top:1rem !important;padding-bottom:1rem !important}.pt-xl-0{padding-top:0 !important}.pt-xl-1{padding-top:.25rem !important}.pt-xl-2{padding-top:.5rem !important}.pt-xl-3{padding-top:1rem !important}.pt-xl-4{padding-top:1.5rem !important}.pt-xl-5{padding-top:2rem !important}.pt-xl-6{padding-top:2.5rem !important}.pt-xl-7{padding-top:3rem !important}.pt-xl-8{padding-top:4rem !important}.pt-xl-9{padding-top:5rem !important}.pt-xl-10{padding-top:6rem !important}.pt-xl-1px{padding-top:1px !important}.pt-xl-gutter{padding-top:1rem !important}.pe-xl-0{padding-right:0 !important}.pe-xl-1{padding-right:.25rem !important}.pe-xl-2{padding-right:.5rem !important}.pe-xl-3{padding-right:1rem !important}.pe-xl-4{padding-right:1.5rem !important}.pe-xl-5{padding-right:2rem !important}.pe-xl-6{padding-right:2.5rem !important}.pe-xl-7{padding-right:3rem !important}.pe-xl-8{padding-right:4rem !important}.pe-xl-9{padding-right:5rem !important}.pe-xl-10{padding-right:6rem !important}.pe-xl-1px{padding-right:1px !important}.pe-xl-gutter{padding-right:1rem !important}.pb-xl-0{padding-bottom:0 !important}.pb-xl-1{padding-bottom:.25rem !important}.pb-xl-2{padding-bottom:.5rem !important}.pb-xl-3{padding-bottom:1rem !important}.pb-xl-4{padding-bottom:1.5rem !important}.pb-xl-5{padding-bottom:2rem !important}.pb-xl-6{padding-bottom:2.5rem !important}.pb-xl-7{padding-bottom:3rem !important}.pb-xl-8{padding-bottom:4rem !important}.pb-xl-9{padding-bottom:5rem !important}.pb-xl-10{padding-bottom:6rem !important}.pb-xl-1px{padding-bottom:1px !important}.pb-xl-gutter{padding-bottom:1rem !important}.ps-xl-0{padding-left:0 !important}.ps-xl-1{padding-left:.25rem !important}.ps-xl-2{padding-left:.5rem !important}.ps-xl-3{padding-left:1rem !important}.ps-xl-4{padding-left:1.5rem !important}.ps-xl-5{padding-left:2rem !important}.ps-xl-6{padding-left:2.5rem !important}.ps-xl-7{padding-left:3rem !important}.ps-xl-8{padding-left:4rem !important}.ps-xl-9{padding-left:5rem !important}.ps-xl-10{padding-left:6rem !important}.ps-xl-1px{padding-left:1px !important}.ps-xl-gutter{padding-left:1rem !important}.gap-xl-0{gap:0 !important}.gap-xl-1{gap:.25rem !important}.gap-xl-2{gap:.5rem !important}.gap-xl-3{gap:1rem !important}.gap-xl-4{gap:1.5rem !important}.gap-xl-5{gap:2rem !important}.gap-xl-6{gap:2.5rem !important}.gap-xl-7{gap:3rem !important}.gap-xl-8{gap:4rem !important}.gap-xl-9{gap:5rem !important}.gap-xl-10{gap:6rem !important}.gap-xl-1px{gap:1px !important}.gap-xl-gutter{gap:1rem !important}.row-gap-xl-0{row-gap:0 !important}.row-gap-xl-1{row-gap:.25rem !important}.row-gap-xl-2{row-gap:.5rem !important}.row-gap-xl-3{row-gap:1rem !important}.row-gap-xl-4{row-gap:1.5rem !important}.row-gap-xl-5{row-gap:2rem !important}.row-gap-xl-6{row-gap:2.5rem !important}.row-gap-xl-7{row-gap:3rem !important}.row-gap-xl-8{row-gap:4rem !important}.row-gap-xl-9{row-gap:5rem !important}.row-gap-xl-10{row-gap:6rem !important}.row-gap-xl-1px{row-gap:1px !important}.row-gap-xl-gutter{row-gap:1rem !important}.column-gap-xl-0{-moz-column-gap:0 !important;column-gap:0 !important}.column-gap-xl-1{-moz-column-gap:.25rem !important;column-gap:.25rem !important}.column-gap-xl-2{-moz-column-gap:.5rem !important;column-gap:.5rem !important}.column-gap-xl-3{-moz-column-gap:1rem !important;column-gap:1rem !important}.column-gap-xl-4{-moz-column-gap:1.5rem !important;column-gap:1.5rem !important}.column-gap-xl-5{-moz-column-gap:2rem !important;column-gap:2rem !important}.column-gap-xl-6{-moz-column-gap:2.5rem !important;column-gap:2.5rem !important}.column-gap-xl-7{-moz-column-gap:3rem !important;column-gap:3rem !important}.column-gap-xl-8{-moz-column-gap:4rem !important;column-gap:4rem !important}.column-gap-xl-9{-moz-column-gap:5rem !important;column-gap:5rem !important}.column-gap-xl-10{-moz-column-gap:6rem !important;column-gap:6rem !important}.column-gap-xl-1px{-moz-column-gap:1px !important;column-gap:1px !important}.column-gap-xl-gutter{-moz-column-gap:1rem !important;column-gap:1rem !important}.text-xl-start{text-align:left !important}.text-xl-end{text-align:right !important}.text-xl-center{text-align:center !important}}@media(min-width: 1400px){.float-xxl-start{float:left !important}.float-xxl-end{float:right !important}.float-xxl-none{float:none !important}.object-fit-xxl-contain{-o-object-fit:contain !important;object-fit:contain !important}.object-fit-xxl-cover{-o-object-fit:cover !important;object-fit:cover !important}.object-fit-xxl-fill{-o-object-fit:fill !important;object-fit:fill !important}.object-fit-xxl-scale{-o-object-fit:scale-down !important;object-fit:scale-down !important}.object-fit-xxl-none{-o-object-fit:none !important;object-fit:none !important}.d-xxl-inline{display:inline !important}.d-xxl-inline-block{display:inline-block !important}.d-xxl-block{display:block !important}.d-xxl-grid{display:grid !important}.d-xxl-inline-grid{display:inline-grid !important}.d-xxl-table{display:table !important}.d-xxl-table-row{display:table-row !important}.d-xxl-table-cell{display:table-cell !important}.d-xxl-flex{display:flex !important}.d-xxl-inline-flex{display:inline-flex !important}.d-xxl-none{display:none !important}.flex-xxl-fill{flex:1 1 auto !important}.flex-xxl-row{flex-direction:row !important}.flex-xxl-column{flex-direction:column !important}.flex-xxl-row-reverse{flex-direction:row-reverse !important}.flex-xxl-column-reverse{flex-direction:column-reverse !important}.flex-xxl-grow-0{flex-grow:0 !important}.flex-xxl-grow-1{flex-grow:1 !important}.flex-xxl-shrink-0{flex-shrink:0 !important}.flex-xxl-shrink-1{flex-shrink:1 !important}.flex-xxl-wrap{flex-wrap:wrap !important}.flex-xxl-nowrap{flex-wrap:nowrap !important}.flex-xxl-wrap-reverse{flex-wrap:wrap-reverse !important}.justify-content-xxl-start{justify-content:flex-start !important}.justify-content-xxl-end{justify-content:flex-end !important}.justify-content-xxl-center{justify-content:center !important}.justify-content-xxl-between{justify-content:space-between !important}.justify-content-xxl-around{justify-content:space-around !important}.justify-content-xxl-evenly{justify-content:space-evenly !important}.align-items-xxl-start{align-items:flex-start !important}.align-items-xxl-end{align-items:flex-end !important}.align-items-xxl-center{align-items:center !important}.align-items-xxl-baseline{align-items:baseline !important}.align-items-xxl-stretch{align-items:stretch !important}.align-content-xxl-start{align-content:flex-start !important}.align-content-xxl-end{align-content:flex-end !important}.align-content-xxl-center{align-content:center !important}.align-content-xxl-between{align-content:space-between !important}.align-content-xxl-around{align-content:space-around !important}.align-content-xxl-stretch{align-content:stretch !important}.align-self-xxl-auto{align-self:auto !important}.align-self-xxl-start{align-self:flex-start !important}.align-self-xxl-end{align-self:flex-end !important}.align-self-xxl-center{align-self:center !important}.align-self-xxl-baseline{align-self:baseline !important}.align-self-xxl-stretch{align-self:stretch !important}.order-xxl-first{order:-1 !important}.order-xxl-0{order:0 !important}.order-xxl-1{order:1 !important}.order-xxl-2{order:2 !important}.order-xxl-3{order:3 !important}.order-xxl-4{order:4 !important}.order-xxl-5{order:5 !important}.order-xxl-last{order:6 !important}.m-xxl-0{margin:0 !important}.m-xxl-1{margin:.25rem !important}.m-xxl-2{margin:.5rem !important}.m-xxl-3{margin:1rem !important}.m-xxl-4{margin:1.5rem !important}.m-xxl-5{margin:2rem !important}.m-xxl-6{margin:2.5rem !important}.m-xxl-7{margin:3rem !important}.m-xxl-8{margin:4rem !important}.m-xxl-9{margin:5rem !important}.m-xxl-10{margin:6rem !important}.m-xxl-1px{margin:1px !important}.m-xxl-gutter{margin:1rem !important}.m-xxl-auto{margin:auto !important}.mx-xxl-0{margin-right:0 !important;margin-left:0 !important}.mx-xxl-1{margin-right:.25rem !important;margin-left:.25rem !important}.mx-xxl-2{margin-right:.5rem !important;margin-left:.5rem !important}.mx-xxl-3{margin-right:1rem !important;margin-left:1rem !important}.mx-xxl-4{margin-right:1.5rem !important;margin-left:1.5rem !important}.mx-xxl-5{margin-right:2rem !important;margin-left:2rem !important}.mx-xxl-6{margin-right:2.5rem !important;margin-left:2.5rem !important}.mx-xxl-7{margin-right:3rem !important;margin-left:3rem !important}.mx-xxl-8{margin-right:4rem !important;margin-left:4rem !important}.mx-xxl-9{margin-right:5rem !important;margin-left:5rem !important}.mx-xxl-10{margin-right:6rem !important;margin-left:6rem !important}.mx-xxl-1px{margin-right:1px !important;margin-left:1px !important}.mx-xxl-gutter{margin-right:1rem !important;margin-left:1rem !important}.mx-xxl-auto{margin-right:auto !important;margin-left:auto !important}.my-xxl-0{margin-top:0 !important;margin-bottom:0 !important}.my-xxl-1{margin-top:.25rem !important;margin-bottom:.25rem !important}.my-xxl-2{margin-top:.5rem !important;margin-bottom:.5rem !important}.my-xxl-3{margin-top:1rem !important;margin-bottom:1rem !important}.my-xxl-4{margin-top:1.5rem !important;margin-bottom:1.5rem !important}.my-xxl-5{margin-top:2rem !important;margin-bottom:2rem !important}.my-xxl-6{margin-top:2.5rem !important;margin-bottom:2.5rem !important}.my-xxl-7{margin-top:3rem !important;margin-bottom:3rem !important}.my-xxl-8{margin-top:4rem !important;margin-bottom:4rem !important}.my-xxl-9{margin-top:5rem !important;margin-bottom:5rem !important}.my-xxl-10{margin-top:6rem !important;margin-bottom:6rem !important}.my-xxl-1px{margin-top:1px !important;margin-bottom:1px !important}.my-xxl-gutter{margin-top:1rem !important;margin-bottom:1rem !important}.my-xxl-auto{margin-top:auto !important;margin-bottom:auto !important}.mt-xxl-0{margin-top:0 !important}.mt-xxl-1{margin-top:.25rem !important}.mt-xxl-2{margin-top:.5rem !important}.mt-xxl-3{margin-top:1rem !important}.mt-xxl-4{margin-top:1.5rem !important}.mt-xxl-5{margin-top:2rem !important}.mt-xxl-6{margin-top:2.5rem !important}.mt-xxl-7{margin-top:3rem !important}.mt-xxl-8{margin-top:4rem !important}.mt-xxl-9{margin-top:5rem !important}.mt-xxl-10{margin-top:6rem !important}.mt-xxl-1px{margin-top:1px !important}.mt-xxl-gutter{margin-top:1rem !important}.mt-xxl-auto{margin-top:auto !important}.me-xxl-0{margin-right:0 !important}.me-xxl-1{margin-right:.25rem !important}.me-xxl-2{margin-right:.5rem !important}.me-xxl-3{margin-right:1rem !important}.me-xxl-4{margin-right:1.5rem !important}.me-xxl-5{margin-right:2rem !important}.me-xxl-6{margin-right:2.5rem !important}.me-xxl-7{margin-right:3rem !important}.me-xxl-8{margin-right:4rem !important}.me-xxl-9{margin-right:5rem !important}.me-xxl-10{margin-right:6rem !important}.me-xxl-1px{margin-right:1px !important}.me-xxl-gutter{margin-right:1rem !important}.me-xxl-auto{margin-right:auto !important}.mb-xxl-0{margin-bottom:0 !important}.mb-xxl-1{margin-bottom:.25rem !important}.mb-xxl-2{margin-bottom:.5rem !important}.mb-xxl-3{margin-bottom:1rem !important}.mb-xxl-4{margin-bottom:1.5rem !important}.mb-xxl-5{margin-bottom:2rem !important}.mb-xxl-6{margin-bottom:2.5rem !important}.mb-xxl-7{margin-bottom:3rem !important}.mb-xxl-8{margin-bottom:4rem !important}.mb-xxl-9{margin-bottom:5rem !important}.mb-xxl-10{margin-bottom:6rem !important}.mb-xxl-1px{margin-bottom:1px !important}.mb-xxl-gutter{margin-bottom:1rem !important}.mb-xxl-auto{margin-bottom:auto !important}.ms-xxl-0{margin-left:0 !important}.ms-xxl-1{margin-left:.25rem !important}.ms-xxl-2{margin-left:.5rem !important}.ms-xxl-3{margin-left:1rem !important}.ms-xxl-4{margin-left:1.5rem !important}.ms-xxl-5{margin-left:2rem !important}.ms-xxl-6{margin-left:2.5rem !important}.ms-xxl-7{margin-left:3rem !important}.ms-xxl-8{margin-left:4rem !important}.ms-xxl-9{margin-left:5rem !important}.ms-xxl-10{margin-left:6rem !important}.ms-xxl-1px{margin-left:1px !important}.ms-xxl-gutter{margin-left:1rem !important}.ms-xxl-auto{margin-left:auto !important}.m-xxl-n1{margin:-0.25rem !important}.m-xxl-n2{margin:-0.5rem !important}.m-xxl-n3{margin:-1rem !important}.m-xxl-n4{margin:-1.5rem !important}.m-xxl-n5{margin:-2rem !important}.m-xxl-n6{margin:-2.5rem !important}.m-xxl-n7{margin:-3rem !important}.m-xxl-n8{margin:-4rem !important}.m-xxl-n9{margin:-5rem !important}.m-xxl-n10{margin:-6rem !important}.m-xxl-n1px{margin:-1px !important}.m-xxl-ngutter{margin:-1rem !important}.mx-xxl-n1{margin-right:-0.25rem !important;margin-left:-0.25rem !important}.mx-xxl-n2{margin-right:-0.5rem !important;margin-left:-0.5rem !important}.mx-xxl-n3{margin-right:-1rem !important;margin-left:-1rem !important}.mx-xxl-n4{margin-right:-1.5rem !important;margin-left:-1.5rem !important}.mx-xxl-n5{margin-right:-2rem !important;margin-left:-2rem !important}.mx-xxl-n6{margin-right:-2.5rem !important;margin-left:-2.5rem !important}.mx-xxl-n7{margin-right:-3rem !important;margin-left:-3rem !important}.mx-xxl-n8{margin-right:-4rem !important;margin-left:-4rem !important}.mx-xxl-n9{margin-right:-5rem !important;margin-left:-5rem !important}.mx-xxl-n10{margin-right:-6rem !important;margin-left:-6rem !important}.mx-xxl-n1px{margin-right:-1px !important;margin-left:-1px !important}.mx-xxl-ngutter{margin-right:-1rem !important;margin-left:-1rem !important}.my-xxl-n1{margin-top:-0.25rem !important;margin-bottom:-0.25rem !important}.my-xxl-n2{margin-top:-0.5rem !important;margin-bottom:-0.5rem !important}.my-xxl-n3{margin-top:-1rem !important;margin-bottom:-1rem !important}.my-xxl-n4{margin-top:-1.5rem !important;margin-bottom:-1.5rem !important}.my-xxl-n5{margin-top:-2rem !important;margin-bottom:-2rem !important}.my-xxl-n6{margin-top:-2.5rem !important;margin-bottom:-2.5rem !important}.my-xxl-n7{margin-top:-3rem !important;margin-bottom:-3rem !important}.my-xxl-n8{margin-top:-4rem !important;margin-bottom:-4rem !important}.my-xxl-n9{margin-top:-5rem !important;margin-bottom:-5rem !important}.my-xxl-n10{margin-top:-6rem !important;margin-bottom:-6rem !important}.my-xxl-n1px{margin-top:-1px !important;margin-bottom:-1px !important}.my-xxl-ngutter{margin-top:-1rem !important;margin-bottom:-1rem !important}.mt-xxl-n1{margin-top:-0.25rem !important}.mt-xxl-n2{margin-top:-0.5rem !important}.mt-xxl-n3{margin-top:-1rem !important}.mt-xxl-n4{margin-top:-1.5rem !important}.mt-xxl-n5{margin-top:-2rem !important}.mt-xxl-n6{margin-top:-2.5rem !important}.mt-xxl-n7{margin-top:-3rem !important}.mt-xxl-n8{margin-top:-4rem !important}.mt-xxl-n9{margin-top:-5rem !important}.mt-xxl-n10{margin-top:-6rem !important}.mt-xxl-n1px{margin-top:-1px !important}.mt-xxl-ngutter{margin-top:-1rem !important}.me-xxl-n1{margin-right:-0.25rem !important}.me-xxl-n2{margin-right:-0.5rem !important}.me-xxl-n3{margin-right:-1rem !important}.me-xxl-n4{margin-right:-1.5rem !important}.me-xxl-n5{margin-right:-2rem !important}.me-xxl-n6{margin-right:-2.5rem !important}.me-xxl-n7{margin-right:-3rem !important}.me-xxl-n8{margin-right:-4rem !important}.me-xxl-n9{margin-right:-5rem !important}.me-xxl-n10{margin-right:-6rem !important}.me-xxl-n1px{margin-right:-1px !important}.me-xxl-ngutter{margin-right:-1rem !important}.mb-xxl-n1{margin-bottom:-0.25rem !important}.mb-xxl-n2{margin-bottom:-0.5rem !important}.mb-xxl-n3{margin-bottom:-1rem !important}.mb-xxl-n4{margin-bottom:-1.5rem !important}.mb-xxl-n5{margin-bottom:-2rem !important}.mb-xxl-n6{margin-bottom:-2.5rem !important}.mb-xxl-n7{margin-bottom:-3rem !important}.mb-xxl-n8{margin-bottom:-4rem !important}.mb-xxl-n9{margin-bottom:-5rem !important}.mb-xxl-n10{margin-bottom:-6rem !important}.mb-xxl-n1px{margin-bottom:-1px !important}.mb-xxl-ngutter{margin-bottom:-1rem !important}.ms-xxl-n1{margin-left:-0.25rem !important}.ms-xxl-n2{margin-left:-0.5rem !important}.ms-xxl-n3{margin-left:-1rem !important}.ms-xxl-n4{margin-left:-1.5rem !important}.ms-xxl-n5{margin-left:-2rem !important}.ms-xxl-n6{margin-left:-2.5rem !important}.ms-xxl-n7{margin-left:-3rem !important}.ms-xxl-n8{margin-left:-4rem !important}.ms-xxl-n9{margin-left:-5rem !important}.ms-xxl-n10{margin-left:-6rem !important}.ms-xxl-n1px{margin-left:-1px !important}.ms-xxl-ngutter{margin-left:-1rem !important}.p-xxl-0{padding:0 !important}.p-xxl-1{padding:.25rem !important}.p-xxl-2{padding:.5rem !important}.p-xxl-3{padding:1rem !important}.p-xxl-4{padding:1.5rem !important}.p-xxl-5{padding:2rem !important}.p-xxl-6{padding:2.5rem !important}.p-xxl-7{padding:3rem !important}.p-xxl-8{padding:4rem !important}.p-xxl-9{padding:5rem !important}.p-xxl-10{padding:6rem !important}.p-xxl-1px{padding:1px !important}.p-xxl-gutter{padding:1rem !important}.px-xxl-0{padding-right:0 !important;padding-left:0 !important}.px-xxl-1{padding-right:.25rem !important;padding-left:.25rem !important}.px-xxl-2{padding-right:.5rem !important;padding-left:.5rem !important}.px-xxl-3{padding-right:1rem !important;padding-left:1rem !important}.px-xxl-4{padding-right:1.5rem !important;padding-left:1.5rem !important}.px-xxl-5{padding-right:2rem !important;padding-left:2rem !important}.px-xxl-6{padding-right:2.5rem !important;padding-left:2.5rem !important}.px-xxl-7{padding-right:3rem !important;padding-left:3rem !important}.px-xxl-8{padding-right:4rem !important;padding-left:4rem !important}.px-xxl-9{padding-right:5rem !important;padding-left:5rem !important}.px-xxl-10{padding-right:6rem !important;padding-left:6rem !important}.px-xxl-1px{padding-right:1px !important;padding-left:1px !important}.px-xxl-gutter{padding-right:1rem !important;padding-left:1rem !important}.py-xxl-0{padding-top:0 !important;padding-bottom:0 !important}.py-xxl-1{padding-top:.25rem !important;padding-bottom:.25rem !important}.py-xxl-2{padding-top:.5rem !important;padding-bottom:.5rem !important}.py-xxl-3{padding-top:1rem !important;padding-bottom:1rem !important}.py-xxl-4{padding-top:1.5rem !important;padding-bottom:1.5rem !important}.py-xxl-5{padding-top:2rem !important;padding-bottom:2rem !important}.py-xxl-6{padding-top:2.5rem !important;padding-bottom:2.5rem !important}.py-xxl-7{padding-top:3rem !important;padding-bottom:3rem !important}.py-xxl-8{padding-top:4rem !important;padding-bottom:4rem !important}.py-xxl-9{padding-top:5rem !important;padding-bottom:5rem !important}.py-xxl-10{padding-top:6rem !important;padding-bottom:6rem !important}.py-xxl-1px{padding-top:1px !important;padding-bottom:1px !important}.py-xxl-gutter{padding-top:1rem !important;padding-bottom:1rem !important}.pt-xxl-0{padding-top:0 !important}.pt-xxl-1{padding-top:.25rem !important}.pt-xxl-2{padding-top:.5rem !important}.pt-xxl-3{padding-top:1rem !important}.pt-xxl-4{padding-top:1.5rem !important}.pt-xxl-5{padding-top:2rem !important}.pt-xxl-6{padding-top:2.5rem !important}.pt-xxl-7{padding-top:3rem !important}.pt-xxl-8{padding-top:4rem !important}.pt-xxl-9{padding-top:5rem !important}.pt-xxl-10{padding-top:6rem !important}.pt-xxl-1px{padding-top:1px !important}.pt-xxl-gutter{padding-top:1rem !important}.pe-xxl-0{padding-right:0 !important}.pe-xxl-1{padding-right:.25rem !important}.pe-xxl-2{padding-right:.5rem !important}.pe-xxl-3{padding-right:1rem !important}.pe-xxl-4{padding-right:1.5rem !important}.pe-xxl-5{padding-right:2rem !important}.pe-xxl-6{padding-right:2.5rem !important}.pe-xxl-7{padding-right:3rem !important}.pe-xxl-8{padding-right:4rem !important}.pe-xxl-9{padding-right:5rem !important}.pe-xxl-10{padding-right:6rem !important}.pe-xxl-1px{padding-right:1px !important}.pe-xxl-gutter{padding-right:1rem !important}.pb-xxl-0{padding-bottom:0 !important}.pb-xxl-1{padding-bottom:.25rem !important}.pb-xxl-2{padding-bottom:.5rem !important}.pb-xxl-3{padding-bottom:1rem !important}.pb-xxl-4{padding-bottom:1.5rem !important}.pb-xxl-5{padding-bottom:2rem !important}.pb-xxl-6{padding-bottom:2.5rem !important}.pb-xxl-7{padding-bottom:3rem !important}.pb-xxl-8{padding-bottom:4rem !important}.pb-xxl-9{padding-bottom:5rem !important}.pb-xxl-10{padding-bottom:6rem !important}.pb-xxl-1px{padding-bottom:1px !important}.pb-xxl-gutter{padding-bottom:1rem !important}.ps-xxl-0{padding-left:0 !important}.ps-xxl-1{padding-left:.25rem !important}.ps-xxl-2{padding-left:.5rem !important}.ps-xxl-3{padding-left:1rem !important}.ps-xxl-4{padding-left:1.5rem !important}.ps-xxl-5{padding-left:2rem !important}.ps-xxl-6{padding-left:2.5rem !important}.ps-xxl-7{padding-left:3rem !important}.ps-xxl-8{padding-left:4rem !important}.ps-xxl-9{padding-left:5rem !important}.ps-xxl-10{padding-left:6rem !important}.ps-xxl-1px{padding-left:1px !important}.ps-xxl-gutter{padding-left:1rem !important}.gap-xxl-0{gap:0 !important}.gap-xxl-1{gap:.25rem !important}.gap-xxl-2{gap:.5rem !important}.gap-xxl-3{gap:1rem !important}.gap-xxl-4{gap:1.5rem !important}.gap-xxl-5{gap:2rem !important}.gap-xxl-6{gap:2.5rem !important}.gap-xxl-7{gap:3rem !important}.gap-xxl-8{gap:4rem !important}.gap-xxl-9{gap:5rem !important}.gap-xxl-10{gap:6rem !important}.gap-xxl-1px{gap:1px !important}.gap-xxl-gutter{gap:1rem !important}.row-gap-xxl-0{row-gap:0 !important}.row-gap-xxl-1{row-gap:.25rem !important}.row-gap-xxl-2{row-gap:.5rem !important}.row-gap-xxl-3{row-gap:1rem !important}.row-gap-xxl-4{row-gap:1.5rem !important}.row-gap-xxl-5{row-gap:2rem !important}.row-gap-xxl-6{row-gap:2.5rem !important}.row-gap-xxl-7{row-gap:3rem !important}.row-gap-xxl-8{row-gap:4rem !important}.row-gap-xxl-9{row-gap:5rem !important}.row-gap-xxl-10{row-gap:6rem !important}.row-gap-xxl-1px{row-gap:1px !important}.row-gap-xxl-gutter{row-gap:1rem !important}.column-gap-xxl-0{-moz-column-gap:0 !important;column-gap:0 !important}.column-gap-xxl-1{-moz-column-gap:.25rem !important;column-gap:.25rem !important}.column-gap-xxl-2{-moz-column-gap:.5rem !important;column-gap:.5rem !important}.column-gap-xxl-3{-moz-column-gap:1rem !important;column-gap:1rem !important}.column-gap-xxl-4{-moz-column-gap:1.5rem !important;column-gap:1.5rem !important}.column-gap-xxl-5{-moz-column-gap:2rem !important;column-gap:2rem !important}.column-gap-xxl-6{-moz-column-gap:2.5rem !important;column-gap:2.5rem !important}.column-gap-xxl-7{-moz-column-gap:3rem !important;column-gap:3rem !important}.column-gap-xxl-8{-moz-column-gap:4rem !important;column-gap:4rem !important}.column-gap-xxl-9{-moz-column-gap:5rem !important;column-gap:5rem !important}.column-gap-xxl-10{-moz-column-gap:6rem !important;column-gap:6rem !important}.column-gap-xxl-1px{-moz-column-gap:1px !important;column-gap:1px !important}.column-gap-xxl-gutter{-moz-column-gap:1rem !important;column-gap:1rem !important}.text-xxl-start{text-align:left !important}.text-xxl-end{text-align:right !important}.text-xxl-center{text-align:center !important}}@media print{.d-print-inline{display:inline !important}.d-print-inline-block{display:inline-block !important}.d-print-block{display:block !important}.d-print-grid{display:grid !important}.d-print-inline-grid{display:inline-grid !important}.d-print-table{display:table !important}.d-print-table-row{display:table-row !important}.d-print-table-cell{display:table-cell !important}.d-print-flex{display:flex !important}.d-print-inline-flex{display:inline-flex !important}.d-print-none{display:none !important}}.ce-column-xs{position:relative;flex-basis:0;flex-grow:1;max-width:100%;min-height:1px;padding-right:.5rem;padding-left:.5rem}.ce-column-xs-1{flex:0 0 auto;width:8.33333333%}.ce-column-xs-2{flex:0 0 auto;width:16.66666667%}.ce-column-xs-3{flex:0 0 auto;width:25%}.ce-column-xs-4{flex:0 0 auto;width:33.33333333%}.ce-column-xs-5{flex:0 0 auto;width:41.66666667%}.ce-column-xs-6{flex:0 0 auto;width:50%}.ce-column-xs-7{flex:0 0 auto;width:58.33333333%}.ce-column-xs-8{flex:0 0 auto;width:66.66666667%}.ce-column-xs-9{flex:0 0 auto;width:75%}.ce-column-xs-10{flex:0 0 auto;width:83.33333333%}.ce-column-xs-11{flex:0 0 auto;width:91.66666667%}.ce-column-xs-12{flex:0 0 auto;width:100%}@media(min-width: 576px){.ce-column-sm{position:relative;flex-basis:0;flex-grow:1;max-width:100%;min-height:1px;padding-right:.5rem;padding-left:.5rem}.ce-column-sm-1{flex:0 0 auto;width:8.33333333%}.ce-column-sm-2{flex:0 0 auto;width:16.66666667%}.ce-column-sm-3{flex:0 0 auto;width:25%}.ce-column-sm-4{flex:0 0 auto;width:33.33333333%}.ce-column-sm-5{flex:0 0 auto;width:41.66666667%}.ce-column-sm-6{flex:0 0 auto;width:50%}.ce-column-sm-7{flex:0 0 auto;width:58.33333333%}.ce-column-sm-8{flex:0 0 auto;width:66.66666667%}.ce-column-sm-9{flex:0 0 auto;width:75%}.ce-column-sm-10{flex:0 0 auto;width:83.33333333%}.ce-column-sm-11{flex:0 0 auto;width:91.66666667%}.ce-column-sm-12{flex:0 0 auto;width:100%}}@media(min-width: 768px){.ce-column-md{position:relative;flex-basis:0;flex-grow:1;max-width:100%;min-height:1px;padding-right:.5rem;padding-left:.5rem}.ce-column-md-1{flex:0 0 auto;width:8.33333333%}.ce-column-md-2{flex:0 0 auto;width:16.66666667%}.ce-column-md-3{flex:0 0 auto;width:25%}.ce-column-md-4{flex:0 0 auto;width:33.33333333%}.ce-column-md-5{flex:0 0 auto;width:41.66666667%}.ce-column-md-6{flex:0 0 auto;width:50%}.ce-column-md-7{flex:0 0 auto;width:58.33333333%}.ce-column-md-8{flex:0 0 auto;width:66.66666667%}.ce-column-md-9{flex:0 0 auto;width:75%}.ce-column-md-10{flex:0 0 auto;width:83.33333333%}.ce-column-md-11{flex:0 0 auto;width:91.66666667%}.ce-column-md-12{flex:0 0 auto;width:100%}}@media(min-width: 992px){.ce-column-lg{position:relative;flex-basis:0;flex-grow:1;max-width:100%;min-height:1px;padding-right:.5rem;padding-left:.5rem}.ce-column-lg-1{flex:0 0 auto;width:8.33333333%}.ce-column-lg-2{flex:0 0 auto;width:16.66666667%}.ce-column-lg-3{flex:0 0 auto;width:25%}.ce-column-lg-4{flex:0 0 auto;width:33.33333333%}.ce-column-lg-5{flex:0 0 auto;width:41.66666667%}.ce-column-lg-6{flex:0 0 auto;width:50%}.ce-column-lg-7{flex:0 0 auto;width:58.33333333%}.ce-column-lg-8{flex:0 0 auto;width:66.66666667%}.ce-column-lg-9{flex:0 0 auto;width:75%}.ce-column-lg-10{flex:0 0 auto;width:83.33333333%}.ce-column-lg-11{flex:0 0 auto;width:91.66666667%}.ce-column-lg-12{flex:0 0 auto;width:100%}}@media(min-width: 1200px)and (min-height: 810px){.ce-column-xl{position:relative;flex-basis:0;flex-grow:1;max-width:100%;min-height:1px;padding-right:.5rem;padding-left:.5rem}.ce-column-xl-1{flex:0 0 auto;width:8.33333333%}.ce-column-xl-2{flex:0 0 auto;width:16.66666667%}.ce-column-xl-3{flex:0 0 auto;width:25%}.ce-column-xl-4{flex:0 0 auto;width:33.33333333%}.ce-column-xl-5{flex:0 0 auto;width:41.66666667%}.ce-column-xl-6{flex:0 0 auto;width:50%}.ce-column-xl-7{flex:0 0 auto;width:58.33333333%}.ce-column-xl-8{flex:0 0 auto;width:66.66666667%}.ce-column-xl-9{flex:0 0 auto;width:75%}.ce-column-xl-10{flex:0 0 auto;width:83.33333333%}.ce-column-xl-11{flex:0 0 auto;width:91.66666667%}.ce-column-xl-12{flex:0 0 auto;width:100%}}@media(min-width: 1400px){.ce-column-xxl{position:relative;flex-basis:0;flex-grow:1;max-width:100%;min-height:1px;padding-right:.5rem;padding-left:.5rem}.ce-column-xxl-1{flex:0 0 auto;width:8.33333333%}.ce-column-xxl-2{flex:0 0 auto;width:16.66666667%}.ce-column-xxl-3{flex:0 0 auto;width:25%}.ce-column-xxl-4{flex:0 0 auto;width:33.33333333%}.ce-column-xxl-5{flex:0 0 auto;width:41.66666667%}.ce-column-xxl-6{flex:0 0 auto;width:50%}.ce-column-xxl-7{flex:0 0 auto;width:58.33333333%}.ce-column-xxl-8{flex:0 0 auto;width:66.66666667%}.ce-column-xxl-9{flex:0 0 auto;width:75%}.ce-column-xxl-10{flex:0 0 auto;width:83.33333333%}.ce-column-xxl-11{flex:0 0 auto;width:91.66666667%}.ce-column-xxl-12{flex:0 0 auto;width:100%}}.col-auto{flex:0 0 auto;width:auto;max-width:none;padding-right:.5rem;padding-left:.5rem}.reset-list-style{margin:0 0 0 0;padding:0;list-style:none}.reset-list-style li{margin:0;padding:0;list-style:none}.reset-list-style li:before{display:none;content:none}.bottom-xs-up{bottom:0;position:absolute;width:100%}.inline-xs-up{display:inline}.inline-xs-down{display:inline}@media(min-width: 576px){.bottom-sm-up{bottom:0;position:absolute;width:100%}}@media(min-width: 576px){.inline-sm-up{display:inline}}@media(max-width: 575.98px){.inline-sm-down{display:inline}}@media(min-width: 768px){.bottom-md-up{bottom:0;position:absolute;width:100%}}@media(min-width: 768px){.inline-md-up{display:inline}}@media(max-width: 767.98px){.inline-md-down{display:inline}}@media(min-width: 992px){.bottom-lg-up{bottom:0;position:absolute;width:100%}}@media(min-width: 992px){.inline-lg-up{display:inline}}@media(max-width: 991.98px){.inline-lg-down{display:inline}}@media(min-width: 1200px)and (min-height: 810px){.bottom-xl-up{bottom:0;position:absolute;width:100%}}@media(min-width: 1200px)and (min-height: 810px){.inline-xl-up{display:inline}}@media(max-width: 1199.98px){.inline-xl-down{display:inline}}@media(min-width: 1400px){.bottom-xxl-up{bottom:0;position:absolute;width:100%}}@media(min-width: 1400px){.inline-xxl-up{display:inline}}@media(max-width: 1399.98px){.inline-xxl-down{display:inline}}html,:root{overflow-x:hidden;font-size:16px;min-width:360px}@media(max-width: 1199.98px){html,:root{font-size:12.8px}}@media(min-width: 1400px){html,:root{font-size:18.4px}}body{min-width:360px;font-family:"Saans-Web",-apple-system,"Segoe UI",Roboto,"Helvetica Neue",sans-serif}picture{display:block}.hidden{display:none}@font-face{font-display:auto;font-family:"Saans-Web";font-weight:normal;font-style:normal;src:url(../Assets/SaansRegular.woff2) format("woff2"),url(../Assets/SaansRegular.woff) format("woff")}@font-face{font-display:auto;font-family:"Saans-Web";font-weight:bold;font-style:normal;src:url(../Assets/SaansSemiBold.woff2) format("woff2"),url(../Assets/SaansSemiBold.woff) format("woff")}@font-face{font-display:auto;font-family:"SaansSemiMono-Web";font-weight:normal;font-style:normal;src:url(../Assets/SaansSemiMonoRegular.woff2) format("woff2"),url(../Assets/SaansSemiMonoRegular.woff) format("woff")}@font-face{font-display:auto;font-family:"SaansSemiMono-Web";font-weight:bold;font-style:normal;src:url(../Assets/SaansSemiMonoSemiBold.woff2) format("woff2"),url(../Assets/SaansSemiMonoSemiBold.woff) format("woff")}.table *{background-color:rgba(0,0,0,0) !important}.table tr:last-child th,.table tr:last-child td{border-bottom:1px solid #232323}.text-subtitle{color:#64002d !important}[data-layout="1"] .text-subtitle,[data-layout="5"] .text-subtitle,[data-layout="9"] .text-subtitle,[data-layout="17"] .text-subtitle{color:#fff !important}[data-layout="1"] [data-layout]:not([data-layout="0"]):not([data-layout="1"]):not([data-layout="5"]):not([data-layout="9"]):not([data-layout="17"]) .text-subtitle,[data-layout="5"] [data-layout]:not([data-layout="0"]):not([data-layout="1"]):not([data-layout="5"]):not([data-layout="9"]):not([data-layout="17"]) .text-subtitle,[data-layout="9"] [data-layout]:not([data-layout="0"]):not([data-layout="1"]):not([data-layout="5"]):not([data-layout="9"]):not([data-layout="17"]) .text-subtitle,[data-layout="17"] [data-layout]:not([data-layout="0"]):not([data-layout="1"]):not([data-layout="5"]):not([data-layout="9"]):not([data-layout="17"]) .text-subtitle{color:#64002d !important}.small{letter-spacing:.2px}.font-body-large{font-size:1.4375rem !important}div.youtube-embed-wrapper{margin-bottom:1rem}.powermail-errors-list{list-style:none;padding-left:0;margin-top:.5rem}.powermail-errors-list li{background-color:#eb2800;padding:.25rem .5rem .25rem .5rem;border-radius:.5rem;color:#fff;display:inline-block}.ce-container ul:not(.reset-list-style):not(.pagination):not(.powermail-errors-list){padding-left:0;list-style:none}html[dir=rtl] .ce-container ul:not(.reset-list-style):not(.pagination):not(.powermail-errors-list){padding-right:0}.ce-container ul:not(.reset-list-style):not(.pagination):not(.powermail-errors-list) li{position:relative;padding-left:1.2777777778rem;margin-bottom:.25rem}html[dir=rtl] .ce-container ul:not(.reset-list-style):not(.pagination):not(.powermail-errors-list) li{padding-left:0;padding-right:1.2777777778rem}.ce-container ul:not(.reset-list-style):not(.pagination):not(.powermail-errors-list) li:before{display:inline-block;content:"";width:8px;height:5px;position:absolute;left:0;top:9px;background-color:currentColor;border-top-left-radius:.1111111111rem;border-bottom-right-radius:.1111111111rem;border-top-right-radius:.1111111111rem}html[dir=rtl] .ce-container ul:not(.reset-list-style):not(.pagination):not(.powermail-errors-list) li:before{left:auto;right:0}@media(min-width: 1200px)and (min-height: 810px){.ce-container ul:not(.reset-list-style):not(.pagination):not(.powermail-errors-list) li:before{width:.5555555556rem;height:.3888888889rem;top:.5555555556rem}}.ce-container ul:not(.reset-list-style):not(.pagination):not(.powermail-errors-list).small li{padding-left:1rem}.ce-container ul:not(.reset-list-style):not(.pagination):not(.powermail-errors-list).small li:before{top:.3333333333rem}@media(min-width: 1200px)and (min-height: 810px){.ce-container ul:not(.reset-list-style):not(.pagination):not(.powermail-errors-list).small li:before{top:.3333333333rem}}.ce-container ul.reset-list-style{margin:0 0 1rem}.ce-container ul.ce-menu{margin-left:-1.2777777778rem}.ce-container ul.ce-menu li:before{content:none !important}@media(min-width: 768px){.ce-container ul.col-two,.ce-container ul.col-three,.ce-container ul.col-four,.ce-container ol.col-two,.ce-container ol.col-three,.ce-container ol.col-four,.ce-container p.col-two,.ce-container p.col-three,.ce-container p.col-four,.ce-container div.col-two,.ce-container div.col-three,.ce-container div.col-four{-moz-column-count:2;column-count:2}}@media(min-width: 768px)and (min-width: 992px){.ce-container ul.col-three,.ce-container ol.col-three,.ce-container p.col-three,.ce-container div.col-three{-moz-column-count:3;column-count:3}}@media(min-width: 768px)and (min-width: 1200px)and (min-height: 810px){.ce-container ul.col-four,.ce-container ol.col-four,.ce-container p.col-four,.ce-container div.col-four{-moz-column-count:4;column-count:4}}.link-check{color:inherit;position:relative;cursor:pointer;display:block;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;line-height:1.6666666667rem}.link-check:hover{color:inherit}.link-check span{position:relative;padding-left:2.36111rem;color:inherit}.link-check:before{position:absolute;left:0;display:block;content:"";width:1.6rem;height:1.6rem;background-color:#ebebeb;background-repeat:no-repeat;background-position:center center;background-size:.7777777778rem .7777777778rem;border:1px solid #919191;border-top-left-radius:.1666666667rem;border-bottom-right-radius:.1666666667rem;border-top-right-radius:.1666666667rem;transition:background-image 200ms ease-in-out}.small .link-check{line-height:1.3333333333rem;height:1.3333333333rem}.small .link-check span{padding-left:1.8rem}.small .link-check:before{width:1.3333333333rem;height:1.3333333333rem;background-size:.6111111111rem .6111111111rem}.link-check:focus,.link-check:active,.link-check.current{color:inherit}.link-check:focus:before,.link-check:active:before,.link-check.current:before{background-image:url(../Assets/icon-cross.svg);background-image:url(data:image/svg+xml;base64,PHN2ZwogICAgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIgogICAgd2lkdGg9IjE0IgogICAgaGVpZ2h0PSIxNCIKICAgIHZpZXdCb3g9IjAgMCAxNCAxNCIKICAgID4KPHBhdGggZmlsbD0iI2I3YTM2NCIgZD0iTTE0LDEyLjZMOC40LDdMMTQsMS40TDEyLjYsMEw3LDUuNkwxLjQsMEwwLDEuNEw1LjYsN0wwLDEyLjZMMS40LDE0TDcsOC40bDUuNiw1LjZMMTQsMTIuNnoiLz4KPC9zdmc+)}[data-layout="1"] .link-check:before{background-color:#fff}[data-layout="2"] .link-check{color:#fff}[data-layout="2"] .link-check:before{background-color:rgb(97.2984293194,119.8272251309,247.2015706806);border-color:#fff}[data-layout="2"] .link-check:focus:before,[data-layout="2"] .link-check:active:before,[data-layout="2"] .link-check.current:before{background-image:url(data:image/svg+xml;base64,PHN2ZwogICAgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIgogICAgd2lkdGg9IjE0IgogICAgaGVpZ2h0PSIxNCIKICAgIHZpZXdCb3g9IjAgMCAxNCAxNCIKICAgID4KPHBhdGggZmlsbD0iI0ZGRkZGRiIgZD0iTTE0LDEyLjZMOC40LDdMMTQsMS40TDEyLjYsMEw3LDUuNkwxLjQsMEwwLDEuNEw1LjYsN0wwLDEyLjZMMS40LDE0TDcsOC40bDUuNiw1LjZMMTQsMTIuNnoiLz4KPC9zdmc+)}[data-layout="1"] .link-check span:before{background-color:#fff}[data-layout="1"] .link-check:focus span:before,[data-layout="1"] .link-check:active span:before,[data-layout="1"] .link-check.active span:before,[data-layout="1"] .link-check.current span:before{background-color:#fff}[data-layout="2"] .link-check{color:#fff}[data-layout="2"] .link-check span:before{background-color:rgb(97.2984293194,119.8272251309,247.2015706806);border-color:#fff}[data-layout="2"] .link-check:focus span:before,[data-layout="2"] .link-check:active span:before,[data-layout="2"] .link-check.active span:before,[data-layout="2"] .link-check.current span:before{background-image:url(data:image/svg+xml;base64,PHN2ZwogICAgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIgogICAgd2lkdGg9IjE0IgogICAgaGVpZ2h0PSIxNCIKICAgIHZpZXdCb3g9IjAgMCAxNCAxNCIKICAgID4KPHBhdGggZmlsbD0iI0ZGRkZGRiIgZD0iTTE0LDEyLjZMOC40LDdMMTQsMS40TDEyLjYsMEw3LDUuNkwxLjQsMEwwLDEuNEw1LjYsN0wwLDEyLjZMMS40LDE0TDcsOC40bDUuNiw1LjZMMTQsMTIuNnoiLz4KPC9zdmc+)}.m-b-p{margin-bottom:1rem !important}svg.icon{vertical-align:text-bottom}.icon{height:1.6666666667rem;width:1.6666666667rem}.icon.icon--vcard{width:2.5rem}a{color:#232323}a:hover,a.hover{color:#9e0047}a:active,a.active{color:#cf005d}a.btn:not(.btn-link){-webkit-text-decoration:none !important;text-decoration:none !important}.btn,.ff-form-overrides button,.ff-form-overrides input[type=button],.ff-form-overrides input[type=submit],.ff-form-overrides input[type=reset],.submit_button{display:inline-block;position:relative;padding:.75em 1em;font-size:1rem;font-weight:bold;font-family:"SaansSemiMono-Web",SFMono-Regular,Menlo,Monaco,"Liberation Mono",monospace;line-height:1.2em;color:#fff !important;text-align:center;-webkit-text-decoration:none;text-decoration:none;white-space:wrap;vertical-align:middle;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;user-select:none;border:none;border-radius:.5rem;transition:all .13s ease-in-out, scale .4s cubic-bezier(0.65, -0.6, 0.24, 1.65);background-color:rgba(0,0,0,0);color:#fff !important;z-index:0;overflow:hidden}.btn.small,.ff-form-overrides button.small,.ff-form-overrides input.small[type=button],.ff-form-overrides input.small[type=submit],.ff-form-overrides input.small[type=reset],.submit_button.small{font-size:.875rem}.btn:hover,.ff-form-overrides button:hover,.ff-form-overrides input[type=button]:hover,.ff-form-overrides input[type=submit]:hover,.ff-form-overrides input[type=reset]:hover,.btn.hover,.ff-form-overrides button.hover,.ff-form-overrides input.hover[type=button],.ff-form-overrides input.hover[type=submit],.ff-form-overrides input.hover[type=reset],.submit_button:hover,.submit_button.hover{color:#fff}.btn::before,.ff-form-overrides button::before,.ff-form-overrides input[type=button]::before,.ff-form-overrides input[type=submit]::before,.ff-form-overrides input[type=reset]::before,.submit_button::before{content:"";position:absolute;top:0;left:0;width:100%;height:100%;background-color:#4963f6;transition:transform .3s ease-in-out;transform:translateX(0);border-radius:.5rem;z-index:-1}.btn::after,.ff-form-overrides button::after,.ff-form-overrides input[type=button]::after,.ff-form-overrides input[type=submit]::after,.ff-form-overrides input[type=reset]::after,.submit_button::after{content:"";position:absolute;top:0;left:100%;width:100%;height:100%;background-color:#3a4ec2;transition:transform .3s ease-in-out;border-radius:.5rem;z-index:-1}.btn:hover::before,.ff-form-overrides button:hover::before,.ff-form-overrides input[type=button]:hover::before,.ff-form-overrides input[type=submit]:hover::before,.ff-form-overrides input[type=reset]:hover::before,.submit_button:hover::before{transform:translateX(-100%)}.btn:hover::after,.ff-form-overrides button:hover::after,.ff-form-overrides input[type=button]:hover::after,.ff-form-overrides input[type=submit]:hover::after,.ff-form-overrides input[type=reset]:hover::after,.submit_button:hover::after{transform:translateX(-100%)}.btn:active,.ff-form-overrides button:active,.ff-form-overrides input[type=button]:active,.ff-form-overrides input[type=submit]:active,.ff-form-overrides input[type=reset]:active,.btn.active,.ff-form-overrides button.active,.ff-form-overrides input.active[type=button],.ff-form-overrides input.active[type=submit],.ff-form-overrides input.active[type=reset],.submit_button:active,.submit_button.active{background-color:#2f3f9c;color:#fff}.btn:disabled,.ff-form-overrides button:disabled,.ff-form-overrides input[type=button]:disabled,.ff-form-overrides input[type=submit]:disabled,.ff-form-overrides input[type=reset]:disabled,.btn.disabled,.ff-form-overrides button.disabled,.ff-form-overrides input.disabled[type=button],.ff-form-overrides input.disabled[type=submit],.ff-form-overrides input.disabled[type=reset],fieldset:disabled .btn,fieldset:disabled .ff-form-overrides button,.ff-form-overrides fieldset:disabled button,fieldset:disabled .ff-form-overrides input[type=button],.ff-form-overrides fieldset:disabled input[type=button],fieldset:disabled .ff-form-overrides input[type=submit],.ff-form-overrides fieldset:disabled input[type=submit],fieldset:disabled .ff-form-overrides input[type=reset],.ff-form-overrides fieldset:disabled input[type=reset],.submit_button:disabled,.submit_button.disabled,fieldset:disabled .submit_button{background-color:#d3d3d3;color:#919191;cursor:not-allowed;pointer-events:none}.btn-secondary{color:#fff}.btn-secondary:hover,.btn-secondary.hover{background-color:#9e0047}.btn-secondary:active,.btn-secondary.active{background-color:#cf005d}.btn-secondary:disabled,.btn-secondary.disabled,fieldset:disabled .btn-secondary{background-color:#d3d3d3;color:#919191;cursor:not-allowed;pointer-events:none}.btn-secondary::before{background-color:#64002d}.btn-secondary::after{background-color:#9e0047}.btn-disabled{background-color:#d3d3d3;color:#919191 !important;cursor:not-allowed;pointer-events:none}.btn-disabled::before,.btn-disabled::after{display:none}.btn-link{-webkit-text-decoration:underline;text-decoration:underline;text-decoration-thickness:.15em;text-underline-offset:.25em;background-color:rgba(0,0,0,0) !important;box-shadow:none !important;color:#64002d !important}.btn-link:hover,.btn-link.hover{text-decoration-thickness:.15em;text-underline-offset:.25em;color:#9e0047 !important}.btn-link:active,.btn-link.active{text-decoration-thickness:.15em;text-underline-offset:.25em;background-color:#cf005d}.btn-link::before,.btn-link::after{display:none}.btn-filter{font-family:"Saans-Web",-apple-system,"Segoe UI",Roboto,"Helvetica Neue",sans-serif;border-radius:1.5rem;border:.1rem solid #232323;background-color:#fff;color:#232323 !important;padding:.25rem .7rem}.btn-filter:hover{background-color:#ebebeb}.btn-filter--current{background-color:#232323 !important;color:#fff !important}.btn-filter::before,.btn-filter::after{display:none}.btn-arrow svg{transition:scale .4s cubic-bezier(0.65, -0.6, 0.24, 1.65)}.btn-arrow:hover svg{scale:1.15;transition:scale .4s cubic-bezier(0.65, -0.6, 0.24, 1.65)}.btn-arrow:hover::before,.btn-arrow:hover::after{transform:translateX(0) !important}.btn-green{color:#232323 !important}.btn-green::before{background-color:#58df55}.btn-green::after{background-color:rgb(171.5,239,170)}.btn-green:hover::before,.btn-green:hover::after{transform:none !important}.btn-yellow{color:#232323 !important}.btn-yellow::before{background-color:#ffcf31}.btn-yellow::after{background-color:#ffe798}.btn-yellow:hover::before,.btn-yellow:hover::after{transform:none !important}.btn-pink{color:#232323 !important}.btn-pink::before{background-color:#ff5596}.btn-pink::after{background-color:rgb(255,170,202.5)}.btn-pink:hover::before,.btn-pink:hover::after{transform:none !important}@keyframes pulse-burundy{0%{box-shadow:0 0 0 0 rgba(100,0,45,.7)}45%{box-shadow:0 0 0 1rem rgba(100,0,45,0)}100%{box-shadow:0 0 0 0 rgba(100,0,45,0)}}.btn-animation-play{box-shadow:0 0 0 0 #64002d;animation:pulse-burundy 3s infinite}.btn-lg{font-size:1.15rem}.btn-sm{font-size:.8rem}.form-control,.ff-form-overrides .ff-react-dropdown__control,.ff-form-overrides input[type=color],.ff-form-overrides input[type=date],.ff-form-overrides input[type=datetime-local],.ff-form-overrides input[type=email],.ff-form-overrides input[type=file],.ff-form-overrides input[type=number],.ff-form-overrides input[type=password],.ff-form-overrides input[type=search],.ff-form-overrides input[type=tel],.ff-form-overrides input[type=text],.ff-form-overrides input[type=time],.ff-form-overrides input[type=url],.ff-form-overrides input[type=week]{display:block;width:100%;padding:.4rem 1.1667rem;font-size:1rem;line-height:1.5;color:#232323;background-color:#ebebeb;background-image:none;background-clip:padding-box;border:0;border-bottom:1px solid #919191}.form-control::-ms-expand,.ff-form-overrides .ff-react-dropdown__control::-ms-expand,.ff-form-overrides input[type=color]::-ms-expand,.ff-form-overrides input[type=date]::-ms-expand,.ff-form-overrides input[type=datetime-local]::-ms-expand,.ff-form-overrides input[type=email]::-ms-expand,.ff-form-overrides input[type=file]::-ms-expand,.ff-form-overrides input[type=number]::-ms-expand,.ff-form-overrides input[type=password]::-ms-expand,.ff-form-overrides input[type=search]::-ms-expand,.ff-form-overrides input[type=tel]::-ms-expand,.ff-form-overrides input[type=text]::-ms-expand,.ff-form-overrides input[type=time]::-ms-expand,.ff-form-overrides input[type=url]::-ms-expand,.ff-form-overrides input[type=week]::-ms-expand{background-color:rgba(0,0,0,0);border:0}.form-control:focus,.ff-form-overrides .ff-react-dropdown__control:focus,.ff-form-overrides input[type=color]:focus,.ff-form-overrides input[type=date]:focus,.ff-form-overrides input[type=datetime-local]:focus,.ff-form-overrides input[type=email]:focus,.ff-form-overrides input[type=file]:focus,.ff-form-overrides input[type=number]:focus,.ff-form-overrides input[type=password]:focus,.ff-form-overrides input[type=search]:focus,.ff-form-overrides input[type=tel]:focus,.ff-form-overrides input[type=text]:focus,.ff-form-overrides input[type=time]:focus,.ff-form-overrides input[type=url]:focus,.ff-form-overrides input[type=week]:focus{color:#232323;background-color:#ebebeb;border-color:#eb2800;outline:none}.form-control::-moz-placeholder, .ff-form-overrides .ff-react-dropdown__control::-moz-placeholder, .ff-form-overrides input[type=color]::-moz-placeholder, .ff-form-overrides input[type=date]::-moz-placeholder, .ff-form-overrides input[type=datetime-local]::-moz-placeholder, .ff-form-overrides input[type=email]::-moz-placeholder, .ff-form-overrides input[type=file]::-moz-placeholder, .ff-form-overrides input[type=number]::-moz-placeholder, .ff-form-overrides input[type=password]::-moz-placeholder, .ff-form-overrides input[type=search]::-moz-placeholder, .ff-form-overrides input[type=tel]::-moz-placeholder, .ff-form-overrides input[type=text]::-moz-placeholder, .ff-form-overrides input[type=time]::-moz-placeholder, .ff-form-overrides input[type=url]::-moz-placeholder, .ff-form-overrides input[type=week]::-moz-placeholder{color:#999;opacity:1}.form-control::placeholder,.ff-form-overrides .ff-react-dropdown__control::placeholder,.ff-form-overrides input[type=color]::placeholder,.ff-form-overrides input[type=date]::placeholder,.ff-form-overrides input[type=datetime-local]::placeholder,.ff-form-overrides input[type=email]::placeholder,.ff-form-overrides input[type=file]::placeholder,.ff-form-overrides input[type=number]::placeholder,.ff-form-overrides input[type=password]::placeholder,.ff-form-overrides input[type=search]::placeholder,.ff-form-overrides input[type=tel]::placeholder,.ff-form-overrides input[type=text]::placeholder,.ff-form-overrides input[type=time]::placeholder,.ff-form-overrides input[type=url]::placeholder,.ff-form-overrides input[type=week]::placeholder{color:#999;opacity:1}.form-control:disabled,.ff-form-overrides .ff-react-dropdown__control:disabled,.ff-form-overrides input[type=color]:disabled,.ff-form-overrides input[type=date]:disabled,.ff-form-overrides input[type=datetime-local]:disabled,.ff-form-overrides input[type=email]:disabled,.ff-form-overrides input[type=file]:disabled,.ff-form-overrides input[type=number]:disabled,.ff-form-overrides input[type=password]:disabled,.ff-form-overrides input[type=search]:disabled,.ff-form-overrides input[type=tel]:disabled,.ff-form-overrides input[type=text]:disabled,.ff-form-overrides input[type=time]:disabled,.ff-form-overrides input[type=url]:disabled,.ff-form-overrides input[type=week]:disabled,.form-control[readonly],.ff-form-overrides [readonly].ff-react-dropdown__control,.ff-form-overrides input[readonly][type=color],.ff-form-overrides input[readonly][type=date],.ff-form-overrides input[readonly][type=datetime-local],.ff-form-overrides input[readonly][type=email],.ff-form-overrides input[readonly][type=file],.ff-form-overrides input[readonly][type=number],.ff-form-overrides input[readonly][type=password],.ff-form-overrides input[readonly][type=search],.ff-form-overrides input[readonly][type=tel],.ff-form-overrides input[readonly][type=text],.ff-form-overrides input[readonly][type=time],.ff-form-overrides input[readonly][type=url],.ff-form-overrides input[readonly][type=week]{background-color:#d3d3d3;opacity:1}.form-control:disabled,.ff-form-overrides .ff-react-dropdown__control:disabled,.ff-form-overrides input[type=color]:disabled,.ff-form-overrides input[type=date]:disabled,.ff-form-overrides input[type=datetime-local]:disabled,.ff-form-overrides input[type=email]:disabled,.ff-form-overrides input[type=file]:disabled,.ff-form-overrides input[type=number]:disabled,.ff-form-overrides input[type=password]:disabled,.ff-form-overrides input[type=search]:disabled,.ff-form-overrides input[type=tel]:disabled,.ff-form-overrides input[type=text]:disabled,.ff-form-overrides input[type=time]:disabled,.ff-form-overrides input[type=url]:disabled,.ff-form-overrides input[type=week]:disabled{cursor:not-allowed}select.form-control:not([size]):not([multiple]),.ff-form-overrides .ff-react-dropdown__control:not([size]):not([multiple]){height:calc(1.5em + 0.8rem + (1px * 2));height:calc(1.5em + 0.8rem + calc(1px * 2))}select.form-control:focus::-ms-value,.ff-form-overrides .ff-react-dropdown__control:focus::-ms-value{color:#232323;background-color:#ebebeb}.form-control-file,.form-control-range{display:block}.col-form-label{padding-top:.4rem;padding-bottom:.4rem;margin-bottom:0}.col-form-label-lg{padding-top:.75rem;padding-bottom:.75rem;font-size:1.125rem}.col-form-label-sm{padding-top:.275rem;padding-bottom:.275rem;font-size:.875rem}.col-form-legend{padding-top:.4rem;padding-bottom:.4rem;margin-bottom:0;font-size:1rem}.form-control-static{min-height:calc(1.5em + 0.8rem + (1px * 2));min-height:calc(1.5em + 0.8rem + calc(1px * 2));padding-top:.4rem;padding-bottom:.4rem;margin-bottom:0}.form-control-static.form-control-sm,.form-control-static.form-control-lg{padding-right:0;padding-left:0}.form-control-sm{padding:.275rem .75rem;font-size:.875rem}select.form-control-sm:not([size]):not([multiple]),.ff-form-overrides .form-control-sm.ff-react-dropdown__control:not([size]):not([multiple]){height:calc(1.5em + 0.55rem + (1px * 2));height:calc(1.5em + 0.55rem + calc(1px * 2))}.form-control-lg{padding:.75rem 1.25rem;font-size:1.125rem}select.form-control-lg:not([size]):not([multiple]),.ff-form-overrides .form-control-lg.ff-react-dropdown__control:not([size]):not([multiple]){height:calc(1.5em + 1.5rem + (1px * 2));height:calc(1.5em + 1.5rem + calc(1px * 2))}.form-group{margin-bottom:1rem}.form-text{display:block;margin-top:.25rem}.form-check{position:relative;display:block;margin-bottom:.75rem}.form-check+.form-check{margin-top:-0.25rem}.form-check.disabled .form-check-label{color:rgba(33, 37, 41, 0.75);color:var(--bs-secondary-color);cursor:not-allowed}.form-check-label{padding-left:1.25rem;margin-bottom:0;cursor:pointer}.form-check-input{position:absolute;margin-top:.25rem;margin-left:-1.25rem}.form-check-input:only-child{position:static}.form-check-inline{position:relative;display:inline-block;padding-left:1.25rem;margin-bottom:0;vertical-align:middle;cursor:pointer}.form-check-inline+.form-check-inline{margin-left:.75rem}.form-check-inline.disabled{cursor:not-allowed}.form-control-feedback{margin-top:.25rem}.form-control-success,.form-control-warning,.form-control-danger{padding-right:3.5001rem;background-repeat:no-repeat;background-position:center right calc(1.5em + 0.8rem + (1px * 2))/4;background-position:center right calc(1.5em + 0.8rem + calc(1px * 2))/4;background-size:calc(1.5em + 0.8rem + (1px * 2))/2 calc(1.5em + 0.8rem + (1px * 2))/2;background-size:calc(1.5em + 0.8rem + calc(1px * 2))/2 calc(1.5em + 0.8rem + calc(1px * 2))/2}.has-success .form-control-feedback,.has-success .form-control-label,.has-success .radio,.has-success .checkbox,.has-success .radio-inline,.has-success .checkbox-inline,.has-success.radio label,.has-success.checkbox label,.has-success.radio-inline label,.has-success.checkbox-inline label,.has-success .custom-control{color:#58df55}.has-success .form-control,.has-success .ff-form-overrides .ff-react-dropdown__control,.ff-form-overrides .has-success .ff-react-dropdown__control,.has-success .ff-form-overrides input[type=color],.ff-form-overrides .has-success input[type=color],.has-success .ff-form-overrides input[type=date],.ff-form-overrides .has-success input[type=date],.has-success .ff-form-overrides input[type=datetime-local],.ff-form-overrides .has-success input[type=datetime-local],.has-success .ff-form-overrides input[type=email],.ff-form-overrides .has-success input[type=email],.has-success .ff-form-overrides input[type=file],.ff-form-overrides .has-success input[type=file],.has-success .ff-form-overrides input[type=number],.ff-form-overrides .has-success input[type=number],.has-success .ff-form-overrides input[type=password],.ff-form-overrides .has-success input[type=password],.has-success .ff-form-overrides input[type=search],.ff-form-overrides .has-success input[type=search],.has-success .ff-form-overrides input[type=tel],.ff-form-overrides .has-success input[type=tel],.has-success .ff-form-overrides input[type=text],.ff-form-overrides .has-success input[type=text],.has-success .ff-form-overrides input[type=time],.ff-form-overrides .has-success input[type=time],.has-success .ff-form-overrides input[type=url],.ff-form-overrides .has-success input[type=url],.has-success .ff-form-overrides input[type=week],.ff-form-overrides .has-success input[type=week]{border-color:#58df55}.has-success .input-group-addon{color:#58df55;border-color:#58df55;background-color:#fff}.has-success .form-control-feedback{color:#58df55}.has-success .form-control-success{background-image:url("data:image/svg+xml;charset=utf8,%3Csvg xmlns=%27http://www.w3.org/2000/svg%27 viewBox=%270 0 8 8%27%3E%3Cpath fill=%27%235cb85c%27 d=%27M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z%27/%3E%3C/svg%3E")}.has-warning .form-control-feedback,.has-warning .form-control-label,.has-warning .radio,.has-warning .checkbox,.has-warning .radio-inline,.has-warning .checkbox-inline,.has-warning.radio label,.has-warning.checkbox label,.has-warning.radio-inline label,.has-warning.checkbox-inline label,.has-warning .custom-control{color:#ffcf31}.has-warning .form-control,.has-warning .ff-form-overrides .ff-react-dropdown__control,.ff-form-overrides .has-warning .ff-react-dropdown__control,.has-warning .ff-form-overrides input[type=color],.ff-form-overrides .has-warning input[type=color],.has-warning .ff-form-overrides input[type=date],.ff-form-overrides .has-warning input[type=date],.has-warning .ff-form-overrides input[type=datetime-local],.ff-form-overrides .has-warning input[type=datetime-local],.has-warning .ff-form-overrides input[type=email],.ff-form-overrides .has-warning input[type=email],.has-warning .ff-form-overrides input[type=file],.ff-form-overrides .has-warning input[type=file],.has-warning .ff-form-overrides input[type=number],.ff-form-overrides .has-warning input[type=number],.has-warning .ff-form-overrides input[type=password],.ff-form-overrides .has-warning input[type=password],.has-warning .ff-form-overrides input[type=search],.ff-form-overrides .has-warning input[type=search],.has-warning .ff-form-overrides input[type=tel],.ff-form-overrides .has-warning input[type=tel],.has-warning .ff-form-overrides input[type=text],.ff-form-overrides .has-warning input[type=text],.has-warning .ff-form-overrides input[type=time],.ff-form-overrides .has-warning input[type=time],.has-warning .ff-form-overrides input[type=url],.ff-form-overrides .has-warning input[type=url],.has-warning .ff-form-overrides input[type=week],.ff-form-overrides .has-warning input[type=week]{border-color:#ffcf31}.has-warning .input-group-addon{color:#ffcf31;border-color:#ffcf31;background-color:rgb(255,254.5339805825,253)}.has-warning .form-control-feedback{color:#ffcf31}.has-warning .form-control-warning{background-image:url("data:image/svg+xml;charset=utf8,%3Csvg xmlns=%27http://www.w3.org/2000/svg%27 viewBox=%270 0 8 8%27%3E%3Cpath fill=%27%23f0ad4e%27 d=%27M4.4 5.324h-.8v-2.46h.8zm0 1.42h-.8V5.89h.8zM3.76.63L.04 7.075c-.115.2.016.425.26.426h7.397c.242 0 .372-.226.258-.426C6.726 4.924 5.47 2.79 4.253.63c-.113-.174-.39-.174-.494 0z%27/%3E%3C/svg%3E")}.has-danger .form-control-feedback,.has-danger .form-control-label,.has-danger .radio,.has-danger .checkbox,.has-danger .radio-inline,.has-danger .checkbox-inline,.has-danger.radio label,.has-danger.checkbox label,.has-danger.radio-inline label,.has-danger.checkbox-inline label,.has-danger .custom-control{color:#eb2800}.has-danger .form-control,.has-danger .ff-form-overrides .ff-react-dropdown__control,.ff-form-overrides .has-danger .ff-react-dropdown__control,.has-danger .ff-form-overrides input[type=color],.ff-form-overrides .has-danger input[type=color],.has-danger .ff-form-overrides input[type=date],.ff-form-overrides .has-danger input[type=date],.has-danger .ff-form-overrides input[type=datetime-local],.ff-form-overrides .has-danger input[type=datetime-local],.has-danger .ff-form-overrides input[type=email],.ff-form-overrides .has-danger input[type=email],.has-danger .ff-form-overrides input[type=file],.ff-form-overrides .has-danger input[type=file],.has-danger .ff-form-overrides input[type=number],.ff-form-overrides .has-danger input[type=number],.has-danger .ff-form-overrides input[type=password],.ff-form-overrides .has-danger input[type=password],.has-danger .ff-form-overrides input[type=search],.ff-form-overrides .has-danger input[type=search],.has-danger .ff-form-overrides input[type=tel],.ff-form-overrides .has-danger input[type=tel],.has-danger .ff-form-overrides input[type=text],.ff-form-overrides .has-danger input[type=text],.has-danger .ff-form-overrides input[type=time],.ff-form-overrides .has-danger input[type=time],.has-danger .ff-form-overrides input[type=url],.ff-form-overrides .has-danger input[type=url],.has-danger .ff-form-overrides input[type=week],.ff-form-overrides .has-danger input[type=week]{border-color:#eb2800}.has-danger .input-group-addon{color:#eb2800;border-color:#eb2800;background-color:rgb(255,196.085106383,184)}.has-danger .form-control-feedback{color:#eb2800}.has-danger .form-control-danger{background-image:url("data:image/svg+xml;charset=utf8,%3Csvg xmlns=%27http://www.w3.org/2000/svg%27 fill=%27%23d9534f%27 viewBox=%27-2 -2 7 7%27%3E%3Cpath stroke=%27%23d9534f%27 d=%27M0 0l3 3m0-3L0 3%27/%3E%3Ccircle r=%27.5%27/%3E%3Ccircle cx=%273%27 r=%27.5%27/%3E%3Ccircle cy=%273%27 r=%27.5%27/%3E%3Ccircle cx=%273%27 cy=%273%27 r=%27.5%27/%3E%3C/svg%3E")}@media(min-width: 576px){.form-inline .form-group{display:inline-block;margin-bottom:0;vertical-align:middle}.form-inline .form-control,.form-inline .ff-form-overrides .ff-react-dropdown__control,.ff-form-overrides .form-inline .ff-react-dropdown__control,.form-inline .ff-form-overrides input[type=color],.ff-form-overrides .form-inline input[type=color],.form-inline .ff-form-overrides input[type=date],.ff-form-overrides .form-inline input[type=date],.form-inline .ff-form-overrides input[type=datetime-local],.ff-form-overrides .form-inline input[type=datetime-local],.form-inline .ff-form-overrides input[type=email],.ff-form-overrides .form-inline input[type=email],.form-inline .ff-form-overrides input[type=file],.ff-form-overrides .form-inline input[type=file],.form-inline .ff-form-overrides input[type=number],.ff-form-overrides .form-inline input[type=number],.form-inline .ff-form-overrides input[type=password],.ff-form-overrides .form-inline input[type=password],.form-inline .ff-form-overrides input[type=search],.ff-form-overrides .form-inline input[type=search],.form-inline .ff-form-overrides input[type=tel],.ff-form-overrides .form-inline input[type=tel],.form-inline .ff-form-overrides input[type=text],.ff-form-overrides .form-inline input[type=text],.form-inline .ff-form-overrides input[type=time],.ff-form-overrides .form-inline input[type=time],.form-inline .ff-form-overrides input[type=url],.ff-form-overrides .form-inline input[type=url],.form-inline .ff-form-overrides input[type=week],.ff-form-overrides .form-inline input[type=week]{display:inline-block;width:auto;vertical-align:middle}.form-inline .form-control-static{display:inline-block}.form-inline .input-group{display:inline-table;vertical-align:middle}.form-inline .input-group .input-group-addon,.form-inline .input-group .input-group-btn,.form-inline .input-group .form-control,.form-inline .input-group .ff-form-overrides .ff-react-dropdown__control,.ff-form-overrides .form-inline .input-group .ff-react-dropdown__control,.form-inline .input-group .ff-form-overrides input[type=color],.ff-form-overrides .form-inline .input-group input[type=color],.form-inline .input-group .ff-form-overrides input[type=date],.ff-form-overrides .form-inline .input-group input[type=date],.form-inline .input-group .ff-form-overrides input[type=datetime-local],.ff-form-overrides .form-inline .input-group input[type=datetime-local],.form-inline .input-group .ff-form-overrides input[type=email],.ff-form-overrides .form-inline .input-group input[type=email],.form-inline .input-group .ff-form-overrides input[type=file],.ff-form-overrides .form-inline .input-group input[type=file],.form-inline .input-group .ff-form-overrides input[type=number],.ff-form-overrides .form-inline .input-group input[type=number],.form-inline .input-group .ff-form-overrides input[type=password],.ff-form-overrides .form-inline .input-group input[type=password],.form-inline .input-group .ff-form-overrides input[type=search],.ff-form-overrides .form-inline .input-group input[type=search],.form-inline .input-group .ff-form-overrides input[type=tel],.ff-form-overrides .form-inline .input-group input[type=tel],.form-inline .input-group .ff-form-overrides input[type=text],.ff-form-overrides .form-inline .input-group input[type=text],.form-inline .input-group .ff-form-overrides input[type=time],.ff-form-overrides .form-inline .input-group input[type=time],.form-inline .input-group .ff-form-overrides input[type=url],.ff-form-overrides .form-inline .input-group input[type=url],.form-inline .input-group .ff-form-overrides input[type=week],.ff-form-overrides .form-inline .input-group input[type=week]{width:auto}.form-inline .input-group>.form-control,.form-inline .ff-form-overrides .input-group>.ff-react-dropdown__control,.ff-form-overrides .form-inline .input-group>.ff-react-dropdown__control,.form-inline .ff-form-overrides .input-group>input[type=color],.ff-form-overrides .form-inline .input-group>input[type=color],.form-inline .ff-form-overrides .input-group>input[type=date],.ff-form-overrides .form-inline .input-group>input[type=date],.form-inline .ff-form-overrides .input-group>input[type=datetime-local],.ff-form-overrides .form-inline .input-group>input[type=datetime-local],.form-inline .ff-form-overrides .input-group>input[type=email],.ff-form-overrides .form-inline .input-group>input[type=email],.form-inline .ff-form-overrides .input-group>input[type=file],.ff-form-overrides .form-inline .input-group>input[type=file],.form-inline .ff-form-overrides .input-group>input[type=number],.ff-form-overrides .form-inline .input-group>input[type=number],.form-inline .ff-form-overrides .input-group>input[type=password],.ff-form-overrides .form-inline .input-group>input[type=password],.form-inline .ff-form-overrides .input-group>input[type=search],.ff-form-overrides .form-inline .input-group>input[type=search],.form-inline .ff-form-overrides .input-group>input[type=tel],.ff-form-overrides .form-inline .input-group>input[type=tel],.form-inline .ff-form-overrides .input-group>input[type=text],.ff-form-overrides .form-inline .input-group>input[type=text],.form-inline .ff-form-overrides .input-group>input[type=time],.ff-form-overrides .form-inline .input-group>input[type=time],.form-inline .ff-form-overrides .input-group>input[type=url],.ff-form-overrides .form-inline .input-group>input[type=url],.form-inline .ff-form-overrides .input-group>input[type=week],.ff-form-overrides .form-inline .input-group>input[type=week]{width:100%}.form-inline .form-control-label{margin-bottom:0;vertical-align:middle}.form-inline .form-check{display:inline-block;margin-top:0;margin-bottom:0;vertical-align:middle}.form-inline .form-check-label{padding-left:0}.form-inline .form-check-input{position:relative;margin-left:0}.form-inline .has-feedback .form-control-feedback{top:0}}form input[type=color],form input[type=date],form input[type=datetime-local],form input[type=email],form input[type=file],form input[type=number],form input[type=password],form input[type=search],form input[type=tel],form input[type=text],form input[type=time],form input[type=url],form input[type=week],form select,form .ff-form-overrides .ff-react-dropdown__control,.ff-form-overrides form .ff-react-dropdown__control,form textarea,form .currencySearch{border-radius:.5rem !important;border:#97d6df solid .1875rem !important;margin:0 !important;background-color:#fff !important;min-height:2.7rem !important}form input[type=color]::-moz-placeholder, form input[type=date]::-moz-placeholder, form input[type=datetime-local]::-moz-placeholder, form input[type=email]::-moz-placeholder, form input[type=file]::-moz-placeholder, form input[type=number]::-moz-placeholder, form input[type=password]::-moz-placeholder, form input[type=search]::-moz-placeholder, form input[type=tel]::-moz-placeholder, form input[type=text]::-moz-placeholder, form input[type=time]::-moz-placeholder, form input[type=url]::-moz-placeholder, form input[type=week]::-moz-placeholder, form select::-moz-placeholder, form .ff-form-overrides .ff-react-dropdown__control::-moz-placeholder, .ff-form-overrides form .ff-react-dropdown__control::-moz-placeholder, form textarea::-moz-placeholder, form .currencySearch::-moz-placeholder{color:#232323 !important;font-family:"Saans-Web",-apple-system,"Segoe UI",Roboto,"Helvetica Neue",sans-serif !important;font-size:1rem !important;padding-left:1rem !important}form input[type=color]::placeholder,form input[type=date]::placeholder,form input[type=datetime-local]::placeholder,form input[type=email]::placeholder,form input[type=file]::placeholder,form input[type=number]::placeholder,form input[type=password]::placeholder,form input[type=search]::placeholder,form input[type=tel]::placeholder,form input[type=text]::placeholder,form input[type=time]::placeholder,form input[type=url]::placeholder,form input[type=week]::placeholder,form select::placeholder,form .ff-form-overrides .ff-react-dropdown__control::placeholder,.ff-form-overrides form .ff-react-dropdown__control::placeholder,form textarea::placeholder,form .currencySearch::placeholder{color:#232323 !important;font-family:"Saans-Web",-apple-system,"Segoe UI",Roboto,"Helvetica Neue",sans-serif !important;font-size:1rem !important;padding-left:1rem !important}form input[type=color]:active,form input[type=color]:focus,form input[type=date]:active,form input[type=date]:focus,form input[type=datetime-local]:active,form input[type=datetime-local]:focus,form input[type=email]:active,form input[type=email]:focus,form input[type=file]:active,form input[type=file]:focus,form input[type=number]:active,form input[type=number]:focus,form input[type=password]:active,form input[type=password]:focus,form input[type=search]:active,form input[type=search]:focus,form input[type=tel]:active,form input[type=tel]:focus,form input[type=text]:active,form input[type=text]:focus,form input[type=time]:active,form input[type=time]:focus,form input[type=url]:active,form input[type=url]:focus,form input[type=week]:active,form input[type=week]:focus,form select:active,form .ff-form-overrides .ff-react-dropdown__control:active,.ff-form-overrides form .ff-react-dropdown__control:active,form select:focus,form .ff-form-overrides .ff-react-dropdown__control:focus,.ff-form-overrides form .ff-react-dropdown__control:focus,form textarea:active,form textarea:focus,form .currencySearch:active,form .currencySearch:focus{background-color:#fff !important;border:#4963f6 solid .1875rem !important;color:#232323 !important}form select,form .ff-form-overrides .ff-react-dropdown__control,.ff-form-overrides form .ff-react-dropdown__control{padding:.5125rem 2.3334rem .5125rem 1.1667rem;-webkit-appearance:none;-moz-appearance:none;appearance:none;background-image:url(../Assets/icon-arrow-full-down.svg);background-image:url(data:image/svg+xml;base64,PHN2ZwogIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIKICB3aWR0aD0iMjQiCiAgaGVpZ2h0PSIyNCIKICB2aWV3Qm94PSIwIDAgMjQgMjQiCiAgZmlsbD0ibm9uZSIKICBzdHJva2U9ImN1cnJlbnRDb2xvciIKICBzdHJva2Utd2lkdGg9IjIiCiAgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIgogIHN0cm9rZS1saW5lam9pbj0icm91bmQiCiAgY2xhc3M9Imljb24gaWNvbi10YWJsZXIgaWNvbnMtdGFibGVyLW91dGxpbmUgaWNvbi10YWJsZXItY2hldnJvbi1kb3duIgo+CiAgPHBhdGggc3Ryb2tlPSJub25lIiBkPSJNMCAwaDI0djI0SDB6IiBmaWxsPSJub25lIi8+CiAgPHBhdGggZD0iTTYgOWw2IDZsNiAtNiIgLz4KPC9zdmc+) !important;background-repeat:no-repeat;background-position:right 1rem center;background-size:1rem 1rem}form select::-ms-expand,form .ff-form-overrides .ff-react-dropdown__control::-ms-expand,.ff-form-overrides form .ff-react-dropdown__control::-ms-expand{display:none}form select.form-control-sm,form .ff-form-overrides .form-control-sm.ff-react-dropdown__control,.ff-form-overrides form .form-control-sm.ff-react-dropdown__control{background-size:.7777777778rem .3333333333rem}form select:active,form .ff-form-overrides .ff-react-dropdown__control:active,.ff-form-overrides form .ff-react-dropdown__control:active,form select:focus,form .ff-form-overrides .ff-react-dropdown__control:focus,.ff-form-overrides form .ff-react-dropdown__control:focus{border:#4963f6 solid .1875rem !important}form input[type=submit],form input[type=reset]{margin:0 !important;font-family:"SaansSemiMono-Web",SFMono-Regular,Menlo,Monaco,"Liberation Mono",monospace !important;border-radius:.5rem !important;background-color:#97d6df !important;color:#232323 !important;transition:all .2s ease-in-out !important;overflow:clip !important;font-size:1rem}form input[type=submit]:hover,form input[type=reset]:hover{background-color:rgb(133.6,187.15,194.8) !important}form input[type=submit]::before,form input[type=submit]::after,form input[type=reset]::before,form input[type=reset]::after{display:none !important}form input[type=submit]:active,form input[type=submit]:focus,form input[type=reset]:active,form input[type=reset]:focus{border:#4963f6 solid .1875rem !important}form label{margin-bottom:.5555555556rem;cursor:pointer;color:#232323}form .selectize-input{border-radius:.5rem !important;border:#97d6df solid .1875rem !important;margin:0 !important;background-color:#fff !important;min-height:2.7rem !important;background-image:url(data:image/svg+xml;base64,PHN2ZwogIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIKICB3aWR0aD0iMjQiCiAgaGVpZ2h0PSIyNCIKICB2aWV3Qm94PSIwIDAgMjQgMjQiCiAgZmlsbD0ibm9uZSIKICBzdHJva2U9ImN1cnJlbnRDb2xvciIKICBzdHJva2Utd2lkdGg9IjIiCiAgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIgogIHN0cm9rZS1saW5lam9pbj0icm91bmQiCiAgY2xhc3M9Imljb24gaWNvbi10YWJsZXIgaWNvbnMtdGFibGVyLW91dGxpbmUgaWNvbi10YWJsZXItY2hldnJvbi1kb3duIgo+CiAgPHBhdGggc3Ryb2tlPSJub25lIiBkPSJNMCAwaDI0djI0SDB6IiBmaWxsPSJub25lIi8+CiAgPHBhdGggZD0iTTYgOWw2IDZsNiAtNiIgLz4KPC9zdmc+) !important;background-repeat:no-repeat;background-position:right 1rem center;background-size:1rem 1rem}form .selectize-input::-moz-placeholder{color:#232323 !important;font-family:"Saans-Web",-apple-system,"Segoe UI",Roboto,"Helvetica Neue",sans-serif !important;font-size:1rem !important;padding-left:1rem !important}form .selectize-input::placeholder{color:#232323 !important;font-family:"Saans-Web",-apple-system,"Segoe UI",Roboto,"Helvetica Neue",sans-serif !important;font-size:1rem !important;padding-left:1rem !important}form .selectize-input:active,form .selectize-input:focus{background-color:#fff !important;border:rgb(133.6,187.15,194.8) solid .1875rem !important;color:#232323 !important}form .selectize-input::before,form .selectize-input::after{display:none !important}.powermail_field{position:relative}.powermail_radio,.powermail_checkbox,input[type=radio],input[type=checkbox]{display:none}.label-text,.ff-form-overrides input[type=radio]+label,.ff-form-overrides input[type=checkbox]+label{position:relative;padding-left:2.5rem;padding-top:.3rem;-webkit-box-decoration-break:clone;box-decoration-break:clone;color:#232323}.label-text:active:before,.ff-form-overrides input[type=radio]+label:active:before,.ff-form-overrides input[type=checkbox]+label:active:before,.label-text:focus:before,.ff-form-overrides input[type=radio]+label:focus:before,.ff-form-overrides input[type=checkbox]+label:focus:before{border:#4963f6 solid .1875rem !important}.label-text:before,.ff-form-overrides input[type=radio]+label:before,.ff-form-overrides input[type=checkbox]+label:before{position:absolute;left:0;top:-0.1rem;display:block;content:"";width:2rem;height:2rem;background-color:#fff;background-repeat:no-repeat;background-position:center center;background-size:1rem 1rem;border:#97d6df solid .1875rem !important;border-radius:.5rem;transition:background-image 200ms ease-in-out}input:checked+.label-text:before,.ff-form-overrides input[type=radio]:checked+label:before,.ff-form-overrides input[type=checkbox]:checked+label:before{background-image:url(../Assets/icon-cross.svg);background-image:url(data:image/svg+xml;base64,PHN2ZwogIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIKICB3aWR0aD0iMjQiCiAgaGVpZ2h0PSIyNCIKICB2aWV3Qm94PSIwIDAgMjQgMjQiCiAgZmlsbD0ibm9uZSIKICBzdHJva2U9ImN1cnJlbnRDb2xvciIKICBzdHJva2Utd2lkdGg9IjIiCiAgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIgogIHN0cm9rZS1saW5lam9pbj0icm91bmQiCiAgY2xhc3M9Imljb24gaWNvbi10YWJsZXIgaWNvbnMtdGFibGVyLW91dGxpbmUgaWNvbi10YWJsZXIteCIKPgogIDxwYXRoIHN0cm9rZT0ibm9uZSIgZD0iTTAgMGgyNHYyNEgweiIgZmlsbD0ibm9uZSIvPgogIDxwYXRoIGQ9Ik0xOCA2bC0xMiAxMiIgLz4KICA8cGF0aCBkPSJNNiA2bDEyIDEyIiAvPgo8L3N2Zz4=)}.parsley-errors-list{margin:0 0 0 0;padding:0;list-style:none;font-size:80%;color:#eb2800}.parsley-errors-list li{margin:0;padding:0;list-style:none}.parsley-errors-list li:before{display:none;content:none}.powermail_message_error{color:#eb2800}.powermail_progressbar{margin-top:1rem;width:100%;height:1rem;float:right;border:1px solid #919191;clear:both}.powermail_progressbar.disable{display:none}.powermail_progressbar>.powermail_progress{background:#4963f6;width:0%;max-width:100%;height:100%;animation:progress 5s 1 forwards}.powermail_progressbar>.powermail_progress>.powermail_progress_inner{height:.8888888889rem;width:100%;overflow:hidden;background:url(../Assets/icon_loading.gif) repeat-x;-moz-opacity:.25;-khtml-opacity:.25;opacity:.25;-ms-filter:progid:DXImageTransform.Microsoft.Alpha(Opacity=25);filter:progid:DXImageTransform.Microsoft.Alpha(opacity=25);filter:alpha(opacity=25)}.powermail_confirmation .powermail_progressbar{width:100%}@keyframes progress{to{width:100%}}#discovery-search-form{padding-left:0 !important;padding-right:0 !important}#discovery-search-form label{font-family:"Saans-Web",-apple-system,"Segoe UI",Roboto,"Helvetica Neue",sans-serif !important}.col-form-6{flex:0 0 auto;width:100%;flex-shrink:0;width:100%;max-width:100%;padding-right:calc(var(--bs-gutter-x)*.5);padding-left:calc(var(--bs-gutter-x)*.5);margin-top:var(--bs-gutter-y)}@media(min-width: 768px){.col-form-6{flex:0 0 auto;width:50%;flex-shrink:0;width:100%;max-width:100%;padding-right:calc(var(--bs-gutter-x)*.5);padding-left:calc(var(--bs-gutter-x)*.5);margin-top:var(--bs-gutter-y);width:50% !important}}.col-form-5{flex:0 0 auto;width:100%;flex-shrink:0;width:100%;max-width:100%;padding-right:calc(var(--bs-gutter-x)*.5);padding-left:calc(var(--bs-gutter-x)*.5);margin-top:var(--bs-gutter-y)}@media(min-width: 768px){.col-form-5{flex:0 0 auto;width:41.66666667%;flex-shrink:0;width:100%;max-width:100%;padding-right:calc(var(--bs-gutter-x)*.5);padding-left:calc(var(--bs-gutter-x)*.5);margin-top:var(--bs-gutter-y)}}.col-form-7{flex:0 0 auto;width:100%;flex-shrink:0;width:100%;max-width:100%;padding-right:calc(var(--bs-gutter-x)*.5);padding-left:calc(var(--bs-gutter-x)*.5);margin-top:var(--bs-gutter-y)}@media(min-width: 768px){.col-form-7{flex:0 0 auto;width:58.33333333%;flex-shrink:0;width:100%;max-width:100%;padding-right:calc(var(--bs-gutter-x)*.5);padding-left:calc(var(--bs-gutter-x)*.5);margin-top:var(--bs-gutter-y)}}.col-form-12{flex:0 0 auto;width:100%;flex-shrink:0;width:100%;max-width:100%;padding-right:calc(var(--bs-gutter-x)*.5);padding-left:calc(var(--bs-gutter-x)*.5);margin-top:var(--bs-gutter-y)}.extbase-debugger-tree input[type=checkbox]{display:block !important}.ce-bodytext h1,.ce-bodytext .h1{margin-bottom:2rem;line-height:1.1em}.ce-bodytext h1:not(:first-child),.ce-bodytext .h1:not(:first-child){margin-top:1.5em}.ce-bodytext h2,.ce-bodytext .h2{margin-bottom:1.5rem;line-height:1.1em}.ce-bodytext h2:not(:first-child),.ce-bodytext .h2:not(:first-child){margin-top:1.5em}.ce-bodytext h3,.ce-bodytext .h3{margin-bottom:1rem;line-height:1.1em}.ce-bodytext h3:not(:first-child),.ce-bodytext .h3:not(:first-child){margin-top:1.5em}.ce-bodytext h4,.ce-bodytext .h4{margin-bottom:.8rem;line-height:1.1em}.ce-bodytext h4:not(:first-child),.ce-bodytext .h4:not(:first-child){margin-top:1.5em}.ce-bodytext h5,.ce-bodytext .h5{margin-bottom:.8rem;line-height:1.1em}.ce-bodytext h5:not(:first-child),.ce-bodytext .h5:not(:first-child){margin-top:1.5em}.ce-bodytext h6,.ce-bodytext .h6{margin-bottom:0;line-height:1.1em}.ce-bodytext h6:not(:first-child),.ce-bodytext .h6:not(:first-child){margin-top:1.5em}[data-layout]:not([data-layout="0"]){border-radius:2.5rem}[data-layout="1"] *,[data-layout="5"] *,[data-layout="9"] *,[data-layout="17"] *{color:#fff}[data-layout="1"] [data-layout]:not([data-layout="0"]):not([data-layout="1"]):not([data-layout="5"]):not([data-layout="9"]):not([data-layout="17"]) *,[data-layout="5"] [data-layout]:not([data-layout="0"]):not([data-layout="1"]):not([data-layout="5"]):not([data-layout="9"]):not([data-layout="17"]) *,[data-layout="9"] [data-layout]:not([data-layout="0"]):not([data-layout="1"]):not([data-layout="5"]):not([data-layout="9"]):not([data-layout="17"]) *,[data-layout="17"] [data-layout]:not([data-layout="0"]):not([data-layout="1"]):not([data-layout="5"]):not([data-layout="9"]):not([data-layout="17"]) *{color:#232323}[data-layout="34"] *{color:#232323}[data-color="0"] *{color:#232323 !important}[data-color="1"] *{color:#fff !important}[data-layout="1"]{background:#eb2800}[data-layout="1"].btn-tile:hover{background:rgb(205,39.25,5.25)}[data-layout="2"]{background:rgb(245,147.5,127.5)}[data-layout="2"].btn-tile:hover{background:rgb(213.5,130.625,113.625)}[data-layout="3"]{background:#fbd4cc}[data-layout="3"].btn-tile:hover{background:rgb(218.6,185.45,178.65)}a [data-layout="3"].klu-card:hover,a [data-layout="3"].klu-card:focus{background-color:rgb(245,147.5,127.5)}[data-layout="4"]{background:rgb(253,233.5,229.5)}[data-layout="4"].btn-tile:hover{background:rgb(220.3,203.725,200.325)}[data-layout="5"]{background:#232323}[data-layout="5"].btn-tile:hover{background:#444}[data-layout="6"]{background:#919191}[data-layout="6"].btn-tile:hover{background:rgb(128.5,128.5,128.5)}[data-layout="7"]{background:#d3d3d3}[data-layout="7"].btn-tile:hover{background:rgb(184.6,184.6,184.6)}a [data-layout="7"].klu-card:hover,a [data-layout="7"].klu-card:focus{background-color:#919191}[data-layout="8"]{background:#e9e9e9}[data-layout="8"].btn-tile:hover{background:rgb(203.3,203.3,203.3)}[data-layout="9"]{background:#64002d}[data-layout="9"].btn-tile:hover{background:#9e0047}[data-layout="10"]{background:rgb(177.5,127.5,150)}[data-layout="10"].btn-tile:hover{background:rgb(156.125,113.625,132.75)}[data-layout="11"]{background:#e0ccd5}[data-layout="11"].btn-tile:hover{background:rgb(195.65,178.65,186.3)}a [data-layout="11"].klu-card:hover,a [data-layout="11"].klu-card:focus{background-color:rgb(177.5,127.5,150)}[data-layout="12"]{background:rgb(239.5,229.5,234)}[data-layout="12"].btn-tile:hover{background:rgb(208.825,200.325,204.15)}[data-layout="13"]{background:#58df55}[data-layout="13"].btn-tile:hover{background:rgb(80.05,194.8,77.5)}[data-layout="14"]{background:rgb(171.5,239,170)}[data-layout="14"].btn-tile:hover{background:rgb(151.025,208.4,149.75)}[data-layout="15"]{background:rgb(221.6,248.6,221)}[data-layout="15"].btn-tile:hover{background:rgb(193.61,216.56,193.1)}a [data-layout="15"].klu-card:hover,a [data-layout="15"].klu-card:focus{background-color:rgb(171.5,239,170)}[data-layout="16"]{background:rgb(238.3,251.8,238)}[data-layout="16"].btn-tile:hover{background:rgb(207.805,219.28,207.55)}[data-layout="17"]{background:#4963f6}[data-layout="17"].btn-tile:hover{background:#3a4ec2}[data-layout="18"]{background:rgb(164,177,250.5)}[data-layout="18"].btn-tile:hover{background:rgb(144.65,155.7,218.175)}[data-layout="19"]{background:rgb(218.6,223.8,253.2)}[data-layout="19"].btn-tile:hover{background:rgb(191.06,195.48,220.47)}a [data-layout="19"].klu-card:hover,a [data-layout="19"].klu-card:focus{background-color:rgb(164,177,250.5)}[data-layout="20"]{background:rgb(236.8,239.4,254.1)}[data-layout="20"].btn-tile:hover{background:rgb(206.53,208.74,221.235)}[data-layout="21"]{background:#97d6df}[data-layout="21"].btn-tile:hover{background:rgb(133.6,187.15,194.8)}[data-layout="22"]{background:rgb(203,234.5,239)}[data-layout="22"].btn-tile:hover{background:rgb(177.8,204.575,208.4)}[data-layout="23"]{background:rgb(234.2,246.8,248.6)}[data-layout="23"].btn-tile:hover{background:rgb(204.32,215.03,216.56)}a [data-layout="23"].klu-card:hover,a [data-layout="23"].klu-card:focus{background-color:rgb(203,234.5,239)}[data-layout="24"]{background:rgb(244.6,250.9,251.8)}[data-layout="24"].btn-tile:hover{background:rgb(213.16,218.515,219.28)}[data-layout="25"]{background:#ffcf31}[data-layout="25"].btn-tile:hover{background:rgb(222,181.2,46.9)}[data-layout="26"]{background:#ffe798}[data-layout="26"].btn-tile:hover{background:rgb(222,201.6,134.45)}[data-layout="27"]{background:rgb(255,245.4,213.8)}[data-layout="27"].btn-tile:hover{background:rgb(222,213.84,186.98)}a [data-layout="27"].klu-card:hover,a [data-layout="27"].klu-card:focus{background-color:#ffe798}[data-layout="28"]{background:rgb(255,250.2,234.4)}[data-layout="28"].btn-tile:hover{background:rgb(222,217.92,204.49)}[data-layout="29"]{background:#ff5596}[data-layout="29"].btn-tile:hover{background:rgb(222,77.5,132.75)}[data-layout="30"]{background:rgb(255,170,202.5)}[data-layout="30"].btn-tile:hover{background:rgb(222,149.75,177.375)}[data-layout="31"]{background:#ffddea}[data-layout="31"].btn-tile:hover{background:rgb(222,193.1,204.15)}a [data-layout="31"].klu-card:hover,a [data-layout="31"].klu-card:focus{background-color:rgb(255,170,202.5)}[data-layout="32"]{background:rgb(255,238,244.5)}[data-layout="32"].btn-tile:hover{background:rgb(222,207.55,213.075)}[data-layout="33"]{background:#ebebeb}[data-layout="33"].btn-tile:hover{background:#cdcdcd}[data-layout="34"]{background:#fff}[data-layout="34"].btn-tile:hover{background:#dedede}[data-layout]:not([data-layout="0"]):not([data-layout="34"]) .bg-gray,[data-layout]:not([data-layout="0"]):not([data-layout="34"]) .bg-off-white{background-color:#fff}.bg-green{background-color:#58df55}.bg-gray{background-color:#d3d3d3}.bg-off-white{background-color:#ebebeb}.bg-off-white *{color:#232323}html,:root,#klaro{--klaro-switch-background-inactive: rgb(164, 177, 250.5) !important;--klaro-switch-background-active: #4963f6 !important;--klaro-switch-background-disabled: #919191 !important}#klaro .cookie-modal .cm-modal{border-radius:1.5rem}#klaro .cookie-modal .cm-modal .cm-footer button.btn,#klaro .cookie-modal .cm-modal .cm-footer .ff-form-overrides button,.ff-form-overrides #klaro .cookie-modal .cm-modal .cm-footer button{min-width:11rem}#klaro .cookie-modal .cm-modal .cm-footer button.btn:focus,#klaro .cookie-modal .cm-modal .cm-footer .ff-form-overrides button:focus,.ff-form-overrides #klaro .cookie-modal .cm-modal .cm-footer button:focus{outline:none}#klaro .cookie-modal .cm-modal .cm-footer button.btn.btn-cookie-secondary,#klaro .cookie-modal .cm-modal .cm-footer .ff-form-overrides button.btn-cookie-secondary,.ff-form-overrides #klaro .cookie-modal .cm-modal .cm-footer button.btn-cookie-secondary{background:#fff;color:#4963f6;border:#4963f6 2px solid;margin-top:0;margin-bottom:1px;box-shadow:#ddd 0 1px 0}#klaro .cookie-modal .cm-modal .cm-footer button.btn.btn-cookie-secondary:hover,#klaro .cookie-modal .cm-modal .cm-footer .ff-form-overrides button.btn-cookie-secondary:hover,.ff-form-overrides #klaro .cookie-modal .cm-modal .cm-footer button.btn-cookie-secondary:hover,#klaro .cookie-modal .cm-modal .cm-footer button.btn.btn-cookie-secondary:active,#klaro .cookie-modal .cm-modal .cm-footer .ff-form-overrides button.btn-cookie-secondary:active,.ff-form-overrides #klaro .cookie-modal .cm-modal .cm-footer button.btn-cookie-secondary:active{background-color:#f8f8f8}#klaro .cookie-modal .cm-modal .cm-footer button.btn.btn-cookie-secondary:active:focus,#klaro .cookie-modal .cm-modal .cm-footer .ff-form-overrides button.btn-cookie-secondary:active:focus,.ff-form-overrides #klaro .cookie-modal .cm-modal .cm-footer button.btn-cookie-secondary:active:focus{box-shadow:none;margin-top:1px;margin-bottom:0}#klaro .cookie-modal .cm-modal .cm-footer button.btn.btn-cookie-secondary:before,#klaro .cookie-modal .cm-modal .cm-footer .ff-form-overrides button.btn-cookie-secondary:before,.ff-form-overrides #klaro .cookie-modal .cm-modal .cm-footer button.btn-cookie-secondary:before{left:-14px;background-color:#4963f6}#global #main{min-height:10vh}html,body{min-width:320px}*{font-feature-settings:none;font-variant-ligatures:none}.border-radius-s{border-radius:.5rem !important}.border-radius-m{border-radius:1.5rem !important}.border-radius-l{border-radius:2.5rem !important}.border-radius-bottom-s{border-radius:0 0 .5rem .5rem !important}.border-radius-bottom-m{border-radius:0 0 1.5rem 1.5rem !important}.border-radius-bottom-l{border-radius:0 0 2.5rem 2.5rem !important}.container.ce-container .similar-columns [data-ctype]{height:100%;flex-direction:column !important;display:flex !important}.container.ce-container .similar-columns [data-ctype] .container.ce-container{height:100%;flex-direction:column !important;display:flex !important}.container.ce-container .similar-columns [data-ctype] .container.ce-container .row,.container.ce-container .similar-columns [data-ctype] .container.ce-container .ff-form-overrides .schemable-form-section [class*=_sectionedContent],.ff-form-overrides .schemable-form-section .container.ce-container .similar-columns [data-ctype] .container.ce-container [class*=_sectionedContent]{flex-grow:1 !important}.container.ce-container .similar-columns [data-ctype] .container.ce-container .row .col-12,.container.ce-container .similar-columns [data-ctype] .container.ce-container .ff-form-overrides .schemable-form-section [class*=_sectionedContent] .col-12,.container.ce-container .similar-columns [data-ctype] .container.ce-container .ff-form-overrides .schemable-form-section [class*=_sectionedContent]>*,.ff-form-overrides .schemable-form-section .container.ce-container .similar-columns [data-ctype] .container.ce-container [class*=_sectionedContent] .col-12,.ff-form-overrides .schemable-form-section .container.ce-container .similar-columns [data-ctype] .container.ce-container [class*=_sectionedContent]>*{flex-direction:column !important;display:flex !important}.container.ce-container .similar-columns [data-ctype] .container.ce-container .row .col-12>div,.container.ce-container .similar-columns [data-ctype] .container.ce-container .ff-form-overrides .schemable-form-section [class*=_sectionedContent] .col-12>div,.container.ce-container .similar-columns [data-ctype] .container.ce-container .ff-form-overrides .schemable-form-section [class*=_sectionedContent]>*>div,.ff-form-overrides .schemable-form-section .container.ce-container .similar-columns [data-ctype] .container.ce-container [class*=_sectionedContent] .col-12>div,.ff-form-overrides .schemable-form-section .container.ce-container .similar-columns [data-ctype] .container.ce-container [class*=_sectionedContent]>*>div{flex-grow:1 !important;border-radius:1.5rem !important}.container.ce-container li a:not(.btn):before{content:none}.border-radius-0{border-radius:0 !important}[data-ctype=textmedia] img{border-radius:1.5rem}[data-ctype=textmedia] .ce-container .ce-textpic .ce-gallery .ce-row{--bs-gutter-x: 2.7777777778rem;--bs-gutter-y: 0;display:flex;flex-wrap:wrap;margin-top:calc(-1*0);margin-top:calc(-1*var(--bs-gutter-y));margin-right:calc(-0.5*2.7777777778rem);margin-right:calc(-0.5*var(--bs-gutter-x));margin-left:calc(-0.5*2.7777777778rem);margin-left:calc(-0.5*var(--bs-gutter-x))}[data-ctype=textmedia] .ce-container .ce-textpic .ce-gallery .ce-row .ce-column{padding-bottom:1.3888888889rem}[data-ctype=textmedia] .ce-container .ce-textpic .ce-gallery .ce-row .ce-column .ce-media .embed-responsive{margin-bottom:.5rem}[data-ctype=textmedia] .ce-container .ce-textpic .ce-gallery a img{width:100%;height:auto;transition:transform 300ms ease-in-out;transform:scale(1, 1)}[data-ctype=textmedia] .ce-container .ce-textpic .ce-gallery a.zoom{position:relative;display:block;overflow:hidden;border-radius:1.5rem}[data-ctype=textmedia] .ce-container .ce-textpic .ce-gallery a.zoom:before{position:absolute;display:block;content:"";height:100%;width:100%;background:#4963f6;opacity:0;transition:opacity 275ms ease-in-out;z-index:1}[data-ctype=textmedia] .ce-container .ce-textpic .ce-gallery a.zoom:hover:before{opacity:.3}[data-ctype=textmedia] .ce-container .ce-textpic .ce-gallery a.zoom:hover img{transform:scale(1.05, 1.05)}[data-ctype=textmedia] .ce-container .ce-textpic .ce-gallery img{width:100%;height:auto;border-radius:1.5rem}[data-ctype=textmedia] .ce-container .ce-textpic .ce-bodytext img.imageintextleft{float:left;margin-right:2.77778rem;margin-bottom:.25rem;height:auto;max-width:43.8%}@media(min-width: 576px){[data-ctype=textmedia] .ce-container .ce-textpic .ce-bodytext img.imageintextleft{max-width:38.8%}}@media(min-width: 768px){[data-ctype=textmedia] .ce-container .ce-textpic .ce-bodytext img.imageintextleft{max-width:34.8%}}[data-ctype=textmedia] .ce-container .ce-textpic.ce-nowrap{--bs-gutter-x: 1rem;--bs-gutter-y: 0;display:flex;flex-wrap:wrap;margin-top:calc(-1*0);margin-top:calc(-1*var(--bs-gutter-y));margin-right:calc(-0.5*1rem);margin-right:calc(-0.5*var(--bs-gutter-x));margin-left:calc(-0.5*1rem);margin-left:calc(-0.5*var(--bs-gutter-x))}@media(min-width: 576px){[data-ctype=textmedia] .ce-container .ce-textpic.ce-nowrap.ce-left .ce-beside{padding-right:0}[data-ctype=textmedia] .ce-container .ce-textpic.ce-nowrap.ce-left .ce-bodytext{padding-left:2.7777777778rem}[data-ctype=textmedia] .ce-container .ce-textpic.ce-nowrap.ce-right .ce-beside{padding-left:0}[data-ctype=textmedia] .ce-container .ce-textpic.ce-nowrap.ce-right .ce-bodytext{padding-right:2.7777777778rem}}[data-ctype=textmedia] .ce-container .ce-textpic.ce-intext:not(.ce-nowrap) .ce-gallery{max-width:43.8%}@media(min-width: 576px){[data-ctype=textmedia] .ce-container .ce-textpic.ce-intext:not(.ce-nowrap) .ce-gallery{max-width:38.8%}}@media(min-width: 768px){[data-ctype=textmedia] .ce-container .ce-textpic.ce-intext:not(.ce-nowrap) .ce-gallery{max-width:34.8%}}[data-ctype=textmedia] .ce-container .ce-textpic.ce-intext:not(.ce-nowrap).ce-left .ce-gallery{float:left;margin-right:2.7777777778rem;width:100%}[data-ctype=textmedia] .ce-container .ce-textpic.ce-intext:not(.ce-nowrap).ce-right .ce-gallery{float:right;margin-left:2.7777777778rem;width:100%}.ce-container .ce-container.container{padding:0;min-width:100%}[data-ctype=shortcut] .ce-container .ce-container.container{padding:0;min-width:100%}.top-bar{background:#232323;z-index:1045;position:relative}.top-bar ul{margin:0 0 0 0;padding:0;list-style:none}.top-bar ul li{margin:0;padding:0;list-style:none}.top-bar ul li:before{display:none;content:none}.top-bar--navigation>li{float:left}html[dir=rtl] .top-bar--navigation>li{float:right}@media(min-width: 576px){.top-bar--navigation>li.search-link{padding-right:2.6rem}}@media(min-width: 768px){.top-bar--navigation>li.search-link{padding-right:2.9rem}}.top-bar--navigation>li a:not(.cta-button),.top-bar--navigation>li span:not(.cta-button){height:2.2222222222rem;line-height:2.2222222222rem;display:inline-block;padding-left:.5555555556rem;padding-right:.5555555556rem;color:#fff}@media(min-width: 576px){.top-bar--navigation>li a:not(.cta-button),.top-bar--navigation>li span:not(.cta-button){padding-left:.6666666667rem;padding-right:.6666666667rem}}@media(min-width: 768px){.top-bar--navigation>li a:not(.cta-button),.top-bar--navigation>li span:not(.cta-button){padding-left:1rem;padding-right:1rem}}.top-bar--navigation>li:not(.open)>a:focus:not(.cta-button),.top-bar--navigation>li:not(.open)>a:hover:not(.cta-button),.top-bar--navigation>li:not(.open)>span:focus:not(.cta-button),.top-bar--navigation>li:not(.open)>span:hover:not(.cta-button){background:#d3d3d3;color:#232323}.top-bar--navigation>li:not(.open)>a:focus:not(.cta-button) .icon *,.top-bar--navigation>li:not(.open)>a:hover:not(.cta-button) .icon *,.top-bar--navigation>li:not(.open)>span:focus:not(.cta-button) .icon *,.top-bar--navigation>li:not(.open)>span:hover:not(.cta-button) .icon *{fill:#232323}.top-bar--navigation.application-portal{display:flex;justify-content:space-between}.top-bar--navigation.application-portal .cta-button{height:100%;text-align:center;font-weight:bold;font-feature-settings:"smcp", "c2sc";font-variant:all-small-caps;line-height:inherit;letter-spacing:.25px}.top-bar--navigation li.dropdown.open{background:#4963f6;white-space:nowrap}.top-bar--navigation li.dropdown.open:focus a,.top-bar--navigation li.dropdown.open:focus span,.top-bar--navigation li.dropdown.open:hover a,.top-bar--navigation li.dropdown.open:hover span{color:#fff}.top-bar--navigation li.dropdown.open:focus a .icon *,.top-bar--navigation li.dropdown.open:focus span .icon *,.top-bar--navigation li.dropdown.open:hover a .icon *,.top-bar--navigation li.dropdown.open:hover span .icon *{fill:#fff}.top-bar--navigation li.dropdown.open a,.top-bar--navigation li.dropdown.open span{display:block;color:#fff}.top-bar--navigation li.dropdown.open a .icon *,.top-bar--navigation li.dropdown.open span .icon *{fill:#fff}.top-bar--navigation .dropdown-menu{font-size:100%;padding-top:.5555555556rem;padding-bottom:.5555555556rem;overflow:hidden}.top-bar--navigation .dropdown-menu li a,.top-bar--navigation .dropdown-menu li span{cursor:pointer;opacity:.75;height:2.1666666667rem;border-top:1px solid hsla(0,0%,100%,.25)}.top-bar--navigation .dropdown-menu li:last-child a,.top-bar--navigation .dropdown-menu li:last-child span{box-sizing:content-box;border-bottom:1px solid hsla(0,0%,100%,.25)}.top-bar--navigation .dropdown-menu li:hover:hover,.top-bar--navigation .dropdown-menu li:hover:focus{background-color:rgb(48.7015706806,78.1727748691,244.7984293194)}.top-bar--navigation .dropdown-menu li:hover:hover a,.top-bar--navigation .dropdown-menu li:hover:hover span,.top-bar--navigation .dropdown-menu li:hover:focus a,.top-bar--navigation .dropdown-menu li:hover:focus span{opacity:1}.top-bar--navigation .dropdown-menu li span.toggle{padding-right:2.1111111111rem}.top-bar--navigation .dropdown-menu li span.toggle:before{display:block;float:right;content:"";height:100%;width:1rem;background:url(../Assets/icon-arrow-right.svg) center 55% no-repeat;background-size:1rem 1rem;position:relative;right:-1.5rem}.top-bar--navigation .dropdown-menu li>ul{position:absolute;top:0;padding-top:.5555555556rem;padding-bottom:.5555555556rem;min-width:100%;left:100%;height:100%;background:#4963f6;z-index:1}.top-bar--navigation .dropdown-menu li>ul li span,.top-bar--navigation .dropdown-menu li>ul li a{opacity:.75 !important}.top-bar--navigation .dropdown-menu li>ul li span:hover,.top-bar--navigation .dropdown-menu li>ul li a:hover{opacity:1 !important}.top-bar--navigation .dropdown-menu li>ul span.toggle-back{text-transform:uppercase}.top-bar--navigation .dropdown-menu li>ul span.toggle-back:before{margin-right:.6666666667rem;display:block;float:left;content:"";height:100%;width:1rem;background:url(../Assets/icon-arrow-left.svg) center 55% no-repeat;background-size:1rem 1rem}.top-bar--navigation svg{height:1rem;width:1rem;position:relative;top:.0555555556rem}.top-bar ul.top-bar--social li{display:block;float:left;height:100%;vertical-align:middle;padding:.2777777778rem 0}.top-bar ul.top-bar--social li a{height:1.6666666667rem;display:inline-block;padding-left:.5555555556rem}.top-bar ul.top-bar--social li a .icon *{transition:fill ease-in-out 150ms}.top-bar ul.top-bar--social li a:focus .icon *,.top-bar ul.top-bar--social li a:hover .icon *{fill:#4963f6}.top-bar ul.top-bar--social li:first-child a:not(.cta-button){padding:0}.top-bar ul.top-bar--social li:first-child a .cta-button{height:auto;padding:.375rem 1rem}.top-bar ul.top-bar--social li svg{display:inline-block;height:1.6666666667rem;width:1.6666666667rem}.header-sticky #breadcrumb{display:none}.header-sticky #navigation{position:fixed !important;transition:all .5s ease-in-out;left:0;right:0;margin:auto;width:100%}.header-sticky .transition-all-ease #navigation{position:relative !important;margin-top:-1rem}.header-sticky #header{overflow-y:auto;max-height:none;position:fixed !important;top:0;left:0;z-index:999;padding-bottom:0 !important}.header-sticky .header{margin-bottom:0 !important}#header{overflow-x:hidden;scrollbar-width:none;position:absolute;min-width:360px}#header::-webkit-scrollbar{display:none}#navigation{z-index:999;position:relative;transition:all .3s ease-in-out}.transition-all-ease{transition:all .5s ease}.mega-menu-overlay{z-index:1;width:auto;height:auto;display:none;overflow-x:auto;position:fixed;bottom:0;right:0;top:0;left:0;background-color:#64002d;opacity:.5;transition:all .2s ease-in-out}.header{position:relative}.header .navigation{filter:drop-shadow(0px 0px 1rem rgba(0, 0, 0, 0.3))}@supports(-webkit-touch-callout: none){.header .navigation{filter:drop-shadow(0px 2px 3px rgba(0, 0, 0, 0.2))}}.header .mega-menu{display:none;transition:margin-right .2s ease-in-out}.header .mega-menu .first-menu li:hover svg{margin-right:-0.5rem !important}.header .mega-menu .first-menu li:hover .mega-menu-link.active svg{margin-right:0rem !important}.header .mega-menu .first-menu svg{transition:margin-right .2s ease-in-out}.header .mega-menu .extra-links.active,.header .mega-menu .extra-links:hover{transition:background-color .3s ease-out;background-color:rgb(245,147.5,127.5)}.header .mega-menu .extra-links.active p,.header .mega-menu .extra-links:hover p{color:#232323 !important}.header .mega-menu .mega-menu-category-box{display:none;opacity:0;transform:translateY(-10px);margin-top:-1rem;transition:all .3s ease-out;max-height:0rem}.header .mega-menu .mega-menu-category-box .child-links.active p,.header .mega-menu .mega-menu-category-box .child-links:hover p{transition:background-color .3s ease-out;background-color:rgb(245,147.5,127.5);color:#232323 !important}.header .mega-menu .mega-menu-link{padding:1rem}.header .mega-menu .mega-menu-link.active{background-color:#eb2800;border-radius:1.5rem}.header .mega-menu .mega-menu-link.active svg{transform:scale(2);stroke-width:1;transition:all .3s ease-in-out}.header .mega-menu .mega-menu-link.active svg .line{transition:all .3s ease-in-out;transform-origin:center}.header .mega-menu .mega-menu-link.active svg .top{opacity:0}.header .mega-menu .mega-menu-link.active svg .middle{transform:translateY(-3px) translateX(-4px)}.header .mega-menu .mega-menu-link.active svg .bottom{transform:translateY(3px) translateX(-4px)}.header .mega-menu .mega-menu-category-box.show{opacity:1;height:auto;transform:translateY(0);margin-top:0rem;max-height:none;max-height:initial}.header .mega-menu .mega-menu-category-box.fade-out{opacity:0;margin-top:0rem;transform:translateY(-10px);max-height:1rem}.header .logo img{height:4rem}.header .highlighted-items{border-radius:.5rem;background-color:#ebebeb;padding-left:2rem;padding-right:2rem}@media(max-width: 991.98px){.header .highlighted-items{display:none !important}}.header .highlighted-items .item{height:4rem;padding-top:1.3125rem;padding-bottom:1.3125rem;margin:0;color:#232323 !important;font-family:"Saans-Web",-apple-system,"Segoe UI",Roboto,"Helvetica Neue",sans-serif;-webkit-text-decoration:none !important;text-decoration:none !important;font-weight:normal}.header .highlighted-items .item::before,.header .highlighted-items .item::after{display:none}.header .highlighted-items .item:hover{color:#9e0047 !important}.header .ctaButton .btn,.header .ctaButton .ff-form-overrides button,.ff-form-overrides .header .ctaButton button,.header .ctaButton .ff-form-overrides input[type=button],.ff-form-overrides .header .ctaButton input[type=button],.header .ctaButton .ff-form-overrides input[type=submit],.ff-form-overrides .header .ctaButton input[type=submit],.header .ctaButton .ff-form-overrides input[type=reset],.ff-form-overrides .header .ctaButton input[type=reset]{padding-top:1.4rem;padding-bottom:1.4rem;margin:0}.header .burger{cursor:pointer;transition:transform .3s ease-in-out;transform-origin:2rem 2rem}.header .burger svg{width:auto;height:100%}.header .burger:hover g path{scale:1.15}.header .burger.active{transform:rotate(90deg)}.header .line{transition:.2s all .3s ease-in-out, scale .4s cubic-bezier(0.65, -0.6, 0.24, 1.65);transform-origin:32px 32px}.header .top.active{transform:translateY(10px) translateX(-10px) rotate(45deg)}.header .middle.active{opacity:0}.header .bottom.active{transform:translateY(-5px) translateX(-10px) rotate(-45deg)}::i-block-chrome,.header .navigation{filter:drop-shadow(0px 2px 3px rgba(0, 0, 0, 0.2)) !important}.mega-menu-search{background-color:rgba(0,0,0,0);padding:0 !important;border-radius:0}.mega-menu-search .tx-solr-search-form{padding:0 !important;margin:0 !important;height:100%}.mega-menu-search .tx-solr,.mega-menu-search #tx-solr-search-form-pi-results,.mega-menu-search .input-group,.mega-menu-search input,.mega-menu-search button{height:100%}.mega-menu-search #tx-solr-search-form-pi-results{background-color:rgba(0,0,0,0) !important}.mega-menu-search.active input.tx-solr-suggest{max-width:100%;padding:.412rem;padding-left:2.5rem;margin-right:0 !important;transition:margin-right .1s ease 0s, max-width .3s ease .1s, padding .3s ease .3s}.mega-menu-search.active button.btn-search span{transform:rotate(-45deg)}.mega-menu-search input.tx-solr-suggest{padding:0;max-width:0rem;background:none;margin-right:-1rem !important}.mega-menu-search button.btn-search{width:4rem;color:rgba(0,0,0,0) !important}.mega-menu-search button.btn-search:hover{background-color:#97d6df !important}.mega-menu-search button.btn-search:hover span{scale:1.15}.mega-menu-search button.btn-search span{width:100%;height:100%;display:inline-block;vertical-align:middle;position:relative;transform:rotate(45deg);transition:all .4s cubic-bezier(0.65, -0.6, 0.24, 1.65)}.mega-menu-search button.btn-search span::after{content:"";position:absolute;width:1rem;height:1rem;top:.5rem;border-radius:.8rem;border:.2rem solid #232323;left:0;right:0;margin:0 auto}.mega-menu-search button.btn-search span::before{content:"";position:absolute;width:.21rem;height:.5rem;top:1.45rem;border-radius:2px;background:#232323;left:0;right:0;margin:0 auto}@keyframes close{0%{opacity:1;max-width:100%}50%{opacity:1;max-width:0}100%{opacity:0;max-width:0}}@keyframes open{0%{opacity:0;max-width:0}50%{opacity:1;max-width:0}100%{opacity:1;max-width:100%}}@media print{body{background:red !important}}@media screen{#global #header .sticky #navigation #logo img.wt,#global #header .sticky .mobile #logo img.wt{display:none}#global.header-sticky #header .sticky{position:fixed;left:0;right:0;top:0;z-index:1050;transition:transform .5s ease-in-out;-o-box-shadow:0 0 15px #666;box-shadow:0 0 15px #666}#global.header-sticky #header .sticky .top-bar{display:none;visibility:hidden}#global.header-sticky #header .sticky #navigation ul{padding-left:0}#global.header-sticky #header .sticky #navigation #logo img,#global.header-sticky #header .sticky .mobile #logo img{display:none}#global.header-sticky #header .sticky #navigation #logo img.wt,#global.header-sticky #header .sticky .mobile #logo img.wt{display:inline}#global.header-sticky .disabled{display:none}}#footer{min-height:5rem;background-color:#232323;border-radius:2.5rem 2.5rem 0 0}#footer *{color:#fff}#footer::after{display:block;clear:both;content:""}#footer .container{padding-top:0}#footer .key-competence-areas{margin-bottom:0rem;align-items:center}#footer .footer-hr{margin:0 0 1rem 0;padding:0;border-bottom:2px solid #666}#footer .footer a{color:#fff;-webkit-text-decoration:none;text-decoration:none}#footer .footer a:focus,#footer .footer a:hover{color:#fff}#footer .footer--social{padding-left:inherit}#footer .footer--social li{display:block;float:left;vertical-align:middle}#footer .footer--social li a{height:1.6666666667rem;display:inline-block;padding-left:.5555555556rem}#footer .footer--social li a .icon *{transition:fill ease-in-out 150ms}#footer .footer--social li a:focus .icon *,#footer .footer--social li a:hover .icon *{fill:#4963f6}#footer .footer--social li a:before{display:none}#footer .footer--social li:first-child a:not(.cta-button){padding:0}#footer .footer--social li:first-child a .cta-button{height:auto;padding:.375rem 1rem}#footer .footer--social li svg{display:inline-block;height:1.6666666667rem;width:1.6666666667rem}@media(max-width: 767.98px){#footer .footer .footer-contact{padding-bottom:1rem}}#footer .landingpages{margin-bottom:1rem}#footer .landingpages ul{margin:0 0 0 0;padding:0;list-style:none}#footer .landingpages ul::after{display:block;clear:both;content:""}#footer .landingpages ul li{margin:0;padding:0;list-style:none}#footer .landingpages ul li:before{display:none;content:none}#footer .landingpages ul li{float:left;line-height:1.8}#footer .landingpages ul li:not(:last-child){margin-right:.5rem}#footer .landingpages ul li a{color:#919191}#footer .landingpages ul li a:focus,#footer .landingpages ul li a:hover{color:#fff}#map{height:27.7777777778rem;max-height:75vh;width:100%}#map .gm-style-iw *{display:block;width:100%}#map .gm-style-iw h4,#map .gm-style-iw .h4,#map .gm-style-iw p{margin:0;padding:0}.partnerships h4,.partnerships .h4{color:#212529 !important}#footer-map{height:27.7777777778rem;max-height:75vh;width:100%}.page-item .page-link.active,.page-item .page-link.active:hover,.page-item .page-link.active:focus{z-index:2;color:#fff;cursor:default;background-color:#4963f6;border-color:#4963f6}.bg-black-90{background:rgba(51,51,51,.9)}.bg-black-95{background:rgba(51,51,51,.95)}.blackbox{padding:1.4rem;color:#fff}.overlay{z-index:-999;width:auto;height:auto;display:block;overflow-x:auto;position:fixed;bottom:0;right:0;top:0;left:0;background:rgba(51,51,51,.75);opacity:0;transition:opacity .15s ease-out;outline:0}.overlay .overlay-container{z-index:8020;opacity:0;transition:opacity .3s ease-out;margin-top:20vh}.overlay .overlay-container .close{color:#fff;opacity:.75;line-height:1.3888888889rem;font-size:2.6111111111rem;vertical-align:middle;position:absolute;right:1.3888888889rem;top:1.3888888889rem;transform:translateY(-1.3888888889rem)}@media(min-width: 992px){.overlay .overlay-container .close{right:-1rem}}.overlay .overlay-container .close:hover,.overlay .overlay-container .close:focus{opacity:1}.overlay .overlay-container .overlay-container-content{padding-top:2.7777777778rem}.overlay.open{z-index:8010;opacity:1}.overlay.open .overlay-container{opacity:1;transition:opacity .25s ease-out}#video.overlay .overlay-container{margin-top:10vh}#video.overlay .overlay-container .overlay-container-content{padding-top:2.7777777778rem;padding-bottom:2.7777777778rem}.search-mobile{position:absolute;bottom:0;display:block;width:2.77778rem;background-color:#232323;margin-right:4rem;text-align:center;padding:.5rem .3rem .15rem .3rem}[data-list-type=solr_pi_search]{background-color:#64002d;padding:2rem;border-radius:1.5rem}@media(max-width: 767.98px){[data-list-type=solr_pi_search].container-desktop input{display:none}}[data-list-type=solr_pi_search].mega-menu-search-mobile{display:none;background-color:none;padding:0;border-radius:0}[data-list-type=solr_pi_search].mega-menu-search-mobile .tx-solr-search-form{padding:0 !important;margin:0 !important;height:100%}[data-list-type=solr_pi_search].mega-menu-search-mobile .tx-solr,[data-list-type=solr_pi_search].mega-menu-search-mobile #tx-solr-search-form-pi-results,[data-list-type=solr_pi_search].mega-menu-search-mobile .input-group,[data-list-type=solr_pi_search].mega-menu-search-mobile input,[data-list-type=solr_pi_search].mega-menu-search-mobile button{height:100%}[data-list-type=solr_pi_search].mega-menu-search{max-height:4rem}[data-list-type=solr_pi_search].mega-menu-search-mobile{padding-top:4rem !important}[data-list-type=solr_pi_search].mega-menu-search-mobile button{display:none}[data-list-type=solr_pi_search].mega-menu-search-mobile form{height:4rem !important}[data-list-type=solr_pi_search].mega-menu-search-mobile input{margin-right:-10rem !important}@media(max-width: 576px){[data-list-type=solr_pi_search].mega-menu-search-mobile input{font-size:16px !important}}[data-list-type=solr_pi_search] *{color:#fff}[data-list-type=solr_pi_search] .tx-solr-search-form{padding-top:2rem}[data-list-type=solr_pi_search] input{border-radius:.5rem;border:#97d6df solid .1875rem;padding:.412rem;padding-left:2.5rem;background:url(../Assets/icon-search.svg) no-repeat scroll 1.1875rem 1.1875rem;background-position:.5rem;background-color:#fff;transition:all .2s ease-in-out;color:#232323}[data-list-type=solr_pi_search] input::-moz-placeholder{color:#232323;font-family:"Saans-Web",-apple-system,"Segoe UI",Roboto,"Helvetica Neue",sans-serif;font-size:1rem;padding-left:1rem}[data-list-type=solr_pi_search] input::placeholder{color:#232323;font-family:"Saans-Web",-apple-system,"Segoe UI",Roboto,"Helvetica Neue",sans-serif;font-size:1rem;padding-left:1rem}[data-list-type=solr_pi_search] input:active,[data-list-type=solr_pi_search] input:focus{background-color:#fff;border:rgb(133.6,187.15,194.8) solid .1875rem;color:#232323}[data-list-type=solr_pi_search] .btn-search{border-radius:.5rem;background-color:#97d6df;color:#232323 !important;transition:all .2s ease-in-out;overflow:clip}[data-list-type=solr_pi_search] .btn-search:hover{background-color:rgb(133.6,187.15,194.8)}[data-list-type=solr_pi_search] .btn-search::before,[data-list-type=solr_pi_search] .btn-search::after{display:none}.tx-solr{background-color:rgba(0,0,0,0)}.tx-solr input{border-radius:.5rem;border:#97d6df solid .1875rem;padding:.412rem;padding-left:2.5rem;background:url(../Assets/icon-search.svg) no-repeat scroll 1.1875rem 1.1875rem;background-position:.5rem;background-color:#fff;transition:all .2s ease-in-out;color:#232323}.tx-solr input::-moz-placeholder{color:#232323;font-family:"Saans-Web",-apple-system,"Segoe UI",Roboto,"Helvetica Neue",sans-serif;font-size:1rem;padding-left:1rem}.tx-solr input::placeholder{color:#232323;font-family:"Saans-Web",-apple-system,"Segoe UI",Roboto,"Helvetica Neue",sans-serif;font-size:1rem;padding-left:1rem}.tx-solr input:active,.tx-solr input:focus{background-color:#fff;border:rgb(133.6,187.15,194.8) solid .1875rem;color:#232323}.tx-solr .btn-search{border-radius:.5rem;background-color:#97d6df;color:#232323 !important;transition:all .2s ease-in-out;overflow:clip}.tx-solr .btn-search:hover{background-color:rgb(133.6,187.15,194.8)}.tx-solr .btn-search::before,.tx-solr .btn-search::after{display:none}.tx-solr .filters__btns{display:flex;height:-moz-fit-content;height:fit-content}.tx-solr .dropdown-toggle::after{float:right;margin-top:.5rem}.tx-solr .dropdown-menu{right:0;left:auto;margin-right:.23rem;margin-top:.8rem;background-color:#ebebeb;color:#232323}@media(min-width: 1200px)and (min-height: 810px){.tx-solr .dropdown-menu{margin-top:.7rem}}.tx-solr .d-inline{display:inline !important}.tx-solr .d-flex{display:flex;align-items:center}.tx-solr .sort{width:160px;display:inline-block !important;padding:8px 20px;margin-left:1rem}@media(max-width: 544px){.tx-solr .sort{margin-top:1rem}}.tx-solr .tx-solr-search-form .form-group{margin-bottom:1rem}.tx-solr .tx-solr-search-form .btn.btn-gold,.tx-solr .tx-solr-search-form .ff-form-overrides button,.ff-form-overrides .tx-solr .tx-solr-search-form button,.tx-solr .tx-solr-search-form .ff-form-overrides input[type=button],.ff-form-overrides .tx-solr .tx-solr-search-form input[type=button],.tx-solr .tx-solr-search-form .ff-form-overrides input[type=submit],.ff-form-overrides .tx-solr .tx-solr-search-form input[type=submit],.tx-solr .tx-solr-search-form .ff-form-overrides input[type=reset],.ff-form-overrides .tx-solr .tx-solr-search-form input[type=reset]{min-width:100%}.tx-solr .tx-solr-searchfor-found{opacity:.5}.tx-solr #tx-solr-pagination{margin-bottom:2rem}.tx-solr #tx-solr-pagination .solr-pagination-range{margin-bottom:1rem}@media(min-width: 576px){.tx-solr #tx-solr-pagination .solr-pagination-range{margin-bottom:0;align-items:center;display:flex}}.tx-solr #tx-solr-pagination .form-group{margin:0}.tx-solr #tx-solr-pagination .form-group .form-control,.tx-solr #tx-solr-pagination .form-group .ff-form-overrides .ff-react-dropdown__control,.ff-form-overrides .tx-solr #tx-solr-pagination .form-group .ff-react-dropdown__control,.tx-solr #tx-solr-pagination .form-group .ff-form-overrides input[type=color],.ff-form-overrides .tx-solr #tx-solr-pagination .form-group input[type=color],.tx-solr #tx-solr-pagination .form-group .ff-form-overrides input[type=date],.ff-form-overrides .tx-solr #tx-solr-pagination .form-group input[type=date],.tx-solr #tx-solr-pagination .form-group .ff-form-overrides input[type=datetime-local],.ff-form-overrides .tx-solr #tx-solr-pagination .form-group input[type=datetime-local],.tx-solr #tx-solr-pagination .form-group .ff-form-overrides input[type=email],.ff-form-overrides .tx-solr #tx-solr-pagination .form-group input[type=email],.tx-solr #tx-solr-pagination .form-group .ff-form-overrides input[type=file],.ff-form-overrides .tx-solr #tx-solr-pagination .form-group input[type=file],.tx-solr #tx-solr-pagination .form-group .ff-form-overrides input[type=number],.ff-form-overrides .tx-solr #tx-solr-pagination .form-group input[type=number],.tx-solr #tx-solr-pagination .form-group .ff-form-overrides input[type=password],.ff-form-overrides .tx-solr #tx-solr-pagination .form-group input[type=password],.tx-solr #tx-solr-pagination .form-group .ff-form-overrides input[type=search],.ff-form-overrides .tx-solr #tx-solr-pagination .form-group input[type=search],.tx-solr #tx-solr-pagination .form-group .ff-form-overrides input[type=tel],.ff-form-overrides .tx-solr #tx-solr-pagination .form-group input[type=tel],.tx-solr #tx-solr-pagination .form-group .ff-form-overrides input[type=text],.ff-form-overrides .tx-solr #tx-solr-pagination .form-group input[type=text],.tx-solr #tx-solr-pagination .form-group .ff-form-overrides input[type=time],.ff-form-overrides .tx-solr #tx-solr-pagination .form-group input[type=time],.tx-solr #tx-solr-pagination .form-group .ff-form-overrides input[type=url],.ff-form-overrides .tx-solr #tx-solr-pagination .form-group input[type=url],.tx-solr #tx-solr-pagination .form-group .ff-form-overrides input[type=week],.ff-form-overrides .tx-solr #tx-solr-pagination .form-group input[type=week]{width:auto;display:inline-block;padding-left:.5rem;padding-bottom:0;padding-top:.15rem;padding-right:1.8rem;background-position:right .6rem center;vertical-align:middle}.tx-solr .result-text:last-child{margin:0}.tx-solr .results-highlight{display:inline-block;background:rgb(164,177,250.5);color:#232323;padding:0 .2rem}#search.overlay .close{color:#fff;opacity:.75;line-height:1.3888888889rem;font-size:2.6111111111rem;vertical-align:middle;position:absolute;right:1.3888888889rem;top:1.3888888889rem;transform:translateY(-1.3888888889rem)}@media(min-width: 992px){#search.overlay .close{right:-1.3888888889rem}}#search.overlay .close:hover,#search.overlay .close:focus{opacity:1}#search.overlay .overlay-container-content{padding-top:2.7777777778rem}#search.overlay .overlay-container-content .form-control,#search.overlay .overlay-container-content .ff-form-overrides .ff-react-dropdown__control,.ff-form-overrides #search.overlay .overlay-container-content .ff-react-dropdown__control,#search.overlay .overlay-container-content .ff-form-overrides input[type=color],.ff-form-overrides #search.overlay .overlay-container-content input[type=color],#search.overlay .overlay-container-content .ff-form-overrides input[type=date],.ff-form-overrides #search.overlay .overlay-container-content input[type=date],#search.overlay .overlay-container-content .ff-form-overrides input[type=datetime-local],.ff-form-overrides #search.overlay .overlay-container-content input[type=datetime-local],#search.overlay .overlay-container-content .ff-form-overrides input[type=email],.ff-form-overrides #search.overlay .overlay-container-content input[type=email],#search.overlay .overlay-container-content .ff-form-overrides input[type=file],.ff-form-overrides #search.overlay .overlay-container-content input[type=file],#search.overlay .overlay-container-content .ff-form-overrides input[type=number],.ff-form-overrides #search.overlay .overlay-container-content input[type=number],#search.overlay .overlay-container-content .ff-form-overrides input[type=password],.ff-form-overrides #search.overlay .overlay-container-content input[type=password],#search.overlay .overlay-container-content .ff-form-overrides input[type=search],.ff-form-overrides #search.overlay .overlay-container-content input[type=search],#search.overlay .overlay-container-content .ff-form-overrides input[type=tel],.ff-form-overrides #search.overlay .overlay-container-content input[type=tel],#search.overlay .overlay-container-content .ff-form-overrides input[type=text],.ff-form-overrides #search.overlay .overlay-container-content input[type=text],#search.overlay .overlay-container-content .ff-form-overrides input[type=time],.ff-form-overrides #search.overlay .overlay-container-content input[type=time],#search.overlay .overlay-container-content .ff-form-overrides input[type=url],.ff-form-overrides #search.overlay .overlay-container-content input[type=url],#search.overlay .overlay-container-content .ff-form-overrides input[type=week],.ff-form-overrides #search.overlay .overlay-container-content input[type=week]{border-bottom-width:.1111111111rem;background-color:#fff;padding:.75rem 1.25rem;padding-left:3.3333333333rem;font-size:1.125rem;background-image:url(../Assets/icon-search-light.svg);background-image:url(data:image/svg+xml;base64,PHN2ZwogICAgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIgogICAgd2lkdGg9IjE4IgogICAgaGVpZ2h0PSIxOCIKICAgIHZpZXdCb3g9IjAgMCAxOCAxOCIKICAgID4KICAgIDxwYXRoIGZpbGw9IiM5MTkxOTEiIGQ9Ik0xNy42LDE1LjRsLTQuMy00LjNjLTAuMSwwLTAuMS0wLjEtMC4yLTAuMWMwLjctMS4xLDEuMi0yLjQsMS4yLTMuOWMwLTMuOS0zLjItNy4xLTcuMS03LjFDMy4yLDAsMCwzLjIsMCw3LjFjMCwzLjksMy4yLDcuMSw3LjEsNy4xYzEuNCwwLDIuOC0wLjQsMy45LTEuMmMwLDAuMSwwLjEsMC4xLDAuMSwwLjJsNC4zLDQuM2MwLjMsMC4zLDAuNywwLjQsMS4xLDAuNGMwLjQsMCwwLjgtMC4xLDEuMS0wLjRDMTguMSwxNywxOC4xLDE2LDE3LjYsMTUuNCBNNy4xLDEyYy0yLjcsMC00LjktMi4yLTQuOS00LjljMC0yLjcsMi4yLTQuOSw0LjktNC45YzIuNywwLDQuOSwyLjIsNC45LDQuOUMxMiw5LjgsOS44LDEyLDcuMSwxMiIvPgo8L3N2Zz4=);background-size:1.125rem 1.125rem;background-position:1rem center;background-repeat:no-repeat}#search.overlay .overlay-container-content .form-control:focus,#search.overlay .overlay-container-content .ff-form-overrides .ff-react-dropdown__control:focus,.ff-form-overrides #search.overlay .overlay-container-content .ff-react-dropdown__control:focus,#search.overlay .overlay-container-content .ff-form-overrides input[type=color]:focus,.ff-form-overrides #search.overlay .overlay-container-content input[type=color]:focus,#search.overlay .overlay-container-content .ff-form-overrides input[type=date]:focus,.ff-form-overrides #search.overlay .overlay-container-content input[type=date]:focus,#search.overlay .overlay-container-content .ff-form-overrides input[type=datetime-local]:focus,.ff-form-overrides #search.overlay .overlay-container-content input[type=datetime-local]:focus,#search.overlay .overlay-container-content .ff-form-overrides input[type=email]:focus,.ff-form-overrides #search.overlay .overlay-container-content input[type=email]:focus,#search.overlay .overlay-container-content .ff-form-overrides input[type=file]:focus,.ff-form-overrides #search.overlay .overlay-container-content input[type=file]:focus,#search.overlay .overlay-container-content .ff-form-overrides input[type=number]:focus,.ff-form-overrides #search.overlay .overlay-container-content input[type=number]:focus,#search.overlay .overlay-container-content .ff-form-overrides input[type=password]:focus,.ff-form-overrides #search.overlay .overlay-container-content input[type=password]:focus,#search.overlay .overlay-container-content .ff-form-overrides input[type=search]:focus,.ff-form-overrides #search.overlay .overlay-container-content input[type=search]:focus,#search.overlay .overlay-container-content .ff-form-overrides input[type=tel]:focus,.ff-form-overrides #search.overlay .overlay-container-content input[type=tel]:focus,#search.overlay .overlay-container-content .ff-form-overrides input[type=text]:focus,.ff-form-overrides #search.overlay .overlay-container-content input[type=text]:focus,#search.overlay .overlay-container-content .ff-form-overrides input[type=time]:focus,.ff-form-overrides #search.overlay .overlay-container-content input[type=time]:focus,#search.overlay .overlay-container-content .ff-form-overrides input[type=url]:focus,.ff-form-overrides #search.overlay .overlay-container-content input[type=url]:focus,#search.overlay .overlay-container-content .ff-form-overrides input[type=week]:focus,.ff-form-overrides #search.overlay .overlay-container-content input[type=week]:focus{background-image:url(../Assets/icon-search.svg);background-image:url(data:image/svg+xml;base64,PHN2ZwogICAgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIgogICAgd2lkdGg9IjE4IgogICAgaGVpZ2h0PSIxOCIKICAgIHZpZXdCb3g9IjAgMCAxOCAxOCIKICAgID4KICAgIDxwYXRoIGZpbGw9IiMzMzMzMzMiIGQ9Ik0xNy42LDE1LjRsLTQuMy00LjNjLTAuMSwwLTAuMS0wLjEtMC4yLTAuMWMwLjctMS4xLDEuMi0yLjQsMS4yLTMuOWMwLTMuOS0zLjItNy4xLTcuMS03LjFDMy4yLDAsMCwzLjIsMCw3LjFjMCwzLjksMy4yLDcuMSw3LjEsNy4xYzEuNCwwLDIuOC0wLjQsMy45LTEuMmMwLDAuMSwwLjEsMC4xLDAuMSwwLjJsNC4zLDQuM2MwLjMsMC4zLDAuNywwLjQsMS4xLDAuNGMwLjQsMCwwLjgtMC4xLDEuMS0wLjRDMTguMSwxNywxOC4xLDE2LDE3LjYsMTUuNCBNNy4xLDEyYy0yLjcsMC00LjktMi4yLTQuOS00LjljMC0yLjcsMi4yLTQuOSw0LjktNC45YzIuNywwLDQuOSwyLjIsNC45LDQuOUMxMiw5LjgsOS44LDEyLDcuMSwxMiIvPgo8L3N2Zz4=)}.tx-solr-autocomplete{position:relative}.tx-solr-autocomplete .autocomplete-suggestions{width:100% !important;position:absolute;z-index:8011;background:#fff;box-shadow:0 0 5px rgba(0,0,0,.5);clip-path:polygon(-10% 0, 110% 0, 110% 110%, -10% 110%);border-radius:.5rem;border:#97d6df solid .1875rem;padding:.5rem}.tx-solr-autocomplete .autocomplete-suggestion{cursor:pointer;padding:.4rem 1.1667rem;border-radius:.5rem;color:#232323;text-align:left}.tx-solr-autocomplete .autocomplete-suggestion:hover{background-color:#97d6df;color:#fff}.tx-solr-autocomplete .autocomplete-suggestion strong{color:#232323}.solr-pagination-range,#results-per-page{height:1.75rem}#results-per-page .form-group{display:flex;align-items:center}#results-per-page .no-break{white-space:nowrap}.solr-pagination-range{display:flex;align-items:center}.search-line .form-control,.search-line .ff-form-overrides .ff-react-dropdown__control,.ff-form-overrides .search-line .ff-react-dropdown__control,.search-line .ff-form-overrides input[type=color],.ff-form-overrides .search-line input[type=color],.search-line .ff-form-overrides input[type=date],.ff-form-overrides .search-line input[type=date],.search-line .ff-form-overrides input[type=datetime-local],.ff-form-overrides .search-line input[type=datetime-local],.search-line .ff-form-overrides input[type=email],.ff-form-overrides .search-line input[type=email],.search-line .ff-form-overrides input[type=file],.ff-form-overrides .search-line input[type=file],.search-line .ff-form-overrides input[type=number],.ff-form-overrides .search-line input[type=number],.search-line .ff-form-overrides input[type=password],.ff-form-overrides .search-line input[type=password],.search-line .ff-form-overrides input[type=search],.ff-form-overrides .search-line input[type=search],.search-line .ff-form-overrides input[type=tel],.ff-form-overrides .search-line input[type=tel],.search-line .ff-form-overrides input[type=text],.ff-form-overrides .search-line input[type=text],.search-line .ff-form-overrides input[type=time],.ff-form-overrides .search-line input[type=time],.search-line .ff-form-overrides input[type=url],.ff-form-overrides .search-line input[type=url],.search-line .ff-form-overrides input[type=week],.ff-form-overrides .search-line input[type=week]{background-color:#fff}.collapse-link::after{display:inline-block;width:0;height:0;margin-right:.25rem;margin-left:.25rem;vertical-align:middle;content:"";border-top:.3em solid;border-right:.3em solid rgba(0,0,0,0);border-left:.3em solid rgba(0,0,0,0)}.dropdown-toggle::after{margin-right:.1666666667rem;margin-left:.1666666667rem}.breadcrumb{z-index:1;position:relative}.breadcrumb .breadcrumb-inner{background:rgba(0,0,0,0)}.breadcrumb ol{margin:0 0 0 0;padding:0;list-style:none}.breadcrumb ol li{margin:0;padding:0;list-style:none}.breadcrumb ol li:before{display:none;content:none}.breadcrumb ol::after{display:block;clear:both;content:""}.breadcrumb ol>li{float:left;padding:.5555555556rem 0 .4444444444rem}@media screen{.header-sticky .breadcrumb ol>li{padding:.3333333333rem 0 .2222222222rem}}.breadcrumb ol>li a,.breadcrumb ol>li span{color:currentColor;display:inline-block;transition:opacity 100ms;margin:0 .5rem}.breadcrumb ol>li a:hover,.breadcrumb ol>li a:focus,.breadcrumb ol>li a:active{opacity:.75}.breadcrumb ol>li:not(:last-child):after{color:currentColor;content:"›"}.breadcrumb ol>li:not(:first-child) a,.breadcrumb ol>li:not(:first-child) span{margin:0 .5rem}.breadcrumb ol>li:not(:first-child) a span,.breadcrumb ol>li:not(:first-child) span span{margin:0}.ranking-image{--bs-gutter-x: 1rem;--bs-gutter-y: 0;width:100%;padding-right:calc(1rem*.5);padding-right:calc(var(--bs-gutter-x)*.5);padding-left:calc(1rem*.5);padding-left:calc(var(--bs-gutter-x)*.5);margin-right:auto;margin-left:auto}@media(min-width: 576px){.ranking-image{max-width:540px}}@media(min-width: 768px){.ranking-image{max-width:720px}}@media(min-width: 992px){.ranking-image{max-width:960px}}@media(min-width: 1200px)and (min-height: 810px){.ranking-image{max-width:1200px}}@media(min-width: 1400px){.ranking-image{max-width:1380px}}[data-list-type=gomapsext_show]>.ce-container:not(.spacing-bottom-disabled){padding-bottom:1rem}.teaser-md{padding-top:4rem;margin-top:-4rem;padding-bottom:2rem;border-radius:0 0 2.5rem 2.5rem !important}[data-ctype=teaser]{background-size:cover;border-radius:0 0 2.5rem 2.5rem !important;padding-bottom:2rem;background-position:center 0;background-repeat:no-repeat;position:relative}[data-ctype=teaser] .teaser-content p,[data-ctype=teaser] .teaser-content strong{font-size:1.4375rem}[data-ctype=teaser].teaser-fullpage{height:100vh}@media(max-width: 767.98px){[data-ctype=teaser].teaser-fullpage{height:45vh}[data-ctype=teaser].teaser-fullpage .teaser-content{display:none !important}[data-ctype=teaser].teaser-fullpage .teaser-col{height:auto}}[data-ctype=teaser].teaser-fullpage .teaser-col{height:100vh}[data-ctype=teaser].teaser-fullpage .teaser-content{position:absolute;bottom:5rem;height:auto !important;border-radius:1.5rem;padding:1rem;background-color:#fff}[data-ctype=teaser] .content-image,[data-ctype=teaser] .in_site_navigation{border-radius:1.5rem}[data-ctype=teaser] .content-video-fullpage{border-radius:0 0 2.5rem 2.5rem !important;-o-object-fit:cover;object-fit:cover;width:100%;height:100%;position:fixed;top:0;left:0}@media(max-width: 767.98px){[data-ctype=teaser] .content-video-fullpage{border-radius:2.5rem}}[data-ctype=teaser] .in_site_navigation .dropdown-menu{border-radius:.5rem}[data-ctype=teaser] .in_site_navigation ul{list-style:none}[data-ctype=teaser] .in_site_navigation a{-webkit-text-decoration:none;text-decoration:none;color:#232323}[data-ctype=teaser] .in_site_navigation a:hover,[data-ctype=teaser] .in_site_navigation a:focus{color:#9e0047}[data-ctype=teaser] .in_site_navigation strong{color:#232323}[data-ctype=teaser] .teaser-buttons *{color:#fff}[data-ctype=teaser] .teaser-image img{max-height:7.5rem;width:auto}@media(min-width: 768px){[data-ctype=teaser]{overflow:hidden}[data-ctype=teaser]>.container{background:rgba(0,0,0,0)}[data-ctype=teaser]>.container>.row>div:first-child,.ff-form-overrides .schemable-form-section [data-ctype=teaser]>.container>[class*=_sectionedContent]>div:first-child{z-index:1;padding-top:1rem;padding-right:1rem}html[dir=rtl] [data-ctype=teaser]>.container>.row>div:first-child,html[dir=rtl] .ff-form-overrides .schemable-form-section [data-ctype=teaser]>.container>[class*=_sectionedContent]>div:first-child,.ff-form-overrides .schemable-form-section html[dir=rtl] [data-ctype=teaser]>.container>[class*=_sectionedContent]>div:first-child{padding-left:1rem;padding-right:.5rem}}@media(min-width: 768px)and (min-width: 992px){[data-ctype=teaser]>.container>.row>div:first-child,.ff-form-overrides .schemable-form-section [data-ctype=teaser]>.container>[class*=_sectionedContent]>div:first-child{padding-right:2rem}html[dir=rtl] [data-ctype=teaser]>.container>.row>div:first-child,html[dir=rtl] .ff-form-overrides .schemable-form-section [data-ctype=teaser]>.container>[class*=_sectionedContent]>div:first-child,.ff-form-overrides .schemable-form-section html[dir=rtl] [data-ctype=teaser]>.container>[class*=_sectionedContent]>div:first-child{padding-left:2rem;padding-right:.5rem}}@media(min-width: 768px){[data-ctype=teaser]>.container>.row>div:first-child .background,.ff-form-overrides .schemable-form-section [data-ctype=teaser]>.container>[class*=_sectionedContent]>div:first-child .background{z-index:-1;opacity:.75;position:absolute;top:0;right:0;height:100%;width:999%}html[dir=rtl] [data-ctype=teaser]>.container>.row>div:first-child .background,html[dir=rtl] .ff-form-overrides .schemable-form-section [data-ctype=teaser]>.container>[class*=_sectionedContent]>div:first-child .background,.ff-form-overrides .schemable-form-section html[dir=rtl] [data-ctype=teaser]>.container>[class*=_sectionedContent]>div:first-child .background{right:auto;left:0}[data-ctype=teaser]>.container>.row>div:first-child .teaser-content,.ff-form-overrides .schemable-form-section [data-ctype=teaser]>.container>[class*=_sectionedContent]>div:first-child .teaser-content{display:flex;height:100%;flex-direction:column}[data-ctype=teaser]>.container>.row>div:last-child .teaser-image,.ff-form-overrides .schemable-form-section [data-ctype=teaser]>.container>[class*=_sectionedContent]>div:last-child .teaser-image{position:absolute;bottom:.5rem;right:.5rem}[data-ctype=teaser]>.ranking-image{display:none;visibility:hidden}}@media(max-width: 575.98px){[data-ctype=teaser] .teaser-buttons .row>div:last-child,[data-ctype=teaser] .teaser-buttons .ff-form-overrides .schemable-form-section [class*=_sectionedContent]>div:last-child,.ff-form-overrides .schemable-form-section [data-ctype=teaser] .teaser-buttons [class*=_sectionedContent]>div:last-child{margin-bottom:0}}.mfp-bg{top:0;left:0;width:100%;height:100%;z-index:1042;overflow:hidden;position:fixed;background:#0b0b0b;opacity:.8}.mfp-wrap{top:0;left:0;width:100%;height:100%;z-index:1043;position:fixed;outline:none !important;-webkit-backface-visibility:hidden}.mfp-container{text-align:center;position:absolute;width:100%;height:100%;left:0;top:0;padding:0 8px;box-sizing:border-box}.mfp-container:before{content:"";display:inline-block;height:100%;vertical-align:middle}.mfp-align-top .mfp-container:before{display:none}.mfp-content{position:relative;display:inline-block;vertical-align:middle;margin:0 auto;text-align:left;z-index:1045}.mfp-inline-holder .mfp-content,.mfp-ajax-holder .mfp-content{width:100%;cursor:auto}.mfp-ajax-cur{cursor:progress}.mfp-zoom-out-cur,.mfp-zoom-out-cur .mfp-image-holder .mfp-close{cursor:zoom-out}.mfp-zoom{cursor:pointer;cursor:zoom-in}.mfp-auto-cursor .mfp-content{cursor:auto}.mfp-close,.mfp-arrow,.mfp-preloader,.mfp-counter{-webkit-user-select:none;-moz-user-select:none;user-select:none}.mfp-loading.mfp-figure{display:none}.mfp-hide{display:none !important}.mfp-preloader{color:#ccc;position:absolute;top:50%;width:auto;text-align:center;margin-top:-0.8em;left:8px;right:8px;z-index:1044}.mfp-preloader a{color:#ccc}.mfp-preloader a:hover{color:#fff}.mfp-s-ready .mfp-preloader{display:none}.mfp-s-error .mfp-content{display:none}button.mfp-close,button.mfp-arrow{overflow:visible;cursor:pointer;background:rgba(0,0,0,0);border:0;-webkit-appearance:none;display:block;outline:none;padding:0;z-index:1046;box-shadow:none;touch-action:manipulation}button::-moz-focus-inner{padding:0;border:0}.mfp-close{width:44px;height:44px;line-height:44px;position:absolute;right:0;top:0;-webkit-text-decoration:none;text-decoration:none;text-align:center;opacity:.65;padding:0 0 18px 10px;color:#fff;font-style:normal;font-size:28px;font-family:Arial,Baskerville,monospace}.mfp-close:hover,.mfp-close:focus{opacity:1}.mfp-close:active{top:1px}.mfp-close-btn-in .mfp-close{color:#333}.mfp-image-holder .mfp-close,.mfp-iframe-holder .mfp-close{color:#fff;right:-6px;text-align:right;padding-right:6px;width:100%}.mfp-counter{position:absolute;top:0;right:0;color:#ccc;font-size:12px;line-height:18px;white-space:nowrap}.mfp-arrow{position:absolute;opacity:.65;margin:0;top:50%;margin-top:-55px;padding:0;width:90px;height:110px;-webkit-tap-highlight-color:rgba(0,0,0,0)}.mfp-arrow:active{margin-top:-54px}.mfp-arrow:hover,.mfp-arrow:focus{opacity:1}.mfp-arrow:before,.mfp-arrow:after{content:"";display:block;width:0;height:0;position:absolute;left:0;top:0;margin-top:35px;margin-left:35px;border:medium inset rgba(0,0,0,0)}.mfp-arrow:after{border-top-width:13px;border-bottom-width:13px;top:8px}.mfp-arrow:before{border-top-width:21px;border-bottom-width:21px;opacity:.7}.mfp-arrow-left{left:0}.mfp-arrow-left:after{border-right:17px solid #fff;margin-left:31px}.mfp-arrow-left:before{margin-left:25px;border-right:27px solid #3f3f3f}.mfp-arrow-right{right:0}.mfp-arrow-right:after{border-left:17px solid #fff;margin-left:39px}.mfp-arrow-right:before{border-left:27px solid #3f3f3f}.mfp-iframe-holder{padding-top:40px;padding-bottom:40px}.mfp-iframe-holder .mfp-content{line-height:0;width:100%;max-width:900px}.mfp-iframe-holder .mfp-close{top:-40px}.mfp-iframe-scaler{width:100%;height:0;overflow:hidden;padding-top:56.25%}.mfp-iframe-scaler iframe{position:absolute;display:block;top:0;left:0;width:100%;height:100%;box-shadow:0 0 8px rgba(0,0,0,.6);background:#000}img.mfp-img{width:auto;max-width:100%;height:auto;display:block;line-height:0;box-sizing:border-box;padding:40px 0 40px;margin:0 auto}.mfp-figure{line-height:0}.mfp-figure:after{content:"";position:absolute;left:0;top:40px;bottom:40px;display:block;right:0;width:auto;height:auto;z-index:-1;box-shadow:0 0 8px rgba(0,0,0,.6);background:#444}.mfp-figure small,.mfp-figure .small{color:#bdbdbd;display:block;font-size:12px;line-height:14px}.mfp-figure figure{margin:0}.mfp-bottom-bar{margin-top:-36px;position:absolute;top:100%;left:0;width:100%;cursor:auto}.mfp-title{text-align:left;line-height:18px;color:#f3f3f3;word-wrap:break-word;padding-right:36px}.mfp-image-holder .mfp-content{max-width:100%}.mfp-gallery .mfp-image-holder .mfp-figure{cursor:pointer}@media screen and (max-width: 800px)and (orientation: landscape),screen and (max-height: 300px){.mfp-img-mobile .mfp-image-holder{padding-left:0;padding-right:0}.mfp-img-mobile img.mfp-img{padding:0}.mfp-img-mobile .mfp-figure:after{top:0;bottom:0}.mfp-img-mobile .mfp-figure small,.mfp-img-mobile .mfp-figure .small{display:inline;margin-left:5px}.mfp-img-mobile .mfp-bottom-bar{background:rgba(0,0,0,.6);bottom:0;margin:0;top:auto;padding:3px 5px;position:fixed;box-sizing:border-box}.mfp-img-mobile .mfp-bottom-bar:empty{padding:0}.mfp-img-mobile .mfp-counter{right:5px;top:3px}.mfp-img-mobile .mfp-close{top:0;right:0;width:35px;height:35px;line-height:35px;background:rgba(0,0,0,.6);position:fixed;text-align:center;padding:0}}@media all and (max-width: 900px){.mfp-arrow{transform:scale(0.75)}.mfp-arrow-left{transform-origin:0}.mfp-arrow-right{transform-origin:100%}.mfp-container{padding-left:6px;padding-right:6px}}.mfp-with-zoom .mfp-container,.mfp-with-zoom.mfp-bg{opacity:0;-webkit-backface-visibility:hidden;transition:all .4s ease-out}.mfp-with-zoom.mfp-ready .mfp-container{opacity:1}.mfp-with-zoom.mfp-ready.mfp-bg{opacity:.8}.mfp-with-zoom.mfp-removing .mfp-container,.mfp-with-zoom.mfp-removing.mfp-bg{opacity:0}.glide .glide__arrow{position:absolute;display:inline-block;top:50%;transform:translate(0%, -50%);cursor:pointer}.glide .glide__arrow--right{right:0}.glide .glide__arrow--left{left:0}.glide .glide_imagetext{position:relative;bottom:4rem;left:2rem;padding:.75rem 1rem;padding-right:2.5rem;background:linear-gradient(225deg, #B4D790 0%, #88BBC3 100%);color:#232323;border-bottom-right-radius:2.5rem;display:inline}.glide img{user-drag:none;-webkit-user-drag:none;user-select:none;-moz-user-select:none;-webkit-user-select:none;-ms-user-select:none;pointer-events:none;border-radius:1.5rem}.slick-slider{position:relative;display:block;box-sizing:border-box;-webkit-touch-callout:none;-webkit-user-select:none;-moz-user-select:none;user-select:none;touch-action:pan-y;-webkit-tap-highlight-color:rgba(0,0,0,0)}.slick-list{position:relative;overflow:hidden;display:block;margin:0;padding:0}.slick-list:focus{outline:none}.slick-list.dragging{cursor:pointer;cursor:hand}.slick-slider .slick-track,.slick-slider .slick-list{transform:translate3d(0, 0, 0)}.slick-track{position:relative;left:0;top:0;display:block}.slick-track:before,.slick-track:after{content:"";display:table}.slick-track:after{clear:both}.slick-loading .slick-track{visibility:hidden}.slick-slide{float:left;height:100%;min-height:1px;display:none}[dir=rtl] .slick-slide{float:right}.slick-slide img{display:block}.slick-slide.slick-loading img{display:none}.slick-slide.dragging img{pointer-events:none}.slick-initialized .slick-slide{display:block}.slick-loading .slick-slide{visibility:hidden}.slick-vertical .slick-slide{display:block;height:auto;border:1px solid rgba(0,0,0,0)}.slick-arrow.slick-hidden{display:none}.glide__arrow{position:absolute;display:inline-block;top:50%;transform:translate(0%, -50%);cursor:pointer}.glide__arrow--right{right:0}.glide__arrow--left{left:0}[data-ctype=highlight]{background:#ebebeb;position:relative}[data-ctype=highlight] .background{position:absolute;width:100%;background:#fff;height:6.1111111111rem}[data-ctype=highlight] .highlighter{margin-top:1.5rem}[data-ctype=highlight] .highlighter:first-child{margin-top:0}@media(min-width: 576px){[data-ctype=highlight] .highlighter{margin-top:0}}[data-ctype=highlight] .highlighter--image{position:relative;display:block;overflow:hidden}[data-ctype=highlight] .highlighter--image img{transition:transform 300ms ease-in-out;transform:scale(1, 1)}[data-ctype=highlight] .highlighter--image:before{position:absolute;display:block;content:"";height:100%;width:100%;background:#4963f6;opacity:0;transition:opacity 275ms ease-in-out;z-index:1}[data-ctype=highlight] .highlighter--image div{position:absolute;bottom:0;left:50%;transform:translateX(-50%);border-radius:.3888888889rem .3888888889rem 0 0;padding:.5555555556rem 1.0555555556rem 3px;background:#ebebeb;line-height:0;z-index:2;transition:padding 250ms ease-in-out}[data-ctype=highlight] .highlighter--image div svg{height:.6666666667rem;width:.6666666667rem}[data-ctype=highlight] .highlighter--image:hover:before{opacity:.3}[data-ctype=highlight] .highlighter--image:hover img{transform:scale(1.05, 1.05)}[data-ctype=highlight] .highlighter--image:hover div{padding:.7777777778rem 1.1666666667rem 7px}[data-ctype=highlight] .highlighter--content{margin-top:1rem}[data-ctype=highlight] .highlighter--content .bodytext{margin-bottom:.5em}[data-ctype=accordion]{position:relative}.accordion .accordion-item{position:relative;transition:all .3s ease-in-out;border:solid 2px #4963f6;max-height:none;max-height:initial}.accordion .accordion-item svg,.accordion .accordion-item path{transition:all .3s ease-in-out}.accordion .accordion-item:has(.accordion-button[aria-expanded=true]){max-height:1000rem}.accordion .accordion-item .accordion-collapse{opacity:0;transition:all .3s ease-in-out;min-height:0px;margin-bottom:0rem}.accordion .accordion-item .accordion-collapse.show{opacity:1;min-height:0;min-height:initial;transition:opacity .3s ease-in-out, min-height .01s ease-in-out;height:-moz-fit-content;height:fit-content;margin-bottom:1rem}.accordion .accordion-item .accordion-button[aria-expanded=true] svg{transform:rotate(90deg)}.accordion .accordion-item .accordion-button[aria-expanded=true] svg .second{opacity:0}[data-ctype=teaseriframe] .embed-responsive-iframe-teaser{padding-bottom:25rem}[data-ctype=iframe] .embed-responsive{margin-bottom:1rem}[data-ctype=list][data-list-type=address_pi1] a svg,[data-ctype=list][data-list-type=address_pi1] a img,[data-ctype=list][data-list-type=address_pi5] a svg,[data-ctype=list][data-list-type=address_pi5] a img,[data-ctype=list][data-list-type=address_pi3] a svg,[data-ctype=list][data-list-type=address_pi3] a img,[data-ctype=list][data-list-type=address_pi4] a svg,[data-ctype=list][data-list-type=address_pi4] a img{display:inline-block}[data-ctype=list][data-list-type=address_pi1] a svg .bg,[data-ctype=list][data-list-type=address_pi1] a svg .fill,[data-ctype=list][data-list-type=address_pi5] a svg .bg,[data-ctype=list][data-list-type=address_pi5] a svg .fill,[data-ctype=list][data-list-type=address_pi3] a svg .bg,[data-ctype=list][data-list-type=address_pi3] a svg .fill,[data-ctype=list][data-list-type=address_pi4] a svg .bg,[data-ctype=list][data-list-type=address_pi4] a svg .fill{transition:fill ease-in-out 150ms}[data-layout="1"] [data-ctype=list][data-list-type=address_pi1] a svg .bg,[data-layout="1"] [data-ctype=list][data-list-type=address_pi1] a svg .bg,[data-layout="1"] [data-ctype=list][data-list-type=address_pi5] a svg .bg,[data-layout="1"] [data-ctype=list][data-list-type=address_pi5] a svg .bg,[data-layout="1"] [data-ctype=list][data-list-type=address_pi3] a svg .bg,[data-layout="1"] [data-ctype=list][data-list-type=address_pi3] a svg .bg,[data-layout="1"] [data-ctype=list][data-list-type=address_pi4] a svg .bg,[data-layout="1"] [data-ctype=list][data-list-type=address_pi4] a svg .bg{fill:#fff}[data-layout="2"] [data-ctype=list][data-list-type=address_pi1] a svg .bg,[data-layout="2"] [data-ctype=list][data-list-type=address_pi1] a svg .bg,[data-layout="2"] [data-ctype=list][data-list-type=address_pi5] a svg .bg,[data-layout="2"] [data-ctype=list][data-list-type=address_pi5] a svg .bg,[data-layout="2"] [data-ctype=list][data-list-type=address_pi3] a svg .bg,[data-layout="2"] [data-ctype=list][data-list-type=address_pi3] a svg .bg,[data-layout="2"] [data-ctype=list][data-list-type=address_pi4] a svg .bg,[data-layout="2"] [data-ctype=list][data-list-type=address_pi4] a svg .bg{fill:#4963f6}[data-layout="2"] [data-ctype=list][data-list-type=address_pi1] a svg .fill,[data-layout="2"] [data-ctype=list][data-list-type=address_pi1] a svg .fill,[data-layout="2"] [data-ctype=list][data-list-type=address_pi5] a svg .fill,[data-layout="2"] [data-ctype=list][data-list-type=address_pi5] a svg .fill,[data-layout="2"] [data-ctype=list][data-list-type=address_pi3] a svg .fill,[data-layout="2"] [data-ctype=list][data-list-type=address_pi3] a svg .fill,[data-layout="2"] [data-ctype=list][data-list-type=address_pi4] a svg .fill,[data-layout="2"] [data-ctype=list][data-list-type=address_pi4] a svg .fill{fill:#4963f6}[data-ctype=list][data-list-type=address_pi1] a:hover svg .bg,[data-ctype=list][data-list-type=address_pi5] a:hover svg .bg,[data-ctype=list][data-list-type=address_pi3] a:hover svg .bg,[data-ctype=list][data-list-type=address_pi4] a:hover svg .bg{fill:#333}[data-ctype=list][data-list-type=address_pi1] a:hover svg .fill,[data-ctype=list][data-list-type=address_pi5] a:hover svg .fill,[data-ctype=list][data-list-type=address_pi3] a:hover svg .fill,[data-ctype=list][data-list-type=address_pi4] a:hover svg .fill{fill:#eee}[data-layout="2"] [data-ctype=list][data-list-type=address_pi1] a:hover svg .bg,[data-layout="2"] [data-ctype=list][data-list-type=address_pi1] a:hover svg .bg,[data-layout="2"] [data-ctype=list][data-list-type=address_pi5] a:hover svg .bg,[data-layout="2"] [data-ctype=list][data-list-type=address_pi5] a:hover svg .bg,[data-layout="2"] [data-ctype=list][data-list-type=address_pi3] a:hover svg .bg,[data-layout="2"] [data-ctype=list][data-list-type=address_pi3] a:hover svg .bg,[data-layout="2"] [data-ctype=list][data-list-type=address_pi4] a:hover svg .bg,[data-layout="2"] [data-ctype=list][data-list-type=address_pi4] a:hover svg .bg{fill:#fff}[data-layout="2"] [data-ctype=list][data-list-type=address_pi1] a:hover svg .fill,[data-layout="2"] [data-ctype=list][data-list-type=address_pi1] a:hover svg .fill,[data-layout="2"] [data-ctype=list][data-list-type=address_pi5] a:hover svg .fill,[data-layout="2"] [data-ctype=list][data-list-type=address_pi5] a:hover svg .fill,[data-layout="2"] [data-ctype=list][data-list-type=address_pi3] a:hover svg .fill,[data-layout="2"] [data-ctype=list][data-list-type=address_pi3] a:hover svg .fill,[data-layout="2"] [data-ctype=list][data-list-type=address_pi4] a:hover svg .fill,[data-layout="2"] [data-ctype=list][data-list-type=address_pi4] a:hover svg .fill{fill:#4963f6}[data-ctype=list][data-list-type=address_pi3] .address{margin-bottom:0}[data-ctype=list][data-list-type=address_pi3] .address--networks a{line-height:1;display:inline-block;margin-right:.5555555556rem}[data-ctype=list][data-list-type=address_pi1] .address:not(:last-child),[data-ctype=list][data-list-type=address_pi5] .address:not(:last-child),[data-ctype=list][data-list-type=address_pi4] .address:not(:last-child){margin-bottom:1rem}[data-ctype=accordion] [data-ctype=list][data-list-type=address_pi1] .address:not(:last-child),[data-ctype=accordion] [data-ctype=list][data-list-type=address_pi5] .address:not(:last-child),[data-ctype=accordion] [data-ctype=list][data-list-type=address_pi4] .address:not(:last-child){margin-bottom:.5rem}@media(min-width: 576px){[data-ctype=list][data-list-type=address_pi1] .address>div[class^=col-]:first-child,[data-ctype=list][data-list-type=address_pi5] .address>div[class^=col-]:first-child,[data-ctype=list][data-list-type=address_pi4] .address>div[class^=col-]:first-child{padding-right:0}}[data-ctype=list][data-list-type=address_pi1] .address.two-column,[data-ctype=list][data-list-type=address_pi5] .address.two-column,[data-ctype=list][data-list-type=address_pi4] .address.two-column{margin-bottom:2rem}[data-ctype=list][data-list-type=address_pi1] .address picture,[data-ctype=list][data-list-type=address_pi5] .address picture,[data-ctype=list][data-list-type=address_pi4] .address picture{margin-bottom:1rem}[data-ctype=list][data-list-type=address_pi1] .address picture .image,[data-ctype=list][data-list-type=address_pi5] .address picture .image,[data-ctype=list][data-list-type=address_pi4] .address picture .image{max-width:100%;height:auto}[data-ctype=list][data-list-type=address_pi1] .address h4,[data-ctype=list][data-list-type=address_pi1] .address .h4,[data-ctype=list][data-list-type=address_pi5] .address h4,[data-ctype=list][data-list-type=address_pi5] .address .h4,[data-ctype=list][data-list-type=address_pi4] .address h4,[data-ctype=list][data-list-type=address_pi4] .address .h4{margin:0;color:inherit}[data-ctype=list][data-list-type=address_pi1] .address--function,[data-ctype=list][data-list-type=address_pi5] .address--function,[data-ctype=list][data-list-type=address_pi4] .address--function{font-style:italic}[data-ctype=list][data-list-type=address_pi1] .address--function-wrap,[data-ctype=list][data-list-type=address_pi5] .address--function-wrap,[data-ctype=list][data-list-type=address_pi4] .address--function-wrap{margin-bottom:.25rem}[data-ctype=list][data-list-type=address_pi1] .address--organization-wrap,[data-ctype=list][data-list-type=address_pi5] .address--organization-wrap,[data-ctype=list][data-list-type=address_pi4] .address--organization-wrap{margin-bottom:.25rem}[data-ctype=list][data-list-type=address_pi1] .address--contact,[data-ctype=list][data-list-type=address_pi5] .address--contact,[data-ctype=list][data-list-type=address_pi4] .address--contact{margin-bottom:.25rem}[data-ctype=list][data-list-type=address_pi1] .address--networks,[data-ctype=list][data-list-type=address_pi5] .address--networks,[data-ctype=list][data-list-type=address_pi4] .address--networks{position:relative;top:-4px}[data-ctype=list][data-list-type=address_pi1] .address--networks a,[data-ctype=list][data-list-type=address_pi5] .address--networks a,[data-ctype=list][data-list-type=address_pi4] .address--networks a{line-height:1;display:inline-block;margin-right:.5555555556rem}[data-ctype=list][data-list-type=address_pi1] .address--networks a:first-child,[data-ctype=list][data-list-type=address_pi5] .address--networks a:first-child,[data-ctype=list][data-list-type=address_pi4] .address--networks a:first-child{margin-right:1.9444444444rem}@media(min-width: 768px){[data-ctype=list][data-list-type=address_pi1] .address--profile:not(.small),[data-ctype=list][data-list-type=address_pi5] .address--profile:not(.small),[data-ctype=list][data-list-type=address_pi4] .address--profile:not(.small){position:absolute;bottom:0}}[data-ctype=list][data-list-type=address_pi1] .address .content div[class^=col-] p:last-child,[data-ctype=list][data-list-type=address_pi5] .address .content div[class^=col-] p:last-child,[data-ctype=list][data-list-type=address_pi4] .address .content div[class^=col-] p:last-child{margin-bottom:0}@media(max-width: 575.98px){[data-ctype=list][data-list-type=address_pi1] .address .content div[class^=col-]:first-child,[data-ctype=list][data-list-type=address_pi5] .address .content div[class^=col-]:first-child,[data-ctype=list][data-list-type=address_pi4] .address .content div[class^=col-]:first-child{margin-bottom:1rem}}[data-ctype=list][data-list-type=address_pi5] .vita-address{border-top:1px #d3d3d3 solid;display:table;width:100%}[data-ctype=list][data-list-type=address_pi5] .vita-address:before{display:table-cell;content:"";width:1.6666666667rem;background-color:#ebebeb}[data-ctype=list][data-list-type=address_pi5] .vita-address .vita-address-inner{display:table-cell;padding:1rem}@media(min-width: 576px){[data-ctype=list][data-list-type=address_pi5] .vita-address .col-sm-2{max-width:8.3333333333rem}}[data-ctype=list][data-list-type=address_pi5] .vita-address .address{margin-bottom:0}[data-layout="2"] .vita-address{border-color:#fff !important}[data-layout="1"] .vita-address:before{background-color:#fff !important}[data-layout="2"] .vita-address:before{background-color:rgb(97.2984293194,119.8272251309,247.2015706806) !important}[data-ctype=list][data-list-type=address_pi1] .address{margin-bottom:0}[data-list-type=nwcitavife_citavilist] .searchform input,[data-list-type=nwcitavife_citavilist] .searchform select,[data-list-type=nwcitavife_citavilist] .searchform .ff-form-overrides .ff-react-dropdown__control,.ff-form-overrides [data-list-type=nwcitavife_citavilist] .searchform .ff-react-dropdown__control{border-radius:.5rem;border-bottom:none;padding-bottom:.75rem;padding-top:.75rem}[data-list-type=nwcitavife_citavilist] .accordion .panel{position:relative;transition:all .3s ease-in-out;border:solid 2px #4963f6;max-height:none;max-height:initial;padding:1rem;border-radius:1.5rem;margin-bottom:1rem;cursor:pointer}[data-list-type=nwcitavife_citavilist] .accordion .title.citavi-title{font-size:1rem !important;margin:0;margin-right:2rem}[data-list-type=nwcitavife_citavilist] .accordion .heading::before{content:"+";position:absolute;right:1rem;font-size:24px;transition:all .3s ease-in-out;margin-top:-0.2rem}[data-list-type=nwcitavife_citavilist] .accordion .heading:not(.collapsed)::before{content:"−";transition:all .3s ease-in-out}[data-list-type=nwcitavife_citavilist] .nwcitavife_citavilist_paginator .current{color:#64002d;background:none;border:none;padding:0rem .75rem !important}[data-list-type=nwcitavife_citavilist] .nwcitavife_citavilist_paginator li{padding:0 !important;border:none}[data-list-type=nwcitavife_citavilist] .nwcitavife_citavilist_paginator a{padding:.5rem .75rem !important;-webkit-text-decoration:none;text-decoration:none}[data-list-type=nwcitavife_citavilist] .nwcitavife_citavilist_paginator a:hover{background:none}[data-list-type=nwcitavife_citavilist] button{display:inline-block;padding:.75em 1em;font-size:1rem;font-weight:normal;font-family:"SaansSemiMono-Web",SFMono-Regular,Menlo,Monaco,"Liberation Mono",monospace;line-height:1.2em;color:#fff !important;text-align:center;-webkit-text-decoration:none;text-decoration:none;white-space:wrap;vertical-align:middle;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;user-select:none;border:none;border-radius:.5rem;transition:all .13s ease-in-out;background-color:#4963f6;color:#fff !important}[data-list-type=nwcitavife_citavilist] button:hover,[data-list-type=nwcitavife_citavilist] button.hover{background-color:#3a4ec2;color:#fff;border-bottom:none}[data-list-type=nwcitavife_citavilist] button::before{display:none}[data-ctype=list][data-list-type=download_pi1] .download{margin-bottom:.5rem}[data-ctype=list][data-list-type=download_pi1] .download .media-left{padding-right:.5rem;box-sizing:content-box;width:85px}@media(min-width: 576px){[data-ctype=list][data-list-type=download_pi1] .download .media-left{width:125px}}@media(min-width: 768px){[data-ctype=list][data-list-type=download_pi1] .download .media-left{width:125px}}@media(min-width: 992px){[data-ctype=list][data-list-type=download_pi1] .download .media-left{width:120px}}@media(min-width: 1200px)and (min-height: 810px){[data-ctype=list][data-list-type=download_pi1] .download .media-left{width:150px}}[data-ctype=list][data-list-type=download_pi1] .download .media-left .image{max-width:100%;height:auto}[data-ctype=list][data-list-type=download_pi1] .download h3,[data-ctype=list][data-list-type=download_pi1] .download .h3{margin-bottom:0}[data-ctype=list][data-list-type=download_pi1] .download--subheading{margin:0}[data-ctype=list][data-list-type=download_pi1] .download--download{margin-top:.25rem}[data-ctype=list][data-list-type=download_pi1] footer.footer{border-top:2px #4963f6 solid;font-size:80%;padding-top:.5rem}[data-overlay-container=currency].overlay .overlay-container{margin-top:10vh}[data-overlay-container=currency].overlay .overlay-container .overlay-container-content *:not(.btn){color:#000 !important}[data-overlay-container=currency].overlay .overlay-container .overlay-container-content>.container{min-width:0;padding-top:.5rem;padding-bottom:.5rem;background:#fff}[data-overlay-container=currency].overlay .overlay-container .overlay-container-content>.container .currency--list{margin-bottom:1rem;border:1px solid #919191;border-top:0;max-height:25vh;overflow:hidden;overflow-y:scroll;border:#97d6df solid .1875rem !important}[data-overlay-container=currency].overlay .overlay-container .overlay-container-content>.container .currency--list-item{background:#fff;text-align:left;width:100%;border:0;outline:0;padding:.2rem .5rem}[data-overlay-container=currency].overlay .overlay-container .overlay-container-content>.container .currency--list-item:hover{background:#ebebeb}@keyframes animationCurrencyChanged{0%{background-color:#4963f6}100%{background-color:rgba(0,0,0,0)}}currency{display:inline-block}currency.changed{animation-name:animationCurrencyChanged;animation-duration:5s}.tx-go-maps-ext .gme-info-window p{margin-bottom:.5rem}.tx-go-maps-ext .gme-info-window p:last-child{margin-bottom:0}.tx-felogin-pi1{--bs-gutter-x: 1rem;--bs-gutter-y: 0;width:100%;padding-right:calc(1rem*.5);padding-right:calc(var(--bs-gutter-x)*.5);padding-left:calc(1rem*.5);padding-left:calc(var(--bs-gutter-x)*.5);margin-right:auto;margin-left:auto;padding-top:1rem;padding-bottom:0rem}@media(min-width: 576px){.tx-felogin-pi1{max-width:540px}}@media(min-width: 768px){.tx-felogin-pi1{max-width:720px}}@media(min-width: 992px){.tx-felogin-pi1{max-width:960px}}@media(min-width: 1200px)and (min-height: 810px){.tx-felogin-pi1{max-width:1200px}}@media(min-width: 1400px){.tx-felogin-pi1{max-width:1380px}}[data-ctype=card] a{-webkit-text-decoration:none !important;text-decoration:none !important}[data-ctype=card] a:hover{color:inherit !important}[data-ctype=card] .klu-card{display:flex;border-radius:1.5rem;margin-bottom:.5rem;transition:background-color .2s ease-in-out}[data-ctype=card] .klu-card--image img{max-height:6rem;width:auto;transition:all .2s ease-in-out}[data-ctype=card] .wrapper .klu-card:hover img,[data-ctype=card] .wrapper .klu-card:focus img{transform:translateY(-0.5rem)}[data-list-type=klupressreview_pi1] .pressreview-list-view{padding-top:1rem}[data-list-type=klupressreview_pi1] .pressreview-list-view__review{margin-bottom:1rem}[data-list-type=klupressreview_pi1] .pressreview-list-view__review-border{border:2px solid #ebebeb;height:100%;padding:1rem 1rem 0}[data-list-type=klupressreview_pi1] .pressreview-list-view__review__title{color:#232323}[data-list-type=klupressreview_pi1] .pressreview-list-view__review__subline{color:#919191}[data-list-type=klupressreview_pi1] .pressreview-list-view__read-more-bar:before{background:#4963f6;content:"";display:inline-block;height:2px;position:relative;top:-3px;width:100%}[data-list-type=klupressreview_pi1] .pressreview-list-view__read-more-link{padding-left:0}[data-list-type=klupressreview_pi1][data-layout="1"] .pressreview-list-view__review-border{border-color:#fff}.tour-teaser{height:39rem;background-color:rgba(0,0,0,.3);display:flex;align-items:flex-end;background-position:center center;background-size:cover}@media(max-width: 767.98px){.tour-teaser{height:33rem}}.header-landingpage{overflow:hidden}.header-landingpage h1,.header-landingpage .h1{font-size:2rem}.header-landingpage h2,.header-landingpage .h2{font-size:1.33rem}.header-landingpage h1,.header-landingpage .h1,.header-landingpage h2,.header-landingpage .h2{color:#fff}.header-landingpage h1:last-child,.header-landingpage .h1:last-child,.header-landingpage h2:last-child,.header-landingpage .h2:last-child{margin-bottom:0}.header-landingpage .blackbox .btn,.header-landingpage .blackbox .ff-form-overrides button,.ff-form-overrides .header-landingpage .blackbox button,.header-landingpage .blackbox .ff-form-overrides input[type=button],.ff-form-overrides .header-landingpage .blackbox input[type=button],.header-landingpage .blackbox .ff-form-overrides input[type=submit],.ff-form-overrides .header-landingpage .blackbox input[type=submit],.header-landingpage .blackbox .ff-form-overrides input[type=reset],.ff-form-overrides .header-landingpage .blackbox input[type=reset]{cursor:pointer;width:auto;display:inline-block;min-width:25%;max-width:60%;padding-right:3rem}@media(max-width: 767.98px){.header-landingpage .blackbox br{display:none}}.header-landingpage .blackbox::after{display:block;content:"";position:absolute;left:100%;top:0;background-color:#fff;width:50vw;height:100%;margin-top:5.56rem}.header-landingpage__image{height:33rem;margin-left:-5.5rem;margin-right:-5.5rem}.header-landingpage__image picture{display:inline;display:initial}.header-landingpage__image img{width:100%;height:100%;-o-object-fit:cover;object-fit:cover;-o-object-position:center;object-position:center}.header-landingpage__overlay{margin-top:-8.33rem}.header-landingpage__logo{width:100%;height:7rem;padding-top:1.5rem;margin-bottom:-7rem;position:relative;z-index:3;display:flex;justify-content:flex-end}.header-landingpage__logo img{width:6.95rem;height:5.56rem}.definition-list{padding-left:1.8rem;margin-bottom:0}.definition-list dt{font-size:1.33rem;font-weight:500;text-transform:uppercase;color:#000;display:block;position:relative}.definition-list dt img{width:1.5rem;height:1.5rem;left:-1.9rem;top:1.05rem;position:absolute;-o-object-fit:contain;object-fit:contain;-o-object-position:center;object-position:center;transform:translateY(-50%)}.definition-list dd{font-size:1rem;margin-top:-0.25rem;margin-bottom:.75rem}.videoslider{position:relative}@media(min-width: 768px){.videoslider{min-height:6rem}}.videoslider button.slick-arrow{background:rgba(0,0,0,0);border:0;outline:0;padding:0;width:2.77777778rem;height:2.77777778rem;opacity:.8;margin:.25rem 0}@media(max-width: 575.98px){.videoslider button.slick-arrow{margin:0 .25rem;margin-top:.6944445rem}}.videoslider button.slick-arrow:hover{opacity:1}.videoslider button.slick-arrow svg{width:100%;height:100%}[data-layout="2"] .videoslider button.slick-arrow svg path:first-child{fill:#fff}[data-layout="2"] .videoslider button.slick-arrow svg path:last-child{fill:#4963f6}[data-layout="100"] .videoslider button.slick-arrow{filter:drop-shadow(0 0 5px rgba(255, 255, 255, 0.05))}.videoslider .slick-list{color:red;margin-left:-0.5rem;margin-right:-0.5rem}.videoslider .slick-slide{padding:0 .5rem}.videoslider .slick-track{display:flex;align-items:center}.videoslider-nav{display:flex;justify-content:center}@media(min-width: 768px){.videoslider-nav{position:absolute;width:2.7777777778rem;height:100%;top:0;right:0;flex-direction:column-reverse}}@media(min-width: 768px){.videoslider-slides{margin-right:3.8888888889rem;overflow:hidden}}.videoslide__wrapper{position:relative;display:flex;align-items:center}@media(max-width: 575.98px){.videoslide__wrapper{flex-direction:column;align-items:stretch}}.videoslide__wrapper:before{content:"";display:block;position:absolute;top:0;bottom:0;right:0;left:17.1875rem;background:#444;border-radius:0.5555555556rem 0.5555555556rem 0.5555555556rem 0}@media(max-width: 767.98px){.videoslide__wrapper:before{left:11.979167rem}}@media(max-width: 575.98px){.videoslide__wrapper:before{left:0;top:9.88254rem}}@media(max-width: 575.98px){.videoslide__wrapper:before{left:0;top:22.5vw}}.videoslide__media,.videoslide__bodytext{position:relative;color:#fff}.videoslide__media *,.videoslide__bodytext *{color:inherit}.videoslide__media a:hover,.videoslide__bodytext a:hover{color:#d3d3d3}.videoslide__media{margin:1.2rem 0;border:1px solid #ebebeb;border-radius:0.5555555556rem 0.5555555556rem 0.5555555556rem 0;overflow:hidden}@media(min-width: 768px)and (max-width: 991.98px){.videoslide__media{flex:0 0 23.958334rem}}@media(min-width: 992px){.videoslide__media{flex:0 0 34.375rem}}@media(max-width: 575.98px){.videoslide__media{margin:0 1.38889rem}}.videoslide__bodytext{margin:1.2rem}@media(max-width: 575.98px){.videoslide__bodytext{margin:1.38889rem}}.videoslide__bodytext :first-child{margin-top:0 !important}.videoslide__bodytext :last-child{margin-bottom:0 !important}.videoslide__aspect-ratio{position:relative;padding-top:56.25%}.videoslide__aspect-ratio--inner{position:absolute;width:100%;height:100%;top:0;left:0}.videoslide__aspect-ratio img,.videoslide__aspect-ratio iframe{width:100%;height:100%;border:0;outline:0;box-shadow:none}.videoslide__aspect-ratio img{-o-object-fit:cover;object-fit:cover;-o-object-position:center;object-position:center}.rankings *{-webkit-text-decoration:none !important;text-decoration:none !important}.rating{display:flex;flex-direction:column;height:100%;overflow:hidden;transition:all .3s ease-in-out}.rating:hover img{transform:translateY(-0.5rem);transition:all .3s ease-in-out}.rating .tags{display:flex;flex-wrap:wrap;margin:-0.4rem -0.5rem;margin-top:auto !important}.rating .tag{display:block;background:#fff;padding:.25rem .5rem;margin:.4rem .5rem;border-radius:.1666666667rem .1666666667rem .1666666667rem 0;font-size:80%;line-height:1.25}.rating--highlight{box-shadow:0 0 0 .2777777778rem rgba(51,51,51,.25);transform-origin:center;transform:scale(1.02)}@media(min-width: 576px){.rating--highlight{transform:scale(1.0857142857)}}.rating__image{position:relative;height:0;padding-top:57.1428571429%}.rating__image.short{background-color:rgba(0,0,0,0)}.rating__image img{position:absolute;width:calc(100% - 2.2222222222rem);height:calc(100% - 2.2222222222rem);-o-object-fit:contain;object-fit:contain;-o-object-position:center;object-position:center;transition:all .3s ease-in-out;top:0;left:0;margin:1.1111111111rem}.rating__body{flex:0 1 100%;background-color:#ebebeb;display:flex;flex-direction:column;padding:1.1111111111rem;color:#212529}.rating__body *{color:inherit}[data-layout="0"] .rating__body{background-color:#eee}.dbc{max-width:390px;margin:0 auto;padding-top:1.667rem;padding-bottom:1.667rem}.dbc>div{padding-left:1.667rem;padding-right:1.667rem}.dbc .muted{color:#999}.dbc__vcard{margin-bottom:2.222rem;background-color:#eee;padding-top:2.222rem;padding-bottom:2.222rem}.dbc__content{margin-bottom:2.222rem}.dbc__content a{color:inherit !important}.dbc__content a:hover{color:inherit !important}.dbc__logo{width:5.5555555556rem;height:auto}.dbc__vcard-qr-code{display:block;width:9.7222222222rem;height:9.7222222222rem;margin-bottom:1.667rem;background-color:#fff}.dbc__header h1,.dbc__header .h1{color:#333}.dbc__header h1 span,.dbc__header .h1 span{margin-bottom:.5rem;font-size:1rem;text-transform:none;font-family:"Saans-Web",sans-serif;font-weight:bold}.dbc__address{list-style:none;padding:0;margin-bottom:1rem}.dbc__social{list-style:none;display:flex;max-width:100%;padding:0;margin-left:-0.25rem;margin-right:-0.25rem}.dbc__social li{padding:0 .25rem !important}.dbc__social li::before{display:none !important}.captchafox a::before{content:"" !important}.ff-form-overrides .schemable-field,.ff-form-overrides div[class*=schemable-form]{margin-bottom:2rem}.ff-form-overrides .schemable-field.schemable-form-marketing-policy-field,.ff-form-overrides div[class*=schemable-form].schemable-form-marketing-policy-field{margin-bottom:0}.ff-form-overrides input[type=radio]+label,.ff-form-overrides input[type=checkbox]+label{margin-bottom:1rem}.ff-form-overrides input[type=radio]+label::before,.ff-form-overrides input[type=checkbox]+label::before{top:auto;top:initial}.ff-form-overrides .ff-react-dropdown__input{margin-top:-0.8rem !important}.ff-form-overrides .ff-react-dropdown__input input{border:none !important;border-color:rgba(0,0,0,0) !important;background:rgba(0,0,0,0) !important}.ff-form-overrides .ff-react-dropdown__input input:focus,.ff-form-overrides .ff-react-dropdown__input input:focus-visible,.ff-form-overrides .ff-react-dropdown__input input:active{border:none !important;border-color:rgba(0,0,0,0) !important;background:rgba(0,0,0,0) !important}.ff-form-overrides .ff-react-dropdown__control .ff-react-dropdown__indicators{display:none}.ff-form-overrides .ff-react-dropdown__control .ff-react-dropdown__value-container,.ff-form-overrides .ff-react-dropdown__control .ff-react-dropdown__single-value{all:revert}.ff-form-overrides .ff-react-dropdown__control .ff-react-dropdown__value-container *{margin:0;padding:0}.ff-form-overrides .ff-react-dropdown__control .ff-react-dropdown__single-value{overflow:hidden;white-space:nowrap}.ff-form-overrides label{display:flex}.ff-form-overrides label>span{display:inline-block;overflow:hidden;width:1ch;text-overflow:clip;white-space:nowrap}.ff-form-overrides .schemable-form-submission-error-banner{cursor:default;color:inherit}.ff-form-overrides .schemable-form-submission-error-banner::before{display:none}.ff-form-overrides .schemable-form-submission-error-banner svg{display:none}.ff-form-overrides .schemable-form-submission-error-banner p,.ff-form-overrides p[class*=_errorMessage_],.ff-form-overrides div+div>p:first-child:last-child{margin-top:.25rem;background-color:#eb2800;padding:.25rem .5rem .25rem .5rem;border-radius:.5rem;color:#fff;display:inline-block;position:relative}.floating-element{position:fixed;z-index:1000;right:1rem;bottom:1rem;width:3rem}.floating-element a{display:block}.floating-element a img{max-width:100%;height:auto;filter:drop-shadow(0 0 8px rgba(0, 0, 0, 0.23)) drop-shadow(0 0 2px rgba(0, 0, 0, 0.3))}.textbox-container{position:relative}@media(min-width: 768px){.textbox-container{min-height:6rem}}.textbox-container .h-100{height:100%}[data-layout="100"] .textbox-container button.slick-arrow{filter:drop-shadow(0 0 5px rgba(255, 255, 255, 0.05))}.textbox-container .slick-list{color:#232323}.textbox-container .slick-track{display:flex;align-items:end}.textbox-container .textbox-nav{display:flex}@media(min-width: 992px){.textbox-container .textbox-nav{position:absolute;width:3rem;height:100%;top:0;right:0;flex-direction:column-reverse}}@media(min-width: 992px){.textbox-container .textboxes{margin-right:3rem;overflow:hidden}}@media(min-width: 992px){.textbox-container .textbox__container-text{padding-left:0;padding-right:0}}.textbox-container .textbox__htext{display:flex;align-items:center;line-height:1.25;font-size:1.77rem;text-align:right}.textbox-container .textbox__htext strong{color:#4963f6}@media(max-width: 767.98px){.textbox-container .textbox__htext{flex-direction:column;text-align:center}}.textbox-container .textbox__bodytext{position:relative}[data-layout="2"] .textbox-container .textbox__bodytext{color:#fff !important}.textbox-container .textbox__bodytext p{margin-bottom:0}.textbox-container .textbox__bodytext::before{content:"";border-top:5px solid #4963f6;width:72%;display:block;position:absolute;right:0;top:0;border-right:5px solid #4963f6;height:100%;border-top-right-radius:1rem;border-bottom-right-radius:1rem}[data-layout="2"] .textbox-container .textbox__bodytext::before{border-color:#fff}.textbox-container .textbox__bodytext::after{content:"";border-bottom:5px solid #4963f6;width:100%;display:block;position:absolute;right:0;bottom:0;border-right:5px solid #4963f6;height:100%;border-top-right-radius:1rem;border-bottom-right-radius:1rem}[data-layout="2"] .textbox-container .textbox__bodytext::after{border-color:#fff}.textbox-container .textbox__icon img{width:100%;padding-left:6rem;padding-top:1rem;padding-bottom:1.5rem;position:relative;top:50%;transform:translateY(-50%)}@media(max-width: 767.98px){.textbox-container .textbox__icon img{max-width:5rem;padding-left:0rem;margin-right:auto;margin-left:auto;margin-bottom:1rem}}[data-ctype=list][data-list-type=kluexperience_pi1] .typo3-widget-paginator{display:none}[data-ctype=list][data-list-type=kluexperience_pi1]>.container.ce-container{max-width:none;padding-left:0;padding-right:0}[data-ctype=list][data-list-type=kluexperience_pi1] .experience-container{--bs-gutter-x: 1rem;--bs-gutter-y: 0;width:100%;padding-right:calc(1rem*.5);padding-right:calc(var(--bs-gutter-x)*.5);padding-left:calc(1rem*.5);padding-left:calc(var(--bs-gutter-x)*.5);margin-right:auto;margin-left:auto}@media(min-width: 576px){[data-ctype=list][data-list-type=kluexperience_pi1] .experience-container{max-width:540px}}@media(min-width: 768px){[data-ctype=list][data-list-type=kluexperience_pi1] .experience-container{max-width:720px}}@media(min-width: 992px){[data-ctype=list][data-list-type=kluexperience_pi1] .experience-container{max-width:960px}}@media(min-width: 1200px)and (min-height: 810px){[data-ctype=list][data-list-type=kluexperience_pi1] .experience-container{max-width:1200px}}@media(min-width: 1400px){[data-ctype=list][data-list-type=kluexperience_pi1] .experience-container{max-width:1380px}}[data-ctype=list][data-list-type=kluexperience_pi1] .experience--filter{margin-bottom:0}[data-ctype=list][data-list-type=kluexperience_pi1] .experience--filter .container{min-width:0;--bs-gutter-x: 1rem;--bs-gutter-y: 0;width:100%;padding-right:calc(1rem*.5);padding-right:calc(var(--bs-gutter-x)*.5);padding-left:calc(1rem*.5);padding-left:calc(var(--bs-gutter-x)*.5);margin-right:auto;margin-left:auto;padding-top:.5rem;padding-bottom:-0.5rem}@media(min-width: 576px){[data-ctype=list][data-list-type=kluexperience_pi1] .experience--filter .container{max-width:540px}}@media(min-width: 768px){[data-ctype=list][data-list-type=kluexperience_pi1] .experience--filter .container{max-width:720px}}@media(min-width: 992px){[data-ctype=list][data-list-type=kluexperience_pi1] .experience--filter .container{max-width:960px}}@media(min-width: 1200px)and (min-height: 810px){[data-ctype=list][data-list-type=kluexperience_pi1] .experience--filter .container{max-width:1200px}}@media(min-width: 1400px){[data-ctype=list][data-list-type=kluexperience_pi1] .experience--filter .container{max-width:1380px}}[data-ctype=list][data-list-type=kluexperience_pi1] .experience--filter .container .experience--filter-toggle{display:block;text-align:center;color:#fff;margin-bottom:1rem}[data-ctype=list][data-list-type=kluexperience_pi1] .experience--filter .container .experience--filter-toggle.subfilter{color:#232323;margin:0}[data-ctype=list][data-list-type=kluexperience_pi1] .experience--filter .container .experience--filter-toggle::after{display:inline-block;width:0;height:0;margin-left:.3em;vertical-align:middle;content:"";border-bottom:.3em solid;border-right:.3em solid rgba(0,0,0,0);border-top:0;border-left:.3em solid rgba(0,0,0,0)}[data-ctype=list][data-list-type=kluexperience_pi1] .experience--filter .container .experience--filter-toggle.collapsed::after{border-bottom:0;border-top:.3em solid}@media(min-width: 768px){[data-ctype=list][data-list-type=kluexperience_pi1] .experience--filter .container .experience--filter-content--main{display:block;height:auto !important}}@media(min-width: 768px){[data-ctype=list][data-list-type=kluexperience_pi1] .experience--filter .container #mainFilter>div{display:inline-block}}[data-ctype=list][data-list-type=kluexperience_pi1] .experience--filter .container #mainFilter .link-check{margin-right:1rem;margin-bottom:1rem}[data-ctype=list][data-list-type=kluexperience_pi1] .experience--filter .container #subFilter h6,[data-ctype=list][data-list-type=kluexperience_pi1] .experience--filter .container #subFilter .h6{line-height:1.3333333333rem;margin-top:.2rem;margin-bottom:.3rem;color:inherit}[data-ctype=list][data-list-type=kluexperience_pi1] .experience--filter .container #subFilter .link-check{margin-bottom:.5rem}[data-ctype=list][data-list-type=kluexperience_pi1] .experience--filter.experience--subfilter{margin-bottom:1rem}[data-ctype=list][data-list-type=kluexperience_pi1] .experience--filter.experience--subfilter .container.ce-container{padding-top:.25rem;padding-bottom:.25rem}[data-ctype=list][data-list-type=kluexperience_pi1] .experience--notice{margin-bottom:1rem}[data-ctype=list][data-list-type=kluexperience_pi1] .experience--notice .close{opacity:.65}[data-ctype=list][data-list-type=kluexperience_pi1] .experience--notice .close:hover,[data-ctype=list][data-list-type=kluexperience_pi1] .experience--notice .close:focus{opacity:.95}[data-ctype=list][data-list-type=kluexperience_pi1] .experience--notice .alert-dismissible .close{right:0;color:inherit}@media(min-width: 768px){[data-ctype=list][data-list-type=kluexperience_pi1] .tile--section{height:38.8888888889rem}}@media(min-width: 992px){[data-ctype=list][data-list-type=kluexperience_pi1] .tile--section{height:38.8888888889rem}}[data-ctype=list][data-list-type=kluexperience_pi1] .tile--section .tile--section-inner{border:2px solid #ebebeb;border-radius:1.3888888889rem 1.3888888889rem 1.3888888889rem 0;padding:1rem}[data-ctype=list][data-list-type=kluexperience_pi1] .tile--section--header{position:relative}[data-ctype=list][data-list-type=kluexperience_pi1] .tile--section--header h5.h2,[data-ctype=list][data-list-type=kluexperience_pi1] .tile--section--header .h2.h5{color:#919191;margin-bottom:.2777777778rem}[data-ctype=list][data-list-type=kluexperience_pi1] .tile--section--header h4.h1,[data-ctype=list][data-list-type=kluexperience_pi1] .tile--section--header .h1.h4{margin:0}[data-ctype=list][data-list-type=kluexperience_pi1] .tile--section--header-icon{margin:0 0 0 .75rem !important;float:right}[data-ctype=list][data-list-type=kluexperience_pi1] .tile--section--header-icon img{width:3.3333333333rem;height:3.3333333333rem}[data-ctype=list][data-list-type=kluexperience_pi1] .tile--section .tile--section--row{margin-top:2.2222222222rem;margin-bottom:-1.5555555556rem}[data-ctype=list][data-list-type=kluexperience_pi1] .tile--section .tile--section--link{line-height:1}[data-ctype=list][data-list-type=kluexperience_pi1] .tile--section .tile--section--link .link{display:inline;color:#64002d}[data-ctype=list][data-list-type=kluexperience_pi1] .tile--section .tile--section--link .link:before{background:none;position:static;display:inline;height:auto;width:auto;opacity:1;transition:none 0s ease 0s;transition:initial}[data-ctype=list][data-list-type=kluexperience_pi1] .tile--section .tile--section--link .link:hover{color:#9e0047}[data-ctype=list][data-list-type=kluexperience_pi1] .tile--section .tile--section--link .link:hover:before{background:none;position:static;display:inline;height:auto;width:auto;opacity:1;transition:none 0s ease 0s;transition:initial}[data-ctype=list][data-list-type=kluexperience_pi1] .tile.row.columns,[data-ctype=list][data-list-type=kluexperience_pi1] .ff-form-overrides .schemable-form-section .tile.columns[class*=_sectionedContent],.ff-form-overrides .schemable-form-section [data-ctype=list][data-list-type=kluexperience_pi1] .tile.columns[class*=_sectionedContent]{padding-bottom:3rem;margin-bottom:2rem}[data-ctype=list][data-list-type=kluexperience_pi1] .tile.row.columns .tile--col a,[data-ctype=list][data-list-type=kluexperience_pi1] .ff-form-overrides .schemable-form-section .tile.columns[class*=_sectionedContent] .tile--col a,.ff-form-overrides .schemable-form-section [data-ctype=list][data-list-type=kluexperience_pi1] .tile.columns[class*=_sectionedContent] .tile--col a{height:13.6111111111rem !important}@media(min-width: 576px){[data-ctype=list][data-list-type=kluexperience_pi1] .tile.row.columns .tile--col a,[data-ctype=list][data-list-type=kluexperience_pi1] .ff-form-overrides .schemable-form-section .tile.columns[class*=_sectionedContent] .tile--col a,.ff-form-overrides .schemable-form-section [data-ctype=list][data-list-type=kluexperience_pi1] .tile.columns[class*=_sectionedContent] .tile--col a{height:12.3611111111rem !important}}@media(min-width: 768px){[data-ctype=list][data-list-type=kluexperience_pi1] .tile.row.columns .tile--col a,[data-ctype=list][data-list-type=kluexperience_pi1] .ff-form-overrides .schemable-form-section .tile.columns[class*=_sectionedContent] .tile--col a,.ff-form-overrides .schemable-form-section [data-ctype=list][data-list-type=kluexperience_pi1] .tile.columns[class*=_sectionedContent] .tile--col a{height:11.1111111111rem !important}}[data-ctype=list][data-list-type=kluexperience_pi1] .tile.row.columns .tile--col a img,[data-ctype=list][data-list-type=kluexperience_pi1] .ff-form-overrides .schemable-form-section .tile.columns[class*=_sectionedContent] .tile--col a img,.ff-form-overrides .schemable-form-section [data-ctype=list][data-list-type=kluexperience_pi1] .tile.columns[class*=_sectionedContent] .tile--col a img{width:100%;height:auto}@media(min-width: 576px){[data-ctype=list][data-list-type=kluexperience_pi1] .tile.row.columns .tile--col.col-h-2 a,[data-ctype=list][data-list-type=kluexperience_pi1] .ff-form-overrides .schemable-form-section .tile.columns[class*=_sectionedContent] .tile--col.col-h-2 a,.ff-form-overrides .schemable-form-section [data-ctype=list][data-list-type=kluexperience_pi1] .tile.columns[class*=_sectionedContent] .tile--col.col-h-2 a{height:85% !important}[data-ctype=list][data-list-type=kluexperience_pi1] .tile.row.columns .tile--col.col-h-2 a img,[data-ctype=list][data-list-type=kluexperience_pi1] .ff-form-overrides .schemable-form-section .tile.columns[class*=_sectionedContent] .tile--col.col-h-2 a img,.ff-form-overrides .schemable-form-section [data-ctype=list][data-list-type=kluexperience_pi1] .tile.columns[class*=_sectionedContent] .tile--col.col-h-2 a img{height:100%;width:auto}}@media(min-width: 576px)and (min-width: 576px){[data-ctype=list][data-list-type=kluexperience_pi1] .tile.row.columns .tile--col.col-h-2 a,[data-ctype=list][data-list-type=kluexperience_pi1] .ff-form-overrides .schemable-form-section .tile.columns[class*=_sectionedContent] .tile--col.col-h-2 a,.ff-form-overrides .schemable-form-section [data-ctype=list][data-list-type=kluexperience_pi1] .tile.columns[class*=_sectionedContent] .tile--col.col-h-2 a{height:27.5rem !important}}@media(min-width: 576px)and (min-width: 768px){[data-ctype=list][data-list-type=kluexperience_pi1] .tile.row.columns .tile--col.col-h-2 a,[data-ctype=list][data-list-type=kluexperience_pi1] .ff-form-overrides .schemable-form-section .tile.columns[class*=_sectionedContent] .tile--col.col-h-2 a,.ff-form-overrides .schemable-form-section [data-ctype=list][data-list-type=kluexperience_pi1] .tile.columns[class*=_sectionedContent] .tile--col.col-h-2 a{height:25rem !important}}@media(min-width: 544px)and (max-width: 767px){[data-ctype=list][data-list-type=kluexperience_pi1] .tile.row.columns .tile--col a img,[data-ctype=list][data-list-type=kluexperience_pi1] .ff-form-overrides .schemable-form-section .tile.columns[class*=_sectionedContent] .tile--col a img,.ff-form-overrides .schemable-form-section [data-ctype=list][data-list-type=kluexperience_pi1] .tile.columns[class*=_sectionedContent] .tile--col a img{width:auto;height:100%;max-width:none}}[data-ctype=list][data-list-type=kluexperience_pi1] .tile.row.columns .tile--col[class^=tile--event] h3,[data-ctype=list][data-list-type=kluexperience_pi1] .ff-form-overrides .schemable-form-section .tile.columns[class*=_sectionedContent] .tile--col[class^=tile--event] h3,.ff-form-overrides .schemable-form-section [data-ctype=list][data-list-type=kluexperience_pi1] .tile.columns[class*=_sectionedContent] .tile--col[class^=tile--event] h3,[data-ctype=list][data-list-type=kluexperience_pi1] .tile.row.columns .tile--col[class^=tile--event] .h3,[data-ctype=list][data-list-type=kluexperience_pi1] .ff-form-overrides .schemable-form-section .tile.columns[class*=_sectionedContent] .tile--col[class^=tile--event] .h3,.ff-form-overrides .schemable-form-section [data-ctype=list][data-list-type=kluexperience_pi1] .tile.columns[class*=_sectionedContent] .tile--col[class^=tile--event] .h3{margin-top:.5rem}@media(min-width: 768px){[data-ctype=list][data-list-type=kluexperience_pi1] .tile.row.columns .tile--col[class^=tile--event] h3,[data-ctype=list][data-list-type=kluexperience_pi1] .ff-form-overrides .schemable-form-section .tile.columns[class*=_sectionedContent] .tile--col[class^=tile--event] h3,.ff-form-overrides .schemable-form-section [data-ctype=list][data-list-type=kluexperience_pi1] .tile.columns[class*=_sectionedContent] .tile--col[class^=tile--event] h3,[data-ctype=list][data-list-type=kluexperience_pi1] .tile.row.columns .tile--col[class^=tile--event] .h3,[data-ctype=list][data-list-type=kluexperience_pi1] .ff-form-overrides .schemable-form-section .tile.columns[class*=_sectionedContent] .tile--col[class^=tile--event] .h3,.ff-form-overrides .schemable-form-section [data-ctype=list][data-list-type=kluexperience_pi1] .tile.columns[class*=_sectionedContent] .tile--col[class^=tile--event] .h3{margin-top:.5rem}}[data-ctype=list][data-list-type=kluexperience_pi1] .tile.row.columns .ias-spinner,[data-ctype=list][data-list-type=kluexperience_pi1] .ff-form-overrides .schemable-form-section .tile.columns[class*=_sectionedContent] .ias-spinner,.ff-form-overrides .schemable-form-section [data-ctype=list][data-list-type=kluexperience_pi1] .tile.columns[class*=_sectionedContent] .ias-spinner,[data-ctype=list][data-list-type=kluexperience_pi1] .tile.row.columns .ias-noneleft,[data-ctype=list][data-list-type=kluexperience_pi1] .ff-form-overrides .schemable-form-section .tile.columns[class*=_sectionedContent] .ias-noneleft,.ff-form-overrides .schemable-form-section [data-ctype=list][data-list-type=kluexperience_pi1] .tile.columns[class*=_sectionedContent] .ias-noneleft{text-align:center;position:absolute;bottom:0;width:100%;vertical-align:middle}[data-ctype=list][data-list-type=kluexperience_pi3]>.container.ce-container{max-width:none;padding-left:0;padding-right:0}[data-ctype=list][data-list-type=kluexperience_pi3] .detail-container:not(.detail--break-out){--bs-gutter-x: 1rem;--bs-gutter-y: 0;width:100%;padding-right:calc(1rem*.5);padding-right:calc(var(--bs-gutter-x)*.5);padding-left:calc(1rem*.5);padding-left:calc(var(--bs-gutter-x)*.5);margin-right:auto;margin-left:auto}@media(min-width: 576px){[data-ctype=list][data-list-type=kluexperience_pi3] .detail-container:not(.detail--break-out){max-width:540px}}@media(min-width: 768px){[data-ctype=list][data-list-type=kluexperience_pi3] .detail-container:not(.detail--break-out){max-width:720px}}@media(min-width: 992px){[data-ctype=list][data-list-type=kluexperience_pi3] .detail-container:not(.detail--break-out){max-width:960px}}@media(min-width: 1200px)and (min-height: 810px){[data-ctype=list][data-list-type=kluexperience_pi3] .detail-container:not(.detail--break-out){max-width:1200px}}@media(min-width: 1400px){[data-ctype=list][data-list-type=kluexperience_pi3] .detail-container:not(.detail--break-out){max-width:1380px}}[data-ctype=list][data-list-type=kluexperience_pi3] .detail--options{margin-bottom:1rem}[data-ctype=list][data-list-type=kluexperience_pi3] .detail--options .container{min-width:0;--bs-gutter-x: 1rem;--bs-gutter-y: 0;width:100%;padding-right:calc(1rem*.5);padding-right:calc(var(--bs-gutter-x)*.5);padding-left:calc(1rem*.5);padding-left:calc(var(--bs-gutter-x)*.5);margin-right:auto;margin-left:auto;padding-top:.5rem;padding-bottom:.5rem}@media(min-width: 576px){[data-ctype=list][data-list-type=kluexperience_pi3] .detail--options .container{max-width:540px}}@media(min-width: 768px){[data-ctype=list][data-list-type=kluexperience_pi3] .detail--options .container{max-width:720px}}@media(min-width: 992px){[data-ctype=list][data-list-type=kluexperience_pi3] .detail--options .container{max-width:960px}}@media(min-width: 1200px)and (min-height: 810px){[data-ctype=list][data-list-type=kluexperience_pi3] .detail--options .container{max-width:1200px}}@media(min-width: 1400px){[data-ctype=list][data-list-type=kluexperience_pi3] .detail--options .container{max-width:1380px}}[data-ctype=list][data-list-type=kluexperience_pi3] .detail--options .container a{color:#fff;display:inline-block;vertical-align:middle;opacity:.75;transition:opacity 100ms}[data-ctype=list][data-list-type=kluexperience_pi3] .detail--options .container a:hover,[data-ctype=list][data-list-type=kluexperience_pi3] .detail--options .container a:focus{opacity:1}[data-ctype=list][data-list-type=kluexperience_pi3] .detail--options .container a svg,[data-ctype=list][data-list-type=kluexperience_pi3] .detail--options .container a span{display:inline-block;vertical-align:middle}[data-ctype=list][data-list-type=kluexperience_pi3] .detail header svg.icon{width:1.3333333333rem;height:auto}[data-ctype=list][data-list-type=kluexperience_pi3] .detail--teaser-image{margin:.5rem 0 1rem}[data-ctype=list][data-list-type=kluexperience_pi3] .detail--teaser-image a img{width:100%;height:auto;transition:transform 300ms ease-in-out;transform:scale(1, 1)}[data-ctype=list][data-list-type=kluexperience_pi3] .detail--teaser-image a.zoom{position:relative;display:block;overflow:hidden;border-radius:1.5rem}[data-ctype=list][data-list-type=kluexperience_pi3] .detail--teaser-image a.zoom:before{position:absolute;display:block;content:"";height:100%;width:100%;background:#4963f6;opacity:0;transition:opacity 275ms ease-in-out;z-index:1}[data-ctype=list][data-list-type=kluexperience_pi3] .detail--teaser-image a.zoom:hover:before{opacity:.3}[data-ctype=list][data-list-type=kluexperience_pi3] .detail--teaser-image a.zoom:hover img{transform:scale(1.05, 1.05)}[data-ctype=list][data-list-type=kluexperience_pi3] .detail .subheading{line-height:1.5}[data-ctype=list][data-list-type=kluexperience_pi3] .detail .gallery{margin-top:1rem}[data-ctype=list][data-list-type=kluexperience_pi3] .detail .gallery-media{margin-bottom:1rem}[data-ctype=list][data-list-type=kluexperience_pi3] .detail .gallery-media figcaption{margin-top:.2rem}[data-ctype=list][data-list-type=kluexperience_pi3] .detail .gallery-media a img{width:100%;height:auto;transition:transform 300ms ease-in-out;transform:scale(1, 1)}[data-ctype=list][data-list-type=kluexperience_pi3] .detail .gallery-media a.zoom{position:relative;display:block;overflow:hidden;border-radius:1.5rem}[data-ctype=list][data-list-type=kluexperience_pi3] .detail .gallery-media a.zoom:before{position:absolute;display:block;content:"";height:100%;width:100%;background:#4963f6;opacity:0;transition:opacity 275ms ease-in-out;z-index:1}[data-ctype=list][data-list-type=kluexperience_pi3] .detail .gallery-media a.zoom:hover:before{opacity:.3}[data-ctype=list][data-list-type=kluexperience_pi3] .detail .gallery-media a.zoom:hover img{transform:scale(1.05, 1.05)}[data-ctype=list][data-list-type=kluexperience_pi3] .detail [class^=detail--article] time{margin-bottom:1rem;display:inline-block;color:#919191}[data-ctype=list][data-list-type=kluexperience_pi3] .detail--event .detail--teaser-image{margin-bottom:2rem}[data-ctype=list][data-list-type=kluexperience_pi3] .detail--event-infobox{background:#ebebeb;border:#ebebeb 2px solid;margin-bottom:2rem;line-height:1.2}[data-ctype=list][data-list-type=kluexperience_pi3] .detail--event-infobox--inner{padding:1rem 1rem 0 1rem}[data-ctype=list][data-list-type=kluexperience_pi3] .detail--event-infobox--box{background-position:0 2px;background-repeat:no-repeat;background-size:1.3rem 1.3rem;padding-left:1.5555555556rem}[data-ctype=list][data-list-type=kluexperience_pi3] .detail--event-infobox--box__datetime svg{width:6rem !important}[data-ctype=list][data-list-type=kluexperience_pi3] .detail--event-infobox--box__datetime.past{color:#919191}[data-ctype=list][data-list-type=kluexperience_pi3] .detail--event-infobox--box__datetime.past .text-past{color:#212529;font-weight:bolder}[data-ctype=list][data-list-type=kluexperience_pi3] .detail--event-infobox--box__datetime.past strong{font-weight:normal}[data-ctype=list][data-list-type=kluexperience_pi3] .detail--event-infobox--box__location{background-image:url(../Assets/icon-pin.svg)}[data-ctype=list][data-list-type=kluexperience_pi3] .detail--event-infobox--box__online-event{background-image:url(../Assets/icon-onlineEvent.svg)}[data-ctype=list][data-list-type=kluexperience_pi3] .detail--event-infobox--box__spoken-language{background-image:url(../Assets/icon-spoken-language.svg)}[data-ctype=list][data-list-type=kluexperience_pi3] .detail--event-infobox--box__simultaneous-translation{background-image:url(../Assets/icon-simultaneous-translation.svg)}[data-ctype=list][data-list-type=kluexperience_pi3] .detail--event-infobox--switch{text-align:center;padding:.5rem}[data-ctype=list][data-list-type=kluexperience_pi3] .detail--event-infobox--switch a{display:inline-block}[data-ctype=list][data-list-type=kluexperience_pi3] .detail--event-infobox--switch a svg{height:auto;width:1.3333333333rem;vertical-align:middle}[data-ctype=list][data-list-type=kluexperience_pi3] .detail--event-infoboxold{background:#ebebeb;margin-bottom:2rem;padding:1rem .5rem}[data-ctype=list][data-list-type=kluexperience_pi3] .detail--event-infoboxold li{padding-left:1.5rem;margin-bottom:.3rem;background-repeat:no-repeat;background-position:left .2rem;background-size:1rem 1rem}[data-ctype=list][data-list-type=kluexperience_pi3] .detail--event-infoboxold--datetime{background-image:url(../Assets/icon-clock.svg)}[data-ctype=list][data-list-type=kluexperience_pi3] .detail--event-infoboxold--datetime.past{color:#919191}[data-ctype=list][data-list-type=kluexperience_pi3] .detail--event-infoboxold--datetime.past span{color:#212529}[data-ctype=list][data-list-type=kluexperience_pi3] .detail--event-infoboxold--location{background-image:url(../Assets/icon-pin.svg)}[data-ctype=list][data-list-type=kluexperience_pi3] .detail--event-infoboxold--category{background-image:url(../Assets/icon-tag.svg)}[data-ctype=list][data-list-type=kluexperience_pi3] .detail--event .bodytext{margin-bottom:.5rem}[data-ctype=list][data-list-type=kluexperience_pi3] .detail .organizers-mb{margin-bottom:1.5rem}[data-ctype=list][data-list-type=kluexperience_pi3] .detail--quote .media-left{padding-right:.5rem;box-sizing:content-box;width:85px}@media(min-width: 576px){[data-ctype=list][data-list-type=kluexperience_pi3] .detail--quote .media-left{width:125px}}@media(min-width: 768px){[data-ctype=list][data-list-type=kluexperience_pi3] .detail--quote .media-left{width:125px}}@media(min-width: 992px){[data-ctype=list][data-list-type=kluexperience_pi3] .detail--quote .media-left{width:120px}}@media(min-width: 1200px)and (min-height: 810px){[data-ctype=list][data-list-type=kluexperience_pi3] .detail--quote .media-left{width:150px}}[data-ctype=list][data-list-type=kluexperience_pi3] .detail--quote blockquote{font-style:italic;margin:0}[data-ctype=list][data-list-type=kluexperience_pi3] .detail--quote blockquote p:first-child:before{content:"„"}[data-ctype=list][data-list-type=kluexperience_pi3] .detail--quote blockquote p:last-child{margin-bottom:.5rem}[data-ctype=list][data-list-type=kluexperience_pi3] .detail--quote blockquote p:last-child:after{content:"“"}[data-ctype=list][data-list-type=kluexperience_pi3] .detail--quote .bottom-line{color:#919191}[data-ctype=list][data-list-type=kluexperience_pi3] .detail--ask-a-student--container{padding-top:1rem;padding-bottom:0rem}[data-ctype=list][data-list-type=kluexperience_pi3] .detail--ask-a-student--container:first-child{padding-top:0}[data-ctype=list][data-list-type=kluexperience_pi3] .detail--ask-a-student--container:nth-child(2n){background:#ebebeb}[data-ctype=list][data-list-type=kluexperience_pi3] .detail--ask-a-student--container--bio--ask{margin:0 0 .5rem}[data-ctype=list][data-list-type=kluexperience_pi3] .detail--ask-a-student--container--photo{margin:0 0 2rem}@media(min-width: 576px){[data-ctype=list][data-list-type=kluexperience_pi3] .detail--ask-a-student--container--photo{padding-left:.5rem;box-sizing:content-box;float:right;margin-bottom:0;width:11.1111111111rem}}@media(min-width: 768px){[data-ctype=list][data-list-type=kluexperience_pi3] .detail--ask-a-student--container--photo{width:13.8888888889rem}}@media(min-width: 992px){[data-ctype=list][data-list-type=kluexperience_pi3] .detail--ask-a-student--container--photo{width:13.8888888889rem}}@media(min-width: 1200px)and (min-height: 810px){[data-ctype=list][data-list-type=kluexperience_pi3] .detail--ask-a-student--container--photo{width:13.8888888889rem}}[data-ctype=list][data-list-type=kluexperience_pi3] .detail--ask-a-student--container--quote{font-style:italic}[data-ctype=list][data-list-type=kluexperience_pi3] .detail--ask-a-student--container--text h2,[data-ctype=list][data-list-type=kluexperience_pi3] .detail--ask-a-student--container--text .h2{margin-top:3rem}[data-ctype=list][data-list-type=kluexperience_pi3] .detail--ask-a-student--container--text h2:first-child,[data-ctype=list][data-list-type=kluexperience_pi3] .detail--ask-a-student--container--text .h2:first-child{margin-top:0}[data-ctype=list][data-list-type=kluexperience_pi3] .detail--ask-a-student--container--shariff .shariff-container{margin-top:0}[data-ctype=list][data-list-type=insocial_pi1] p.bodytext.no-content,[data-ctype=list][data-list-type=kluexperience_pi1] p.bodytext.no-content,[data-ctype=list][data-list-type=kluexperience_pi2] p.bodytext.no-content,[data-ctype=list][data-list-type=kluexperience_pi10] p.bodytext.no-content,[data-ctype=list][data-list-type=kluexperience_pi11] p.bodytext.no-content,[data-ctype=list][data-list-type=kluexperience_pi12] p.bodytext.no-content,[data-ctype=tile] p.bodytext.no-content{font-style:italic}[data-ctype=list][data-list-type=insocial_pi1] .typo3-widget-paginator,[data-ctype=list][data-list-type=kluexperience_pi1] .typo3-widget-paginator,[data-ctype=list][data-list-type=kluexperience_pi2] .typo3-widget-paginator,[data-ctype=list][data-list-type=kluexperience_pi10] .typo3-widget-paginator,[data-ctype=list][data-list-type=kluexperience_pi11] .typo3-widget-paginator,[data-ctype=list][data-list-type=kluexperience_pi12] .typo3-widget-paginator,[data-ctype=tile] .typo3-widget-paginator{display:none}[data-ctype=list][data-list-type=insocial_pi1] .tile,[data-ctype=list][data-list-type=kluexperience_pi1] .tile,[data-ctype=list][data-list-type=kluexperience_pi2] .tile,[data-ctype=list][data-list-type=kluexperience_pi10] .tile,[data-ctype=list][data-list-type=kluexperience_pi11] .tile,[data-ctype=list][data-list-type=kluexperience_pi12] .tile,[data-ctype=tile] .tile{margin-bottom:0rem}[data-ctype=list][data-list-type=insocial_pi1] .tile--col,[data-ctype=list][data-list-type=kluexperience_pi1] .tile--col,[data-ctype=list][data-list-type=kluexperience_pi2] .tile--col,[data-ctype=list][data-list-type=kluexperience_pi10] .tile--col,[data-ctype=list][data-list-type=kluexperience_pi11] .tile--col,[data-ctype=list][data-list-type=kluexperience_pi12] .tile--col,[data-ctype=tile] .tile--col{margin-bottom:1rem}[data-ctype=list][data-list-type=insocial_pi1] .tile a:not(.eventlink),[data-ctype=list][data-list-type=kluexperience_pi1] .tile a:not(.eventlink),[data-ctype=list][data-list-type=kluexperience_pi2] .tile a:not(.eventlink),[data-ctype=list][data-list-type=kluexperience_pi10] .tile a:not(.eventlink),[data-ctype=list][data-list-type=kluexperience_pi11] .tile a:not(.eventlink),[data-ctype=list][data-list-type=kluexperience_pi12] .tile a:not(.eventlink),[data-ctype=tile] .tile a:not(.eventlink){position:relative;display:block;color:#fff;overflow:hidden}[data-ctype=list][data-list-type=insocial_pi1] .tile a:not(.eventlink) img,[data-ctype=list][data-list-type=kluexperience_pi1] .tile a:not(.eventlink) img,[data-ctype=list][data-list-type=kluexperience_pi2] .tile a:not(.eventlink) img,[data-ctype=list][data-list-type=kluexperience_pi10] .tile a:not(.eventlink) img,[data-ctype=list][data-list-type=kluexperience_pi11] .tile a:not(.eventlink) img,[data-ctype=list][data-list-type=kluexperience_pi12] .tile a:not(.eventlink) img,[data-ctype=tile] .tile a:not(.eventlink) img{transition:transform 300ms ease-in-out;transform:scale(1, 1);width:100%}[data-ctype=list][data-list-type=insocial_pi1] .tile a:not(.eventlink):hover:before,[data-ctype=list][data-list-type=kluexperience_pi1] .tile a:not(.eventlink):hover:before,[data-ctype=list][data-list-type=kluexperience_pi2] .tile a:not(.eventlink):hover:before,[data-ctype=list][data-list-type=kluexperience_pi10] .tile a:not(.eventlink):hover:before,[data-ctype=list][data-list-type=kluexperience_pi11] .tile a:not(.eventlink):hover:before,[data-ctype=list][data-list-type=kluexperience_pi12] .tile a:not(.eventlink):hover:before,[data-ctype=tile] .tile a:not(.eventlink):hover:before{opacity:.3}[data-ctype=list][data-list-type=insocial_pi1] .tile a:not(.eventlink):hover img,[data-ctype=list][data-list-type=kluexperience_pi1] .tile a:not(.eventlink):hover img,[data-ctype=list][data-list-type=kluexperience_pi2] .tile a:not(.eventlink):hover img,[data-ctype=list][data-list-type=kluexperience_pi10] .tile a:not(.eventlink):hover img,[data-ctype=list][data-list-type=kluexperience_pi11] .tile a:not(.eventlink):hover img,[data-ctype=list][data-list-type=kluexperience_pi12] .tile a:not(.eventlink):hover img,[data-ctype=tile] .tile a:not(.eventlink):hover img{transform:scale(1.05, 1.05)}[data-ctype=list][data-list-type=insocial_pi1] .tile a:not(.eventlink) .content,[data-ctype=list][data-list-type=kluexperience_pi1] .tile a:not(.eventlink) .content,[data-ctype=list][data-list-type=kluexperience_pi2] .tile a:not(.eventlink) .content,[data-ctype=list][data-list-type=kluexperience_pi10] .tile a:not(.eventlink) .content,[data-ctype=list][data-list-type=kluexperience_pi11] .tile a:not(.eventlink) .content,[data-ctype=list][data-list-type=kluexperience_pi12] .tile a:not(.eventlink) .content,[data-ctype=tile] .tile a:not(.eventlink) .content{position:absolute;left:0;bottom:0;width:100%;z-index:2;padding:.5555555556rem 2.3rem .5555555556rem .5555555556rem}@media(max-width: 575.98px){[data-ctype=list][data-list-type=insocial_pi1] .tile a:not(.eventlink) .content,[data-ctype=list][data-list-type=kluexperience_pi1] .tile a:not(.eventlink) .content,[data-ctype=list][data-list-type=kluexperience_pi2] .tile a:not(.eventlink) .content,[data-ctype=list][data-list-type=kluexperience_pi10] .tile a:not(.eventlink) .content,[data-ctype=list][data-list-type=kluexperience_pi11] .tile a:not(.eventlink) .content,[data-ctype=list][data-list-type=kluexperience_pi12] .tile a:not(.eventlink) .content,[data-ctype=tile] .tile a:not(.eventlink) .content{font-size:18px}}[data-ctype=list][data-list-type=insocial_pi1] .tile a:not(.eventlink) h3,[data-ctype=list][data-list-type=insocial_pi1] .tile a:not(.eventlink) .h3,[data-ctype=list][data-list-type=kluexperience_pi1] .tile a:not(.eventlink) h3,[data-ctype=list][data-list-type=kluexperience_pi1] .tile a:not(.eventlink) .h3,[data-ctype=list][data-list-type=kluexperience_pi2] .tile a:not(.eventlink) h3,[data-ctype=list][data-list-type=kluexperience_pi2] .tile a:not(.eventlink) .h3,[data-ctype=list][data-list-type=kluexperience_pi10] .tile a:not(.eventlink) h3,[data-ctype=list][data-list-type=kluexperience_pi10] .tile a:not(.eventlink) .h3,[data-ctype=list][data-list-type=kluexperience_pi11] .tile a:not(.eventlink) h3,[data-ctype=list][data-list-type=kluexperience_pi11] .tile a:not(.eventlink) .h3,[data-ctype=list][data-list-type=kluexperience_pi12] .tile a:not(.eventlink) h3,[data-ctype=list][data-list-type=kluexperience_pi12] .tile a:not(.eventlink) .h3,[data-ctype=tile] .tile a:not(.eventlink) h3,[data-ctype=tile] .tile a:not(.eventlink) .h3{color:inherit;margin:0;font-weight:normal}[data-ctype=list][data-list-type=insocial_pi1] .tile a:not(.eventlink) p,[data-ctype=list][data-list-type=kluexperience_pi1] .tile a:not(.eventlink) p,[data-ctype=list][data-list-type=kluexperience_pi2] .tile a:not(.eventlink) p,[data-ctype=list][data-list-type=kluexperience_pi10] .tile a:not(.eventlink) p,[data-ctype=list][data-list-type=kluexperience_pi11] .tile a:not(.eventlink) p,[data-ctype=list][data-list-type=kluexperience_pi12] .tile a:not(.eventlink) p,[data-ctype=tile] .tile a:not(.eventlink) p{margin:0;-webkit-hyphens:auto;hyphens:auto}[data-ctype=list][data-list-type=insocial_pi1] .tile a:not(.eventlink) h3.box,[data-ctype=list][data-list-type=insocial_pi1] .tile a:not(.eventlink) .box.h3,[data-ctype=list][data-list-type=insocial_pi1] .tile a:not(.eventlink) p.box,[data-ctype=list][data-list-type=kluexperience_pi1] .tile a:not(.eventlink) h3.box,[data-ctype=list][data-list-type=kluexperience_pi1] .tile a:not(.eventlink) .box.h3,[data-ctype=list][data-list-type=kluexperience_pi1] .tile a:not(.eventlink) p.box,[data-ctype=list][data-list-type=kluexperience_pi2] .tile a:not(.eventlink) h3.box,[data-ctype=list][data-list-type=kluexperience_pi2] .tile a:not(.eventlink) .box.h3,[data-ctype=list][data-list-type=kluexperience_pi2] .tile a:not(.eventlink) p.box,[data-ctype=list][data-list-type=kluexperience_pi10] .tile a:not(.eventlink) h3.box,[data-ctype=list][data-list-type=kluexperience_pi10] .tile a:not(.eventlink) .box.h3,[data-ctype=list][data-list-type=kluexperience_pi10] .tile a:not(.eventlink) p.box,[data-ctype=list][data-list-type=kluexperience_pi11] .tile a:not(.eventlink) h3.box,[data-ctype=list][data-list-type=kluexperience_pi11] .tile a:not(.eventlink) .box.h3,[data-ctype=list][data-list-type=kluexperience_pi11] .tile a:not(.eventlink) p.box,[data-ctype=list][data-list-type=kluexperience_pi12] .tile a:not(.eventlink) h3.box,[data-ctype=list][data-list-type=kluexperience_pi12] .tile a:not(.eventlink) .box.h3,[data-ctype=list][data-list-type=kluexperience_pi12] .tile a:not(.eventlink) p.box,[data-ctype=tile] .tile a:not(.eventlink) h3.box,[data-ctype=tile] .tile a:not(.eventlink) .box.h3,[data-ctype=tile] .tile a:not(.eventlink) p.box{line-height:1}[data-ctype=list][data-list-type=insocial_pi1] .tile a:not(.eventlink) h3.box.small,[data-ctype=list][data-list-type=insocial_pi1] .tile a:not(.eventlink) .box.small.h3,[data-ctype=list][data-list-type=insocial_pi1] .tile a:not(.eventlink) p.box.small,[data-ctype=list][data-list-type=kluexperience_pi1] .tile a:not(.eventlink) h3.box.small,[data-ctype=list][data-list-type=kluexperience_pi1] .tile a:not(.eventlink) .box.small.h3,[data-ctype=list][data-list-type=kluexperience_pi1] .tile a:not(.eventlink) p.box.small,[data-ctype=list][data-list-type=kluexperience_pi2] .tile a:not(.eventlink) h3.box.small,[data-ctype=list][data-list-type=kluexperience_pi2] .tile a:not(.eventlink) .box.small.h3,[data-ctype=list][data-list-type=kluexperience_pi2] .tile a:not(.eventlink) p.box.small,[data-ctype=list][data-list-type=kluexperience_pi10] .tile a:not(.eventlink) h3.box.small,[data-ctype=list][data-list-type=kluexperience_pi10] .tile a:not(.eventlink) .box.small.h3,[data-ctype=list][data-list-type=kluexperience_pi10] .tile a:not(.eventlink) p.box.small,[data-ctype=list][data-list-type=kluexperience_pi11] .tile a:not(.eventlink) h3.box.small,[data-ctype=list][data-list-type=kluexperience_pi11] .tile a:not(.eventlink) .box.small.h3,[data-ctype=list][data-list-type=kluexperience_pi11] .tile a:not(.eventlink) p.box.small,[data-ctype=list][data-list-type=kluexperience_pi12] .tile a:not(.eventlink) h3.box.small,[data-ctype=list][data-list-type=kluexperience_pi12] .tile a:not(.eventlink) .box.small.h3,[data-ctype=list][data-list-type=kluexperience_pi12] .tile a:not(.eventlink) p.box.small,[data-ctype=tile] .tile a:not(.eventlink) h3.box.small,[data-ctype=tile] .tile a:not(.eventlink) .box.small.h3,[data-ctype=tile] .tile a:not(.eventlink) p.box.small{line-height:1.13}[data-ctype=list][data-list-type=insocial_pi1] .tile a:not(.eventlink) h3.box>span,[data-ctype=list][data-list-type=insocial_pi1] .tile a:not(.eventlink) .box.h3>span,[data-ctype=list][data-list-type=insocial_pi1] .tile a:not(.eventlink) p.box>span,[data-ctype=list][data-list-type=kluexperience_pi1] .tile a:not(.eventlink) h3.box>span,[data-ctype=list][data-list-type=kluexperience_pi1] .tile a:not(.eventlink) .box.h3>span,[data-ctype=list][data-list-type=kluexperience_pi1] .tile a:not(.eventlink) p.box>span,[data-ctype=list][data-list-type=kluexperience_pi2] .tile a:not(.eventlink) h3.box>span,[data-ctype=list][data-list-type=kluexperience_pi2] .tile a:not(.eventlink) .box.h3>span,[data-ctype=list][data-list-type=kluexperience_pi2] .tile a:not(.eventlink) p.box>span,[data-ctype=list][data-list-type=kluexperience_pi10] .tile a:not(.eventlink) h3.box>span,[data-ctype=list][data-list-type=kluexperience_pi10] .tile a:not(.eventlink) .box.h3>span,[data-ctype=list][data-list-type=kluexperience_pi10] .tile a:not(.eventlink) p.box>span,[data-ctype=list][data-list-type=kluexperience_pi11] .tile a:not(.eventlink) h3.box>span,[data-ctype=list][data-list-type=kluexperience_pi11] .tile a:not(.eventlink) .box.h3>span,[data-ctype=list][data-list-type=kluexperience_pi11] .tile a:not(.eventlink) p.box>span,[data-ctype=list][data-list-type=kluexperience_pi12] .tile a:not(.eventlink) h3.box>span,[data-ctype=list][data-list-type=kluexperience_pi12] .tile a:not(.eventlink) .box.h3>span,[data-ctype=list][data-list-type=kluexperience_pi12] .tile a:not(.eventlink) p.box>span,[data-ctype=tile] .tile a:not(.eventlink) h3.box>span,[data-ctype=tile] .tile a:not(.eventlink) .box.h3>span,[data-ctype=tile] .tile a:not(.eventlink) p.box>span{background-color:#fff;display:inline;padding:.2rem .4166666667rem;vertical-align:super;box-decoration-break:clone;-webkit-box-decoration-break:clone}[data-ctype=list][data-list-type=insocial_pi1] .tile a:not(.eventlink) p.box,[data-ctype=list][data-list-type=kluexperience_pi1] .tile a:not(.eventlink) p.box,[data-ctype=list][data-list-type=kluexperience_pi2] .tile a:not(.eventlink) p.box,[data-ctype=list][data-list-type=kluexperience_pi10] .tile a:not(.eventlink) p.box,[data-ctype=list][data-list-type=kluexperience_pi11] .tile a:not(.eventlink) p.box,[data-ctype=list][data-list-type=kluexperience_pi12] .tile a:not(.eventlink) p.box,[data-ctype=tile] .tile a:not(.eventlink) p.box{color:#232323}[data-ctype=list][data-list-type=insocial_pi1] .tile a:not(.eventlink) .shadow,[data-ctype=list][data-list-type=kluexperience_pi1] .tile a:not(.eventlink) .shadow,[data-ctype=list][data-list-type=kluexperience_pi2] .tile a:not(.eventlink) .shadow,[data-ctype=list][data-list-type=kluexperience_pi10] .tile a:not(.eventlink) .shadow,[data-ctype=list][data-list-type=kluexperience_pi11] .tile a:not(.eventlink) .shadow,[data-ctype=list][data-list-type=kluexperience_pi12] .tile a:not(.eventlink) .shadow,[data-ctype=tile] .tile a:not(.eventlink) .shadow{top:0;left:0;position:absolute;display:block;content:"";height:100%;width:100%;background:rgba(0,0,0,0);box-shadow:inset 0 0 2rem rgba(0,0,0,.1);z-index:2}[data-ctype=list][data-list-type=insocial_pi1] .tile [class^=tile--article] h3,[data-ctype=list][data-list-type=insocial_pi1] .tile [class^=tile--article] .h3,[data-ctype=list][data-list-type=kluexperience_pi1] .tile [class^=tile--article] h3,[data-ctype=list][data-list-type=kluexperience_pi1] .tile [class^=tile--article] .h3,[data-ctype=list][data-list-type=kluexperience_pi2] .tile [class^=tile--article] h3,[data-ctype=list][data-list-type=kluexperience_pi2] .tile [class^=tile--article] .h3,[data-ctype=list][data-list-type=kluexperience_pi10] .tile [class^=tile--article] h3,[data-ctype=list][data-list-type=kluexperience_pi10] .tile [class^=tile--article] .h3,[data-ctype=list][data-list-type=kluexperience_pi11] .tile [class^=tile--article] h3,[data-ctype=list][data-list-type=kluexperience_pi11] .tile [class^=tile--article] .h3,[data-ctype=list][data-list-type=kluexperience_pi12] .tile [class^=tile--article] h3,[data-ctype=list][data-list-type=kluexperience_pi12] .tile [class^=tile--article] .h3,[data-ctype=tile] .tile [class^=tile--article] h3,[data-ctype=tile] .tile [class^=tile--article] .h3{font-family:"Saans-Web", -apple-system, "Segoe UI", Roboto, "Helvetica Neue", sans-serif;font-family:var(--bs-font-sans-serif);font-size:1em;line-height:1.3}[data-ctype=list][data-list-type=insocial_pi1] .tile [class^=tile--article] h3.box,[data-ctype=list][data-list-type=insocial_pi1] .tile [class^=tile--article] .box.h3,[data-ctype=list][data-list-type=kluexperience_pi1] .tile [class^=tile--article] h3.box,[data-ctype=list][data-list-type=kluexperience_pi1] .tile [class^=tile--article] .box.h3,[data-ctype=list][data-list-type=kluexperience_pi2] .tile [class^=tile--article] h3.box,[data-ctype=list][data-list-type=kluexperience_pi2] .tile [class^=tile--article] .box.h3,[data-ctype=list][data-list-type=kluexperience_pi10] .tile [class^=tile--article] h3.box,[data-ctype=list][data-list-type=kluexperience_pi10] .tile [class^=tile--article] .box.h3,[data-ctype=list][data-list-type=kluexperience_pi11] .tile [class^=tile--article] h3.box,[data-ctype=list][data-list-type=kluexperience_pi11] .tile [class^=tile--article] .box.h3,[data-ctype=list][data-list-type=kluexperience_pi12] .tile [class^=tile--article] h3.box,[data-ctype=list][data-list-type=kluexperience_pi12] .tile [class^=tile--article] .box.h3,[data-ctype=tile] .tile [class^=tile--article] h3.box,[data-ctype=tile] .tile [class^=tile--article] .box.h3{color:#232323}[data-ctype=list][data-list-type=insocial_pi1] .tile [class^=tile--video].col-h-2 .content p.small,[data-ctype=list][data-list-type=kluexperience_pi1] .tile [class^=tile--video].col-h-2 .content p.small,[data-ctype=list][data-list-type=kluexperience_pi2] .tile [class^=tile--video].col-h-2 .content p.small,[data-ctype=list][data-list-type=kluexperience_pi10] .tile [class^=tile--video].col-h-2 .content p.small,[data-ctype=list][data-list-type=kluexperience_pi11] .tile [class^=tile--video].col-h-2 .content p.small,[data-ctype=list][data-list-type=kluexperience_pi12] .tile [class^=tile--video].col-h-2 .content p.small,[data-ctype=tile] .tile [class^=tile--video].col-h-2 .content p.small{font-size:100%;font-weight:normal}[data-ctype=list][data-list-type=insocial_pi1] .tile [class^=tile--social].col-h-2 .content p.small,[data-ctype=list][data-list-type=kluexperience_pi1] .tile [class^=tile--social].col-h-2 .content p.small,[data-ctype=list][data-list-type=kluexperience_pi2] .tile [class^=tile--social].col-h-2 .content p.small,[data-ctype=list][data-list-type=kluexperience_pi10] .tile [class^=tile--social].col-h-2 .content p.small,[data-ctype=list][data-list-type=kluexperience_pi11] .tile [class^=tile--social].col-h-2 .content p.small,[data-ctype=list][data-list-type=kluexperience_pi12] .tile [class^=tile--social].col-h-2 .content p.small,[data-ctype=tile] .tile [class^=tile--social].col-h-2 .content p.small{font-size:100%;font-weight:normal}[data-ctype=list][data-list-type=insocial_pi1] .tile [class^=tile--social].no-image .content,[data-ctype=list][data-list-type=kluexperience_pi1] .tile [class^=tile--social].no-image .content,[data-ctype=list][data-list-type=kluexperience_pi2] .tile [class^=tile--social].no-image .content,[data-ctype=list][data-list-type=kluexperience_pi10] .tile [class^=tile--social].no-image .content,[data-ctype=list][data-list-type=kluexperience_pi11] .tile [class^=tile--social].no-image .content,[data-ctype=list][data-list-type=kluexperience_pi12] .tile [class^=tile--social].no-image .content,[data-ctype=tile] .tile [class^=tile--social].no-image .content{height:100%;padding:1.1111111111rem 2.3rem 1.1111111111rem 1.1111111111rem}[data-ctype=list][data-list-type=insocial_pi1] .tile [class^=tile--social].no-image a:not(.eventlink),[data-ctype=list][data-list-type=kluexperience_pi1] .tile [class^=tile--social].no-image a:not(.eventlink),[data-ctype=list][data-list-type=kluexperience_pi2] .tile [class^=tile--social].no-image a:not(.eventlink),[data-ctype=list][data-list-type=kluexperience_pi10] .tile [class^=tile--social].no-image a:not(.eventlink),[data-ctype=list][data-list-type=kluexperience_pi11] .tile [class^=tile--social].no-image a:not(.eventlink),[data-ctype=list][data-list-type=kluexperience_pi12] .tile [class^=tile--social].no-image a:not(.eventlink),[data-ctype=tile] .tile [class^=tile--social].no-image a:not(.eventlink){background-color:#eb2800;transition:background-color 250ms ease-in-out}[data-ctype=list][data-list-type=insocial_pi1] .tile [class^=tile--social].no-image a:not(.eventlink):before,[data-ctype=list][data-list-type=kluexperience_pi1] .tile [class^=tile--social].no-image a:not(.eventlink):before,[data-ctype=list][data-list-type=kluexperience_pi2] .tile [class^=tile--social].no-image a:not(.eventlink):before,[data-ctype=list][data-list-type=kluexperience_pi10] .tile [class^=tile--social].no-image a:not(.eventlink):before,[data-ctype=list][data-list-type=kluexperience_pi11] .tile [class^=tile--social].no-image a:not(.eventlink):before,[data-ctype=list][data-list-type=kluexperience_pi12] .tile [class^=tile--social].no-image a:not(.eventlink):before,[data-ctype=tile] .tile [class^=tile--social].no-image a:not(.eventlink):before{content:none}[data-ctype=list][data-list-type=insocial_pi1] .tile [class^=tile--social].no-image a:not(.eventlink):hover,[data-ctype=list][data-list-type=insocial_pi1] .tile [class^=tile--social].no-image a:not(.eventlink):focus,[data-ctype=list][data-list-type=kluexperience_pi1] .tile [class^=tile--social].no-image a:not(.eventlink):hover,[data-ctype=list][data-list-type=kluexperience_pi1] .tile [class^=tile--social].no-image a:not(.eventlink):focus,[data-ctype=list][data-list-type=kluexperience_pi2] .tile [class^=tile--social].no-image a:not(.eventlink):hover,[data-ctype=list][data-list-type=kluexperience_pi2] .tile [class^=tile--social].no-image a:not(.eventlink):focus,[data-ctype=list][data-list-type=kluexperience_pi10] .tile [class^=tile--social].no-image a:not(.eventlink):hover,[data-ctype=list][data-list-type=kluexperience_pi10] .tile [class^=tile--social].no-image a:not(.eventlink):focus,[data-ctype=list][data-list-type=kluexperience_pi11] .tile [class^=tile--social].no-image a:not(.eventlink):hover,[data-ctype=list][data-list-type=kluexperience_pi11] .tile [class^=tile--social].no-image a:not(.eventlink):focus,[data-ctype=list][data-list-type=kluexperience_pi12] .tile [class^=tile--social].no-image a:not(.eventlink):hover,[data-ctype=list][data-list-type=kluexperience_pi12] .tile [class^=tile--social].no-image a:not(.eventlink):focus,[data-ctype=tile] .tile [class^=tile--social].no-image a:not(.eventlink):hover,[data-ctype=tile] .tile [class^=tile--social].no-image a:not(.eventlink):focus{background-color:rgb(209.5,35.6595744681,0)}[data-ctype=list][data-list-type=insocial_pi1] .tile [class^=tile--social].no-image a:not(.eventlink) span.hashtag,[data-ctype=list][data-list-type=kluexperience_pi1] .tile [class^=tile--social].no-image a:not(.eventlink) span.hashtag,[data-ctype=list][data-list-type=kluexperience_pi2] .tile [class^=tile--social].no-image a:not(.eventlink) span.hashtag,[data-ctype=list][data-list-type=kluexperience_pi10] .tile [class^=tile--social].no-image a:not(.eventlink) span.hashtag,[data-ctype=list][data-list-type=kluexperience_pi11] .tile [class^=tile--social].no-image a:not(.eventlink) span.hashtag,[data-ctype=list][data-list-type=kluexperience_pi12] .tile [class^=tile--social].no-image a:not(.eventlink) span.hashtag,[data-ctype=tile] .tile [class^=tile--social].no-image a:not(.eventlink) span.hashtag{color:#4963f6}[data-ctype=list][data-list-type=insocial_pi1] .tile [class^=tile--social].tile--social-facebook.no-image a,[data-ctype=list][data-list-type=kluexperience_pi1] .tile [class^=tile--social].tile--social-facebook.no-image a,[data-ctype=list][data-list-type=kluexperience_pi2] .tile [class^=tile--social].tile--social-facebook.no-image a,[data-ctype=list][data-list-type=kluexperience_pi10] .tile [class^=tile--social].tile--social-facebook.no-image a,[data-ctype=list][data-list-type=kluexperience_pi11] .tile [class^=tile--social].tile--social-facebook.no-image a,[data-ctype=list][data-list-type=kluexperience_pi12] .tile [class^=tile--social].tile--social-facebook.no-image a,[data-ctype=tile] .tile [class^=tile--social].tile--social-facebook.no-image a{background-color:#4963f6;transition:background-color 250ms ease-in-out}[data-ctype=list][data-list-type=insocial_pi1] .tile [class^=tile--social].tile--social-facebook.no-image a:hover,[data-ctype=list][data-list-type=insocial_pi1] .tile [class^=tile--social].tile--social-facebook.no-image a:focus,[data-ctype=list][data-list-type=kluexperience_pi1] .tile [class^=tile--social].tile--social-facebook.no-image a:hover,[data-ctype=list][data-list-type=kluexperience_pi1] .tile [class^=tile--social].tile--social-facebook.no-image a:focus,[data-ctype=list][data-list-type=kluexperience_pi2] .tile [class^=tile--social].tile--social-facebook.no-image a:hover,[data-ctype=list][data-list-type=kluexperience_pi2] .tile [class^=tile--social].tile--social-facebook.no-image a:focus,[data-ctype=list][data-list-type=kluexperience_pi10] .tile [class^=tile--social].tile--social-facebook.no-image a:hover,[data-ctype=list][data-list-type=kluexperience_pi10] .tile [class^=tile--social].tile--social-facebook.no-image a:focus,[data-ctype=list][data-list-type=kluexperience_pi11] .tile [class^=tile--social].tile--social-facebook.no-image a:hover,[data-ctype=list][data-list-type=kluexperience_pi11] .tile [class^=tile--social].tile--social-facebook.no-image a:focus,[data-ctype=list][data-list-type=kluexperience_pi12] .tile [class^=tile--social].tile--social-facebook.no-image a:hover,[data-ctype=list][data-list-type=kluexperience_pi12] .tile [class^=tile--social].tile--social-facebook.no-image a:focus,[data-ctype=tile] .tile [class^=tile--social].tile--social-facebook.no-image a:hover,[data-ctype=tile] .tile [class^=tile--social].tile--social-facebook.no-image a:focus{background-color:#64002d}[data-ctype=list][data-list-type=insocial_pi1] .tile [class^=tile--event].no-image .event-wrap,[data-ctype=list][data-list-type=kluexperience_pi1] .tile [class^=tile--event].no-image .event-wrap,[data-ctype=list][data-list-type=kluexperience_pi2] .tile [class^=tile--event].no-image .event-wrap,[data-ctype=list][data-list-type=kluexperience_pi10] .tile [class^=tile--event].no-image .event-wrap,[data-ctype=list][data-list-type=kluexperience_pi11] .tile [class^=tile--event].no-image .event-wrap,[data-ctype=list][data-list-type=kluexperience_pi12] .tile [class^=tile--event].no-image .event-wrap,[data-ctype=tile] .tile [class^=tile--event].no-image .event-wrap{min-height:auto}[data-ctype=list][data-list-type=insocial_pi1] .tile [class^=tile--event].no-image .event-wrap .event-content-image h3,[data-ctype=list][data-list-type=insocial_pi1] .tile [class^=tile--event].no-image .event-wrap .event-content-image .h3,[data-ctype=list][data-list-type=kluexperience_pi1] .tile [class^=tile--event].no-image .event-wrap .event-content-image h3,[data-ctype=list][data-list-type=kluexperience_pi1] .tile [class^=tile--event].no-image .event-wrap .event-content-image .h3,[data-ctype=list][data-list-type=kluexperience_pi2] .tile [class^=tile--event].no-image .event-wrap .event-content-image h3,[data-ctype=list][data-list-type=kluexperience_pi2] .tile [class^=tile--event].no-image .event-wrap .event-content-image .h3,[data-ctype=list][data-list-type=kluexperience_pi10] .tile [class^=tile--event].no-image .event-wrap .event-content-image h3,[data-ctype=list][data-list-type=kluexperience_pi10] .tile [class^=tile--event].no-image .event-wrap .event-content-image .h3,[data-ctype=list][data-list-type=kluexperience_pi11] .tile [class^=tile--event].no-image .event-wrap .event-content-image h3,[data-ctype=list][data-list-type=kluexperience_pi11] .tile [class^=tile--event].no-image .event-wrap .event-content-image .h3,[data-ctype=list][data-list-type=kluexperience_pi12] .tile [class^=tile--event].no-image .event-wrap .event-content-image h3,[data-ctype=list][data-list-type=kluexperience_pi12] .tile [class^=tile--event].no-image .event-wrap .event-content-image .h3,[data-ctype=tile] .tile [class^=tile--event].no-image .event-wrap .event-content-image h3,[data-ctype=tile] .tile [class^=tile--event].no-image .event-wrap .event-content-image .h3{margin-bottom:.25rem}[data-ctype=list][data-list-type=insocial_pi1] .tile [class^=tile--event].no-image .event-wrap .event-content-image p:last-of-type,[data-ctype=list][data-list-type=kluexperience_pi1] .tile [class^=tile--event].no-image .event-wrap .event-content-image p:last-of-type,[data-ctype=list][data-list-type=kluexperience_pi2] .tile [class^=tile--event].no-image .event-wrap .event-content-image p:last-of-type,[data-ctype=list][data-list-type=kluexperience_pi10] .tile [class^=tile--event].no-image .event-wrap .event-content-image p:last-of-type,[data-ctype=list][data-list-type=kluexperience_pi11] .tile [class^=tile--event].no-image .event-wrap .event-content-image p:last-of-type,[data-ctype=list][data-list-type=kluexperience_pi12] .tile [class^=tile--event].no-image .event-wrap .event-content-image p:last-of-type,[data-ctype=tile] .tile [class^=tile--event].no-image .event-wrap .event-content-image p:last-of-type{margin-bottom:.75rem}[data-ctype=list][data-list-type=insocial_pi1] .tile [class^=tile--event] .event-wrap,[data-ctype=list][data-list-type=kluexperience_pi1] .tile [class^=tile--event] .event-wrap,[data-ctype=list][data-list-type=kluexperience_pi2] .tile [class^=tile--event] .event-wrap,[data-ctype=list][data-list-type=kluexperience_pi10] .tile [class^=tile--event] .event-wrap,[data-ctype=list][data-list-type=kluexperience_pi11] .tile [class^=tile--event] .event-wrap,[data-ctype=list][data-list-type=kluexperience_pi12] .tile [class^=tile--event] .event-wrap,[data-ctype=tile] .tile [class^=tile--event] .event-wrap{border:2px solid #ebebeb;min-height:16.8888888889rem;height:100%;display:flex;flex-direction:column}[data-ctype=list][data-list-type=insocial_pi1] .tile [class^=tile--event] .event-wrap time,[data-ctype=list][data-list-type=kluexperience_pi1] .tile [class^=tile--event] .event-wrap time,[data-ctype=list][data-list-type=kluexperience_pi2] .tile [class^=tile--event] .event-wrap time,[data-ctype=list][data-list-type=kluexperience_pi10] .tile [class^=tile--event] .event-wrap time,[data-ctype=list][data-list-type=kluexperience_pi11] .tile [class^=tile--event] .event-wrap time,[data-ctype=list][data-list-type=kluexperience_pi12] .tile [class^=tile--event] .event-wrap time,[data-ctype=tile] .tile [class^=tile--event] .event-wrap time{display:block;position:relative;padding:.5555555556rem 1.1111111111rem;background:#4963f6;color:#fff}[data-ctype=list][data-list-type=insocial_pi1] .tile [class^=tile--event] .event-wrap time::after,[data-ctype=list][data-list-type=kluexperience_pi1] .tile [class^=tile--event] .event-wrap time::after,[data-ctype=list][data-list-type=kluexperience_pi2] .tile [class^=tile--event] .event-wrap time::after,[data-ctype=list][data-list-type=kluexperience_pi10] .tile [class^=tile--event] .event-wrap time::after,[data-ctype=list][data-list-type=kluexperience_pi11] .tile [class^=tile--event] .event-wrap time::after,[data-ctype=list][data-list-type=kluexperience_pi12] .tile [class^=tile--event] .event-wrap time::after,[data-ctype=tile] .tile [class^=tile--event] .event-wrap time::after{display:block;clear:both;content:""}[data-ctype=list][data-list-type=insocial_pi1] .tile [class^=tile--event] .event-wrap time .date,[data-ctype=list][data-list-type=kluexperience_pi1] .tile [class^=tile--event] .event-wrap time .date,[data-ctype=list][data-list-type=kluexperience_pi2] .tile [class^=tile--event] .event-wrap time .date,[data-ctype=list][data-list-type=kluexperience_pi10] .tile [class^=tile--event] .event-wrap time .date,[data-ctype=list][data-list-type=kluexperience_pi11] .tile [class^=tile--event] .event-wrap time .date,[data-ctype=list][data-list-type=kluexperience_pi12] .tile [class^=tile--event] .event-wrap time .date,[data-ctype=tile] .tile [class^=tile--event] .event-wrap time .date{float:left;font-weight:bold}[data-ctype=list][data-list-type=insocial_pi1] .tile [class^=tile--event] .event-wrap time .time,[data-ctype=list][data-list-type=kluexperience_pi1] .tile [class^=tile--event] .event-wrap time .time,[data-ctype=list][data-list-type=kluexperience_pi2] .tile [class^=tile--event] .event-wrap time .time,[data-ctype=list][data-list-type=kluexperience_pi10] .tile [class^=tile--event] .event-wrap time .time,[data-ctype=list][data-list-type=kluexperience_pi11] .tile [class^=tile--event] .event-wrap time .time,[data-ctype=list][data-list-type=kluexperience_pi12] .tile [class^=tile--event] .event-wrap time .time,[data-ctype=tile] .tile [class^=tile--event] .event-wrap time .time{float:right}[data-ctype=list][data-list-type=insocial_pi1] .tile [class^=tile--event] .event-wrap .event-content-image,[data-ctype=list][data-list-type=kluexperience_pi1] .tile [class^=tile--event] .event-wrap .event-content-image,[data-ctype=list][data-list-type=kluexperience_pi2] .tile [class^=tile--event] .event-wrap .event-content-image,[data-ctype=list][data-list-type=kluexperience_pi10] .tile [class^=tile--event] .event-wrap .event-content-image,[data-ctype=list][data-list-type=kluexperience_pi11] .tile [class^=tile--event] .event-wrap .event-content-image,[data-ctype=list][data-list-type=kluexperience_pi12] .tile [class^=tile--event] .event-wrap .event-content-image,[data-ctype=tile] .tile [class^=tile--event] .event-wrap .event-content-image{flex:1;position:relative;background-repeat:no-repeat;background-position:center center;background-size:cover}[data-ctype=list][data-list-type=insocial_pi1] .tile [class^=tile--event] .event-wrap .event-content-image .event-content-text-inner,[data-ctype=list][data-list-type=kluexperience_pi1] .tile [class^=tile--event] .event-wrap .event-content-image .event-content-text-inner,[data-ctype=list][data-list-type=kluexperience_pi2] .tile [class^=tile--event] .event-wrap .event-content-image .event-content-text-inner,[data-ctype=list][data-list-type=kluexperience_pi10] .tile [class^=tile--event] .event-wrap .event-content-image .event-content-text-inner,[data-ctype=list][data-list-type=kluexperience_pi11] .tile [class^=tile--event] .event-wrap .event-content-image .event-content-text-inner,[data-ctype=list][data-list-type=kluexperience_pi12] .tile [class^=tile--event] .event-wrap .event-content-image .event-content-text-inner,[data-ctype=tile] .tile [class^=tile--event] .event-wrap .event-content-image .event-content-text-inner{padding:1.1111111111rem 1.1111111111rem 1rem}[data-ctype=list][data-list-type=insocial_pi1] .tile [class^=tile--event] .event-wrap .event-content-image .event-content-image-inner,[data-ctype=list][data-list-type=kluexperience_pi1] .tile [class^=tile--event] .event-wrap .event-content-image .event-content-image-inner,[data-ctype=list][data-list-type=kluexperience_pi2] .tile [class^=tile--event] .event-wrap .event-content-image .event-content-image-inner,[data-ctype=list][data-list-type=kluexperience_pi10] .tile [class^=tile--event] .event-wrap .event-content-image .event-content-image-inner,[data-ctype=list][data-list-type=kluexperience_pi11] .tile [class^=tile--event] .event-wrap .event-content-image .event-content-image-inner,[data-ctype=list][data-list-type=kluexperience_pi12] .tile [class^=tile--event] .event-wrap .event-content-image .event-content-image-inner,[data-ctype=tile] .tile [class^=tile--event] .event-wrap .event-content-image .event-content-image-inner{position:absolute;bottom:.6666666667rem;left:.6666666667rem;right:.6666666667rem}[data-ctype=list][data-list-type=insocial_pi1] .tile [class^=tile--event] .event-wrap .event-content-image h3,[data-ctype=list][data-list-type=insocial_pi1] .tile [class^=tile--event] .event-wrap .event-content-image .h3,[data-ctype=list][data-list-type=kluexperience_pi1] .tile [class^=tile--event] .event-wrap .event-content-image h3,[data-ctype=list][data-list-type=kluexperience_pi1] .tile [class^=tile--event] .event-wrap .event-content-image .h3,[data-ctype=list][data-list-type=kluexperience_pi2] .tile [class^=tile--event] .event-wrap .event-content-image h3,[data-ctype=list][data-list-type=kluexperience_pi2] .tile [class^=tile--event] .event-wrap .event-content-image .h3,[data-ctype=list][data-list-type=kluexperience_pi10] .tile [class^=tile--event] .event-wrap .event-content-image h3,[data-ctype=list][data-list-type=kluexperience_pi10] .tile [class^=tile--event] .event-wrap .event-content-image .h3,[data-ctype=list][data-list-type=kluexperience_pi11] .tile [class^=tile--event] .event-wrap .event-content-image h3,[data-ctype=list][data-list-type=kluexperience_pi11] .tile [class^=tile--event] .event-wrap .event-content-image .h3,[data-ctype=list][data-list-type=kluexperience_pi12] .tile [class^=tile--event] .event-wrap .event-content-image h3,[data-ctype=list][data-list-type=kluexperience_pi12] .tile [class^=tile--event] .event-wrap .event-content-image .h3,[data-ctype=tile] .tile [class^=tile--event] .event-wrap .event-content-image h3,[data-ctype=tile] .tile [class^=tile--event] .event-wrap .event-content-image .h3{color:#000;margin:0;font-weight:normal}[data-ctype=list][data-list-type=insocial_pi1] .tile [class^=tile--event] .event-wrap .event-content-image p,[data-ctype=list][data-list-type=kluexperience_pi1] .tile [class^=tile--event] .event-wrap .event-content-image p,[data-ctype=list][data-list-type=kluexperience_pi2] .tile [class^=tile--event] .event-wrap .event-content-image p,[data-ctype=list][data-list-type=kluexperience_pi10] .tile [class^=tile--event] .event-wrap .event-content-image p,[data-ctype=list][data-list-type=kluexperience_pi11] .tile [class^=tile--event] .event-wrap .event-content-image p,[data-ctype=list][data-list-type=kluexperience_pi12] .tile [class^=tile--event] .event-wrap .event-content-image p,[data-ctype=tile] .tile [class^=tile--event] .event-wrap .event-content-image p{color:#919191;margin:0;-webkit-hyphens:auto;hyphens:auto}[data-ctype=list][data-list-type=insocial_pi1] .tile [class^=tile--event] .event-wrap .event-content-image h3.box,[data-ctype=list][data-list-type=insocial_pi1] .tile [class^=tile--event] .event-wrap .event-content-image .box.h3,[data-ctype=list][data-list-type=insocial_pi1] .tile [class^=tile--event] .event-wrap .event-content-image p.box,[data-ctype=list][data-list-type=kluexperience_pi1] .tile [class^=tile--event] .event-wrap .event-content-image h3.box,[data-ctype=list][data-list-type=kluexperience_pi1] .tile [class^=tile--event] .event-wrap .event-content-image .box.h3,[data-ctype=list][data-list-type=kluexperience_pi1] .tile [class^=tile--event] .event-wrap .event-content-image p.box,[data-ctype=list][data-list-type=kluexperience_pi2] .tile [class^=tile--event] .event-wrap .event-content-image h3.box,[data-ctype=list][data-list-type=kluexperience_pi2] .tile [class^=tile--event] .event-wrap .event-content-image .box.h3,[data-ctype=list][data-list-type=kluexperience_pi2] .tile [class^=tile--event] .event-wrap .event-content-image p.box,[data-ctype=list][data-list-type=kluexperience_pi10] .tile [class^=tile--event] .event-wrap .event-content-image h3.box,[data-ctype=list][data-list-type=kluexperience_pi10] .tile [class^=tile--event] .event-wrap .event-content-image .box.h3,[data-ctype=list][data-list-type=kluexperience_pi10] .tile [class^=tile--event] .event-wrap .event-content-image p.box,[data-ctype=list][data-list-type=kluexperience_pi11] .tile [class^=tile--event] .event-wrap .event-content-image h3.box,[data-ctype=list][data-list-type=kluexperience_pi11] .tile [class^=tile--event] .event-wrap .event-content-image .box.h3,[data-ctype=list][data-list-type=kluexperience_pi11] .tile [class^=tile--event] .event-wrap .event-content-image p.box,[data-ctype=list][data-list-type=kluexperience_pi12] .tile [class^=tile--event] .event-wrap .event-content-image h3.box,[data-ctype=list][data-list-type=kluexperience_pi12] .tile [class^=tile--event] .event-wrap .event-content-image .box.h3,[data-ctype=list][data-list-type=kluexperience_pi12] .tile [class^=tile--event] .event-wrap .event-content-image p.box,[data-ctype=tile] .tile [class^=tile--event] .event-wrap .event-content-image h3.box,[data-ctype=tile] .tile [class^=tile--event] .event-wrap .event-content-image .box.h3,[data-ctype=tile] .tile [class^=tile--event] .event-wrap .event-content-image p.box{line-height:1}[data-ctype=list][data-list-type=insocial_pi1] .tile [class^=tile--event] .event-wrap .event-content-image h3.box.small,[data-ctype=list][data-list-type=insocial_pi1] .tile [class^=tile--event] .event-wrap .event-content-image .box.small.h3,[data-ctype=list][data-list-type=insocial_pi1] .tile [class^=tile--event] .event-wrap .event-content-image p.box.small,[data-ctype=list][data-list-type=kluexperience_pi1] .tile [class^=tile--event] .event-wrap .event-content-image h3.box.small,[data-ctype=list][data-list-type=kluexperience_pi1] .tile [class^=tile--event] .event-wrap .event-content-image .box.small.h3,[data-ctype=list][data-list-type=kluexperience_pi1] .tile [class^=tile--event] .event-wrap .event-content-image p.box.small,[data-ctype=list][data-list-type=kluexperience_pi2] .tile [class^=tile--event] .event-wrap .event-content-image h3.box.small,[data-ctype=list][data-list-type=kluexperience_pi2] .tile [class^=tile--event] .event-wrap .event-content-image .box.small.h3,[data-ctype=list][data-list-type=kluexperience_pi2] .tile [class^=tile--event] .event-wrap .event-content-image p.box.small,[data-ctype=list][data-list-type=kluexperience_pi10] .tile [class^=tile--event] .event-wrap .event-content-image h3.box.small,[data-ctype=list][data-list-type=kluexperience_pi10] .tile [class^=tile--event] .event-wrap .event-content-image .box.small.h3,[data-ctype=list][data-list-type=kluexperience_pi10] .tile [class^=tile--event] .event-wrap .event-content-image p.box.small,[data-ctype=list][data-list-type=kluexperience_pi11] .tile [class^=tile--event] .event-wrap .event-content-image h3.box.small,[data-ctype=list][data-list-type=kluexperience_pi11] .tile [class^=tile--event] .event-wrap .event-content-image .box.small.h3,[data-ctype=list][data-list-type=kluexperience_pi11] .tile [class^=tile--event] .event-wrap .event-content-image p.box.small,[data-ctype=list][data-list-type=kluexperience_pi12] .tile [class^=tile--event] .event-wrap .event-content-image h3.box.small,[data-ctype=list][data-list-type=kluexperience_pi12] .tile [class^=tile--event] .event-wrap .event-content-image .box.small.h3,[data-ctype=list][data-list-type=kluexperience_pi12] .tile [class^=tile--event] .event-wrap .event-content-image p.box.small,[data-ctype=tile] .tile [class^=tile--event] .event-wrap .event-content-image h3.box.small,[data-ctype=tile] .tile [class^=tile--event] .event-wrap .event-content-image .box.small.h3,[data-ctype=tile] .tile [class^=tile--event] .event-wrap .event-content-image p.box.small{line-height:1.13}[data-ctype=list][data-list-type=insocial_pi1] .tile [class^=tile--event] .event-wrap .event-content-image h3.box>span,[data-ctype=list][data-list-type=insocial_pi1] .tile [class^=tile--event] .event-wrap .event-content-image .box.h3>span,[data-ctype=list][data-list-type=insocial_pi1] .tile [class^=tile--event] .event-wrap .event-content-image p.box>span,[data-ctype=list][data-list-type=kluexperience_pi1] .tile [class^=tile--event] .event-wrap .event-content-image h3.box>span,[data-ctype=list][data-list-type=kluexperience_pi1] .tile [class^=tile--event] .event-wrap .event-content-image .box.h3>span,[data-ctype=list][data-list-type=kluexperience_pi1] .tile [class^=tile--event] .event-wrap .event-content-image p.box>span,[data-ctype=list][data-list-type=kluexperience_pi2] .tile [class^=tile--event] .event-wrap .event-content-image h3.box>span,[data-ctype=list][data-list-type=kluexperience_pi2] .tile [class^=tile--event] .event-wrap .event-content-image .box.h3>span,[data-ctype=list][data-list-type=kluexperience_pi2] .tile [class^=tile--event] .event-wrap .event-content-image p.box>span,[data-ctype=list][data-list-type=kluexperience_pi10] .tile [class^=tile--event] .event-wrap .event-content-image h3.box>span,[data-ctype=list][data-list-type=kluexperience_pi10] .tile [class^=tile--event] .event-wrap .event-content-image .box.h3>span,[data-ctype=list][data-list-type=kluexperience_pi10] .tile [class^=tile--event] .event-wrap .event-content-image p.box>span,[data-ctype=list][data-list-type=kluexperience_pi11] .tile [class^=tile--event] .event-wrap .event-content-image h3.box>span,[data-ctype=list][data-list-type=kluexperience_pi11] .tile [class^=tile--event] .event-wrap .event-content-image .box.h3>span,[data-ctype=list][data-list-type=kluexperience_pi11] .tile [class^=tile--event] .event-wrap .event-content-image p.box>span,[data-ctype=list][data-list-type=kluexperience_pi12] .tile [class^=tile--event] .event-wrap .event-content-image h3.box>span,[data-ctype=list][data-list-type=kluexperience_pi12] .tile [class^=tile--event] .event-wrap .event-content-image .box.h3>span,[data-ctype=list][data-list-type=kluexperience_pi12] .tile [class^=tile--event] .event-wrap .event-content-image p.box>span,[data-ctype=tile] .tile [class^=tile--event] .event-wrap .event-content-image h3.box>span,[data-ctype=tile] .tile [class^=tile--event] .event-wrap .event-content-image .box.h3>span,[data-ctype=tile] .tile [class^=tile--event] .event-wrap .event-content-image p.box>span{background-color:#fff;display:inline;padding:.3333333333rem .4166666667rem;vertical-align:super;box-decoration-break:clone;-webkit-box-decoration-break:clone}[data-ctype=list][data-list-type=insocial_pi1] .tile [class^=tile--event] .event-wrap .event-content-image h3.box>span span:after,[data-ctype=list][data-list-type=insocial_pi1] .tile [class^=tile--event] .event-wrap .event-content-image .box.h3>span span:after,[data-ctype=list][data-list-type=insocial_pi1] .tile [class^=tile--event] .event-wrap .event-content-image p.box>span span:after,[data-ctype=list][data-list-type=kluexperience_pi1] .tile [class^=tile--event] .event-wrap .event-content-image h3.box>span span:after,[data-ctype=list][data-list-type=kluexperience_pi1] .tile [class^=tile--event] .event-wrap .event-content-image .box.h3>span span:after,[data-ctype=list][data-list-type=kluexperience_pi1] .tile [class^=tile--event] .event-wrap .event-content-image p.box>span span:after,[data-ctype=list][data-list-type=kluexperience_pi2] .tile [class^=tile--event] .event-wrap .event-content-image h3.box>span span:after,[data-ctype=list][data-list-type=kluexperience_pi2] .tile [class^=tile--event] .event-wrap .event-content-image .box.h3>span span:after,[data-ctype=list][data-list-type=kluexperience_pi2] .tile [class^=tile--event] .event-wrap .event-content-image p.box>span span:after,[data-ctype=list][data-list-type=kluexperience_pi10] .tile [class^=tile--event] .event-wrap .event-content-image h3.box>span span:after,[data-ctype=list][data-list-type=kluexperience_pi10] .tile [class^=tile--event] .event-wrap .event-content-image .box.h3>span span:after,[data-ctype=list][data-list-type=kluexperience_pi10] .tile [class^=tile--event] .event-wrap .event-content-image p.box>span span:after,[data-ctype=list][data-list-type=kluexperience_pi11] .tile [class^=tile--event] .event-wrap .event-content-image h3.box>span span:after,[data-ctype=list][data-list-type=kluexperience_pi11] .tile [class^=tile--event] .event-wrap .event-content-image .box.h3>span span:after,[data-ctype=list][data-list-type=kluexperience_pi11] .tile [class^=tile--event] .event-wrap .event-content-image p.box>span span:after,[data-ctype=list][data-list-type=kluexperience_pi12] .tile [class^=tile--event] .event-wrap .event-content-image h3.box>span span:after,[data-ctype=list][data-list-type=kluexperience_pi12] .tile [class^=tile--event] .event-wrap .event-content-image .box.h3>span span:after,[data-ctype=list][data-list-type=kluexperience_pi12] .tile [class^=tile--event] .event-wrap .event-content-image p.box>span span:after,[data-ctype=tile] .tile [class^=tile--event] .event-wrap .event-content-image h3.box>span span:after,[data-ctype=tile] .tile [class^=tile--event] .event-wrap .event-content-image .box.h3>span span:after,[data-ctype=tile] .tile [class^=tile--event] .event-wrap .event-content-image p.box>span span:after{content:", "}[data-ctype=list][data-list-type=insocial_pi1] .tile [class^=tile--event] .event-wrap .event-content-image h3.box>span span:last-child:after,[data-ctype=list][data-list-type=insocial_pi1] .tile [class^=tile--event] .event-wrap .event-content-image .box.h3>span span:last-child:after,[data-ctype=list][data-list-type=insocial_pi1] .tile [class^=tile--event] .event-wrap .event-content-image p.box>span span:last-child:after,[data-ctype=list][data-list-type=kluexperience_pi1] .tile [class^=tile--event] .event-wrap .event-content-image h3.box>span span:last-child:after,[data-ctype=list][data-list-type=kluexperience_pi1] .tile [class^=tile--event] .event-wrap .event-content-image .box.h3>span span:last-child:after,[data-ctype=list][data-list-type=kluexperience_pi1] .tile [class^=tile--event] .event-wrap .event-content-image p.box>span span:last-child:after,[data-ctype=list][data-list-type=kluexperience_pi2] .tile [class^=tile--event] .event-wrap .event-content-image h3.box>span span:last-child:after,[data-ctype=list][data-list-type=kluexperience_pi2] .tile [class^=tile--event] .event-wrap .event-content-image .box.h3>span span:last-child:after,[data-ctype=list][data-list-type=kluexperience_pi2] .tile [class^=tile--event] .event-wrap .event-content-image p.box>span span:last-child:after,[data-ctype=list][data-list-type=kluexperience_pi10] .tile [class^=tile--event] .event-wrap .event-content-image h3.box>span span:last-child:after,[data-ctype=list][data-list-type=kluexperience_pi10] .tile [class^=tile--event] .event-wrap .event-content-image .box.h3>span span:last-child:after,[data-ctype=list][data-list-type=kluexperience_pi10] .tile [class^=tile--event] .event-wrap .event-content-image p.box>span span:last-child:after,[data-ctype=list][data-list-type=kluexperience_pi11] .tile [class^=tile--event] .event-wrap .event-content-image h3.box>span span:last-child:after,[data-ctype=list][data-list-type=kluexperience_pi11] .tile [class^=tile--event] .event-wrap .event-content-image .box.h3>span span:last-child:after,[data-ctype=list][data-list-type=kluexperience_pi11] .tile [class^=tile--event] .event-wrap .event-content-image p.box>span span:last-child:after,[data-ctype=list][data-list-type=kluexperience_pi12] .tile [class^=tile--event] .event-wrap .event-content-image h3.box>span span:last-child:after,[data-ctype=list][data-list-type=kluexperience_pi12] .tile [class^=tile--event] .event-wrap .event-content-image .box.h3>span span:last-child:after,[data-ctype=list][data-list-type=kluexperience_pi12] .tile [class^=tile--event] .event-wrap .event-content-image p.box>span span:last-child:after,[data-ctype=tile] .tile [class^=tile--event] .event-wrap .event-content-image h3.box>span span:last-child:after,[data-ctype=tile] .tile [class^=tile--event] .event-wrap .event-content-image .box.h3>span span:last-child:after,[data-ctype=tile] .tile [class^=tile--event] .event-wrap .event-content-image p.box>span span:last-child:after{content:none}[data-ctype=list][data-list-type=insocial_pi1] .tile [class^=tile--event] .event-wrap .event-content-image h3.box,[data-ctype=list][data-list-type=insocial_pi1] .tile [class^=tile--event] .event-wrap .event-content-image .box.h3,[data-ctype=list][data-list-type=kluexperience_pi1] .tile [class^=tile--event] .event-wrap .event-content-image h3.box,[data-ctype=list][data-list-type=kluexperience_pi1] .tile [class^=tile--event] .event-wrap .event-content-image .box.h3,[data-ctype=list][data-list-type=kluexperience_pi2] .tile [class^=tile--event] .event-wrap .event-content-image h3.box,[data-ctype=list][data-list-type=kluexperience_pi2] .tile [class^=tile--event] .event-wrap .event-content-image .box.h3,[data-ctype=list][data-list-type=kluexperience_pi10] .tile [class^=tile--event] .event-wrap .event-content-image h3.box,[data-ctype=list][data-list-type=kluexperience_pi10] .tile [class^=tile--event] .event-wrap .event-content-image .box.h3,[data-ctype=list][data-list-type=kluexperience_pi11] .tile [class^=tile--event] .event-wrap .event-content-image h3.box,[data-ctype=list][data-list-type=kluexperience_pi11] .tile [class^=tile--event] .event-wrap .event-content-image .box.h3,[data-ctype=list][data-list-type=kluexperience_pi12] .tile [class^=tile--event] .event-wrap .event-content-image h3.box,[data-ctype=list][data-list-type=kluexperience_pi12] .tile [class^=tile--event] .event-wrap .event-content-image .box.h3,[data-ctype=tile] .tile [class^=tile--event] .event-wrap .event-content-image h3.box,[data-ctype=tile] .tile [class^=tile--event] .event-wrap .event-content-image .box.h3{color:#000}[data-ctype=list][data-list-type=insocial_pi1] .tile [class^=tile--event] .event-wrap .event-content-image p.box,[data-ctype=list][data-list-type=kluexperience_pi1] .tile [class^=tile--event] .event-wrap .event-content-image p.box,[data-ctype=list][data-list-type=kluexperience_pi2] .tile [class^=tile--event] .event-wrap .event-content-image p.box,[data-ctype=list][data-list-type=kluexperience_pi10] .tile [class^=tile--event] .event-wrap .event-content-image p.box,[data-ctype=list][data-list-type=kluexperience_pi11] .tile [class^=tile--event] .event-wrap .event-content-image p.box,[data-ctype=list][data-list-type=kluexperience_pi12] .tile [class^=tile--event] .event-wrap .event-content-image p.box,[data-ctype=tile] .tile [class^=tile--event] .event-wrap .event-content-image p.box{color:#919191}[data-ctype=list][data-list-type=insocial_pi1] .tile [class^=tile--event] .event-wrap .event-content-image p.box.link,[data-ctype=list][data-list-type=kluexperience_pi1] .tile [class^=tile--event] .event-wrap .event-content-image p.box.link,[data-ctype=list][data-list-type=kluexperience_pi2] .tile [class^=tile--event] .event-wrap .event-content-image p.box.link,[data-ctype=list][data-list-type=kluexperience_pi10] .tile [class^=tile--event] .event-wrap .event-content-image p.box.link,[data-ctype=list][data-list-type=kluexperience_pi11] .tile [class^=tile--event] .event-wrap .event-content-image p.box.link,[data-ctype=list][data-list-type=kluexperience_pi12] .tile [class^=tile--event] .event-wrap .event-content-image p.box.link,[data-ctype=tile] .tile [class^=tile--event] .event-wrap .event-content-image p.box.link{margin-top:.6666666667rem}[data-ctype=list][data-list-type=insocial_pi1] .tile [class^=tile--quote] h3,[data-ctype=list][data-list-type=insocial_pi1] .tile [class^=tile--quote] .h3,[data-ctype=list][data-list-type=insocial_pi1] .tile [class^=tile--link] h3,[data-ctype=list][data-list-type=insocial_pi1] .tile [class^=tile--link] .h3,[data-ctype=list][data-list-type=kluexperience_pi1] .tile [class^=tile--quote] h3,[data-ctype=list][data-list-type=kluexperience_pi1] .tile [class^=tile--quote] .h3,[data-ctype=list][data-list-type=kluexperience_pi1] .tile [class^=tile--link] h3,[data-ctype=list][data-list-type=kluexperience_pi1] .tile [class^=tile--link] .h3,[data-ctype=list][data-list-type=kluexperience_pi2] .tile [class^=tile--quote] h3,[data-ctype=list][data-list-type=kluexperience_pi2] .tile [class^=tile--quote] .h3,[data-ctype=list][data-list-type=kluexperience_pi2] .tile [class^=tile--link] h3,[data-ctype=list][data-list-type=kluexperience_pi2] .tile [class^=tile--link] .h3,[data-ctype=list][data-list-type=kluexperience_pi10] .tile [class^=tile--quote] h3,[data-ctype=list][data-list-type=kluexperience_pi10] .tile [class^=tile--quote] .h3,[data-ctype=list][data-list-type=kluexperience_pi10] .tile [class^=tile--link] h3,[data-ctype=list][data-list-type=kluexperience_pi10] .tile [class^=tile--link] .h3,[data-ctype=list][data-list-type=kluexperience_pi11] .tile [class^=tile--quote] h3,[data-ctype=list][data-list-type=kluexperience_pi11] .tile [class^=tile--quote] .h3,[data-ctype=list][data-list-type=kluexperience_pi11] .tile [class^=tile--link] h3,[data-ctype=list][data-list-type=kluexperience_pi11] .tile [class^=tile--link] .h3,[data-ctype=list][data-list-type=kluexperience_pi12] .tile [class^=tile--quote] h3,[data-ctype=list][data-list-type=kluexperience_pi12] .tile [class^=tile--quote] .h3,[data-ctype=list][data-list-type=kluexperience_pi12] .tile [class^=tile--link] h3,[data-ctype=list][data-list-type=kluexperience_pi12] .tile [class^=tile--link] .h3,[data-ctype=tile] .tile [class^=tile--quote] h3,[data-ctype=tile] .tile [class^=tile--quote] .h3,[data-ctype=tile] .tile [class^=tile--link] h3,[data-ctype=tile] .tile [class^=tile--link] .h3{font-family:"SaansSemiMono-Web",Georgia,"Times New Roman",Times,serif;font-size:1.3333333333em;font-weight:bold;line-height:1.25}[data-ctype=list][data-list-type=insocial_pi1] .tile [class^=tile--ask-a-student] h3,[data-ctype=list][data-list-type=insocial_pi1] .tile [class^=tile--ask-a-student] .h3,[data-ctype=list][data-list-type=kluexperience_pi1] .tile [class^=tile--ask-a-student] h3,[data-ctype=list][data-list-type=kluexperience_pi1] .tile [class^=tile--ask-a-student] .h3,[data-ctype=list][data-list-type=kluexperience_pi2] .tile [class^=tile--ask-a-student] h3,[data-ctype=list][data-list-type=kluexperience_pi2] .tile [class^=tile--ask-a-student] .h3,[data-ctype=list][data-list-type=kluexperience_pi10] .tile [class^=tile--ask-a-student] h3,[data-ctype=list][data-list-type=kluexperience_pi10] .tile [class^=tile--ask-a-student] .h3,[data-ctype=list][data-list-type=kluexperience_pi11] .tile [class^=tile--ask-a-student] h3,[data-ctype=list][data-list-type=kluexperience_pi11] .tile [class^=tile--ask-a-student] .h3,[data-ctype=list][data-list-type=kluexperience_pi12] .tile [class^=tile--ask-a-student] h3,[data-ctype=list][data-list-type=kluexperience_pi12] .tile [class^=tile--ask-a-student] .h3,[data-ctype=tile] .tile [class^=tile--ask-a-student] h3,[data-ctype=tile] .tile [class^=tile--ask-a-student] .h3{font-family:"SaansSemiMono-Web",Georgia,"Times New Roman",Times,serif;font-size:1.3333333333em;font-weight:bold;text-transform:uppercase;line-height:1.25}[data-ctype=list][data-list-type=insocial_pi1] .tile [class^=tile--ask-a-student] .tile--ask-a-student--flag,[data-ctype=list][data-list-type=kluexperience_pi1] .tile [class^=tile--ask-a-student] .tile--ask-a-student--flag,[data-ctype=list][data-list-type=kluexperience_pi2] .tile [class^=tile--ask-a-student] .tile--ask-a-student--flag,[data-ctype=list][data-list-type=kluexperience_pi10] .tile [class^=tile--ask-a-student] .tile--ask-a-student--flag,[data-ctype=list][data-list-type=kluexperience_pi11] .tile [class^=tile--ask-a-student] .tile--ask-a-student--flag,[data-ctype=list][data-list-type=kluexperience_pi12] .tile [class^=tile--ask-a-student] .tile--ask-a-student--flag,[data-ctype=tile] .tile [class^=tile--ask-a-student] .tile--ask-a-student--flag{position:absolute;top:0.8333333333rem;right:1rem}[data-ctype=list][data-list-type=insocial_pi1] .tile [class^=tile--rating] a,[data-ctype=list][data-list-type=kluexperience_pi1] .tile [class^=tile--rating] a,[data-ctype=list][data-list-type=kluexperience_pi2] .tile [class^=tile--rating] a,[data-ctype=list][data-list-type=kluexperience_pi10] .tile [class^=tile--rating] a,[data-ctype=list][data-list-type=kluexperience_pi11] .tile [class^=tile--rating] a,[data-ctype=list][data-list-type=kluexperience_pi12] .tile [class^=tile--rating] a,[data-ctype=tile] .tile [class^=tile--rating] a{height:100%;background:#4963f6;text-align:center}[data-ctype=list][data-list-type=insocial_pi1] .tile [class^=tile--rating] a:before,[data-ctype=list][data-list-type=kluexperience_pi1] .tile [class^=tile--rating] a:before,[data-ctype=list][data-list-type=kluexperience_pi2] .tile [class^=tile--rating] a:before,[data-ctype=list][data-list-type=kluexperience_pi10] .tile [class^=tile--rating] a:before,[data-ctype=list][data-list-type=kluexperience_pi11] .tile [class^=tile--rating] a:before,[data-ctype=list][data-list-type=kluexperience_pi12] .tile [class^=tile--rating] a:before,[data-ctype=tile] .tile [class^=tile--rating] a:before{content:none}[data-ctype=list][data-list-type=insocial_pi1] .tile [class^=tile--rating] a:hover img,[data-ctype=list][data-list-type=kluexperience_pi1] .tile [class^=tile--rating] a:hover img,[data-ctype=list][data-list-type=kluexperience_pi2] .tile [class^=tile--rating] a:hover img,[data-ctype=list][data-list-type=kluexperience_pi10] .tile [class^=tile--rating] a:hover img,[data-ctype=list][data-list-type=kluexperience_pi11] .tile [class^=tile--rating] a:hover img,[data-ctype=list][data-list-type=kluexperience_pi12] .tile [class^=tile--rating] a:hover img,[data-ctype=tile] .tile [class^=tile--rating] a:hover img{transform:none}[data-ctype=list][data-list-type=insocial_pi1] .tile [class^=tile--rating] a .content,[data-ctype=list][data-list-type=kluexperience_pi1] .tile [class^=tile--rating] a .content,[data-ctype=list][data-list-type=kluexperience_pi2] .tile [class^=tile--rating] a .content,[data-ctype=list][data-list-type=kluexperience_pi10] .tile [class^=tile--rating] a .content,[data-ctype=list][data-list-type=kluexperience_pi11] .tile [class^=tile--rating] a .content,[data-ctype=list][data-list-type=kluexperience_pi12] .tile [class^=tile--rating] a .content,[data-ctype=tile] .tile [class^=tile--rating] a .content{width:100%;position:absolute;top:0;bottom:0;padding:.5555555556rem .5555555556rem .8333333333rem .5555555556rem}[data-ctype=list][data-list-type=insocial_pi1] .tile [class^=tile--rating] a .content .image,[data-ctype=list][data-list-type=kluexperience_pi1] .tile [class^=tile--rating] a .content .image,[data-ctype=list][data-list-type=kluexperience_pi2] .tile [class^=tile--rating] a .content .image,[data-ctype=list][data-list-type=kluexperience_pi10] .tile [class^=tile--rating] a .content .image,[data-ctype=list][data-list-type=kluexperience_pi11] .tile [class^=tile--rating] a .content .image,[data-ctype=list][data-list-type=kluexperience_pi12] .tile [class^=tile--rating] a .content .image,[data-ctype=tile] .tile [class^=tile--rating] a .content .image{height:50%;background:#fff;padding:.5555555556rem;display:flex;align-content:center;justify-content:center;flex-wrap:wrap}[data-ctype=list][data-list-type=insocial_pi1] .tile [class^=tile--rating] a .content .image img,[data-ctype=list][data-list-type=kluexperience_pi1] .tile [class^=tile--rating] a .content .image img,[data-ctype=list][data-list-type=kluexperience_pi2] .tile [class^=tile--rating] a .content .image img,[data-ctype=list][data-list-type=kluexperience_pi10] .tile [class^=tile--rating] a .content .image img,[data-ctype=list][data-list-type=kluexperience_pi11] .tile [class^=tile--rating] a .content .image img,[data-ctype=list][data-list-type=kluexperience_pi12] .tile [class^=tile--rating] a .content .image img,[data-ctype=tile] .tile [class^=tile--rating] a .content .image img{max-width:100%;max-height:100%;height:auto;width:auto}[data-ctype=list][data-list-type=insocial_pi1] .tile [class^=tile--rating] a .content .text,[data-ctype=list][data-list-type=kluexperience_pi1] .tile [class^=tile--rating] a .content .text,[data-ctype=list][data-list-type=kluexperience_pi2] .tile [class^=tile--rating] a .content .text,[data-ctype=list][data-list-type=kluexperience_pi10] .tile [class^=tile--rating] a .content .text,[data-ctype=list][data-list-type=kluexperience_pi11] .tile [class^=tile--rating] a .content .text,[data-ctype=list][data-list-type=kluexperience_pi12] .tile [class^=tile--rating] a .content .text,[data-ctype=tile] .tile [class^=tile--rating] a .content .text{height:50%;position:relative}[data-ctype=list][data-list-type=insocial_pi1] .tile [class^=tile--rating] a .content .text .stars,[data-ctype=list][data-list-type=kluexperience_pi1] .tile [class^=tile--rating] a .content .text .stars,[data-ctype=list][data-list-type=kluexperience_pi2] .tile [class^=tile--rating] a .content .text .stars,[data-ctype=list][data-list-type=kluexperience_pi10] .tile [class^=tile--rating] a .content .text .stars,[data-ctype=list][data-list-type=kluexperience_pi11] .tile [class^=tile--rating] a .content .text .stars,[data-ctype=list][data-list-type=kluexperience_pi12] .tile [class^=tile--rating] a .content .text .stars,[data-ctype=tile] .tile [class^=tile--rating] a .content .text .stars{padding:.6rem 0 .1rem}[data-ctype=list][data-list-type=insocial_pi1] .tile [class^=tile--rating] a .content .text .stars span,[data-ctype=list][data-list-type=kluexperience_pi1] .tile [class^=tile--rating] a .content .text .stars span,[data-ctype=list][data-list-type=kluexperience_pi2] .tile [class^=tile--rating] a .content .text .stars span,[data-ctype=list][data-list-type=kluexperience_pi10] .tile [class^=tile--rating] a .content .text .stars span,[data-ctype=list][data-list-type=kluexperience_pi11] .tile [class^=tile--rating] a .content .text .stars span,[data-ctype=list][data-list-type=kluexperience_pi12] .tile [class^=tile--rating] a .content .text .stars span,[data-ctype=tile] .tile [class^=tile--rating] a .content .text .stars span{padding:0 2.5rem/18}[data-ctype=list][data-list-type=insocial_pi1] .tile [class^=tile--rating] a .content .text .stars span svg,[data-ctype=list][data-list-type=kluexperience_pi1] .tile [class^=tile--rating] a .content .text .stars span svg,[data-ctype=list][data-list-type=kluexperience_pi2] .tile [class^=tile--rating] a .content .text .stars span svg,[data-ctype=list][data-list-type=kluexperience_pi10] .tile [class^=tile--rating] a .content .text .stars span svg,[data-ctype=list][data-list-type=kluexperience_pi11] .tile [class^=tile--rating] a .content .text .stars span svg,[data-ctype=list][data-list-type=kluexperience_pi12] .tile [class^=tile--rating] a .content .text .stars span svg,[data-ctype=tile] .tile [class^=tile--rating] a .content .text .stars span svg{width:1.7777777778rem;height:auto}[data-ctype=list][data-list-type=insocial_pi1] .tile [class^=tile--rating] a .content .text .stars span svg .white,[data-ctype=list][data-list-type=kluexperience_pi1] .tile [class^=tile--rating] a .content .text .stars span svg .white,[data-ctype=list][data-list-type=kluexperience_pi2] .tile [class^=tile--rating] a .content .text .stars span svg .white,[data-ctype=list][data-list-type=kluexperience_pi10] .tile [class^=tile--rating] a .content .text .stars span svg .white,[data-ctype=list][data-list-type=kluexperience_pi11] .tile [class^=tile--rating] a .content .text .stars span svg .white,[data-ctype=list][data-list-type=kluexperience_pi12] .tile [class^=tile--rating] a .content .text .stars span svg .white,[data-ctype=tile] .tile [class^=tile--rating] a .content .text .stars span svg .white{fill:#fff}[data-ctype=list][data-list-type=insocial_pi1] .tile [class^=tile--rating] a .content .text .stars span svg .none,[data-ctype=list][data-list-type=kluexperience_pi1] .tile [class^=tile--rating] a .content .text .stars span svg .none,[data-ctype=list][data-list-type=kluexperience_pi2] .tile [class^=tile--rating] a .content .text .stars span svg .none,[data-ctype=list][data-list-type=kluexperience_pi10] .tile [class^=tile--rating] a .content .text .stars span svg .none,[data-ctype=list][data-list-type=kluexperience_pi11] .tile [class^=tile--rating] a .content .text .stars span svg .none,[data-ctype=list][data-list-type=kluexperience_pi12] .tile [class^=tile--rating] a .content .text .stars span svg .none,[data-ctype=tile] .tile [class^=tile--rating] a .content .text .stars span svg .none{fill:rgba(0,0,0,0)}[data-ctype=list][data-list-type=insocial_pi1] .tile .tile--col a::after,[data-ctype=list][data-list-type=insocial_pi1] .tile .col a::after,[data-ctype=list][data-list-type=kluexperience_pi1] .tile .tile--col a::after,[data-ctype=list][data-list-type=kluexperience_pi1] .tile .col a::after,[data-ctype=list][data-list-type=kluexperience_pi2] .tile .tile--col a::after,[data-ctype=list][data-list-type=kluexperience_pi2] .tile .col a::after,[data-ctype=list][data-list-type=kluexperience_pi10] .tile .tile--col a::after,[data-ctype=list][data-list-type=kluexperience_pi10] .tile .col a::after,[data-ctype=list][data-list-type=kluexperience_pi11] .tile .tile--col a::after,[data-ctype=list][data-list-type=kluexperience_pi11] .tile .col a::after,[data-ctype=list][data-list-type=kluexperience_pi12] .tile .tile--col a::after,[data-ctype=list][data-list-type=kluexperience_pi12] .tile .col a::after,[data-ctype=tile] .tile .tile--col a::after,[data-ctype=tile] .tile .col a::after{position:absolute;top:.5555555556rem;right:.5555555556rem;content:"";display:block;height:1rem;width:1rem;background-size:1rem 1rem;background-repeat:no-repeat;z-index:1}[data-ctype=list][data-list-type=insocial_pi1] .tile [class^=tile--article-news] a::after,[data-ctype=list][data-list-type=kluexperience_pi1] .tile [class^=tile--article-news] a::after,[data-ctype=list][data-list-type=kluexperience_pi2] .tile [class^=tile--article-news] a::after,[data-ctype=list][data-list-type=kluexperience_pi10] .tile [class^=tile--article-news] a::after,[data-ctype=list][data-list-type=kluexperience_pi11] .tile [class^=tile--article-news] a::after,[data-ctype=list][data-list-type=kluexperience_pi12] .tile [class^=tile--article-news] a::after,[data-ctype=tile] .tile [class^=tile--article-news] a::after{background-image:url(../Assets/icon-experience-news.svg)}[data-ctype=list][data-list-type=insocial_pi1] .tile [class^=tile--article-article] a::after,[data-ctype=list][data-list-type=kluexperience_pi1] .tile [class^=tile--article-article] a::after,[data-ctype=list][data-list-type=kluexperience_pi2] .tile [class^=tile--article-article] a::after,[data-ctype=list][data-list-type=kluexperience_pi10] .tile [class^=tile--article-article] a::after,[data-ctype=list][data-list-type=kluexperience_pi11] .tile [class^=tile--article-article] a::after,[data-ctype=list][data-list-type=kluexperience_pi12] .tile [class^=tile--article-article] a::after,[data-ctype=tile] .tile [class^=tile--article-article] a::after{background-image:url(../Assets/icon-experience-article.svg)}[data-ctype=list][data-list-type=insocial_pi1] .tile [class^=tile--article-gallery] a::after,[data-ctype=list][data-list-type=kluexperience_pi1] .tile [class^=tile--article-gallery] a::after,[data-ctype=list][data-list-type=kluexperience_pi2] .tile [class^=tile--article-gallery] a::after,[data-ctype=list][data-list-type=kluexperience_pi10] .tile [class^=tile--article-gallery] a::after,[data-ctype=list][data-list-type=kluexperience_pi11] .tile [class^=tile--article-gallery] a::after,[data-ctype=list][data-list-type=kluexperience_pi12] .tile [class^=tile--article-gallery] a::after,[data-ctype=tile] .tile [class^=tile--article-gallery] a::after{background-image:url(../Assets/icon-experience-gallery.svg)}[data-ctype=list][data-list-type=insocial_pi1] .tile [class^=tile--quote] a::after,[data-ctype=list][data-list-type=insocial_pi1] .tile[class^=tile--alumni] a::after,[data-ctype=list][data-list-type=kluexperience_pi1] .tile [class^=tile--quote] a::after,[data-ctype=list][data-list-type=kluexperience_pi1] .tile[class^=tile--alumni] a::after,[data-ctype=list][data-list-type=kluexperience_pi2] .tile [class^=tile--quote] a::after,[data-ctype=list][data-list-type=kluexperience_pi2] .tile[class^=tile--alumni] a::after,[data-ctype=list][data-list-type=kluexperience_pi10] .tile [class^=tile--quote] a::after,[data-ctype=list][data-list-type=kluexperience_pi10] .tile[class^=tile--alumni] a::after,[data-ctype=list][data-list-type=kluexperience_pi11] .tile [class^=tile--quote] a::after,[data-ctype=list][data-list-type=kluexperience_pi11] .tile[class^=tile--alumni] a::after,[data-ctype=list][data-list-type=kluexperience_pi12] .tile [class^=tile--quote] a::after,[data-ctype=list][data-list-type=kluexperience_pi12] .tile[class^=tile--alumni] a::after,[data-ctype=tile] .tile [class^=tile--quote] a::after,[data-ctype=tile] .tile[class^=tile--alumni] a::after{background-image:url(../Assets/icon-experience-quote.svg)}[data-ctype=list][data-list-type=insocial_pi1] .tile [class^=tile--social-facebook] a::after,[data-ctype=list][data-list-type=kluexperience_pi1] .tile [class^=tile--social-facebook] a::after,[data-ctype=list][data-list-type=kluexperience_pi2] .tile [class^=tile--social-facebook] a::after,[data-ctype=list][data-list-type=kluexperience_pi10] .tile [class^=tile--social-facebook] a::after,[data-ctype=list][data-list-type=kluexperience_pi11] .tile [class^=tile--social-facebook] a::after,[data-ctype=list][data-list-type=kluexperience_pi12] .tile [class^=tile--social-facebook] a::after,[data-ctype=tile] .tile [class^=tile--social-facebook] a::after{background-image:url(../Assets/icon-experience-facebook.svg)}[data-ctype=list][data-list-type=insocial_pi1] .tile [class^=tile--social-twitter] a::after,[data-ctype=list][data-list-type=kluexperience_pi1] .tile [class^=tile--social-twitter] a::after,[data-ctype=list][data-list-type=kluexperience_pi2] .tile [class^=tile--social-twitter] a::after,[data-ctype=list][data-list-type=kluexperience_pi10] .tile [class^=tile--social-twitter] a::after,[data-ctype=list][data-list-type=kluexperience_pi11] .tile [class^=tile--social-twitter] a::after,[data-ctype=list][data-list-type=kluexperience_pi12] .tile [class^=tile--social-twitter] a::after,[data-ctype=tile] .tile [class^=tile--social-twitter] a::after{background-image:url(../Assets/icon-experience-twitter.svg)}[data-ctype=list][data-list-type=insocial_pi1] .tile [class^=tile--social-instagram] a::after,[data-ctype=list][data-list-type=kluexperience_pi1] .tile [class^=tile--social-instagram] a::after,[data-ctype=list][data-list-type=kluexperience_pi2] .tile [class^=tile--social-instagram] a::after,[data-ctype=list][data-list-type=kluexperience_pi10] .tile [class^=tile--social-instagram] a::after,[data-ctype=list][data-list-type=kluexperience_pi11] .tile [class^=tile--social-instagram] a::after,[data-ctype=list][data-list-type=kluexperience_pi12] .tile [class^=tile--social-instagram] a::after,[data-ctype=tile] .tile [class^=tile--social-instagram] a::after{background-image:url(../Assets/icon-experience-instagram.svg)}[data-ctype=list][data-list-type=insocial_pi1] .tile [class^=tile--video] a::after,[data-ctype=list][data-list-type=kluexperience_pi1] .tile [class^=tile--video] a::after,[data-ctype=list][data-list-type=kluexperience_pi2] .tile [class^=tile--video] a::after,[data-ctype=list][data-list-type=kluexperience_pi10] .tile [class^=tile--video] a::after,[data-ctype=list][data-list-type=kluexperience_pi11] .tile [class^=tile--video] a::after,[data-ctype=list][data-list-type=kluexperience_pi12] .tile [class^=tile--video] a::after,[data-ctype=tile] .tile [class^=tile--video] a::after{background-image:url(../Assets/icon-experience-video.svg)}[data-ctype=list][data-list-type=insocial_pi1] .tile [class^=tile--ask-a-student] a::after,[data-ctype=list][data-list-type=kluexperience_pi1] .tile [class^=tile--ask-a-student] a::after,[data-ctype=list][data-list-type=kluexperience_pi2] .tile [class^=tile--ask-a-student] a::after,[data-ctype=list][data-list-type=kluexperience_pi10] .tile [class^=tile--ask-a-student] a::after,[data-ctype=list][data-list-type=kluexperience_pi11] .tile [class^=tile--ask-a-student] a::after,[data-ctype=list][data-list-type=kluexperience_pi12] .tile [class^=tile--ask-a-student] a::after,[data-ctype=tile] .tile [class^=tile--ask-a-student] a::after{background-image:url(../Assets/icon-experience-ask-a-student.svg)}[data-ctype=list][data-list-type=insocial_pi1][data-layout="1"] .tile [class^=tile--event] .event-wrap,[data-ctype=list][data-list-type=kluexperience_pi1][data-layout="1"] .tile [class^=tile--event] .event-wrap,[data-ctype=list][data-list-type=kluexperience_pi2][data-layout="1"] .tile [class^=tile--event] .event-wrap,[data-ctype=list][data-list-type=kluexperience_pi10][data-layout="1"] .tile [class^=tile--event] .event-wrap,[data-ctype=list][data-list-type=kluexperience_pi11][data-layout="1"] .tile [class^=tile--event] .event-wrap,[data-ctype=list][data-list-type=kluexperience_pi12][data-layout="1"] .tile [class^=tile--event] .event-wrap,[data-ctype=tile][data-layout="1"] .tile [class^=tile--event] .event-wrap{border-color:#fff}[data-ctype=list][data-list-type=insocial_pi1][data-layout="2"] .tile .no-image[class^=tile--social-facebook] a,[data-ctype=list][data-list-type=kluexperience_pi1][data-layout="2"] .tile .no-image[class^=tile--social-facebook] a,[data-ctype=list][data-list-type=kluexperience_pi2][data-layout="2"] .tile .no-image[class^=tile--social-facebook] a,[data-ctype=list][data-list-type=kluexperience_pi10][data-layout="2"] .tile .no-image[class^=tile--social-facebook] a,[data-ctype=list][data-list-type=kluexperience_pi11][data-layout="2"] .tile .no-image[class^=tile--social-facebook] a,[data-ctype=list][data-list-type=kluexperience_pi12][data-layout="2"] .tile .no-image[class^=tile--social-facebook] a,[data-ctype=tile][data-layout="2"] .tile .no-image[class^=tile--social-facebook] a{background-color:#ebebeb;color:#232323}[data-ctype=list][data-list-type=insocial_pi1][data-layout="2"] .tile .no-image[class^=tile--social-facebook] a:hover,[data-ctype=list][data-list-type=insocial_pi1][data-layout="2"] .tile .no-image[class^=tile--social-facebook] a:focus,[data-ctype=list][data-list-type=kluexperience_pi1][data-layout="2"] .tile .no-image[class^=tile--social-facebook] a:hover,[data-ctype=list][data-list-type=kluexperience_pi1][data-layout="2"] .tile .no-image[class^=tile--social-facebook] a:focus,[data-ctype=list][data-list-type=kluexperience_pi2][data-layout="2"] .tile .no-image[class^=tile--social-facebook] a:hover,[data-ctype=list][data-list-type=kluexperience_pi2][data-layout="2"] .tile .no-image[class^=tile--social-facebook] a:focus,[data-ctype=list][data-list-type=kluexperience_pi10][data-layout="2"] .tile .no-image[class^=tile--social-facebook] a:hover,[data-ctype=list][data-list-type=kluexperience_pi10][data-layout="2"] .tile .no-image[class^=tile--social-facebook] a:focus,[data-ctype=list][data-list-type=kluexperience_pi11][data-layout="2"] .tile .no-image[class^=tile--social-facebook] a:hover,[data-ctype=list][data-list-type=kluexperience_pi11][data-layout="2"] .tile .no-image[class^=tile--social-facebook] a:focus,[data-ctype=list][data-list-type=kluexperience_pi12][data-layout="2"] .tile .no-image[class^=tile--social-facebook] a:hover,[data-ctype=list][data-list-type=kluexperience_pi12][data-layout="2"] .tile .no-image[class^=tile--social-facebook] a:focus,[data-ctype=tile][data-layout="2"] .tile .no-image[class^=tile--social-facebook] a:hover,[data-ctype=tile][data-layout="2"] .tile .no-image[class^=tile--social-facebook] a:focus{background-color:#ede8d8}[data-ctype=list][data-list-type=insocial_pi1][data-layout="2"] .tile .no-image[class^=tile--social-facebook] a div.content,[data-ctype=list][data-list-type=kluexperience_pi1][data-layout="2"] .tile .no-image[class^=tile--social-facebook] a div.content,[data-ctype=list][data-list-type=kluexperience_pi2][data-layout="2"] .tile .no-image[class^=tile--social-facebook] a div.content,[data-ctype=list][data-list-type=kluexperience_pi10][data-layout="2"] .tile .no-image[class^=tile--social-facebook] a div.content,[data-ctype=list][data-list-type=kluexperience_pi11][data-layout="2"] .tile .no-image[class^=tile--social-facebook] a div.content,[data-ctype=list][data-list-type=kluexperience_pi12][data-layout="2"] .tile .no-image[class^=tile--social-facebook] a div.content,[data-ctype=tile][data-layout="2"] .tile .no-image[class^=tile--social-facebook] a div.content{background-image:url(../Assets/icon-experience-facebook-dark.svg)}[data-ctype=list][data-list-type=insocial_pi1][data-layout="2"] .tile [class^=tile--event] time,[data-ctype=list][data-list-type=kluexperience_pi1][data-layout="2"] .tile [class^=tile--event] time,[data-ctype=list][data-list-type=kluexperience_pi2][data-layout="2"] .tile [class^=tile--event] time,[data-ctype=list][data-list-type=kluexperience_pi10][data-layout="2"] .tile [class^=tile--event] time,[data-ctype=list][data-list-type=kluexperience_pi11][data-layout="2"] .tile [class^=tile--event] time,[data-ctype=list][data-list-type=kluexperience_pi12][data-layout="2"] .tile [class^=tile--event] time,[data-ctype=tile][data-layout="2"] .tile [class^=tile--event] time{background:#fff;color:#000}[data-ctype=list][data-list-type=insocial_pi1][data-layout="2"] .tile [class^=tile--event] .event-wrap .event-content-image p,[data-ctype=list][data-list-type=kluexperience_pi1][data-layout="2"] .tile [class^=tile--event] .event-wrap .event-content-image p,[data-ctype=list][data-list-type=kluexperience_pi2][data-layout="2"] .tile [class^=tile--event] .event-wrap .event-content-image p,[data-ctype=list][data-list-type=kluexperience_pi10][data-layout="2"] .tile [class^=tile--event] .event-wrap .event-content-image p,[data-ctype=list][data-list-type=kluexperience_pi11][data-layout="2"] .tile [class^=tile--event] .event-wrap .event-content-image p,[data-ctype=list][data-list-type=kluexperience_pi12][data-layout="2"] .tile [class^=tile--event] .event-wrap .event-content-image p,[data-ctype=tile][data-layout="2"] .tile [class^=tile--event] .event-wrap .event-content-image p{color:#232323}[data-ctype=list][data-list-type=insocial_pi1][data-layout="2"] .tile [class^=tile--event] .btn-gold,[data-ctype=list][data-list-type=insocial_pi1][data-layout="2"] .tile [class^=tile--event] .ff-form-overrides button,.ff-form-overrides [data-ctype=list][data-list-type=insocial_pi1][data-layout="2"] .tile [class^=tile--event] button,[data-ctype=list][data-list-type=insocial_pi1][data-layout="2"] .tile [class^=tile--event] .ff-form-overrides input[type=button],.ff-form-overrides [data-ctype=list][data-list-type=insocial_pi1][data-layout="2"] .tile [class^=tile--event] input[type=button],[data-ctype=list][data-list-type=insocial_pi1][data-layout="2"] .tile [class^=tile--event] .ff-form-overrides input[type=submit],.ff-form-overrides [data-ctype=list][data-list-type=insocial_pi1][data-layout="2"] .tile [class^=tile--event] input[type=submit],[data-ctype=list][data-list-type=insocial_pi1][data-layout="2"] .tile [class^=tile--event] .ff-form-overrides input[type=reset],.ff-form-overrides [data-ctype=list][data-list-type=insocial_pi1][data-layout="2"] .tile [class^=tile--event] input[type=reset],[data-ctype=list][data-list-type=kluexperience_pi1][data-layout="2"] .tile [class^=tile--event] .btn-gold,[data-ctype=list][data-list-type=kluexperience_pi1][data-layout="2"] .tile [class^=tile--event] .ff-form-overrides button,.ff-form-overrides [data-ctype=list][data-list-type=kluexperience_pi1][data-layout="2"] .tile [class^=tile--event] button,[data-ctype=list][data-list-type=kluexperience_pi1][data-layout="2"] .tile [class^=tile--event] .ff-form-overrides input[type=button],.ff-form-overrides [data-ctype=list][data-list-type=kluexperience_pi1][data-layout="2"] .tile [class^=tile--event] input[type=button],[data-ctype=list][data-list-type=kluexperience_pi1][data-layout="2"] .tile [class^=tile--event] .ff-form-overrides input[type=submit],.ff-form-overrides [data-ctype=list][data-list-type=kluexperience_pi1][data-layout="2"] .tile [class^=tile--event] input[type=submit],[data-ctype=list][data-list-type=kluexperience_pi1][data-layout="2"] .tile [class^=tile--event] .ff-form-overrides input[type=reset],.ff-form-overrides [data-ctype=list][data-list-type=kluexperience_pi1][data-layout="2"] .tile [class^=tile--event] input[type=reset],[data-ctype=list][data-list-type=kluexperience_pi2][data-layout="2"] .tile [class^=tile--event] .btn-gold,[data-ctype=list][data-list-type=kluexperience_pi2][data-layout="2"] .tile [class^=tile--event] .ff-form-overrides button,.ff-form-overrides [data-ctype=list][data-list-type=kluexperience_pi2][data-layout="2"] .tile [class^=tile--event] button,[data-ctype=list][data-list-type=kluexperience_pi2][data-layout="2"] .tile [class^=tile--event] .ff-form-overrides input[type=button],.ff-form-overrides [data-ctype=list][data-list-type=kluexperience_pi2][data-layout="2"] .tile [class^=tile--event] input[type=button],[data-ctype=list][data-list-type=kluexperience_pi2][data-layout="2"] .tile [class^=tile--event] .ff-form-overrides input[type=submit],.ff-form-overrides [data-ctype=list][data-list-type=kluexperience_pi2][data-layout="2"] .tile [class^=tile--event] input[type=submit],[data-ctype=list][data-list-type=kluexperience_pi2][data-layout="2"] .tile [class^=tile--event] .ff-form-overrides input[type=reset],.ff-form-overrides [data-ctype=list][data-list-type=kluexperience_pi2][data-layout="2"] .tile [class^=tile--event] input[type=reset],[data-ctype=list][data-list-type=kluexperience_pi10][data-layout="2"] .tile [class^=tile--event] .btn-gold,[data-ctype=list][data-list-type=kluexperience_pi10][data-layout="2"] .tile [class^=tile--event] .ff-form-overrides button,.ff-form-overrides [data-ctype=list][data-list-type=kluexperience_pi10][data-layout="2"] .tile [class^=tile--event] button,[data-ctype=list][data-list-type=kluexperience_pi10][data-layout="2"] .tile [class^=tile--event] .ff-form-overrides input[type=button],.ff-form-overrides [data-ctype=list][data-list-type=kluexperience_pi10][data-layout="2"] .tile [class^=tile--event] input[type=button],[data-ctype=list][data-list-type=kluexperience_pi10][data-layout="2"] .tile [class^=tile--event] .ff-form-overrides input[type=submit],.ff-form-overrides [data-ctype=list][data-list-type=kluexperience_pi10][data-layout="2"] .tile [class^=tile--event] input[type=submit],[data-ctype=list][data-list-type=kluexperience_pi10][data-layout="2"] .tile [class^=tile--event] .ff-form-overrides input[type=reset],.ff-form-overrides [data-ctype=list][data-list-type=kluexperience_pi10][data-layout="2"] .tile [class^=tile--event] input[type=reset],[data-ctype=list][data-list-type=kluexperience_pi11][data-layout="2"] .tile [class^=tile--event] .btn-gold,[data-ctype=list][data-list-type=kluexperience_pi11][data-layout="2"] .tile [class^=tile--event] .ff-form-overrides button,.ff-form-overrides [data-ctype=list][data-list-type=kluexperience_pi11][data-layout="2"] .tile [class^=tile--event] button,[data-ctype=list][data-list-type=kluexperience_pi11][data-layout="2"] .tile [class^=tile--event] .ff-form-overrides input[type=button],.ff-form-overrides [data-ctype=list][data-list-type=kluexperience_pi11][data-layout="2"] .tile [class^=tile--event] input[type=button],[data-ctype=list][data-list-type=kluexperience_pi11][data-layout="2"] .tile [class^=tile--event] .ff-form-overrides input[type=submit],.ff-form-overrides [data-ctype=list][data-list-type=kluexperience_pi11][data-layout="2"] .tile [class^=tile--event] input[type=submit],[data-ctype=list][data-list-type=kluexperience_pi11][data-layout="2"] .tile [class^=tile--event] .ff-form-overrides input[type=reset],.ff-form-overrides [data-ctype=list][data-list-type=kluexperience_pi11][data-layout="2"] .tile [class^=tile--event] input[type=reset],[data-ctype=list][data-list-type=kluexperience_pi12][data-layout="2"] .tile [class^=tile--event] .btn-gold,[data-ctype=list][data-list-type=kluexperience_pi12][data-layout="2"] .tile [class^=tile--event] .ff-form-overrides button,.ff-form-overrides [data-ctype=list][data-list-type=kluexperience_pi12][data-layout="2"] .tile [class^=tile--event] button,[data-ctype=list][data-list-type=kluexperience_pi12][data-layout="2"] .tile [class^=tile--event] .ff-form-overrides input[type=button],.ff-form-overrides [data-ctype=list][data-list-type=kluexperience_pi12][data-layout="2"] .tile [class^=tile--event] input[type=button],[data-ctype=list][data-list-type=kluexperience_pi12][data-layout="2"] .tile [class^=tile--event] .ff-form-overrides input[type=submit],.ff-form-overrides [data-ctype=list][data-list-type=kluexperience_pi12][data-layout="2"] .tile [class^=tile--event] input[type=submit],[data-ctype=list][data-list-type=kluexperience_pi12][data-layout="2"] .tile [class^=tile--event] .ff-form-overrides input[type=reset],.ff-form-overrides [data-ctype=list][data-list-type=kluexperience_pi12][data-layout="2"] .tile [class^=tile--event] input[type=reset],[data-ctype=tile][data-layout="2"] .tile [class^=tile--event] .btn-gold,[data-ctype=tile][data-layout="2"] .tile [class^=tile--event] .ff-form-overrides button,.ff-form-overrides [data-ctype=tile][data-layout="2"] .tile [class^=tile--event] button,[data-ctype=tile][data-layout="2"] .tile [class^=tile--event] .ff-form-overrides input[type=button],.ff-form-overrides [data-ctype=tile][data-layout="2"] .tile [class^=tile--event] input[type=button],[data-ctype=tile][data-layout="2"] .tile [class^=tile--event] .ff-form-overrides input[type=submit],.ff-form-overrides [data-ctype=tile][data-layout="2"] .tile [class^=tile--event] input[type=submit],[data-ctype=tile][data-layout="2"] .tile [class^=tile--event] .ff-form-overrides input[type=reset],.ff-form-overrides [data-ctype=tile][data-layout="2"] .tile [class^=tile--event] input[type=reset]{color:#232323}[data-ctype=list][data-list-type=insocial_pi1][data-layout="2"] .tile [class^=tile--event].no-image .event-wrap .event-content-image h3,[data-ctype=list][data-list-type=insocial_pi1][data-layout="2"] .tile [class^=tile--event].no-image .event-wrap .event-content-image .h3,[data-ctype=list][data-list-type=kluexperience_pi1][data-layout="2"] .tile [class^=tile--event].no-image .event-wrap .event-content-image h3,[data-ctype=list][data-list-type=kluexperience_pi1][data-layout="2"] .tile [class^=tile--event].no-image .event-wrap .event-content-image .h3,[data-ctype=list][data-list-type=kluexperience_pi2][data-layout="2"] .tile [class^=tile--event].no-image .event-wrap .event-content-image h3,[data-ctype=list][data-list-type=kluexperience_pi2][data-layout="2"] .tile [class^=tile--event].no-image .event-wrap .event-content-image .h3,[data-ctype=list][data-list-type=kluexperience_pi10][data-layout="2"] .tile [class^=tile--event].no-image .event-wrap .event-content-image h3,[data-ctype=list][data-list-type=kluexperience_pi10][data-layout="2"] .tile [class^=tile--event].no-image .event-wrap .event-content-image .h3,[data-ctype=list][data-list-type=kluexperience_pi11][data-layout="2"] .tile [class^=tile--event].no-image .event-wrap .event-content-image h3,[data-ctype=list][data-list-type=kluexperience_pi11][data-layout="2"] .tile [class^=tile--event].no-image .event-wrap .event-content-image .h3,[data-ctype=list][data-list-type=kluexperience_pi12][data-layout="2"] .tile [class^=tile--event].no-image .event-wrap .event-content-image h3,[data-ctype=list][data-list-type=kluexperience_pi12][data-layout="2"] .tile [class^=tile--event].no-image .event-wrap .event-content-image .h3,[data-ctype=tile][data-layout="2"] .tile [class^=tile--event].no-image .event-wrap .event-content-image h3,[data-ctype=tile][data-layout="2"] .tile [class^=tile--event].no-image .event-wrap .event-content-image .h3{color:#fff}[data-ctype=list][data-list-type=insocial_pi1][data-layout="2"] .tile [class^=tile--event].no-image .event-wrap .event-content-image p,[data-ctype=list][data-list-type=kluexperience_pi1][data-layout="2"] .tile [class^=tile--event].no-image .event-wrap .event-content-image p,[data-ctype=list][data-list-type=kluexperience_pi2][data-layout="2"] .tile [class^=tile--event].no-image .event-wrap .event-content-image p,[data-ctype=list][data-list-type=kluexperience_pi10][data-layout="2"] .tile [class^=tile--event].no-image .event-wrap .event-content-image p,[data-ctype=list][data-list-type=kluexperience_pi11][data-layout="2"] .tile [class^=tile--event].no-image .event-wrap .event-content-image p,[data-ctype=list][data-list-type=kluexperience_pi12][data-layout="2"] .tile [class^=tile--event].no-image .event-wrap .event-content-image p,[data-ctype=tile][data-layout="2"] .tile [class^=tile--event].no-image .event-wrap .event-content-image p{color:#ebebeb}[data-ctype=list][data-list-type=insocial_pi1][data-layout="2"] .tile [class^=tile--rating] a,[data-ctype=list][data-list-type=kluexperience_pi1][data-layout="2"] .tile [class^=tile--rating] a,[data-ctype=list][data-list-type=kluexperience_pi2][data-layout="2"] .tile [class^=tile--rating] a,[data-ctype=list][data-list-type=kluexperience_pi10][data-layout="2"] .tile [class^=tile--rating] a,[data-ctype=list][data-list-type=kluexperience_pi11][data-layout="2"] .tile [class^=tile--rating] a,[data-ctype=list][data-list-type=kluexperience_pi12][data-layout="2"] .tile [class^=tile--rating] a,[data-ctype=tile][data-layout="2"] .tile [class^=tile--rating] a{background-color:#fff;color:#4963f6}[data-ctype=list][data-list-type=insocial_pi1][data-layout="2"] .tile [class^=tile--rating] a:hover,[data-ctype=list][data-list-type=insocial_pi1][data-layout="2"] .tile [class^=tile--rating] a:focus,[data-ctype=list][data-list-type=kluexperience_pi1][data-layout="2"] .tile [class^=tile--rating] a:hover,[data-ctype=list][data-list-type=kluexperience_pi1][data-layout="2"] .tile [class^=tile--rating] a:focus,[data-ctype=list][data-list-type=kluexperience_pi2][data-layout="2"] .tile [class^=tile--rating] a:hover,[data-ctype=list][data-list-type=kluexperience_pi2][data-layout="2"] .tile [class^=tile--rating] a:focus,[data-ctype=list][data-list-type=kluexperience_pi10][data-layout="2"] .tile [class^=tile--rating] a:hover,[data-ctype=list][data-list-type=kluexperience_pi10][data-layout="2"] .tile [class^=tile--rating] a:focus,[data-ctype=list][data-list-type=kluexperience_pi11][data-layout="2"] .tile [class^=tile--rating] a:hover,[data-ctype=list][data-list-type=kluexperience_pi11][data-layout="2"] .tile [class^=tile--rating] a:focus,[data-ctype=list][data-list-type=kluexperience_pi12][data-layout="2"] .tile [class^=tile--rating] a:hover,[data-ctype=list][data-list-type=kluexperience_pi12][data-layout="2"] .tile [class^=tile--rating] a:focus,[data-ctype=tile][data-layout="2"] .tile [class^=tile--rating] a:hover,[data-ctype=tile][data-layout="2"] .tile [class^=tile--rating] a:focus{background-color:#fff}[data-ctype=list][data-list-type=insocial_pi1][data-layout="2"] .tile [class^=tile--rating] a .content .image,[data-ctype=list][data-list-type=kluexperience_pi1][data-layout="2"] .tile [class^=tile--rating] a .content .image,[data-ctype=list][data-list-type=kluexperience_pi2][data-layout="2"] .tile [class^=tile--rating] a .content .image,[data-ctype=list][data-list-type=kluexperience_pi10][data-layout="2"] .tile [class^=tile--rating] a .content .image,[data-ctype=list][data-list-type=kluexperience_pi11][data-layout="2"] .tile [class^=tile--rating] a .content .image,[data-ctype=list][data-list-type=kluexperience_pi12][data-layout="2"] .tile [class^=tile--rating] a .content .image,[data-ctype=tile][data-layout="2"] .tile [class^=tile--rating] a .content .image{border:1px solid #4963f6}[data-ctype=list][data-list-type=insocial_pi1][data-layout="2"] .tile [class^=tile--rating] a .content .text .stars span svg .white,[data-ctype=list][data-list-type=kluexperience_pi1][data-layout="2"] .tile [class^=tile--rating] a .content .text .stars span svg .white,[data-ctype=list][data-list-type=kluexperience_pi2][data-layout="2"] .tile [class^=tile--rating] a .content .text .stars span svg .white,[data-ctype=list][data-list-type=kluexperience_pi10][data-layout="2"] .tile [class^=tile--rating] a .content .text .stars span svg .white,[data-ctype=list][data-list-type=kluexperience_pi11][data-layout="2"] .tile [class^=tile--rating] a .content .text .stars span svg .white,[data-ctype=list][data-list-type=kluexperience_pi12][data-layout="2"] .tile [class^=tile--rating] a .content .text .stars span svg .white,[data-ctype=tile][data-layout="2"] .tile [class^=tile--rating] a .content .text .stars span svg .white{fill:#4963f6}[data-ctype=list][data-list-type=insocial_pi1] .tile--footer,[data-ctype=list][data-list-type=kluexperience_pi1] .tile--footer,[data-ctype=list][data-list-type=kluexperience_pi2] .tile--footer,[data-ctype=list][data-list-type=kluexperience_pi10] .tile--footer,[data-ctype=list][data-list-type=kluexperience_pi11] .tile--footer,[data-ctype=list][data-list-type=kluexperience_pi12] .tile--footer,[data-ctype=tile] .tile--footer{margin-top:.4rem;border-top:.1111111111rem #4963f6 solid;font-size:80%;padding-top:.5rem}[data-ctype=list][data-list-type=insocial_pi1][data-layout="2"] .tile--footer,[data-ctype=list][data-list-type=kluexperience_pi1][data-layout="2"] .tile--footer,[data-ctype=list][data-list-type=kluexperience_pi2][data-layout="2"] .tile--footer,[data-ctype=list][data-list-type=kluexperience_pi10][data-layout="2"] .tile--footer,[data-ctype=list][data-list-type=kluexperience_pi11][data-layout="2"] .tile--footer,[data-ctype=list][data-list-type=kluexperience_pi12][data-layout="2"] .tile--footer,[data-ctype=tile][data-layout="2"] .tile--footer{border-top-color:hsla(0,0%,100%,.75)}[data-ctype=list][data-list-type=kluexperience_pi10] .tile .tile--article-link-to-gallery-image a::after{background-image:none}[data-ctype=list][data-list-type=kluexperience_pi10] .tile .tile--article-link-to-gallery-image div.content{padding:.8rem 1rem}[data-ctype=list][data-list-type=kluexperience_pi10] .tile .tile--article-link-to-gallery-image div.content h3,[data-ctype=list][data-list-type=kluexperience_pi10] .tile .tile--article-link-to-gallery-image div.content .h3{opacity:0;transition:transform 300ms ease-in-out;transform:scale(1, 1)}[data-ctype=list][data-list-type=kluexperience_pi10] .tile .tile--article-link-to-gallery-image .shadow{display:none}[data-ctype=list][data-list-type=kluexperience_pi10] .tile .tile--article-link-to-gallery-image:hover div.content h3,[data-ctype=list][data-list-type=kluexperience_pi10] .tile .tile--article-link-to-gallery-image:hover div.content .h3{opacity:1;transform:scale(1.05, 1.05)}[data-ctype=list][data-list-type=kluexperience_pi10] .tile .tile--article-link-to-gallery-image:hover .shadow{display:block}[data-ctype=list][data-list-type=kluexperience_pi10] .tile .tile--article-link-to-gallery a::after{background-image:none}[data-ctype=list][data-list-type=kluexperience_pi10] .tile .tile--article-link-to-gallery div.content{background:rgba(0,0,0,.5);padding:.8rem 1rem;top:0}[data-ctype=list][data-list-type=kluexperience_pi10] .tile .tile--article-link-to-gallery div.content h3,[data-ctype=list][data-list-type=kluexperience_pi10] .tile .tile--article-link-to-gallery div.content .h3{transform:translateY(-100%);top:50%;position:relative}[data-ctype=list][data-list-type=kluexperience_pi10] .tile .tile--article-link-to-gallery .shadow{display:none}[data-ctype=list][data-list-type=kluexperience_pi11] .tile [class^=tile--ask-a-student] a::after{background-image:none}[data-ctype=list][data-list-type=kluexperience_pi2] .tile [class^=tile--rating] a,[data-ctype=list][data-list-type=kluexperience_pi10] .tile [class^=tile--rating] a,[data-ctype=list][data-list-type=kluexperience_pi11] .tile [class^=tile--rating] a,[data-ctype=list][data-list-type=kluexperience_pi12] .tile [class^=tile--rating] a{min-height:13.8888888889rem}[data-ctype=list][data-list-type=kluexperience_pi2] .tile [class^=tile--rating] a .content .text .stars,[data-ctype=list][data-list-type=kluexperience_pi10] .tile [class^=tile--rating] a .content .text .stars,[data-ctype=list][data-list-type=kluexperience_pi11] .tile [class^=tile--rating] a .content .text .stars,[data-ctype=list][data-list-type=kluexperience_pi12] .tile [class^=tile--rating] a .content .text .stars{padding:1rem 0 .35rem}@media(min-width: 768px){[data-ctype=list][data-list-type=kluexperience_pi2] .tile [class^=tile--rating] a .content .text .stars,[data-ctype=list][data-list-type=kluexperience_pi10] .tile [class^=tile--rating] a .content .text .stars,[data-ctype=list][data-list-type=kluexperience_pi11] .tile [class^=tile--rating] a .content .text .stars,[data-ctype=list][data-list-type=kluexperience_pi12] .tile [class^=tile--rating] a .content .text .stars{padding:1rem 0 .7rem}}[data-ctype=list][data-list-type=kluexperience_pi2] .tile [class^=tile--rating] a .content .text .stars span,[data-ctype=list][data-list-type=kluexperience_pi10] .tile [class^=tile--rating] a .content .text .stars span,[data-ctype=list][data-list-type=kluexperience_pi11] .tile [class^=tile--rating] a .content .text .stars span,[data-ctype=list][data-list-type=kluexperience_pi12] .tile [class^=tile--rating] a .content .text .stars span{padding:0 .2777777778rem}[data-ctype=list][data-list-type=kluresearch_pi1] .latest-news--footer,[data-ctype=list][data-list-type=kluexperience_pi2] .latest-news--footer,[data-ctype=list][data-list-type=kluexperience_pi7] .latest-news--footer{border-top:.1111111111rem #4963f6 solid;font-size:80%;padding-top:.5rem}[data-ctype=list][data-list-type=kluresearch_pi1] .latest-news--news,[data-ctype=list][data-list-type=kluexperience_pi2] .latest-news--news,[data-ctype=list][data-list-type=kluexperience_pi7] .latest-news--news{margin-bottom:.5rem}[data-ctype=list][data-list-type=kluresearch_pi1] .latest-news--news-content,[data-ctype=list][data-list-type=kluexperience_pi2] .latest-news--news-content,[data-ctype=list][data-list-type=kluexperience_pi7] .latest-news--news-content{margin-top:1rem}[data-ctype=list][data-list-type=kluresearch_pi1] .latest-news--news-content a h3,[data-ctype=list][data-list-type=kluresearch_pi1] .latest-news--news-content a .h3,[data-ctype=list][data-list-type=kluexperience_pi2] .latest-news--news-content a h3,[data-ctype=list][data-list-type=kluexperience_pi2] .latest-news--news-content a .h3,[data-ctype=list][data-list-type=kluexperience_pi7] .latest-news--news-content a h3,[data-ctype=list][data-list-type=kluexperience_pi7] .latest-news--news-content a .h3{color:#232323;margin-bottom:.5em;font-size:1rem}[data-ctype=list][data-list-type=kluresearch_pi1] .latest-news--news-image,[data-ctype=list][data-list-type=kluexperience_pi2] .latest-news--news-image,[data-ctype=list][data-list-type=kluexperience_pi7] .latest-news--news-image{position:relative;display:block;overflow:hidden}[data-ctype=list][data-list-type=kluresearch_pi1] .latest-news--news-image img,[data-ctype=list][data-list-type=kluexperience_pi2] .latest-news--news-image img,[data-ctype=list][data-list-type=kluexperience_pi7] .latest-news--news-image img{transition:transform 300ms ease-in-out;transform:scale(1, 1)}[data-ctype=list][data-list-type=kluresearch_pi1] .latest-news--news-image:before,[data-ctype=list][data-list-type=kluexperience_pi2] .latest-news--news-image:before,[data-ctype=list][data-list-type=kluexperience_pi7] .latest-news--news-image:before{position:absolute;display:block;content:"";height:100%;width:100%;background:#4963f6;opacity:0;transition:opacity 275ms ease-in-out;z-index:1}[data-ctype=list][data-list-type=kluresearch_pi1] .latest-news--news-image div,[data-ctype=list][data-list-type=kluexperience_pi2] .latest-news--news-image div,[data-ctype=list][data-list-type=kluexperience_pi7] .latest-news--news-image div{position:absolute;bottom:-1px;left:50%;transform:translateX(-50%);border-radius:.3888888889rem .3888888889rem 0 0;padding:.6111111111rem 1.0555555556rem 3px;background:#fff;line-height:0;z-index:2;transition:padding 250ms ease-in-out}[data-ctype=list][data-list-type=kluresearch_pi1] .latest-news--news-image div svg,[data-ctype=list][data-list-type=kluexperience_pi2] .latest-news--news-image div svg,[data-ctype=list][data-list-type=kluexperience_pi7] .latest-news--news-image div svg{height:.6666666667rem;width:.6666666667rem}[data-ctype=list][data-list-type=kluresearch_pi1] .latest-news--news-image:hover:before,[data-ctype=list][data-list-type=kluexperience_pi2] .latest-news--news-image:hover:before,[data-ctype=list][data-list-type=kluexperience_pi7] .latest-news--news-image:hover:before{opacity:.3}[data-ctype=list][data-list-type=kluresearch_pi1] .latest-news--news-image:hover img,[data-ctype=list][data-list-type=kluexperience_pi2] .latest-news--news-image:hover img,[data-ctype=list][data-list-type=kluexperience_pi7] .latest-news--news-image:hover img{transform:scale(1.05, 1.05)}[data-ctype=list][data-list-type=kluresearch_pi1] .latest-news--news-image:hover div,[data-ctype=list][data-list-type=kluexperience_pi2] .latest-news--news-image:hover div,[data-ctype=list][data-list-type=kluexperience_pi7] .latest-news--news-image:hover div{padding:.7777777778rem 1.1666666667rem 7px}[data-ctype=list][data-list-type=kluresearch_pi1][data-layout="1"] .latest-news--news-image div,[data-ctype=list][data-list-type=kluexperience_pi2][data-layout="1"] .latest-news--news-image div,[data-ctype=list][data-list-type=kluexperience_pi7][data-layout="1"] .latest-news--news-image div{background:#ebebeb}[data-ctype=list][data-list-type=kluresearch_pi1][data-layout="2"] .latest-news--news-image div,[data-ctype=list][data-list-type=kluexperience_pi2][data-layout="2"] .latest-news--news-image div,[data-ctype=list][data-list-type=kluexperience_pi7][data-layout="2"] .latest-news--news-image div{background:#4963f6}[data-ctype=list][data-list-type=kluresearch_pi1][data-layout="2"] .latest-news--news-content a h3,[data-ctype=list][data-list-type=kluresearch_pi1][data-layout="2"] .latest-news--news-content a .h3,[data-ctype=list][data-list-type=kluexperience_pi2][data-layout="2"] .latest-news--news-content a h3,[data-ctype=list][data-list-type=kluexperience_pi2][data-layout="2"] .latest-news--news-content a .h3,[data-ctype=list][data-list-type=kluexperience_pi7][data-layout="2"] .latest-news--news-content a h3,[data-ctype=list][data-list-type=kluexperience_pi7][data-layout="2"] .latest-news--news-content a .h3{color:#fff}[data-ctype=list][data-list-type=kluresearch_pi1][data-layout="2"] .latest-news--footer,[data-ctype=list][data-list-type=kluexperience_pi2][data-layout="2"] .latest-news--footer,[data-ctype=list][data-list-type=kluexperience_pi7][data-layout="2"] .latest-news--footer{border-top-color:hsla(0,0%,100%,.75)}[data-ctype=list][data-list-type=kluexperience_pi5] .upcoming-events--footer{border-top:.1111111111rem #4963f6 solid;font-size:80%;padding-top:.5rem}[data-ctype=list][data-list-type=kluexperience_pi5] .upcoming-events--event{margin-bottom:.5rem;display:flex}[data-ctype=list][data-list-type=kluexperience_pi5] .upcoming-events--event-left{position:relative;margin-right:1rem}[data-ctype=list][data-list-type=kluexperience_pi5] .upcoming-events--event-left::after{display:block;clear:both;content:""}[data-ctype=list][data-list-type=kluexperience_pi5] .upcoming-events--event-left .date{background:#4963f6;border-radius:.2777777778rem .2777777778rem .2777777778rem 0;color:#fff;display:table;height:2.7777777778rem;width:2.7777777778rem}[data-ctype=list][data-list-type=kluexperience_pi5] .upcoming-events--event-left .date span{display:table-cell;vertical-align:middle;line-height:1.1}[data-ctype=list][data-list-type=kluexperience_pi5] .upcoming-events--event-body{flex:1}[data-ctype=list][data-list-type=kluexperience_pi5] .upcoming-events--event-body a h3,[data-ctype=list][data-list-type=kluexperience_pi5] .upcoming-events--event-body a .h3{line-height:1.5;margin-bottom:0}[data-ctype=list][data-list-type=kluexperience_pi5] .upcoming-events--event-body a:hover h3,[data-ctype=list][data-list-type=kluexperience_pi5] .upcoming-events--event-body a:hover .h3,[data-ctype=list][data-list-type=kluexperience_pi5] .upcoming-events--event-body a:focus h3,[data-ctype=list][data-list-type=kluexperience_pi5] .upcoming-events--event-body a:focus .h3{color:#9e0047}[data-ctype=list][data-list-type=kluexperience_pi5] .upcoming-events--event-body a p{color:#232323}[data-ctype=list][data-list-type=kluexperience_pi6]>.container.ce-container{position:relative;padding-bottom:1rem}[data-ctype=list][data-list-type=kluexperience_pi6] .slick-list{margin-left:-0.5rem;margin-right:-0.5rem}[data-ctype=list][data-list-type=kluexperience_pi6] .slick-slide{padding:0 .5rem}[data-ctype=list][data-list-type=kluexperience_pi6] .slick-track{display:flex;align-items:center}[data-ctype=list][data-list-type=kluexperience_pi6] .testimonial-nav{display:flex}@media(min-width: 992px){[data-ctype=list][data-list-type=kluexperience_pi6] .testimonial-nav{width:3rem;height:100%;right:.5rem;bottom:1rem;flex-direction:column-reverse}}[data-ctype=list][data-list-type=kluexperience_pi6] .testimonials{overflow:hidden}@media(min-width: 768px){[data-ctype=list][data-list-type=kluexperience_pi6] .testimonials{margin-right:4.1666666667rem}}@media(min-width: 992px){[data-ctype=list][data-list-type=kluexperience_pi6] .testimonials{margin-right:3rem;overflow:hidden}}[data-ctype=list][data-list-type=kluexperience_pi6] .testimonials.slick-slider{-webkit-user-select:text;-moz-user-select:text;user-select:text}@media(max-width: 575.98px){[data-ctype=list][data-list-type=kluexperience_pi6] .testimonials .testimonial .media.no-testimonial-image::before{top:0}}@media(min-width: 768px){[data-ctype=list][data-list-type=kluexperience_pi6] .testimonials .testimonial .media.no-testimonial-image::before{left:0}}@media(min-width: 992px){[data-ctype=list][data-list-type=kluexperience_pi6] .testimonials .testimonial .media.no-testimonial-image::before{left:0}}@media(min-width: 1200px)and (min-height: 810px){[data-ctype=list][data-list-type=kluexperience_pi6] .testimonials .testimonial .media.no-testimonial-image::before{left:0}}[data-ctype=list][data-list-type=kluexperience_pi6] .testimonials .testimonial .media{margin-bottom:0;position:relative;display:flex}@media(min-width: 768px){[data-ctype=list][data-list-type=kluexperience_pi6] .testimonials .testimonial .media{align-items:center}}[data-ctype=list][data-list-type=kluexperience_pi6] .testimonials .testimonial .media a{color:inherit}[data-ctype=list][data-list-type=kluexperience_pi6] .testimonials .testimonial .media .media-left,[data-ctype=list][data-list-type=kluexperience_pi6] .testimonials .testimonial .media .media-body{position:relative;z-index:2}[data-ctype=list][data-list-type=kluexperience_pi6] .testimonials .testimonial .media .media-left{box-sizing:content-box;padding:0;border:1px solid #ebebeb;background:#ebebeb;border-radius:.5555555556rem .5555555556rem .5555555556rem 0;overflow:hidden}@media(max-width: 575.98px){[data-ctype=list][data-list-type=kluexperience_pi6] .testimonials .testimonial .media .media-left{width:100%;max-width:145px}}@media(min-width: 576px)and (max-width: 767.98px){[data-ctype=list][data-list-type=kluexperience_pi6] .testimonials .testimonial .media .media-left{width:145px}}@media(min-width: 768px)and (max-width: 991.98px){[data-ctype=list][data-list-type=kluexperience_pi6] .testimonials .testimonial .media .media-left{width:145px}}@media(min-width: 992px)and (max-width: 1199.98px){[data-ctype=list][data-list-type=kluexperience_pi6] .testimonials .testimonial .media .media-left{width:160px}}@media(min-width: 1200px)and (max-width: 1399.98px){[data-ctype=list][data-list-type=kluexperience_pi6] .testimonials .testimonial .media .media-left{width:200px}}@media(max-width: 575.98px){[data-ctype=list][data-list-type=kluexperience_pi6] .testimonials .testimonial .media .media-left{align-self:center}}@media(min-width: 768px){[data-ctype=list][data-list-type=kluexperience_pi6] .testimonials .testimonial .media .media-left{margin-top:1.1111111111rem;margin-bottom:1.1111111111rem}}[data-ctype=list][data-list-type=kluexperience_pi6] .testimonials .testimonial .media .media-body{padding:1.3888888889rem;color:#fff}[data-ctype=list][data-list-type=kluexperience_pi6] .testimonials .testimonial .media blockquote{font-style:italic;margin:0}[data-ctype=list][data-list-type=kluexperience_pi6] .testimonials .testimonial .media blockquote p:first-child:before{content:"“"}[data-ctype=list][data-list-type=kluexperience_pi6] .testimonials .testimonial .media blockquote p:last-child{margin-bottom:.5rem}[data-ctype=list][data-list-type=kluexperience_pi6] .testimonials .testimonial .media blockquote p:last-child:after{content:"”"}[data-ctype=list][data-list-type=kluexperience_pi6] .testimonials .testimonial .media .bottom-line{margin:0}[data-layout="2"] [data-ctype=list][data-list-type=kluexperience_pi6] .testimonials .testimonial .media .bottom-line{color:#fff;opacity:.8}@media(max-width: 575.98px){[data-ctype=list][data-list-type=kluexperience_pi6] .testimonials .testimonial .media{flex-direction:column}}[data-ctype=list][data-list-type=kluexperience_pi9]>.container.ce-container{position:relative;padding-bottom:1rem}[data-ctype=list][data-list-type=kluexperience_pi9] .slick-list{margin-left:-0.5rem;margin-right:-0.5rem}[data-ctype=list][data-list-type=kluexperience_pi9] .slick-slide{padding:0 .5rem}[data-ctype=list][data-list-type=kluexperience_pi9] .slick-track{display:flex;align-items:center}[data-ctype=list][data-list-type=kluexperience_pi9] .alumni-nav{display:flex}@media(min-width: 992px){[data-ctype=list][data-list-type=kluexperience_pi9] .alumni-nav{width:3rem;height:100%;right:.5rem;bottom:1rem;flex-direction:column-reverse}}[data-ctype=list][data-list-type=kluexperience_pi9] .alumnis{overflow:hidden}@media(min-width: 768px){[data-ctype=list][data-list-type=kluexperience_pi9] .alumnis{margin-right:4.1666666667rem}}@media(min-width: 992px){[data-ctype=list][data-list-type=kluexperience_pi9] .alumnis{margin-right:3rem;overflow:hidden}}[data-ctype=list][data-list-type=kluexperience_pi9] .alumnis.slick-slider{-webkit-user-select:text;-moz-user-select:text;user-select:text}[data-ctype=list][data-list-type=kluexperience_pi9] .alumnis .alumni .media{margin-bottom:0;position:relative;display:flex}@media(min-width: 768px){[data-ctype=list][data-list-type=kluexperience_pi9] .alumnis .alumni .media{align-items:center}}[data-ctype=list][data-list-type=kluexperience_pi9] .alumnis .alumni .media a{color:inherit}[data-ctype=list][data-list-type=kluexperience_pi9] .alumnis .alumni .media .media-left,[data-ctype=list][data-list-type=kluexperience_pi9] .alumnis .alumni .media .media-body{position:relative;z-index:2}[data-ctype=list][data-list-type=kluexperience_pi9] .alumnis .alumni .media .media-left{box-sizing:content-box;padding:0}[data-ctype=list][data-list-type=kluexperience_pi9] .alumnis .alumni .media .media-left .images{display:flex}[data-ctype=list][data-list-type=kluexperience_pi9] .alumnis .alumni .media .media-left .images picture:first-child{margin-right:1.1111111111rem}@media screen and (max-width: 390px){[data-ctype=list][data-list-type=kluexperience_pi9] .alumnis .alumni .media .media-left .images picture{width:37.6923076923vw;height:37.6923076923vw}}[data-ctype=list][data-list-type=kluexperience_pi9] .alumnis .alumni .media .media-left img{border:1px solid #ebebeb;border-radius:.5555555556rem .5555555556rem .5555555556rem 0;overflow:hidden}@media(max-width: 575.98px){[data-ctype=list][data-list-type=kluexperience_pi9] .alumnis .alumni .media .media-left{align-self:center}}@media(min-width: 768px){[data-ctype=list][data-list-type=kluexperience_pi9] .alumnis .alumni .media .media-left{margin-top:1.1111111111rem;margin-bottom:1.1111111111rem}}[data-ctype=list][data-list-type=kluexperience_pi9] .alumnis .alumni .media .media-body{padding:1.3888888889rem;color:#fff}@media(max-width: 575.98px){[data-ctype=list][data-list-type=kluexperience_pi9] .alumnis .alumni .media .media-body{text-align:center}}[data-ctype=list][data-list-type=kluexperience_pi9] .alumnis .alumni .media .media-body .btn,[data-ctype=list][data-list-type=kluexperience_pi9] .alumnis .alumni .media .media-body .ff-form-overrides button,.ff-form-overrides [data-ctype=list][data-list-type=kluexperience_pi9] .alumnis .alumni .media .media-body button,[data-ctype=list][data-list-type=kluexperience_pi9] .alumnis .alumni .media .media-body .ff-form-overrides input[type=button],.ff-form-overrides [data-ctype=list][data-list-type=kluexperience_pi9] .alumnis .alumni .media .media-body input[type=button],[data-ctype=list][data-list-type=kluexperience_pi9] .alumnis .alumni .media .media-body .ff-form-overrides input[type=submit],.ff-form-overrides [data-ctype=list][data-list-type=kluexperience_pi9] .alumnis .alumni .media .media-body input[type=submit],[data-ctype=list][data-list-type=kluexperience_pi9] .alumnis .alumni .media .media-body .ff-form-overrides input[type=reset],.ff-form-overrides [data-ctype=list][data-list-type=kluexperience_pi9] .alumnis .alumni .media .media-body input[type=reset]{margin-top:.5rem;color:#fff;background-color:#4963f6}[data-ctype=list][data-list-type=kluexperience_pi9] .alumnis .alumni .media .media-body .btn:hover,[data-ctype=list][data-list-type=kluexperience_pi9] .alumnis .alumni .media .media-body .ff-form-overrides button:hover,.ff-form-overrides [data-ctype=list][data-list-type=kluexperience_pi9] .alumnis .alumni .media .media-body button:hover,[data-ctype=list][data-list-type=kluexperience_pi9] .alumnis .alumni .media .media-body .ff-form-overrides input[type=button]:hover,.ff-form-overrides [data-ctype=list][data-list-type=kluexperience_pi9] .alumnis .alumni .media .media-body input[type=button]:hover,[data-ctype=list][data-list-type=kluexperience_pi9] .alumnis .alumni .media .media-body .ff-form-overrides input[type=submit]:hover,.ff-form-overrides [data-ctype=list][data-list-type=kluexperience_pi9] .alumnis .alumni .media .media-body input[type=submit]:hover,[data-ctype=list][data-list-type=kluexperience_pi9] .alumnis .alumni .media .media-body .ff-form-overrides input[type=reset]:hover,.ff-form-overrides [data-ctype=list][data-list-type=kluexperience_pi9] .alumnis .alumni .media .media-body input[type=reset]:hover,[data-ctype=list][data-list-type=kluexperience_pi9] .alumnis .alumni .media .media-body .btn:focus,[data-ctype=list][data-list-type=kluexperience_pi9] .alumnis .alumni .media .media-body .ff-form-overrides button:focus,.ff-form-overrides [data-ctype=list][data-list-type=kluexperience_pi9] .alumnis .alumni .media .media-body button:focus,[data-ctype=list][data-list-type=kluexperience_pi9] .alumnis .alumni .media .media-body .ff-form-overrides input[type=button]:focus,.ff-form-overrides [data-ctype=list][data-list-type=kluexperience_pi9] .alumnis .alumni .media .media-body input[type=button]:focus,[data-ctype=list][data-list-type=kluexperience_pi9] .alumnis .alumni .media .media-body .ff-form-overrides input[type=submit]:focus,.ff-form-overrides [data-ctype=list][data-list-type=kluexperience_pi9] .alumnis .alumni .media .media-body input[type=submit]:focus,[data-ctype=list][data-list-type=kluexperience_pi9] .alumnis .alumni .media .media-body .ff-form-overrides input[type=reset]:focus,.ff-form-overrides [data-ctype=list][data-list-type=kluexperience_pi9] .alumnis .alumni .media .media-body input[type=reset]:focus{color:#fff;background-color:#64002d}[data-ctype=list][data-list-type=kluexperience_pi9] .alumnis .alumni .media .media-body .btn:active:focus,[data-ctype=list][data-list-type=kluexperience_pi9] .alumnis .alumni .media .media-body .ff-form-overrides button:active:focus,.ff-form-overrides [data-ctype=list][data-list-type=kluexperience_pi9] .alumnis .alumni .media .media-body button:active:focus,[data-ctype=list][data-list-type=kluexperience_pi9] .alumnis .alumni .media .media-body .ff-form-overrides input[type=button]:active:focus,.ff-form-overrides [data-ctype=list][data-list-type=kluexperience_pi9] .alumnis .alumni .media .media-body input[type=button]:active:focus,[data-ctype=list][data-list-type=kluexperience_pi9] .alumnis .alumni .media .media-body .ff-form-overrides input[type=submit]:active:focus,.ff-form-overrides [data-ctype=list][data-list-type=kluexperience_pi9] .alumnis .alumni .media .media-body input[type=submit]:active:focus,[data-ctype=list][data-list-type=kluexperience_pi9] .alumnis .alumni .media .media-body .ff-form-overrides input[type=reset]:active:focus,.ff-form-overrides [data-ctype=list][data-list-type=kluexperience_pi9] .alumnis .alumni .media .media-body input[type=reset]:active:focus{background-color:rgb(74.5,0,33.525)}[data-ctype=list][data-list-type=kluexperience_pi9] .alumnis .alumni .media .bottom-line{margin:0}[data-layout="2"] [data-ctype=list][data-list-type=kluexperience_pi9] .alumnis .alumni .media .bottom-line{color:#fff;opacity:.8}[data-ctype=list][data-list-type=kluexperience_pi9] .alumnis .alumni .media p:nth-child(1){margin-bottom:0rem}[data-ctype=list][data-list-type=kluexperience_pi9] .alumnis .alumni .media p:nth-child(2){margin-bottom:.3rem}[data-ctype=list][data-list-type=kluexperience_pi9] .alumnis .alumni .media p:nth-child(3){margin-bottom:.75rem}@media(max-width: 575.98px){[data-ctype=list][data-list-type=kluexperience_pi9] .alumnis .alumni .media{flex-direction:column}}[data-ctype=list][data-list-type=kluexperience_pi16] .alumni{margin-bottom:3rem}[data-ctype=list][data-list-type=kluexperience_pi16] .alumni__media{position:relative;margin-bottom:30%}[data-ctype=list][data-list-type=kluexperience_pi16] .alumni__name{margin-bottom:.5rem;font-weight:bold}[data-ctype=list][data-list-type=kluexperience_pi16] .alumni__position{font-style:italic}[data-ctype=list][data-list-type=kluexperience_pi16] .alumni__location{color:#919191}[data-ctype=list][data-list-type=kluexperience_pi16] .alumni__location svg{width:1em;height:1em;transform:translateY(0.2em)}[data-ctype=list][data-list-type=kluexperience_pi16] .alumni__location svg path{fill:#4963f6}[data-ctype=list][data-list-type=kluexperience_pi16] img{border:2px solid #ebebeb}[data-ctype=list][data-list-type=kluexperience_pi16] .alumni__logo{position:absolute;bottom:0;right:0;width:60%;height:60%;transform:translateX(33%) translateY(50%)}[data-ctype=list][data-list-type=kluexperience_pi16] .alumni__media{margin-bottom:1.5rem}[data-ctype=list][data-list-type=kluexperience_pi16] .alumni__position{margin-bottom:1em}[data-ctype=list][data-list-type=kluexperience_pi16] .alumni__link{margin-top:13vw}[data-ctype=list][data-list-type=kluexperience_pi16] .alumni__logo{width:30%;height:30%;left:10%;right:auto;transform:translateY(50%)}@media(min-width: 576px){[data-ctype=list][data-list-type=kluexperience_pi16] .alumni__location{margin-bottom:.5rem}[data-ctype=list][data-list-type=kluexperience_pi16] .alumni__text-top,[data-ctype=list][data-list-type=kluexperience_pi16] .alumni__text-bottom{margin-left:-0.5rem}[data-ctype=list][data-list-type=kluexperience_pi16] .alumni__text-top{padding-top:1.5rem;height:9rem}[data-ctype=list][data-list-type=kluexperience_pi16] .alumni__text-bottom{height:8.5rem;padding-left:14%;display:flex;flex-direction:column;justify-content:center}}@media(min-width: 768px){[data-ctype=list][data-list-type=kluexperience_pi16] .alumni__text-top{height:13rem}[data-ctype=list][data-list-type=kluexperience_pi16] .alumni__text-bottom{height:11rem}}@media(min-width: 992px){[data-ctype=list][data-list-type=kluexperience_pi16] .alumni__text-top{height:9.5rem}[data-ctype=list][data-list-type=kluexperience_pi16] .alumni__text-bottom{height:8.5rem;padding-left:20%}}[data-ctype=list][data-list-type=kluexperience_pi11]>.container.ce-container,[data-ctype=list][data-list-type=kluexperience_pi12]>.container.ce-container{position:relative;padding-bottom:1rem}[data-ctype=list][data-list-type=kluexperience_pi11] .askastudents-nav,[data-ctype=list][data-list-type=kluexperience_pi11] .rating-nav,[data-ctype=list][data-list-type=kluexperience_pi12] .askastudents-nav,[data-ctype=list][data-list-type=kluexperience_pi12] .rating-nav{z-index:100;position:relative;line-height:1;text-align:right}[data-ctype=list][data-list-type=kluexperience_pi11] .askastudents-nav button,[data-ctype=list][data-list-type=kluexperience_pi11] .rating-nav button,[data-ctype=list][data-list-type=kluexperience_pi12] .askastudents-nav button,[data-ctype=list][data-list-type=kluexperience_pi12] .rating-nav button{background:rgba(0,0,0,0);border:0;outline:0;padding:0;height:2.7777777778rem;opacity:.8}[data-ctype=list][data-list-type=kluexperience_pi11] .askastudents-nav button svg,[data-ctype=list][data-list-type=kluexperience_pi11] .rating-nav button svg,[data-ctype=list][data-list-type=kluexperience_pi12] .askastudents-nav button svg,[data-ctype=list][data-list-type=kluexperience_pi12] .rating-nav button svg{width:2.7777777778rem;height:2.7777777778rem}[data-ctype=list][data-list-type=kluexperience_pi11] .askastudents-nav button:first-child,[data-ctype=list][data-list-type=kluexperience_pi11] .rating-nav button:first-child,[data-ctype=list][data-list-type=kluexperience_pi12] .askastudents-nav button:first-child,[data-ctype=list][data-list-type=kluexperience_pi12] .rating-nav button:first-child{margin-right:.5555555556rem}[data-layout="2"] [data-ctype=list][data-list-type=kluexperience_pi11] .askastudents-nav button svg path,[data-layout="2"] [data-ctype=list][data-list-type=kluexperience_pi11] .rating-nav button svg path,[data-layout="2"] [data-ctype=list][data-list-type=kluexperience_pi12] .askastudents-nav button svg path,[data-layout="2"] [data-ctype=list][data-list-type=kluexperience_pi12] .rating-nav button svg path{fill:#fff}[data-ctype=list][data-list-type=kluexperience_pi11] .askastudents-nav button:hover,[data-ctype=list][data-list-type=kluexperience_pi11] .rating-nav button:hover,[data-ctype=list][data-list-type=kluexperience_pi12] .askastudents-nav button:hover,[data-ctype=list][data-list-type=kluexperience_pi12] .rating-nav button:hover{opacity:1}a.u-image-hover{display:block;position:relative;overflow:hidden}a.u-image-hover:before{position:absolute;display:block;content:"";height:100%;width:100%;background:#4963f6;opacity:0;transition:opacity 275ms ease-in-out;z-index:1}a.u-image-hover img{transition:transform 300ms ease-in-out;transform:scale(1, 1)}a.u-image-hover:hover:before,a.u-image-hover:focus:before{opacity:.3}a.u-image-hover:hover img,a.u-image-hover:focus img{transform:scale(1.05, 1.05)}[data-list-type=kluexperience_pi13] .articles-list-view__articles-container,[data-list-type=kluexperience_pi7] .articles-list-view__articles-container,[data-list-type=kluexperience_pi8] .articles-list-view__articles-container,[data-list-type=kluexperience_pi4] .articles-list-view__articles-container{padding-top:1rem;padding-bottom:1rem}[data-list-type=kluexperience_pi13] .articles-list-view__articles-container ul.pagination,[data-list-type=kluexperience_pi7] .articles-list-view__articles-container ul.pagination,[data-list-type=kluexperience_pi8] .articles-list-view__articles-container ul.pagination,[data-list-type=kluexperience_pi4] .articles-list-view__articles-container ul.pagination{margin:0}[data-list-type=kluexperience_pi13] .articles-list-view__article,[data-list-type=kluexperience_pi7] .articles-list-view__article,[data-list-type=kluexperience_pi8] .articles-list-view__article,[data-list-type=kluexperience_pi4] .articles-list-view__article{margin-bottom:1rem}[data-list-type=kluexperience_pi13] .articles-list-view__article-border,[data-list-type=kluexperience_pi7] .articles-list-view__article-border,[data-list-type=kluexperience_pi8] .articles-list-view__article-border,[data-list-type=kluexperience_pi4] .articles-list-view__article-border{position:relative;border:2px solid #ebebeb;height:100%}[data-list-type=kluexperience_pi13] .articles-list-view__article-badges,[data-list-type=kluexperience_pi7] .articles-list-view__article-badges,[data-list-type=kluexperience_pi8] .articles-list-view__article-badges,[data-list-type=kluexperience_pi4] .articles-list-view__article-badges{display:flex;position:absolute;top:-.2777777778rem;right:0;z-index:2}[data-list-type=kluexperience_pi13] .articles-list-view__article-badge,[data-list-type=kluexperience_pi7] .articles-list-view__article-badge,[data-list-type=kluexperience_pi8] .articles-list-view__article-badge,[data-list-type=kluexperience_pi4] .articles-list-view__article-badge{background-color:#4963f6;border-radius:3px 3px 3px 0;padding:.4444444444rem;margin-right:.5555555556rem}[data-list-type=kluexperience_pi13] .articles-list-view__article-badge svg,[data-list-type=kluexperience_pi13] .articles-list-view__article-badge img,[data-list-type=kluexperience_pi7] .articles-list-view__article-badge svg,[data-list-type=kluexperience_pi7] .articles-list-view__article-badge img,[data-list-type=kluexperience_pi8] .articles-list-view__article-badge svg,[data-list-type=kluexperience_pi8] .articles-list-view__article-badge img,[data-list-type=kluexperience_pi4] .articles-list-view__article-badge svg,[data-list-type=kluexperience_pi4] .articles-list-view__article-badge img{display:block;width:.8888888889rem;height:.8888888889rem;color:#fff}[data-list-type=kluexperience_pi13] .articles-list-view__article-badge svg *,[data-list-type=kluexperience_pi13] .articles-list-view__article-badge img *,[data-list-type=kluexperience_pi7] .articles-list-view__article-badge svg *,[data-list-type=kluexperience_pi7] .articles-list-view__article-badge img *,[data-list-type=kluexperience_pi8] .articles-list-view__article-badge svg *,[data-list-type=kluexperience_pi8] .articles-list-view__article-badge img *,[data-list-type=kluexperience_pi4] .articles-list-view__article-badge svg *,[data-list-type=kluexperience_pi4] .articles-list-view__article-badge img *{fill:currentColor}[data-list-type=kluexperience_pi13] .articles-list-view__article-text,[data-list-type=kluexperience_pi7] .articles-list-view__article-text,[data-list-type=kluexperience_pi8] .articles-list-view__article-text,[data-list-type=kluexperience_pi4] .articles-list-view__article-text{padding:1rem}[data-list-type=kluexperience_pi13] .articles-list-view__article-text time,[data-list-type=kluexperience_pi7] .articles-list-view__article-text time,[data-list-type=kluexperience_pi8] .articles-list-view__article-text time,[data-list-type=kluexperience_pi4] .articles-list-view__article-text time{display:block;margin-bottom:.5rem;color:#666}[data-list-type=kluexperience_pi13] .articles-list-view__article-text h2,[data-list-type=kluexperience_pi13] .articles-list-view__article-text .h2,[data-list-type=kluexperience_pi13] .articles-list-view__article-text h3,[data-list-type=kluexperience_pi13] .articles-list-view__article-text .h3,[data-list-type=kluexperience_pi7] .articles-list-view__article-text h2,[data-list-type=kluexperience_pi7] .articles-list-view__article-text .h2,[data-list-type=kluexperience_pi7] .articles-list-view__article-text h3,[data-list-type=kluexperience_pi7] .articles-list-view__article-text .h3,[data-list-type=kluexperience_pi8] .articles-list-view__article-text h2,[data-list-type=kluexperience_pi8] .articles-list-view__article-text .h2,[data-list-type=kluexperience_pi8] .articles-list-view__article-text h3,[data-list-type=kluexperience_pi8] .articles-list-view__article-text .h3,[data-list-type=kluexperience_pi4] .articles-list-view__article-text h2,[data-list-type=kluexperience_pi4] .articles-list-view__article-text .h2,[data-list-type=kluexperience_pi4] .articles-list-view__article-text h3,[data-list-type=kluexperience_pi4] .articles-list-view__article-text .h3{color:#232323}[data-list-type=kluexperience_pi13] .articles-list-view__article-text p,[data-list-type=kluexperience_pi7] .articles-list-view__article-text p,[data-list-type=kluexperience_pi8] .articles-list-view__article-text p,[data-list-type=kluexperience_pi4] .articles-list-view__article-text p{font-size:80%}[data-list-type=kluexperience_pi13] .articles-list-view__read-more-bar:before,[data-list-type=kluexperience_pi7] .articles-list-view__read-more-bar:before,[data-list-type=kluexperience_pi8] .articles-list-view__read-more-bar:before,[data-list-type=kluexperience_pi4] .articles-list-view__read-more-bar:before{background:#4963f6;content:"";display:inline-block;height:2px;position:relative;top:-3px;width:100%}[data-list-type=kluexperience_pi13] .articles-list-view__read-more-link,[data-list-type=kluexperience_pi7] .articles-list-view__read-more-link,[data-list-type=kluexperience_pi8] .articles-list-view__read-more-link,[data-list-type=kluexperience_pi4] .articles-list-view__read-more-link{padding-left:0}[data-layout="1"][data-list-type=kluexperience_pi13] .articles-list-view__article-border,[data-layout="1"][data-list-type=kluexperience_pi7] .articles-list-view__article-border,[data-layout="1"][data-list-type=kluexperience_pi8] .articles-list-view__article-border,[data-layout="1"][data-list-type=kluexperience_pi4] .articles-list-view__article-border{border-color:#fff}[data-list-type=kluexperience_pi7] div.articles-list-view__article-badges,[data-list-type=kluexperience_pi8] div.articles-list-view__article-badges,[data-list-type=kluexperience_pi4] div.articles-list-view__article-badges{display:none;visibility:hidden}[data-list-type=kluexperience_pi13] .events-list-view__events-container{padding-top:1rem;padding-bottom:1rem}[data-list-type=kluexperience_pi13] .events-list-view__events-container ul.pagination{margin:0}[data-list-type=kluexperience_pi13] .events-list-view__events-container[data-pastevents="1"] .events-list-view__event-teaser-image-date,[data-list-type=kluexperience_pi13] .events-list-view__events-container[data-pastevents="1"] .events-list-view__event-teaser-image,[data-list-type=kluexperience_pi13] .events-list-view__events-container[data-pastevents="1"] time,[data-list-type=kluexperience_pi13] .events-list-view__events-container[data-pastevents="1"] p{filter:grayscale(1)}[data-list-type=kluexperience_pi13] .events-list-view__event{margin-bottom:1rem}[data-list-type=kluexperience_pi13] .events-list-view__event-border{min-height:11.2222222222rem;border:2px solid #ebebeb;display:flex;height:100%;flex-wrap:wrap;flex-direction:column}@media(min-width: 992px){[data-list-type=kluexperience_pi13] .events-list-view__event-border{flex-wrap:nowrap;flex-direction:row}}[data-layout="1"] [data-list-type=kluexperience_pi13] .events-list-view__event-border{border-color:#fff}[data-list-type=kluexperience_pi13] .events-list-view__event-teaser-image,[data-list-type=kluexperience_pi13] .events-list-view__event-teaser-image-date{width:100%}@media(min-width: 992px){[data-list-type=kluexperience_pi13] .events-list-view__event-teaser-image,[data-list-type=kluexperience_pi13] .events-list-view__event-teaser-image-date{flex:0 0 9.7222222222rem;max-width:9.7222222222rem}}[data-list-type=kluexperience_pi13] .events-list-view__event-teaser-image{min-height:9.7222222222rem;position:relative}[data-list-type=kluexperience_pi13] .events-list-view__event-teaser-image:before{content:"";display:block;padding-top:100%}[data-list-type=kluexperience_pi13] .events-list-view__event-teaser-image a{position:absolute;top:0;bottom:0;left:0;width:100%;height:100%}[data-list-type=kluexperience_pi13] .events-list-view__event-teaser-image a picture{height:100%}[data-list-type=kluexperience_pi13] .events-list-view__event-teaser-image a picture img{height:100%;width:auto}[data-list-type=kluexperience_pi13] .events-list-view__event-teaser-image-date{background-color:#4963f6;position:relative}[data-list-type=kluexperience_pi13] .events-list-view__event-teaser-image-date:before{content:"";display:block;padding-top:100%}[data-list-type=kluexperience_pi13] .events-list-view__event-teaser-image-date-text{position:absolute;color:#fff;margin:0;text-align:center;top:50%;right:0;left:0;transform:translateY(-50%)}[data-list-type=kluexperience_pi13] .events-list-view__event-teaser-image-date-text span:first-child{font-family:"SaansSemiMono-Web",Baskerville,Georgia,Garamond,serif;font-size:4.5rem;line-height:4rem}[data-list-type=kluexperience_pi13] .events-list-view__event-text{padding:1rem;overflow:auto;max-width:100%;width:100%}[data-list-type=kluexperience_pi13] .events-list-view__event-text h2,[data-list-type=kluexperience_pi13] .events-list-view__event-text .h2,[data-list-type=kluexperience_pi13] .events-list-view__event-text h3,[data-list-type=kluexperience_pi13] .events-list-view__event-text .h3{color:#232323;margin-bottom:.5rem}[data-list-type=kluexperience_pi13] .events-list-view__event-text p{font-size:80%;margin-bottom:.5rem}[data-list-type=kluexperience_pi13] .events-list-view__event-text .gray{color:#919191}[data-list-type=kluexperience_pi13] .events-list-view__event-text .categories span:after{content:", "}[data-list-type=kluexperience_pi13] .events-list-view__event-text .categories span:last-child:after{content:none}[data-list-type=kluexperience_pi13] .events-list-view__event-text .speakers{text-overflow:ellipsis;white-space:nowrap;overflow:hidden}[data-list-type=kluexperience_pi13] .events-list-view__read-more-bar:before{background:#4963f6;content:"";display:inline-block;height:2px;position:relative;top:-3px;width:100%}[data-list-type=kluexperience_pi13] .events-list-view__read-more-link{padding-left:0}[data-list-type=kluexperience_pi13] .social-entries-list-view{background-color:#232323}[data-list-type=kluexperience_pi13] .social-entries-list-view__social-entries-container{padding-top:1rem}[data-list-type=kluexperience_pi13] .social-entries-list-view__social-links-container{background:#919191;border-radius:10px 10px 10px 0;margin-bottom:1rem;padding:.5rem .5rem 0 .5rem}[data-list-type=kluexperience_pi13] .social-entries-list-view__social-links-container::after{display:block;clear:both;content:""}[data-list-type=kluexperience_pi13] .social-entries-list-view__social-links-container h3,[data-list-type=kluexperience_pi13] .social-entries-list-view__social-links-container .h3{color:#fff}[data-list-type=kluexperience_pi13] .social-entries-list-view__social-links{margin-bottom:1.5rem}[data-list-type=kluexperience_pi13] .social-entries-list-view__social-links a.btn{min-width:auto;width:100%}[data-list-type=kluexperience_pi13] .social-entries-list-view__social-entries-row{-moz-column-count:1;column-count:1;-moz-column-gap:0;column-gap:0;margin:-0.5rem}@media(min-width: 576px){[data-list-type=kluexperience_pi13] .social-entries-list-view__social-entries-row{-moz-column-count:2;column-count:2}}@media(min-width: 992px){[data-list-type=kluexperience_pi13] .social-entries-list-view__social-entries-row{-moz-column-count:3;column-count:3}}[data-list-type=kluexperience_pi13] .social-entries-list-view__social-entry-col{page-break-inside:avoid;-moz-column-break-inside:avoid;break-inside:avoid;padding:0 .5rem}[data-list-type=kluexperience_pi13] .social-entries-list-view__social-entry{font-size:.8rem;padding-bottom:4rem}[data-list-type=kluexperience_pi13] .social-entries-list-view__social-entry-inner{background:#ebebeb;padding:1rem 1rem 0 1rem}[data-list-type=kluexperience_pi13] .social-entries-list-view__social-entry-image{padding-bottom:1rem}[data-list-type=kluexperience_pi13] .social-entries-list-view__social-entry-image a{border-radius:10px 10px 10px 0}html.is_safari [data-list-type=kluexperience_pi13] .social-entries-list-view__social-entry-image a img{transform:none !important}[data-list-type=kluexperience_pi13] .social-entries-list-view__social-entry .hashtag,[data-list-type=kluexperience_pi13] .social-entries-list-view__social-entry .mention,[data-list-type=kluexperience_pi13] .social-entries-list-view__social-entry .url{color:#919191}[data-list-type=kluexperience_pi13] .social-entries-list-view__social-entry .hashtag:hover,[data-list-type=kluexperience_pi13] .social-entries-list-view__social-entry .mention:hover,[data-list-type=kluexperience_pi13] .social-entries-list-view__social-entry .url:hover{color:#666}[data-list-type=kluexperience_pi13] .social-entries-list-view__social-entry-icon{display:block;text-align:center;padding:.5rem 0 .5rem;margin:0 -1rem;position:relative;background-color:#ebebeb;transition:background-color 175ms ease-out;border-bottom-right-radius:1.5rem;border-bottom-left-radius:1.5rem}[data-list-type=kluexperience_pi13] .social-entries-list-view__social-entry-icon:hover{background-color:rgb(164,177,250.5)}[data-list-type=kluexperience_pi13] .social-entries-list-view__social-entry--twitter .hashtag:after{content:" "}[data-list-type=kluexperience_pi13] .social-entries-list-view__social-entry--instagram{padding-top:calc(50% - 1rem + .5px)}[data-list-type=kluexperience_pi13] .social-entries-list-view__social-entry--instagram .social-entries-list-view__social-entry-image{margin-top:calc(-50% - 1rem)}[data-list-type=kluexperience_pi13] .social-entries-list-view__social-entry--instagram .hashtag:after{content:" "}[data-list-type=kluexperience_pi13] .social-entries-list-view__social-entry--youtube{padding-top:calc(32% - 1rem + .5px)}[data-list-type=kluexperience_pi13] .social-entries-list-view__social-entry--youtube .social-entries-list-view__social-entry-image{margin-top:calc(-28% - 1rem)}.blog-news{display:grid;grid-template-columns:1fr;grid-template-rows:auto;grid-auto-rows:1fr;grid-column-gap:2.7777777778rem;-moz-column-gap:2.7777777778rem;column-gap:2.7777777778rem;grid-row-gap:2.7777777778rem;row-gap:2.7777777778rem}@media(min-width: 576px){.blog-news{grid-template-columns:1fr 1fr}}@media(min-width: 992px){.blog-news{grid-template-columns:1fr 1fr 1fr}}.blog-news__item-wrapper{height:0;padding-top:73%;position:relative}@media(min-width: 576px){.blog-news__item-wrapper:first-child{grid-column:1/span 2}}@media(min-width: 992px){.blog-news__item-wrapper:first-child{grid-row:1/span 2}}.blog-news__item{display:block;position:absolute;top:0;left:0;width:100%;height:100%;color:#fff !important;border-radius:.5555555556rem .5555555556rem .5555555556rem 0;overflow:hidden}.blog-news__item *{color:inherit !important}.blog-news__item:hover{color:#fff !important}.blog-news__item:hover .link{color:#ccc !important}.blog-news__item:hover img{transform:scale(1.05);transform-origin:center}.blog-news__item img{position:absolute;top:0;left:0;width:100%;height:100%;-o-object-fit:cover;object-fit:cover;transition:transform .22s ease-in-out}.blog-news__content{display:block;position:absolute;bottom:0;left:0;width:100%;background:rgba(35,35,35,.75);padding:1.3888888889rem}.blog-news__content .link::before{content:"› "}@media(max-width: 575.98px){.blog-news__content h3.h2,.blog-news__content .h2.h3{font-size:1rem;text-transform:none;font-weight:bold;font-family:"Saans-Web",-apple-system,"Segoe UI",Roboto,"Helvetica Neue",sans-serif}.blog-news__content h3.h6,.blog-news__content .h6.h3{font-size:1rem}}.blog-news__more-link-bar::before{background:#4963f6;content:"";display:inline-block;height:2px;position:relative;top:-3px;width:100%}[data-ctype=list][data-list-type=insocial_pi1] .row.tile .col a,[data-ctype=list][data-list-type=insocial_pi1] .ff-form-overrides .schemable-form-section .tile[class*=_sectionedContent] .col a,.ff-form-overrides .schemable-form-section [data-ctype=list][data-list-type=insocial_pi1] .tile[class*=_sectionedContent] .col a{background-size:cover;background-position:center center;height:203rem/14.4}@media(max-width: 575.98px){[data-ctype=list][data-list-type=insocial_pi1] .row.tile .col a,[data-ctype=list][data-list-type=insocial_pi1] .ff-form-overrides .schemable-form-section .tile[class*=_sectionedContent] .col a,.ff-form-overrides .schemable-form-section [data-ctype=list][data-list-type=insocial_pi1] .tile[class*=_sectionedContent] .col a{height:14.0972222222rem}}@media(min-width: 576px){[data-ctype=list][data-list-type=insocial_pi1] .row.tile .col a,[data-ctype=list][data-list-type=insocial_pi1] .ff-form-overrides .schemable-form-section .tile[class*=_sectionedContent] .col a,.ff-form-overrides .schemable-form-section [data-ctype=list][data-list-type=insocial_pi1] .tile[class*=_sectionedContent] .col a{height:16.1111111111rem}}@media(min-width: 768px){[data-ctype=list][data-list-type=insocial_pi1] .row.tile .col a,[data-ctype=list][data-list-type=insocial_pi1] .ff-form-overrides .schemable-form-section .tile[class*=_sectionedContent] .col a,.ff-form-overrides .schemable-form-section [data-ctype=list][data-list-type=insocial_pi1] .tile[class*=_sectionedContent] .col a{height:203rem/14.4}}@media(min-width: 992px){[data-ctype=list][data-list-type=insocial_pi1] .row.tile .col a,[data-ctype=list][data-list-type=insocial_pi1] .ff-form-overrides .schemable-form-section .tile[class*=_sectionedContent] .col a,.ff-form-overrides .schemable-form-section [data-ctype=list][data-list-type=insocial_pi1] .tile[class*=_sectionedContent] .col a{height:197rem/14.4}}@media(min-width: 1200px)and (min-height: 810px){[data-ctype=list][data-list-type=insocial_pi1] .row.tile .col a,[data-ctype=list][data-list-type=insocial_pi1] .ff-form-overrides .schemable-form-section .tile[class*=_sectionedContent] .col a,.ff-form-overrides .schemable-form-section [data-ctype=list][data-list-type=insocial_pi1] .tile[class*=_sectionedContent] .col a{height:13.8888888889rem}}[data-ctype=list][data-list-type=kluresearch_pi1] .klu-research--list-view--filter{margin-bottom:0rem}[data-ctype=list][data-list-type=kluresearch_pi1] .klu-research--list-view--filter form .form-group{margin-bottom:1rem}[data-ctype=list][data-list-type=kluresearch_pi1] .klu-research--list-view--filter--pdf{display:flex;align-items:center}@media(min-width: 992px){[data-ctype=list][data-list-type=kluresearch_pi1] .klu-research--list-view--filter--pdf{justify-content:right}}[data-ctype=list][data-list-type=kluresearch_pi1] .klu-research--list-view--item-container{border-top:1px solid #d3d3d3;border-bottom:1px solid #d3d3d3}[data-ctype=list][data-list-type=kluresearch_pi1] .klu-research--list-view--item-container-content{overflow:auto;padding:1rem 1rem 0 1rem;border-left:#ebebeb 1.6666666667rem solid}[data-ctype=list][data-list-type=kluresearch_pi1] .klu-research--list-view--item-container-content--key-competence-area{color:#d3d3d3}[data-ctype=list][data-list-type=kluresearch_pi1] .klu-research--list-view--item footer{margin:.8rem 0 0 0}[data-ctype=list][data-list-type=kluresearch_pi1] .klu-research--list-view--item footer p{margin-bottom:2.5rem}[data-ctype=list][data-list-type=kluresearch_pi1] .klu-research--list-view .pagination{margin:0 0 1rem 0}[data-ctype=list][data-list-type=kluresearch_pi1] .klu-research--detail-view--item .detail--teaser-image{margin:.5rem 0 1rem}[data-ctype=list][data-list-type=kluresearch_pi1] .klu-research--detail-view--item .detail--teaser-image a img{width:100%;height:auto;transition:transform 300ms ease-in-out;transform:scale(1, 1)}[data-ctype=list][data-list-type=kluresearch_pi1] .klu-research--detail-view--item .detail--teaser-image a.zoom{position:relative;display:block;overflow:hidden;border-radius:1.5rem}[data-ctype=list][data-list-type=kluresearch_pi1] .klu-research--detail-view--item .detail--teaser-image a.zoom:before{position:absolute;display:block;content:"";height:100%;width:100%;background:#4963f6;opacity:0;transition:opacity 275ms ease-in-out;z-index:1}[data-ctype=list][data-list-type=kluresearch_pi1] .klu-research--detail-view--item .detail--teaser-image a.zoom:hover:before{opacity:.3}[data-ctype=list][data-list-type=kluresearch_pi1] .klu-research--detail-view--item .detail--teaser-image a.zoom:hover img{transform:scale(1.05, 1.05)}[data-ctype=list][data-list-type=kluresearch_pi1] .klu-research--detail-view--item--project-funders{font-style:italic}[data-ctype=list][data-list-type=kluresearch_pi1] .klu-research--detail-view--item--news{margin-top:2rem}[data-ctype=list][data-list-type=kluresearch_pi1] .klu-research--detail-view .detail-option{background:#ebebeb;margin-bottom:1rem}[data-ctype=list][data-list-type=kluresearch_pi1] .klu-research--detail-view .detail-option .container{padding-top:.5rem;padding-bottom:.5rem}[data-ctype=list][data-list-type=kluresearch_pi1] .klu-research--detail-view .detail-option .container a{color:#333;display:inline-block;vertical-align:middle;transition:opacity 100ms}[data-ctype=list][data-list-type=kluresearch_pi1] .klu-research--detail-view .detail-option .container a:hover,[data-ctype=list][data-list-type=kluresearch_pi1] .klu-research--detail-view .detail-option .container a:focus{opacity:1}[data-ctype=list][data-list-type=kluresearch_pi1] .klu-research--detail-view .detail-option .container a svg,[data-ctype=list][data-list-type=kluresearch_pi1] .klu-research--detail-view .detail-option .container a span{display:inline-block;vertical-align:middle}[data-ctype=list][data-list-type=klureasearchdatabase_pi1] .klu-research-database--list-view--filter{margin-bottom:0rem}[data-ctype=list][data-list-type=klureasearchdatabase_pi1] .klu-research-database--list-view--filter form .form-group{margin-bottom:1rem}[data-ctype=list][data-list-type=klureasearchdatabase_pi1] .klu-research-database--list-view--item{margin-bottom:2.5rem}[data-ctype=list][data-list-type=klureasearchdatabase_pi1] .klu-research-database--list-view--item-container{border-top:1px solid #d3d3d3;border-bottom:1px solid #d3d3d3}[data-ctype=list][data-list-type=klureasearchdatabase_pi1] .klu-research-database--list-view--item-container-content{overflow:auto;padding:1rem 1rem 0 1rem;border-left:#ebebeb 1.6666666667rem solid}[data-ctype=list][data-list-type=klureasearchdatabase_pi1] .klu-research-database--list-view--item-container-content--image img{margin:.5rem 0 1.5rem 1rem}@media(min-width: 768px){[data-ctype=list][data-list-type=klureasearchdatabase_pi1] .klu-research-database--list-view--item-container-content--image{float:right}[data-ctype=list][data-list-type=klureasearchdatabase_pi1] .klu-research-database--list-view--item-container-content--image img{margin:0 0 1rem 1rem}}[data-ctype=list][data-list-type=klureasearchdatabase_pi1] .klu-research-database--list-view--item-container-content--types{color:#d3d3d3}[data-ctype=list][data-list-type=klureasearchdatabase_pi1] .klu-research-database--list-view--item-container-content--types span:not(:last-child):after{content:", "}[data-ctype=list][data-list-type=klureasearchdatabase_pi1] .klu-research-database--list-view .pagination{margin:0 0 1rem 0}[data-ctype=list][data-list-type=klunews_pi1] .klu-news--list-view--filter{margin-bottom:0rem}[data-ctype=list][data-list-type=klunews_pi1] .klu-news--list-view--filter form .form-group{margin-bottom:1rem}[data-ctype=list][data-list-type=klunews_pi1] .klu-news--list-view--item{margin-bottom:2.5rem}[data-ctype=list][data-list-type=klunews_pi1] .klu-news--list-view--item-container{border-top:1px solid #d3d3d3;border-bottom:1px solid #d3d3d3}[data-ctype=list][data-list-type=klunews_pi1] .klu-news--list-view--item-container-content{overflow:auto;padding:1rem 1rem 0 1rem;border-left:#ebebeb 1.6666666667rem solid}[data-ctype=list][data-list-type=klunews_pi1] .klu-news--list-view--item-container-content--key-competence-area{color:#d3d3d3}[data-ctype=list][data-list-type=klunews_pi1] .klu-news--list-view--item header p.small{margin-bottom:.5rem}[data-ctype=list][data-list-type=klunews_pi1] .klu-news--list-view .pagination{margin:0 0 1rem 0}[data-ctype=list][data-list-type=klunews_pi1] .klu-news--detail-view--item a img{width:100%;height:auto;transition:transform 300ms ease-in-out;transform:scale(1, 1)}[data-ctype=list][data-list-type=klunews_pi1] .klu-news--detail-view--item a.zoom{position:relative;display:block;overflow:hidden;border-radius:1.5rem}[data-ctype=list][data-list-type=klunews_pi1] .klu-news--detail-view--item a.zoom:before{position:absolute;display:block;content:"";height:100%;width:100%;background:#4963f6;opacity:0;transition:opacity 275ms ease-in-out;z-index:1}[data-ctype=list][data-list-type=klunews_pi1] .klu-news--detail-view--item a.zoom:hover:before{opacity:.3}[data-ctype=list][data-list-type=klunews_pi1] .klu-news--detail-view--item a.zoom:hover img{transform:scale(1.05, 1.05)}[data-ctype=list][data-list-type=klunews_pi1] .klu-news--detail-view--item header p.small{margin-bottom:.5rem}[data-ctype=list][data-list-type=klunews_pi1] .klu-news--detail-view--item .detail--teaser-image{margin:.5rem 0 1rem}[data-ctype=list][data-list-type=klunews_pi1] .klu-news--detail-view--item .gallery{margin-top:1rem}[data-ctype=list][data-list-type=klunews_pi1] .klu-news--detail-view .detail-option{background:#ebebeb;margin-bottom:1rem}[data-ctype=list][data-list-type=klunews_pi1] .klu-news--detail-view .detail-option .container{padding-top:.5rem;padding-bottom:.5rem}[data-ctype=list][data-list-type=klunews_pi1] .klu-news--detail-view .detail-option .container a{color:#333;display:inline-block;vertical-align:middle;opacity:.75;transition:opacity 100ms}[data-ctype=list][data-list-type=klunews_pi1] .klu-news--detail-view .detail-option .container a:hover,[data-ctype=list][data-list-type=klunews_pi1] .klu-news--detail-view .detail-option .container a:focus{opacity:1}[data-ctype=list][data-list-type=klunews_pi1] .klu-news--detail-view .detail-option .container a svg,[data-ctype=list][data-list-type=klunews_pi1] .klu-news--detail-view .detail-option .container a span{display:inline-block;vertical-align:middle}[data-ctype=list][data-list-type=kluevents_pi1] .klu-events--list-view--filter{margin-bottom:0rem}[data-ctype=list][data-list-type=kluevents_pi1] .klu-events--list-view--filter form .form-group{margin-bottom:1rem}[data-ctype=list][data-list-type=kluevents_pi1] .klu-events--list-view--item{margin-bottom:2.5rem}[data-ctype=list][data-list-type=kluevents_pi1] .klu-events--list-view--item-container{border-top:1px solid #d3d3d3;border-bottom:1px solid #d3d3d3;height:100%}[data-ctype=list][data-list-type=kluevents_pi1] .klu-events--list-view--item-container-content{overflow:auto;padding:1rem 1rem 2rem 1rem;border-left:#ebebeb .8333333333rem solid;height:100%}[data-ctype=list][data-list-type=kluevents_pi1] .klu-events--list-view--item-container-content--key-competence-area{color:#d3d3d3}[data-layout="1"] [data-ctype=list][data-list-type=kluevents_pi1] .klu-events--list-view--item-container-content,[data-layout="1"] [data-ctype=list][data-list-type=kluevents_pi1] .klu-events--list-view--item-container-content,[data-layout="2"] [data-ctype=list][data-list-type=kluevents_pi1] .klu-events--list-view--item-container-content,[data-layout="2"] [data-ctype=list][data-list-type=kluevents_pi1] .klu-events--list-view--item-container-content{border-left-color:#fff}[data-ctype=list][data-list-type=kluevents_pi1] .klu-events--list-view--item header p.small{margin-bottom:.5rem}[data-ctype=list][data-list-type=kluevents_pi1] .klu-events--list-view--item footer{position:absolute;bottom:0}[data-ctype=list][data-list-type=kluevents_pi1] .klu-events--list-view .pagination{margin:0 0 1rem 0}[data-ctype=list][data-list-type=kluevents_pi1] .klu-events--detail-view--item a img{width:100%;height:auto;transition:transform 300ms ease-in-out;transform:scale(1, 1)}[data-ctype=list][data-list-type=kluevents_pi1] .klu-events--detail-view--item a.zoom{position:relative;display:block;overflow:hidden;border-radius:1.5rem}[data-ctype=list][data-list-type=kluevents_pi1] .klu-events--detail-view--item a.zoom:before{position:absolute;display:block;content:"";height:100%;width:100%;background:#4963f6;opacity:0;transition:opacity 275ms ease-in-out;z-index:1}[data-ctype=list][data-list-type=kluevents_pi1] .klu-events--detail-view--item a.zoom:hover:before{opacity:.3}[data-ctype=list][data-list-type=kluevents_pi1] .klu-events--detail-view--item a.zoom:hover img{transform:scale(1.05, 1.05)}[data-ctype=list][data-list-type=kluevents_pi1] .klu-events--detail-view--item header p.small{margin-bottom:.5rem}[data-ctype=list][data-list-type=kluevents_pi1] .klu-events--detail-view--item .detail--teaser-image{margin:.5rem 0 1rem}[data-ctype=list][data-list-type=kluevents_pi1] .klu-events--detail-view--item-infobox{background:#ebebeb;margin-bottom:2rem;padding:1rem .5rem}[data-ctype=list][data-list-type=kluevents_pi1] .klu-events--detail-view--item-infobox li{padding-left:1.5rem;margin-bottom:.3rem;background-repeat:no-repeat;background-position:left .2rem;background-size:1rem 1rem}[data-ctype=list][data-list-type=kluevents_pi1] .klu-events--detail-view--item-infobox--datetime{background-image:url(../Assets/icon-clock.svg)}[data-ctype=list][data-list-type=kluevents_pi1] .klu-events--detail-view--item-infobox--location{background-image:url(../Assets/icon-pin.svg)}[data-ctype=list][data-list-type=kluevents_pi1] .klu-events--detail-view--item-infobox--category{background-image:url(../Assets/icon-tag.svg)}[data-ctype=list][data-list-type=kluevents_pi1] .klu-events--detail-view--item-bodytext{margin-bottom:.5rem}[data-ctype=list][data-list-type=kluevents_pi1] .klu-events--detail-view .detail-option{background:#ebebeb;margin-bottom:1rem}[data-ctype=list][data-list-type=kluevents_pi1] .klu-events--detail-view .detail-option .container{padding-top:.5rem;padding-bottom:.5rem}[data-ctype=list][data-list-type=kluevents_pi1] .klu-events--detail-view .detail-option .container a{color:#333;display:inline-block;vertical-align:middle;opacity:.75;transition:opacity 100ms}[data-ctype=list][data-list-type=kluevents_pi1] .klu-events--detail-view .detail-option .container a:hover,[data-ctype=list][data-list-type=kluevents_pi1] .klu-events--detail-view .detail-option .container a:focus{opacity:1}[data-ctype=list][data-list-type=kluevents_pi1] .klu-events--detail-view .detail-option .container a svg,[data-ctype=list][data-list-type=kluevents_pi1] .klu-events--detail-view .detail-option .container a span{display:inline-block;vertical-align:middle}[data-ctype=geo_redirect] .geo-overlay{position:fixed;top:0;bottom:0;left:0;right:0;background-color:rgba(35,35,35,.75);z-index:10000;transition:all .6s ease-in-out}[data-ctype=geo_redirect] .geo-overlay .white-box{transition:transform .6s ease-in-out}[data-ctype=geo_redirect] .geo-overlay.fadeout{background-color:rgba(0,0,0,0);pointer-events:none}[data-ctype=geo_redirect] .geo-overlay.fadeout .white-box{transform:translateY(150%)}[data-ctype=geo_redirect] .white-box{position:fixed;min-height:18.3rem;max-height:32rem;overflow-y:hidden;width:100%;min-width:320px;max-width:44.5rem;background-color:#fff;left:0;right:0;margin:0 auto;bottom:2.8rem;display:flex}[data-ctype=geo_redirect] .white-box .content{display:flex;flex-direction:column;padding:1.4rem 1.4rem 1.8rem}[data-ctype=geo_redirect] .white-box a.btn{margin:.5rem 0 0 auto}[data-ctype=geo_redirect] .white-box a.btn-close{content:url(../Assets/icon-close.svg);height:1.375rem;width:auto;transition:filter 100ms ease}[data-ctype=geo_redirect] .white-box a.btn-close:hover{filter:brightness(0);transition:filter 100ms ease}[data-ctype=geo_redirect] .white-box a.close-overlay{position:absolute;top:1.4rem;right:1.4rem}[data-ctype=geo_redirect] .white-box img{height:100%;-o-object-fit:cover;object-fit:cover;width:18.3rem}@media(max-width: 575.98px){[data-ctype=geo_redirect] .white-box{flex-direction:column;max-width:30rem;max-height:98%;top:50%;transform:translateY(-50%);bottom:auto;bottom:initial;overflow-y:auto}[data-ctype=geo_redirect] .white-box img{height:auto;height:initial;-o-object-fit:initial;object-fit:initial;width:auto;width:initial}}@media(max-width: 575.98px){[data-ctype=geo_redirect] .white-box{max-width:24rem}[data-ctype=geo_redirect] .white-box img{max-width:100%}}[data-ctype=list][data-list-type=cvbook_pi1] .cvbook--notice{margin-bottom:1rem}[data-ctype=list][data-list-type=cvbook_pi1] .cvbook--notice .close{opacity:.65}[data-ctype=list][data-list-type=cvbook_pi1] .cvbook--notice .close:hover,[data-ctype=list][data-list-type=cvbook_pi1] .cvbook--notice .close:focus{opacity:.95}[data-ctype=list][data-list-type=cvbook_pi1] .cvbook--notice .alert-dismissible .close{right:0;color:inherit}[data-ctype=list][data-list-type=cvbook_pi1]>.container.ce-container{max-width:none;padding-left:0;padding-right:0}[data-ctype=list][data-list-type=cvbook_pi1] .cvbook--list-view--filters{padding-top:.5rem;padding-bottom:-0.5rem}[data-ctype=list][data-list-type=cvbook_pi1] .cvbook--list-view--filters .form-group{margin-bottom:1rem}[data-ctype=list][data-list-type=cvbook_pi1] .cvbook--list-view--options{margin-bottom:1rem;text-align:right;padding-top:.2222222222rem;padding-bottom:.1666666667rem}[data-ctype=list][data-list-type=cvbook_pi1] .cvbook--list-view--options a{color:#fff;opacity:.75;transition:opacity 100ms}[data-ctype=list][data-list-type=cvbook_pi1] .cvbook--list-view--options a:hover,[data-ctype=list][data-list-type=cvbook_pi1] .cvbook--list-view--options a:focus{opacity:1}[data-ctype=list][data-list-type=cvbook_pi1] .cvbook--list-view--options svg{width:.8888888889rem;height:.8888888889rem}[data-ctype=list][data-list-type=cvbook_pi1] .cvbook--list-view .col-md-6,[data-ctype=list][data-list-type=cvbook_pi1] .cvbook--list-view .ff-form-overrides .schemable-form-section [class*=_sectionedContent]>*,.ff-form-overrides .schemable-form-section [data-ctype=list][data-list-type=cvbook_pi1] .cvbook--list-view [class*=_sectionedContent]>*{margin-bottom:1rem}[data-ctype=list][data-list-type=cvbook_pi1] .cvbook--list-view--item{background-color:#ebebeb;border:.0555555556rem solid #919191;height:100%}[data-ctype=list][data-list-type=cvbook_pi1] .cvbook--list-view--item>.row,[data-ctype=list][data-list-type=cvbook_pi1] .ff-form-overrides .schemable-form-section .cvbook--list-view--item>[class*=_sectionedContent],.ff-form-overrides .schemable-form-section [data-ctype=list][data-list-type=cvbook_pi1] .cvbook--list-view--item>[class*=_sectionedContent]{height:100%}[data-ctype=list][data-list-type=cvbook_pi1] .cvbook--list-view--item-image{min-height:175px;background-color:#fff;background-repeat:no-repeat;background-position:center center;background-size:cover}[data-ctype=list][data-list-type=cvbook_pi1] .cvbook--list-view--item-content{overflow:hidden;padding:1.1111111111rem;position:relative;height:100%}[data-ctype=list][data-list-type=cvbook_pi1] .cvbook--list-view--item-content .name{line-height:1.1}[data-ctype=list][data-list-type=cvbook_pi1] .cvbook--list-view--item-content .program{color:#919191}[data-ctype=list][data-list-type=cvbook_pi1] .cvbook--list-view--item-content--options{z-index:2;background:#4963f6;padding:.2777777778rem 1.1111111111rem 0;position:absolute;bottom:0;left:0;right:0}[data-ctype=list][data-list-type=cvbook_pi1] .cvbook--list-view--item-content--options .right{position:absolute;right:1.1111111111rem}[data-ctype=list][data-list-type=cvbook_pi1] .cvbook--list-view--item-content--options svg{width:.8888888889rem;height:.8888888889rem}[data-ctype=list][data-list-type=cvbook_pi1] .cvbook--list-view--item-content--options a{cursor:pointer;margin-right:.4444444444rem;opacity:.75;transition:opacity 100ms}[data-ctype=list][data-list-type=cvbook_pi1] .cvbook--list-view--item-content--options a:hover,[data-ctype=list][data-list-type=cvbook_pi1] .cvbook--list-view--item-content--options a:focus{opacity:1}[data-ctype=list][data-list-type=cvbook_pi1] .cvbook--list-view--item-content--options a:last-child{margin-right:0}[data-ctype=list][data-list-type=cvbook_pi1] .cvbook--list-view--item-content--options a.selection-button.remove{display:none}[data-ctype=list][data-list-type=cvbook_pi1] .cvbook--list-view--item-content--objectives{padding:1.1111111111rem;z-index:1;position:absolute;top:100%;left:0;right:0;bottom:0;transition:top 550ms ease;background:rgba(0,0,0,.6);color:#fff}[data-ctype=list][data-list-type=cvbook_pi1] .cvbook--list-view--item-content--objectives.open{top:0}[data-ctype=list][data-list-type=cvbook_pi1] .cvbook--list-view--item.selected{border-color:#eb2800}[data-ctype=list][data-list-type=cvbook_pi1] .cvbook--list-view--item.selected .cvbook--list-view--item-content--options{background-color:#eb2800}[data-ctype=list][data-list-type=cvbook_pi1] .cvbook--list-view--item.selected .cvbook--list-view--item-image{position:relative}[data-ctype=list][data-list-type=cvbook_pi1] .cvbook--list-view--item.selected .cvbook--list-view--item-image:before{position:absolute;content:"";display:block;height:100%;width:100%;background:rgba(142,52,31,.25)}[data-ctype=list][data-list-type=cvbook_pi1] .cvbook--list-view--item.selected .selection-button.add{display:none}[data-ctype=list][data-list-type=cvbook_pi1] .cvbook--list-view--item.selected .selection-button.remove{display:inline}[data-ctype=list][data-list-type=cvbook_pi1] .cvbook--list-view.cvbook--selected-list-view .cvbook--list-view--item.selected{border:.0555555556rem solid #919191}[data-ctype=list][data-list-type=cvbook_pi1] .cvbook--list-view.cvbook--selected-list-view .cvbook--list-view--item.selected .cvbook--list-view--item-content--options{background-color:#4963f6}[data-ctype=list][data-list-type=cvbook_pi1] .cvbook--list-view.cvbook--selected-list-view .cvbook--list-view--item.selected .cvbook--list-view--item-image:before{content:none}[data-overlay-container=cvbook] .overlay-container{margin-top:5vh}[data-overlay-container=cvbook] .overlay-container .overlay-container-content{height:92vh;background-image:url(../Assets/loader-bars.svg);background-position:center center;background-repeat:no-repeat;background-size:75px auto}.feedback-message{padding:1.5rem 0}body{min-height:100vh;min-width:320px}.chatbot{position:fixed;right:1rem;bottom:0;width:100%;max-width:480px;height:730px;max-height:100vh;background:rgba(0,0,0,0)}.chatbot__iframe{display:block;width:100%;height:100%;border:none;outline:none}.chatbot__options{position:absolute;bottom:0;right:0;width:100%;display:flex;justify-content:flex-end}.chatbot__button{background:none;border:none;outline:none;padding:0;margin:0;display:flex;justify-content:flex-end;align-items:center;padding:.5rem 0;height:100%;cursor:pointer}.chatbot__button{outline:none !important}.chatbot__button svg{height:5.55rem;width:auto}.chatbot__button:hover .chatbot__bubble>div{background-color:#a4925a}.chatbot__button:hover .chatbot__bubble::after{filter:invert(53%) sepia(49%) saturate(334%) hue-rotate(8deg) brightness(99%) contrast(86%)}.chatbot__button:active .chatbot__bubble{transform:translateY(2px)}.chatbot__button:active .chatbot__bubble>div{border-bottom-width:0}.chatbot__bubble{transition:transform .1s ease-in-out;position:relative;margin-right:2rem}.chatbot__bubble>div{position:relative;font-size:1rem;background-color:#b7a364;border-bottom:2px solid #716745;padding:.9em 1.5em .9em 1em;color:#fff;overflow:hidden;transition:background-color .2s ease-in-out, border .1s ease-in-out}.chatbot__bubble>div::before{content:"";display:block;position:absolute;top:50%;left:0;background-color:#a63219;width:.8rem;height:.8rem;transform:translateX(-50%) translateY(-50%) rotate(45deg)}.chatbot__bubble::after{content:"";display:block;position:absolute;top:50%;right:-1.4rem;width:1.4rem;height:1.4rem;transform:translateY(-50%);background:url(data:image/svg+xml;charset=utf-8;base64,PHN2ZyB3aWR0aD0iMjUiIGhlaWdodD0iMjUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZD0iTTAgMCBMMjUgMCBMIDAgMjUiIGZpbGw9IiMwMDAwMDAiPjwvcGF0aD48L3N2Zz4=);background-repeat:no-repeat;background-position:center;transition:filter .2s ease-in-out;filter:invert(67%) sepia(20%) saturate(743%) hue-rotate(8deg) brightness(94%) contrast(90%)}.chatbot__minimize{position:absolute;top:.2rem;right:.2rem;width:1rem;height:1rem;background-color:rgba(0,0,0,.4);overflow:hidden;transition:background-color .1s ease-in-out}.chatbot__minimize:hover{background-color:rgba(0,0,0,.53)}.chatbot__minimize::before,.chatbot__minimize::after{content:"";position:absolute;top:50%;left:50%;width:.05rem;height:1rem;background:#fff;transform:translateX(-50%) translateY(-50%) rotate(45deg)}.chatbot__minimize::after{transform:translateY(-50%) translateX(-50%) rotate(-45deg)}.chatbot__minimized{position:absolute;right:0;bottom:0;background-color:#b8a460;padding:.5rem;cursor:pointer}.chatbot__minimized svg{width:1.75rem;height:1.75rem}@media(max-width: 500px){.chatbot{left:0;right:0}.chatbot__options{padding-right:1rem}.chatbot__minimized{margin-right:1rem}}.chatbot{pointer-events:none}.chatbot--open,.chatbot--active{pointer-events:all}.chatbot__button,.chatbot__minimized{pointer-events:all}.chatbot__iframe{transform:translateY(100%);box-shadow:0 0px 25px rgba(0,0,0,.2)}.chatbot--open .chatbot__iframe{transform:translateY(0%)}.chatbot__bubble{transform-origin:120% 40%}.chatbot__button--blocked,.chatbot__button--hidden,.chatbot--open .chatbot__button{transform:translateY(110%)}.chatbot__button--hidden .chatbot__bubble,.chatbot--open .chatbot__button .chatbot__bubble{opacity:0;transform:scale(0.1)}.chatbot__minimized--hidden{transform:translateY(100%)}.chatbot__iframe{transition:transform .5s ease .3s}.chatbot--open .chatbot__iframe{transition:transform .5s ease .3s}.chatbot--open .chatbot__button{transition-delay:0}.chatbot__minimized{transition:transform .3s ease-in-out .3s}.chatbot__minimized--hidden{transition:transform .3s ease-in-out}.chatbot__button{transition:transform .8s cubic-bezier(0.49, 1.56, 0.3, 1) .2s}.chatbot__button--hidden{transition:transform .3s ease-in-out}.chatbot__button--hidden .chatbot__bubble{transition:all .3s ease-in-out}.chatbot__button .chatbot__bubble{transition:all .3s ease-in-out 1.2s}.chatbot__button>svg{animation-name:floating-kluney;animation-duration:4s;animation-iteration-count:infinite;animation-timing-function:cubic-bezier(0.42, 0.1, 0.58, 0.9)}@keyframes floating-kluney{0%{transform:translateY(0)}50%{transform:translateY(-15%)}100%{transform:translateY(0)}}.news .language-menu{z-index:2}.news h1,.news .h1{color:#fff}.news .text-white *{color:#fff}.news .language-menu{position:absolute;right:0rem;top:-6rem}.news.news-single .language-menu{margin-top:1rem;margin-right:.5rem}.news .color-white{color:#fff}.news .blog-date{color:#919191}.news .pb1rem{padding-bottom:1rem}.news .pb15rem{padding-bottom:1.5rem}.news .mb1rem{margin-bottom:1rem}.news .mb05rem{margin-bottom:.5rem}.news .blog-col-bottom{display:flex;align-items:baseline;justify-content:center}.news .blog-col-bottom p{margin-right:1rem;width:100%}.news .bg-gray-dark{background-color:#232323;color:#fff}.news .bg-gray-dark .blog-article{margin-bottom:1rem}.news .bg-gray-dark .blog-article a.more{color:#fff}.news .bg-gray-dark .blog-article a.more:hover,.news .bg-gray-dark .blog-article a.more:focus,.news .bg-gray-dark .blog-article a.more:active{color:#fff}.news .bg-gray-lighter{background-color:#ebebeb}.news .tags,.news .blog-detail-header{position:relative;overflow:hidden}.news .tags .tags-bg-image,.news .tags .blog-detail-bg-image,.news .blog-detail-header .tags-bg-image,.news .blog-detail-header .blog-detail-bg-image{position:absolute;display:block;width:130%;height:130%;-moz-filter:blur(25px);-o-filter:blur(25px);-ms-filter:blur(25px);filter:blur(25px);background-size:cover;background-repeat:no-repeat;background-position:center;left:-10%;top:-10%}.news .tags .tag-bg-hover,.news .tags .blog-detail-bg-hover,.news .blog-detail-header .tag-bg-hover,.news .blog-detail-header .blog-detail-bg-hover{position:absolute;display:block;left:-10%;top:-10%;width:130%;height:130%;background-color:#232323;opacity:.75}.news .tags .tags-items a,.news .blog-detail-header .tags-items a{margin-bottom:.8rem}.news .blog-article{margin-bottom:1rem}.news .blog-article .news-img-wrap a.unlink{display:block;position:relative;overflow:hidden;border-radius:10px 10px 10px 0}.news .blog-article .news-img-wrap a.unlink:before{position:absolute;display:block;content:"";height:100%;width:100%;background:#4963f6;opacity:0;transition:opacity 275ms ease-in-out;z-index:1}.news .blog-article .news-img-wrap a.unlink img{transition:transform 300ms ease-in-out;transform:scale(1, 1)}.news .blog-article .news-img-wrap a.unlink:hover:before,.news .blog-article .news-img-wrap a.unlink:focus:before{opacity:.3}.news .blog-article .news-img-wrap a.unlink:hover img,.news .blog-article .news-img-wrap a.unlink:focus img{transform:scale(1.05, 1.05)}.news .blog-article .news-teaser-image{border-radius:10px 10px 10px 0}.news .blog-detail-header{position:absolute}.news .blog-detail-header .blog-detail-image-fake{opacity:0;position:relative}.news .blog-detail-header .blog-detail-image .blog-detail-image-wrap,.news .blog-detail-header .blog-detail-image-fake .blog-detail-image-wrap{position:relative;right:0;max-height:28.5rem}.news .blog-detail-header .blog-detail-image .blog-detail-image-wrap img,.news .blog-detail-header .blog-detail-image-fake .blog-detail-image-wrap img{width:100%;border-radius:10px 10px 10px 0}.news .language-menu-gradient{position:absolute;right:0;border-radius:0 10px 0 0;width:8.4rem;height:8.4rem;background:#707070;background:linear-gradient(225deg, rgb(112, 112, 112) 0%, rgba(255, 255, 255, 0) 50%)}.news .blog-detail-info{position:absolute;z-index:1}.news .blog-detail-info a.profLink{color:#fff}.news .blog-detail-info a.profLink:hover,.news .blog-detail-info a.profLink:focus,.news .blog-detail-info a.profLink:active{color:#fff}.news .blog-detail-info a.profLink:before{content:"› "}.news .blog-row{align-items:center;position:relative}.news .blog-col{margin-left:auto;margin-right:auto}.news .blog-col .teaser-text{color:#232323;font-weight:bold;font-size:1rem}.news .blog-detail-image{margin-left:auto}.news .blog-detail-image .blog-detail-image-wrap{position:relative;right:0;margin-bottom:2rem}.news .blog-detail-image .blog-detail-image-wrap img{width:100%;border-radius:10px 10px 10px 0}@media(max-width: 768px){.news .blog-detail-info,.news .blog-detail-header{position:relative}.news .blog-detail-image-wrap{margin-left:2rem;margin-right:-2rem}.news .blog-detail-image-wrap img{width:100%;border-radius:10px 10px 10px 0}.news .blog-detail-image-wrap .language-menu-gradient{margin-right:-9px}.news .blog-row .header{margin-top:-2rem}}.tiles .btn-tile{border-radius:1.5rem;display:block;min-height:10rem;text-align:left;-webkit-text-decoration:none;text-decoration:none;transition:all .2s ease-in-out}.tiles .btn-tile:hover{color:inherit}.tiles .btn-tile:hover svg{margin-right:.5rem !important}.tiles .btn-tile svg{transition:all .2s ease-in-out}@media(max-width: 767.98px){.tiles .btn-tile{min-height:7.14rem}}.pagination{display:inline-block;padding-left:0}.pagination li{display:inline}.pagination .page-link{padding:0 1rem;-webkit-text-decoration:none;text-decoration:none}.pagination .active span{color:#64002d}.video-shariff-container{position:relative;text-align:center;display:block}.video-shariff-container .smaller{font-size:.6rem;letter-spacing:.2px}span.video-shariff-container img{display:inline-block;width:100%;height:auto}span.video-shariff-play{border:0 !important;cursor:pointer}.video-shariff-preview{position:absolute;left:0;right:0;text-align:left}.video-shariff-preview-overlay{background:#4963f6;opacity:.8;display:block;position:absolute;top:0;bottom:0;left:0;right:0;transition:all .4s cubic-bezier(0.165, 0.84, 0.44, 1)}span.video-shariff-play:hover .video-shariff-preview-overlay,span.video-shariff-play:focus .video-shariff-preview-overlay{background:rgba(0,0,0,0)}.video-shariff-preview span{display:block;position:relative}.video-shariff-preview-icon{background:rgba(0,0,0,0);width:0;height:0;border-top:24px solid rgba(0,0,0,0);border-left:36px solid #fff;border-bottom:24px solid rgba(0,0,0,0);margin:-2rem -2rem;left:50%}.video-shariff-preview-text{font-weight:bold;color:#fff}@media screen and (max-width: 576px){.video-shariff-preview-text{top:0;font-size:.8rem}}.video-shariff-preview-text a{color:#fff !important}.video-shariff-preview-text a:hover{color:#fff !important}@media screen and (max-width: 576px){.video-shariff-play-icon{width:5rem}}@media(min-width: 768px)and (max-width: 991.98px){.video-shariff-play-icon{width:5rem}}.policy{border-bottom:1px solid rgba(0,0,0,.2) !important}.policy:hover{color:#4963f6 !important}.preview-button{width:auto;width:initial;padding:.5rem;background-color:#4963f6;border:none;border-bottom:.2rem solid #64002d;cursor:pointer;outline:none}.preview-button a{color:#fff !important;border:none !important}.preview-button a:hover{color:#000 !important}.video-block{position:relative;top:50%;transform:translateY(-50%);background-color:rgba(0,0,0,0)}.ce-gallery figure.video-shariff-fix{display:block}.video-embed .checkbox input{width:auto;width:initial}.video-embed .checkbox span{align-self:center;font-weight:bold}@media screen and (max-width: 576px){.video-embed .checkbox span{font-size:.8rem}}[data-ctype=list][data-list-type=univiepure_univiepure] p.type{display:none}.mm-hidden{display:none !important}.mm-wrapper{overflow-x:hidden;position:relative}.mm-menu{box-sizing:border-box;background:inherit;display:block;padding:0;margin:0;position:absolute;left:0;right:0;top:0;bottom:0;z-index:0}.mm-panels,.mm-panels>.mm-panel{background:inherit;border-color:inherit;box-sizing:border-box;margin:0;position:absolute;left:0;right:0;top:0;bottom:0;z-index:0}.mm-panels{overflow:hidden}.mm-panel{transition:transform .4s ease;transform:translate3d(100%, 0, 0)}.mm-panel.mm-opened{transform:translate3d(0%, 0, 0)}.mm-panel.mm-subopened{transform:translate3d(-30%, 0, 0)}.mm-panel.mm-highest{z-index:1}.mm-panels>.mm-panel{-webkit-overflow-scrolling:touch;overflow:scroll;overflow-x:hidden;overflow-y:auto;padding:0 25px}.mm-panels>.mm-panel.mm-hasnavbar{padding-top:50px}.mm-panels>.mm-panel:not(.mm-hidden){display:block}.mm-panels>.mm-panel:before,.mm-panels>.mm-panel:after{content:"";display:block;height:25px}.mm-vertical .mm-panel{transform:none !important}.mm-vertical .mm-listview .mm-panel,.mm-listview .mm-vertical .mm-panel{display:none;padding:12.5px 0 12.5px 12.5px}.mm-vertical .mm-listview .mm-panel .mm-listview>li:last-child:after,.mm-listview .mm-vertical .mm-panel .mm-listview>li:last-child:after{border-color:rgba(0,0,0,0)}.mm-vertical li.mm-opened>.mm-panel,li.mm-vertical.mm-opened>.mm-panel{display:block}.mm-vertical .mm-listview>li>.mm-next,.mm-listview>li.mm-vertical>.mm-next{height:50px;bottom:auto}.mm-vertical .mm-listview>li>.mm-next:after,.mm-listview>li.mm-vertical>.mm-next:after{top:21px;bottom:auto}.mm-vertical .mm-listview>li.mm-opened>.mm-next:after,.mm-listview>li.mm-vertical.mm-opened>.mm-next:after{transform:rotate(45deg);right:24px}.mm-btn{box-sizing:border-box;width:50px;height:50px;position:absolute;top:0;z-index:1}.mm-clear:before,.mm-clear:after,.mm-close:before,.mm-close:after{content:"";border:2px solid rgba(0,0,0,0);display:block;width:5px;height:5px;margin:auto;position:absolute;top:0;bottom:0;transform:rotate(-45deg)}.mm-clear:before,.mm-close:before{border-right:none;border-bottom:none;right:23px}.mm-clear:after,.mm-close:after{border-left:none;border-top:none;right:30px}.mm-prev:before,.mm-next:after,.mm-arrow:after{background-image:url(../Assets/icon-arrow-right.svg);background-size:cover;content:"";border:0;display:block;width:18px;height:18px;margin:auto;position:absolute;top:0;bottom:0}.mm-prev:before{background-image:url(../Assets/icon-arrow-left.svg);border-right:none;border-bottom:none;left:0}.mm-next:after,.mm-arrow:after{border-top:none;border-left:none;right:25px}.mm-navbar{font-size:14.4px;border-bottom:1px solid;border-color:inherit;text-align:center;line-height:25px;height:50px;padding:0 50px;margin:0;position:absolute;top:0;left:0;right:0}.mm-navbar>*{display:block;padding:12.5px 0}.mm-navbar a,.mm-navbar a:hover{-webkit-text-decoration:none;text-decoration:none}.mm-navbar .mm-title{text-overflow:ellipsis;white-space:nowrap;overflow:hidden}.mm-navbar .mm-btn:first-child{padding-left:25px;left:0}.mm-navbar .mm-btn:last-child{text-align:right;padding-right:25px;right:0}.mm-panel .mm-navbar{font-weight:bold;display:none;padding:0 25px;margin:0 0 0 25px}.mm-panel.mm-hasnavbar .mm-navbar{display:block}.mm-listview,.mm-listview>li{list-style:none;display:block;padding:0;margin:0}.mm-listview{font:inherit;font-size:14.4px;line-height:25px}.mm-listview a,.mm-listview a:hover{-webkit-text-decoration:none;text-decoration:none}.mm-listview>li{position:relative}.mm-listview>li,.mm-listview>li:after,.mm-listview>li .mm-next,.mm-listview>li .mm-next:before{border-color:inherit}.mm-listview>li>a,.mm-listview>li>span{text-overflow:ellipsis;white-space:nowrap;overflow:hidden;color:inherit;display:block;padding:12.5px 12.5px 12.5px 25px;margin:0}.mm-listview>li>a.mm-arrow,.mm-listview>li>span.mm-arrow{padding-right:62.5px}.mm-listview>li:not(.mm-divider):after{content:"";border-bottom-width:1px;border-bottom-style:solid;display:block;position:absolute;left:0;right:0;bottom:0}.mm-listview>li:not(.mm-divider):after{left:25px}.mm-listview .mm-next{background:rgba(3,2,1,0);width:62.5px;padding:0;position:absolute;right:0;top:0;bottom:0;z-index:2}.mm-listview .mm-next:before{content:"";border-left-width:1px;border-left-style:solid;display:block;position:absolute;top:0;bottom:0;left:0}.mm-listview .mm-next+a,.mm-listview .mm-next+span{margin-right:62.5px}.mm-listview .mm-next.mm-fullsubopen{width:100%}.mm-listview .mm-next.mm-fullsubopen:before{border-left:none}.mm-listview .mm-next.mm-fullsubopen+a,.mm-listview .mm-next.mm-fullsubopen+span{padding-right:62.5px;margin-right:0}.mm-panels>.mm-panel>.mm-listview{margin:25px -25px}.mm-panels>.mm-panel>.mm-listview:first-child,.mm-panels>.mm-panel>.mm-navbar+.mm-listview{margin-top:-25px}.mm-listview .mm-inset{list-style:inside disc;padding:0 12.5px 18.75px 50px;margin:0}.mm-listview .mm-inset>li{padding:6.25px 0}.mm-listview .mm-divider{text-overflow:ellipsis;white-space:nowrap;overflow:hidden;font-size:10px;text-transform:uppercase;text-indent:25px;line-height:31.25px}.mm-listview .mm-spacer{padding-top:50px}.mm-listview .mm-spacer>.mm-next{top:50px}.mm-listview .mm-spacer.mm-divider{padding-top:31.25px}.mm-menu.mm-top,.mm-menu.mm-bottom{width:100%;min-width:100%;max-width:100%}.mm-menu.mm-right{left:auto;right:0}.mm-menu.mm-bottom{top:auto;bottom:0}html.mm-right.mm-opening .mm-slideout{transform:translate3d(-80%, 0, 0)}@media all and (max-width: 175px){html.mm-right.mm-opening .mm-slideout{transform:translate3d(-140px, 0, 0)}}@media all and (min-width: 550px){html.mm-right.mm-opening .mm-slideout{transform:translate3d(-440px, 0, 0)}}html.mm-front .mm-slideout{transform:none !important;z-index:0}html.mm-front #mm-blocker{z-index:1}html.mm-front .mm-menu{z-index:2}.mm-menu.mm-front,.mm-menu.mm-next{transition:transform .4s ease;transform:translate3d(-100%, 0, 0)}.mm-menu.mm-front.mm-right,.mm-menu.mm-next.mm-right{transform:translate3d(100%, 0, 0)}.mm-menu.mm-top{transform:translate3d(0, -100%, 0)}.mm-menu.mm-bottom{transform:translate3d(0, 100%, 0)}html.mm-opening .mm-menu.mm-front,html.mm-opening .mm-menu.mm-next{transform:translate3d(0, 0, 0)}.mm-menu.mm-top,.mm-menu.mm-bottom{height:80%;min-height:140px;max-height:880px}.selectize-control.plugin-drag_drop.multi>.selectize-input>div.ui-sortable-placeholder{visibility:visible !important;background:#f2f2f2 !important;background:rgba(0,0,0,.06) !important;border:0 none !important;box-shadow:inset 0 0 12px 4px #fff}.selectize-control.plugin-drag_drop .ui-sortable-placeholder::after{content:"!";visibility:hidden}.selectize-control.plugin-drag_drop .ui-sortable-helper{box-shadow:0 2px 5px rgba(0,0,0,.2)}.selectize-dropdown-header{position:relative;padding:5px 8px;border-bottom:1px solid #d0d0d0;background:#f8f8f8;border-radius:3px 3px 0 0}.selectize-dropdown-header-close{position:absolute;right:8px;top:50%;color:#303030;opacity:.4;margin-top:-12px;line-height:20px;font-size:20px !important}.selectize-dropdown-header-close:hover{color:#000}.selectize-dropdown.plugin-optgroup_columns .optgroup{border-right:1px solid #f2f2f2;border-top:0 none;float:left;box-sizing:border-box}.selectize-dropdown.plugin-optgroup_columns .optgroup:last-child{border-right:0 none}.selectize-dropdown.plugin-optgroup_columns .optgroup:before{display:none}.selectize-dropdown.plugin-optgroup_columns .optgroup-header{border-top:0 none}.selectize-control.plugin-remove_button [data-value]{position:relative;padding-right:24px !important}.selectize-control.plugin-remove_button [data-value] .remove{z-index:1;position:absolute;top:0;right:0;bottom:0;width:17px;text-align:center;font-weight:bold;font-size:12px;color:inherit;-webkit-text-decoration:none;text-decoration:none;vertical-align:middle;display:inline-block;padding:2px 0 0 0;border-left:1px solid #d0d0d0;border-radius:0 2px 2px 0;box-sizing:border-box}.selectize-control.plugin-remove_button [data-value] .remove:hover{background:rgba(0,0,0,.05)}.selectize-control.plugin-remove_button [data-value].active .remove{border-left-color:#cacaca}.selectize-control.plugin-remove_button .disabled [data-value] .remove:hover{background:none}.selectize-control.plugin-remove_button .disabled [data-value] .remove{border-left-color:#fff}.selectize-control.plugin-remove_button .remove-single{position:absolute;right:28px;top:6px;font-size:23px}.selectize-control{position:relative}.selectize-input,.selectize-control.single .selectize-input.input-active{background-color:#ebebeb;cursor:text;display:inline-block}[data-layout="1"] .selectize-input,[data-layout="1"] .selectize-control.single .selectize-input.input-active{background-color:#fff}.selectize-input{padding:.4rem 1.1667rem;padding-right:2.3334rem;font-size:1rem;line-height:1.5;color:#232323;background-color:#ebebeb;display:inline-block;width:100%;overflow:hidden;position:relative;z-index:1;border:0;border-bottom:1px solid #919191}[data-layout="1"] .selectize-input{background:#fff}.selectize-input.dropdown-active{border-bottom:1px solid #eb2800}.selectize-control.multi .selectize-input.has-items{padding:6px 8px 3px}.selectize-input.full{background-color:#ebebeb}[data-layout="1"] .selectize-input.full{background-color:#fff}.selectize-input.disabled,.selectize-input.disabled *{cursor:default !important}.selectize-input>*{vertical-align:baseline;display:-moz-inline-stack;display:inline-block;zoom:1;*display:inline}.selectize-control.multi .selectize-input>div{cursor:pointer;margin:0 3px 3px 0;padding:2px 6px;background:#f2f2f2;color:#303030;border:0 solid #d0d0d0}.selectize-control.multi .selectize-input>div.active{background:#e8e8e8;color:#303030;border:0 solid #cacaca}.selectize-control.multi .selectize-input.disabled>div,.selectize-control.multi .selectize-input.disabled>div.active{color:#7d7d7d;background:#fff;border:0 solid #fff}.selectize-input>input{display:inline-block !important;padding:0 !important;min-height:0 !important;max-height:none !important;max-width:100% !important;margin:0 2px 0 0 !important;text-indent:0 !important;border:0 none !important;background:none !important;line-height:inherit !important;-webkit-user-select:auto !important;box-shadow:none !important}.selectize-input>input::-ms-clear{display:none}.selectize-input>input:focus{outline:none !important}.selectize-input::after{content:" ";display:block;clear:left}.selectize-input.dropdown-active::before{content:" ";display:block;position:absolute;height:1px;bottom:0;left:0;right:0}.selectize-dropdown{position:absolute;z-index:10;border:1px solid #919191;border-top:0;background:#fff;margin:0px 0 0 0}.selectize-dropdown [data-selectable]{cursor:pointer;overflow:hidden}.selectize-dropdown [data-selectable] .highlight{background:#d3d3d3}.selectize-dropdown [data-selectable],.selectize-dropdown .optgroup-header{padding:5px 8px}.selectize-dropdown .optgroup:first-child .optgroup-header{border-top:0 none}.selectize-dropdown .optgroup-header{color:#303030;background:#fff;cursor:default}.selectize-dropdown .active{background-color:#ebebeb}.selectize-dropdown .create{color:rgba(48,48,48,.5)}.selectize-dropdown-content{overflow-y:auto;overflow-x:hidden;max-height:200px;-webkit-overflow-scrolling:touch}.selectize-control.single .selectize-input,.selectize-control.single .selectize-input input{cursor:pointer}.selectize-control.single .selectize-input.input-active,.selectize-control.single .selectize-input.input-active input{cursor:text}.selectize-control.single .selectize-input:after{content:" ";display:block;position:absolute;top:50%;right:1rem;margin-top:-3px;width:0;height:0;border-style:solid;border-width:8px 8px 0 8px;border-color:#ccc rgba(0,0,0,0) rgba(0,0,0,0) rgba(0,0,0,0)}.selectize-control.single .selectize-input.dropdown-active:after{margin-top:-4px;border-width:0 8px 8px 8px;border-color:rgba(0,0,0,0) rgba(0,0,0,0) gray rgba(0,0,0,0)}.selectize-control.rtl.single .selectize-input:after{left:15px;right:auto}.selectize-control.rtl .selectize-input>input{margin:0 4px 0 -2px !important}.selectize-control .selectize-input.disabled{opacity:.5;background-color:#fafafa}.mm-menu{background:#232323;border-color:hsla(0,0%,100%,.25);color:#fff}.mm-menu .mm-navbar>*,.mm-menu .mm-navbar a{color:#fff}.mm-menu .mm-btn:before,.mm-menu .mm-btn:after{border-color:#fff}.mm-menu .mm-listview{border-color:hsla(0,0%,100%,.25)}.mm-menu .mm-listview>li .mm-next:after,.mm-menu .mm-listview>li .mm-arrow:after{border-color:#fff}.mm-menu .mm-listview>li a:not(.mm-next){-webkit-tap-highlight-color:rgba(0,0,0,0);tap-highlight-color:rgba(0,0,0,0)}.mm-menu .mm-listview>li.mm-selected>a:not(.mm-next),.mm-menu .mm-listview>li.mm-selected>span{background:rgba(0,0,0,0)}.mm-menu.mm-vertical .mm-listview>li.mm-opened>a.mm-next,.mm-menu.mm-vertical .mm-listview>li.mm-opened>.mm-panel,.mm-menu .mm-listview>li.mm-opened.mm-vertical>a.mm-next,.mm-menu .mm-listview>li.mm-opened.mm-vertical>.mm-panel{background:rgba(0,0,0,0)}.mm-menu .mm-divider{background:rgba(0,0,0,0)}.mm-page{box-sizing:border-box;position:relative}.mm-slideout{transition:transform .4s ease;z-index:1}html.mm-opened{overflow-x:hidden;position:relative}html.mm-blocking{overflow:hidden}html.mm-blocking body{overflow:hidden}html.mm-background .mm-page{background:inherit}#mm-blocker{background:rgba(3,2,1,0);display:none;width:100%;height:100%;position:fixed;top:0;left:0;z-index:2}html.mm-blocking #mm-blocker{display:block}.mm-menu.mm-offcanvas{z-index:0;display:none;position:fixed}.mm-menu.mm-offcanvas.mm-current{display:block}.mm-menu{width:80%;min-width:140px;max-width:440px}html.mm-opening .mm-slideout{transform:translate3d(80%, 0, 0)}@media all and (max-width: 175px){html.mm-opening .mm-slideout{transform:translate3d(140px, 0, 0)}}@media all and (min-width: 550px){html.mm-opening .mm-slideout{transform:translate3d(440px, 0, 0)}}.mm-menu>.mm-navbar{background:inherit;padding:0;z-index:3;transform:translate3d(0, 0, 0)}.mm-navbar-bottom{border-top-width:1px;border-top-style:solid;border-bottom:none;top:auto;bottom:0}.mm-navbar-top~.mm-navbar-top{border-bottom:none}.mm-navbar-bottom~.mm-navbar-bottom{border-top:none}.mm-navbar.mm-hasbtns{padding:0 50px}.mm-navbar[class*=mm-navbar-content-]>*{box-sizing:border-box;display:block;float:left}.mm-navbar .mm-breadcrumbs{text-overflow:ellipsis;white-space:nowrap;overflow:hidden;-webkit-overflow-scrolling:touch;overflow-x:auto;text-align:left;padding:0 0 0 22px}.mm-navbar .mm-breadcrumbs>*{display:inline-block;padding:12.5px 3px}.mm-navbar .mm-breadcrumbs>a{-webkit-text-decoration:underline;text-decoration:underline}.mm-navbar.mm-hasbtns .mm-breadcrumbs{margin-left:-50px}.mm-navbar.mm-hasbtns .mm-btn:not(.mm-hidden)+.mm-breadcrumbs{margin-left:0;padding-left:0}.mm-navbar-top-1{top:0px}.mm-hasnavbar-top-1 .mm-panels{top:50px}.mm-navbar-top-2{top:50px}.mm-hasnavbar-top-2 .mm-panels{top:100px}.mm-navbar-top-3{top:100px}.mm-hasnavbar-top-3 .mm-panels{top:150px}.mm-navbar-top-4{top:150px}.mm-hasnavbar-top-4 .mm-panels{top:200px}.mm-navbar-bottom-1{bottom:0px}.mm-hasnavbar-bottom-1 .mm-panels{bottom:50px}.mm-navbar-bottom-2{bottom:50px}.mm-hasnavbar-bottom-2 .mm-panels{bottom:100px}.mm-navbar-bottom-3{bottom:100px}.mm-hasnavbar-bottom-3 .mm-panels{bottom:150px}.mm-navbar-bottom-4{bottom:150px}.mm-hasnavbar-bottom-4 .mm-panels{bottom:200px}.mm-navbar-size-2{height:100px}.mm-navbar-size-3{height:150px}.mm-navbar-size-4{height:200px}.mm-navbar-content-2>*{width:50%}.mm-navbar-content-3>*{width:33.33%}.mm-navbar-content-4>*{width:25%}.mm-navbar-content-5>*{width:20%}.mm-navbar-content-6>*{width:16.67%}.mm-menu>.mm-navbar-top,.mm-menu>.mm-navbar-bottom{margin-left:25px;padding-right:25px}.mm-menu>.mm-navbar-top{border-bottom:2px #fff solid}.mm-menu>.mm-navbar-top .top{padding:25px 0}.mm-menu>.mm-navbar-top .top .container{padding:0;min-width:0}.mm-menu>.mm-navbar-top .top input{background-image:url(../Assets/icon-search.svg);background-image:url(data:image/svg+xml;base64,PHN2ZwogICAgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIgogICAgd2lkdGg9IjE4IgogICAgaGVpZ2h0PSIxOCIKICAgIHZpZXdCb3g9IjAgMCAxOCAxOCIKICAgID4KICAgIDxwYXRoIGZpbGw9IiMzMzMzMzMiIGQ9Ik0xNy42LDE1LjRsLTQuMy00LjNjLTAuMSwwLTAuMS0wLjEtMC4yLTAuMWMwLjctMS4xLDEuMi0yLjQsMS4yLTMuOWMwLTMuOS0zLjItNy4xLTcuMS03LjFDMy4yLDAsMCwzLjIsMCw3LjFjMCwzLjksMy4yLDcuMSw3LjEsNy4xYzEuNCwwLDIuOC0wLjQsMy45LTEuMmMwLDAuMSwwLjEsMC4xLDAuMSwwLjJsNC4zLDQuM2MwLjMsMC4zLDAuNywwLjQsMS4xLDAuNGMwLjQsMCwwLjgtMC4xLDEuMS0wLjRDMTguMSwxNywxOC4xLDE2LDE3LjYsMTUuNCBNNy4xLDEyYy0yLjcsMC00LjktMi4yLTQuOS00LjljMC0yLjcsMi4yLTQuOSw0LjktNC45YzIuNywwLDQuOSwyLjIsNC45LDQuOUMxMiw5LjgsOS44LDEyLDcuMSwxMiIvPgo8L3N2Zz4=);background-size:18px 18px;background-position:10px center;background-repeat:no-repeat;padding-left:35px;line-height:40px;height:40px;color:#232323;border:0;outline:0;width:100%}.mm-menu>.mm-navbar-bottom{border:0}.mm-menu>.mm-navbar-bottom .bottom ul{display:table;width:100%}.mm-menu>.mm-navbar-bottom .bottom ul li{display:table-cell}.mm-menu a{outline:0}.mm-hasnavbar-top-2 .mm-panels{top:92px}.mm-navbar-size-2{height:92px}.mm-hasnavbar-bottom-3 .mm-panels{bottom:142px}.mm-panels>.mm-panel>.mm-listview.level-1{margin-bottom:-25px}.application-portal--mobile{padding-bottom:1rem;margin-left:12.5px}.application-portal--mobile .cta-button{height:36px;text-align:center;font-weight:bold;font-feature-settings:"smcp", "c2sc";font-variant:all-small-caps;letter-spacing:.25px;line-height:inherit}.mm-menu .meta{padding:0}.mm-menu .icon--small{width:1rem;height:1rem;position:relative;margin-right:.25rem}.mm-menu .meta-links{margin:0 0 0 0;padding:0;list-style:none;display:flex;flex-wrap:wrap;border-top:1px solid hsla(0,0%,100%,.25);border-bottom:1px solid hsla(0,0%,100%,.25);margin-right:-25px}.mm-menu .meta-links li{margin:0;padding:0;list-style:none}.mm-menu .meta-links li:before{display:none;content:none}.mm-menu .meta-links li{flex:0 0 50%;text-align:left}.mm-menu .meta-links li a{display:block;padding:.5rem 1rem}.mm-menu .meta-links li:nth-child(odd) a{padding-left:0}.mm-menu .meta-links li:nth-child(1),.mm-menu .meta-links li:nth-child(2){border-bottom:1px solid hsla(0,0%,100%,.25)}.mm-menu .meta-links li:nth-child(odd){border-right:1px solid hsla(0,0%,100%,.25)}.mm-panels>.mm-panel:not(.mm-hidden)>.level-1{display:flex;flex-direction:column;height:100%}.mm-panels>.mm-panel:not(.mm-hidden)>.level-1 li:nth-last-child(2){margin-bottom:-1px}.mm-panels>.mm-panel:not(.mm-hidden)>.level-1 .mt-auto{margin-top:auto}.mm-panels>.mm-panel:not(.mm-hidden)>.level-1 .mt-auto::after{display:none}.mm-panels>.mm-panel:not(.mm-hidden)>.level-1 .mt-auto::before{content:"";border-bottom:1px solid #666;display:block;position:absolute;left:25px;right:0;top:0}/*!
 * shariff - v1.24.0 - 29.06.2016
 * https://github.com/heiseonline/shariff
 * Copyright (c) 2016 Ines Pauer, Philipp Busse, Sebastian Hilbig, Erich Kramer, Deniz Sesli
 * Licensed under the MIT license
 */@font-face{font-family:FontAwesome;src:url(https://netdna.bootstrapcdn.com/font-awesome/4.3.0/fonts/fontawesome-webfont.eot?v=4.6.3);src:url(https://netdna.bootstrapcdn.com/font-awesome/4.3.0/fonts/fontawesome-webfont.eot?#iefix&v=4.6.3) format("embedded-opentype"),url(https://netdna.bootstrapcdn.com/font-awesome/4.3.0/fonts/fontawesome-webfont.woff2?v=4.6.3) format("woff2"),url(https://netdna.bootstrapcdn.com/font-awesome/4.3.0/fonts/fontawesome-webfont.woff?v=4.6.3) format("woff"),url(https://netdna.bootstrapcdn.com/font-awesome/4.3.0/fonts/fontawesome-webfont.ttf?v=4.6.3) format("truetype"),url(https://netdna.bootstrapcdn.com/font-awesome/4.3.0/fonts/fontawesome-webfont.svg?v=4.6.3#fontawesomeregular) format("svg");font-weight:400;font-style:normal}.fa{display:inline-block;font:normal normal normal 14px/1 FontAwesome;font-size:inherit;text-rendering:auto;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.fa-lg{font-size:1.33333333em;line-height:.75em;vertical-align:-15%}.fa-2x{font-size:2em}.fa-3x{font-size:3em}.fa-4x{font-size:4em}.fa-5x{font-size:5em}.fa-fw{width:1.28571429em;text-align:center}.fa-ul{padding-left:0;margin-left:2.14285714em;list-style-type:none}.fa-ul>li{position:relative}.fa-li{position:absolute;left:-2.14285714em;width:2.14285714em;top:.14285714em;text-align:center}.fa-li.fa-lg{left:-1.85714286em}.fa-border{padding:.2em .25em .15em;border:solid .08em #eee;border-radius:.1em}.fa-pull-left{float:left}.fa-pull-right{float:right}.fa.fa-pull-left{margin-right:.3em}.fa.fa-pull-right{margin-left:.3em}.pull-right{float:right}.pull-left{float:left}.fa.pull-left{margin-right:.3em}.fa.pull-right{margin-left:.3em}.fa-spin{animation:fa-spin 2s infinite linear}.fa-pulse{animation:fa-spin 1s infinite steps(8)}@keyframes fa-spin{0%{transform:rotate(0)}100%{transform:rotate(359deg)}}.fa-rotate-90{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";transform:rotate(90deg)}.fa-rotate-180{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";transform:rotate(180deg)}.fa-rotate-270{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";transform:rotate(270deg)}.fa-flip-horizontal{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";transform:scale(-1, 1)}.fa-flip-vertical{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";transform:scale(1, -1)}:root .fa-flip-horizontal,:root .fa-flip-vertical,:root .fa-rotate-180,:root .fa-rotate-270,:root .fa-rotate-90{filter:none}.fa-stack{position:relative;display:inline-block;width:2em;height:2em;line-height:2em;vertical-align:middle}.fa-stack-1x,.fa-stack-2x{position:absolute;left:0;width:100%;text-align:center}.fa-stack-1x{line-height:inherit}.fa-stack-2x{font-size:2em}.fa-inverse{color:#fff}.fa-glass:before{content:""}.fa-music:before{content:""}.fa-search:before{content:""}.fa-envelope-o:before{content:""}.fa-heart:before{content:""}.fa-star:before{content:""}.fa-star-o:before{content:""}.fa-user:before{content:""}.fa-film:before{content:""}.fa-th-large:before{content:""}.fa-th:before{content:""}.fa-th-list:before{content:""}.fa-check:before{content:""}.fa-close:before,.fa-remove:before,.fa-times:before{content:""}.fa-search-plus:before{content:""}.fa-search-minus:before{content:""}.fa-power-off:before{content:""}.fa-signal:before{content:""}.fa-cog:before,.fa-gear:before{content:""}.fa-trash-o:before{content:""}.fa-home:before{content:""}.fa-file-o:before{content:""}.fa-clock-o:before{content:""}.fa-road:before{content:""}.fa-download:before{content:""}.fa-arrow-circle-o-down:before{content:""}.fa-arrow-circle-o-up:before{content:""}.fa-inbox:before{content:""}.fa-play-circle-o:before{content:""}.fa-repeat:before,.fa-rotate-right:before{content:""}.fa-refresh:before{content:""}.fa-list-alt:before{content:""}.fa-lock:before{content:""}.fa-flag:before{content:""}.fa-headphones:before{content:""}.fa-volume-off:before{content:""}.fa-volume-down:before{content:""}.fa-volume-up:before{content:""}.fa-qrcode:before{content:""}.fa-barcode:before{content:""}.fa-tag:before{content:""}.fa-tags:before{content:""}.fa-book:before{content:""}.fa-bookmark:before{content:""}.fa-print:before{content:""}.fa-camera:before{content:""}.fa-font:before{content:""}.fa-bold:before{content:""}.fa-italic:before{content:""}.fa-text-height:before{content:""}.fa-text-width:before{content:""}.fa-align-left:before{content:""}.fa-align-center:before{content:""}.fa-align-right:before{content:""}.fa-align-justify:before{content:""}.fa-list:before{content:""}.fa-dedent:before,.fa-outdent:before{content:""}.fa-indent:before{content:""}.fa-video-camera:before{content:""}.fa-image:before,.fa-photo:before,.fa-picture-o:before{content:""}.fa-pencil:before{content:""}.fa-map-marker:before{content:""}.fa-adjust:before{content:""}.fa-tint:before{content:""}.fa-edit:before,.fa-pencil-square-o:before{content:""}.fa-share-square-o:before{content:""}.fa-check-square-o:before{content:""}.fa-arrows:before{content:""}.fa-step-backward:before{content:""}.fa-fast-backward:before{content:""}.fa-backward:before{content:""}.fa-play:before{content:""}.fa-pause:before{content:""}.fa-stop:before{content:""}.fa-forward:before{content:""}.fa-fast-forward:before{content:""}.fa-step-forward:before{content:""}.fa-eject:before{content:""}.fa-chevron-left:before{content:""}.fa-chevron-right:before{content:""}.fa-plus-circle:before{content:""}.fa-minus-circle:before{content:""}.fa-times-circle:before{content:""}.fa-check-circle:before{content:""}.fa-question-circle:before{content:""}.fa-info-circle:before{content:""}.fa-crosshairs:before{content:""}.fa-times-circle-o:before{content:""}.fa-check-circle-o:before{content:""}.fa-ban:before{content:""}.fa-arrow-left:before{content:""}.fa-arrow-right:before{content:""}.fa-arrow-up:before{content:""}.fa-arrow-down:before{content:""}.fa-mail-forward:before,.fa-share:before{content:""}.fa-expand:before{content:""}.fa-compress:before{content:""}.fa-plus:before{content:""}.fa-minus:before{content:""}.fa-asterisk:before{content:""}.fa-exclamation-circle:before{content:""}.fa-gift:before{content:""}.fa-leaf:before{content:""}.fa-fire:before{content:""}.fa-eye:before{content:""}.fa-eye-slash:before{content:""}.fa-exclamation-triangle:before,.fa-warning:before{content:""}.fa-plane:before{content:""}.fa-calendar:before{content:""}.fa-random:before{content:""}.fa-comment:before{content:""}.fa-magnet:before{content:""}.fa-chevron-up:before{content:""}.fa-chevron-down:before{content:""}.fa-retweet:before{content:""}.fa-shopping-cart:before{content:""}.fa-folder:before{content:""}.fa-folder-open:before{content:""}.fa-arrows-v:before{content:""}.fa-arrows-h:before{content:""}.fa-bar-chart-o:before,.fa-bar-chart:before{content:""}.fa-twitter-square:before{content:""}.fa-facebook-square:before{content:""}.fa-camera-retro:before{content:""}.fa-key:before{content:""}.fa-cogs:before,.fa-gears:before{content:""}.fa-comments:before{content:""}.fa-thumbs-o-up:before{content:""}.fa-thumbs-o-down:before{content:""}.fa-star-half:before{content:""}.fa-heart-o:before{content:""}.fa-sign-out:before{content:""}.fa-linkedin-square:before{content:""}.fa-thumb-tack:before{content:""}.fa-external-link:before{content:""}.fa-sign-in:before{content:""}.fa-trophy:before{content:""}.fa-github-square:before{content:""}.fa-upload:before{content:""}.fa-lemon-o:before{content:""}.fa-phone:before{content:""}.fa-square-o:before{content:""}.fa-bookmark-o:before{content:""}.fa-phone-square:before{content:""}.fa-twitter:before{content:""}.fa-facebook-f:before,.fa-facebook:before{content:""}.fa-github:before{content:""}.fa-unlock:before{content:""}.fa-credit-card:before{content:""}.fa-feed:before,.fa-rss:before{content:""}.fa-hdd-o:before{content:""}.fa-bullhorn:before{content:""}.fa-bell:before{content:""}.fa-certificate:before{content:""}.fa-hand-o-right:before{content:""}.fa-hand-o-left:before{content:""}.fa-hand-o-up:before{content:""}.fa-hand-o-down:before{content:""}.fa-arrow-circle-left:before{content:""}.fa-arrow-circle-right:before{content:""}.fa-arrow-circle-up:before{content:""}.fa-arrow-circle-down:before{content:""}.fa-globe:before{content:""}.fa-wrench:before{content:""}.fa-tasks:before{content:""}.fa-filter:before{content:""}.fa-briefcase:before{content:""}.fa-arrows-alt:before{content:""}.fa-group:before,.fa-users:before{content:""}.fa-chain:before,.fa-link:before{content:""}.fa-cloud:before{content:""}.fa-flask:before{content:""}.fa-cut:before,.fa-scissors:before{content:""}.fa-copy:before,.fa-files-o:before{content:""}.fa-paperclip:before{content:""}.fa-floppy-o:before,.fa-save:before{content:""}.fa-square:before{content:""}.fa-bars:before,.fa-navicon:before,.fa-reorder:before{content:""}.fa-list-ul:before{content:""}.fa-list-ol:before{content:""}.fa-strikethrough:before{content:""}.fa-underline:before{content:""}.fa-table:before{content:""}.fa-magic:before{content:""}.fa-truck:before{content:""}.fa-pinterest:before{content:""}.fa-pinterest-square:before{content:""}.fa-google-plus-square:before{content:""}.fa-google-plus:before{content:""}.fa-money:before{content:""}.fa-caret-down:before{content:""}.fa-caret-up:before{content:""}.fa-caret-left:before{content:""}.fa-caret-right:before{content:""}.fa-columns:before{content:""}.fa-sort:before,.fa-unsorted:before{content:""}.fa-sort-desc:before,.fa-sort-down:before{content:""}.fa-sort-asc:before,.fa-sort-up:before{content:""}.fa-envelope:before{content:""}.fa-linkedin:before{content:""}.fa-rotate-left:before,.fa-undo:before{content:""}.fa-gavel:before,.fa-legal:before{content:""}.fa-dashboard:before,.fa-tachometer:before{content:""}.fa-comment-o:before{content:""}.fa-comments-o:before{content:""}.fa-bolt:before,.fa-flash:before{content:""}.fa-sitemap:before{content:""}.fa-umbrella:before{content:""}.fa-clipboard:before,.fa-paste:before{content:""}.fa-lightbulb-o:before{content:""}.fa-exchange:before{content:""}.fa-cloud-download:before{content:""}.fa-cloud-upload:before{content:""}.fa-user-md:before{content:""}.fa-stethoscope:before{content:""}.fa-suitcase:before{content:""}.fa-bell-o:before{content:""}.fa-coffee:before{content:""}.fa-cutlery:before{content:""}.fa-file-text-o:before{content:""}.fa-building-o:before{content:""}.fa-hospital-o:before{content:""}.fa-ambulance:before{content:""}.fa-medkit:before{content:""}.fa-fighter-jet:before{content:""}.fa-beer:before{content:""}.fa-h-square:before{content:""}.fa-plus-square:before{content:""}.fa-angle-double-left:before{content:""}.fa-angle-double-right:before{content:""}.fa-angle-double-up:before{content:""}.fa-angle-double-down:before{content:""}.fa-angle-left:before{content:""}.fa-angle-right:before{content:""}.fa-angle-up:before{content:""}.fa-angle-down:before{content:""}.fa-desktop:before{content:""}.fa-laptop:before{content:""}.fa-tablet:before{content:""}.fa-mobile-phone:before,.fa-mobile:before{content:""}.fa-circle-o:before{content:""}.fa-quote-left:before{content:""}.fa-quote-right:before{content:""}.fa-spinner:before{content:""}.fa-circle:before{content:""}.fa-mail-reply:before,.fa-reply:before{content:""}.fa-github-alt:before{content:""}.fa-folder-o:before{content:""}.fa-folder-open-o:before{content:""}.fa-smile-o:before{content:""}.fa-frown-o:before{content:""}.fa-meh-o:before{content:""}.fa-gamepad:before{content:""}.fa-keyboard-o:before{content:""}.fa-flag-o:before{content:""}.fa-flag-checkered:before{content:""}.fa-terminal:before{content:""}.fa-code:before{content:""}.fa-mail-reply-all:before,.fa-reply-all:before{content:""}.fa-star-half-empty:before,.fa-star-half-full:before,.fa-star-half-o:before{content:""}.fa-location-arrow:before{content:""}.fa-crop:before{content:""}.fa-code-fork:before{content:""}.fa-chain-broken:before,.fa-unlink:before{content:""}.fa-question:before{content:""}.fa-info:before{content:""}.fa-exclamation:before{content:""}.fa-superscript:before{content:""}.fa-subscript:before{content:""}.fa-eraser:before{content:""}.fa-puzzle-piece:before{content:""}.fa-microphone:before{content:""}.fa-microphone-slash:before{content:""}.fa-shield:before{content:""}.fa-calendar-o:before{content:""}.fa-fire-extinguisher:before{content:""}.fa-rocket:before{content:""}.fa-maxcdn:before{content:""}.fa-chevron-circle-left:before{content:""}.fa-chevron-circle-right:before{content:""}.fa-chevron-circle-up:before{content:""}.fa-chevron-circle-down:before{content:""}.fa-html5:before{content:""}.fa-css3:before{content:""}.fa-anchor:before{content:""}.fa-unlock-alt:before{content:""}.fa-bullseye:before{content:""}.fa-ellipsis-h:before{content:""}.fa-ellipsis-v:before{content:""}.fa-rss-square:before{content:""}.fa-play-circle:before{content:""}.fa-ticket:before{content:""}.fa-minus-square:before{content:""}.fa-minus-square-o:before{content:""}.fa-level-up:before{content:""}.fa-level-down:before{content:""}.fa-check-square:before{content:""}.fa-pencil-square:before{content:""}.fa-external-link-square:before{content:""}.fa-share-square:before{content:""}.fa-compass:before{content:""}.fa-caret-square-o-down:before,.fa-toggle-down:before{content:""}.fa-caret-square-o-up:before,.fa-toggle-up:before{content:""}.fa-caret-square-o-right:before,.fa-toggle-right:before{content:""}.fa-eur:before,.fa-euro:before{content:""}.fa-gbp:before{content:""}.fa-dollar:before,.fa-usd:before{content:""}.fa-inr:before,.fa-rupee:before{content:""}.fa-cny:before,.fa-jpy:before,.fa-rmb:before,.fa-yen:before{content:""}.fa-rouble:before,.fa-rub:before,.fa-ruble:before{content:""}.fa-krw:before,.fa-won:before{content:""}.fa-bitcoin:before,.fa-btc:before{content:""}.fa-file:before{content:""}.fa-file-text:before{content:""}.fa-sort-alpha-asc:before{content:""}.fa-sort-alpha-desc:before{content:""}.fa-sort-amount-asc:before{content:""}.fa-sort-amount-desc:before{content:""}.fa-sort-numeric-asc:before{content:""}.fa-sort-numeric-desc:before{content:""}.fa-thumbs-up:before{content:""}.fa-thumbs-down:before{content:""}.fa-youtube-square:before{content:""}.fa-youtube:before{content:""}.fa-xing:before{content:""}.fa-xing-square:before{content:""}.fa-youtube-play:before{content:""}.fa-dropbox:before{content:""}.fa-stack-overflow:before{content:""}.fa-instagram:before{content:""}.fa-flickr:before{content:""}.fa-adn:before{content:""}.fa-bitbucket:before{content:""}.fa-bitbucket-square:before{content:""}.fa-tumblr:before{content:""}.fa-tumblr-square:before{content:""}.fa-long-arrow-down:before{content:""}.fa-long-arrow-up:before{content:""}.fa-long-arrow-left:before{content:""}.fa-long-arrow-right:before{content:""}.fa-apple:before{content:""}.fa-windows:before{content:""}.fa-android:before{content:""}.fa-linux:before{content:""}.fa-dribbble:before{content:""}.fa-skype:before{content:""}.fa-foursquare:before{content:""}.fa-trello:before{content:""}.fa-female:before{content:""}.fa-male:before{content:""}.fa-gittip:before,.fa-gratipay:before{content:""}.fa-sun-o:before{content:""}.fa-moon-o:before{content:""}.fa-archive:before{content:""}.fa-bug:before{content:""}.fa-vk:before{content:""}.fa-weibo:before{content:""}.fa-renren:before{content:""}.fa-pagelines:before{content:""}.fa-stack-exchange:before{content:""}.fa-arrow-circle-o-right:before{content:""}.fa-arrow-circle-o-left:before{content:""}.fa-caret-square-o-left:before,.fa-toggle-left:before{content:""}.fa-dot-circle-o:before{content:""}.fa-wheelchair:before{content:""}.fa-vimeo-square:before{content:""}.fa-try:before,.fa-turkish-lira:before{content:""}.fa-plus-square-o:before{content:""}.fa-space-shuttle:before{content:""}.fa-slack:before{content:""}.fa-envelope-square:before{content:""}.fa-wordpress:before{content:""}.fa-openid:before{content:""}.fa-bank:before,.fa-institution:before,.fa-university:before{content:""}.fa-graduation-cap:before,.fa-mortar-board:before{content:""}.fa-yahoo:before{content:""}.fa-google:before{content:""}.fa-reddit:before{content:""}.fa-reddit-square:before{content:""}.fa-stumbleupon-circle:before{content:""}.fa-stumbleupon:before{content:""}.fa-delicious:before{content:""}.fa-digg:before{content:""}.fa-pied-piper-pp:before{content:""}.fa-pied-piper-alt:before{content:""}.fa-drupal:before{content:""}.fa-joomla:before{content:""}.fa-language:before{content:""}.fa-fax:before{content:""}.fa-building:before{content:""}.fa-child:before{content:""}.fa-paw:before{content:""}.fa-spoon:before{content:""}.fa-cube:before{content:""}.fa-cubes:before{content:""}.fa-behance:before{content:""}.fa-behance-square:before{content:""}.fa-steam:before{content:""}.fa-steam-square:before{content:""}.fa-recycle:before{content:""}.fa-automobile:before,.fa-car:before{content:""}.fa-cab:before,.fa-taxi:before{content:""}.fa-tree:before{content:""}.fa-spotify:before{content:""}.fa-deviantart:before{content:""}.fa-soundcloud:before{content:""}.fa-database:before{content:""}.fa-file-pdf-o:before{content:""}.fa-file-word-o:before{content:""}.fa-file-excel-o:before{content:""}.fa-file-powerpoint-o:before{content:""}.fa-file-image-o:before,.fa-file-photo-o:before,.fa-file-picture-o:before{content:""}.fa-file-archive-o:before,.fa-file-zip-o:before{content:""}.fa-file-audio-o:before,.fa-file-sound-o:before{content:""}.fa-file-movie-o:before,.fa-file-video-o:before{content:""}.fa-file-code-o:before{content:""}.fa-vine:before{content:""}.fa-codepen:before{content:""}.fa-jsfiddle:before{content:""}.fa-life-bouy:before,.fa-life-buoy:before,.fa-life-ring:before,.fa-life-saver:before,.fa-support:before{content:""}.fa-circle-o-notch:before{content:""}.fa-ra:before,.fa-rebel:before,.fa-resistance:before{content:""}.fa-empire:before,.fa-ge:before{content:""}.fa-git-square:before{content:""}.fa-git:before{content:""}.fa-hacker-news:before,.fa-y-combinator-square:before,.fa-yc-square:before{content:""}.fa-tencent-weibo:before{content:""}.fa-qq:before{content:""}.fa-wechat:before,.fa-weixin:before{content:""}.fa-paper-plane:before,.fa-send:before{content:""}.fa-paper-plane-o:before,.fa-send-o:before{content:""}.fa-history:before{content:""}.fa-circle-thin:before{content:""}.fa-header:before{content:""}.fa-paragraph:before{content:""}.fa-sliders:before{content:""}.fa-share-alt:before{content:""}.fa-share-alt-square:before{content:""}.fa-bomb:before{content:""}.fa-futbol-o:before,.fa-soccer-ball-o:before{content:""}.fa-tty:before{content:""}.fa-binoculars:before{content:""}.fa-plug:before{content:""}.fa-slideshare:before{content:""}.fa-twitch:before{content:""}.fa-yelp:before{content:""}.fa-newspaper-o:before{content:""}.fa-wifi:before{content:""}.fa-calculator:before{content:""}.fa-paypal:before{content:""}.fa-google-wallet:before{content:""}.fa-cc-visa:before{content:""}.fa-cc-mastercard:before{content:""}.fa-cc-discover:before{content:""}.fa-cc-amex:before{content:""}.fa-cc-paypal:before{content:""}.fa-cc-stripe:before{content:""}.fa-bell-slash:before{content:""}.fa-bell-slash-o:before{content:""}.fa-trash:before{content:""}.fa-copyright:before{content:""}.fa-at:before{content:""}.fa-eyedropper:before{content:""}.fa-paint-brush:before{content:""}.fa-birthday-cake:before{content:""}.fa-area-chart:before{content:""}.fa-pie-chart:before{content:""}.fa-line-chart:before{content:""}.fa-lastfm:before{content:""}.fa-lastfm-square:before{content:""}.fa-toggle-off:before{content:""}.fa-toggle-on:before{content:""}.fa-bicycle:before{content:""}.fa-bus:before{content:""}.fa-ioxhost:before{content:""}.fa-angellist:before{content:""}.fa-cc:before{content:""}.fa-ils:before,.fa-shekel:before,.fa-sheqel:before{content:""}.fa-meanpath:before{content:""}.fa-buysellads:before{content:""}.fa-connectdevelop:before{content:""}.fa-dashcube:before{content:""}.fa-forumbee:before{content:""}.fa-leanpub:before{content:""}.fa-sellsy:before{content:""}.fa-shirtsinbulk:before{content:""}.fa-simplybuilt:before{content:""}.fa-skyatlas:before{content:""}.fa-cart-plus:before{content:""}.fa-cart-arrow-down:before{content:""}.fa-diamond:before{content:""}.fa-ship:before{content:""}.fa-user-secret:before{content:""}.fa-motorcycle:before{content:""}.fa-street-view:before{content:""}.fa-heartbeat:before{content:""}.fa-venus:before{content:""}.fa-mars:before{content:""}.fa-mercury:before{content:""}.fa-intersex:before,.fa-transgender:before{content:""}.fa-transgender-alt:before{content:""}.fa-venus-double:before{content:""}.fa-mars-double:before{content:""}.fa-venus-mars:before{content:""}.fa-mars-stroke:before{content:""}.fa-mars-stroke-v:before{content:""}.fa-mars-stroke-h:before{content:""}.fa-neuter:before{content:""}.fa-genderless:before{content:""}.fa-facebook-official:before{content:""}.fa-pinterest-p:before{content:""}.fa-whatsapp:before{content:""}.fa-server:before{content:""}.fa-user-plus:before{content:""}.fa-user-times:before{content:""}.fa-bed:before,.fa-hotel:before{content:""}.fa-viacoin:before{content:""}.fa-train:before{content:""}.fa-subway:before{content:""}.fa-medium:before{content:""}.fa-y-combinator:before,.fa-yc:before{content:""}.fa-optin-monster:before{content:""}.fa-opencart:before{content:""}.fa-expeditedssl:before{content:""}.fa-battery-4:before,.fa-battery-full:before{content:""}.fa-battery-3:before,.fa-battery-three-quarters:before{content:""}.fa-battery-2:before,.fa-battery-half:before{content:""}.fa-battery-1:before,.fa-battery-quarter:before{content:""}.fa-battery-0:before,.fa-battery-empty:before{content:""}.fa-mouse-pointer:before{content:""}.fa-i-cursor:before{content:""}.fa-object-group:before{content:""}.fa-object-ungroup:before{content:""}.fa-sticky-note:before{content:""}.fa-sticky-note-o:before{content:""}.fa-cc-jcb:before{content:""}.fa-cc-diners-club:before{content:""}.fa-clone:before{content:""}.fa-balance-scale:before{content:""}.fa-hourglass-o:before{content:""}.fa-hourglass-1:before,.fa-hourglass-start:before{content:""}.fa-hourglass-2:before,.fa-hourglass-half:before{content:""}.fa-hourglass-3:before,.fa-hourglass-end:before{content:""}.fa-hourglass:before{content:""}.fa-hand-grab-o:before,.fa-hand-rock-o:before{content:""}.fa-hand-paper-o:before,.fa-hand-stop-o:before{content:""}.fa-hand-scissors-o:before{content:""}.fa-hand-lizard-o:before{content:""}.fa-hand-spock-o:before{content:""}.fa-hand-pointer-o:before{content:""}.fa-hand-peace-o:before{content:""}.fa-trademark:before{content:""}.fa-registered:before{content:""}.fa-creative-commons:before{content:""}.fa-gg:before{content:""}.fa-gg-circle:before{content:""}.fa-tripadvisor:before{content:""}.fa-odnoklassniki:before{content:""}.fa-odnoklassniki-square:before{content:""}.fa-get-pocket:before{content:""}.fa-wikipedia-w:before{content:""}.fa-safari:before{content:""}.fa-chrome:before{content:""}.fa-firefox:before{content:""}.fa-opera:before{content:""}.fa-internet-explorer:before{content:""}.fa-television:before,.fa-tv:before{content:""}.fa-contao:before{content:""}.fa-500px:before{content:""}.fa-amazon:before{content:""}.fa-calendar-plus-o:before{content:""}.fa-calendar-minus-o:before{content:""}.fa-calendar-times-o:before{content:""}.fa-calendar-check-o:before{content:""}.fa-industry:before{content:""}.fa-map-pin:before{content:""}.fa-map-signs:before{content:""}.fa-map-o:before{content:""}.fa-map:before{content:""}.fa-commenting:before{content:""}.fa-commenting-o:before{content:""}.fa-houzz:before{content:""}.fa-vimeo:before{content:""}.fa-black-tie:before{content:""}.fa-fonticons:before{content:""}.fa-reddit-alien:before{content:""}.fa-edge:before{content:""}.fa-credit-card-alt:before{content:""}.fa-codiepie:before{content:""}.fa-modx:before{content:""}.fa-fort-awesome:before{content:""}.fa-usb:before{content:""}.fa-product-hunt:before{content:""}.fa-mixcloud:before{content:""}.fa-scribd:before{content:""}.fa-pause-circle:before{content:""}.fa-pause-circle-o:before{content:""}.fa-stop-circle:before{content:""}.fa-stop-circle-o:before{content:""}.fa-shopping-bag:before{content:""}.fa-shopping-basket:before{content:""}.fa-hashtag:before{content:""}.fa-bluetooth:before{content:""}.fa-bluetooth-b:before{content:""}.fa-percent:before{content:""}.fa-gitlab:before{content:""}.fa-wpbeginner:before{content:""}.fa-wpforms:before{content:""}.fa-envira:before{content:""}.fa-universal-access:before{content:""}.fa-wheelchair-alt:before{content:""}.fa-question-circle-o:before{content:""}.fa-blind:before{content:""}.fa-audio-description:before{content:""}.fa-volume-control-phone:before{content:""}.fa-braille:before{content:""}.fa-assistive-listening-systems:before{content:""}.fa-american-sign-language-interpreting:before,.fa-asl-interpreting:before{content:""}.fa-deaf:before,.fa-deafness:before,.fa-hard-of-hearing:before{content:""}.fa-glide:before{content:""}.fa-glide-g:before{content:""}.fa-sign-language:before,.fa-signing:before{content:""}.fa-low-vision:before{content:""}.fa-viadeo:before{content:""}.fa-viadeo-square:before{content:""}.fa-snapchat:before{content:""}.fa-snapchat-ghost:before{content:""}.fa-snapchat-square:before{content:""}.fa-pied-piper:before{content:""}.fa-first-order:before{content:""}.fa-yoast:before{content:""}.fa-themeisle:before{content:""}.fa-google-plus-circle:before,.fa-google-plus-official:before{content:""}.fa-fa:before,.fa-font-awesome:before{content:""}.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0, 0, 0, 0);border:0}.sr-only-focusable:active,.sr-only-focusable:focus{position:static;width:auto;height:auto;margin:0;overflow:visible;clip:auto}.shariff::after,.shariff::before{content:" ";display:table}.shariff::after{clear:both}.shariff ul{padding:0;margin:0;list-style:none}.shariff li{height:1.9444444444rem;box-sizing:border-box;overflow:hidden}.shariff li a{color:#fff;position:relative;display:block;height:1.9444444444rem;-webkit-text-decoration:none;text-decoration:none;box-sizing:border-box}.shariff li .share_count,.shariff li .share_text{font-size:.8rem;vertical-align:middle;line-height:1.9444444444rem}.shariff li .fa{width:1.9444444444rem;line-height:1.9444444444rem;text-align:center;vertical-align:middle}.shariff li .share_count{padding:0 8px;height:1.8333333333rem;position:absolute;top:1px;right:1px}.shariff .orientation-horizontal{display:-webkit-box}.shariff .orientation-horizontal li{-webkit-box-flex:1}.shariff .orientation-horizontal .info{-webkit-box-flex:0}.shariff .orientation-horizontal{display:flex;flex-wrap:wrap}.shariff .orientation-horizontal li{float:left;flex:none;width:1.9444444444rem;margin-right:3%;margin-bottom:.5555555556rem}.shariff .orientation-horizontal li:last-child{margin-right:0}.shariff .orientation-horizontal li .share_text{display:block;text-indent:-9999px;padding-left:.1666666667rem}.shariff .orientation-horizontal li .share_count{display:none}.shariff .theme-grey .shariff-button a{background-color:#b0b0b0}.shariff .theme-grey .shariff-button .share_count{background-color:#ccc;color:#333}.shariff .theme-white .shariff-button{border:1px solid #ddd}.shariff .theme-white .shariff-button a{background-color:#fff}.shariff .theme-white .shariff-button a:hover{background-color:#eee}.shariff .theme-white .shariff-button .share_count{background-color:#fff;color:#999}.shariff .orientation-vertical{min-width:6.1111111111rem}.shariff .orientation-vertical li{display:block;width:100%;margin:.2777777778rem 0}.shariff .orientation-vertical li .share_count{width:1.3333333333rem;text-align:right}@media only screen and (min-width: 543px){.shariff .orientation-horizontal li{margin-right:1.8%;min-width:4.4444444444rem;width:auto;flex:1 0 auto}.shariff .orientation-horizontal li .share_count{display:block}.shariff .orientation-horizontal.col-1 li,.shariff .orientation-horizontal.col-2 li{min-width:4.45rem}.shariff .orientation-horizontal.col-1 li .share_text,.shariff .orientation-horizontal.col-2 li .share_text{text-indent:0;display:inline}.shariff .orientation-horizontal.col-5 li,.shariff .orientation-horizontal.col-6 li{flex:none}}@media only screen and (min-width: 543px){.shariff .orientation-horizontal.col-3 li{min-width:4.45rem}.shariff .orientation-horizontal.col-3 li .share_text{text-indent:0;display:inline}}@media only screen and (min-width: 543px){.shariff .orientation-horizontal li{min-width:4.45rem}.shariff .orientation-horizontal li .share_text{text-indent:0;display:inline}.shariff .orientation-horizontal.col-5 li,.shariff .orientation-horizontal.col-6 li{flex:1 0 auto}}@media only screen and (min-width: 1200px){.shariff li{height:1.6666666667rem}.shariff li a{height:1.6666666667rem}.shariff li .fa{width:1.6666666667rem;line-height:1.6666666667rem}.shariff li .share_count,.shariff li .share_text{line-height:1.6666666667rem}.shariff li .share_count{height:1.5555555556rem}}.shariff .addthis a{background-color:#f8694d}.shariff .addthis a:hover{background-color:#f75b44}.shariff .addthis .fa-plus{font-size:.7777777778rem}.shariff .addthis .share_count{color:#f8694d;background-color:#f1b8b0}.shariff .theme-white .addthis a{color:#f8694d}@media only screen and (min-width: 543px){.shariff .addthis .fa-plus{font-size:.7777777778rem;position:relative;top:1px}}.shariff .diaspora a{background-color:#999}.shariff .diaspora a:hover{background-color:#b3b3b3}.shariff .diaspora .fa-times-circle{font-size:.9444444444rem}.shariff .theme-white .diaspora a{color:#999}@media only screen and (min-width: 543px){.shariff .diaspora .fa-times-circle{font-size:.8888888889rem}}.shariff .facebook a{background-color:#3b5998}.shariff .facebook a:hover{background-color:#4273c8}.shariff .facebook .fa-facebook{font-size:1.2222222222rem}.shariff .facebook .share_count{color:#183a75;background-color:#99adcf}.shariff .theme-white .facebook a{color:#3b5998}@media only screen and (min-width: 543px){.shariff .facebook .fa-facebook{font-size:1.0555555556rem}}.shariff .flattr a{background-color:#7ea352}.shariff .flattr a:hover{background-color:#f67c1a}.shariff .flattr a:hover .share_count{color:#d56308;background-color:#fab47c}.shariff .flattr .fa-money{font-size:1.2222222222rem}.shariff .flattr .share_count{color:#648141;background-color:#b0c893}.shariff .theme-white .flattr a{color:#f67c1a}@media only screen and (min-width: 543px){.shariff .flattr .fa-money{font-size:1.0555555556rem}}.shariff .googleplus a{background-color:#d34836}.shariff .googleplus a:hover{background-color:#f75b44}.shariff .googleplus .fa-google-plus{font-size:1.2222222222rem}.shariff .googleplus .share_count{color:#a31601;background-color:#eda79d}.shariff .theme-white .googleplus a{color:#d34836}@media only screen and (min-width: 543px){.shariff .googleplus .fa-google-plus{font-size:1.0555555556rem}}.shariff .info{border:1px solid #ccc}.shariff .info a{color:#666;background-color:#fff}.shariff .info a:hover{background-color:#efefef}.shariff .info .fa-info{font-size:1.1111111111rem;width:1.8333333333rem}.shariff .info .share_text{display:block !important;text-indent:-9999px !important}.shariff .theme-grey .info a{background-color:#fff}.shariff .theme-grey .info a:hover{background-color:#efefef}.shariff .orientation-vertical .info{width:1.9444444444rem;float:right}@media only screen and (min-width: 543px){.shariff .orientation-horizontal .info{flex:none !important;width:1.9444444444rem;min-width:1.9444444444rem !important}}@media only screen and (min-width: 1200px){.shariff .info .fa-info{font-size:.8888888889rem;width:1.2777777778rem}.shariff .orientation-horizontal .info{width:1.3888888889rem;min-width:1.3888888889rem !important}.shariff .orientation-vertical .info{width:1.3888888889rem}}.shariff .linkedin a{background-color:#0077b5}.shariff .linkedin a:hover{background-color:#0369a0}.shariff .linkedin .fa-linkedin{font-size:1.2222222222rem}.shariff .linkedin .share_count{color:#004785;background-color:#33aae8}.shariff .theme-white .linkedin a{color:#0077b5}@media only screen and (min-width: 543px){.shariff .linkedin .fa-linkedin{font-size:1.0555555556rem}}.shariff .mail a{background-color:#999}.shariff .mail a:hover{background-color:#a8a8a8}.shariff .mail .fa-envelope{font-size:1.1666666667rem}.shariff .theme-white .mail a{color:#999}@media only screen and (min-width: 543px){.shariff .mail .fa-envelope{font-size:1rem}}.shariff .pinterest a{background-color:#bd081c}.shariff .pinterest a:hover{background-color:#d50920}.shariff .pinterest .fa-pinterest-p{font-size:1.2222222222rem}.shariff .pinterest .share_count{color:#a31601;background-color:#eda79d}.shariff .theme-white .pinterest a{color:#bd081c}@media only screen and (min-width: 543px){.shariff .pinterest .fa-pinterest-p{font-size:1.0555555556rem;position:relative;top:1px}}.shariff .reddit a{background-color:#ff4500}.shariff .reddit a:hover{background-color:#ff6a33}.shariff .reddit .fa-reddit{font-size:.9444444444rem}.shariff .theme-white .reddit a{color:#ff4500}@media only screen and (min-width: 543px){.shariff .reddit .fa-reddit{font-size:.8888888889rem}}.shariff .stumbleupon a{background-color:#eb4924}.shariff .stumbleupon a:hover{background-color:#ef7053}.shariff .stumbleupon .fa-stumbleupon{font-size:.9444444444rem}.shariff .theme-white .stumbleupon a{color:#eb4924}@media only screen and (min-width: 543px){.shariff .stumbleupon .fa-stumbleupon{font-size:.8888888889rem}}.shariff .twitter a{background-color:#55acee}.shariff .twitter a:hover{background-color:#32bbf5}.shariff .twitter .fa-twitter{font-size:1.5555555556rem}.shariff .twitter .share_count{color:#0174a4;background-color:#96d4ee}.shariff .theme-white .twitter a{color:#55acee}@media only screen and (min-width: 543px){.shariff .twitter .fa-twitter{font-size:1.3333333333rem}}.shariff .whatsapp a{background-color:#5cbe4a}.shariff .whatsapp a:hover{background-color:#34af23}.shariff .whatsapp .fa-whatsapp{font-size:1.5555555556rem}.shariff .theme-white .whatsapp a{color:#5cbe4a}@media only screen and (min-width: 543px){.shariff .whatsapp .fa-whatsapp{font-size:1.2222222222rem}}.shariff .xing a{background-color:#126567}.shariff .xing a:hover{background-color:#29888a}.shariff .xing .fa-xing{font-size:1.2222222222rem}.shariff .xing .share_count{color:#15686a;background-color:#4fa5a7}.shariff .theme-white .xing a{color:#126567}@media only screen and (min-width: 543px){.shariff .xing .fa-xing{font-size:1.0555555556rem}}.shariff .tumblr a{background-color:#36465d}.shariff .tumblr a:hover{background-color:#44546b}.shariff .tumblr .fa-tumblr{font-size:1.5555555556rem}.shariff .theme-white .tumblr a{color:#5cbe4a}@media only screen and (min-width: 543px){.shariff .tumblr .fa-tumblr{font-size:1.2222222222rem}}.shariff .threema a{background-color:#333}.shariff .threema a:hover{background-color:#1f1f1f}.shariff .threema .fa-lock{font-size:1.5555555556rem}.shariff .theme-white .threema a{color:#333}@media only screen and (min-width: 543px){.shariff .threema .fa-lock{font-size:1.2222222222rem}}.shariff .weibo a{background-color:#f56770}.shariff .weibo a:hover{background-color:#fa7f8a}.shariff .weibo .fa-weibo{font-size:1.5555555556rem}.shariff .weibo .share_count{color:#0174a4;background-color:#f56770}.shariff .theme-white .weibo a{color:#f56770}@media only screen and (min-width: 543px){.shariff .weibo .fa-weibo{font-size:1.3333333333rem}}.shariff .tencent-weibo a{background-color:#26ace0}.shariff .tencent-weibo a:hover{background-color:#38bbeb}.shariff .tencent-weibo .fa-tencent-weibo{font-size:1.5555555556rem}.shariff .tencent-weibo .share_count{color:#0174a4;background-color:#26ace0}.shariff .theme-white .tencent-weibo a{color:#26ace0}@media only screen and (min-width: 543px){.shariff .tencent-weibo .fa-tencent-weibo{font-size:1.3333333333rem}}.shariff .qzone a{background-color:#2b82d9}.shariff .qzone a:hover{background-color:#398fe6}.shariff .qzone .fa-qq{font-size:1.5555555556rem}.shariff .qzone .share_count{color:#0174a4;background-color:#2b82d9}.shariff .theme-white .qzone a{color:#2b82d9}@media only screen and (min-width: 543px){.shariff .qzone .fa-qq{font-size:1.3333333333rem}}.shariff-container{margin-top:1rem}.ce-container .shariff ul:not(.reset-list-style):not(.pagination) li,.shariff ul:not(.reset-list-style):not(.pagination) li{padding:0;position:static}.ce-container .shariff ul:not(.reset-list-style):not(.pagination) li:before,.shariff ul:not(.reset-list-style):not(.pagination) li:before{display:none;visibility:hidden}.ce-container .shariff ul:not(.reset-list-style):not(.pagination) li a:before,.shariff ul:not(.reset-list-style):not(.pagination) li a:before{display:none;visibility:hidden}.ajax-file-upload-statusbar{width:auto !important;background:#fff;margin-bottom:1rem;padding:1rem}.ajax-file-upload-statusbar .btn-gold,.ajax-file-upload-statusbar .ff-form-overrides button,.ff-form-overrides .ajax-file-upload-statusbar button,.ajax-file-upload-statusbar .ff-form-overrides input[type=button],.ff-form-overrides .ajax-file-upload-statusbar input[type=button],.ajax-file-upload-statusbar .ff-form-overrides input[type=submit],.ff-form-overrides .ajax-file-upload-statusbar input[type=submit],.ajax-file-upload-statusbar .ff-form-overrides input[type=reset],.ff-form-overrides .ajax-file-upload-statusbar input[type=reset]{vertical-align:baseline;margin-right:.8rem}.ajax-file-upload-filename{width:auto;height:auto;margin:0 5px 5px 0px}.ajax-file-upload-filesize{width:50px;height:auto;margin:0 5px 5px 0px;display:inline-block;vertical-align:middle}.ajax-file-upload-progress{margin-right:.8rem;position:relative;width:70%;border:1px solid #919191;display:inline-block;color:#fff}.ajax-file-upload-bar{background-color:#4963f6;width:0;height:2rem;color:#fff}.ajax-file-upload-percent{position:absolute;display:inline-block;top:3px;left:48%}.ajax-upload-dragdrop{width:auto !important;text-align:left;vertical-align:middle;padding:1rem}.ajax-upload-dragdrop span{color:#919191}.state-hover{border:2px solid #eb2800}.ajax-file-upload-container{padding:1rem 1rem 0;overflow:auto}.ajax-file-upload-container:empty{padding:0}.fileuploader-container{background:#ebebeb}.leaflet-tile-pane{filter:grayscale(1)}.leaflet-touch .leaflet-bar{border:none !important}.leaflet-control-zoom,.leaflet-control-zoom-fullscreen{width:40px;height:40px;border:0 !important;box-shadow:rgba(0,0,0,.3) 0px 1px 4px -1px !important}.leaflet-control-zoom{height:80px}.leaflet-control-zoom::after{display:block;content:"";position:absolute;top:50%;left:5px;right:5px;height:1px;background:#e6e6e6}.leaflet-control-zoom-in,.leaflet-control-zoom-out,.leaflet-control-zoom-fullscreen{width:40px !important;height:40px !important;border:0 !important;background-color:#fff !important;color:rgba(0,0,0,0) !important;-webkit-user-select:none !important;-moz-user-select:none !important;user-select:none !important}.leaflet-control-zoom-in{border-radius:12.5% 12.5% 0 0 !important}.leaflet-control-zoom-out{border-radius:0 0 12.5% 0 !important}.leaflet-control-zoom-fullscreen{border-radius:12.5% 12.5% 12.5% 0 !important}.leaflet-control-attribution{color:#000 !important;font-size:10px !important;background-color:#f5f5f5 !important;opacity:.7}.leaflet-control-attribution a{color:inherit !important;border:0 !important;-webkit-text-decoration:none !important;text-decoration:none !important}.leaflet-control-zoom-in{background-image:url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20x%3D%220px%22%20y%3D%220px%22%20width%3D%2224px%22%20height%3D%2224px%22%20viewBox%3D%220%200%2024%2024%22%20stroke-width%3D%222%22%3E%3Cg%20stroke-width%3D%222%22%20transform%3D%22translate%280%2C%200%29%22%3E%3Cline%20fill%3D%22none%22%20stroke%3D%22%23666666%22%20stroke-width%3D%222%22%20stroke-linecap%3D%22square%22%20stroke-miterlimit%3D%2210%22%20x1%3D%2212%22%20y1%3D%222%22%20x2%3D%2212%22%20y2%3D%2222%22%20stroke-linejoin%3D%22miter%22%3E%3C%2Fline%3E%20%3Cline%20fill%3D%22none%22%20stroke%3D%22%23666666%22%20stroke-width%3D%222%22%20stroke-linecap%3D%22square%22%20stroke-miterlimit%3D%2210%22%20x1%3D%2222%22%20y1%3D%2212%22%20x2%3D%222%22%20y2%3D%2212%22%20stroke-linejoin%3D%22miter%22%3E%3C%2Fline%3E%3C%2Fg%3E%3C%2Fsvg%3E");background-position:center !important;background-size:18px 18px !important}.leaflet-control-zoom-out{background-image:url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20x%3D%220px%22%20y%3D%220px%22%20width%3D%2224px%22%20height%3D%2224px%22%20viewBox%3D%220%200%2024%2024%22%20stroke-width%3D%222%22%3E%3Cg%20stroke-width%3D%222%22%20transform%3D%22translate%280%2C%200%29%22%3E%3Cline%20fill%3D%22none%22%20stroke%3D%22%23666666%22%20stroke-width%3D%222%22%20stroke-linecap%3D%22square%22%20stroke-miterlimit%3D%2210%22%20x1%3D%2222%22%20y1%3D%2212%22%20x2%3D%222%22%20y2%3D%2212%22%20stroke-linejoin%3D%22miter%22%3E%3C%2Fline%3E%3C%2Fg%3E%3C%2Fsvg%3E");background-position:center !important;background-size:18px 18px !important}.leaflet-control-zoom-fullscreen{background-image:url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20viewBox%3D%220%200%2018%2018%22%3E%3Cpath%20fill%3D%22%23666%22%20d%3D%22M0%200v6h2V2h4V0H0zm16%200h-4v2h4v4h2V0h-2zm0%2016h-4v2h6v-6h-2v4zM2%2012H0v6h6v-2H2v-4z%22/%3E%3C/svg%3E");background-position:center !important;background-size:18px 18px}.leaflet-fullscreen-on .leaflet-control-zoom-fullscreen{background-image:url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20viewBox%3D%220%200%2018%2018%22%3E%3Cpath%20fill%3D%22%23666%22%20d%3D%22M4%204H0v2h6V0H4v4zm10%200V0h-2v6h6V4h-4zm-2%2014h2v-4h4v-2h-6v6zM0%2014h4v4h2v-6H0v2z%22/%3E%3C/svg%3E")}.leaflet-container a{color:#8e341f}.leaflet-container a::before{display:none !important}.leaflet-container{font-family:"Saans-Web",sans-serif;font-size:13px;border-radius:1.5rem}.leaflet-popup-content{margin:12px}.leaflet-popup-content p{margin:.5rem 0}.leaflet-popup-content-wrapper,.leaflet-popup-tip{box-shadow:rgba(0,0,0,.3) 0 1px 4px -1px !important}@media print{.container{width:auto}#global{padding-top:0 !important}h1::first-letter,.h1::first-letter,h2::first-letter,.h2::first-letter,h3::first-letter,.h3::first-letter,h4::first-letter,.h4::first-letter{margin-top:0 !important}.logo-print p{margin:1rem 0}.logo-print p img{height:5rem;width:auto}.btn-gold,.ff-form-overrides button,.ff-form-overrides input[type=button],.ff-form-overrides input[type=submit],.ff-form-overrides input[type=reset]{border:1px solid #4963f6}.ce-container ul{margin-left:1rem;list-style:square !important}.ce-container ul li{padding-left:0 !important}.ce-container ul li:before{content:none !important}.ce-container ul.reset-list-style{padding-left:0}.ce-container ul.reset-list-style li{list-style:disc !important}a.download{padding-left:0 !important;background:none !important}blockquote{border:0}.tile.row>*>*,.ff-form-overrides .schemable-form-section .tile[class*=_sectionedContent]>*>*{border:1px solid #ccc}[data-ctype=list][data-list-type=kluexperience_pi6] .testimonial-nav{display:none}[data-ctype=list][data-list-type=kluexperience_pi6] .slick-slider .slick-list .slick-track{width:100% !important;transform:none !important}[data-ctype=list][data-list-type=kluexperience_pi6] .slick-slider .slick-list .slick-track .slick-slide{width:100% !important;float:none !important;margin-bottom:.5rem}[data-ctype=list][data-list-type=kluexperience_pi6] .slick-slider .slick-list .slick-track .slick-slide:last-child{margin-bottom:0}[data-list-type=address_pi1] .row,[data-list-type=address_pi1] .ff-form-overrides .schemable-form-section [class*=_sectionedContent],.ff-form-overrides .schemable-form-section [data-list-type=address_pi1] [class*=_sectionedContent],[data-list-type=address_pi2] .row,[data-list-type=address_pi2] .ff-form-overrides .schemable-form-section [class*=_sectionedContent],.ff-form-overrides .schemable-form-section [data-list-type=address_pi2] [class*=_sectionedContent],[data-list-type=kluexperience_pi2]>div>div.row,.ff-form-overrides .schemable-form-section [data-list-type=kluexperience_pi2]>div>div[class*=_sectionedContent],[data-list-type=kluexperience_pi3]>div>div.detail-container>.row,.ff-form-overrides .schemable-form-section [data-list-type=kluexperience_pi3]>div>div.detail-container>[class*=_sectionedContent],[data-list-type=solr_pi_results]>div>div>.row,.ff-form-overrides .schemable-form-section [data-list-type=solr_pi_results]>div>div>[class*=_sectionedContent],[data-list-type=kluevents_pi1]>div>.row,.ff-form-overrides .schemable-form-section [data-list-type=kluevents_pi1]>div>[class*=_sectionedContent],[data-list-type=klunews_pi1]>div>.row,.ff-form-overrides .schemable-form-section [data-list-type=klunews_pi1]>div>[class*=_sectionedContent],.klu-research--detail-view>div>.row,.ff-form-overrides .schemable-form-section .klu-research--detail-view>div>[class*=_sectionedContent]{display:block !important}[data-list-type=address_pi1] .row [class*=col-],[data-list-type=address_pi1] .ff-form-overrides .schemable-form-section [class*=_sectionedContent] [class*=col-],.ff-form-overrides .schemable-form-section [data-list-type=address_pi1] [class*=_sectionedContent] [class*=col-],[data-list-type=address_pi2] .row [class*=col-],[data-list-type=address_pi2] .ff-form-overrides .schemable-form-section [class*=_sectionedContent] [class*=col-],.ff-form-overrides .schemable-form-section [data-list-type=address_pi2] [class*=_sectionedContent] [class*=col-],[data-list-type=kluexperience_pi2]>div>div.row [class*=col-],.ff-form-overrides .schemable-form-section [data-list-type=kluexperience_pi2]>div>div[class*=_sectionedContent] [class*=col-],[data-list-type=kluexperience_pi3]>div>div.detail-container>.row [class*=col-],.ff-form-overrides .schemable-form-section [data-list-type=kluexperience_pi3]>div>div.detail-container>[class*=_sectionedContent] [class*=col-],[data-list-type=solr_pi_results]>div>div>.row [class*=col-],.ff-form-overrides .schemable-form-section [data-list-type=solr_pi_results]>div>div>[class*=_sectionedContent] [class*=col-],[data-list-type=kluevents_pi1]>div>.row [class*=col-],.ff-form-overrides .schemable-form-section [data-list-type=kluevents_pi1]>div>[class*=_sectionedContent] [class*=col-],[data-list-type=klunews_pi1]>div>.row [class*=col-],.ff-form-overrides .schemable-form-section [data-list-type=klunews_pi1]>div>[class*=_sectionedContent] [class*=col-],.klu-research--detail-view>div>.row [class*=col-],.ff-form-overrides .schemable-form-section .klu-research--detail-view>div>[class*=_sectionedContent] [class*=col-]{width:100%;flex:0 0 100%;max-width:100%}.form-control,.ff-form-overrides input[type=color],.ff-form-overrides input[type=date],.ff-form-overrides input[type=datetime-local],.ff-form-overrides input[type=email],.ff-form-overrides input[type=file],.ff-form-overrides input[type=number],.ff-form-overrides input[type=password],.ff-form-overrides input[type=search],.ff-form-overrides input[type=tel],.ff-form-overrides input[type=text],.ff-form-overrides input[type=time],.ff-form-overrides input[type=url],.ff-form-overrides input[type=week],.ff-form-overrides .ff-react-dropdown__control{border:1px solid #919191 !important}#footer #map,#footer-map,#footer .landingpages,[data-ctype=social_sharing],[data-ctype=teaseriframe],.detail-option,.detail--options,.shariff-container{display:none !important}}

/*# sourceMappingURL=main.css.map*/