/* 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.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(fdb6975228a93d52f8ce.png);
	width: 36px;
	height: 36px;
	}
.leaflet-retina .leaflet-control-layers-toggle {
	background-image: url(2fbc9dc3c1ec8553226b.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(71c653c56856daca3b50.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;
	overflow: hidden;
	-moz-box-sizing: border-box;
	     box-sizing: border-box;

	background: #fff;
	background: rgba(255, 255, 255, 0.5);
	}
.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;
		}
	}

.tippy-box[data-animation=fade][data-state=hidden]{opacity:0}[data-tippy-root]{max-width:calc(100vw - 10px)}.tippy-box{position:relative;background-color:#333;color:#fff;border-radius:4px;font-size:14px;line-height:1.4;white-space:normal;outline:0;transition-property:transform,visibility,opacity}.tippy-box[data-placement^=top]>.tippy-arrow{bottom:0}.tippy-box[data-placement^=top]>.tippy-arrow:before{bottom:-7px;left:0;border-width:8px 8px 0;border-top-color:initial;transform-origin:center top}.tippy-box[data-placement^=bottom]>.tippy-arrow{top:0}.tippy-box[data-placement^=bottom]>.tippy-arrow:before{top:-7px;left:0;border-width:0 8px 8px;border-bottom-color:initial;transform-origin:center bottom}.tippy-box[data-placement^=left]>.tippy-arrow{right:0}.tippy-box[data-placement^=left]>.tippy-arrow:before{border-width:8px 0 8px 8px;border-left-color:initial;right:-7px;transform-origin:center left}.tippy-box[data-placement^=right]>.tippy-arrow{left:0}.tippy-box[data-placement^=right]>.tippy-arrow:before{left:-7px;border-width:8px 8px 8px 0;border-right-color:initial;transform-origin:center right}.tippy-box[data-inertia][data-state=visible]{transition-timing-function:cubic-bezier(.54,1.5,.38,1.11)}.tippy-arrow{width:16px;height:16px;color:#333}.tippy-arrow:before{content:"";position:absolute;border-color:transparent;border-style:solid}.tippy-content{position:relative;padding:5px 9px;z-index:1}
/* Magnific Popup CSS */
.mfp-bg {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1042;
  overflow: hidden;
  position: fixed;
  background: #0b0b0b;
  opacity: 0.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: -moz-zoom-out;
  cursor: -webkit-zoom-out;
  cursor: zoom-out; }

.mfp-zoom {
  cursor: pointer;
  cursor: -webkit-zoom-in;
  cursor: -moz-zoom-in;
  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: transparent;
  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;
  text-decoration: none;
  text-align: center;
  opacity: 0.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: 0.65;
  margin: 0;
  top: 50%;
  margin-top: -55px;
  padding: 0;
  width: 90px;
  height: 110px;
  -webkit-tap-highlight-color: transparent; }
  .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 transparent; }
  .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: 0.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, 0.6);
    background: #000; }

/* Main image in popup */
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; }

/* The shadow behind the image */
.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, 0.6);
    background: #444; }
  .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) {
  /**
       * Remove all paddings around the image on small screen
       */
  .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 {
    display: inline;
    margin-left: 5px; }
  .mfp-img-mobile .mfp-bottom-bar {
    background: rgba(0, 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, 0.6);
    position: fixed;
    text-align: center;
    padding: 0; } }

@media all and (max-width: 900px) {
  .mfp-arrow {
    -webkit-transform: scale(0.75);
    transform: scale(0.75); }
  .mfp-arrow-left {
    -webkit-transform-origin: 0;
    transform-origin: 0; }
  .mfp-arrow-right {
    -webkit-transform-origin: 100%;
    transform-origin: 100%; }
  .mfp-container {
    padding-left: 6px;
    padding-right: 6px; } }

.mejs__offscreen{border:0;clip:rect(1px,1px,1px,1px);-webkit-clip-path:inset(50%);clip-path:inset(50%);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px;word-wrap:normal}.mejs__container{background:#000;font-family:Helvetica,Arial,serif;position:relative;text-align:left;text-indent:0;vertical-align:top}.mejs__container,.mejs__container *{box-sizing:border-box}.mejs__container video::-webkit-media-controls,.mejs__container video::-webkit-media-controls-panel,.mejs__container video::-webkit-media-controls-panel-container,.mejs__container video::-webkit-media-controls-start-playback-button{-webkit-appearance:none;display:none!important}.mejs__fill-container,.mejs__fill-container .mejs__container{height:100%;width:100%}.mejs__fill-container{background:transparent;margin:0 auto;overflow:hidden;position:relative}.mejs__container:focus{outline-offset:.125rem;outline-width:.125rem}.mejs__iframe-overlay{height:100%;position:absolute;width:100%}.mejs__embed,.mejs__embed body{background:#000;height:100%;margin:0;overflow:hidden;padding:0;width:100%}.mejs__fullscreen{overflow:hidden!important}.mejs__container-fullscreen{bottom:0;left:0;overflow:hidden;position:fixed;right:0;top:0;z-index:1000}.mejs__background,.mejs__mediaelement{left:0;position:absolute;top:0}.mejs__mediaelement{height:100%;width:100%;z-index:0}.mejs__poster{background-position:50% 50%;background-repeat:no-repeat;background-size:cover;left:0;position:absolute;top:0;z-index:1}:root .mejs__poster-img{display:none}.mejs__poster-img{border:0;padding:0}.mejs__overlay{-webkit-box-align:center;-webkit-align-items:center;-ms-flex-align:center;align-items:center;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center;left:0;position:absolute;top:0}.mejs__layer{z-index:1}.mejs__overlay-play{cursor:pointer}.mejs__overlay-button{background:transparent;border:0}.mejs__overlay:hover .mejs__overlay-button svg{opacity:1}.mejs__overlay-button svg{opacity:.75}.mejs__overlay-button:focus svg{opacity:1}.mejs__overlay-button,.mejs__overlay-button svg,.mejs__overlay-loading,.mejs__overlay-loading svg{height:5rem;width:5rem}.mejs__overlay-loading-bg-img{-webkit-animation:a 1s linear infinite;animation:a 1s linear infinite;display:block;height:5rem;width:5rem;z-index:1}@-webkit-keyframes a{to{-webkit-transform:rotate(1turn);transform:rotate(1turn)}}@keyframes a{to{-webkit-transform:rotate(1turn);transform:rotate(1turn)}}.mejs__controls{bottom:0;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;height:2.5rem;left:0;list-style-type:none;margin:0;padding:0 .625rem;position:absolute;width:100%;z-index:3}.mejs__controls:not([style*="display: none"]){background:rgba(255,0,0,.7);background:-webkit-linear-gradient(transparent,rgba(0,0,0,.35));background:linear-gradient(transparent,rgba(0,0,0,.35))}.mejs__button,.mejs__time,.mejs__time-rail{font-size:.625rem;height:2.5rem;line-height:.625rem;margin:0;width:2rem}.mejs__button>button{background-color:transparent;border:0;color:#fff;cursor:pointer;display:block;font-size:0;height:1.125rem;line-height:0;margin:.625rem .375rem;overflow:hidden;padding:0;position:absolute;text-decoration:none;width:1.125rem}.mejs__button svg{fill:currentColor;height:1.125rem;width:1.125rem}.mejs__button>button:focus{outline:.125rem dotted #fff}.mejs__container-keyboard-inactive [role=slider],.mejs__container-keyboard-inactive [role=slider]:focus,.mejs__container-keyboard-inactive a,.mejs__container-keyboard-inactive a:focus,.mejs__container-keyboard-inactive button,.mejs__container-keyboard-inactive button:focus{outline:0}.mejs__playpause-button svg{display:none}.mejs__pause svg.mejs__icon-pause,.mejs__play svg.mejs__icon-play,.mejs__replay svg.mejs__icon-replay{display:block}.mejs__fullscreen-button svg.mejs__icon-unfullscreen{display:none}.mejs__fullscreen svg.mejs__icon-fullscreen{display:block}.mejs__fullscreen svg.mejs__icon-unfullscreen{display:none}.mejs__unfullscreen svg.mejs__icon-unfullscreen{display:block}.mejs__unfullscreen svg.mejs__icon-fullscreen{display:none}.mejs__time{box-sizing:content-box;color:#fff;font-size:.6875rem;font-weight:700;height:1.5rem;overflow:hidden;padding:1rem .375rem 0;text-align:center;width:auto}.mejs__time-rail{direction:ltr;-webkit-box-flex:1;-webkit-flex-grow:1;-ms-flex-positive:1;flex-grow:1;height:2.5rem;margin:0 .625rem;padding-top:.625rem;position:relative}.mejs__time-buffering,.mejs__time-current,.mejs__time-float,.mejs__time-float-corner,.mejs__time-float-current,.mejs__time-hovered,.mejs__time-loaded,.mejs__time-marker,.mejs__time-total{border-radius:.125rem;cursor:pointer;display:block;height:.625rem;position:absolute}.mejs__time-total{background:hsla(0,0%,100%,.3);margin:.3125rem 0 0;width:100%}.mejs__time-buffering{-webkit-animation:b 2s linear infinite;animation:b 2s linear infinite;background:-webkit-linear-gradient(135deg,hsla(0,0%,100%,.4) 25%,transparent 0,transparent 50%,hsla(0,0%,100%,.4) 0,hsla(0,0%,100%,.4) 75%,transparent 0,transparent);background:linear-gradient(-45deg,hsla(0,0%,100%,.4) 25%,transparent 0,transparent 50%,hsla(0,0%,100%,.4) 0,hsla(0,0%,100%,.4) 75%,transparent 0,transparent);background-size:.9375rem .9375rem;width:100%}@-webkit-keyframes b{0%{background-position:0 0}to{background-position:1.875rem 0}}@keyframes b{0%{background-position:0 0}to{background-position:1.875rem 0}}.mejs__time-loaded{background:hsla(0,0%,100%,.3)}.mejs__time-current,.mejs__time-handle-content{background:hsla(0,0%,100%,.9)}.mejs__time-hovered{background:hsla(0,0%,100%,.5);z-index:10}.mejs__time-hovered.negative{background:rgba(0,0,0,.2)}.mejs__time-buffering,.mejs__time-current,.mejs__time-hovered,.mejs__time-loaded{left:0;-webkit-transform:scaleX(0);-ms-transform:scaleX(0);transform:scaleX(0);-webkit-transform-origin:0 0;-ms-transform-origin:0 0;transform-origin:0 0;-webkit-transition:all .15s ease-in;transition:all .15s ease-in;width:100%}.mejs__time-buffering{-webkit-transform:scaleX(1);-ms-transform:scaleX(1);transform:scaleX(1)}.mejs__time-hovered{-webkit-transition:height .1s cubic-bezier(.44,0,1,1);transition:height .1s cubic-bezier(.44,0,1,1)}.mejs__time-hovered.no-hover{-webkit-transform:scaleX(0)!important;-ms-transform:scaleX(0)!important;transform:scaleX(0)!important}.mejs__time-handle,.mejs__time-handle-content{border:.25rem solid transparent;cursor:pointer;left:0;position:absolute;-webkit-transform:translateX(0);-ms-transform:translateX(0);transform:translateX(0);z-index:11}.mejs__time-handle-content{border:.25rem solid hsla(0,0%,100%,.9);border-radius:50%;height:.625rem;left:-.4375rem;top:-.25rem;-webkit-transform:scale(0);-ms-transform:scale(0);transform:scale(0);width:.625rem}.mejs__time-rail .mejs__time-handle-content:active,.mejs__time-rail .mejs__time-handle-content:focus,.mejs__time-rail:hover .mejs__time-handle-content{-webkit-transform:scale(1);-ms-transform:scale(1);transform:scale(1)}.mejs__time-float{background:#eee;border:1px solid #333;bottom:100%;color:#111;display:none;height:1.0625rem;margin-bottom:.5625rem;position:absolute;text-align:center;-webkit-transform:translateX(-50%);-ms-transform:translateX(-50%);transform:translateX(-50%);width:2.25rem}.mejs__time-float-current{display:block;left:0;margin:.125rem;text-align:center;width:1.875rem}.mejs__time-float-corner{border:.3125rem solid #eee;border-color:#eee transparent transparent;border-radius:0;display:block;height:0;left:50%;line-height:0;position:absolute;top:100%;-webkit-transform:translateX(-50%);-ms-transform:translateX(-50%);transform:translateX(-50%);width:0}.mejs__long-video .mejs__time-float{margin-left:-1.4375rem;width:4rem}.mejs__long-video .mejs__time-float-current{width:3.75rem}.mejs__broadcast{color:#fff;height:.625rem;position:absolute;top:.9375rem;width:100%}.mejs__volume-button{position:relative}.mejs__volume-button>.mejs__volume-slider{-webkit-backface-visibility:hidden;background:rgba(50,50,50,.7);border-radius:0;bottom:100%;display:none;height:7.1875rem;left:50%;margin:0;position:absolute;-webkit-transform:translateX(-50%);-ms-transform:translateX(-50%);transform:translateX(-50%);width:1.5625rem;z-index:1}.mejs__volume-button:hover{border-radius:0 0 .25rem .25rem}.mejs__volume-total{background:hsla(0,0%,100%,.5);border:.06rem solid #fff;height:6.25rem;left:50%;margin:0;position:absolute;top:.5rem;-webkit-transform:translateX(-50%);-ms-transform:translateX(-50%);transform:translateX(-50%);width:.125rem}.mejs__volume-current{left:0;margin:0;width:100%}.mejs__volume-current,.mejs__volume-handle{background:hsla(0,0%,100%,.9);position:absolute}.mejs__volume-handle{border:1px solid #fff;border-radius:1px;cursor:ns-resize;height:.375rem;left:50%;-webkit-transform:translateX(-50%);-ms-transform:translateX(-50%);transform:translateX(-50%);width:1rem}.mejs__horizontal-volume-slider{display:block;height:2.25rem;position:relative;vertical-align:middle;width:3.5rem}.mejs__horizontal-volume-total{background:rgba(50,50,50,.8);border:.06rem solid #fff;border-radius:.125rem;font-size:1px;height:.5rem;left:0;margin:0;padding:0;position:absolute;top:1rem;width:3.125rem}.mejs__horizontal-volume-current{background:hsla(0,0%,100%,.8);border-radius:.125rem;border-right:.06rem solid #fff;font-size:1px;height:100%;left:0;margin:0;padding:0;position:absolute;top:0;width:100%}.mejs__horizontal-volume-handle{display:none}.mejs__mute svg,.mejs__unmute svg{stroke:currentColor}.mejs__volume-button svg{display:none}.mejs__mute .mejs__icon-mute,.mejs__unmute .mejs__icon-unmute{display:block}.mejs__captions-button,.mejs__chapters-button{position:relative}.mejs__captions-button svg,.mejs__chapters-button svg{padding-top:.125rem}.mejs__captions-button>.mejs__captions-selector,.mejs__chapters-button>.mejs__chapters-selector{background:rgba(50,50,50,.7);border:1px solid transparent;border-radius:0;bottom:100%;margin-right:-2.6875rem;overflow:hidden;padding:0;position:absolute;right:50%;visibility:visible;width:5.375rem}.mejs__chapters-button>.mejs__chapters-selector{margin-right:-3.4375rem;width:6.875rem}.mejs__captions-selector-list,.mejs__chapters-selector-list{list-style-type:none!important;margin:0;overflow:hidden;padding:0}.mejs__captions-selector-list-item,.mejs__chapters-selector-list-item{color:#fff;cursor:pointer;display:block;list-style-type:none!important;margin:0 0 .375rem;overflow:hidden;padding:0}.mejs__captions-selector-list-item:hover,.mejs__chapters-selector-list-item:hover{background-color:#c8c8c8!important;background-color:hsla(0,0%,100%,.4)!important}.mejs__captions-selector-input,.mejs__chapters-selector-input{clear:both;float:left;left:-62.5rem;margin:.1875rem .1875rem 0 .3125rem;position:absolute}.mejs__captions-selector-label,.mejs__chapters-selector-label{cursor:pointer;float:left;font-size:.625rem;line-height:.9375rem;padding:.25rem .625rem 0;width:100%}.mejs__captions-selector-list-item:hover .mejs__captions-selector-label,.mejs__chapters-selector-list-item:hover .mejs__chapters-selector-label{text-decoration:underline}.mejs__captions-selected,.mejs__chapters-selected{color:#21f8f8;font-weight:700}.mejs__captions-translations{font-size:.625rem;margin:0 0 .3125rem}.mejs__captions-layer{bottom:0;color:#fff;font-size:1rem;left:0;line-height:1.25rem;position:absolute;text-align:center}.mejs__captions-layer a{color:#fff;text-decoration:underline}.mejs__captions-layer[lang=ar]{font-size:1.25rem;font-weight:400}.mejs__captions-position{bottom:.9375rem;left:0;position:absolute;width:100%}.mejs__captions-position-hover{bottom:2.1875rem}.mejs__captions-text,.mejs__captions-text *{background:hsla(0,0%,8%,.5);box-shadow:.3125rem 0 0 hsla(0,0%,8%,.5),-.3125rem 0 0 hsla(0,0%,8%,.5);padding:0;white-space:pre-wrap}.mejs__container.mejs__hide-cues video::-webkit-media-text-track-container{display:none}.mejs__overlay-error{position:relative}.mejs__overlay-error>img{left:0;max-width:100%;position:absolute;top:0;z-index:-1}.mejs__cannotplay,.mejs__cannotplay a{color:#fff;font-size:.8em}.mejs__cannotplay{position:relative}.mejs__cannotplay a,.mejs__cannotplay p{display:inline-block;padding:0 .9375rem;width:100%}
.daterangepicker {
  position: absolute;
  color: inherit;
  background-color: #fff;
  border-radius: 4px;
  border: 1px solid #ddd;
  width: 278px;
  max-width: none;
  padding: 0;
  margin-top: 7px;
  top: 100px;
  left: 20px;
  z-index: 3001;
  display: none;
  font-family: arial;
  font-size: 15px;
  line-height: 1em;
}

.daterangepicker:before, .daterangepicker:after {
  position: absolute;
  display: inline-block;
  border-bottom-color: rgba(0, 0, 0, 0.2);
  content: '';
}

.daterangepicker:before {
  top: -7px;
  border-right: 7px solid transparent;
  border-left: 7px solid transparent;
  border-bottom: 7px solid #ccc;
}

.daterangepicker:after {
  top: -6px;
  border-right: 6px solid transparent;
  border-bottom: 6px solid #fff;
  border-left: 6px solid transparent;
}

.daterangepicker.opensleft:before {
  right: 9px;
}

.daterangepicker.opensleft:after {
  right: 10px;
}

.daterangepicker.openscenter:before {
  left: 0;
  right: 0;
  width: 0;
  margin-left: auto;
  margin-right: auto;
}

.daterangepicker.openscenter:after {
  left: 0;
  right: 0;
  width: 0;
  margin-left: auto;
  margin-right: auto;
}

.daterangepicker.opensright:before {
  left: 9px;
}

.daterangepicker.opensright:after {
  left: 10px;
}

.daterangepicker.drop-up {
  margin-top: -7px;
}

.daterangepicker.drop-up:before {
  top: initial;
  bottom: -7px;
  border-bottom: initial;
  border-top: 7px solid #ccc;
}

.daterangepicker.drop-up:after {
  top: initial;
  bottom: -6px;
  border-bottom: initial;
  border-top: 6px solid #fff;
}

.daterangepicker.single .daterangepicker .ranges, .daterangepicker.single .drp-calendar {
  float: none;
}

.daterangepicker.single .drp-selected {
  display: none;
}

.daterangepicker.show-calendar .drp-calendar {
  display: block;
}

.daterangepicker.show-calendar .drp-buttons {
  display: block;
}

.daterangepicker.auto-apply .drp-buttons {
  display: none;
}

.daterangepicker .drp-calendar {
  display: none;
  max-width: 270px;
}

.daterangepicker .drp-calendar.left {
  padding: 8px 0 8px 8px;
}

.daterangepicker .drp-calendar.right {
  padding: 8px;
}

.daterangepicker .drp-calendar.single .calendar-table {
  border: none;
}

.daterangepicker .calendar-table .next span, .daterangepicker .calendar-table .prev span {
  color: #fff;
  border: solid black;
  border-width: 0 2px 2px 0;
  border-radius: 0;
  display: inline-block;
  padding: 3px;
}

.daterangepicker .calendar-table .next span {
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
}

.daterangepicker .calendar-table .prev span {
  transform: rotate(135deg);
  -webkit-transform: rotate(135deg);
}

.daterangepicker .calendar-table th, .daterangepicker .calendar-table td {
  white-space: nowrap;
  text-align: center;
  vertical-align: middle;
  min-width: 32px;
  width: 32px;
  height: 24px;
  line-height: 24px;
  font-size: 12px;
  border-radius: 4px;
  border: 1px solid transparent;
  white-space: nowrap;
  cursor: pointer;
}

.daterangepicker .calendar-table {
  border: 1px solid #fff;
  border-radius: 4px;
  background-color: #fff;
}

.daterangepicker .calendar-table table {
  width: 100%;
  margin: 0;
  border-spacing: 0;
  border-collapse: collapse;
}

.daterangepicker td.available:hover, .daterangepicker th.available:hover {
  background-color: #eee;
  border-color: transparent;
  color: inherit;
}

.daterangepicker td.week, .daterangepicker th.week {
  font-size: 80%;
  color: #ccc;
}

.daterangepicker td.off, .daterangepicker td.off.in-range, .daterangepicker td.off.start-date, .daterangepicker td.off.end-date {
  background-color: #fff;
  border-color: transparent;
  color: #999;
}

.daterangepicker td.in-range {
  background-color: #ebf4f8;
  border-color: transparent;
  color: #000;
  border-radius: 0;
}

.daterangepicker td.start-date {
  border-radius: 4px 0 0 4px;
}

.daterangepicker td.end-date {
  border-radius: 0 4px 4px 0;
}

.daterangepicker td.start-date.end-date {
  border-radius: 4px;
}

.daterangepicker td.active, .daterangepicker td.active:hover {
  background-color: #357ebd;
  border-color: transparent;
  color: #fff;
}

.daterangepicker th.month {
  width: auto;
}

.daterangepicker td.disabled, .daterangepicker option.disabled {
  color: #999;
  cursor: not-allowed;
  text-decoration: line-through;
}

.daterangepicker select.monthselect, .daterangepicker select.yearselect {
  font-size: 12px;
  padding: 1px;
  height: auto;
  margin: 0;
  cursor: default;
}

.daterangepicker select.monthselect {
  margin-right: 2%;
  width: 56%;
}

.daterangepicker select.yearselect {
  width: 40%;
}

.daterangepicker select.hourselect, .daterangepicker select.minuteselect, .daterangepicker select.secondselect, .daterangepicker select.ampmselect {
  width: 50px;
  margin: 0 auto;
  background: #eee;
  border: 1px solid #eee;
  padding: 2px;
  outline: 0;
  font-size: 12px;
}

.daterangepicker .calendar-time {
  text-align: center;
  margin: 4px auto 0 auto;
  line-height: 30px;
  position: relative;
}

.daterangepicker .calendar-time select.disabled {
  color: #ccc;
  cursor: not-allowed;
}

.daterangepicker .drp-buttons {
  clear: both;
  text-align: right;
  padding: 8px;
  border-top: 1px solid #ddd;
  display: none;
  line-height: 12px;
  vertical-align: middle;
}

.daterangepicker .drp-selected {
  display: inline-block;
  font-size: 12px;
  padding-right: 8px;
}

.daterangepicker .drp-buttons .btn {
  margin-left: 8px;
  font-size: 12px;
  font-weight: bold;
  padding: 4px 8px;
}

.daterangepicker.show-ranges .drp-calendar.left {
  border-left: 1px solid #ddd;
}

.daterangepicker .ranges {
  float: none;
  text-align: left;
  margin: 0;
}

.daterangepicker.show-calendar .ranges {
  margin-top: 8px;
}

.daterangepicker .ranges ul {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  width: 100%;
}

.daterangepicker .ranges li {
  font-size: 12px;
  padding: 8px 12px;
  cursor: pointer;
}

.daterangepicker .ranges li:hover {
  background-color: #eee;
}

.daterangepicker .ranges li.active {
  background-color: #08c;
  color: #fff;
}

/*  Larger Screen Styling */
@media (min-width: 564px) {
  .daterangepicker {
    width: auto; }
    .daterangepicker .ranges ul {
      width: 140px; }
    .daterangepicker.single .ranges ul {
      width: 100%; }
    .daterangepicker.single .drp-calendar.left {
      clear: none; }
    .daterangepicker.single.ltr .ranges, .daterangepicker.single.ltr .drp-calendar {
      float: left; }
    .daterangepicker.single.rtl .ranges, .daterangepicker.single.rtl .drp-calendar {
      float: right; }
    .daterangepicker.ltr {
      direction: ltr;
      text-align: left; }
      .daterangepicker.ltr .drp-calendar.left {
        clear: left;
        margin-right: 0; }
        .daterangepicker.ltr .drp-calendar.left .calendar-table {
          border-right: none;
          border-top-right-radius: 0;
          border-bottom-right-radius: 0; }
      .daterangepicker.ltr .drp-calendar.right {
        margin-left: 0; }
        .daterangepicker.ltr .drp-calendar.right .calendar-table {
          border-left: none;
          border-top-left-radius: 0;
          border-bottom-left-radius: 0; }
      .daterangepicker.ltr .drp-calendar.left .calendar-table {
        padding-right: 8px; }
      .daterangepicker.ltr .ranges, .daterangepicker.ltr .drp-calendar {
        float: left; }
    .daterangepicker.rtl {
      direction: rtl;
      text-align: right; }
      .daterangepicker.rtl .drp-calendar.left {
        clear: right;
        margin-left: 0; }
        .daterangepicker.rtl .drp-calendar.left .calendar-table {
          border-left: none;
          border-top-left-radius: 0;
          border-bottom-left-radius: 0; }
      .daterangepicker.rtl .drp-calendar.right {
        margin-right: 0; }
        .daterangepicker.rtl .drp-calendar.right .calendar-table {
          border-right: none;
          border-top-right-radius: 0;
          border-bottom-right-radius: 0; }
      .daterangepicker.rtl .drp-calendar.left .calendar-table {
        padding-left: 12px; }
      .daterangepicker.rtl .ranges, .daterangepicker.rtl .drp-calendar {
        text-align: right;
        float: right; } }
@media (min-width: 730px) {
  .daterangepicker .ranges {
    width: auto; }
  .daterangepicker.ltr .ranges {
    float: left; }
  .daterangepicker.rtl .ranges {
    float: right; }
  .daterangepicker .drp-calendar.left {
    clear: none !important; } }

@font-face{font-family:"Source Sans Pro";src:url(64e1362e183cd77cad7b.woff2) format("woff2");font-weight:normal;font-style:normal}@font-face{font-family:"Source Sans Pro";src:url(9b8a3a0917ed8c842988.woff2) format("woff2");font-weight:bold;font-style:normal}@font-face{font-family:"Source Sans Pro";src:url(2b3e6155bc40bbf8d72a.woff2) format("woff2");font-weight:200;font-style:normal}@font-face{font-family:"Source Sans Pro";src:url(4111ae3ce7aa4723101a.woff2) format("woff2");font-weight:600;font-style:normal}.svg-icon{fill:currentColor;line-height:1;background:transparent;vertical-align:baseline;margin-top:2px;overflow:hidden}.landingpage-icon{width:545px;max-width:120px}html[data-theme="light"]{--color-daadblue: #0060af;--color-daadblue-rgb: 0, 96, 175;--color-daadblue-lightergrey: #0060af;--color-daadblue-anthracite: #0060af;--color-darkblue: #00325f;--color-darkblue-white: #00325f;--color-bluegreen: #32556f;--color-red: #dd3700;--color-blue-gray: #143957;--color-daadgray: #5a7489;--color-lightgrey: #e2e2e2;--color-grey: #767676;--color-grey-border-white: #767676;--color-grey-border-anthracite: #767676;--color-anthracite: #333;--color-anthracite-contain: #333;--color-white: #fff;--color-white-lightergrey: #fff;--color-black: #000;--color-daadblue-background: #0060af;--color-daadblue-background-white: #0060af;--color-darkblue-background: #00325f;--color-darkblue-background-80: rgba(0,50,95,0.8);--color-lightgrey-background: #e2e2e2;--color-lightgrey-background-contain: #e2e2e2;--color-white-background: #fff;--color-white-darkmode-gray-background: #fff;--color-white-background-85: rgba(255,255,255,0.85);--color-black-background-85: rgba(0,0,0,0.85);--color-daadblue-border: #0060af;--color-lightblue: #eaf4fb;--color-infoblue: #1E96D2}html[data-theme="dark"]{--color-daadblue: #fff;--color-daadblue-rgb: 255, 255, 255;--color-daadblue-lightergrey: #cdcdcd;--color-daadblue-anthracite: #333;--color-darkblue: #00325f;--color-darkblue-white: #fff;--color-bluegreen: #32556f;--color-red: #ff6e3d;--color-blue-gray: #143957;--color-daadgray: #5a7489;--color-lightgrey: #4c4b4b;--color-grey: #767676;--color-grey-border-white: #fff;--color-grey-border-anthracite: #333;--color-anthracite: #fff;--color-anthracite-contain: #333;--color-white: #333;--color-white-lightergrey: #cdcdcd;--color-black: #fff;--color-daadblue-background: #0060af;--color-daadblue-background-white: #fff;--color-darkblue-background: #4c4b4b;--color-darkblue-background-80: rgba(0,0,0,0.8);--color-lightgrey-background: #4c4b4b;--color-lightgrey-background-contain: #e2e2e2;--color-white-background: #333;--color-white-darkmode-gray-background: #4c4b4b;--color-white-background-85: rgba(51,51,51,0.85);--color-black-background-85: rgba(255,255,255,0.85);--color-daadblue-border: #0060af;--color-lightblue: #1E96D2}@keyframes moveUpDown{0%{margin-top:0}50%{margin-top:-9px}100%{margin-top:0}}/*! bulma.io v0.9.4 | MIT License | github.com/jgthms/bulma */.button,.input,.textarea,.select select,.file-cta,.file-name,.pagination-previous,.pagination-next,.pagination-link,.pagination-ellipsis{-moz-appearance:none;-webkit-appearance:none;align-items:center;border:1px solid transparent;border-radius:4px;box-shadow:none;display:inline-flex;font-size:1rem;height:2.5em;justify-content:flex-start;line-height:1.5;padding-bottom:calc(0.5em - 1px);padding-left:calc(0.75em - 1px);padding-right:calc(0.75em - 1px);padding-top:calc(0.5em - 1px);position:relative;vertical-align:top}.button:focus,.input:focus,.textarea:focus,.select select:focus,.file-cta:focus,.file-name:focus,.pagination-previous:focus,.pagination-next:focus,.pagination-link:focus,.pagination-ellipsis:focus,.is-focused.button,.is-focused.input,.is-focused.textarea,.select select.is-focused,.is-focused.file-cta,.is-focused.file-name,.is-focused.pagination-previous,.is-focused.pagination-next,.is-focused.pagination-link,.is-focused.pagination-ellipsis,.button:active,.input:active,.textarea:active,.select select:active,.file-cta:active,.file-name:active,.pagination-previous:active,.pagination-next:active,.pagination-link:active,.pagination-ellipsis:active,.is-active.button,.is-active.input,.is-active.textarea,.select select.is-active,.is-active.file-cta,.is-active.file-name,.is-active.pagination-previous,.is-active.pagination-next,.is-active.pagination-link,.is-active.pagination-ellipsis{outline:none}.button[disabled],.input[disabled],.textarea[disabled],.select select[disabled],.file-cta[disabled],.file-name[disabled],.pagination-previous[disabled],.pagination-next[disabled],.pagination-link[disabled],.pagination-ellipsis[disabled],fieldset[disabled] .button,fieldset[disabled] .input,fieldset[disabled] .textarea,fieldset[disabled] .select select,.select fieldset[disabled] select,fieldset[disabled] .file-cta,fieldset[disabled] .file-name,fieldset[disabled] .pagination-previous,fieldset[disabled] .pagination-next,fieldset[disabled] .pagination-link,fieldset[disabled] .pagination-ellipsis{cursor:not-allowed}.button,.file,.breadcrumb,.pagination-previous,.pagination-next,.pagination-link,.pagination-ellipsis,.tabs,.is-unselectable{-webkit-touch-callout:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.select:not(.is-multiple):not(.is-loading)::after,.navbar-link:not(.is-arrowless)::after{border:3px solid rgba(0,0,0,0);border-radius:2px;border-right:0;border-top:0;content:" ";display:block;height:0.625em;margin-top:-0.4375em;pointer-events:none;position:absolute;top:50%;transform:rotate(-45deg);transform-origin:center;width:0.625em}.box:not(:last-child),.content:not(:last-child),.notification:not(:last-child),.progress:not(:last-child),.table:not(:last-child),.table-container:not(:last-child),.title:not(:last-child),.subtitle:not(:last-child),.block:not(:last-child),.breadcrumb:not(:last-child),.level:not(:last-child),.message:not(:last-child),.pagination:not(:last-child),.tabs:not(:last-child){margin-bottom:1.5rem}.delete,.modal-close{-webkit-touch-callout:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;-moz-appearance:none;-webkit-appearance:none;background-color:rgba(0,0,0,0.2);border:none;border-radius:9999px;cursor:pointer;pointer-events:auto;display:inline-block;flex-grow:0;flex-shrink:0;font-size:0;height:20px;max-height:20px;max-width:20px;min-height:20px;min-width:20px;outline:none;position:relative;vertical-align:top;width:20px}.delete::before,.modal-close::before,.delete::after,.modal-close::after{background-color:#fff;content:"";display:block;left:50%;position:absolute;top:50%;transform:translateX(-50%) translateY(-50%) rotate(45deg);transform-origin:center center}.delete::before,.modal-close::before{height:2px;width:50%}.delete::after,.modal-close::after{height:50%;width:2px}.delete:hover,.modal-close:hover,.delete:focus,.modal-close:focus{background-color:rgba(0,0,0,0.3)}.delete:active,.modal-close:active{background-color:rgba(0,0,0,0.4)}.is-small.delete,.is-small.modal-close{height:16px;max-height:16px;max-width:16px;min-height:16px;min-width:16px;width:16px}.is-medium.delete,.is-medium.modal-close{height:24px;max-height:24px;max-width:24px;min-height:24px;min-width:24px;width:24px}.is-large.delete,.is-large.modal-close{height:32px;max-height:32px;max-width:32px;min-height:32px;min-width:32px;width:32px}.button.is-loading::after,.loader,.select.is-loading::after,.control.is-loading::after{animation:spinAround 500ms infinite linear;border:2px solid #dbdbdb;border-radius:9999px;border-right-color:transparent;border-top-color:transparent;content:"";display:block;height:1em;position:relative;width:1em}.image.is-square img,.image.is-square .has-ratio,.image.is-1by1 img,.image.is-1by1 .has-ratio,.image.is-5by4 img,.image.is-5by4 .has-ratio,.image.is-4by3 img,.image.is-4by3 .has-ratio,.image.is-3by2 img,.image.is-3by2 .has-ratio,.image.is-5by3 img,.image.is-5by3 .has-ratio,.image.is-16by9 img,.image.is-16by9 .has-ratio,.image.is-2by1 img,.image.is-2by1 .has-ratio,.image.is-3by1 img,.image.is-3by1 .has-ratio,.image.is-4by5 img,.image.is-4by5 .has-ratio,.image.is-3by4 img,.image.is-3by4 .has-ratio,.image.is-2by3 img,.image.is-2by3 .has-ratio,.image.is-3by5 img,.image.is-3by5 .has-ratio,.image.is-9by16 img,.image.is-9by16 .has-ratio,.image.is-1by2 img,.image.is-1by2 .has-ratio,.image.is-1by3 img,.image.is-1by3 .has-ratio,.modal,.modal-background,.is-overlay,.hero-video{bottom:0;left:0;position:absolute;right:0;top:0}.navbar-burger{-moz-appearance:none;-webkit-appearance:none;appearance:none;background:none;border:none;color:currentColor;font-family:inherit;font-size:1em;margin:0;padding:0}/*! minireset.css v0.0.6 | MIT License | github.com/jgthms/minireset.css */html,body,p,ol,ul,li,dl,dt,dd,blockquote,figure,fieldset,legend,textarea,pre,iframe,hr,h1,h2,h3,h4,h5,h6{margin:0;padding:0}h1,h2,h3,h4,h5,h6{font-size:100%;font-weight:normal}ul{list-style:none}button,input,select,textarea{margin:0}html{box-sizing:border-box}*,*::before,*::after{box-sizing:inherit}img,video{height:auto;max-width:100%}iframe{border:0}table{border-collapse:collapse;border-spacing:0}td,th{padding:0}td:not([align]),th:not([align]){text-align:inherit}html{background-color:var(--color-white-background);font-size:16px;-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;min-width:300px;overflow-x:hidden;overflow-y:scroll;text-rendering:optimizeLegibility;text-size-adjust:100%}article,aside,figure,footer,header,hgroup,section{display:block}body,button,input,optgroup,select,textarea{font-family:"Source Sans Pro",sans-serif}code,pre{-moz-osx-font-smoothing:auto;-webkit-font-smoothing:auto;font-family:monospace}body{color:var(--color-anthracite);font-size:1em;font-weight:400;line-height:1.5}a{color:#0060af;cursor:pointer;text-decoration:none}a strong{color:currentColor}a:hover{color:#363636}code{background-color:#f5f5f5;color:#912400;font-size:.875em;font-weight:normal;padding:0.25em 0.5em 0.25em}hr{background-color:#f5f5f5;border:none;display:block;height:2px;margin:1.5rem 0}img{height:auto;max-width:100%}input[type="checkbox"],input[type="radio"]{vertical-align:baseline}small{font-size:.875em}span{font-style:inherit;font-weight:inherit}strong{color:#363636;font-weight:700}fieldset{border:none}pre{-webkit-overflow-scrolling:touch;background-color:#f5f5f5;color:#4a4a4a;font-size:.875em;overflow-x:auto;padding:1.25rem 1.5rem;white-space:pre;word-wrap:normal}pre code{background-color:transparent;color:currentColor;font-size:1em;padding:0}table td,table th{vertical-align:top}table td:not([align]),table th:not([align]){text-align:inherit}table th{color:#363636}@keyframes spinAround{from{transform:rotate(0deg)}to{transform:rotate(359deg)}}.box{background-color:#fff;border-radius:6px;box-shadow:0 0.5em 1em -0.125em rgba(0,0,0,0.1),0 0px 0 1px rgba(0,0,0,0.02);color:#4a4a4a;display:block;padding:1.25rem}a.box:hover,a.box:focus{box-shadow:0 0.5em 1em -0.125em rgba(0,0,0,0.1),0 0 0 1px #0060af}a.box:active{box-shadow:inset 0 1px 2px rgba(0,0,0,0.2),0 0 0 1px #0060af}.button{background-color:#fff;border-color:#dbdbdb;border-width:1px;color:#363636;cursor:pointer;justify-content:center;padding-bottom:calc(0.5em - 1px);padding-left:1em;padding-right:1em;padding-top:calc(0.5em - 1px);text-align:center;white-space:nowrap}.button strong{color:inherit}.button .icon,.button .icon.is-small,.button .icon.is-medium,.button .icon.is-large{height:1.5em;width:1.5em}.button .icon:first-child:not(:last-child){margin-left:calc(-0.5em - 1px);margin-right:.25em}.button .icon:last-child:not(:first-child){margin-left:.25em;margin-right:calc(-0.5em - 1px)}.button .icon:first-child:last-child{margin-left:calc(-0.5em - 1px);margin-right:calc(-0.5em - 1px)}.button:hover,.button.is-hovered{border-color:#b5b5b5;color:#363636}.button:focus,.button.is-focused{border-color:#485fc7;color:#363636}.button:focus:not(:active),.button.is-focused:not(:active){box-shadow:0 0 0 0.125em rgba(0,96,175,0.25)}.button:active,.button.is-active{border-color:#4a4a4a;color:#363636}.button.is-text{background-color:transparent;border-color:transparent;color:#4a4a4a;text-decoration:underline}.button.is-text:hover,.button.is-text.is-hovered,.button.is-text:focus,.button.is-text.is-focused{background-color:#f5f5f5;color:#363636}.button.is-text:active,.button.is-text.is-active{background-color:#e8e8e8;color:#363636}.button.is-text[disabled],fieldset[disabled] .button.is-text{background-color:transparent;border-color:transparent;box-shadow:none}.button.is-ghost{background:none;border-color:rgba(0,0,0,0);color:#0060af;text-decoration:none}.button.is-ghost:hover,.button.is-ghost.is-hovered{color:#0060af;text-decoration:underline}.button.is-white{background-color:#fff;border-color:transparent;color:#000}.button.is-white:hover,.button.is-white.is-hovered{background-color:#f9f9f9;border-color:transparent;color:#000}.button.is-white:focus,.button.is-white.is-focused{border-color:transparent;color:#000}.button.is-white:focus:not(:active),.button.is-white.is-focused:not(:active){box-shadow:0 0 0 0.125em rgba(255,255,255,0.25)}.button.is-white:active,.button.is-white.is-active{background-color:#f2f2f2;border-color:transparent;color:#000}.button.is-white[disabled],fieldset[disabled] .button.is-white{background-color:#fff;border-color:#fff;box-shadow:none}.button.is-white.is-inverted{background-color:#000;color:#fff}.button.is-white.is-inverted:hover,.button.is-white.is-inverted.is-hovered{background-color:#000}.button.is-white.is-inverted[disabled],fieldset[disabled] .button.is-white.is-inverted{background-color:#000;border-color:transparent;box-shadow:none;color:#fff}.button.is-white.is-loading::after{border-color:transparent transparent #000 #000 !important}.button.is-white.is-outlined{background-color:transparent;border-color:#fff;color:#fff}.button.is-white.is-outlined:hover,.button.is-white.is-outlined.is-hovered,.button.is-white.is-outlined:focus,.button.is-white.is-outlined.is-focused{background-color:#fff;border-color:#fff;color:#000}.button.is-white.is-outlined.is-loading::after{border-color:transparent transparent #fff #fff !important}.button.is-white.is-outlined.is-loading:hover::after,.button.is-white.is-outlined.is-loading.is-hovered::after,.button.is-white.is-outlined.is-loading:focus::after,.button.is-white.is-outlined.is-loading.is-focused::after{border-color:transparent transparent #000 #000 !important}.button.is-white.is-outlined[disabled],fieldset[disabled] .button.is-white.is-outlined{background-color:transparent;border-color:#fff;box-shadow:none;color:#fff}.button.is-white.is-inverted.is-outlined{background-color:transparent;border-color:#000;color:#000}.button.is-white.is-inverted.is-outlined:hover,.button.is-white.is-inverted.is-outlined.is-hovered,.button.is-white.is-inverted.is-outlined:focus,.button.is-white.is-inverted.is-outlined.is-focused{background-color:#000;color:#fff}.button.is-white.is-inverted.is-outlined.is-loading:hover::after,.button.is-white.is-inverted.is-outlined.is-loading.is-hovered::after,.button.is-white.is-inverted.is-outlined.is-loading:focus::after,.button.is-white.is-inverted.is-outlined.is-loading.is-focused::after{border-color:transparent transparent #fff #fff !important}.button.is-white.is-inverted.is-outlined[disabled],fieldset[disabled] .button.is-white.is-inverted.is-outlined{background-color:transparent;border-color:#000;box-shadow:none;color:#000}.button.is-black{background-color:#000;border-color:transparent;color:#fff}.button.is-black:hover,.button.is-black.is-hovered{background-color:#000;border-color:transparent;color:#fff}.button.is-black:focus,.button.is-black.is-focused{border-color:transparent;color:#fff}.button.is-black:focus:not(:active),.button.is-black.is-focused:not(:active){box-shadow:0 0 0 0.125em rgba(0,0,0,0.25)}.button.is-black:active,.button.is-black.is-active{background-color:#000;border-color:transparent;color:#fff}.button.is-black[disabled],fieldset[disabled] .button.is-black{background-color:#000;border-color:#000;box-shadow:none}.button.is-black.is-inverted{background-color:#fff;color:#000}.button.is-black.is-inverted:hover,.button.is-black.is-inverted.is-hovered{background-color:#f2f2f2}.button.is-black.is-inverted[disabled],fieldset[disabled] .button.is-black.is-inverted{background-color:#fff;border-color:transparent;box-shadow:none;color:#000}.button.is-black.is-loading::after{border-color:transparent transparent #fff #fff !important}.button.is-black.is-outlined{background-color:transparent;border-color:#000;color:#000}.button.is-black.is-outlined:hover,.button.is-black.is-outlined.is-hovered,.button.is-black.is-outlined:focus,.button.is-black.is-outlined.is-focused{background-color:#000;border-color:#000;color:#fff}.button.is-black.is-outlined.is-loading::after{border-color:transparent transparent #000 #000 !important}.button.is-black.is-outlined.is-loading:hover::after,.button.is-black.is-outlined.is-loading.is-hovered::after,.button.is-black.is-outlined.is-loading:focus::after,.button.is-black.is-outlined.is-loading.is-focused::after{border-color:transparent transparent #fff #fff !important}.button.is-black.is-outlined[disabled],fieldset[disabled] .button.is-black.is-outlined{background-color:transparent;border-color:#000;box-shadow:none;color:#000}.button.is-black.is-inverted.is-outlined{background-color:transparent;border-color:#fff;color:#fff}.button.is-black.is-inverted.is-outlined:hover,.button.is-black.is-inverted.is-outlined.is-hovered,.button.is-black.is-inverted.is-outlined:focus,.button.is-black.is-inverted.is-outlined.is-focused{background-color:#fff;color:#000}.button.is-black.is-inverted.is-outlined.is-loading:hover::after,.button.is-black.is-inverted.is-outlined.is-loading.is-hovered::after,.button.is-black.is-inverted.is-outlined.is-loading:focus::after,.button.is-black.is-inverted.is-outlined.is-loading.is-focused::after{border-color:transparent transparent #000 #000 !important}.button.is-black.is-inverted.is-outlined[disabled],fieldset[disabled] .button.is-black.is-inverted.is-outlined{background-color:transparent;border-color:#fff;box-shadow:none;color:#fff}.button.is-light{background-color:#f5f5f5;border-color:transparent;color:rgba(0,0,0,0.7)}.button.is-light:hover,.button.is-light.is-hovered{background-color:#eee;border-color:transparent;color:rgba(0,0,0,0.7)}.button.is-light:focus,.button.is-light.is-focused{border-color:transparent;color:rgba(0,0,0,0.7)}.button.is-light:focus:not(:active),.button.is-light.is-focused:not(:active){box-shadow:0 0 0 0.125em rgba(245,245,245,0.25)}.button.is-light:active,.button.is-light.is-active{background-color:#e8e8e8;border-color:transparent;color:rgba(0,0,0,0.7)}.button.is-light[disabled],fieldset[disabled] .button.is-light{background-color:#f5f5f5;border-color:#f5f5f5;box-shadow:none}.button.is-light.is-inverted{background-color:rgba(0,0,0,0.7);color:#f5f5f5}.button.is-light.is-inverted:hover,.button.is-light.is-inverted.is-hovered{background-color:rgba(0,0,0,0.7)}.button.is-light.is-inverted[disabled],fieldset[disabled] .button.is-light.is-inverted{background-color:rgba(0,0,0,0.7);border-color:transparent;box-shadow:none;color:#f5f5f5}.button.is-light.is-loading::after{border-color:transparent transparent rgba(0,0,0,0.7) rgba(0,0,0,0.7) !important}.button.is-light.is-outlined{background-color:transparent;border-color:#f5f5f5;color:#f5f5f5}.button.is-light.is-outlined:hover,.button.is-light.is-outlined.is-hovered,.button.is-light.is-outlined:focus,.button.is-light.is-outlined.is-focused{background-color:#f5f5f5;border-color:#f5f5f5;color:rgba(0,0,0,0.7)}.button.is-light.is-outlined.is-loading::after{border-color:transparent transparent #f5f5f5 #f5f5f5 !important}.button.is-light.is-outlined.is-loading:hover::after,.button.is-light.is-outlined.is-loading.is-hovered::after,.button.is-light.is-outlined.is-loading:focus::after,.button.is-light.is-outlined.is-loading.is-focused::after{border-color:transparent transparent rgba(0,0,0,0.7) rgba(0,0,0,0.7) !important}.button.is-light.is-outlined[disabled],fieldset[disabled] .button.is-light.is-outlined{background-color:transparent;border-color:#f5f5f5;box-shadow:none;color:#f5f5f5}.button.is-light.is-inverted.is-outlined{background-color:transparent;border-color:rgba(0,0,0,0.7);color:rgba(0,0,0,0.7)}.button.is-light.is-inverted.is-outlined:hover,.button.is-light.is-inverted.is-outlined.is-hovered,.button.is-light.is-inverted.is-outlined:focus,.button.is-light.is-inverted.is-outlined.is-focused{background-color:rgba(0,0,0,0.7);color:#f5f5f5}.button.is-light.is-inverted.is-outlined.is-loading:hover::after,.button.is-light.is-inverted.is-outlined.is-loading.is-hovered::after,.button.is-light.is-inverted.is-outlined.is-loading:focus::after,.button.is-light.is-inverted.is-outlined.is-loading.is-focused::after{border-color:transparent transparent #f5f5f5 #f5f5f5 !important}.button.is-light.is-inverted.is-outlined[disabled],fieldset[disabled] .button.is-light.is-inverted.is-outlined{background-color:transparent;border-color:rgba(0,0,0,0.7);box-shadow:none;color:rgba(0,0,0,0.7)}.button.is-dark{background-color:#363636;border-color:transparent;color:#fff}.button.is-dark:hover,.button.is-dark.is-hovered{background-color:#2f2f2f;border-color:transparent;color:#fff}.button.is-dark:focus,.button.is-dark.is-focused{border-color:transparent;color:#fff}.button.is-dark:focus:not(:active),.button.is-dark.is-focused:not(:active){box-shadow:0 0 0 0.125em rgba(54,54,54,0.25)}.button.is-dark:active,.button.is-dark.is-active{background-color:#292929;border-color:transparent;color:#fff}.button.is-dark[disabled],fieldset[disabled] .button.is-dark{background-color:#363636;border-color:#363636;box-shadow:none}.button.is-dark.is-inverted{background-color:#fff;color:#363636}.button.is-dark.is-inverted:hover,.button.is-dark.is-inverted.is-hovered{background-color:#f2f2f2}.button.is-dark.is-inverted[disabled],fieldset[disabled] .button.is-dark.is-inverted{background-color:#fff;border-color:transparent;box-shadow:none;color:#363636}.button.is-dark.is-loading::after{border-color:transparent transparent #fff #fff !important}.button.is-dark.is-outlined{background-color:transparent;border-color:#363636;color:#363636}.button.is-dark.is-outlined:hover,.button.is-dark.is-outlined.is-hovered,.button.is-dark.is-outlined:focus,.button.is-dark.is-outlined.is-focused{background-color:#363636;border-color:#363636;color:#fff}.button.is-dark.is-outlined.is-loading::after{border-color:transparent transparent #363636 #363636 !important}.button.is-dark.is-outlined.is-loading:hover::after,.button.is-dark.is-outlined.is-loading.is-hovered::after,.button.is-dark.is-outlined.is-loading:focus::after,.button.is-dark.is-outlined.is-loading.is-focused::after{border-color:transparent transparent #fff #fff !important}.button.is-dark.is-outlined[disabled],fieldset[disabled] .button.is-dark.is-outlined{background-color:transparent;border-color:#363636;box-shadow:none;color:#363636}.button.is-dark.is-inverted.is-outlined{background-color:transparent;border-color:#fff;color:#fff}.button.is-dark.is-inverted.is-outlined:hover,.button.is-dark.is-inverted.is-outlined.is-hovered,.button.is-dark.is-inverted.is-outlined:focus,.button.is-dark.is-inverted.is-outlined.is-focused{background-color:#fff;color:#363636}.button.is-dark.is-inverted.is-outlined.is-loading:hover::after,.button.is-dark.is-inverted.is-outlined.is-loading.is-hovered::after,.button.is-dark.is-inverted.is-outlined.is-loading:focus::after,.button.is-dark.is-inverted.is-outlined.is-loading.is-focused::after{border-color:transparent transparent #363636 #363636 !important}.button.is-dark.is-inverted.is-outlined[disabled],fieldset[disabled] .button.is-dark.is-inverted.is-outlined{background-color:transparent;border-color:#fff;box-shadow:none;color:#fff}.button.is-primary{background-color:#0060af;border-color:transparent;color:#fff}.button.is-primary:hover,.button.is-primary.is-hovered{background-color:#0059a2;border-color:transparent;color:#fff}.button.is-primary:focus,.button.is-primary.is-focused{border-color:transparent;color:#fff}.button.is-primary:focus:not(:active),.button.is-primary.is-focused:not(:active){box-shadow:0 0 0 0.125em rgba(0,96,175,0.25)}.button.is-primary:active,.button.is-primary.is-active{background-color:#005296;border-color:transparent;color:#fff}.button.is-primary[disabled],fieldset[disabled] .button.is-primary{background-color:#0060af;border-color:#0060af;box-shadow:none}.button.is-primary.is-inverted{background-color:#fff;color:#0060af}.button.is-primary.is-inverted:hover,.button.is-primary.is-inverted.is-hovered{background-color:#f2f2f2}.button.is-primary.is-inverted[disabled],fieldset[disabled] .button.is-primary.is-inverted{background-color:#fff;border-color:transparent;box-shadow:none;color:#0060af}.button.is-primary.is-loading::after{border-color:transparent transparent #fff #fff !important}.button.is-primary.is-outlined{background-color:transparent;border-color:#0060af;color:#0060af}.button.is-primary.is-outlined:hover,.button.is-primary.is-outlined.is-hovered,.button.is-primary.is-outlined:focus,.button.is-primary.is-outlined.is-focused{background-color:#0060af;border-color:#0060af;color:#fff}.button.is-primary.is-outlined.is-loading::after{border-color:transparent transparent #0060af #0060af !important}.button.is-primary.is-outlined.is-loading:hover::after,.button.is-primary.is-outlined.is-loading.is-hovered::after,.button.is-primary.is-outlined.is-loading:focus::after,.button.is-primary.is-outlined.is-loading.is-focused::after{border-color:transparent transparent #fff #fff !important}.button.is-primary.is-outlined[disabled],fieldset[disabled] .button.is-primary.is-outlined{background-color:transparent;border-color:#0060af;box-shadow:none;color:#0060af}.button.is-primary.is-inverted.is-outlined{background-color:transparent;border-color:#fff;color:#fff}.button.is-primary.is-inverted.is-outlined:hover,.button.is-primary.is-inverted.is-outlined.is-hovered,.button.is-primary.is-inverted.is-outlined:focus,.button.is-primary.is-inverted.is-outlined.is-focused{background-color:#fff;color:#0060af}.button.is-primary.is-inverted.is-outlined.is-loading:hover::after,.button.is-primary.is-inverted.is-outlined.is-loading.is-hovered::after,.button.is-primary.is-inverted.is-outlined.is-loading:focus::after,.button.is-primary.is-inverted.is-outlined.is-loading.is-focused::after{border-color:transparent transparent #0060af #0060af !important}.button.is-primary.is-inverted.is-outlined[disabled],fieldset[disabled] .button.is-primary.is-inverted.is-outlined{background-color:transparent;border-color:#fff;box-shadow:none;color:#fff}.button.is-primary.is-light{background-color:#ebf6ff;color:#0089fa}.button.is-primary.is-light:hover,.button.is-primary.is-light.is-hovered{background-color:#def0ff;border-color:transparent;color:#0089fa}.button.is-primary.is-light:active,.button.is-primary.is-light.is-active{background-color:#d1eaff;border-color:transparent;color:#0089fa}.button.is-link{background-color:#0060af;border-color:transparent;color:#fff}.button.is-link:hover,.button.is-link.is-hovered{background-color:#0059a2;border-color:transparent;color:#fff}.button.is-link:focus,.button.is-link.is-focused{border-color:transparent;color:#fff}.button.is-link:focus:not(:active),.button.is-link.is-focused:not(:active){box-shadow:0 0 0 0.125em rgba(0,96,175,0.25)}.button.is-link:active,.button.is-link.is-active{background-color:#005296;border-color:transparent;color:#fff}.button.is-link[disabled],fieldset[disabled] .button.is-link{background-color:#0060af;border-color:#0060af;box-shadow:none}.button.is-link.is-inverted{background-color:#fff;color:#0060af}.button.is-link.is-inverted:hover,.button.is-link.is-inverted.is-hovered{background-color:#f2f2f2}.button.is-link.is-inverted[disabled],fieldset[disabled] .button.is-link.is-inverted{background-color:#fff;border-color:transparent;box-shadow:none;color:#0060af}.button.is-link.is-loading::after{border-color:transparent transparent #fff #fff !important}.button.is-link.is-outlined{background-color:transparent;border-color:#0060af;color:#0060af}.button.is-link.is-outlined:hover,.button.is-link.is-outlined.is-hovered,.button.is-link.is-outlined:focus,.button.is-link.is-outlined.is-focused{background-color:#0060af;border-color:#0060af;color:#fff}.button.is-link.is-outlined.is-loading::after{border-color:transparent transparent #0060af #0060af !important}.button.is-link.is-outlined.is-loading:hover::after,.button.is-link.is-outlined.is-loading.is-hovered::after,.button.is-link.is-outlined.is-loading:focus::after,.button.is-link.is-outlined.is-loading.is-focused::after{border-color:transparent transparent #fff #fff !important}.button.is-link.is-outlined[disabled],fieldset[disabled] .button.is-link.is-outlined{background-color:transparent;border-color:#0060af;box-shadow:none;color:#0060af}.button.is-link.is-inverted.is-outlined{background-color:transparent;border-color:#fff;color:#fff}.button.is-link.is-inverted.is-outlined:hover,.button.is-link.is-inverted.is-outlined.is-hovered,.button.is-link.is-inverted.is-outlined:focus,.button.is-link.is-inverted.is-outlined.is-focused{background-color:#fff;color:#0060af}.button.is-link.is-inverted.is-outlined.is-loading:hover::after,.button.is-link.is-inverted.is-outlined.is-loading.is-hovered::after,.button.is-link.is-inverted.is-outlined.is-loading:focus::after,.button.is-link.is-inverted.is-outlined.is-loading.is-focused::after{border-color:transparent transparent #0060af #0060af !important}.button.is-link.is-inverted.is-outlined[disabled],fieldset[disabled] .button.is-link.is-inverted.is-outlined{background-color:transparent;border-color:#fff;box-shadow:none;color:#fff}.button.is-link.is-light{background-color:#ebf6ff;color:#0089fa}.button.is-link.is-light:hover,.button.is-link.is-light.is-hovered{background-color:#def0ff;border-color:transparent;color:#0089fa}.button.is-link.is-light:active,.button.is-link.is-light.is-active{background-color:#d1eaff;border-color:transparent;color:#0089fa}.button.is-info{background-color:#3e8ed0;border-color:transparent;color:#fff}.button.is-info:hover,.button.is-info.is-hovered{background-color:#3488ce;border-color:transparent;color:#fff}.button.is-info:focus,.button.is-info.is-focused{border-color:transparent;color:#fff}.button.is-info:focus:not(:active),.button.is-info.is-focused:not(:active){box-shadow:0 0 0 0.125em rgba(62,142,208,0.25)}.button.is-info:active,.button.is-info.is-active{background-color:#3082c5;border-color:transparent;color:#fff}.button.is-info[disabled],fieldset[disabled] .button.is-info{background-color:#3e8ed0;border-color:#3e8ed0;box-shadow:none}.button.is-info.is-inverted{background-color:#fff;color:#3e8ed0}.button.is-info.is-inverted:hover,.button.is-info.is-inverted.is-hovered{background-color:#f2f2f2}.button.is-info.is-inverted[disabled],fieldset[disabled] .button.is-info.is-inverted{background-color:#fff;border-color:transparent;box-shadow:none;color:#3e8ed0}.button.is-info.is-loading::after{border-color:transparent transparent #fff #fff !important}.button.is-info.is-outlined{background-color:transparent;border-color:#3e8ed0;color:#3e8ed0}.button.is-info.is-outlined:hover,.button.is-info.is-outlined.is-hovered,.button.is-info.is-outlined:focus,.button.is-info.is-outlined.is-focused{background-color:#3e8ed0;border-color:#3e8ed0;color:#fff}.button.is-info.is-outlined.is-loading::after{border-color:transparent transparent #3e8ed0 #3e8ed0 !important}.button.is-info.is-outlined.is-loading:hover::after,.button.is-info.is-outlined.is-loading.is-hovered::after,.button.is-info.is-outlined.is-loading:focus::after,.button.is-info.is-outlined.is-loading.is-focused::after{border-color:transparent transparent #fff #fff !important}.button.is-info.is-outlined[disabled],fieldset[disabled] .button.is-info.is-outlined{background-color:transparent;border-color:#3e8ed0;box-shadow:none;color:#3e8ed0}.button.is-info.is-inverted.is-outlined{background-color:transparent;border-color:#fff;color:#fff}.button.is-info.is-inverted.is-outlined:hover,.button.is-info.is-inverted.is-outlined.is-hovered,.button.is-info.is-inverted.is-outlined:focus,.button.is-info.is-inverted.is-outlined.is-focused{background-color:#fff;color:#3e8ed0}.button.is-info.is-inverted.is-outlined.is-loading:hover::after,.button.is-info.is-inverted.is-outlined.is-loading.is-hovered::after,.button.is-info.is-inverted.is-outlined.is-loading:focus::after,.button.is-info.is-inverted.is-outlined.is-loading.is-focused::after{border-color:transparent transparent #3e8ed0 #3e8ed0 !important}.button.is-info.is-inverted.is-outlined[disabled],fieldset[disabled] .button.is-info.is-inverted.is-outlined{background-color:transparent;border-color:#fff;box-shadow:none;color:#fff}.button.is-info.is-light{background-color:#eff5fb;color:#296fa8}.button.is-info.is-light:hover,.button.is-info.is-light.is-hovered{background-color:#e4eff9;border-color:transparent;color:#296fa8}.button.is-info.is-light:active,.button.is-info.is-light.is-active{background-color:#dae9f6;border-color:transparent;color:#296fa8}.button.is-success{background-color:#007373;border-color:transparent;color:#fff}.button.is-success:hover,.button.is-success.is-hovered{background-color:#066;border-color:transparent;color:#fff}.button.is-success:focus,.button.is-success.is-focused{border-color:transparent;color:#fff}.button.is-success:focus:not(:active),.button.is-success.is-focused:not(:active){box-shadow:0 0 0 0.125em rgba(0,115,115,0.25)}.button.is-success:active,.button.is-success.is-active{background-color:#005a5a;border-color:transparent;color:#fff}.button.is-success[disabled],fieldset[disabled] .button.is-success{background-color:#007373;border-color:#007373;box-shadow:none}.button.is-success.is-inverted{background-color:#fff;color:#007373}.button.is-success.is-inverted:hover,.button.is-success.is-inverted.is-hovered{background-color:#f2f2f2}.button.is-success.is-inverted[disabled],fieldset[disabled] .button.is-success.is-inverted{background-color:#fff;border-color:transparent;box-shadow:none;color:#007373}.button.is-success.is-loading::after{border-color:transparent transparent #fff #fff !important}.button.is-success.is-outlined{background-color:transparent;border-color:#007373;color:#007373}.button.is-success.is-outlined:hover,.button.is-success.is-outlined.is-hovered,.button.is-success.is-outlined:focus,.button.is-success.is-outlined.is-focused{background-color:#007373;border-color:#007373;color:#fff}.button.is-success.is-outlined.is-loading::after{border-color:transparent transparent #007373 #007373 !important}.button.is-success.is-outlined.is-loading:hover::after,.button.is-success.is-outlined.is-loading.is-hovered::after,.button.is-success.is-outlined.is-loading:focus::after,.button.is-success.is-outlined.is-loading.is-focused::after{border-color:transparent transparent #fff #fff !important}.button.is-success.is-outlined[disabled],fieldset[disabled] .button.is-success.is-outlined{background-color:transparent;border-color:#007373;box-shadow:none;color:#007373}.button.is-success.is-inverted.is-outlined{background-color:transparent;border-color:#fff;color:#fff}.button.is-success.is-inverted.is-outlined:hover,.button.is-success.is-inverted.is-outlined.is-hovered,.button.is-success.is-inverted.is-outlined:focus,.button.is-success.is-inverted.is-outlined.is-focused{background-color:#fff;color:#007373}.button.is-success.is-inverted.is-outlined.is-loading:hover::after,.button.is-success.is-inverted.is-outlined.is-loading.is-hovered::after,.button.is-success.is-inverted.is-outlined.is-loading:focus::after,.button.is-success.is-inverted.is-outlined.is-loading.is-focused::after{border-color:transparent transparent #007373 #007373 !important}.button.is-success.is-inverted.is-outlined[disabled],fieldset[disabled] .button.is-success.is-inverted.is-outlined{background-color:transparent;border-color:#fff;box-shadow:none;color:#fff}.button.is-success.is-light{background-color:#ebffff;color:#00f0f0}.button.is-success.is-light:hover,.button.is-success.is-light.is-hovered{background-color:#deffff;border-color:transparent;color:#00f0f0}.button.is-success.is-light:active,.button.is-success.is-light.is-active{background-color:#d1ffff;border-color:transparent;color:#00f0f0}.button.is-warning{background-color:#ffe08a;border-color:transparent;color:rgba(0,0,0,0.7)}.button.is-warning:hover,.button.is-warning.is-hovered{background-color:#ffdc7d;border-color:transparent;color:rgba(0,0,0,0.7)}.button.is-warning:focus,.button.is-warning.is-focused{border-color:transparent;color:rgba(0,0,0,0.7)}.button.is-warning:focus:not(:active),.button.is-warning.is-focused:not(:active){box-shadow:0 0 0 0.125em rgba(255,224,138,0.25)}.button.is-warning:active,.button.is-warning.is-active{background-color:#ffd970;border-color:transparent;color:rgba(0,0,0,0.7)}.button.is-warning[disabled],fieldset[disabled] .button.is-warning{background-color:#ffe08a;border-color:#ffe08a;box-shadow:none}.button.is-warning.is-inverted{background-color:rgba(0,0,0,0.7);color:#ffe08a}.button.is-warning.is-inverted:hover,.button.is-warning.is-inverted.is-hovered{background-color:rgba(0,0,0,0.7)}.button.is-warning.is-inverted[disabled],fieldset[disabled] .button.is-warning.is-inverted{background-color:rgba(0,0,0,0.7);border-color:transparent;box-shadow:none;color:#ffe08a}.button.is-warning.is-loading::after{border-color:transparent transparent rgba(0,0,0,0.7) rgba(0,0,0,0.7) !important}.button.is-warning.is-outlined{background-color:transparent;border-color:#ffe08a;color:#ffe08a}.button.is-warning.is-outlined:hover,.button.is-warning.is-outlined.is-hovered,.button.is-warning.is-outlined:focus,.button.is-warning.is-outlined.is-focused{background-color:#ffe08a;border-color:#ffe08a;color:rgba(0,0,0,0.7)}.button.is-warning.is-outlined.is-loading::after{border-color:transparent transparent #ffe08a #ffe08a !important}.button.is-warning.is-outlined.is-loading:hover::after,.button.is-warning.is-outlined.is-loading.is-hovered::after,.button.is-warning.is-outlined.is-loading:focus::after,.button.is-warning.is-outlined.is-loading.is-focused::after{border-color:transparent transparent rgba(0,0,0,0.7) rgba(0,0,0,0.7) !important}.button.is-warning.is-outlined[disabled],fieldset[disabled] .button.is-warning.is-outlined{background-color:transparent;border-color:#ffe08a;box-shadow:none;color:#ffe08a}.button.is-warning.is-inverted.is-outlined{background-color:transparent;border-color:rgba(0,0,0,0.7);color:rgba(0,0,0,0.7)}.button.is-warning.is-inverted.is-outlined:hover,.button.is-warning.is-inverted.is-outlined.is-hovered,.button.is-warning.is-inverted.is-outlined:focus,.button.is-warning.is-inverted.is-outlined.is-focused{background-color:rgba(0,0,0,0.7);color:#ffe08a}.button.is-warning.is-inverted.is-outlined.is-loading:hover::after,.button.is-warning.is-inverted.is-outlined.is-loading.is-hovered::after,.button.is-warning.is-inverted.is-outlined.is-loading:focus::after,.button.is-warning.is-inverted.is-outlined.is-loading.is-focused::after{border-color:transparent transparent #ffe08a #ffe08a !important}.button.is-warning.is-inverted.is-outlined[disabled],fieldset[disabled] .button.is-warning.is-inverted.is-outlined{background-color:transparent;border-color:rgba(0,0,0,0.7);box-shadow:none;color:rgba(0,0,0,0.7)}.button.is-warning.is-light{background-color:#fffaeb;color:#946c00}.button.is-warning.is-light:hover,.button.is-warning.is-light.is-hovered{background-color:#fff6de;border-color:transparent;color:#946c00}.button.is-warning.is-light:active,.button.is-warning.is-light.is-active{background-color:#fff3d1;border-color:transparent;color:#946c00}.button.is-danger{background-color:#dd3700;border-color:transparent;color:#fff}.button.is-danger:hover,.button.is-danger.is-hovered{background-color:#d03400;border-color:transparent;color:#fff}.button.is-danger:focus,.button.is-danger.is-focused{border-color:transparent;color:#fff}.button.is-danger:focus:not(:active),.button.is-danger.is-focused:not(:active){box-shadow:0 0 0 0.125em rgba(221,55,0,0.25)}.button.is-danger:active,.button.is-danger.is-active{background-color:#c43100;border-color:transparent;color:#fff}.button.is-danger[disabled],fieldset[disabled] .button.is-danger{background-color:#dd3700;border-color:#dd3700;box-shadow:none}.button.is-danger.is-inverted{background-color:#fff;color:#dd3700}.button.is-danger.is-inverted:hover,.button.is-danger.is-inverted.is-hovered{background-color:#f2f2f2}.button.is-danger.is-inverted[disabled],fieldset[disabled] .button.is-danger.is-inverted{background-color:#fff;border-color:transparent;box-shadow:none;color:#dd3700}.button.is-danger.is-loading::after{border-color:transparent transparent #fff #fff !important}.button.is-danger.is-outlined{background-color:transparent;border-color:#dd3700;color:#dd3700}.button.is-danger.is-outlined:hover,.button.is-danger.is-outlined.is-hovered,.button.is-danger.is-outlined:focus,.button.is-danger.is-outlined.is-focused{background-color:#dd3700;border-color:#dd3700;color:#fff}.button.is-danger.is-outlined.is-loading::after{border-color:transparent transparent #dd3700 #dd3700 !important}.button.is-danger.is-outlined.is-loading:hover::after,.button.is-danger.is-outlined.is-loading.is-hovered::after,.button.is-danger.is-outlined.is-loading:focus::after,.button.is-danger.is-outlined.is-loading.is-focused::after{border-color:transparent transparent #fff #fff !important}.button.is-danger.is-outlined[disabled],fieldset[disabled] .button.is-danger.is-outlined{background-color:transparent;border-color:#dd3700;box-shadow:none;color:#dd3700}.button.is-danger.is-inverted.is-outlined{background-color:transparent;border-color:#fff;color:#fff}.button.is-danger.is-inverted.is-outlined:hover,.button.is-danger.is-inverted.is-outlined.is-hovered,.button.is-danger.is-inverted.is-outlined:focus,.button.is-danger.is-inverted.is-outlined.is-focused{background-color:#fff;color:#dd3700}.button.is-danger.is-inverted.is-outlined.is-loading:hover::after,.button.is-danger.is-inverted.is-outlined.is-loading.is-hovered::after,.button.is-danger.is-inverted.is-outlined.is-loading:focus::after,.button.is-danger.is-inverted.is-outlined.is-loading.is-focused::after{border-color:transparent transparent #dd3700 #dd3700 !important}.button.is-danger.is-inverted.is-outlined[disabled],fieldset[disabled] .button.is-danger.is-inverted.is-outlined{background-color:transparent;border-color:#fff;box-shadow:none;color:#fff}.button.is-danger.is-light{background-color:#fff0eb;color:#eb3a00}.button.is-danger.is-light:hover,.button.is-danger.is-light.is-hovered{background-color:#ffe6de;border-color:transparent;color:#eb3a00}.button.is-danger.is-light:active,.button.is-danger.is-light.is-active{background-color:#ffddd1;border-color:transparent;color:#eb3a00}.button.is-small{font-size:.75rem}.button.is-small:not(.is-rounded){border-radius:2px}.button.is-normal{font-size:1rem}.button.is-medium{font-size:1.25rem}.button.is-large{font-size:1.5rem}.button[disabled],fieldset[disabled] .button{background-color:#fff;border-color:#dbdbdb;box-shadow:none;opacity:.5}.button.is-fullwidth{display:flex;width:100%}.button.is-loading{color:transparent !important;pointer-events:none}.button.is-loading::after{position:absolute;left:calc(50% - (1em * 0.5));top:calc(50% - (1em * 0.5));position:absolute !important}.button.is-static{background-color:#f5f5f5;border-color:#dbdbdb;color:#767676;box-shadow:none;pointer-events:none}.button.is-rounded{border-radius:9999px;padding-left:calc(1em + 0.25em);padding-right:calc(1em + 0.25em)}.buttons{align-items:center;display:flex;flex-wrap:wrap;justify-content:flex-start}.buttons .button{margin-bottom:0.5rem}.buttons .button:not(:last-child):not(.is-fullwidth){margin-right:.5rem}.buttons:last-child{margin-bottom:-0.5rem}.buttons:not(:last-child){margin-bottom:1rem}.buttons.are-small .button:not(.is-normal):not(.is-medium):not(.is-large){font-size:.75rem}.buttons.are-small .button:not(.is-normal):not(.is-medium):not(.is-large):not(.is-rounded){border-radius:2px}.buttons.are-medium .button:not(.is-small):not(.is-normal):not(.is-large){font-size:1.25rem}.buttons.are-large .button:not(.is-small):not(.is-normal):not(.is-medium){font-size:1.5rem}.buttons.has-addons .button:not(:first-child){border-bottom-left-radius:0;border-top-left-radius:0}.buttons.has-addons .button:not(:last-child){border-bottom-right-radius:0;border-top-right-radius:0;margin-right:-1px}.buttons.has-addons .button:last-child{margin-right:0}.buttons.has-addons .button:hover,.buttons.has-addons .button.is-hovered{z-index:2}.buttons.has-addons .button:focus,.buttons.has-addons .button.is-focused,.buttons.has-addons .button:active,.buttons.has-addons .button.is-active,.buttons.has-addons .button.is-selected{z-index:3}.buttons.has-addons .button:focus:hover,.buttons.has-addons .button.is-focused:hover,.buttons.has-addons .button:active:hover,.buttons.has-addons .button.is-active:hover,.buttons.has-addons .button.is-selected:hover{z-index:4}.buttons.has-addons .button.is-expanded{flex-grow:1;flex-shrink:1}.buttons.is-centered{justify-content:center}.buttons.is-centered:not(.has-addons) .button:not(.is-fullwidth){margin-left:0.25rem;margin-right:0.25rem}.buttons.is-right{justify-content:flex-end}.buttons.is-right:not(.has-addons) .button:not(.is-fullwidth){margin-left:0.25rem;margin-right:0.25rem}@media screen and (max-width: 611px){.button.is-responsive.is-small{font-size:.5625rem}.button.is-responsive,.button.is-responsive.is-normal{font-size:.65625rem}.button.is-responsive.is-medium{font-size:.75rem}.button.is-responsive.is-large{font-size:1rem}}@media screen and (min-width: 612px) and (max-width: 1097px){.button.is-responsive.is-small{font-size:.65625rem}.button.is-responsive,.button.is-responsive.is-normal{font-size:.75rem}.button.is-responsive.is-medium{font-size:1rem}.button.is-responsive.is-large{font-size:1.25rem}}.container{flex-grow:1;margin:0 auto;position:relative;width:auto}.container.is-fluid{max-width:none !important;padding-left:36px;padding-right:36px;width:100%}@media screen and (min-width: 1098px){.container{max-width:1098px}}@media screen and (max-width: 1421px){.container.is-widescreen:not(.is-max-desktop){max-width:1296px}}@media screen and (min-width: 1422px){.container:not(.is-max-desktop){max-width:1296px}}.content li+li{margin-top:0.25em}.content p:not(:last-child),.content dl:not(:last-child),.content ol:not(:last-child),.content ul:not(:last-child),.content blockquote:not(:last-child),.content pre:not(:last-child),.content table:not(:last-child){margin-bottom:1em}.content h1,.content h2,.content h3,.content h4,.content h5,.content h6{color:#363636;font-weight:600;line-height:1.125}.content h1{font-size:2em;margin-bottom:0.5em}.content h1:not(:first-child){margin-top:1em}.content h2{font-size:1.75em;margin-bottom:0.5714em}.content h2:not(:first-child){margin-top:1.1428em}.content h3{font-size:1.5em;margin-bottom:0.6666em}.content h3:not(:first-child){margin-top:1.3333em}.content h4{font-size:1.25em;margin-bottom:0.8em}.content h5{font-size:1.125em;margin-bottom:0.8888em}.content h6{font-size:1em;margin-bottom:1em}.content blockquote{background-color:#f5f5f5;border-left:5px solid #dbdbdb;padding:1.25em 1.5em}.content ol{list-style-position:outside;margin-left:2em;margin-top:1em}.content ol:not([type]){list-style-type:decimal}.content ol:not([type]).is-lower-alpha{list-style-type:lower-alpha}.content ol:not([type]).is-lower-roman{list-style-type:lower-roman}.content ol:not([type]).is-upper-alpha{list-style-type:upper-alpha}.content ol:not([type]).is-upper-roman{list-style-type:upper-roman}.content ul{list-style:disc outside;margin-left:2em;margin-top:1em}.content ul ul{list-style-type:circle;margin-top:0.5em}.content ul ul ul{list-style-type:square}.content dd{margin-left:2em}.content figure{margin-left:2em;margin-right:2em;text-align:center}.content figure:not(:first-child){margin-top:2em}.content figure:not(:last-child){margin-bottom:2em}.content figure img{display:inline-block}.content figure figcaption{font-style:italic}.content pre{-webkit-overflow-scrolling:touch;overflow-x:auto;padding:1.25em 1.5em;white-space:pre;word-wrap:normal}.content sup,.content sub{font-size:75%}.content table{width:100%}.content table td,.content table th{border:1px solid #dbdbdb;border-width:0 0 1px;padding:0.5em 0.75em;vertical-align:top}.content table th{color:#363636}.content table th:not([align]){text-align:inherit}.content table thead td,.content table thead th{border-width:0 0 2px;color:#363636}.content table tfoot td,.content table tfoot th{border-width:2px 0 0;color:#363636}.content table tbody tr:last-child td,.content table tbody tr:last-child th{border-bottom-width:0}.content .tabs li+li{margin-top:0}.content.is-small{font-size:.75rem}.content.is-normal{font-size:1rem}.content.is-medium{font-size:1.25rem}.content.is-large{font-size:1.5rem}.icon{align-items:center;display:inline-flex;justify-content:center;height:1.5rem;width:1.5rem}.icon.is-small{height:1rem;width:1rem}.icon.is-medium{height:2rem;width:2rem}.icon.is-large{height:3rem;width:3rem}.icon-text{align-items:flex-start;color:inherit;display:inline-flex;flex-wrap:wrap;line-height:1.5rem;vertical-align:top}.icon-text .icon{flex-grow:0;flex-shrink:0}.icon-text .icon:not(:last-child){margin-right:.25em}.icon-text .icon:not(:first-child){margin-left:.25em}div.icon-text{display:flex}.image{display:block;position:relative}.image img{display:block;height:auto;width:100%}.image img.is-rounded{border-radius:9999px}.image.is-fullwidth{width:100%}.image.is-square img,.image.is-square .has-ratio,.image.is-1by1 img,.image.is-1by1 .has-ratio,.image.is-5by4 img,.image.is-5by4 .has-ratio,.image.is-4by3 img,.image.is-4by3 .has-ratio,.image.is-3by2 img,.image.is-3by2 .has-ratio,.image.is-5by3 img,.image.is-5by3 .has-ratio,.image.is-16by9 img,.image.is-16by9 .has-ratio,.image.is-2by1 img,.image.is-2by1 .has-ratio,.image.is-3by1 img,.image.is-3by1 .has-ratio,.image.is-4by5 img,.image.is-4by5 .has-ratio,.image.is-3by4 img,.image.is-3by4 .has-ratio,.image.is-2by3 img,.image.is-2by3 .has-ratio,.image.is-3by5 img,.image.is-3by5 .has-ratio,.image.is-9by16 img,.image.is-9by16 .has-ratio,.image.is-1by2 img,.image.is-1by2 .has-ratio,.image.is-1by3 img,.image.is-1by3 .has-ratio{height:100%;width:100%}.image.is-square,.image.is-1by1{padding-top:100%}.image.is-5by4{padding-top:80%}.image.is-4by3{padding-top:75%}.image.is-3by2{padding-top:66.6666%}.image.is-5by3{padding-top:60%}.image.is-16by9{padding-top:56.25%}.image.is-2by1{padding-top:50%}.image.is-3by1{padding-top:33.3333%}.image.is-4by5{padding-top:125%}.image.is-3by4{padding-top:133.3333%}.image.is-2by3{padding-top:150%}.image.is-3by5{padding-top:166.6666%}.image.is-9by16{padding-top:177.7777%}.image.is-1by2{padding-top:200%}.image.is-1by3{padding-top:300%}.image.is-16x16{height:16px;width:16px}.image.is-24x24{height:24px;width:24px}.image.is-32x32{height:32px;width:32px}.image.is-48x48{height:48px;width:48px}.image.is-64x64{height:64px;width:64px}.image.is-96x96{height:96px;width:96px}.image.is-128x128{height:128px;width:128px}.notification{background-color:#f5f5f5;border-radius:4px;position:relative;padding:1.25rem 2.5rem 1.25rem 1.5rem}.notification a:not(.button):not(.dropdown-item){color:currentColor;text-decoration:underline}.notification strong{color:currentColor}.notification code,.notification pre{background:#fff}.notification pre code{background:transparent}.notification>.delete{right:.5rem;position:absolute;top:0.5rem}.notification .title,.notification .subtitle,.notification .content{color:currentColor}.notification.is-white{background-color:#fff;color:#000}.notification.is-black{background-color:#000;color:#fff}.notification.is-light{background-color:#f5f5f5;color:rgba(0,0,0,0.7)}.notification.is-dark{background-color:#363636;color:#fff}.notification.is-primary{background-color:#0060af;color:#fff}.notification.is-primary.is-light{background-color:#ebf6ff;color:#0089fa}.notification.is-link{background-color:#0060af;color:#fff}.notification.is-link.is-light{background-color:#ebf6ff;color:#0089fa}.notification.is-info{background-color:#3e8ed0;color:#fff}.notification.is-info.is-light{background-color:#eff5fb;color:#296fa8}.notification.is-success{background-color:#007373;color:#fff}.notification.is-success.is-light{background-color:#ebffff;color:#00f0f0}.notification.is-warning{background-color:#ffe08a;color:rgba(0,0,0,0.7)}.notification.is-warning.is-light{background-color:#fffaeb;color:#946c00}.notification.is-danger{background-color:#dd3700;color:#fff}.notification.is-danger.is-light{background-color:#fff0eb;color:#eb3a00}.progress{-moz-appearance:none;-webkit-appearance:none;border:none;border-radius:9999px;display:block;height:1rem;overflow:hidden;padding:0;width:100%}.progress::-webkit-progress-bar{background-color:#ededed}.progress::-webkit-progress-value{background-color:#4a4a4a}.progress::-moz-progress-bar{background-color:#4a4a4a}.progress::-ms-fill{background-color:#4a4a4a;border:none}.progress.is-white::-webkit-progress-value{background-color:#fff}.progress.is-white::-moz-progress-bar{background-color:#fff}.progress.is-white::-ms-fill{background-color:#fff}.progress.is-white:indeterminate{background-image:linear-gradient(to right, #fff 30%, #ededed 30%)}.progress.is-black::-webkit-progress-value{background-color:#000}.progress.is-black::-moz-progress-bar{background-color:#000}.progress.is-black::-ms-fill{background-color:#000}.progress.is-black:indeterminate{background-image:linear-gradient(to right, #000 30%, #ededed 30%)}.progress.is-light::-webkit-progress-value{background-color:#f5f5f5}.progress.is-light::-moz-progress-bar{background-color:#f5f5f5}.progress.is-light::-ms-fill{background-color:#f5f5f5}.progress.is-light:indeterminate{background-image:linear-gradient(to right, #f5f5f5 30%, #ededed 30%)}.progress.is-dark::-webkit-progress-value{background-color:#363636}.progress.is-dark::-moz-progress-bar{background-color:#363636}.progress.is-dark::-ms-fill{background-color:#363636}.progress.is-dark:indeterminate{background-image:linear-gradient(to right, #363636 30%, #ededed 30%)}.progress.is-primary::-webkit-progress-value{background-color:#0060af}.progress.is-primary::-moz-progress-bar{background-color:#0060af}.progress.is-primary::-ms-fill{background-color:#0060af}.progress.is-primary:indeterminate{background-image:linear-gradient(to right, #0060af 30%, #ededed 30%)}.progress.is-link::-webkit-progress-value{background-color:#0060af}.progress.is-link::-moz-progress-bar{background-color:#0060af}.progress.is-link::-ms-fill{background-color:#0060af}.progress.is-link:indeterminate{background-image:linear-gradient(to right, #0060af 30%, #ededed 30%)}.progress.is-info::-webkit-progress-value{background-color:#3e8ed0}.progress.is-info::-moz-progress-bar{background-color:#3e8ed0}.progress.is-info::-ms-fill{background-color:#3e8ed0}.progress.is-info:indeterminate{background-image:linear-gradient(to right, #3e8ed0 30%, #ededed 30%)}.progress.is-success::-webkit-progress-value{background-color:#007373}.progress.is-success::-moz-progress-bar{background-color:#007373}.progress.is-success::-ms-fill{background-color:#007373}.progress.is-success:indeterminate{background-image:linear-gradient(to right, #007373 30%, #ededed 30%)}.progress.is-warning::-webkit-progress-value{background-color:#ffe08a}.progress.is-warning::-moz-progress-bar{background-color:#ffe08a}.progress.is-warning::-ms-fill{background-color:#ffe08a}.progress.is-warning:indeterminate{background-image:linear-gradient(to right, #ffe08a 30%, #ededed 30%)}.progress.is-danger::-webkit-progress-value{background-color:#dd3700}.progress.is-danger::-moz-progress-bar{background-color:#dd3700}.progress.is-danger::-ms-fill{background-color:#dd3700}.progress.is-danger:indeterminate{background-image:linear-gradient(to right, #dd3700 30%, #ededed 30%)}.progress:indeterminate{animation-duration:1.5s;animation-iteration-count:infinite;animation-name:moveIndeterminate;animation-timing-function:linear;background-color:#ededed;background-image:linear-gradient(to right, #4a4a4a 30%, #ededed 30%);background-position:top left;background-repeat:no-repeat;background-size:150% 150%}.progress:indeterminate::-webkit-progress-bar{background-color:transparent}.progress:indeterminate::-moz-progress-bar{background-color:transparent}.progress:indeterminate::-ms-fill{animation-name:none}.progress.is-small{height:.75rem}.progress.is-medium{height:1.25rem}.progress.is-large{height:1.5rem}@keyframes moveIndeterminate{from{background-position:200% 0}to{background-position:-200% 0}}.table{background-color:#fff;color:#363636}.table td,.table th{border:1px solid #dbdbdb;border-width:0 0 1px;padding:0.5em 0.75em;vertical-align:top}.table td.is-white,.table th.is-white{background-color:#fff;border-color:#fff;color:#000}.table td.is-black,.table th.is-black{background-color:#000;border-color:#000;color:#fff}.table td.is-light,.table th.is-light{background-color:#f5f5f5;border-color:#f5f5f5;color:rgba(0,0,0,0.7)}.table td.is-dark,.table th.is-dark{background-color:#363636;border-color:#363636;color:#fff}.table td.is-primary,.table th.is-primary{background-color:#0060af;border-color:#0060af;color:#fff}.table td.is-link,.table th.is-link{background-color:#0060af;border-color:#0060af;color:#fff}.table td.is-info,.table th.is-info{background-color:#3e8ed0;border-color:#3e8ed0;color:#fff}.table td.is-success,.table th.is-success{background-color:#007373;border-color:#007373;color:#fff}.table td.is-warning,.table th.is-warning{background-color:#ffe08a;border-color:#ffe08a;color:rgba(0,0,0,0.7)}.table td.is-danger,.table th.is-danger{background-color:#dd3700;border-color:#dd3700;color:#fff}.table td.is-narrow,.table th.is-narrow{white-space:nowrap;width:1%}.table td.is-selected,.table th.is-selected{background-color:#0060af;color:#fff}.table td.is-selected a,.table td.is-selected strong,.table th.is-selected a,.table th.is-selected strong{color:currentColor}.table td.is-vcentered,.table th.is-vcentered{vertical-align:middle}.table th{color:#363636}.table th:not([align]){text-align:left}.table tr.is-selected{background-color:#0060af;color:#fff}.table tr.is-selected a,.table tr.is-selected strong{color:currentColor}.table tr.is-selected td,.table tr.is-selected th{border-color:#fff;color:currentColor}.table thead{background-color:rgba(0,0,0,0)}.table thead td,.table thead th{border-width:0 0 2px;color:#363636}.table tfoot{background-color:rgba(0,0,0,0)}.table tfoot td,.table tfoot th{border-width:2px 0 0;color:#363636}.table tbody{background-color:rgba(0,0,0,0)}.table tbody tr:last-child td,.table tbody tr:last-child th{border-bottom-width:0}.table.is-bordered td,.table.is-bordered th{border-width:1px}.table.is-bordered tr:last-child td,.table.is-bordered tr:last-child th{border-bottom-width:1px}.table.is-fullwidth{width:100%}.table.is-hoverable tbody tr:not(.is-selected):hover{background-color:#fafafa}.table.is-hoverable.is-striped tbody tr:not(.is-selected):hover{background-color:#fafafa}.table.is-hoverable.is-striped tbody tr:not(.is-selected):hover:nth-child(even){background-color:#f5f5f5}.table.is-narrow td,.table.is-narrow th{padding:0.25em 0.5em}.table.is-striped tbody tr:not(.is-selected):nth-child(even){background-color:#fafafa}.table-container{-webkit-overflow-scrolling:touch;overflow:auto;overflow-y:hidden;max-width:100%}.tags{align-items:center;display:flex;flex-wrap:wrap;justify-content:flex-start}.tags .tag{margin-bottom:0.5rem}.tags .tag:not(:last-child){margin-right:.5rem}.tags:last-child{margin-bottom:-0.5rem}.tags:not(:last-child){margin-bottom:1rem}.tags.are-medium .tag:not(.is-normal):not(.is-large){font-size:1rem}.tags.are-large .tag:not(.is-normal):not(.is-medium){font-size:1.25rem}.tags.is-centered{justify-content:center}.tags.is-centered .tag{margin-right:0.25rem;margin-left:0.25rem}.tags.is-right{justify-content:flex-end}.tags.is-right .tag:not(:first-child){margin-left:0.5rem}.tags.is-right .tag:not(:last-child){margin-right:0}.tags.has-addons .tag{margin-right:0}.tags.has-addons .tag:not(:first-child){margin-left:0;border-top-left-radius:0;border-bottom-left-radius:0}.tags.has-addons .tag:not(:last-child){border-top-right-radius:0;border-bottom-right-radius:0}.tag:not(body){align-items:center;background-color:#f5f5f5;border-radius:4px;color:#4a4a4a;display:inline-flex;font-size:.75rem;height:2em;justify-content:center;line-height:1.5;padding-left:0.75em;padding-right:0.75em;white-space:nowrap}.tag:not(body) .delete{margin-left:.25rem;margin-right:-.375rem}.tag:not(body).is-white{background-color:#fff;color:#000}.tag:not(body).is-black{background-color:#000;color:#fff}.tag:not(body).is-light{background-color:#f5f5f5;color:rgba(0,0,0,0.7)}.tag:not(body).is-dark{background-color:#363636;color:#fff}.tag:not(body).is-primary{background-color:#0060af;color:#fff}.tag:not(body).is-primary.is-light{background-color:#ebf6ff;color:#0089fa}.tag:not(body).is-link{background-color:#0060af;color:#fff}.tag:not(body).is-link.is-light{background-color:#ebf6ff;color:#0089fa}.tag:not(body).is-info{background-color:#3e8ed0;color:#fff}.tag:not(body).is-info.is-light{background-color:#eff5fb;color:#296fa8}.tag:not(body).is-success{background-color:#007373;color:#fff}.tag:not(body).is-success.is-light{background-color:#ebffff;color:#00f0f0}.tag:not(body).is-warning{background-color:#ffe08a;color:rgba(0,0,0,0.7)}.tag:not(body).is-warning.is-light{background-color:#fffaeb;color:#946c00}.tag:not(body).is-danger{background-color:#dd3700;color:#fff}.tag:not(body).is-danger.is-light{background-color:#fff0eb;color:#eb3a00}.tag:not(body).is-normal{font-size:.75rem}.tag:not(body).is-medium{font-size:1rem}.tag:not(body).is-large{font-size:1.25rem}.tag:not(body) .icon:first-child:not(:last-child){margin-left:-.375em;margin-right:.1875em}.tag:not(body) .icon:last-child:not(:first-child){margin-left:.1875em;margin-right:-.375em}.tag:not(body) .icon:first-child:last-child{margin-left:-.375em;margin-right:-.375em}.tag:not(body).is-delete{margin-left:1px;padding:0;position:relative;width:2em}.tag:not(body).is-delete::before,.tag:not(body).is-delete::after{background-color:currentColor;content:"";display:block;left:50%;position:absolute;top:50%;transform:translateX(-50%) translateY(-50%) rotate(45deg);transform-origin:center center}.tag:not(body).is-delete::before{height:1px;width:50%}.tag:not(body).is-delete::after{height:50%;width:1px}.tag:not(body).is-delete:hover,.tag:not(body).is-delete:focus{background-color:#e8e8e8}.tag:not(body).is-delete:active{background-color:#dbdbdb}.tag:not(body).is-rounded{border-radius:9999px}a.tag:hover{text-decoration:underline}.title,.subtitle{word-break:break-word}.title em,.title span,.subtitle em,.subtitle span{font-weight:inherit}.title sub,.subtitle sub{font-size:.75em}.title sup,.subtitle sup{font-size:.75em}.title .tag,.subtitle .tag{vertical-align:middle}.title{color:#363636;font-size:2rem;font-weight:600;line-height:1.125}.title strong{color:inherit;font-weight:inherit}.title:not(.is-spaced)+.subtitle{margin-top:-1.25rem}.title.is-1{font-size:3rem}.title.is-2{font-size:2.5rem}.title.is-3{font-size:2rem}.title.is-4{font-size:1.5rem}.title.is-5{font-size:1.25rem}.title.is-6{font-size:1rem}.title.is-7{font-size:.75rem}.subtitle{color:#4a4a4a;font-size:1.25rem;font-weight:400;line-height:1.25}.subtitle strong{color:#363636;font-weight:600}.subtitle:not(.is-spaced)+.title{margin-top:-1.25rem}.subtitle.is-1{font-size:3rem}.subtitle.is-2{font-size:2.5rem}.subtitle.is-3{font-size:2rem}.subtitle.is-4{font-size:1.5rem}.subtitle.is-5{font-size:1.25rem}.subtitle.is-6{font-size:1rem}.subtitle.is-7{font-size:.75rem}.heading{display:block;font-size:11px;letter-spacing:1px;margin-bottom:5px;text-transform:uppercase}.number{align-items:center;background-color:#f5f5f5;border-radius:9999px;display:inline-flex;font-size:1.25rem;height:2em;justify-content:center;margin-right:1.5rem;min-width:2.5em;padding:0.25rem 0.5rem;text-align:center;vertical-align:top}.input,.textarea,.select select{background-color:#fff;border-color:#dbdbdb;border-radius:4px;color:#363636}.input::-moz-placeholder,.textarea::-moz-placeholder,.select select::-moz-placeholder{color:rgba(54,54,54,0.3)}.input::-webkit-input-placeholder,.textarea::-webkit-input-placeholder,.select select::-webkit-input-placeholder{color:rgba(54,54,54,0.3)}.input:-moz-placeholder,.textarea:-moz-placeholder,.select select:-moz-placeholder{color:rgba(54,54,54,0.3)}.input:-ms-input-placeholder,.textarea:-ms-input-placeholder,.select select:-ms-input-placeholder{color:rgba(54,54,54,0.3)}.input:hover,.textarea:hover,.select select:hover,.is-hovered.input,.is-hovered.textarea,.select select.is-hovered{border-color:#b5b5b5}.input:focus,.textarea:focus,.select select:focus,.is-focused.input,.is-focused.textarea,.select select.is-focused,.input:active,.textarea:active,.select select:active,.is-active.input,.is-active.textarea,.select select.is-active{border-color:#0060af;box-shadow:0 0 0 0.125em rgba(0,96,175,0.25)}.input[disabled],.textarea[disabled],.select select[disabled],fieldset[disabled] .input,fieldset[disabled] .textarea,fieldset[disabled] .select select,.select fieldset[disabled] select{background-color:#f5f5f5;border-color:#f5f5f5;box-shadow:none;color:#767676}.input[disabled]::-moz-placeholder,.textarea[disabled]::-moz-placeholder,.select select[disabled]::-moz-placeholder,fieldset[disabled] .input::-moz-placeholder,fieldset[disabled] .textarea::-moz-placeholder,fieldset[disabled] .select select::-moz-placeholder,.select fieldset[disabled] select::-moz-placeholder{color:rgba(118,118,118,0.3)}.input[disabled]::-webkit-input-placeholder,.textarea[disabled]::-webkit-input-placeholder,.select select[disabled]::-webkit-input-placeholder,fieldset[disabled] .input::-webkit-input-placeholder,fieldset[disabled] .textarea::-webkit-input-placeholder,fieldset[disabled] .select select::-webkit-input-placeholder,.select fieldset[disabled] select::-webkit-input-placeholder{color:rgba(118,118,118,0.3)}.input[disabled]:-moz-placeholder,.textarea[disabled]:-moz-placeholder,.select select[disabled]:-moz-placeholder,fieldset[disabled] .input:-moz-placeholder,fieldset[disabled] .textarea:-moz-placeholder,fieldset[disabled] .select select:-moz-placeholder,.select fieldset[disabled] select:-moz-placeholder{color:rgba(118,118,118,0.3)}.input[disabled]:-ms-input-placeholder,.textarea[disabled]:-ms-input-placeholder,.select select[disabled]:-ms-input-placeholder,fieldset[disabled] .input:-ms-input-placeholder,fieldset[disabled] .textarea:-ms-input-placeholder,fieldset[disabled] .select select:-ms-input-placeholder,.select fieldset[disabled] select:-ms-input-placeholder{color:rgba(118,118,118,0.3)}.input,.textarea{box-shadow:inset 0 0.0625em 0.125em rgba(0,0,0,0.05);max-width:100%;width:100%}.input[readonly],.textarea[readonly]{box-shadow:none}.is-white.input,.is-white.textarea{border-color:#fff}.is-white.input:focus,.is-white.textarea:focus,.is-white.is-focused.input,.is-white.is-focused.textarea,.is-white.input:active,.is-white.textarea:active,.is-white.is-active.input,.is-white.is-active.textarea{box-shadow:0 0 0 0.125em rgba(255,255,255,0.25)}.is-black.input,.is-black.textarea{border-color:#000}.is-black.input:focus,.is-black.textarea:focus,.is-black.is-focused.input,.is-black.is-focused.textarea,.is-black.input:active,.is-black.textarea:active,.is-black.is-active.input,.is-black.is-active.textarea{box-shadow:0 0 0 0.125em rgba(0,0,0,0.25)}.is-light.input,.is-light.textarea{border-color:#f5f5f5}.is-light.input:focus,.is-light.textarea:focus,.is-light.is-focused.input,.is-light.is-focused.textarea,.is-light.input:active,.is-light.textarea:active,.is-light.is-active.input,.is-light.is-active.textarea{box-shadow:0 0 0 0.125em rgba(245,245,245,0.25)}.is-dark.input,.is-dark.textarea{border-color:#363636}.is-dark.input:focus,.is-dark.textarea:focus,.is-dark.is-focused.input,.is-dark.is-focused.textarea,.is-dark.input:active,.is-dark.textarea:active,.is-dark.is-active.input,.is-dark.is-active.textarea{box-shadow:0 0 0 0.125em rgba(54,54,54,0.25)}.is-primary.input,.is-primary.textarea{border-color:#0060af}.is-primary.input:focus,.is-primary.textarea:focus,.is-primary.is-focused.input,.is-primary.is-focused.textarea,.is-primary.input:active,.is-primary.textarea:active,.is-primary.is-active.input,.is-primary.is-active.textarea{box-shadow:0 0 0 0.125em rgba(0,96,175,0.25)}.is-link.input,.is-link.textarea{border-color:#0060af}.is-link.input:focus,.is-link.textarea:focus,.is-link.is-focused.input,.is-link.is-focused.textarea,.is-link.input:active,.is-link.textarea:active,.is-link.is-active.input,.is-link.is-active.textarea{box-shadow:0 0 0 0.125em rgba(0,96,175,0.25)}.is-info.input,.is-info.textarea{border-color:#3e8ed0}.is-info.input:focus,.is-info.textarea:focus,.is-info.is-focused.input,.is-info.is-focused.textarea,.is-info.input:active,.is-info.textarea:active,.is-info.is-active.input,.is-info.is-active.textarea{box-shadow:0 0 0 0.125em rgba(62,142,208,0.25)}.is-success.input,.is-success.textarea{border-color:#007373}.is-success.input:focus,.is-success.textarea:focus,.is-success.is-focused.input,.is-success.is-focused.textarea,.is-success.input:active,.is-success.textarea:active,.is-success.is-active.input,.is-success.is-active.textarea{box-shadow:0 0 0 0.125em rgba(0,115,115,0.25)}.is-warning.input,.is-warning.textarea{border-color:#ffe08a}.is-warning.input:focus,.is-warning.textarea:focus,.is-warning.is-focused.input,.is-warning.is-focused.textarea,.is-warning.input:active,.is-warning.textarea:active,.is-warning.is-active.input,.is-warning.is-active.textarea{box-shadow:0 0 0 0.125em rgba(255,224,138,0.25)}.is-danger.input,.is-danger.textarea{border-color:#dd3700}.is-danger.input:focus,.is-danger.textarea:focus,.is-danger.is-focused.input,.is-danger.is-focused.textarea,.is-danger.input:active,.is-danger.textarea:active,.is-danger.is-active.input,.is-danger.is-active.textarea{box-shadow:0 0 0 0.125em rgba(221,55,0,0.25)}.is-small.input,.is-small.textarea{border-radius:2px;font-size:.75rem}.is-medium.input,.is-medium.textarea{font-size:1.25rem}.is-large.input,.is-large.textarea{font-size:1.5rem}.is-fullwidth.input,.is-fullwidth.textarea{display:block;width:100%}.is-inline.input,.is-inline.textarea{display:inline;width:auto}.input.is-rounded{border-radius:9999px;padding-left:calc(calc(0.75em - 1px) + 0.375em);padding-right:calc(calc(0.75em - 1px) + 0.375em)}.input.is-static{background-color:transparent;border-color:transparent;box-shadow:none;padding-left:0;padding-right:0}.textarea{display:block;max-width:100%;min-width:100%;padding:calc(0.75em - 1px);resize:vertical}.textarea:not([rows]){max-height:40em;min-height:8em}.textarea[rows]{height:initial}.textarea.has-fixed-size{resize:none}.checkbox,.radio{cursor:pointer;display:inline-block;line-height:1.25;position:relative}.checkbox input,.radio input{cursor:pointer}.checkbox:hover,.radio:hover{color:#363636}.checkbox[disabled],.radio[disabled],fieldset[disabled] .checkbox,fieldset[disabled] .radio,.checkbox input[disabled],.radio input[disabled]{color:#767676;cursor:not-allowed}.radio+.radio{margin-left:.5em}.select{display:inline-block;max-width:100%;position:relative;vertical-align:top}.select:not(.is-multiple){height:2.5em}.select:not(.is-multiple):not(.is-loading)::after{border-color:#0060af;right:1.125em;z-index:4}.select.is-rounded select{border-radius:9999px;padding-left:1em}.select select{cursor:pointer;display:block;font-size:1em;max-width:100%;outline:none}.select select::-ms-expand{display:none}.select select[disabled]:hover,fieldset[disabled] .select select:hover{border-color:#f5f5f5}.select select:not([multiple]){padding-right:2.5em}.select select[multiple]{height:auto;padding:0}.select select[multiple] option{padding:0.5em 1em}.select:not(.is-multiple):not(.is-loading):hover::after{border-color:#363636}.select.is-white:not(:hover)::after{border-color:#fff}.select.is-white select{border-color:#fff}.select.is-white select:hover,.select.is-white select.is-hovered{border-color:#f2f2f2}.select.is-white select:focus,.select.is-white select.is-focused,.select.is-white select:active,.select.is-white select.is-active{box-shadow:0 0 0 0.125em rgba(255,255,255,0.25)}.select.is-black:not(:hover)::after{border-color:#000}.select.is-black select{border-color:#000}.select.is-black select:hover,.select.is-black select.is-hovered{border-color:#000}.select.is-black select:focus,.select.is-black select.is-focused,.select.is-black select:active,.select.is-black select.is-active{box-shadow:0 0 0 0.125em rgba(0,0,0,0.25)}.select.is-light:not(:hover)::after{border-color:#f5f5f5}.select.is-light select{border-color:#f5f5f5}.select.is-light select:hover,.select.is-light select.is-hovered{border-color:#e8e8e8}.select.is-light select:focus,.select.is-light select.is-focused,.select.is-light select:active,.select.is-light select.is-active{box-shadow:0 0 0 0.125em rgba(245,245,245,0.25)}.select.is-dark:not(:hover)::after{border-color:#363636}.select.is-dark select{border-color:#363636}.select.is-dark select:hover,.select.is-dark select.is-hovered{border-color:#292929}.select.is-dark select:focus,.select.is-dark select.is-focused,.select.is-dark select:active,.select.is-dark select.is-active{box-shadow:0 0 0 0.125em rgba(54,54,54,0.25)}.select.is-primary:not(:hover)::after{border-color:#0060af}.select.is-primary select{border-color:#0060af}.select.is-primary select:hover,.select.is-primary select.is-hovered{border-color:#005296}.select.is-primary select:focus,.select.is-primary select.is-focused,.select.is-primary select:active,.select.is-primary select.is-active{box-shadow:0 0 0 0.125em rgba(0,96,175,0.25)}.select.is-link:not(:hover)::after{border-color:#0060af}.select.is-link select{border-color:#0060af}.select.is-link select:hover,.select.is-link select.is-hovered{border-color:#005296}.select.is-link select:focus,.select.is-link select.is-focused,.select.is-link select:active,.select.is-link select.is-active{box-shadow:0 0 0 0.125em rgba(0,96,175,0.25)}.select.is-info:not(:hover)::after{border-color:#3e8ed0}.select.is-info select{border-color:#3e8ed0}.select.is-info select:hover,.select.is-info select.is-hovered{border-color:#3082c5}.select.is-info select:focus,.select.is-info select.is-focused,.select.is-info select:active,.select.is-info select.is-active{box-shadow:0 0 0 0.125em rgba(62,142,208,0.25)}.select.is-success:not(:hover)::after{border-color:#007373}.select.is-success select{border-color:#007373}.select.is-success select:hover,.select.is-success select.is-hovered{border-color:#005a5a}.select.is-success select:focus,.select.is-success select.is-focused,.select.is-success select:active,.select.is-success select.is-active{box-shadow:0 0 0 0.125em rgba(0,115,115,0.25)}.select.is-warning:not(:hover)::after{border-color:#ffe08a}.select.is-warning select{border-color:#ffe08a}.select.is-warning select:hover,.select.is-warning select.is-hovered{border-color:#ffd970}.select.is-warning select:focus,.select.is-warning select.is-focused,.select.is-warning select:active,.select.is-warning select.is-active{box-shadow:0 0 0 0.125em rgba(255,224,138,0.25)}.select.is-danger:not(:hover)::after{border-color:#dd3700}.select.is-danger select{border-color:#dd3700}.select.is-danger select:hover,.select.is-danger select.is-hovered{border-color:#c43100}.select.is-danger select:focus,.select.is-danger select.is-focused,.select.is-danger select:active,.select.is-danger select.is-active{box-shadow:0 0 0 0.125em rgba(221,55,0,0.25)}.select.is-small{border-radius:2px;font-size:.75rem}.select.is-medium{font-size:1.25rem}.select.is-large{font-size:1.5rem}.select.is-disabled::after{border-color:#767676 !important;opacity:0.5}.select.is-fullwidth{width:100%}.select.is-fullwidth select{width:100%}.select.is-loading::after{margin-top:0;position:absolute;right:.625em;top:0.625em;transform:none}.select.is-loading.is-small:after{font-size:.75rem}.select.is-loading.is-medium:after{font-size:1.25rem}.select.is-loading.is-large:after{font-size:1.5rem}.file{align-items:stretch;display:flex;justify-content:flex-start;position:relative}.file.is-white .file-cta{background-color:#fff;border-color:transparent;color:#000}.file.is-white:hover .file-cta,.file.is-white.is-hovered .file-cta{background-color:#f9f9f9;border-color:transparent;color:#000}.file.is-white:focus .file-cta,.file.is-white.is-focused .file-cta{border-color:transparent;box-shadow:0 0 0.5em rgba(255,255,255,0.25);color:#000}.file.is-white:active .file-cta,.file.is-white.is-active .file-cta{background-color:#f2f2f2;border-color:transparent;color:#000}.file.is-black .file-cta{background-color:#000;border-color:transparent;color:#fff}.file.is-black:hover .file-cta,.file.is-black.is-hovered .file-cta{background-color:#000;border-color:transparent;color:#fff}.file.is-black:focus .file-cta,.file.is-black.is-focused .file-cta{border-color:transparent;box-shadow:0 0 0.5em rgba(0,0,0,0.25);color:#fff}.file.is-black:active .file-cta,.file.is-black.is-active .file-cta{background-color:#000;border-color:transparent;color:#fff}.file.is-light .file-cta{background-color:#f5f5f5;border-color:transparent;color:rgba(0,0,0,0.7)}.file.is-light:hover .file-cta,.file.is-light.is-hovered .file-cta{background-color:#eee;border-color:transparent;color:rgba(0,0,0,0.7)}.file.is-light:focus .file-cta,.file.is-light.is-focused .file-cta{border-color:transparent;box-shadow:0 0 0.5em rgba(245,245,245,0.25);color:rgba(0,0,0,0.7)}.file.is-light:active .file-cta,.file.is-light.is-active .file-cta{background-color:#e8e8e8;border-color:transparent;color:rgba(0,0,0,0.7)}.file.is-dark .file-cta{background-color:#363636;border-color:transparent;color:#fff}.file.is-dark:hover .file-cta,.file.is-dark.is-hovered .file-cta{background-color:#2f2f2f;border-color:transparent;color:#fff}.file.is-dark:focus .file-cta,.file.is-dark.is-focused .file-cta{border-color:transparent;box-shadow:0 0 0.5em rgba(54,54,54,0.25);color:#fff}.file.is-dark:active .file-cta,.file.is-dark.is-active .file-cta{background-color:#292929;border-color:transparent;color:#fff}.file.is-primary .file-cta{background-color:#0060af;border-color:transparent;color:#fff}.file.is-primary:hover .file-cta,.file.is-primary.is-hovered .file-cta{background-color:#0059a2;border-color:transparent;color:#fff}.file.is-primary:focus .file-cta,.file.is-primary.is-focused .file-cta{border-color:transparent;box-shadow:0 0 0.5em rgba(0,96,175,0.25);color:#fff}.file.is-primary:active .file-cta,.file.is-primary.is-active .file-cta{background-color:#005296;border-color:transparent;color:#fff}.file.is-link .file-cta{background-color:#0060af;border-color:transparent;color:#fff}.file.is-link:hover .file-cta,.file.is-link.is-hovered .file-cta{background-color:#0059a2;border-color:transparent;color:#fff}.file.is-link:focus .file-cta,.file.is-link.is-focused .file-cta{border-color:transparent;box-shadow:0 0 0.5em rgba(0,96,175,0.25);color:#fff}.file.is-link:active .file-cta,.file.is-link.is-active .file-cta{background-color:#005296;border-color:transparent;color:#fff}.file.is-info .file-cta{background-color:#3e8ed0;border-color:transparent;color:#fff}.file.is-info:hover .file-cta,.file.is-info.is-hovered .file-cta{background-color:#3488ce;border-color:transparent;color:#fff}.file.is-info:focus .file-cta,.file.is-info.is-focused .file-cta{border-color:transparent;box-shadow:0 0 0.5em rgba(62,142,208,0.25);color:#fff}.file.is-info:active .file-cta,.file.is-info.is-active .file-cta{background-color:#3082c5;border-color:transparent;color:#fff}.file.is-success .file-cta{background-color:#007373;border-color:transparent;color:#fff}.file.is-success:hover .file-cta,.file.is-success.is-hovered .file-cta{background-color:#066;border-color:transparent;color:#fff}.file.is-success:focus .file-cta,.file.is-success.is-focused .file-cta{border-color:transparent;box-shadow:0 0 0.5em rgba(0,115,115,0.25);color:#fff}.file.is-success:active .file-cta,.file.is-success.is-active .file-cta{background-color:#005a5a;border-color:transparent;color:#fff}.file.is-warning .file-cta{background-color:#ffe08a;border-color:transparent;color:rgba(0,0,0,0.7)}.file.is-warning:hover .file-cta,.file.is-warning.is-hovered .file-cta{background-color:#ffdc7d;border-color:transparent;color:rgba(0,0,0,0.7)}.file.is-warning:focus .file-cta,.file.is-warning.is-focused .file-cta{border-color:transparent;box-shadow:0 0 0.5em rgba(255,224,138,0.25);color:rgba(0,0,0,0.7)}.file.is-warning:active .file-cta,.file.is-warning.is-active .file-cta{background-color:#ffd970;border-color:transparent;color:rgba(0,0,0,0.7)}.file.is-danger .file-cta{background-color:#dd3700;border-color:transparent;color:#fff}.file.is-danger:hover .file-cta,.file.is-danger.is-hovered .file-cta{background-color:#d03400;border-color:transparent;color:#fff}.file.is-danger:focus .file-cta,.file.is-danger.is-focused .file-cta{border-color:transparent;box-shadow:0 0 0.5em rgba(221,55,0,0.25);color:#fff}.file.is-danger:active .file-cta,.file.is-danger.is-active .file-cta{background-color:#c43100;border-color:transparent;color:#fff}.file.is-small{font-size:.75rem}.file.is-normal{font-size:1rem}.file.is-medium{font-size:1.25rem}.file.is-medium .file-icon .fa{font-size:21px}.file.is-large{font-size:1.5rem}.file.is-large .file-icon .fa{font-size:28px}.file.has-name .file-cta{border-bottom-right-radius:0;border-top-right-radius:0}.file.has-name .file-name{border-bottom-left-radius:0;border-top-left-radius:0}.file.has-name.is-empty .file-cta{border-radius:4px}.file.has-name.is-empty .file-name{display:none}.file.is-boxed .file-label{flex-direction:column}.file.is-boxed .file-cta{flex-direction:column;height:auto;padding:1em 3em}.file.is-boxed .file-name{border-width:0 1px 1px}.file.is-boxed .file-icon{height:1.5em;width:1.5em}.file.is-boxed .file-icon .fa{font-size:21px}.file.is-boxed.is-small .file-icon .fa{font-size:14px}.file.is-boxed.is-medium .file-icon .fa{font-size:28px}.file.is-boxed.is-large .file-icon .fa{font-size:35px}.file.is-boxed.has-name .file-cta{border-radius:4px 4px 0 0}.file.is-boxed.has-name .file-name{border-radius:0 0 4px 4px;border-width:0 1px 1px}.file.is-centered{justify-content:center}.file.is-fullwidth .file-label{width:100%}.file.is-fullwidth .file-name{flex-grow:1;max-width:none}.file.is-right{justify-content:flex-end}.file.is-right .file-cta{border-radius:0 4px 4px 0}.file.is-right .file-name{border-radius:4px 0 0 4px;border-width:1px 0 1px 1px;order:-1}.file-label{align-items:stretch;display:flex;cursor:pointer;justify-content:flex-start;overflow:hidden;position:relative}.file-label:hover .file-cta{background-color:#eee;color:#363636}.file-label:hover .file-name{border-color:#d5d5d5}.file-label:active .file-cta{background-color:#e8e8e8;color:#363636}.file-label:active .file-name{border-color:#cfcfcf}.file-input{height:100%;left:0;opacity:0;outline:none;position:absolute;top:0;width:100%}.file-cta,.file-name{border-color:#dbdbdb;border-radius:4px;font-size:1em;padding-left:1em;padding-right:1em;white-space:nowrap}.file-cta{background-color:#f5f5f5;color:#4a4a4a}.file-name{border-color:#dbdbdb;border-style:solid;border-width:1px 1px 1px 0;display:block;max-width:16em;overflow:hidden;text-align:inherit;text-overflow:ellipsis}.file-icon{align-items:center;display:flex;height:1em;justify-content:center;margin-right:.5em;width:1em}.file-icon .fa{font-size:14px}.label{color:#363636;display:block;font-size:1rem;font-weight:700}.label:not(:last-child){margin-bottom:0.5em}.label.is-small{font-size:.75rem}.label.is-medium{font-size:1.25rem}.label.is-large{font-size:1.5rem}.help{display:block;font-size:.75rem;margin-top:0.25rem}.help.is-white{color:#fff}.help.is-black{color:#000}.help.is-light{color:#f5f5f5}.help.is-dark{color:#363636}.help.is-primary{color:#0060af}.help.is-link{color:#0060af}.help.is-info{color:#3e8ed0}.help.is-success{color:#007373}.help.is-warning{color:#ffe08a}.help.is-danger{color:#dd3700}.field:not(:last-child){margin-bottom:0.75rem}.field.has-addons{display:flex;justify-content:flex-start}.field.has-addons .control:not(:last-child){margin-right:-1px}.field.has-addons .control:not(:first-child):not(:last-child) .button,.field.has-addons .control:not(:first-child):not(:last-child) .input,.field.has-addons .control:not(:first-child):not(:last-child) .select select{border-radius:0}.field.has-addons .control:first-child:not(:only-child) .button,.field.has-addons .control:first-child:not(:only-child) .input,.field.has-addons .control:first-child:not(:only-child) .select select{border-bottom-right-radius:0;border-top-right-radius:0}.field.has-addons .control:last-child:not(:only-child) .button,.field.has-addons .control:last-child:not(:only-child) .input,.field.has-addons .control:last-child:not(:only-child) .select select{border-bottom-left-radius:0;border-top-left-radius:0}.field.has-addons .control .button:not([disabled]):hover,.field.has-addons .control .button:not([disabled]).is-hovered,.field.has-addons .control .input:not([disabled]):hover,.field.has-addons .control .input:not([disabled]).is-hovered,.field.has-addons .control .select select:not([disabled]):hover,.field.has-addons .control .select select:not([disabled]).is-hovered{z-index:2}.field.has-addons .control .button:not([disabled]):focus,.field.has-addons .control .button:not([disabled]).is-focused,.field.has-addons .control .button:not([disabled]):active,.field.has-addons .control .button:not([disabled]).is-active,.field.has-addons .control .input:not([disabled]):focus,.field.has-addons .control .input:not([disabled]).is-focused,.field.has-addons .control .input:not([disabled]):active,.field.has-addons .control .input:not([disabled]).is-active,.field.has-addons .control .select select:not([disabled]):focus,.field.has-addons .control .select select:not([disabled]).is-focused,.field.has-addons .control .select select:not([disabled]):active,.field.has-addons .control .select select:not([disabled]).is-active{z-index:3}.field.has-addons .control .button:not([disabled]):focus:hover,.field.has-addons .control .button:not([disabled]).is-focused:hover,.field.has-addons .control .button:not([disabled]):active:hover,.field.has-addons .control .button:not([disabled]).is-active:hover,.field.has-addons .control .input:not([disabled]):focus:hover,.field.has-addons .control .input:not([disabled]).is-focused:hover,.field.has-addons .control .input:not([disabled]):active:hover,.field.has-addons .control .input:not([disabled]).is-active:hover,.field.has-addons .control .select select:not([disabled]):focus:hover,.field.has-addons .control .select select:not([disabled]).is-focused:hover,.field.has-addons .control .select select:not([disabled]):active:hover,.field.has-addons .control .select select:not([disabled]).is-active:hover{z-index:4}.field.has-addons .control.is-expanded{flex-grow:1;flex-shrink:1}.field.has-addons.has-addons-centered{justify-content:center}.field.has-addons.has-addons-right{justify-content:flex-end}.field.has-addons.has-addons-fullwidth .control{flex-grow:1;flex-shrink:0}.field.is-grouped{display:flex;justify-content:flex-start}.field.is-grouped>.control{flex-shrink:0}.field.is-grouped>.control:not(:last-child){margin-bottom:0;margin-right:.75rem}.field.is-grouped>.control.is-expanded{flex-grow:1;flex-shrink:1}.field.is-grouped.is-grouped-centered{justify-content:center}.field.is-grouped.is-grouped-right{justify-content:flex-end}.field.is-grouped.is-grouped-multiline{flex-wrap:wrap}.field.is-grouped.is-grouped-multiline>.control:last-child,.field.is-grouped.is-grouped-multiline>.control:not(:last-child){margin-bottom:0.75rem}.field.is-grouped.is-grouped-multiline:last-child{margin-bottom:-0.75rem}.field.is-grouped.is-grouped-multiline:not(:last-child){margin-bottom:0}@media screen and (min-width: 612px), print{.field.is-horizontal{display:flex}}.field-label .label{font-size:inherit}@media screen and (max-width: 611px){.field-label{margin-bottom:0.5rem}}@media screen and (min-width: 612px), print{.field-label{flex-basis:0;flex-grow:1;flex-shrink:0;margin-right:1.5rem;text-align:right}.field-label.is-small{font-size:.75rem;padding-top:0.375em}.field-label.is-normal{padding-top:0.375em}.field-label.is-medium{font-size:1.25rem;padding-top:0.375em}.field-label.is-large{font-size:1.5rem;padding-top:0.375em}}.field-body .field .field{margin-bottom:0}@media screen and (min-width: 612px), print{.field-body{display:flex;flex-basis:0;flex-grow:5;flex-shrink:1}.field-body .field{margin-bottom:0}.field-body>.field{flex-shrink:1}.field-body>.field:not(.is-narrow){flex-grow:1}.field-body>.field:not(:last-child){margin-right:.75rem}}.control{box-sizing:border-box;clear:both;font-size:1rem;position:relative;text-align:inherit}.control.has-icons-left .input:focus ~ .icon,.control.has-icons-left .select:focus ~ .icon,.control.has-icons-right .input:focus ~ .icon,.control.has-icons-right .select:focus ~ .icon{color:#4a4a4a}.control.has-icons-left .input.is-small ~ .icon,.control.has-icons-left .select.is-small ~ .icon,.control.has-icons-right .input.is-small ~ .icon,.control.has-icons-right .select.is-small ~ .icon{font-size:.75rem}.control.has-icons-left .input.is-medium ~ .icon,.control.has-icons-left .select.is-medium ~ .icon,.control.has-icons-right .input.is-medium ~ .icon,.control.has-icons-right .select.is-medium ~ .icon{font-size:1.25rem}.control.has-icons-left .input.is-large ~ .icon,.control.has-icons-left .select.is-large ~ .icon,.control.has-icons-right .input.is-large ~ .icon,.control.has-icons-right .select.is-large ~ .icon{font-size:1.5rem}.control.has-icons-left .icon,.control.has-icons-right .icon{color:#dbdbdb;height:2.5em;pointer-events:none;position:absolute;top:0;width:2.5em;z-index:4}.control.has-icons-left .input,.control.has-icons-left .select select{padding-left:2.5em}.control.has-icons-left .icon.is-left{left:0}.control.has-icons-right .input,.control.has-icons-right .select select{padding-right:2.5em}.control.has-icons-right .icon.is-right{right:0}.control.is-loading::after{position:absolute !important;right:.625em;top:0.625em;z-index:4}.control.is-loading.is-small:after{font-size:.75rem}.control.is-loading.is-medium:after{font-size:1.25rem}.control.is-loading.is-large:after{font-size:1.5rem}.breadcrumb{font-size:1rem;white-space:nowrap}.breadcrumb a{align-items:center;color:#0060af;display:flex;justify-content:center;padding:0 .75em}.breadcrumb a:hover{color:#363636}.breadcrumb li{align-items:center;display:flex}.breadcrumb li:first-child a{padding-left:0}.breadcrumb li.is-active a{color:#363636;cursor:default;pointer-events:none}.breadcrumb li+li::before{color:#b5b5b5;content:"\0002f"}.breadcrumb ul,.breadcrumb ol{align-items:flex-start;display:flex;flex-wrap:wrap;justify-content:flex-start}.breadcrumb .icon:first-child{margin-right:.5em}.breadcrumb .icon:last-child{margin-left:.5em}.breadcrumb.is-centered ol,.breadcrumb.is-centered ul{justify-content:center}.breadcrumb.is-right ol,.breadcrumb.is-right ul{justify-content:flex-end}.breadcrumb.is-small{font-size:.75rem}.breadcrumb.is-medium{font-size:1.25rem}.breadcrumb.is-large{font-size:1.5rem}.breadcrumb.has-arrow-separator li+li::before{content:"\02192"}.breadcrumb.has-bullet-separator li+li::before{content:"\02022"}.breadcrumb.has-dot-separator li+li::before{content:"\000b7"}.breadcrumb.has-succeeds-separator li+li::before{content:"\0227B"}.card{background-color:#fff;border-radius:.25rem;box-shadow:0 0.5em 1em -0.125em rgba(0,0,0,0.1),0 0px 0 1px rgba(0,0,0,0.02);color:#4a4a4a;max-width:100%;position:relative}.card-header:first-child,.card-content:first-child,.card-footer:first-child{border-top-left-radius:.25rem;border-top-right-radius:.25rem}.card-header:last-child,.card-content:last-child,.card-footer:last-child{border-bottom-left-radius:.25rem;border-bottom-right-radius:.25rem}.card-header{background-color:rgba(0,0,0,0);align-items:stretch;box-shadow:0 0.125em 0.25em rgba(0,0,0,0.1);display:flex}.card-header-title{align-items:center;color:#363636;display:flex;flex-grow:1;font-weight:700;padding:0.75rem 1rem}.card-header-title.is-centered{justify-content:center}.card-header-icon{-moz-appearance:none;-webkit-appearance:none;appearance:none;background:none;border:none;color:currentColor;font-family:inherit;font-size:1em;margin:0;padding:0;align-items:center;cursor:pointer;display:flex;justify-content:center;padding:0.75rem 1rem}.card-image{display:block;position:relative}.card-image:first-child img{border-top-left-radius:.25rem;border-top-right-radius:.25rem}.card-image:last-child img{border-bottom-left-radius:.25rem;border-bottom-right-radius:.25rem}.card-content{background-color:rgba(0,0,0,0);padding:1.5rem}.card-footer{background-color:rgba(0,0,0,0);border-top:1px solid #ededed;align-items:stretch;display:flex}.card-footer-item{align-items:center;display:flex;flex-basis:0;flex-grow:1;flex-shrink:0;justify-content:center;padding:.75rem}.card-footer-item:not(:last-child){border-right:1px solid #ededed}.card .media:not(:last-child){margin-bottom:1.5rem}.dropdown{display:inline-flex;position:relative;vertical-align:top}.dropdown.is-active .dropdown-menu,.dropdown.is-hoverable:hover .dropdown-menu{display:block}.dropdown.is-right .dropdown-menu{left:auto;right:0}.dropdown.is-up .dropdown-menu{bottom:100%;padding-bottom:4px;padding-top:initial;top:auto}.dropdown-menu{display:none;left:0;min-width:12rem;padding-top:4px;position:absolute;top:100%;z-index:20}.dropdown-content{background-color:#fff;border-radius:4px;box-shadow:0 0.5em 1em -0.125em rgba(0,0,0,0.1),0 0px 0 1px rgba(0,0,0,0.02);padding-bottom:.5rem;padding-top:.5rem}.dropdown-item{color:#4a4a4a;display:block;font-size:0.875rem;line-height:1.5;padding:0.375rem 1rem;position:relative}a.dropdown-item,button.dropdown-item{padding-right:3rem;text-align:inherit;white-space:nowrap;width:100%}a.dropdown-item:hover,button.dropdown-item:hover{background-color:#f5f5f5;color:#000}a.dropdown-item.is-active,button.dropdown-item.is-active{background-color:#0060af;color:#fff}.dropdown-divider{background-color:#ededed;border:none;display:block;height:1px;margin:0.5rem 0}.level{align-items:center;justify-content:space-between}.level code{border-radius:4px}.level img{display:inline-block;vertical-align:top}.level.is-mobile{display:flex}.level.is-mobile .level-left,.level.is-mobile .level-right{display:flex}.level.is-mobile .level-left+.level-right{margin-top:0}.level.is-mobile .level-item:not(:last-child){margin-bottom:0;margin-right:.75rem}.level.is-mobile .level-item:not(.is-narrow){flex-grow:1}@media screen and (min-width: 612px), print{.level{display:flex}.level>.level-item:not(.is-narrow){flex-grow:1}}.level-item{align-items:center;display:flex;flex-basis:auto;flex-grow:0;flex-shrink:0;justify-content:center}.level-item .title,.level-item .subtitle{margin-bottom:0}@media screen and (max-width: 611px){.level-item:not(:last-child){margin-bottom:.75rem}}.level-left,.level-right{flex-basis:auto;flex-grow:0;flex-shrink:0}.level-left .level-item.is-flexible,.level-right .level-item.is-flexible{flex-grow:1}@media screen and (min-width: 612px), print{.level-left .level-item:not(:last-child),.level-right .level-item:not(:last-child){margin-right:.75rem}}.level-left{align-items:center;justify-content:flex-start}@media screen and (max-width: 611px){.level-left+.level-right{margin-top:1.5rem}}@media screen and (min-width: 612px), print{.level-left{display:flex}}.level-right{align-items:center;justify-content:flex-end}@media screen and (min-width: 612px), print{.level-right{display:flex}}.media{align-items:flex-start;display:flex;text-align:inherit}.media .content:not(:last-child){margin-bottom:.75rem}.media .media{border-top:1px solid rgba(219,219,219,0.5);display:flex;padding-top:.75rem}.media .media .content:not(:last-child),.media .media .control:not(:last-child){margin-bottom:.5rem}.media .media .media{padding-top:.5rem}.media .media .media+.media{margin-top:.5rem}.media+.media{border-top:1px solid rgba(219,219,219,0.5);margin-top:1rem;padding-top:1rem}.media.is-large+.media{margin-top:1.5rem;padding-top:1.5rem}.media-left,.media-right{flex-basis:auto;flex-grow:0;flex-shrink:0}.media-left{margin-right:1rem}.media-right{margin-left:1rem}.media-content{flex-basis:auto;flex-grow:1;flex-shrink:1;text-align:inherit}@media screen and (max-width: 611px){.media-content{overflow-x:auto}}.menu{font-size:1rem}.menu.is-small{font-size:.75rem}.menu.is-medium{font-size:1.25rem}.menu.is-large{font-size:1.5rem}.menu-list{line-height:1.25}.menu-list a{border-radius:2px;color:#4a4a4a;display:block;padding:0.5em 0.75em}.menu-list a:hover{background-color:#f5f5f5;color:#363636}.menu-list a.is-active{background-color:#0060af;color:#fff}.menu-list li ul{border-left:1px solid #dbdbdb;margin:.75em;padding-left:.75em}.menu-label{color:#767676;font-size:.75em;letter-spacing:.1em;text-transform:uppercase}.menu-label:not(:first-child){margin-top:1em}.menu-label:not(:last-child){margin-bottom:1em}.message{background-color:#f5f5f5;border-radius:4px;font-size:1rem}.message strong{color:currentColor}.message a:not(.button):not(.tag):not(.dropdown-item){color:currentColor;text-decoration:underline}.message.is-small{font-size:.75rem}.message.is-medium{font-size:1.25rem}.message.is-large{font-size:1.5rem}.message.is-white{background-color:#fff}.message.is-white .message-header{background-color:#fff;color:#000}.message.is-white .message-body{border-color:#fff}.message.is-black{background-color:#fafafa}.message.is-black .message-header{background-color:#000;color:#fff}.message.is-black .message-body{border-color:#000}.message.is-light{background-color:#fafafa}.message.is-light .message-header{background-color:#f5f5f5;color:rgba(0,0,0,0.7)}.message.is-light .message-body{border-color:#f5f5f5}.message.is-dark{background-color:#fafafa}.message.is-dark .message-header{background-color:#363636;color:#fff}.message.is-dark .message-body{border-color:#363636}.message.is-primary{background-color:#ebf6ff}.message.is-primary .message-header{background-color:#0060af;color:#fff}.message.is-primary .message-body{border-color:#0060af;color:#0089fa}.message.is-link{background-color:#ebf6ff}.message.is-link .message-header{background-color:#0060af;color:#fff}.message.is-link .message-body{border-color:#0060af;color:#0089fa}.message.is-info{background-color:#eff5fb}.message.is-info .message-header{background-color:#3e8ed0;color:#fff}.message.is-info .message-body{border-color:#3e8ed0;color:#296fa8}.message.is-success{background-color:#ebffff}.message.is-success .message-header{background-color:#007373;color:#fff}.message.is-success .message-body{border-color:#007373;color:#00f0f0}.message.is-warning{background-color:#fffaeb}.message.is-warning .message-header{background-color:#ffe08a;color:rgba(0,0,0,0.7)}.message.is-warning .message-body{border-color:#ffe08a;color:#946c00}.message.is-danger{background-color:#fff0eb}.message.is-danger .message-header{background-color:#dd3700;color:#fff}.message.is-danger .message-body{border-color:#dd3700;color:#eb3a00}.message-header{align-items:center;background-color:#4a4a4a;border-radius:4px 4px 0 0;color:#fff;display:flex;font-weight:700;justify-content:space-between;line-height:1.25;padding:0.75em 1em;position:relative}.message-header .delete{flex-grow:0;flex-shrink:0;margin-left:.75em}.message-header+.message-body{border-width:0;border-top-left-radius:0;border-top-right-radius:0}.message-body{border-color:#dbdbdb;border-radius:4px;border-style:solid;border-width:0 0 0 4px;color:#4a4a4a;padding:1.25em 1.5em}.message-body code,.message-body pre{background-color:#fff}.message-body pre code{background-color:rgba(0,0,0,0)}.modal{align-items:center;display:none;flex-direction:column;justify-content:center;overflow:hidden;position:fixed;z-index:40}.modal.is-active{display:flex}.modal-background{background-color:rgba(0,0,0,0.86)}.modal-content,.modal-card{margin:0 20px;max-height:calc(100vh - 160px);overflow:auto;position:relative;width:100%}@media screen and (min-width: 612px){.modal-content,.modal-card{margin:0 auto;max-height:calc(100vh - 40px);width:640px}}.modal-close{background:none;height:40px;position:fixed;right:20px;top:20px;width:40px}.modal-card{display:flex;flex-direction:column;max-height:calc(100vh - 40px);overflow:hidden;-ms-overflow-y:visible}.modal-card-head,.modal-card-foot{align-items:center;background-color:#f5f5f5;display:flex;flex-shrink:0;justify-content:flex-start;padding:20px;position:relative}.modal-card-head{border-bottom:1px solid #dbdbdb;border-top-left-radius:6px;border-top-right-radius:6px}.modal-card-title{color:#363636;flex-grow:1;flex-shrink:0;font-size:1.5rem;line-height:1}.modal-card-foot{border-bottom-left-radius:6px;border-bottom-right-radius:6px;border-top:1px solid #dbdbdb}.modal-card-foot .button:not(:last-child){margin-right:.5em}.modal-card-body{-webkit-overflow-scrolling:touch;background-color:#fff;flex-grow:1;flex-shrink:1;overflow:auto;padding:20px}.navbar{background-color:#fff;min-height:3.25rem;position:relative;z-index:30}.navbar.is-white{background-color:#fff;color:#000}.navbar.is-white .navbar-brand>.navbar-item,.navbar.is-white .navbar-brand .navbar-link{color:#000}.navbar.is-white .navbar-brand>a.navbar-item:focus,.navbar.is-white .navbar-brand>a.navbar-item:hover,.navbar.is-white .navbar-brand>a.navbar-item.is-active,.navbar.is-white .navbar-brand .navbar-link:focus,.navbar.is-white .navbar-brand .navbar-link:hover,.navbar.is-white .navbar-brand .navbar-link.is-active{background-color:#f2f2f2;color:#000}.navbar.is-white .navbar-brand .navbar-link::after{border-color:#000}.navbar.is-white .navbar-burger{color:#000}@media screen and (min-width: 1098px){.navbar.is-white .navbar-start>.navbar-item,.navbar.is-white .navbar-start .navbar-link,.navbar.is-white .navbar-end>.navbar-item,.navbar.is-white .navbar-end .navbar-link{color:#000}.navbar.is-white .navbar-start>a.navbar-item:focus,.navbar.is-white .navbar-start>a.navbar-item:hover,.navbar.is-white .navbar-start>a.navbar-item.is-active,.navbar.is-white .navbar-start .navbar-link:focus,.navbar.is-white .navbar-start .navbar-link:hover,.navbar.is-white .navbar-start .navbar-link.is-active,.navbar.is-white .navbar-end>a.navbar-item:focus,.navbar.is-white .navbar-end>a.navbar-item:hover,.navbar.is-white .navbar-end>a.navbar-item.is-active,.navbar.is-white .navbar-end .navbar-link:focus,.navbar.is-white .navbar-end .navbar-link:hover,.navbar.is-white .navbar-end .navbar-link.is-active{background-color:#f2f2f2;color:#000}.navbar.is-white .navbar-start .navbar-link::after,.navbar.is-white .navbar-end .navbar-link::after{border-color:#000}.navbar.is-white .navbar-item.has-dropdown:focus .navbar-link,.navbar.is-white .navbar-item.has-dropdown:hover .navbar-link,.navbar.is-white .navbar-item.has-dropdown.is-active .navbar-link{background-color:#f2f2f2;color:#000}.navbar.is-white .navbar-dropdown a.navbar-item.is-active{background-color:#fff;color:#000}}.navbar.is-black{background-color:#000;color:#fff}.navbar.is-black .navbar-brand>.navbar-item,.navbar.is-black .navbar-brand .navbar-link{color:#fff}.navbar.is-black .navbar-brand>a.navbar-item:focus,.navbar.is-black .navbar-brand>a.navbar-item:hover,.navbar.is-black .navbar-brand>a.navbar-item.is-active,.navbar.is-black .navbar-brand .navbar-link:focus,.navbar.is-black .navbar-brand .navbar-link:hover,.navbar.is-black .navbar-brand .navbar-link.is-active{background-color:#000;color:#fff}.navbar.is-black .navbar-brand .navbar-link::after{border-color:#fff}.navbar.is-black .navbar-burger{color:#fff}@media screen and (min-width: 1098px){.navbar.is-black .navbar-start>.navbar-item,.navbar.is-black .navbar-start .navbar-link,.navbar.is-black .navbar-end>.navbar-item,.navbar.is-black .navbar-end .navbar-link{color:#fff}.navbar.is-black .navbar-start>a.navbar-item:focus,.navbar.is-black .navbar-start>a.navbar-item:hover,.navbar.is-black .navbar-start>a.navbar-item.is-active,.navbar.is-black .navbar-start .navbar-link:focus,.navbar.is-black .navbar-start .navbar-link:hover,.navbar.is-black .navbar-start .navbar-link.is-active,.navbar.is-black .navbar-end>a.navbar-item:focus,.navbar.is-black .navbar-end>a.navbar-item:hover,.navbar.is-black .navbar-end>a.navbar-item.is-active,.navbar.is-black .navbar-end .navbar-link:focus,.navbar.is-black .navbar-end .navbar-link:hover,.navbar.is-black .navbar-end .navbar-link.is-active{background-color:#000;color:#fff}.navbar.is-black .navbar-start .navbar-link::after,.navbar.is-black .navbar-end .navbar-link::after{border-color:#fff}.navbar.is-black .navbar-item.has-dropdown:focus .navbar-link,.navbar.is-black .navbar-item.has-dropdown:hover .navbar-link,.navbar.is-black .navbar-item.has-dropdown.is-active .navbar-link{background-color:#000;color:#fff}.navbar.is-black .navbar-dropdown a.navbar-item.is-active{background-color:#000;color:#fff}}.navbar.is-light{background-color:#f5f5f5;color:rgba(0,0,0,0.7)}.navbar.is-light .navbar-brand>.navbar-item,.navbar.is-light .navbar-brand .navbar-link{color:rgba(0,0,0,0.7)}.navbar.is-light .navbar-brand>a.navbar-item:focus,.navbar.is-light .navbar-brand>a.navbar-item:hover,.navbar.is-light .navbar-brand>a.navbar-item.is-active,.navbar.is-light .navbar-brand .navbar-link:focus,.navbar.is-light .navbar-brand .navbar-link:hover,.navbar.is-light .navbar-brand .navbar-link.is-active{background-color:#e8e8e8;color:rgba(0,0,0,0.7)}.navbar.is-light .navbar-brand .navbar-link::after{border-color:rgba(0,0,0,0.7)}.navbar.is-light .navbar-burger{color:rgba(0,0,0,0.7)}@media screen and (min-width: 1098px){.navbar.is-light .navbar-start>.navbar-item,.navbar.is-light .navbar-start .navbar-link,.navbar.is-light .navbar-end>.navbar-item,.navbar.is-light .navbar-end .navbar-link{color:rgba(0,0,0,0.7)}.navbar.is-light .navbar-start>a.navbar-item:focus,.navbar.is-light .navbar-start>a.navbar-item:hover,.navbar.is-light .navbar-start>a.navbar-item.is-active,.navbar.is-light .navbar-start .navbar-link:focus,.navbar.is-light .navbar-start .navbar-link:hover,.navbar.is-light .navbar-start .navbar-link.is-active,.navbar.is-light .navbar-end>a.navbar-item:focus,.navbar.is-light .navbar-end>a.navbar-item:hover,.navbar.is-light .navbar-end>a.navbar-item.is-active,.navbar.is-light .navbar-end .navbar-link:focus,.navbar.is-light .navbar-end .navbar-link:hover,.navbar.is-light .navbar-end .navbar-link.is-active{background-color:#e8e8e8;color:rgba(0,0,0,0.7)}.navbar.is-light .navbar-start .navbar-link::after,.navbar.is-light .navbar-end .navbar-link::after{border-color:rgba(0,0,0,0.7)}.navbar.is-light .navbar-item.has-dropdown:focus .navbar-link,.navbar.is-light .navbar-item.has-dropdown:hover .navbar-link,.navbar.is-light .navbar-item.has-dropdown.is-active .navbar-link{background-color:#e8e8e8;color:rgba(0,0,0,0.7)}.navbar.is-light .navbar-dropdown a.navbar-item.is-active{background-color:#f5f5f5;color:rgba(0,0,0,0.7)}}.navbar.is-dark{background-color:#363636;color:#fff}.navbar.is-dark .navbar-brand>.navbar-item,.navbar.is-dark .navbar-brand .navbar-link{color:#fff}.navbar.is-dark .navbar-brand>a.navbar-item:focus,.navbar.is-dark .navbar-brand>a.navbar-item:hover,.navbar.is-dark .navbar-brand>a.navbar-item.is-active,.navbar.is-dark .navbar-brand .navbar-link:focus,.navbar.is-dark .navbar-brand .navbar-link:hover,.navbar.is-dark .navbar-brand .navbar-link.is-active{background-color:#292929;color:#fff}.navbar.is-dark .navbar-brand .navbar-link::after{border-color:#fff}.navbar.is-dark .navbar-burger{color:#fff}@media screen and (min-width: 1098px){.navbar.is-dark .navbar-start>.navbar-item,.navbar.is-dark .navbar-start .navbar-link,.navbar.is-dark .navbar-end>.navbar-item,.navbar.is-dark .navbar-end .navbar-link{color:#fff}.navbar.is-dark .navbar-start>a.navbar-item:focus,.navbar.is-dark .navbar-start>a.navbar-item:hover,.navbar.is-dark .navbar-start>a.navbar-item.is-active,.navbar.is-dark .navbar-start .navbar-link:focus,.navbar.is-dark .navbar-start .navbar-link:hover,.navbar.is-dark .navbar-start .navbar-link.is-active,.navbar.is-dark .navbar-end>a.navbar-item:focus,.navbar.is-dark .navbar-end>a.navbar-item:hover,.navbar.is-dark .navbar-end>a.navbar-item.is-active,.navbar.is-dark .navbar-end .navbar-link:focus,.navbar.is-dark .navbar-end .navbar-link:hover,.navbar.is-dark .navbar-end .navbar-link.is-active{background-color:#292929;color:#fff}.navbar.is-dark .navbar-start .navbar-link::after,.navbar.is-dark .navbar-end .navbar-link::after{border-color:#fff}.navbar.is-dark .navbar-item.has-dropdown:focus .navbar-link,.navbar.is-dark .navbar-item.has-dropdown:hover .navbar-link,.navbar.is-dark .navbar-item.has-dropdown.is-active .navbar-link{background-color:#292929;color:#fff}.navbar.is-dark .navbar-dropdown a.navbar-item.is-active{background-color:#363636;color:#fff}}.navbar.is-primary{background-color:#0060af;color:#fff}.navbar.is-primary .navbar-brand>.navbar-item,.navbar.is-primary .navbar-brand .navbar-link{color:#fff}.navbar.is-primary .navbar-brand>a.navbar-item:focus,.navbar.is-primary .navbar-brand>a.navbar-item:hover,.navbar.is-primary .navbar-brand>a.navbar-item.is-active,.navbar.is-primary .navbar-brand .navbar-link:focus,.navbar.is-primary .navbar-brand .navbar-link:hover,.navbar.is-primary .navbar-brand .navbar-link.is-active{background-color:#005296;color:#fff}.navbar.is-primary .navbar-brand .navbar-link::after{border-color:#fff}.navbar.is-primary .navbar-burger{color:#fff}@media screen and (min-width: 1098px){.navbar.is-primary .navbar-start>.navbar-item,.navbar.is-primary .navbar-start .navbar-link,.navbar.is-primary .navbar-end>.navbar-item,.navbar.is-primary .navbar-end .navbar-link{color:#fff}.navbar.is-primary .navbar-start>a.navbar-item:focus,.navbar.is-primary .navbar-start>a.navbar-item:hover,.navbar.is-primary .navbar-start>a.navbar-item.is-active,.navbar.is-primary .navbar-start .navbar-link:focus,.navbar.is-primary .navbar-start .navbar-link:hover,.navbar.is-primary .navbar-start .navbar-link.is-active,.navbar.is-primary .navbar-end>a.navbar-item:focus,.navbar.is-primary .navbar-end>a.navbar-item:hover,.navbar.is-primary .navbar-end>a.navbar-item.is-active,.navbar.is-primary .navbar-end .navbar-link:focus,.navbar.is-primary .navbar-end .navbar-link:hover,.navbar.is-primary .navbar-end .navbar-link.is-active{background-color:#005296;color:#fff}.navbar.is-primary .navbar-start .navbar-link::after,.navbar.is-primary .navbar-end .navbar-link::after{border-color:#fff}.navbar.is-primary .navbar-item.has-dropdown:focus .navbar-link,.navbar.is-primary .navbar-item.has-dropdown:hover .navbar-link,.navbar.is-primary .navbar-item.has-dropdown.is-active .navbar-link{background-color:#005296;color:#fff}.navbar.is-primary .navbar-dropdown a.navbar-item.is-active{background-color:#0060af;color:#fff}}.navbar.is-link{background-color:#0060af;color:#fff}.navbar.is-link .navbar-brand>.navbar-item,.navbar.is-link .navbar-brand .navbar-link{color:#fff}.navbar.is-link .navbar-brand>a.navbar-item:focus,.navbar.is-link .navbar-brand>a.navbar-item:hover,.navbar.is-link .navbar-brand>a.navbar-item.is-active,.navbar.is-link .navbar-brand .navbar-link:focus,.navbar.is-link .navbar-brand .navbar-link:hover,.navbar.is-link .navbar-brand .navbar-link.is-active{background-color:#005296;color:#fff}.navbar.is-link .navbar-brand .navbar-link::after{border-color:#fff}.navbar.is-link .navbar-burger{color:#fff}@media screen and (min-width: 1098px){.navbar.is-link .navbar-start>.navbar-item,.navbar.is-link .navbar-start .navbar-link,.navbar.is-link .navbar-end>.navbar-item,.navbar.is-link .navbar-end .navbar-link{color:#fff}.navbar.is-link .navbar-start>a.navbar-item:focus,.navbar.is-link .navbar-start>a.navbar-item:hover,.navbar.is-link .navbar-start>a.navbar-item.is-active,.navbar.is-link .navbar-start .navbar-link:focus,.navbar.is-link .navbar-start .navbar-link:hover,.navbar.is-link .navbar-start .navbar-link.is-active,.navbar.is-link .navbar-end>a.navbar-item:focus,.navbar.is-link .navbar-end>a.navbar-item:hover,.navbar.is-link .navbar-end>a.navbar-item.is-active,.navbar.is-link .navbar-end .navbar-link:focus,.navbar.is-link .navbar-end .navbar-link:hover,.navbar.is-link .navbar-end .navbar-link.is-active{background-color:#005296;color:#fff}.navbar.is-link .navbar-start .navbar-link::after,.navbar.is-link .navbar-end .navbar-link::after{border-color:#fff}.navbar.is-link .navbar-item.has-dropdown:focus .navbar-link,.navbar.is-link .navbar-item.has-dropdown:hover .navbar-link,.navbar.is-link .navbar-item.has-dropdown.is-active .navbar-link{background-color:#005296;color:#fff}.navbar.is-link .navbar-dropdown a.navbar-item.is-active{background-color:#0060af;color:#fff}}.navbar.is-info{background-color:#3e8ed0;color:#fff}.navbar.is-info .navbar-brand>.navbar-item,.navbar.is-info .navbar-brand .navbar-link{color:#fff}.navbar.is-info .navbar-brand>a.navbar-item:focus,.navbar.is-info .navbar-brand>a.navbar-item:hover,.navbar.is-info .navbar-brand>a.navbar-item.is-active,.navbar.is-info .navbar-brand .navbar-link:focus,.navbar.is-info .navbar-brand .navbar-link:hover,.navbar.is-info .navbar-brand .navbar-link.is-active{background-color:#3082c5;color:#fff}.navbar.is-info .navbar-brand .navbar-link::after{border-color:#fff}.navbar.is-info .navbar-burger{color:#fff}@media screen and (min-width: 1098px){.navbar.is-info .navbar-start>.navbar-item,.navbar.is-info .navbar-start .navbar-link,.navbar.is-info .navbar-end>.navbar-item,.navbar.is-info .navbar-end .navbar-link{color:#fff}.navbar.is-info .navbar-start>a.navbar-item:focus,.navbar.is-info .navbar-start>a.navbar-item:hover,.navbar.is-info .navbar-start>a.navbar-item.is-active,.navbar.is-info .navbar-start .navbar-link:focus,.navbar.is-info .navbar-start .navbar-link:hover,.navbar.is-info .navbar-start .navbar-link.is-active,.navbar.is-info .navbar-end>a.navbar-item:focus,.navbar.is-info .navbar-end>a.navbar-item:hover,.navbar.is-info .navbar-end>a.navbar-item.is-active,.navbar.is-info .navbar-end .navbar-link:focus,.navbar.is-info .navbar-end .navbar-link:hover,.navbar.is-info .navbar-end .navbar-link.is-active{background-color:#3082c5;color:#fff}.navbar.is-info .navbar-start .navbar-link::after,.navbar.is-info .navbar-end .navbar-link::after{border-color:#fff}.navbar.is-info .navbar-item.has-dropdown:focus .navbar-link,.navbar.is-info .navbar-item.has-dropdown:hover .navbar-link,.navbar.is-info .navbar-item.has-dropdown.is-active .navbar-link{background-color:#3082c5;color:#fff}.navbar.is-info .navbar-dropdown a.navbar-item.is-active{background-color:#3e8ed0;color:#fff}}.navbar.is-success{background-color:#007373;color:#fff}.navbar.is-success .navbar-brand>.navbar-item,.navbar.is-success .navbar-brand .navbar-link{color:#fff}.navbar.is-success .navbar-brand>a.navbar-item:focus,.navbar.is-success .navbar-brand>a.navbar-item:hover,.navbar.is-success .navbar-brand>a.navbar-item.is-active,.navbar.is-success .navbar-brand .navbar-link:focus,.navbar.is-success .navbar-brand .navbar-link:hover,.navbar.is-success .navbar-brand .navbar-link.is-active{background-color:#005a5a;color:#fff}.navbar.is-success .navbar-brand .navbar-link::after{border-color:#fff}.navbar.is-success .navbar-burger{color:#fff}@media screen and (min-width: 1098px){.navbar.is-success .navbar-start>.navbar-item,.navbar.is-success .navbar-start .navbar-link,.navbar.is-success .navbar-end>.navbar-item,.navbar.is-success .navbar-end .navbar-link{color:#fff}.navbar.is-success .navbar-start>a.navbar-item:focus,.navbar.is-success .navbar-start>a.navbar-item:hover,.navbar.is-success .navbar-start>a.navbar-item.is-active,.navbar.is-success .navbar-start .navbar-link:focus,.navbar.is-success .navbar-start .navbar-link:hover,.navbar.is-success .navbar-start .navbar-link.is-active,.navbar.is-success .navbar-end>a.navbar-item:focus,.navbar.is-success .navbar-end>a.navbar-item:hover,.navbar.is-success .navbar-end>a.navbar-item.is-active,.navbar.is-success .navbar-end .navbar-link:focus,.navbar.is-success .navbar-end .navbar-link:hover,.navbar.is-success .navbar-end .navbar-link.is-active{background-color:#005a5a;color:#fff}.navbar.is-success .navbar-start .navbar-link::after,.navbar.is-success .navbar-end .navbar-link::after{border-color:#fff}.navbar.is-success .navbar-item.has-dropdown:focus .navbar-link,.navbar.is-success .navbar-item.has-dropdown:hover .navbar-link,.navbar.is-success .navbar-item.has-dropdown.is-active .navbar-link{background-color:#005a5a;color:#fff}.navbar.is-success .navbar-dropdown a.navbar-item.is-active{background-color:#007373;color:#fff}}.navbar.is-warning{background-color:#ffe08a;color:rgba(0,0,0,0.7)}.navbar.is-warning .navbar-brand>.navbar-item,.navbar.is-warning .navbar-brand .navbar-link{color:rgba(0,0,0,0.7)}.navbar.is-warning .navbar-brand>a.navbar-item:focus,.navbar.is-warning .navbar-brand>a.navbar-item:hover,.navbar.is-warning .navbar-brand>a.navbar-item.is-active,.navbar.is-warning .navbar-brand .navbar-link:focus,.navbar.is-warning .navbar-brand .navbar-link:hover,.navbar.is-warning .navbar-brand .navbar-link.is-active{background-color:#ffd970;color:rgba(0,0,0,0.7)}.navbar.is-warning .navbar-brand .navbar-link::after{border-color:rgba(0,0,0,0.7)}.navbar.is-warning .navbar-burger{color:rgba(0,0,0,0.7)}@media screen and (min-width: 1098px){.navbar.is-warning .navbar-start>.navbar-item,.navbar.is-warning .navbar-start .navbar-link,.navbar.is-warning .navbar-end>.navbar-item,.navbar.is-warning .navbar-end .navbar-link{color:rgba(0,0,0,0.7)}.navbar.is-warning .navbar-start>a.navbar-item:focus,.navbar.is-warning .navbar-start>a.navbar-item:hover,.navbar.is-warning .navbar-start>a.navbar-item.is-active,.navbar.is-warning .navbar-start .navbar-link:focus,.navbar.is-warning .navbar-start .navbar-link:hover,.navbar.is-warning .navbar-start .navbar-link.is-active,.navbar.is-warning .navbar-end>a.navbar-item:focus,.navbar.is-warning .navbar-end>a.navbar-item:hover,.navbar.is-warning .navbar-end>a.navbar-item.is-active,.navbar.is-warning .navbar-end .navbar-link:focus,.navbar.is-warning .navbar-end .navbar-link:hover,.navbar.is-warning .navbar-end .navbar-link.is-active{background-color:#ffd970;color:rgba(0,0,0,0.7)}.navbar.is-warning .navbar-start .navbar-link::after,.navbar.is-warning .navbar-end .navbar-link::after{border-color:rgba(0,0,0,0.7)}.navbar.is-warning .navbar-item.has-dropdown:focus .navbar-link,.navbar.is-warning .navbar-item.has-dropdown:hover .navbar-link,.navbar.is-warning .navbar-item.has-dropdown.is-active .navbar-link{background-color:#ffd970;color:rgba(0,0,0,0.7)}.navbar.is-warning .navbar-dropdown a.navbar-item.is-active{background-color:#ffe08a;color:rgba(0,0,0,0.7)}}.navbar.is-danger{background-color:#dd3700;color:#fff}.navbar.is-danger .navbar-brand>.navbar-item,.navbar.is-danger .navbar-brand .navbar-link{color:#fff}.navbar.is-danger .navbar-brand>a.navbar-item:focus,.navbar.is-danger .navbar-brand>a.navbar-item:hover,.navbar.is-danger .navbar-brand>a.navbar-item.is-active,.navbar.is-danger .navbar-brand .navbar-link:focus,.navbar.is-danger .navbar-brand .navbar-link:hover,.navbar.is-danger .navbar-brand .navbar-link.is-active{background-color:#c43100;color:#fff}.navbar.is-danger .navbar-brand .navbar-link::after{border-color:#fff}.navbar.is-danger .navbar-burger{color:#fff}@media screen and (min-width: 1098px){.navbar.is-danger .navbar-start>.navbar-item,.navbar.is-danger .navbar-start .navbar-link,.navbar.is-danger .navbar-end>.navbar-item,.navbar.is-danger .navbar-end .navbar-link{color:#fff}.navbar.is-danger .navbar-start>a.navbar-item:focus,.navbar.is-danger .navbar-start>a.navbar-item:hover,.navbar.is-danger .navbar-start>a.navbar-item.is-active,.navbar.is-danger .navbar-start .navbar-link:focus,.navbar.is-danger .navbar-start .navbar-link:hover,.navbar.is-danger .navbar-start .navbar-link.is-active,.navbar.is-danger .navbar-end>a.navbar-item:focus,.navbar.is-danger .navbar-end>a.navbar-item:hover,.navbar.is-danger .navbar-end>a.navbar-item.is-active,.navbar.is-danger .navbar-end .navbar-link:focus,.navbar.is-danger .navbar-end .navbar-link:hover,.navbar.is-danger .navbar-end .navbar-link.is-active{background-color:#c43100;color:#fff}.navbar.is-danger .navbar-start .navbar-link::after,.navbar.is-danger .navbar-end .navbar-link::after{border-color:#fff}.navbar.is-danger .navbar-item.has-dropdown:focus .navbar-link,.navbar.is-danger .navbar-item.has-dropdown:hover .navbar-link,.navbar.is-danger .navbar-item.has-dropdown.is-active .navbar-link{background-color:#c43100;color:#fff}.navbar.is-danger .navbar-dropdown a.navbar-item.is-active{background-color:#dd3700;color:#fff}}.navbar>.container{align-items:stretch;display:flex;min-height:3.25rem;width:100%}.navbar.has-shadow{box-shadow:0 2px 0 0 #f5f5f5}.navbar.is-fixed-bottom,.navbar.is-fixed-top{left:0;position:fixed;right:0;z-index:30}.navbar.is-fixed-bottom{bottom:0}.navbar.is-fixed-bottom.has-shadow{box-shadow:0 -2px 0 0 #f5f5f5}.navbar.is-fixed-top{top:0}html.has-navbar-fixed-top,body.has-navbar-fixed-top{padding-top:3.25rem}html.has-navbar-fixed-bottom,body.has-navbar-fixed-bottom{padding-bottom:3.25rem}.navbar-brand,.navbar-tabs{align-items:stretch;display:flex;flex-shrink:0;min-height:3.25rem}.navbar-brand a.navbar-item:focus,.navbar-brand a.navbar-item:hover{background-color:transparent}.navbar-tabs{-webkit-overflow-scrolling:touch;max-width:100vw;overflow-x:auto;overflow-y:hidden}.navbar-burger{color:#4a4a4a;-moz-appearance:none;-webkit-appearance:none;appearance:none;background:none;border:none;cursor:pointer;display:block;height:3.25rem;position:relative;width:3.25rem;margin-left:auto}.navbar-burger span{background-color:currentColor;display:block;height:1px;left:calc(50% - 8px);position:absolute;transform-origin:center;transition-duration:86ms;transition-property:background-color, opacity, transform;transition-timing-function:ease-out;width:16px}.navbar-burger span:nth-child(1){top:calc(50% - 6px)}.navbar-burger span:nth-child(2){top:calc(50% - 1px)}.navbar-burger span:nth-child(3){top:calc(50% + 4px)}.navbar-burger:hover{background-color:rgba(0,0,0,0.05)}.navbar-burger.is-active span:nth-child(1){transform:translateY(5px) rotate(45deg)}.navbar-burger.is-active span:nth-child(2){opacity:0}.navbar-burger.is-active span:nth-child(3){transform:translateY(-5px) rotate(-45deg)}.navbar-menu{display:none}.navbar-item,.navbar-link{color:#4a4a4a;display:block;line-height:1.5;padding:0.5rem 0.75rem;position:relative}.navbar-item .icon:only-child,.navbar-link .icon:only-child{margin-left:-0.25rem;margin-right:-0.25rem}a.navbar-item,.navbar-link{cursor:pointer}a.navbar-item:focus,a.navbar-item:focus-within,a.navbar-item:hover,a.navbar-item.is-active,.navbar-link:focus,.navbar-link:focus-within,.navbar-link:hover,.navbar-link.is-active{background-color:#fafafa;color:#0060af}.navbar-item{flex-grow:0;flex-shrink:0}.navbar-item img{max-height:1.75rem}.navbar-item.has-dropdown{padding:0}.navbar-item.is-expanded{flex-grow:1;flex-shrink:1}.navbar-item.is-tab{border-bottom:1px solid transparent;min-height:3.25rem;padding-bottom:calc(0.5rem - 1px)}.navbar-item.is-tab:focus,.navbar-item.is-tab:hover{background-color:rgba(0,0,0,0);border-bottom-color:#0060af}.navbar-item.is-tab.is-active{background-color:rgba(0,0,0,0);border-bottom-color:#0060af;border-bottom-style:solid;border-bottom-width:3px;color:#0060af;padding-bottom:calc(0.5rem - 3px)}.navbar-content{flex-grow:1;flex-shrink:1}.navbar-link:not(.is-arrowless){padding-right:2.5em}.navbar-link:not(.is-arrowless)::after{border-color:#0060af;margin-top:-0.375em;right:1.125em}.navbar-dropdown{font-size:0.875rem;padding-bottom:0.5rem;padding-top:0.5rem}.navbar-dropdown .navbar-item{padding-left:1.5rem;padding-right:1.5rem}.navbar-divider{background-color:#f5f5f5;border:none;display:none;height:2px;margin:0.5rem 0}@media screen and (max-width: 1097px){.navbar>.container{display:block}.navbar-brand .navbar-item,.navbar-tabs .navbar-item{align-items:center;display:flex}.navbar-link::after{display:none}.navbar-menu{background-color:#fff;box-shadow:0 8px 16px rgba(0,0,0,0.1);padding:0.5rem 0}.navbar-menu.is-active{display:block}.navbar.is-fixed-bottom-touch,.navbar.is-fixed-top-touch{left:0;position:fixed;right:0;z-index:30}.navbar.is-fixed-bottom-touch{bottom:0}.navbar.is-fixed-bottom-touch.has-shadow{box-shadow:0 -2px 3px rgba(0,0,0,0.1)}.navbar.is-fixed-top-touch{top:0}.navbar.is-fixed-top .navbar-menu,.navbar.is-fixed-top-touch .navbar-menu{-webkit-overflow-scrolling:touch;max-height:calc(100vh - 3.25rem);overflow:auto}html.has-navbar-fixed-top-touch,body.has-navbar-fixed-top-touch{padding-top:3.25rem}html.has-navbar-fixed-bottom-touch,body.has-navbar-fixed-bottom-touch{padding-bottom:3.25rem}}@media screen and (min-width: 1098px){.navbar,.navbar-menu,.navbar-start,.navbar-end{align-items:stretch;display:flex}.navbar{min-height:3.25rem}.navbar.is-spaced{padding:1rem 2rem}.navbar.is-spaced .navbar-start,.navbar.is-spaced .navbar-end{align-items:center}.navbar.is-spaced a.navbar-item,.navbar.is-spaced .navbar-link{border-radius:4px}.navbar.is-transparent a.navbar-item:focus,.navbar.is-transparent a.navbar-item:hover,.navbar.is-transparent a.navbar-item.is-active,.navbar.is-transparent .navbar-link:focus,.navbar.is-transparent .navbar-link:hover,.navbar.is-transparent .navbar-link.is-active{background-color:transparent !important}.navbar.is-transparent .navbar-item.has-dropdown.is-active .navbar-link,.navbar.is-transparent .navbar-item.has-dropdown.is-hoverable:focus .navbar-link,.navbar.is-transparent .navbar-item.has-dropdown.is-hoverable:focus-within .navbar-link,.navbar.is-transparent .navbar-item.has-dropdown.is-hoverable:hover .navbar-link{background-color:transparent !important}.navbar.is-transparent .navbar-dropdown a.navbar-item:focus,.navbar.is-transparent .navbar-dropdown a.navbar-item:hover{background-color:#f5f5f5;color:#000}.navbar.is-transparent .navbar-dropdown a.navbar-item.is-active{background-color:#f5f5f5;color:#0060af}.navbar-burger{display:none}.navbar-item,.navbar-link{align-items:center;display:flex}.navbar-item.has-dropdown{align-items:stretch}.navbar-item.has-dropdown-up .navbar-link::after{transform:rotate(135deg) translate(0.25em, -0.25em)}.navbar-item.has-dropdown-up .navbar-dropdown{border-bottom:2px solid #dbdbdb;border-radius:6px 6px 0 0;border-top:none;bottom:100%;box-shadow:0 -8px 8px rgba(0,0,0,0.1);top:auto}.navbar-item.is-active .navbar-dropdown,.navbar-item.is-hoverable:focus .navbar-dropdown,.navbar-item.is-hoverable:focus-within .navbar-dropdown,.navbar-item.is-hoverable:hover .navbar-dropdown{display:block}.navbar.is-spaced .navbar-item.is-active .navbar-dropdown,.navbar-item.is-active .navbar-dropdown.is-boxed,.navbar.is-spaced .navbar-item.is-hoverable:focus .navbar-dropdown,.navbar-item.is-hoverable:focus .navbar-dropdown.is-boxed,.navbar.is-spaced .navbar-item.is-hoverable:focus-within .navbar-dropdown,.navbar-item.is-hoverable:focus-within .navbar-dropdown.is-boxed,.navbar.is-spaced .navbar-item.is-hoverable:hover .navbar-dropdown,.navbar-item.is-hoverable:hover .navbar-dropdown.is-boxed{opacity:1;pointer-events:auto;transform:translateY(0)}.navbar-menu{flex-grow:1;flex-shrink:0}.navbar-start{justify-content:flex-start;margin-right:auto}.navbar-end{justify-content:flex-end;margin-left:auto}.navbar-dropdown{background-color:#fff;border-bottom-left-radius:6px;border-bottom-right-radius:6px;border-top:2px solid #dbdbdb;box-shadow:0 8px 8px rgba(0,0,0,0.1);display:none;font-size:0.875rem;left:0;min-width:100%;position:absolute;top:100%;z-index:20}.navbar-dropdown .navbar-item{padding:0.375rem 1rem;white-space:nowrap}.navbar-dropdown a.navbar-item{padding-right:3rem}.navbar-dropdown a.navbar-item:focus,.navbar-dropdown a.navbar-item:hover{background-color:#f5f5f5;color:#000}.navbar-dropdown a.navbar-item.is-active{background-color:#f5f5f5;color:#0060af}.navbar.is-spaced .navbar-dropdown,.navbar-dropdown.is-boxed{border-radius:6px;border-top:none;box-shadow:0 8px 8px rgba(0,0,0,0.1),0 0 0 1px rgba(0,0,0,0.1);display:block;opacity:0;pointer-events:none;top:calc(100% + (-4px));transform:translateY(-5px);transition-duration:86ms;transition-property:opacity, transform}.navbar-dropdown.is-right{left:auto;right:0}.navbar-divider{display:block}.navbar>.container .navbar-brand,.container>.navbar .navbar-brand{margin-left:-.75rem}.navbar>.container .navbar-menu,.container>.navbar .navbar-menu{margin-right:-.75rem}.navbar.is-fixed-bottom-desktop,.navbar.is-fixed-top-desktop{left:0;position:fixed;right:0;z-index:30}.navbar.is-fixed-bottom-desktop{bottom:0}.navbar.is-fixed-bottom-desktop.has-shadow{box-shadow:0 -2px 3px rgba(0,0,0,0.1)}.navbar.is-fixed-top-desktop{top:0}html.has-navbar-fixed-top-desktop,body.has-navbar-fixed-top-desktop{padding-top:3.25rem}html.has-navbar-fixed-bottom-desktop,body.has-navbar-fixed-bottom-desktop{padding-bottom:3.25rem}html.has-spaced-navbar-fixed-top,body.has-spaced-navbar-fixed-top{padding-top:5.25rem}html.has-spaced-navbar-fixed-bottom,body.has-spaced-navbar-fixed-bottom{padding-bottom:5.25rem}a.navbar-item.is-active,.navbar-link.is-active{color:#000}a.navbar-item.is-active:not(:focus):not(:hover),.navbar-link.is-active:not(:focus):not(:hover){background-color:rgba(0,0,0,0)}.navbar-item.has-dropdown:focus .navbar-link,.navbar-item.has-dropdown:hover .navbar-link,.navbar-item.has-dropdown.is-active .navbar-link{background-color:#fafafa}}.hero.is-fullheight-with-navbar{min-height:calc(100vh - 3.25rem)}.pagination{font-size:1rem;margin:-.25rem}.pagination.is-small{font-size:.75rem}.pagination.is-medium{font-size:1.25rem}.pagination.is-large{font-size:1.5rem}.pagination.is-rounded .pagination-previous,.pagination.is-rounded .pagination-next{padding-left:1em;padding-right:1em;border-radius:9999px}.pagination.is-rounded .pagination-link{border-radius:9999px}.pagination,.pagination-list{align-items:center;display:flex;justify-content:center;text-align:center}.pagination-previous,.pagination-next,.pagination-link,.pagination-ellipsis{font-size:1em;justify-content:center;margin:.25rem;padding-left:.5em;padding-right:.5em;text-align:center}.pagination-previous,.pagination-next,.pagination-link{border-color:#dbdbdb;color:#363636;min-width:2.5em}.pagination-previous:hover,.pagination-next:hover,.pagination-link:hover{border-color:#b5b5b5;color:#363636}.pagination-previous:focus,.pagination-next:focus,.pagination-link:focus{border-color:#485fc7}.pagination-previous:active,.pagination-next:active,.pagination-link:active{box-shadow:inset 0 1px 2px rgba(0,0,0,0.2)}.pagination-previous[disabled],.pagination-previous.is-disabled,.pagination-next[disabled],.pagination-next.is-disabled,.pagination-link[disabled],.pagination-link.is-disabled{background-color:#dbdbdb;border-color:#dbdbdb;box-shadow:none;color:#767676;opacity:0.5}.pagination-previous,.pagination-next{padding-left:.75em;padding-right:.75em;white-space:nowrap}.pagination-link.is-current{background-color:#0060af;border-color:#0060af;color:#fff}.pagination-ellipsis{color:#b5b5b5;pointer-events:none}.pagination-list{flex-wrap:wrap}.pagination-list li{list-style:none}@media screen and (max-width: 611px){.pagination{flex-wrap:wrap}.pagination-previous,.pagination-next{flex-grow:1;flex-shrink:1}.pagination-list li{flex-grow:1;flex-shrink:1}}@media screen and (min-width: 612px), print{.pagination-list{flex-grow:1;flex-shrink:1;justify-content:flex-start;order:1}.pagination-previous,.pagination-next,.pagination-link,.pagination-ellipsis{margin-bottom:0;margin-top:0}.pagination-previous{order:2}.pagination-next{order:3}.pagination{justify-content:space-between;margin-bottom:0;margin-top:0}.pagination.is-centered .pagination-previous{order:1}.pagination.is-centered .pagination-list{justify-content:center;order:2}.pagination.is-centered .pagination-next{order:3}.pagination.is-right .pagination-previous{order:1}.pagination.is-right .pagination-next{order:2}.pagination.is-right .pagination-list{justify-content:flex-end;order:3}}.panel{border-radius:6px;box-shadow:0 0.5em 1em -0.125em rgba(0,0,0,0.1),0 0px 0 1px rgba(0,0,0,0.02);font-size:1rem}.panel:not(:last-child){margin-bottom:1.5rem}.panel.is-white .panel-heading{background-color:#fff;color:#000}.panel.is-white .panel-tabs a.is-active{border-bottom-color:#fff}.panel.is-white .panel-block.is-active .panel-icon{color:#fff}.panel.is-black .panel-heading{background-color:#000;color:#fff}.panel.is-black .panel-tabs a.is-active{border-bottom-color:#000}.panel.is-black .panel-block.is-active .panel-icon{color:#000}.panel.is-light .panel-heading{background-color:#f5f5f5;color:rgba(0,0,0,0.7)}.panel.is-light .panel-tabs a.is-active{border-bottom-color:#f5f5f5}.panel.is-light .panel-block.is-active .panel-icon{color:#f5f5f5}.panel.is-dark .panel-heading{background-color:#363636;color:#fff}.panel.is-dark .panel-tabs a.is-active{border-bottom-color:#363636}.panel.is-dark .panel-block.is-active .panel-icon{color:#363636}.panel.is-primary .panel-heading{background-color:#0060af;color:#fff}.panel.is-primary .panel-tabs a.is-active{border-bottom-color:#0060af}.panel.is-primary .panel-block.is-active .panel-icon{color:#0060af}.panel.is-link .panel-heading{background-color:#0060af;color:#fff}.panel.is-link .panel-tabs a.is-active{border-bottom-color:#0060af}.panel.is-link .panel-block.is-active .panel-icon{color:#0060af}.panel.is-info .panel-heading{background-color:#3e8ed0;color:#fff}.panel.is-info .panel-tabs a.is-active{border-bottom-color:#3e8ed0}.panel.is-info .panel-block.is-active .panel-icon{color:#3e8ed0}.panel.is-success .panel-heading{background-color:#007373;color:#fff}.panel.is-success .panel-tabs a.is-active{border-bottom-color:#007373}.panel.is-success .panel-block.is-active .panel-icon{color:#007373}.panel.is-warning .panel-heading{background-color:#ffe08a;color:rgba(0,0,0,0.7)}.panel.is-warning .panel-tabs a.is-active{border-bottom-color:#ffe08a}.panel.is-warning .panel-block.is-active .panel-icon{color:#ffe08a}.panel.is-danger .panel-heading{background-color:#dd3700;color:#fff}.panel.is-danger .panel-tabs a.is-active{border-bottom-color:#dd3700}.panel.is-danger .panel-block.is-active .panel-icon{color:#dd3700}.panel-tabs:not(:last-child),.panel-block:not(:last-child){border-bottom:1px solid #ededed}.panel-heading{background-color:#ededed;border-radius:6px 6px 0 0;color:#363636;font-size:1.25em;font-weight:700;line-height:1.25;padding:0.75em 1em}.panel-tabs{align-items:flex-end;display:flex;font-size:.875em;justify-content:center}.panel-tabs a{border-bottom:1px solid #dbdbdb;margin-bottom:-1px;padding:0.5em}.panel-tabs a.is-active{border-bottom-color:#4a4a4a;color:#363636}.panel-list a{color:#4a4a4a}.panel-list a:hover{color:#0060af}.panel-block{align-items:center;color:#363636;display:flex;justify-content:flex-start;padding:0.5em 0.75em}.panel-block input[type="checkbox"]{margin-right:.75em}.panel-block>.control{flex-grow:1;flex-shrink:1;width:100%}.panel-block.is-wrapped{flex-wrap:wrap}.panel-block.is-active{border-left-color:#0060af;color:#363636}.panel-block.is-active .panel-icon{color:#0060af}.panel-block:last-child{border-bottom-left-radius:6px;border-bottom-right-radius:6px}a.panel-block,label.panel-block{cursor:pointer}a.panel-block:hover,label.panel-block:hover{background-color:#f5f5f5}.panel-icon{display:inline-block;font-size:14px;height:1em;line-height:1em;text-align:center;vertical-align:top;width:1em;color:#767676;margin-right:.75em}.panel-icon .fa{font-size:inherit;line-height:inherit}.tabs{-webkit-overflow-scrolling:touch;align-items:stretch;display:flex;font-size:1rem;justify-content:space-between;overflow:hidden;overflow-x:auto;white-space:nowrap}.tabs a{align-items:center;border-bottom-color:#dbdbdb;border-bottom-style:solid;border-bottom-width:1px;color:#4a4a4a;display:flex;justify-content:center;margin-bottom:-1px;padding:0.5em 1em;vertical-align:top}.tabs a:hover{border-bottom-color:#363636;color:#363636}.tabs li{display:block}.tabs li.is-active a{border-bottom-color:#0060af;color:#0060af}.tabs ul{align-items:center;border-bottom-color:#dbdbdb;border-bottom-style:solid;border-bottom-width:1px;display:flex;flex-grow:1;flex-shrink:0;justify-content:flex-start}.tabs ul.is-left{padding-right:0.75em}.tabs ul.is-center{flex:none;justify-content:center;padding-left:0.75em;padding-right:0.75em}.tabs ul.is-right{justify-content:flex-end;padding-left:0.75em}.tabs .icon:first-child{margin-right:.5em}.tabs .icon:last-child{margin-left:.5em}.tabs.is-centered ul{justify-content:center}.tabs.is-right ul{justify-content:flex-end}.tabs.is-boxed a{border:1px solid transparent;border-radius:4px 4px 0 0}.tabs.is-boxed a:hover{background-color:#f5f5f5;border-bottom-color:#dbdbdb}.tabs.is-boxed li.is-active a{background-color:#fff;border-color:#dbdbdb;border-bottom-color:rgba(0,0,0,0) !important}.tabs.is-fullwidth li{flex-grow:1;flex-shrink:0}.tabs.is-toggle a{border-color:#dbdbdb;border-style:solid;border-width:1px;margin-bottom:0;position:relative}.tabs.is-toggle a:hover{background-color:#f5f5f5;border-color:#b5b5b5;z-index:2}.tabs.is-toggle li+li{margin-left:-1px}.tabs.is-toggle li:first-child a{border-top-left-radius:4px;border-bottom-left-radius:4px}.tabs.is-toggle li:last-child a{border-top-right-radius:4px;border-bottom-right-radius:4px}.tabs.is-toggle li.is-active a{background-color:#0060af;border-color:#0060af;color:#fff;z-index:1}.tabs.is-toggle ul{border-bottom:none}.tabs.is-toggle.is-toggle-rounded li:first-child a{border-bottom-left-radius:9999px;border-top-left-radius:9999px;padding-left:1.25em}.tabs.is-toggle.is-toggle-rounded li:last-child a{border-bottom-right-radius:9999px;border-top-right-radius:9999px;padding-right:1.25em}.tabs.is-small{font-size:.75rem}.tabs.is-medium{font-size:1.25rem}.tabs.is-large{font-size:1.5rem}.column{display:block;flex-basis:0;flex-grow:1;flex-shrink:1;padding:18px}.columns.is-mobile>.column.is-narrow{flex:none;width:unset}.columns.is-mobile>.column.is-full{flex:none;width:100%}.columns.is-mobile>.column.is-three-quarters{flex:none;width:75%}.columns.is-mobile>.column.is-two-thirds{flex:none;width:66.6666%}.columns.is-mobile>.column.is-half{flex:none;width:50%}.columns.is-mobile>.column.is-one-third{flex:none;width:33.3333%}.columns.is-mobile>.column.is-one-quarter{flex:none;width:25%}.columns.is-mobile>.column.is-one-fifth{flex:none;width:20%}.columns.is-mobile>.column.is-two-fifths{flex:none;width:40%}.columns.is-mobile>.column.is-three-fifths{flex:none;width:60%}.columns.is-mobile>.column.is-four-fifths{flex:none;width:80%}.columns.is-mobile>.column.is-offset-three-quarters{margin-left:75%}.columns.is-mobile>.column.is-offset-two-thirds{margin-left:66.6666%}.columns.is-mobile>.column.is-offset-half{margin-left:50%}.columns.is-mobile>.column.is-offset-one-third{margin-left:33.3333%}.columns.is-mobile>.column.is-offset-one-quarter{margin-left:25%}.columns.is-mobile>.column.is-offset-one-fifth{margin-left:20%}.columns.is-mobile>.column.is-offset-two-fifths{margin-left:40%}.columns.is-mobile>.column.is-offset-three-fifths{margin-left:60%}.columns.is-mobile>.column.is-offset-four-fifths{margin-left:80%}.columns.is-mobile>.column.is-0{flex:none;width:0%}.columns.is-mobile>.column.is-offset-0{margin-left:0%}.columns.is-mobile>.column.is-1{flex:none;width:8.33333%}.columns.is-mobile>.column.is-offset-1{margin-left:8.33333%}.columns.is-mobile>.column.is-2{flex:none;width:16.66667%}.columns.is-mobile>.column.is-offset-2{margin-left:16.66667%}.columns.is-mobile>.column.is-3{flex:none;width:25%}.columns.is-mobile>.column.is-offset-3{margin-left:25%}.columns.is-mobile>.column.is-4{flex:none;width:33.33333%}.columns.is-mobile>.column.is-offset-4{margin-left:33.33333%}.columns.is-mobile>.column.is-5{flex:none;width:41.66667%}.columns.is-mobile>.column.is-offset-5{margin-left:41.66667%}.columns.is-mobile>.column.is-6{flex:none;width:50%}.columns.is-mobile>.column.is-offset-6{margin-left:50%}.columns.is-mobile>.column.is-7{flex:none;width:58.33333%}.columns.is-mobile>.column.is-offset-7{margin-left:58.33333%}.columns.is-mobile>.column.is-8{flex:none;width:66.66667%}.columns.is-mobile>.column.is-offset-8{margin-left:66.66667%}.columns.is-mobile>.column.is-9{flex:none;width:75%}.columns.is-mobile>.column.is-offset-9{margin-left:75%}.columns.is-mobile>.column.is-10{flex:none;width:83.33333%}.columns.is-mobile>.column.is-offset-10{margin-left:83.33333%}.columns.is-mobile>.column.is-11{flex:none;width:91.66667%}.columns.is-mobile>.column.is-offset-11{margin-left:91.66667%}.columns.is-mobile>.column.is-12{flex:none;width:100%}.columns.is-mobile>.column.is-offset-12{margin-left:100%}@media screen and (max-width: 611px){.column.is-narrow-mobile{flex:none;width:unset}.column.is-full-mobile{flex:none;width:100%}.column.is-three-quarters-mobile{flex:none;width:75%}.column.is-two-thirds-mobile{flex:none;width:66.6666%}.column.is-half-mobile{flex:none;width:50%}.column.is-one-third-mobile{flex:none;width:33.3333%}.column.is-one-quarter-mobile{flex:none;width:25%}.column.is-one-fifth-mobile{flex:none;width:20%}.column.is-two-fifths-mobile{flex:none;width:40%}.column.is-three-fifths-mobile{flex:none;width:60%}.column.is-four-fifths-mobile{flex:none;width:80%}.column.is-offset-three-quarters-mobile{margin-left:75%}.column.is-offset-two-thirds-mobile{margin-left:66.6666%}.column.is-offset-half-mobile{margin-left:50%}.column.is-offset-one-third-mobile{margin-left:33.3333%}.column.is-offset-one-quarter-mobile{margin-left:25%}.column.is-offset-one-fifth-mobile{margin-left:20%}.column.is-offset-two-fifths-mobile{margin-left:40%}.column.is-offset-three-fifths-mobile{margin-left:60%}.column.is-offset-four-fifths-mobile{margin-left:80%}.column.is-0-mobile{flex:none;width:0%}.column.is-offset-0-mobile{margin-left:0%}.column.is-1-mobile{flex:none;width:8.33333%}.column.is-offset-1-mobile{margin-left:8.33333%}.column.is-2-mobile{flex:none;width:16.66667%}.column.is-offset-2-mobile{margin-left:16.66667%}.column.is-3-mobile{flex:none;width:25%}.column.is-offset-3-mobile{margin-left:25%}.column.is-4-mobile{flex:none;width:33.33333%}.column.is-offset-4-mobile{margin-left:33.33333%}.column.is-5-mobile{flex:none;width:41.66667%}.column.is-offset-5-mobile{margin-left:41.66667%}.column.is-6-mobile{flex:none;width:50%}.column.is-offset-6-mobile{margin-left:50%}.column.is-7-mobile{flex:none;width:58.33333%}.column.is-offset-7-mobile{margin-left:58.33333%}.column.is-8-mobile{flex:none;width:66.66667%}.column.is-offset-8-mobile{margin-left:66.66667%}.column.is-9-mobile{flex:none;width:75%}.column.is-offset-9-mobile{margin-left:75%}.column.is-10-mobile{flex:none;width:83.33333%}.column.is-offset-10-mobile{margin-left:83.33333%}.column.is-11-mobile{flex:none;width:91.66667%}.column.is-offset-11-mobile{margin-left:91.66667%}.column.is-12-mobile{flex:none;width:100%}.column.is-offset-12-mobile{margin-left:100%}}@media screen and (min-width: 612px), print{.column.is-narrow,.column.is-narrow-tablet{flex:none;width:unset}.column.is-full,.column.is-full-tablet{flex:none;width:100%}.column.is-three-quarters,.column.is-three-quarters-tablet{flex:none;width:75%}.column.is-two-thirds,.column.is-two-thirds-tablet{flex:none;width:66.6666%}.column.is-half,.column.is-half-tablet{flex:none;width:50%}.column.is-one-third,.column.is-one-third-tablet{flex:none;width:33.3333%}.column.is-one-quarter,.column.is-one-quarter-tablet{flex:none;width:25%}.column.is-one-fifth,.column.is-one-fifth-tablet{flex:none;width:20%}.column.is-two-fifths,.column.is-two-fifths-tablet{flex:none;width:40%}.column.is-three-fifths,.column.is-three-fifths-tablet{flex:none;width:60%}.column.is-four-fifths,.column.is-four-fifths-tablet{flex:none;width:80%}.column.is-offset-three-quarters,.column.is-offset-three-quarters-tablet{margin-left:75%}.column.is-offset-two-thirds,.column.is-offset-two-thirds-tablet{margin-left:66.6666%}.column.is-offset-half,.column.is-offset-half-tablet{margin-left:50%}.column.is-offset-one-third,.column.is-offset-one-third-tablet{margin-left:33.3333%}.column.is-offset-one-quarter,.column.is-offset-one-quarter-tablet{margin-left:25%}.column.is-offset-one-fifth,.column.is-offset-one-fifth-tablet{margin-left:20%}.column.is-offset-two-fifths,.column.is-offset-two-fifths-tablet{margin-left:40%}.column.is-offset-three-fifths,.column.is-offset-three-fifths-tablet{margin-left:60%}.column.is-offset-four-fifths,.column.is-offset-four-fifths-tablet{margin-left:80%}.column.is-0,.column.is-0-tablet{flex:none;width:0%}.column.is-offset-0,.column.is-offset-0-tablet{margin-left:0%}.column.is-1,.column.is-1-tablet{flex:none;width:8.33333%}.column.is-offset-1,.column.is-offset-1-tablet{margin-left:8.33333%}.column.is-2,.column.is-2-tablet{flex:none;width:16.66667%}.column.is-offset-2,.column.is-offset-2-tablet{margin-left:16.66667%}.column.is-3,.column.is-3-tablet{flex:none;width:25%}.column.is-offset-3,.column.is-offset-3-tablet{margin-left:25%}.column.is-4,.column.is-4-tablet{flex:none;width:33.33333%}.column.is-offset-4,.column.is-offset-4-tablet{margin-left:33.33333%}.column.is-5,.column.is-5-tablet{flex:none;width:41.66667%}.column.is-offset-5,.column.is-offset-5-tablet{margin-left:41.66667%}.column.is-6,.column.is-6-tablet{flex:none;width:50%}.column.is-offset-6,.column.is-offset-6-tablet{margin-left:50%}.column.is-7,.column.is-7-tablet{flex:none;width:58.33333%}.column.is-offset-7,.column.is-offset-7-tablet{margin-left:58.33333%}.column.is-8,.column.is-8-tablet{flex:none;width:66.66667%}.column.is-offset-8,.column.is-offset-8-tablet{margin-left:66.66667%}.column.is-9,.column.is-9-tablet{flex:none;width:75%}.column.is-offset-9,.column.is-offset-9-tablet{margin-left:75%}.column.is-10,.column.is-10-tablet{flex:none;width:83.33333%}.column.is-offset-10,.column.is-offset-10-tablet{margin-left:83.33333%}.column.is-11,.column.is-11-tablet{flex:none;width:91.66667%}.column.is-offset-11,.column.is-offset-11-tablet{margin-left:91.66667%}.column.is-12,.column.is-12-tablet{flex:none;width:100%}.column.is-offset-12,.column.is-offset-12-tablet{margin-left:100%}}@media screen and (max-width: 1097px){.column.is-narrow-touch{flex:none;width:unset}.column.is-full-touch{flex:none;width:100%}.column.is-three-quarters-touch{flex:none;width:75%}.column.is-two-thirds-touch{flex:none;width:66.6666%}.column.is-half-touch{flex:none;width:50%}.column.is-one-third-touch{flex:none;width:33.3333%}.column.is-one-quarter-touch{flex:none;width:25%}.column.is-one-fifth-touch{flex:none;width:20%}.column.is-two-fifths-touch{flex:none;width:40%}.column.is-three-fifths-touch{flex:none;width:60%}.column.is-four-fifths-touch{flex:none;width:80%}.column.is-offset-three-quarters-touch{margin-left:75%}.column.is-offset-two-thirds-touch{margin-left:66.6666%}.column.is-offset-half-touch{margin-left:50%}.column.is-offset-one-third-touch{margin-left:33.3333%}.column.is-offset-one-quarter-touch{margin-left:25%}.column.is-offset-one-fifth-touch{margin-left:20%}.column.is-offset-two-fifths-touch{margin-left:40%}.column.is-offset-three-fifths-touch{margin-left:60%}.column.is-offset-four-fifths-touch{margin-left:80%}.column.is-0-touch{flex:none;width:0%}.column.is-offset-0-touch{margin-left:0%}.column.is-1-touch{flex:none;width:8.33333%}.column.is-offset-1-touch{margin-left:8.33333%}.column.is-2-touch{flex:none;width:16.66667%}.column.is-offset-2-touch{margin-left:16.66667%}.column.is-3-touch{flex:none;width:25%}.column.is-offset-3-touch{margin-left:25%}.column.is-4-touch{flex:none;width:33.33333%}.column.is-offset-4-touch{margin-left:33.33333%}.column.is-5-touch{flex:none;width:41.66667%}.column.is-offset-5-touch{margin-left:41.66667%}.column.is-6-touch{flex:none;width:50%}.column.is-offset-6-touch{margin-left:50%}.column.is-7-touch{flex:none;width:58.33333%}.column.is-offset-7-touch{margin-left:58.33333%}.column.is-8-touch{flex:none;width:66.66667%}.column.is-offset-8-touch{margin-left:66.66667%}.column.is-9-touch{flex:none;width:75%}.column.is-offset-9-touch{margin-left:75%}.column.is-10-touch{flex:none;width:83.33333%}.column.is-offset-10-touch{margin-left:83.33333%}.column.is-11-touch{flex:none;width:91.66667%}.column.is-offset-11-touch{margin-left:91.66667%}.column.is-12-touch{flex:none;width:100%}.column.is-offset-12-touch{margin-left:100%}}@media screen and (min-width: 1098px){.column.is-narrow-desktop{flex:none;width:unset}.column.is-full-desktop{flex:none;width:100%}.column.is-three-quarters-desktop{flex:none;width:75%}.column.is-two-thirds-desktop{flex:none;width:66.6666%}.column.is-half-desktop{flex:none;width:50%}.column.is-one-third-desktop{flex:none;width:33.3333%}.column.is-one-quarter-desktop{flex:none;width:25%}.column.is-one-fifth-desktop{flex:none;width:20%}.column.is-two-fifths-desktop{flex:none;width:40%}.column.is-three-fifths-desktop{flex:none;width:60%}.column.is-four-fifths-desktop{flex:none;width:80%}.column.is-offset-three-quarters-desktop{margin-left:75%}.column.is-offset-two-thirds-desktop{margin-left:66.6666%}.column.is-offset-half-desktop{margin-left:50%}.column.is-offset-one-third-desktop{margin-left:33.3333%}.column.is-offset-one-quarter-desktop{margin-left:25%}.column.is-offset-one-fifth-desktop{margin-left:20%}.column.is-offset-two-fifths-desktop{margin-left:40%}.column.is-offset-three-fifths-desktop{margin-left:60%}.column.is-offset-four-fifths-desktop{margin-left:80%}.column.is-0-desktop{flex:none;width:0%}.column.is-offset-0-desktop{margin-left:0%}.column.is-1-desktop{flex:none;width:8.33333%}.column.is-offset-1-desktop{margin-left:8.33333%}.column.is-2-desktop{flex:none;width:16.66667%}.column.is-offset-2-desktop{margin-left:16.66667%}.column.is-3-desktop{flex:none;width:25%}.column.is-offset-3-desktop{margin-left:25%}.column.is-4-desktop{flex:none;width:33.33333%}.column.is-offset-4-desktop{margin-left:33.33333%}.column.is-5-desktop{flex:none;width:41.66667%}.column.is-offset-5-desktop{margin-left:41.66667%}.column.is-6-desktop{flex:none;width:50%}.column.is-offset-6-desktop{margin-left:50%}.column.is-7-desktop{flex:none;width:58.33333%}.column.is-offset-7-desktop{margin-left:58.33333%}.column.is-8-desktop{flex:none;width:66.66667%}.column.is-offset-8-desktop{margin-left:66.66667%}.column.is-9-desktop{flex:none;width:75%}.column.is-offset-9-desktop{margin-left:75%}.column.is-10-desktop{flex:none;width:83.33333%}.column.is-offset-10-desktop{margin-left:83.33333%}.column.is-11-desktop{flex:none;width:91.66667%}.column.is-offset-11-desktop{margin-left:91.66667%}.column.is-12-desktop{flex:none;width:100%}.column.is-offset-12-desktop{margin-left:100%}}@media screen and (min-width: 1422px){.column.is-narrow-widescreen{flex:none;width:unset}.column.is-full-widescreen{flex:none;width:100%}.column.is-three-quarters-widescreen{flex:none;width:75%}.column.is-two-thirds-widescreen{flex:none;width:66.6666%}.column.is-half-widescreen{flex:none;width:50%}.column.is-one-third-widescreen{flex:none;width:33.3333%}.column.is-one-quarter-widescreen{flex:none;width:25%}.column.is-one-fifth-widescreen{flex:none;width:20%}.column.is-two-fifths-widescreen{flex:none;width:40%}.column.is-three-fifths-widescreen{flex:none;width:60%}.column.is-four-fifths-widescreen{flex:none;width:80%}.column.is-offset-three-quarters-widescreen{margin-left:75%}.column.is-offset-two-thirds-widescreen{margin-left:66.6666%}.column.is-offset-half-widescreen{margin-left:50%}.column.is-offset-one-third-widescreen{margin-left:33.3333%}.column.is-offset-one-quarter-widescreen{margin-left:25%}.column.is-offset-one-fifth-widescreen{margin-left:20%}.column.is-offset-two-fifths-widescreen{margin-left:40%}.column.is-offset-three-fifths-widescreen{margin-left:60%}.column.is-offset-four-fifths-widescreen{margin-left:80%}.column.is-0-widescreen{flex:none;width:0%}.column.is-offset-0-widescreen{margin-left:0%}.column.is-1-widescreen{flex:none;width:8.33333%}.column.is-offset-1-widescreen{margin-left:8.33333%}.column.is-2-widescreen{flex:none;width:16.66667%}.column.is-offset-2-widescreen{margin-left:16.66667%}.column.is-3-widescreen{flex:none;width:25%}.column.is-offset-3-widescreen{margin-left:25%}.column.is-4-widescreen{flex:none;width:33.33333%}.column.is-offset-4-widescreen{margin-left:33.33333%}.column.is-5-widescreen{flex:none;width:41.66667%}.column.is-offset-5-widescreen{margin-left:41.66667%}.column.is-6-widescreen{flex:none;width:50%}.column.is-offset-6-widescreen{margin-left:50%}.column.is-7-widescreen{flex:none;width:58.33333%}.column.is-offset-7-widescreen{margin-left:58.33333%}.column.is-8-widescreen{flex:none;width:66.66667%}.column.is-offset-8-widescreen{margin-left:66.66667%}.column.is-9-widescreen{flex:none;width:75%}.column.is-offset-9-widescreen{margin-left:75%}.column.is-10-widescreen{flex:none;width:83.33333%}.column.is-offset-10-widescreen{margin-left:83.33333%}.column.is-11-widescreen{flex:none;width:91.66667%}.column.is-offset-11-widescreen{margin-left:91.66667%}.column.is-12-widescreen{flex:none;width:100%}.column.is-offset-12-widescreen{margin-left:100%}}.columns{margin-left:-18px;margin-right:-18px;margin-top:-18px}.columns:last-child{margin-bottom:-18px}.columns:not(:last-child){margin-bottom:calc(1.5rem - 18px)}.columns.is-centered{justify-content:center}.columns.is-gapless{margin-left:0;margin-right:0;margin-top:0}.columns.is-gapless>.column{margin:0;padding:0 !important}.columns.is-gapless:not(:last-child){margin-bottom:1.5rem}.columns.is-gapless:last-child{margin-bottom:0}.columns.is-mobile{display:flex}.columns.is-multiline{flex-wrap:wrap}.columns.is-vcentered{align-items:center}@media screen and (min-width: 612px), print{.columns:not(.is-desktop){display:flex}}@media screen and (min-width: 1098px){.columns.is-desktop{display:flex}}.columns.is-variable{--columnGap: 0.75rem;margin-left:calc(-1 * var(--columnGap));margin-right:calc(-1 * var(--columnGap))}.columns.is-variable>.column{padding-left:var(--columnGap);padding-right:var(--columnGap)}.columns.is-variable.is-0{--columnGap: 0rem}@media screen and (max-width: 611px){.columns.is-variable.is-0-mobile{--columnGap: 0rem}}@media screen and (min-width: 612px), print{.columns.is-variable.is-0-tablet{--columnGap: 0rem}}@media screen and (min-width: 612px) and (max-width: 1097px){.columns.is-variable.is-0-tablet-only{--columnGap: 0rem}}@media screen and (max-width: 1097px){.columns.is-variable.is-0-touch{--columnGap: 0rem}}@media screen and (min-width: 1098px){.columns.is-variable.is-0-desktop{--columnGap: 0rem}}@media screen and (min-width: 1098px) and (max-width: 1421px){.columns.is-variable.is-0-desktop-only{--columnGap: 0rem}}@media screen and (min-width: 1422px){.columns.is-variable.is-0-widescreen{--columnGap: 0rem}}.columns.is-variable.is-1{--columnGap: .25rem}@media screen and (max-width: 611px){.columns.is-variable.is-1-mobile{--columnGap: .25rem}}@media screen and (min-width: 612px), print{.columns.is-variable.is-1-tablet{--columnGap: .25rem}}@media screen and (min-width: 612px) and (max-width: 1097px){.columns.is-variable.is-1-tablet-only{--columnGap: .25rem}}@media screen and (max-width: 1097px){.columns.is-variable.is-1-touch{--columnGap: .25rem}}@media screen and (min-width: 1098px){.columns.is-variable.is-1-desktop{--columnGap: .25rem}}@media screen and (min-width: 1098px) and (max-width: 1421px){.columns.is-variable.is-1-desktop-only{--columnGap: .25rem}}@media screen and (min-width: 1422px){.columns.is-variable.is-1-widescreen{--columnGap: .25rem}}.columns.is-variable.is-2{--columnGap: .5rem}@media screen and (max-width: 611px){.columns.is-variable.is-2-mobile{--columnGap: .5rem}}@media screen and (min-width: 612px), print{.columns.is-variable.is-2-tablet{--columnGap: .5rem}}@media screen and (min-width: 612px) and (max-width: 1097px){.columns.is-variable.is-2-tablet-only{--columnGap: .5rem}}@media screen and (max-width: 1097px){.columns.is-variable.is-2-touch{--columnGap: .5rem}}@media screen and (min-width: 1098px){.columns.is-variable.is-2-desktop{--columnGap: .5rem}}@media screen and (min-width: 1098px) and (max-width: 1421px){.columns.is-variable.is-2-desktop-only{--columnGap: .5rem}}@media screen and (min-width: 1422px){.columns.is-variable.is-2-widescreen{--columnGap: .5rem}}.columns.is-variable.is-3{--columnGap: .75rem}@media screen and (max-width: 611px){.columns.is-variable.is-3-mobile{--columnGap: .75rem}}@media screen and (min-width: 612px), print{.columns.is-variable.is-3-tablet{--columnGap: .75rem}}@media screen and (min-width: 612px) and (max-width: 1097px){.columns.is-variable.is-3-tablet-only{--columnGap: .75rem}}@media screen and (max-width: 1097px){.columns.is-variable.is-3-touch{--columnGap: .75rem}}@media screen and (min-width: 1098px){.columns.is-variable.is-3-desktop{--columnGap: .75rem}}@media screen and (min-width: 1098px) and (max-width: 1421px){.columns.is-variable.is-3-desktop-only{--columnGap: .75rem}}@media screen and (min-width: 1422px){.columns.is-variable.is-3-widescreen{--columnGap: .75rem}}.columns.is-variable.is-4{--columnGap: 1rem}@media screen and (max-width: 611px){.columns.is-variable.is-4-mobile{--columnGap: 1rem}}@media screen and (min-width: 612px), print{.columns.is-variable.is-4-tablet{--columnGap: 1rem}}@media screen and (min-width: 612px) and (max-width: 1097px){.columns.is-variable.is-4-tablet-only{--columnGap: 1rem}}@media screen and (max-width: 1097px){.columns.is-variable.is-4-touch{--columnGap: 1rem}}@media screen and (min-width: 1098px){.columns.is-variable.is-4-desktop{--columnGap: 1rem}}@media screen and (min-width: 1098px) and (max-width: 1421px){.columns.is-variable.is-4-desktop-only{--columnGap: 1rem}}@media screen and (min-width: 1422px){.columns.is-variable.is-4-widescreen{--columnGap: 1rem}}.columns.is-variable.is-5{--columnGap: 1.25rem}@media screen and (max-width: 611px){.columns.is-variable.is-5-mobile{--columnGap: 1.25rem}}@media screen and (min-width: 612px), print{.columns.is-variable.is-5-tablet{--columnGap: 1.25rem}}@media screen and (min-width: 612px) and (max-width: 1097px){.columns.is-variable.is-5-tablet-only{--columnGap: 1.25rem}}@media screen and (max-width: 1097px){.columns.is-variable.is-5-touch{--columnGap: 1.25rem}}@media screen and (min-width: 1098px){.columns.is-variable.is-5-desktop{--columnGap: 1.25rem}}@media screen and (min-width: 1098px) and (max-width: 1421px){.columns.is-variable.is-5-desktop-only{--columnGap: 1.25rem}}@media screen and (min-width: 1422px){.columns.is-variable.is-5-widescreen{--columnGap: 1.25rem}}.columns.is-variable.is-6{--columnGap: 1.5rem}@media screen and (max-width: 611px){.columns.is-variable.is-6-mobile{--columnGap: 1.5rem}}@media screen and (min-width: 612px), print{.columns.is-variable.is-6-tablet{--columnGap: 1.5rem}}@media screen and (min-width: 612px) and (max-width: 1097px){.columns.is-variable.is-6-tablet-only{--columnGap: 1.5rem}}@media screen and (max-width: 1097px){.columns.is-variable.is-6-touch{--columnGap: 1.5rem}}@media screen and (min-width: 1098px){.columns.is-variable.is-6-desktop{--columnGap: 1.5rem}}@media screen and (min-width: 1098px) and (max-width: 1421px){.columns.is-variable.is-6-desktop-only{--columnGap: 1.5rem}}@media screen and (min-width: 1422px){.columns.is-variable.is-6-widescreen{--columnGap: 1.5rem}}.columns.is-variable.is-7{--columnGap: 1.75rem}@media screen and (max-width: 611px){.columns.is-variable.is-7-mobile{--columnGap: 1.75rem}}@media screen and (min-width: 612px), print{.columns.is-variable.is-7-tablet{--columnGap: 1.75rem}}@media screen and (min-width: 612px) and (max-width: 1097px){.columns.is-variable.is-7-tablet-only{--columnGap: 1.75rem}}@media screen and (max-width: 1097px){.columns.is-variable.is-7-touch{--columnGap: 1.75rem}}@media screen and (min-width: 1098px){.columns.is-variable.is-7-desktop{--columnGap: 1.75rem}}@media screen and (min-width: 1098px) and (max-width: 1421px){.columns.is-variable.is-7-desktop-only{--columnGap: 1.75rem}}@media screen and (min-width: 1422px){.columns.is-variable.is-7-widescreen{--columnGap: 1.75rem}}.columns.is-variable.is-8{--columnGap: 2rem}@media screen and (max-width: 611px){.columns.is-variable.is-8-mobile{--columnGap: 2rem}}@media screen and (min-width: 612px), print{.columns.is-variable.is-8-tablet{--columnGap: 2rem}}@media screen and (min-width: 612px) and (max-width: 1097px){.columns.is-variable.is-8-tablet-only{--columnGap: 2rem}}@media screen and (max-width: 1097px){.columns.is-variable.is-8-touch{--columnGap: 2rem}}@media screen and (min-width: 1098px){.columns.is-variable.is-8-desktop{--columnGap: 2rem}}@media screen and (min-width: 1098px) and (max-width: 1421px){.columns.is-variable.is-8-desktop-only{--columnGap: 2rem}}@media screen and (min-width: 1422px){.columns.is-variable.is-8-widescreen{--columnGap: 2rem}}.tile{align-items:stretch;display:block;flex-basis:0;flex-grow:1;flex-shrink:1;min-height:min-content}.tile.is-ancestor{margin-left:-.75rem;margin-right:-.75rem;margin-top:-.75rem}.tile.is-ancestor:last-child{margin-bottom:-.75rem}.tile.is-ancestor:not(:last-child){margin-bottom:.75rem}.tile.is-child{margin:0 !important}.tile.is-parent{padding:.75rem}.tile.is-vertical{flex-direction:column}.tile.is-vertical>.tile.is-child:not(:last-child){margin-bottom:1.5rem !important}@media screen and (min-width: 612px), print{.tile:not(.is-child){display:flex}.tile.is-1{flex:none;width:8.33333%}.tile.is-2{flex:none;width:16.66667%}.tile.is-3{flex:none;width:25%}.tile.is-4{flex:none;width:33.33333%}.tile.is-5{flex:none;width:41.66667%}.tile.is-6{flex:none;width:50%}.tile.is-7{flex:none;width:58.33333%}.tile.is-8{flex:none;width:66.66667%}.tile.is-9{flex:none;width:75%}.tile.is-10{flex:none;width:83.33333%}.tile.is-11{flex:none;width:91.66667%}.tile.is-12{flex:none;width:100%}}.has-text-white{color:#fff !important}a.has-text-white:hover,a.has-text-white:focus{color:#e6e6e6 !important}.has-background-white{background-color:#fff !important}.has-text-black{color:#000 !important}a.has-text-black:hover,a.has-text-black:focus{color:#000 !important}.has-background-black{background-color:#000 !important}.has-text-light{color:#f5f5f5 !important}a.has-text-light:hover,a.has-text-light:focus{color:#dbdbdb !important}.has-background-light{background-color:#f5f5f5 !important}.has-text-dark{color:#363636 !important}a.has-text-dark:hover,a.has-text-dark:focus{color:#1c1c1c !important}.has-background-dark{background-color:#363636 !important}.has-text-primary{color:#0060af !important}a.has-text-primary:hover,a.has-text-primary:focus{color:#00447c !important}.has-background-primary{background-color:#0060af !important}.has-text-primary-light{color:#ebf6ff !important}a.has-text-primary-light:hover,a.has-text-primary-light:focus{color:#b8dfff !important}.has-background-primary-light{background-color:#ebf6ff !important}.has-text-primary-dark{color:#0089fa !important}a.has-text-primary-dark:hover,a.has-text-primary-dark:focus{color:#2ea1ff !important}.has-background-primary-dark{background-color:#0089fa !important}.has-text-link{color:#0060af !important}a.has-text-link:hover,a.has-text-link:focus{color:#00447c !important}.has-background-link{background-color:#0060af !important}.has-text-link-light{color:#ebf6ff !important}a.has-text-link-light:hover,a.has-text-link-light:focus{color:#b8dfff !important}.has-background-link-light{background-color:#ebf6ff !important}.has-text-link-dark{color:#0089fa !important}a.has-text-link-dark:hover,a.has-text-link-dark:focus{color:#2ea1ff !important}.has-background-link-dark{background-color:#0089fa !important}.has-text-info{color:#3e8ed0 !important}a.has-text-info:hover,a.has-text-info:focus{color:#2b74b1 !important}.has-background-info{background-color:#3e8ed0 !important}.has-text-info-light{color:#eff5fb !important}a.has-text-info-light:hover,a.has-text-info-light:focus{color:#c6ddf1 !important}.has-background-info-light{background-color:#eff5fb !important}.has-text-info-dark{color:#296fa8 !important}a.has-text-info-dark:hover,a.has-text-info-dark:focus{color:#368ace !important}.has-background-info-dark{background-color:#296fa8 !important}.has-text-success{color:#007373 !important}a.has-text-success:hover,a.has-text-success:focus{color:#004040 !important}.has-background-success{background-color:#007373 !important}.has-text-success-light{color:#ebffff !important}a.has-text-success-light:hover,a.has-text-success-light:focus{color:#b8ffff !important}.has-background-success-light{background-color:#ebffff !important}.has-text-success-dark{color:#00f0f0 !important}a.has-text-success-dark:hover,a.has-text-success-dark:focus{color:#24ffff !important}.has-background-success-dark{background-color:#00f0f0 !important}.has-text-warning{color:#ffe08a !important}a.has-text-warning:hover,a.has-text-warning:focus{color:#ffd257 !important}.has-background-warning{background-color:#ffe08a !important}.has-text-warning-light{color:#fffaeb !important}a.has-text-warning-light:hover,a.has-text-warning-light:focus{color:#ffecb8 !important}.has-background-warning-light{background-color:#fffaeb !important}.has-text-warning-dark{color:#946c00 !important}a.has-text-warning-dark:hover,a.has-text-warning-dark:focus{color:#c79200 !important}.has-background-warning-dark{background-color:#946c00 !important}.has-text-danger{color:#dd3700 !important}a.has-text-danger:hover,a.has-text-danger:focus{color:#aa2a00 !important}.has-background-danger{background-color:#dd3700 !important}.has-text-danger-light{color:#fff0eb !important}a.has-text-danger-light:hover,a.has-text-danger-light:focus{color:#ffc9b8 !important}.has-background-danger-light{background-color:#fff0eb !important}.has-text-danger-dark{color:#eb3a00 !important}a.has-text-danger-dark:hover,a.has-text-danger-dark:focus{color:#ff561f !important}.has-background-danger-dark{background-color:#eb3a00 !important}.has-text-black-bis{color:#121212 !important}.has-background-black-bis{background-color:#121212 !important}.has-text-black-ter{color:#242424 !important}.has-background-black-ter{background-color:#242424 !important}.has-text-grey-darker{color:#363636 !important}.has-background-grey-darker{background-color:#363636 !important}.has-text-grey-dark{color:#4a4a4a !important}.has-background-grey-dark{background-color:#4a4a4a !important}.has-text-grey{color:#767676 !important}.has-background-grey{background-color:#767676 !important}.has-text-grey-light{color:#b5b5b5 !important}.has-background-grey-light{background-color:#b5b5b5 !important}.has-text-grey-lighter{color:#dbdbdb !important}.has-background-grey-lighter{background-color:#dbdbdb !important}.has-text-white-ter{color:#f5f5f5 !important}.has-background-white-ter{background-color:#f5f5f5 !important}.has-text-white-bis{color:#fafafa !important}.has-background-white-bis{background-color:#fafafa !important}.is-flex-direction-row{flex-direction:row !important}.is-flex-direction-row-reverse{flex-direction:row-reverse !important}.is-flex-direction-column{flex-direction:column !important}.is-flex-direction-column-reverse{flex-direction:column-reverse !important}.is-flex-wrap-nowrap{flex-wrap:nowrap !important}.is-flex-wrap-wrap{flex-wrap:wrap !important}.is-flex-wrap-wrap-reverse{flex-wrap:wrap-reverse !important}.is-justify-content-flex-start{justify-content:flex-start !important}.is-justify-content-flex-end{justify-content:flex-end !important}.is-justify-content-center{justify-content:center !important}.is-justify-content-space-between{justify-content:space-between !important}.is-justify-content-space-around{justify-content:space-around !important}.is-justify-content-space-evenly{justify-content:space-evenly !important}.is-justify-content-start{justify-content:start !important}.is-justify-content-end{justify-content:end !important}.is-justify-content-left{justify-content:left !important}.is-justify-content-right{justify-content:right !important}.is-align-content-flex-start{align-content:flex-start !important}.is-align-content-flex-end{align-content:flex-end !important}.is-align-content-center{align-content:center !important}.is-align-content-space-between{align-content:space-between !important}.is-align-content-space-around{align-content:space-around !important}.is-align-content-space-evenly{align-content:space-evenly !important}.is-align-content-stretch{align-content:stretch !important}.is-align-content-start{align-content:start !important}.is-align-content-end{align-content:end !important}.is-align-content-baseline{align-content:baseline !important}.is-align-items-stretch{align-items:stretch !important}.is-align-items-flex-start{align-items:flex-start !important}.is-align-items-flex-end{align-items:flex-end !important}.is-align-items-center{align-items:center !important}.is-align-items-baseline{align-items:baseline !important}.is-align-items-start{align-items:start !important}.is-align-items-end{align-items:end !important}.is-align-items-self-start{align-items:self-start !important}.is-align-items-self-end{align-items:self-end !important}.is-align-self-auto{align-self:auto !important}.is-align-self-flex-start{align-self:flex-start !important}.is-align-self-flex-end{align-self:flex-end !important}.is-align-self-center{align-self:center !important}.is-align-self-baseline{align-self:baseline !important}.is-align-self-stretch{align-self:stretch !important}.is-flex-grow-0{flex-grow:0 !important}.is-flex-grow-1{flex-grow:1 !important}.is-flex-grow-2{flex-grow:2 !important}.is-flex-grow-3{flex-grow:3 !important}.is-flex-grow-4{flex-grow:4 !important}.is-flex-grow-5{flex-grow:5 !important}.is-flex-shrink-0{flex-shrink:0 !important}.is-flex-shrink-1{flex-shrink:1 !important}.is-flex-shrink-2{flex-shrink:2 !important}.is-flex-shrink-3{flex-shrink:3 !important}.is-flex-shrink-4{flex-shrink:4 !important}.is-flex-shrink-5{flex-shrink:5 !important}.is-clearfix::after{clear:both;content:" ";display:table}.is-pulled-left{float:left !important}.is-pulled-right{float:right !important}.is-radiusless{border-radius:0 !important}.is-shadowless{box-shadow:none !important}.is-clickable{cursor:pointer !important;pointer-events:all !important}.is-clipped{overflow:hidden !important}.is-relative{position:relative !important}.is-marginless{margin:0 !important}.is-paddingless{padding:0 !important}.m-0{margin:0 !important}.mt-0{margin-top:0 !important}.mr-0{margin-right:0 !important}.mb-0{margin-bottom:0 !important}.ml-0{margin-left:0 !important}.mx-0{margin-left:0 !important;margin-right:0 !important}.my-0{margin-top:0 !important;margin-bottom:0 !important}.m-1{margin:.25rem !important}.mt-1{margin-top:.25rem !important}.mr-1{margin-right:.25rem !important}.mb-1{margin-bottom:.25rem !important}.ml-1{margin-left:.25rem !important}.mx-1{margin-left:.25rem !important;margin-right:.25rem !important}.my-1{margin-top:.25rem !important;margin-bottom:.25rem !important}.m-2{margin:.5rem !important}.mt-2{margin-top:.5rem !important}.mr-2{margin-right:.5rem !important}.mb-2{margin-bottom:.5rem !important}.ml-2{margin-left:.5rem !important}.mx-2{margin-left:.5rem !important;margin-right:.5rem !important}.my-2{margin-top:.5rem !important;margin-bottom:.5rem !important}.m-3{margin:.75rem !important}.mt-3{margin-top:.75rem !important}.mr-3{margin-right:.75rem !important}.mb-3{margin-bottom:.75rem !important}.ml-3{margin-left:.75rem !important}.mx-3{margin-left:.75rem !important;margin-right:.75rem !important}.my-3{margin-top:.75rem !important;margin-bottom:.75rem !important}.m-4{margin:1rem !important}.mt-4{margin-top:1rem !important}.mr-4{margin-right:1rem !important}.mb-4{margin-bottom:1rem !important}.ml-4{margin-left:1rem !important}.mx-4{margin-left:1rem !important;margin-right:1rem !important}.my-4{margin-top:1rem !important;margin-bottom:1rem !important}.m-5{margin:1.5rem !important}.mt-5{margin-top:1.5rem !important}.mr-5{margin-right:1.5rem !important}.mb-5{margin-bottom:1.5rem !important}.ml-5{margin-left:1.5rem !important}.mx-5{margin-left:1.5rem !important;margin-right:1.5rem !important}.my-5{margin-top:1.5rem !important;margin-bottom:1.5rem !important}.m-6{margin:3rem !important}.mt-6{margin-top:3rem !important}.mr-6{margin-right:3rem !important}.mb-6{margin-bottom:3rem !important}.ml-6{margin-left:3rem !important}.mx-6{margin-left:3rem !important;margin-right:3rem !important}.my-6{margin-top:3rem !important;margin-bottom:3rem !important}.m-auto{margin:auto !important}.mt-auto{margin-top:auto !important}.mr-auto{margin-right:auto !important}.mb-auto{margin-bottom:auto !important}.ml-auto{margin-left:auto !important}.mx-auto{margin-left:auto !important;margin-right:auto !important}.my-auto{margin-top:auto !important;margin-bottom:auto !important}.p-0{padding:0 !important}.pt-0{padding-top:0 !important}.pr-0{padding-right:0 !important}.pb-0{padding-bottom:0 !important}.pl-0{padding-left:0 !important}.px-0{padding-left:0 !important;padding-right:0 !important}.py-0{padding-top:0 !important;padding-bottom:0 !important}.p-1{padding:.25rem !important}.pt-1{padding-top:.25rem !important}.pr-1{padding-right:.25rem !important}.pb-1{padding-bottom:.25rem !important}.pl-1{padding-left:.25rem !important}.px-1{padding-left:.25rem !important;padding-right:.25rem !important}.py-1{padding-top:.25rem !important;padding-bottom:.25rem !important}.p-2{padding:.5rem !important}.pt-2{padding-top:.5rem !important}.pr-2{padding-right:.5rem !important}.pb-2{padding-bottom:.5rem !important}.pl-2{padding-left:.5rem !important}.px-2{padding-left:.5rem !important;padding-right:.5rem !important}.py-2{padding-top:.5rem !important;padding-bottom:.5rem !important}.p-3{padding:.75rem !important}.pt-3{padding-top:.75rem !important}.pr-3{padding-right:.75rem !important}.pb-3{padding-bottom:.75rem !important}.pl-3{padding-left:.75rem !important}.px-3{padding-left:.75rem !important;padding-right:.75rem !important}.py-3{padding-top:.75rem !important;padding-bottom:.75rem !important}.p-4{padding:1rem !important}.pt-4{padding-top:1rem !important}.pr-4{padding-right:1rem !important}.pb-4{padding-bottom:1rem !important}.pl-4{padding-left:1rem !important}.px-4{padding-left:1rem !important;padding-right:1rem !important}.py-4{padding-top:1rem !important;padding-bottom:1rem !important}.p-5{padding:1.5rem !important}.pt-5{padding-top:1.5rem !important}.pr-5{padding-right:1.5rem !important}.pb-5{padding-bottom:1.5rem !important}.pl-5{padding-left:1.5rem !important}.px-5{padding-left:1.5rem !important;padding-right:1.5rem !important}.py-5{padding-top:1.5rem !important;padding-bottom:1.5rem !important}.p-6{padding:3rem !important}.pt-6{padding-top:3rem !important}.pr-6{padding-right:3rem !important}.pb-6{padding-bottom:3rem !important}.pl-6{padding-left:3rem !important}.px-6{padding-left:3rem !important;padding-right:3rem !important}.py-6{padding-top:3rem !important;padding-bottom:3rem !important}.p-auto{padding:auto !important}.pt-auto{padding-top:auto !important}.pr-auto{padding-right:auto !important}.pb-auto{padding-bottom:auto !important}.pl-auto{padding-left:auto !important}.px-auto{padding-left:auto !important;padding-right:auto !important}.py-auto{padding-top:auto !important;padding-bottom:auto !important}.is-size-1{font-size:3rem !important}.is-size-2{font-size:2.5rem !important}.is-size-3{font-size:2rem !important}.is-size-4{font-size:1.5rem !important}.is-size-5{font-size:1.25rem !important}.is-size-6{font-size:1rem !important}.is-size-7{font-size:.75rem !important}@media screen and (max-width: 611px){.is-size-1-mobile{font-size:3rem !important}.is-size-2-mobile{font-size:2.5rem !important}.is-size-3-mobile{font-size:2rem !important}.is-size-4-mobile{font-size:1.5rem !important}.is-size-5-mobile{font-size:1.25rem !important}.is-size-6-mobile{font-size:1rem !important}.is-size-7-mobile{font-size:.75rem !important}}@media screen and (min-width: 612px), print{.is-size-1-tablet{font-size:3rem !important}.is-size-2-tablet{font-size:2.5rem !important}.is-size-3-tablet{font-size:2rem !important}.is-size-4-tablet{font-size:1.5rem !important}.is-size-5-tablet{font-size:1.25rem !important}.is-size-6-tablet{font-size:1rem !important}.is-size-7-tablet{font-size:.75rem !important}}@media screen and (max-width: 1097px){.is-size-1-touch{font-size:3rem !important}.is-size-2-touch{font-size:2.5rem !important}.is-size-3-touch{font-size:2rem !important}.is-size-4-touch{font-size:1.5rem !important}.is-size-5-touch{font-size:1.25rem !important}.is-size-6-touch{font-size:1rem !important}.is-size-7-touch{font-size:.75rem !important}}@media screen and (min-width: 1098px){.is-size-1-desktop{font-size:3rem !important}.is-size-2-desktop{font-size:2.5rem !important}.is-size-3-desktop{font-size:2rem !important}.is-size-4-desktop{font-size:1.5rem !important}.is-size-5-desktop{font-size:1.25rem !important}.is-size-6-desktop{font-size:1rem !important}.is-size-7-desktop{font-size:.75rem !important}}@media screen and (min-width: 1422px){.is-size-1-widescreen{font-size:3rem !important}.is-size-2-widescreen{font-size:2.5rem !important}.is-size-3-widescreen{font-size:2rem !important}.is-size-4-widescreen{font-size:1.5rem !important}.is-size-5-widescreen{font-size:1.25rem !important}.is-size-6-widescreen{font-size:1rem !important}.is-size-7-widescreen{font-size:.75rem !important}}.has-text-centered{text-align:center !important}.has-text-justified{text-align:justify !important}.has-text-left{text-align:left !important}.has-text-right{text-align:right !important}@media screen and (max-width: 611px){.has-text-centered-mobile{text-align:center !important}}@media screen and (min-width: 612px), print{.has-text-centered-tablet{text-align:center !important}}@media screen and (min-width: 612px) and (max-width: 1097px){.has-text-centered-tablet-only{text-align:center !important}}@media screen and (max-width: 1097px){.has-text-centered-touch{text-align:center !important}}@media screen and (min-width: 1098px){.has-text-centered-desktop{text-align:center !important}}@media screen and (min-width: 1098px) and (max-width: 1421px){.has-text-centered-desktop-only{text-align:center !important}}@media screen and (min-width: 1422px){.has-text-centered-widescreen{text-align:center !important}}@media screen and (max-width: 611px){.has-text-justified-mobile{text-align:justify !important}}@media screen and (min-width: 612px), print{.has-text-justified-tablet{text-align:justify !important}}@media screen and (min-width: 612px) and (max-width: 1097px){.has-text-justified-tablet-only{text-align:justify !important}}@media screen and (max-width: 1097px){.has-text-justified-touch{text-align:justify !important}}@media screen and (min-width: 1098px){.has-text-justified-desktop{text-align:justify !important}}@media screen and (min-width: 1098px) and (max-width: 1421px){.has-text-justified-desktop-only{text-align:justify !important}}@media screen and (min-width: 1422px){.has-text-justified-widescreen{text-align:justify !important}}@media screen and (max-width: 611px){.has-text-left-mobile{text-align:left !important}}@media screen and (min-width: 612px), print{.has-text-left-tablet{text-align:left !important}}@media screen and (min-width: 612px) and (max-width: 1097px){.has-text-left-tablet-only{text-align:left !important}}@media screen and (max-width: 1097px){.has-text-left-touch{text-align:left !important}}@media screen and (min-width: 1098px){.has-text-left-desktop{text-align:left !important}}@media screen and (min-width: 1098px) and (max-width: 1421px){.has-text-left-desktop-only{text-align:left !important}}@media screen and (min-width: 1422px){.has-text-left-widescreen{text-align:left !important}}@media screen and (max-width: 611px){.has-text-right-mobile{text-align:right !important}}@media screen and (min-width: 612px), print{.has-text-right-tablet{text-align:right !important}}@media screen and (min-width: 612px) and (max-width: 1097px){.has-text-right-tablet-only{text-align:right !important}}@media screen and (max-width: 1097px){.has-text-right-touch{text-align:right !important}}@media screen and (min-width: 1098px){.has-text-right-desktop{text-align:right !important}}@media screen and (min-width: 1098px) and (max-width: 1421px){.has-text-right-desktop-only{text-align:right !important}}@media screen and (min-width: 1422px){.has-text-right-widescreen{text-align:right !important}}.is-capitalized{text-transform:capitalize !important}.is-lowercase{text-transform:lowercase !important}.is-uppercase{text-transform:uppercase !important}.is-italic{font-style:italic !important}.is-underlined{text-decoration:underline !important}.has-text-weight-light{font-weight:300 !important}.has-text-weight-normal{font-weight:400 !important}.has-text-weight-medium{font-weight:500 !important}.has-text-weight-semibold{font-weight:600 !important}.has-text-weight-bold{font-weight:700 !important}.is-family-primary{font-family:"Source Sans Pro",sans-serif !important}.is-family-secondary{font-family:BlinkMacSystemFont,-apple-system,"Segoe UI","Roboto","Oxygen","Ubuntu","Cantarell","Fira Sans","Droid Sans","Helvetica Neue","Helvetica","Arial",sans-serif !important}.is-family-sans-serif{font-family:BlinkMacSystemFont,-apple-system,"Segoe UI","Roboto","Oxygen","Ubuntu","Cantarell","Fira Sans","Droid Sans","Helvetica Neue","Helvetica","Arial",sans-serif !important}.is-family-monospace{font-family:monospace !important}.is-family-code{font-family:monospace !important}.is-block{display:block !important}@media screen and (max-width: 611px){.is-block-mobile{display:block !important}}@media screen and (min-width: 612px), print{.is-block-tablet{display:block !important}}@media screen and (min-width: 612px) and (max-width: 1097px){.is-block-tablet-only{display:block !important}}@media screen and (max-width: 1097px){.is-block-touch{display:block !important}}@media screen and (min-width: 1098px){.is-block-desktop{display:block !important}}@media screen and (min-width: 1098px) and (max-width: 1421px){.is-block-desktop-only{display:block !important}}@media screen and (min-width: 1422px){.is-block-widescreen{display:block !important}}.is-flex{display:flex !important}@media screen and (max-width: 611px){.is-flex-mobile{display:flex !important}}@media screen and (min-width: 612px), print{.is-flex-tablet{display:flex !important}}@media screen and (min-width: 612px) and (max-width: 1097px){.is-flex-tablet-only{display:flex !important}}@media screen and (max-width: 1097px){.is-flex-touch{display:flex !important}}@media screen and (min-width: 1098px){.is-flex-desktop{display:flex !important}}@media screen and (min-width: 1098px) and (max-width: 1421px){.is-flex-desktop-only{display:flex !important}}@media screen and (min-width: 1422px){.is-flex-widescreen{display:flex !important}}.is-inline{display:inline !important}@media screen and (max-width: 611px){.is-inline-mobile{display:inline !important}}@media screen and (min-width: 612px), print{.is-inline-tablet{display:inline !important}}@media screen and (min-width: 612px) and (max-width: 1097px){.is-inline-tablet-only{display:inline !important}}@media screen and (max-width: 1097px){.is-inline-touch{display:inline !important}}@media screen and (min-width: 1098px){.is-inline-desktop{display:inline !important}}@media screen and (min-width: 1098px) and (max-width: 1421px){.is-inline-desktop-only{display:inline !important}}@media screen and (min-width: 1422px){.is-inline-widescreen{display:inline !important}}.is-inline-block{display:inline-block !important}@media screen and (max-width: 611px){.is-inline-block-mobile{display:inline-block !important}}@media screen and (min-width: 612px), print{.is-inline-block-tablet{display:inline-block !important}}@media screen and (min-width: 612px) and (max-width: 1097px){.is-inline-block-tablet-only{display:inline-block !important}}@media screen and (max-width: 1097px){.is-inline-block-touch{display:inline-block !important}}@media screen and (min-width: 1098px){.is-inline-block-desktop{display:inline-block !important}}@media screen and (min-width: 1098px) and (max-width: 1421px){.is-inline-block-desktop-only{display:inline-block !important}}@media screen and (min-width: 1422px){.is-inline-block-widescreen{display:inline-block !important}}.is-inline-flex{display:inline-flex !important}@media screen and (max-width: 611px){.is-inline-flex-mobile{display:inline-flex !important}}@media screen and (min-width: 612px), print{.is-inline-flex-tablet{display:inline-flex !important}}@media screen and (min-width: 612px) and (max-width: 1097px){.is-inline-flex-tablet-only{display:inline-flex !important}}@media screen and (max-width: 1097px){.is-inline-flex-touch{display:inline-flex !important}}@media screen and (min-width: 1098px){.is-inline-flex-desktop{display:inline-flex !important}}@media screen and (min-width: 1098px) and (max-width: 1421px){.is-inline-flex-desktop-only{display:inline-flex !important}}@media screen and (min-width: 1422px){.is-inline-flex-widescreen{display:inline-flex !important}}.is-hidden{display:none !important}.is-sr-only{border:none !important;clip:rect(0, 0, 0, 0) !important;height:0.01em !important;overflow:hidden !important;padding:0 !important;position:absolute !important;white-space:nowrap !important;width:0.01em !important}@media screen and (max-width: 611px){.is-hidden-mobile{display:none !important}}@media screen and (min-width: 612px), print{.is-hidden-tablet{display:none !important}}@media screen and (min-width: 612px) and (max-width: 1097px){.is-hidden-tablet-only{display:none !important}}@media screen and (max-width: 1097px){.is-hidden-touch{display:none !important}}@media screen and (min-width: 1098px){.is-hidden-desktop{display:none !important}}@media screen and (min-width: 1098px) and (max-width: 1421px){.is-hidden-desktop-only{display:none !important}}@media screen and (min-width: 1422px){.is-hidden-widescreen{display:none !important}}.is-invisible{visibility:hidden !important}@media screen and (max-width: 611px){.is-invisible-mobile{visibility:hidden !important}}@media screen and (min-width: 612px), print{.is-invisible-tablet{visibility:hidden !important}}@media screen and (min-width: 612px) and (max-width: 1097px){.is-invisible-tablet-only{visibility:hidden !important}}@media screen and (max-width: 1097px){.is-invisible-touch{visibility:hidden !important}}@media screen and (min-width: 1098px){.is-invisible-desktop{visibility:hidden !important}}@media screen and (min-width: 1098px) and (max-width: 1421px){.is-invisible-desktop-only{visibility:hidden !important}}@media screen and (min-width: 1422px){.is-invisible-widescreen{visibility:hidden !important}}.hero{align-items:stretch;display:flex;flex-direction:column;justify-content:space-between}.hero .navbar{background:none}.hero .tabs ul{border-bottom:none}.hero.is-white{background-color:#fff;color:#000}.hero.is-white a:not(.button):not(.dropdown-item):not(.tag):not(.pagination-link.is-current),.hero.is-white strong{color:inherit}.hero.is-white .title{color:#000}.hero.is-white .subtitle{color:rgba(0,0,0,0.9)}.hero.is-white .subtitle a:not(.button),.hero.is-white .subtitle strong{color:#000}@media screen and (max-width: 1097px){.hero.is-white .navbar-menu{background-color:#fff}}.hero.is-white .navbar-item,.hero.is-white .navbar-link{color:rgba(0,0,0,0.7)}.hero.is-white a.navbar-item:hover,.hero.is-white a.navbar-item.is-active,.hero.is-white .navbar-link:hover,.hero.is-white .navbar-link.is-active{background-color:#f2f2f2;color:#000}.hero.is-white .tabs a{color:#000;opacity:0.9}.hero.is-white .tabs a:hover{opacity:1}.hero.is-white .tabs li.is-active a{color:#fff !important;opacity:1}.hero.is-white .tabs.is-boxed a,.hero.is-white .tabs.is-toggle a{color:#000}.hero.is-white .tabs.is-boxed a:hover,.hero.is-white .tabs.is-toggle a:hover{background-color:rgba(0,0,0,0.1)}.hero.is-white .tabs.is-boxed li.is-active a,.hero.is-white .tabs.is-boxed li.is-active a:hover,.hero.is-white .tabs.is-toggle li.is-active a,.hero.is-white .tabs.is-toggle li.is-active a:hover{background-color:#000;border-color:#000;color:#fff}.hero.is-white.is-bold{background-image:linear-gradient(141deg, #e6e6e6 0%, #fff 71%, #fff 100%)}@media screen and (max-width: 611px){.hero.is-white.is-bold .navbar-menu{background-image:linear-gradient(141deg, #e6e6e6 0%, #fff 71%, #fff 100%)}}.hero.is-black{background-color:#000;color:#fff}.hero.is-black a:not(.button):not(.dropdown-item):not(.tag):not(.pagination-link.is-current),.hero.is-black strong{color:inherit}.hero.is-black .title{color:#fff}.hero.is-black .subtitle{color:rgba(255,255,255,0.9)}.hero.is-black .subtitle a:not(.button),.hero.is-black .subtitle strong{color:#fff}@media screen and (max-width: 1097px){.hero.is-black .navbar-menu{background-color:#000}}.hero.is-black .navbar-item,.hero.is-black .navbar-link{color:rgba(255,255,255,0.7)}.hero.is-black a.navbar-item:hover,.hero.is-black a.navbar-item.is-active,.hero.is-black .navbar-link:hover,.hero.is-black .navbar-link.is-active{background-color:#000;color:#fff}.hero.is-black .tabs a{color:#fff;opacity:0.9}.hero.is-black .tabs a:hover{opacity:1}.hero.is-black .tabs li.is-active a{color:#000 !important;opacity:1}.hero.is-black .tabs.is-boxed a,.hero.is-black .tabs.is-toggle a{color:#fff}.hero.is-black .tabs.is-boxed a:hover,.hero.is-black .tabs.is-toggle a:hover{background-color:rgba(0,0,0,0.1)}.hero.is-black .tabs.is-boxed li.is-active a,.hero.is-black .tabs.is-boxed li.is-active a:hover,.hero.is-black .tabs.is-toggle li.is-active a,.hero.is-black .tabs.is-toggle li.is-active a:hover{background-color:#fff;border-color:#fff;color:#000}.hero.is-black.is-bold{background-image:linear-gradient(141deg, #000 0%, #000 71%, #0d0d0d 100%)}@media screen and (max-width: 611px){.hero.is-black.is-bold .navbar-menu{background-image:linear-gradient(141deg, #000 0%, #000 71%, #0d0d0d 100%)}}.hero.is-light{background-color:#f5f5f5;color:rgba(0,0,0,0.7)}.hero.is-light a:not(.button):not(.dropdown-item):not(.tag):not(.pagination-link.is-current),.hero.is-light strong{color:inherit}.hero.is-light .title{color:rgba(0,0,0,0.7)}.hero.is-light .subtitle{color:rgba(0,0,0,0.9)}.hero.is-light .subtitle a:not(.button),.hero.is-light .subtitle strong{color:rgba(0,0,0,0.7)}@media screen and (max-width: 1097px){.hero.is-light .navbar-menu{background-color:#f5f5f5}}.hero.is-light .navbar-item,.hero.is-light .navbar-link{color:rgba(0,0,0,0.7)}.hero.is-light a.navbar-item:hover,.hero.is-light a.navbar-item.is-active,.hero.is-light .navbar-link:hover,.hero.is-light .navbar-link.is-active{background-color:#e8e8e8;color:rgba(0,0,0,0.7)}.hero.is-light .tabs a{color:rgba(0,0,0,0.7);opacity:0.9}.hero.is-light .tabs a:hover{opacity:1}.hero.is-light .tabs li.is-active a{color:#f5f5f5 !important;opacity:1}.hero.is-light .tabs.is-boxed a,.hero.is-light .tabs.is-toggle a{color:rgba(0,0,0,0.7)}.hero.is-light .tabs.is-boxed a:hover,.hero.is-light .tabs.is-toggle a:hover{background-color:rgba(0,0,0,0.1)}.hero.is-light .tabs.is-boxed li.is-active a,.hero.is-light .tabs.is-boxed li.is-active a:hover,.hero.is-light .tabs.is-toggle li.is-active a,.hero.is-light .tabs.is-toggle li.is-active a:hover{background-color:rgba(0,0,0,0.7);border-color:rgba(0,0,0,0.7);color:#f5f5f5}.hero.is-light.is-bold{background-image:linear-gradient(141deg, #dfd8d9 0%, #f5f5f5 71%, #fff 100%)}@media screen and (max-width: 611px){.hero.is-light.is-bold .navbar-menu{background-image:linear-gradient(141deg, #dfd8d9 0%, #f5f5f5 71%, #fff 100%)}}.hero.is-dark{background-color:#363636;color:#fff}.hero.is-dark a:not(.button):not(.dropdown-item):not(.tag):not(.pagination-link.is-current),.hero.is-dark strong{color:inherit}.hero.is-dark .title{color:#fff}.hero.is-dark .subtitle{color:rgba(255,255,255,0.9)}.hero.is-dark .subtitle a:not(.button),.hero.is-dark .subtitle strong{color:#fff}@media screen and (max-width: 1097px){.hero.is-dark .navbar-menu{background-color:#363636}}.hero.is-dark .navbar-item,.hero.is-dark .navbar-link{color:rgba(255,255,255,0.7)}.hero.is-dark a.navbar-item:hover,.hero.is-dark a.navbar-item.is-active,.hero.is-dark .navbar-link:hover,.hero.is-dark .navbar-link.is-active{background-color:#292929;color:#fff}.hero.is-dark .tabs a{color:#fff;opacity:0.9}.hero.is-dark .tabs a:hover{opacity:1}.hero.is-dark .tabs li.is-active a{color:#363636 !important;opacity:1}.hero.is-dark .tabs.is-boxed a,.hero.is-dark .tabs.is-toggle a{color:#fff}.hero.is-dark .tabs.is-boxed a:hover,.hero.is-dark .tabs.is-toggle a:hover{background-color:rgba(0,0,0,0.1)}.hero.is-dark .tabs.is-boxed li.is-active a,.hero.is-dark .tabs.is-boxed li.is-active a:hover,.hero.is-dark .tabs.is-toggle li.is-active a,.hero.is-dark .tabs.is-toggle li.is-active a:hover{background-color:#fff;border-color:#fff;color:#363636}.hero.is-dark.is-bold{background-image:linear-gradient(141deg, #1f191a 0%, #363636 71%, #46403f 100%)}@media screen and (max-width: 611px){.hero.is-dark.is-bold .navbar-menu{background-image:linear-gradient(141deg, #1f191a 0%, #363636 71%, #46403f 100%)}}.hero.is-primary{background-color:#0060af;color:#fff}.hero.is-primary a:not(.button):not(.dropdown-item):not(.tag):not(.pagination-link.is-current),.hero.is-primary strong{color:inherit}.hero.is-primary .title{color:#fff}.hero.is-primary .subtitle{color:rgba(255,255,255,0.9)}.hero.is-primary .subtitle a:not(.button),.hero.is-primary .subtitle strong{color:#fff}@media screen and (max-width: 1097px){.hero.is-primary .navbar-menu{background-color:#0060af}}.hero.is-primary .navbar-item,.hero.is-primary .navbar-link{color:rgba(255,255,255,0.7)}.hero.is-primary a.navbar-item:hover,.hero.is-primary a.navbar-item.is-active,.hero.is-primary .navbar-link:hover,.hero.is-primary .navbar-link.is-active{background-color:#005296;color:#fff}.hero.is-primary .tabs a{color:#fff;opacity:0.9}.hero.is-primary .tabs a:hover{opacity:1}.hero.is-primary .tabs li.is-active a{color:#0060af !important;opacity:1}.hero.is-primary .tabs.is-boxed a,.hero.is-primary .tabs.is-toggle a{color:#fff}.hero.is-primary .tabs.is-boxed a:hover,.hero.is-primary .tabs.is-toggle a:hover{background-color:rgba(0,0,0,0.1)}.hero.is-primary .tabs.is-boxed li.is-active a,.hero.is-primary .tabs.is-boxed li.is-active a:hover,.hero.is-primary .tabs.is-toggle li.is-active a,.hero.is-primary .tabs.is-toggle li.is-active a:hover{background-color:#fff;border-color:#fff;color:#0060af}.hero.is-primary.is-bold{background-image:linear-gradient(141deg, #00597c 0%, #0060af 71%, #004dc9 100%)}@media screen and (max-width: 611px){.hero.is-primary.is-bold .navbar-menu{background-image:linear-gradient(141deg, #00597c 0%, #0060af 71%, #004dc9 100%)}}.hero.is-link{background-color:#0060af;color:#fff}.hero.is-link a:not(.button):not(.dropdown-item):not(.tag):not(.pagination-link.is-current),.hero.is-link strong{color:inherit}.hero.is-link .title{color:#fff}.hero.is-link .subtitle{color:rgba(255,255,255,0.9)}.hero.is-link .subtitle a:not(.button),.hero.is-link .subtitle strong{color:#fff}@media screen and (max-width: 1097px){.hero.is-link .navbar-menu{background-color:#0060af}}.hero.is-link .navbar-item,.hero.is-link .navbar-link{color:rgba(255,255,255,0.7)}.hero.is-link a.navbar-item:hover,.hero.is-link a.navbar-item.is-active,.hero.is-link .navbar-link:hover,.hero.is-link .navbar-link.is-active{background-color:#005296;color:#fff}.hero.is-link .tabs a{color:#fff;opacity:0.9}.hero.is-link .tabs a:hover{opacity:1}.hero.is-link .tabs li.is-active a{color:#0060af !important;opacity:1}.hero.is-link .tabs.is-boxed a,.hero.is-link .tabs.is-toggle a{color:#fff}.hero.is-link .tabs.is-boxed a:hover,.hero.is-link .tabs.is-toggle a:hover{background-color:rgba(0,0,0,0.1)}.hero.is-link .tabs.is-boxed li.is-active a,.hero.is-link .tabs.is-boxed li.is-active a:hover,.hero.is-link .tabs.is-toggle li.is-active a,.hero.is-link .tabs.is-toggle li.is-active a:hover{background-color:#fff;border-color:#fff;color:#0060af}.hero.is-link.is-bold{background-image:linear-gradient(141deg, #00597c 0%, #0060af 71%, #004dc9 100%)}@media screen and (max-width: 611px){.hero.is-link.is-bold .navbar-menu{background-image:linear-gradient(141deg, #00597c 0%, #0060af 71%, #004dc9 100%)}}.hero.is-info{background-color:#3e8ed0;color:#fff}.hero.is-info a:not(.button):not(.dropdown-item):not(.tag):not(.pagination-link.is-current),.hero.is-info strong{color:inherit}.hero.is-info .title{color:#fff}.hero.is-info .subtitle{color:rgba(255,255,255,0.9)}.hero.is-info .subtitle a:not(.button),.hero.is-info .subtitle strong{color:#fff}@media screen and (max-width: 1097px){.hero.is-info .navbar-menu{background-color:#3e8ed0}}.hero.is-info .navbar-item,.hero.is-info .navbar-link{color:rgba(255,255,255,0.7)}.hero.is-info a.navbar-item:hover,.hero.is-info a.navbar-item.is-active,.hero.is-info .navbar-link:hover,.hero.is-info .navbar-link.is-active{background-color:#3082c5;color:#fff}.hero.is-info .tabs a{color:#fff;opacity:0.9}.hero.is-info .tabs a:hover{opacity:1}.hero.is-info .tabs li.is-active a{color:#3e8ed0 !important;opacity:1}.hero.is-info .tabs.is-boxed a,.hero.is-info .tabs.is-toggle a{color:#fff}.hero.is-info .tabs.is-boxed a:hover,.hero.is-info .tabs.is-toggle a:hover{background-color:rgba(0,0,0,0.1)}.hero.is-info .tabs.is-boxed li.is-active a,.hero.is-info .tabs.is-boxed li.is-active a:hover,.hero.is-info .tabs.is-toggle li.is-active a,.hero.is-info .tabs.is-toggle li.is-active a:hover{background-color:#fff;border-color:#fff;color:#3e8ed0}.hero.is-info.is-bold{background-image:linear-gradient(141deg, #208fbc 0%, #3e8ed0 71%, #4d83db 100%)}@media screen and (max-width: 611px){.hero.is-info.is-bold .navbar-menu{background-image:linear-gradient(141deg, #208fbc 0%, #3e8ed0 71%, #4d83db 100%)}}.hero.is-success{background-color:#007373;color:#fff}.hero.is-success a:not(.button):not(.dropdown-item):not(.tag):not(.pagination-link.is-current),.hero.is-success strong{color:inherit}.hero.is-success .title{color:#fff}.hero.is-success .subtitle{color:rgba(255,255,255,0.9)}.hero.is-success .subtitle a:not(.button),.hero.is-success .subtitle strong{color:#fff}@media screen and (max-width: 1097px){.hero.is-success .navbar-menu{background-color:#007373}}.hero.is-success .navbar-item,.hero.is-success .navbar-link{color:rgba(255,255,255,0.7)}.hero.is-success a.navbar-item:hover,.hero.is-success a.navbar-item.is-active,.hero.is-success .navbar-link:hover,.hero.is-success .navbar-link.is-active{background-color:#005a5a;color:#fff}.hero.is-success .tabs a{color:#fff;opacity:0.9}.hero.is-success .tabs a:hover{opacity:1}.hero.is-success .tabs li.is-active a{color:#007373 !important;opacity:1}.hero.is-success .tabs.is-boxed a,.hero.is-success .tabs.is-toggle a{color:#fff}.hero.is-success .tabs.is-boxed a:hover,.hero.is-success .tabs.is-toggle a:hover{background-color:rgba(0,0,0,0.1)}.hero.is-success .tabs.is-boxed li.is-active a,.hero.is-success .tabs.is-boxed li.is-active a:hover,.hero.is-success .tabs.is-toggle li.is-active a,.hero.is-success .tabs.is-toggle li.is-active a:hover{background-color:#fff;border-color:#fff;color:#007373}.hero.is-success.is-bold{background-image:linear-gradient(141deg, #004035 0%, #007373 71%, #00758d 100%)}@media screen and (max-width: 611px){.hero.is-success.is-bold .navbar-menu{background-image:linear-gradient(141deg, #004035 0%, #007373 71%, #00758d 100%)}}.hero.is-warning{background-color:#ffe08a;color:rgba(0,0,0,0.7)}.hero.is-warning a:not(.button):not(.dropdown-item):not(.tag):not(.pagination-link.is-current),.hero.is-warning strong{color:inherit}.hero.is-warning .title{color:rgba(0,0,0,0.7)}.hero.is-warning .subtitle{color:rgba(0,0,0,0.9)}.hero.is-warning .subtitle a:not(.button),.hero.is-warning .subtitle strong{color:rgba(0,0,0,0.7)}@media screen and (max-width: 1097px){.hero.is-warning .navbar-menu{background-color:#ffe08a}}.hero.is-warning .navbar-item,.hero.is-warning .navbar-link{color:rgba(0,0,0,0.7)}.hero.is-warning a.navbar-item:hover,.hero.is-warning a.navbar-item.is-active,.hero.is-warning .navbar-link:hover,.hero.is-warning .navbar-link.is-active{background-color:#ffd970;color:rgba(0,0,0,0.7)}.hero.is-warning .tabs a{color:rgba(0,0,0,0.7);opacity:0.9}.hero.is-warning .tabs a:hover{opacity:1}.hero.is-warning .tabs li.is-active a{color:#ffe08a !important;opacity:1}.hero.is-warning .tabs.is-boxed a,.hero.is-warning .tabs.is-toggle a{color:rgba(0,0,0,0.7)}.hero.is-warning .tabs.is-boxed a:hover,.hero.is-warning .tabs.is-toggle a:hover{background-color:rgba(0,0,0,0.1)}.hero.is-warning .tabs.is-boxed li.is-active a,.hero.is-warning .tabs.is-boxed li.is-active a:hover,.hero.is-warning .tabs.is-toggle li.is-active a,.hero.is-warning .tabs.is-toggle li.is-active a:hover{background-color:rgba(0,0,0,0.7);border-color:rgba(0,0,0,0.7);color:#ffe08a}.hero.is-warning.is-bold{background-image:linear-gradient(141deg, #ffb657 0%, #ffe08a 71%, #fff6a3 100%)}@media screen and (max-width: 611px){.hero.is-warning.is-bold .navbar-menu{background-image:linear-gradient(141deg, #ffb657 0%, #ffe08a 71%, #fff6a3 100%)}}.hero.is-danger{background-color:#dd3700;color:#fff}.hero.is-danger a:not(.button):not(.dropdown-item):not(.tag):not(.pagination-link.is-current),.hero.is-danger strong{color:inherit}.hero.is-danger .title{color:#fff}.hero.is-danger .subtitle{color:rgba(255,255,255,0.9)}.hero.is-danger .subtitle a:not(.button),.hero.is-danger .subtitle strong{color:#fff}@media screen and (max-width: 1097px){.hero.is-danger .navbar-menu{background-color:#dd3700}}.hero.is-danger .navbar-item,.hero.is-danger .navbar-link{color:rgba(255,255,255,0.7)}.hero.is-danger a.navbar-item:hover,.hero.is-danger a.navbar-item.is-active,.hero.is-danger .navbar-link:hover,.hero.is-danger .navbar-link.is-active{background-color:#c43100;color:#fff}.hero.is-danger .tabs a{color:#fff;opacity:0.9}.hero.is-danger .tabs a:hover{opacity:1}.hero.is-danger .tabs li.is-active a{color:#dd3700 !important;opacity:1}.hero.is-danger .tabs.is-boxed a,.hero.is-danger .tabs.is-toggle a{color:#fff}.hero.is-danger .tabs.is-boxed a:hover,.hero.is-danger .tabs.is-toggle a:hover{background-color:rgba(0,0,0,0.1)}.hero.is-danger .tabs.is-boxed li.is-active a,.hero.is-danger .tabs.is-boxed li.is-active a:hover,.hero.is-danger .tabs.is-toggle li.is-active a,.hero.is-danger .tabs.is-toggle li.is-active a:hover{background-color:#fff;border-color:#fff;color:#dd3700}.hero.is-danger.is-bold{background-image:linear-gradient(141deg, #aa0e00 0%, #dd3700 71%, #f76600 100%)}@media screen and (max-width: 611px){.hero.is-danger.is-bold .navbar-menu{background-image:linear-gradient(141deg, #aa0e00 0%, #dd3700 71%, #f76600 100%)}}.hero.is-small .hero-body{padding:1.5rem}@media screen and (min-width: 612px), print{.hero.is-medium .hero-body{padding:9rem 4.5rem}}@media screen and (min-width: 612px), print{.hero.is-large .hero-body{padding:18rem 6rem}}.hero.is-halfheight .hero-body,.hero.is-fullheight .hero-body,.hero.is-fullheight-with-navbar .hero-body{align-items:center;display:flex}.hero.is-halfheight .hero-body>.container,.hero.is-fullheight .hero-body>.container,.hero.is-fullheight-with-navbar .hero-body>.container{flex-grow:1;flex-shrink:1}.hero.is-halfheight{min-height:50vh}.hero.is-fullheight{min-height:100vh}.hero-video{overflow:hidden}.hero-video video{left:50%;min-height:100%;min-width:100%;position:absolute;top:50%;transform:translate3d(-50%, -50%, 0)}.hero-video.is-transparent{opacity:0.3}@media screen and (max-width: 611px){.hero-video{display:none}}.hero-buttons{margin-top:1.5rem}@media screen and (max-width: 611px){.hero-buttons .button{display:flex}.hero-buttons .button:not(:last-child){margin-bottom:0.75rem}}@media screen and (min-width: 612px), print{.hero-buttons{display:flex;justify-content:center}.hero-buttons .button:not(:last-child){margin-right:1.5rem}}.hero-head,.hero-foot{flex-grow:0;flex-shrink:0}.hero-body{flex-grow:1;flex-shrink:0;padding:3rem 1.5rem}@media screen and (min-width: 612px), print{.hero-body{padding:3rem 3rem}}.section{padding:3rem 1.5rem}@media screen and (min-width: 1098px){.section{padding:3rem 3rem}.section.is-medium{padding:9rem 4.5rem}.section.is-large{padding:18rem 6rem}}.footer{background-color:#fafafa;padding:3rem 1.5rem 6rem}.slick-slider{position:relative;display:block;box-sizing:border-box;-webkit-touch-callout:none;-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;-ms-touch-action:pan-y;touch-action:pan-y;-webkit-tap-highlight-color:transparent}.slick-list{position:relative;overflow:hidden;display:block;margin:0;padding:0}.slick-list:focus{outline:none}.slick-list.dragging{cursor:pointer}.slick-slider .slick-track,.slick-slider .slick-list{-webkit-transform:translate3d(0, 0, 0);-moz-transform:translate3d(0, 0, 0);-ms-transform:translate3d(0, 0, 0);-o-transform:translate3d(0, 0, 0);transform:translate3d(0, 0, 0)}.slick-track{position:relative;left:0;top:0;display:block;margin-left:auto;margin-right:auto}.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 transparent}.slick-arrow.slick-hidden{display:none}.appContainer{margin-top:36px}.cpp_form{font-weight:normal;color:var(--color-anthracite-contain)}.cpp_form .yui-calendar div,.cpp_form .yui-calendar td,.cpp_form .yui-calendar th,.cpp_form .yui-calendar thead,.cpp_form .yui-calendar span{font-family:"Source Sans Pro",sans-serif}.yui-dialog .acell :hover{background-color:transparent;color:var(--color-daadblue);text-decoration:underline var(--color-daadblue) solid 2px}.cpp_form .yui-calcontainer{font-family:"Source Sans Pro",sans-serif;display:flex;flex-wrap:wrap;margin:0 -12px}.cpp_form .yui-calcontainer.multi .groupcal{margin:0;border:none;float:none}.cpp_form .yui-calcontainer>.groupcal{width:33.333%;border:0;padding:0 12px;margin:0 0 18px 0}@media screen and (max-width: 1097px){.cpp_form .yui-calcontainer>.groupcal{width:50%;margin-bottom:18px}}@media screen and (max-width: 611px){.cpp_form .yui-calcontainer>.groupcal{width:100%;margin-bottom:18px}}.cpp_form #listcal1{color:#333;font-weight:300;margin:47.99988px 0 36px}.cpp_form #listcal1 div.cancel-btn{background:none}.cpp_form #listcal1 div.cancel-btn span{display:inline}.cpp_form #listcal1 div.cancel-btn span:before{content:'|\00a0';color:#333}.cpp_form .yui-calcontainer>div table{width:100%;min-width:0;padding:0;border-collapse:collapse}.cpp_form .yui-calendar{padding:6px;border:12px solid #fff !important;border-top:6px solid #fff !important;border-bottom:6px solid #fff !important;box-shadow:0 0 6px 0 rgba(0,0,0,0.12),0 3px 6px 0 rgba(0,0,0,0.12)}.cpp_form .yui-calendar .calhead{font-family:"Source Sans Pro",sans-serif;font-weight:600;color:#333;border-bottom:1px solid #e2e2e2}.cpp_form .yui-calendar .calhead .calheader{width:100%;position:relative;text-align:center;top:12px}.cpp_form .yui-calendar .calnavleft,.cpp_form .yui-calendar .calnavright{display:block;color:#767676}.cpp_form .yui-calendar .calnavleft::after{-webkit-transform:rotate(180deg);-moz-transform:rotate(180deg);-o-transform:rotate(180deg);-ms-transform:rotate(180deg);transform:rotate(180deg);margin-top:-20px}.cpp_form .yui-calcontainer>div table a::before{display:none}.cpp_form .yui-calendar th{padding:0;background:#fff}.cpp_form .yui-calendar th.calweekdaycell{font-size:16px;line-height:24px;color:#767676;padding:6px 4px}.cpp_form .yui-calendar tr,.cpp_form .yui-calendar td{font-family:"Source Sans Pro",sans-serif;border:none}.cpp_form .yui-calendar td.calcell{background:none !important;color:#333;font-weight:400;border:none !important;text-align:center !important;font-size:16px;line-height:24px}.cpp_form .yui-calendar td.calcell.today{background:#767676;color:#fff}.cpp_form .yui-calendar td.calcell a{display:block;width:24px;height:24px;margin:0 auto;border-radius:100%;line-height:24px;font-size:16px}.cpp_form .yui-calendar td.calcell a:before{content:'';display:none}.cpp_form .yui-calendar td.calcell.today{background:none}.cpp_form .yui-calendar td.calcell.today a{background:#767676;color:#fff}.cpp_form .yui-calendar td.calcell.previous,.cpp_form .yui-calendar td.calcell.oom,.cpp_form .yui-calendar td.calcell.restricted{text-decoration:none;background:#fff;color:#767676}.cpp_form .yui-calendar td.calcell.selectable:hover a{background:#0060af;color:#fff}.cpp_form .yui-calendar td.calcell.reserveddate,.cpp_form .yui-calendar td.calcell.selected:hover,.cpp_form .yui-calendar td.calcell.selected{background:none !important}.cpp_form .yui-calendar td.calcell.reserveddate a,.cpp_form .yui-calendar td.calcell.selected:hover a,.cpp_form .yui-calendar td.calcell.selected a{background:var(--color-daadblue-background);color:#fff}div[id^="listcal"] .cancel-btn a{color:var(--color-daadblue);text-decoration:none}div[id^="listcal"] .cancel-btn a:hover{text-decoration:none}.abc_selectdate{display:none}#fbuilder{background:#e2e2e2;margin-top:36px;padding:36px 72px}@media screen and (max-width: 611px){#fbuilder{padding:18px}}#fbuilder #formheader{display:none}#fbuilder label{margin-bottom:6px;display:block}#fbuilder label .r{margin-left:5px}#hdcaptcha,#fbuilder #fieldlist .medium{width:100% !important;display:block;line-height:48px;padding:0 18px;height:46px;font-size:1em;border:1px solid #767676;border-radius:0;margin-bottom:0 !important}#fbuilder #fieldlist textarea{padding:18px;font-size:1.25em;min-height:300px;margin-bottom:0 !important}#fbuilder input[type="file"].medium{background:none;border:none;padding:0;box-shadow:none;height:auto}#fbuilder .medium.cpefb_error{border-color:var(--color-daadblue-border)}#fbuilder #captcha-error,#fbuilder .top_aligned .fields label.cpefb_error{font-weight:normal;font-size:12px;color:var(--color-red);line-height:1.5;margin-top:2px}#fbuilder .fields{border:none;padding:0 !important;margin:0}#fbuilder .pbreak .pbPrevious,#fbuilder .pbreak .pbNext,#fbuilder .pbSubmit{font-size:1em !important;float:none;margin:36px 0 0 0}#fbuilder .g-recaptcha{position:absolute;margin-top:-160px}#fbuilder div{margin-bottom:0}#fbuilder #fieldlist .fields{margin-bottom:36px !important}#fbuilder #fieldlist .captcha .fields{margin-bottom:0 !important}#fbuilder #fieldlist .captcha #captchaimg{margin-bottom:36px}body .yui-panel,body .yui-panel .bd,body .yui-panel .hd{border:none}body .yui-panel .bd{padding:15px 45px 15px 15px}body .yui-panel .hd{padding:15px 45px 0 15px}body .yui-panel{box-shadow:0 0 8px rgba(0,0,0,0.6);width:400px !important}@media screen and (max-width: 611px){body .yui-panel{width:300px}}body .yui-panel .hd .tl+span{font-weight:300;border-bottom:1px solid #aaaaaa;display:block;padding-bottom:5px;font-size:24px;color:#666}body .yui-panel-container a{color:#ccc}body .yui-panel-container a:hover{text-decoration:underline;color:#ccc}body .yui-panel-container .cell{width:auto;margin:0;border:none}body .yui-panel-container a::after{content:' | ';display:block;float:left;margin:0 5px}body .yui-panel-container a div{color:#0060af;background:none;font-weight:bold}body .yui-panel-container a+div{margin-top:60px}.is-rtl .cpp_form .yui-calcontainer{flex-direction:row-reverse}.container{padding:0 18px}@media screen and (max-width: 1421px){.container{width:1098px}}@media screen and (max-width: 1097px){.container{width:612px}}@media screen and (max-width: 611px){.container{width:100%;max-width:480px}}@media screen and (max-width: 1421px){.columns{display:block !important}}@media screen and (max-width: 1421px){.column{width:100% !important}}.select.is-small{font-size:1.125em;height:40px}.select.is-large{height:52px}.select select{border-color:#767676;border-radius:0;padding-top:0;padding-bottom:0}.select select:hover{border-color:#767676}.select select:focus{border-color:#767676}.select select:focus-visible{outline:1px auto;outline:1px auto -webkit-focus-ring-color}.select:not(.is-multiple):not(.is-loading)::after{border-color:#767676;right:1em}.select.is-large{height:52px !important;font-size:24px;padding:0}.is-rtl .column.is-offset-2-widescreen{margin-left:0;margin-right:16.66667%}@media screen and (max-width: 1421px){.is-rtl .column.is-offset-2-widescreen{margin:0}}.is-rtl .column.is-offset-1-widescreen{margin-left:0;margin-right:8.33333%}@media screen and (max-width: 1421px){.is-rtl .column.is-offset-1-widescreen{margin:0}}.is-rtl .select select{padding:0 17px 0 30px}.is-rtl .select:not(.is-multiple):not(.is-loading)::after{right:initial;left:24px}.is-rtl .ml-1{margin-left:0 !important;margin-right:0.25rem !important}div.snoop-cc{font-family:inherit}div.snoop-cc .snoop-modal__title{font-size:1.5em;font-weight:bold}div.snoop-cc .snoop-modal__introduction a:not(:hover){color:#333}div.snoop-cc .snoop-button--primary{border-radius:1.5rem}html[dir="rtl"] div.snoop-cc{text-align:right}html[dir="rtl"] div.snoop-cc .snoop-footer__accept-all{text-align:left}.daterangepicker{border:none;margin-top:12px;box-shadow:0 0 10px rgba(0,0,0,0.4)}@media screen and (max-width: 1097px){.daterangepicker{width:100%}}.daterangepicker:before,.daterangepicker:after{display:none}.daterangepicker .calendar-table tr{color:#767676}.daterangepicker .calendar-table tr th{padding-top:9px;color:#767676}.daterangepicker .calendar-table tr:first-child th{color:#333;font-size:20px;font-weight:600;border-bottom:1px solid #e2e2e2;padding-top:0;padding-bottom:9px}.daterangepicker .calendar-table td{width:37px;border-radius:50% !important;font-size:18px;color:#333;padding:6px 8px}.daterangepicker .calendar-table td.off{color:#767676}.daterangepicker .calendar-table td.in-range{color:#fff;background-color:#767676}.daterangepicker .calendar-table td.in-range:hover{color:#fff;background-color:var(--color-daadblue)}.daterangepicker .calendar-table td.active,.daterangepicker .calendar-table td.active:hover{color:#fff;background-color:var(--color-daadblue)}.slick-list{padding:0 !important}.slick-dots{display:flex}.slick-dots button{background:none;border:1px solid currentColor;border-radius:50%;text-indent:-99999px;width:14px;height:14px;display:block;margin:0 9px;cursor:pointer;padding:0}.slick-dots .slick-active button{background:currentColor}.slick-active .slick-container{position:relative;overflow:hidden}.slick-active .o-image{transition:transform .5s ease}@media (prefers-reduced-motion: no-preference){.slick-active :focus .o-image,.slick-active :active .o-image,.slick-active:not([disabled]):hover .o-image{transform:scale(1.2)}}.slick-active:hover h3,.slick-active:hover h4,.slick-active:hover .o-more-link{color:var(--color-daadblue);text-decoration:underline}.slick-active:hover h3 a,.slick-active:hover h4 a,.slick-active:hover .o-more-link a{color:var(--color-daadblue)}.leaflet-popup-content-wrapper{border-radius:0;background:var(--color-white);color:var(--color-anthracite)}.custom-marker{display:block;background:none;border:none;margin:0;padding:0;position:relative;cursor:pointer}.marker{fill:var(--color-darkblue)}.marker-active .custom-marker .marker{fill:var(--color-red)}.icon{fill:#fff;position:absolute;top:13.33333px;left:50%;transform:translateX(-50%);width:40px;height:40px}.leaflet-marker-icon{position:relative}.leaflet-marker-icon span{background:var(--color-darkblue);color:#fff;font-weight:600;position:absolute;width:64px;height:64px;text-align:center;line-height:64px;top:50%;left:50%;border-radius:50%;transform:translateX(-50%) translateY(-50%);font-size:2em}.leaflet-marker-icon:focus span{outline-offset:-0.25rem;outline:0.125rem solid currentColor}.leaflet-popup-content{max-height:300px;overflow-y:scroll;padding-right:12px;min-width:340px}@media screen and (max-width: 611px){.leaflet-popup-content{max-height:160px;min-width:180px}}.popup-content:focus{outline:none}.tippy-box[data-theme~='daad']{background-color:#000;color:#fff;font-weight:600;border-radius:0}.tippy-box[data-theme~='daad'][data-placement^='top']>.tippy-arrow::before{border-top-color:#000}.tippy-box[data-theme~='daad'][data-placement^='bottom']>.tippy-arrow::before{border-bottom-color:#000}.tippy-box[data-theme~='daad'][data-placement^='left']>.tippy-arrow::before{border-left-color:#000}.tippy-box[data-theme~='daad'][data-placement^='right']>.tippy-arrow::before{border-right-color:#000}.mejs__controls:not([style*="display: none"]){background:#333;background:rgba(51,51,51,0.7)}.mejs__custom-button button{background-image:url("data:image/svg+xml,%3Csvg xmlns=%27http://www.w3.org/2000/svg%27 width=%2717%27 height=%2719%27%3E%3Cg fill=%27none%27 fill-rule=%27evenodd%27 stroke=%27%23fff%27 stroke-width=%271.5%27%3E%3Cpath d=%27M3.03955187,1.44552895 L14.4126979,12.9880739 C13.9813057,13.8501717 13.4159473,14.6379867 12.7380889,15.322267 L0.749994361,3.33809826 L0.749981312,2.61907388 C1.67820694,1.88925361 2.35150452,1.64301063 3.03955187,1.44552895 Z%27 transform=%27translate%28.583%29%27/%3E%3Cpath d=%27M8.05486604,0.750739731 C10.4883,0.728295766 12.885299,1.21681275 15.1026494,2.1843343 L15.3736421,8.92000739 C15.3736421,10.801577 14.7942555,12.5859916 13.7758423,14.0689026 C12.7574169,15.5518314 11.2999545,16.7332496 9.5440831,17.4087002 L8.68309079,17.739533 C8.28319328,17.89335 7.84045251,17.89335 7.44031397,17.7394404 L6.5798281,17.4088022 C4.82369133,16.7332496 3.36622894,15.5518314 2.34780353,14.0689026 C1.32939029,12.5859916 0.750003698,10.801577 0.750003698,8.92000739 L0.749987206,2.61939462 C3.24507956,1.21544161 5.63874374,0.728327286 8.05486604,0.750739731 Z%27 transform=%27translate%28.583%29%27/%3E%3C/g%3E%3C/svg%3E%0A");background-position:center;background-repeat:no-repeat}.mfp-content .mfp-counter,.mfp-content .mfp-title{font-size:18px;color:#fff;line-height:1.3}.mfp-content .copyright{font-weight:300}.mfp-img{max-height:50vh !important}@media screen and (min-width: 1098px){.mfp-img{max-height:70vh !important}}.mfp-zoom-out-cur,.mfp-zoom-out-cur .mfp-image-holder .mfp-close{cursor:pointer}button.mfp-arrow{height:41px;width:82px;border-radius:164px 164px 0 0;overflow:hidden;margin:0;padding:0;background:#000;top:90%;opacity:1}@media screen and (min-width: 1098px){button.mfp-arrow{height:82px;width:164px;top:40%}}button.mfp-arrow:active{margin-top:0}button.mfp-arrow:before,button.mfp-arrow:after{display:none;border:none;margin:0;padding:0}button.mfp-arrow-left{transform:rotate(270deg);left:50%;transform-origin:0;margin-left:-20.5px}@media screen and (min-width: 1098px){button.mfp-arrow-left{left:32.8px;transform:rotate(90deg);top:40%;margin-left:0}}button.mfp-arrow-left:after{content:'';background-image:url("data:image/svg+xml,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22utf-8%22%3F%3E%0A%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20version%3D%221.1%22%20id%3D%22Layer_1%22%20x%3D%220px%22%20y%3D%220px%22%20viewBox%3D%220%200%208.5%2015.5%22%20style%3D%22enable-background%3Anew%200%200%208.5%2015.5%3B%22%20xml%3Aspace%3D%22preserve%22%3E%0A%3Cpath%20class%3D%22st0%22%20fill%3D%22white%22%20d%3D%22M0.4%2C0.9c-0.2-0.2-0.2-0.5%2C0-0.7C0.6%2C0%2C0.9%2C0%2C1.1%2C0.2l6.9%2C6.9c0.2%2C0.2%2C0.3%2C0.4%2C0.3%2C0.7c0%2C0.3-0.1%2C0.5-0.3%2C0.7%20%20l-6.9%2C6.9c-0.2%2C0.2-0.5%2C0.2-0.7%2C0c-0.2-0.2-0.2-0.5%2C0-0.7l6.9-6.9L0.4%2C0.9z%22%2F%3E%0A%3C%2Fsvg%3E%0A");display:inline-block;width:20.5px;height:41px;background-size:100%;background-repeat:no-repeat;position:absolute;left:52%;top:55%;transform:translate(-50%, -50%) rotate(270deg)}@media screen and (min-width: 1098px){button.mfp-arrow-left:after{left:48%;width:32.8px;height:65.6px;transform:translate(-50%, -50%) rotate(90deg)}}button.mfp-arrow-left:focus:after,button.mfp-arrow-left:active:after,button.mfp-arrow-left:hover:after{background-image:url("data:image/svg+xml,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22utf-8%22%3F%3E%0A%3Csvg%20version%3D%221.1%22%20id%3D%22Layer_1%22%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%0A%09%20viewBox%3D%220%200%208.5%2015.5%22%20style%3D%22enable-background%3Anew%200%200%208.5%2015.5%3B%22%20xml%3Aspace%3D%22preserve%22%3E%0A%3Cpath%20class%3D%22st0%22%20fill%3D%22%23dd3700%22%20d%3D%22M0.4%2C0.9c-0.2-0.2-0.2-0.5%2C0-0.7C0.6%2C0%2C0.9%2C0%2C1.1%2C0.2l6.9%2C6.9c0.2%2C0.2%2C0.3%2C0.4%2C0.3%2C0.7c0%2C0.3-0.1%2C0.5-0.3%2C0.7%0A%09l-6.9%2C6.9c-0.2%2C0.2-0.5%2C0.2-0.7%2C0c-0.2-0.2-0.2-0.5%2C0-0.7l6.9-6.9L0.4%2C0.9z%22%2F%3E%0A%3C%2Fsvg%3E%0A")}button.mfp-arrow-right{transform:rotate(90deg);right:50%;transform-origin:100%;margin-right:-20.5px}@media screen and (min-width: 1098px){button.mfp-arrow-right{right:32.8px;transform:rotate(270deg);top:40%;margin-right:0}}button.mfp-arrow-right:after{content:'';background-image:url("data:image/svg+xml,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22utf-8%22%3F%3E%0A%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20version%3D%221.1%22%20id%3D%22Layer_1%22%20x%3D%220px%22%20y%3D%220px%22%20viewBox%3D%220%200%208.5%2015.5%22%20style%3D%22enable-background%3Anew%200%200%208.5%2015.5%3B%22%20xml%3Aspace%3D%22preserve%22%3E%0A%3Cpath%20class%3D%22st0%22%20fill%3D%22white%22%20d%3D%22M0.4%2C0.9c-0.2-0.2-0.2-0.5%2C0-0.7C0.6%2C0%2C0.9%2C0%2C1.1%2C0.2l6.9%2C6.9c0.2%2C0.2%2C0.3%2C0.4%2C0.3%2C0.7c0%2C0.3-0.1%2C0.5-0.3%2C0.7%20%20l-6.9%2C6.9c-0.2%2C0.2-0.5%2C0.2-0.7%2C0c-0.2-0.2-0.2-0.5%2C0-0.7l6.9-6.9L0.4%2C0.9z%22%2F%3E%0A%3C%2Fsvg%3E%0A");display:inline-block;width:20.5px;height:41px;background-size:100%;background-repeat:no-repeat;position:absolute;left:52%;top:55%;transform:translate(-50%, -50%) rotate(270deg)}@media screen and (min-width: 1098px){button.mfp-arrow-right:after{left:48%;width:32.8px;height:65.6px;transform:translate(-50%, -50%) rotate(90deg)}}button.mfp-arrow-right:focus:after,button.mfp-arrow-right:active:after,button.mfp-arrow-right:hover:after{background-image:url("data:image/svg+xml,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22utf-8%22%3F%3E%0A%3Csvg%20version%3D%221.1%22%20id%3D%22Layer_1%22%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%0A%09%20viewBox%3D%220%200%208.5%2015.5%22%20style%3D%22enable-background%3Anew%200%200%208.5%2015.5%3B%22%20xml%3Aspace%3D%22preserve%22%3E%0A%3Cpath%20class%3D%22st0%22%20fill%3D%22%23dd3700%22%20d%3D%22M0.4%2C0.9c-0.2-0.2-0.2-0.5%2C0-0.7C0.6%2C0%2C0.9%2C0%2C1.1%2C0.2l6.9%2C6.9c0.2%2C0.2%2C0.3%2C0.4%2C0.3%2C0.7c0%2C0.3-0.1%2C0.5-0.3%2C0.7%0A%09l-6.9%2C6.9c-0.2%2C0.2-0.5%2C0.2-0.7%2C0c-0.2-0.2-0.2-0.5%2C0-0.7l6.9-6.9L0.4%2C0.9z%22%2F%3E%0A%3C%2Fsvg%3E%0A")}.mfp-close{position:fixed;right:0;top:0;font-size:0;opacity:1}.mfp-close:after{content:'';background-image:url("data:image/svg+xml,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22UTF-8%22%3F%3E%0A%3Csvg%20width%3D%2240px%22%20height%3D%2240px%22%20viewBox%3D%220%200%2040%2040%22%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%3E%0A%20%20%20%20%3Cdefs%3E%0A%20%20%20%20%20%20%20%20%3Cpath%20d%3D%22M19.9651267%2C-7.10542736e-15%20C30.9742304%2C-7.10542736e-15%2039.9302535%2C8.9560231%2039.9302535%2C19.9651267%20C39.9302535%2C30.9742304%2030.9742304%2C39.9302535%2019.9651267%2C39.9302535%20C8.9560231%2C39.9302535%204.61852778e-14%2C30.9742304%204.61852778e-14%2C19.9651267%20C4.61852778e-14%2C8.9560231%208.9560231%2C-7.10542736e-15%2019.9651267%2C-7.10542736e-15%20Z%20M19.9651279%2C1.6637606%20C9.87441948%2C1.6637606%201.6637606%2C9.87441948%201.6637606%2C19.9651279%20C1.6637606%2C30.0558364%209.87441948%2C38.2664952%2019.9651279%2C38.2664952%20C30.0558364%2C38.2664952%2038.2664952%2C30.0558364%2038.2664952%2C19.9651279%20C38.2664952%2C9.87441948%2030.0558364%2C1.6637606%2019.9651279%2C1.6637606%20Z%20M28.2839309%2C10.8144439%20C28.5068749%2C10.8144439%2028.7148449%2C10.9009595%2028.8729022%2C11.057353%20C29.0309595%2C11.2137465%2029.1158113%2C11.4233803%2029.1158113%2C11.6463243%20C29.1158113%2C11.8692682%2029.0292957%2C12.0772383%2028.8729022%2C12.2352955%20L21.1414064%2C19.9651276%20L28.8712384%2C27.6949597%20C29.0292957%2C27.8530169%2029.1158113%2C28.060987%2029.1158113%2C28.2839309%20C29.1158113%2C28.5068749%2029.0292957%2C28.7148449%2028.8729022%2C28.8729022%20C28.7165087%2C29.0309595%2028.5068749%2C29.1158113%2028.2839309%2C29.1158113%20C28.060987%2C29.1158113%2027.8530169%2C29.0292957%2027.6949597%2C28.8729022%20L19.9651276%2C21.1414064%20L12.2352955%2C28.8712384%20C12.0772383%2C29.0292957%2011.8692682%2C29.1158113%2011.6463243%2C29.1158113%20C11.4233803%2C29.1158113%2011.2154103%2C29.0292957%2011.057353%2C28.8729022%20C10.8992957%2C28.7165087%2010.8144439%2C28.5068749%2010.8144439%2C28.2839309%20C10.8144439%2C28.060987%2010.9009595%2C27.8530169%2011.057353%2C27.6949597%20L18.7888488%2C19.9651276%20L11.057353%2C12.2352955%20C10.9009595%2C12.0772383%2010.8144439%2C11.8692682%2010.8144439%2C11.6463243%20C10.8144439%2C11.4233803%2010.9009595%2C11.2154103%2011.057353%2C11.057353%20C11.2137465%2C10.8992957%2011.4233803%2C10.8144439%2011.6463243%2C10.8144439%20C11.8692682%2C10.8144439%2012.0772383%2C10.9009595%2012.2352955%2C11.057353%20L19.9651276%2C18.7888488%20L27.6949597%2C11.0590168%20C27.8530169%2C10.9009595%2028.060987%2C10.8144439%2028.2839309%2C10.8144439%20Z%22%20id%3D%22path-1%22%3E%3C%2Fpath%3E%0A%20%20%20%20%3C%2Fdefs%3E%0A%20%20%20%20%3Cg%20id%3D%22Asset-Artboard-Page%22%20stroke%3D%22none%22%20stroke-width%3D%221%22%20fill%3D%22%23ffffff%22%20fill-rule%3D%22evenodd%22%3E%0A%20%20%20%20%20%20%20%20%3Cg%20id%3D%22Icons%2Fclose%22%20transform%3D%22translate%280.500000%2C%200.000000%29%22%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%3Cmask%20id%3D%22mask-2%22%20fill%3D%22white%22%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%3Cuse%20xlink%3Ahref%3D%22%23path-1%22%3E%3C%2Fuse%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%3C%2Fmask%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%3Cuse%20id%3D%22Combined-Shape%22%20fill%3D%22%23ffffff%22%20xlink%3Ahref%3D%22%23path-1%22%3E%3C%2Fuse%3E%0A%20%20%20%20%20%20%20%20%3C%2Fg%3E%0A%20%20%20%20%3C%2Fg%3E%0A%3C%2Fsvg%3E%0A");display:inline-block;width:30px;height:30px;background-size:100%;background-repeat:no-repeat;transform:scale(1.5);position:absolute;top:2rem;right:2rem}.wpcf7{font-size:80%}.wpcf7 .form-group-label{margin:0}.wpcf7-list-item{margin:0}.wpcf7-form-control{margin-top:6px;font-size:1em !important}.wpcf7-spinner{position:absolute}.wpcf7-not-valid-tip{font-size:20px}.wpcf7 form .wpcf7-response-output{clear:both}.wpcf7-acceptance .wpcf7-list-item{position:relative;padding-left:42px;display:block;min-height:32px}.wpcf7-acceptance input{position:absolute;z-index:-1;opacity:0}.wpcf7-acceptance input:focus-visible ~ .wpcf7-list-item-label:before{outline:1px auto;outline:1px auto -webkit-focus-ring-color}.wpcf7-acceptance input:checked ~ .wpcf7-list-item-label:before{background-image:url("data:image/svg+xml;charset=utf-8,<svg xmlns=%27http://www.w3.org/2000/svg%27 viewBox=%270 0 22 20%27><rect width=%27100%25%27 height=%27100%25%27 fill=%27%23fff%27/><path d=%27M6.545 18.756a.534.534 0 01-.384-.162L.736 13.086a.554.554 0 010-.779.538.538 0 01.768 0l5 5.075L19.684.785a.537.537 0 01.762-.083c.233.19.27.539.081.774L6.965 18.551a.539.539 0 01-.42.205z%27 stroke=%27%23333%27 fill=%27none%27/></svg>");background-repeat:no-repeat;background-size:50%;background-position:center;border-color:var(--color-daadblue-border)}.wpcf7-acceptance .wpcf7-list-item-label{vertical-align:middle}.wpcf7-acceptance .wpcf7-list-item-label:before{display:block;content:'';width:32px;height:32px;border:1px solid #767676;position:absolute;left:0;top:50%;transform:translateY(-50%);background:#fff}.text-daadblue{color:var(--color-daadblue)}.text-darkblue{color:var(--color-darkblue)}.text-bluegreen{color:var(--color-bluegreen)}.text-bluegray{color:#143957}.text-red{color:var(--color-red)}.text-white{color:#fff}.text-lightgrey{color:#e2e2e2}.text-lightergrey{color:#cdcdcd}.text-grey{color:#767676}.text-anthracite{color:var(--color-anthracite)}.text-anthracite-contain{color:var(--color-anthracite-contain)}.text-black{color:#000}.text-green{color:#007373}.bg-daadblue{background-color:var(--color-daadblue-background)}.bg-darkblue{background-color:var(--color-darkblue-background)}.bg-bluegreen{background-color:var(--color-bluegreen)}.bg-bluegray{background-color:#143957}.bg-red{background-color:var(--color-red)}.bg-white{background-color:var(--color-white-background)}.bg-white-darkmode-gray{background-color:var(--color-white-darkmode-gray-background)}.bg-lightgrey{background-color:var(--color-lightgrey-background)}.bg-lightgrey-contain{background-color:var(--color-lightgrey-background-contain)}.bg-lightergrey{background-color:#cdcdcd}.bg-grey{background-color:#767676}.bg-anthracite{background-color:#333}.bg-black{background-color:#000}.bg-green{background-color:#007373}.bg-globe{position:relative;overflow:hidden}.bg-globe__asset{display:block;position:absolute;right:-130px;top:103px;opacity:0.4;z-index:0;width:996px;height:auto}@media screen and (max-width: 1421px){.bg-globe__asset{display:none}}.bg-globe__asset-color--grey{opacity:0.8}.bg-globe__asset-color--blue{opacity:0.4}.bg-globe__asset--left{right:auto;left:-332px;top:76px}html[data-theme="dark"] .bg-globe__asset-color--grey,html[data-theme="dark"] .bg-globe__asset-color--blue{opacity:0.24}.u-headline-module{letter-spacing:.94px;font-weight:600;font-size:2em;text-transform:uppercase;line-height:1.25;border-bottom:1px solid var(--color-anthracite);padding-bottom:18px}@media screen and (max-width: 611px){.u-headline-module{font-size:1.5em}}.u-headline-module--light{color:#fff;border-color:#fff}.u-headline-module--small{font-size:1.25em}.u-headline-module--no-border{border-bottom:unset;padding-bottom:0}.u-page-headline{font-size:3.5em;line-height:1.25;color:var(--color-daadblue);font-weight:300;margin-bottom:36px}@media screen and (max-width: 611px){.u-page-headline{font-size:2em}}.u-page-headline{font-size:3.5em;line-height:1.25;color:var(--color-daadblue);font-weight:300;margin-bottom:36px}@media screen and (max-width: 611px){.u-page-headline{font-size:2em}}.u-slider-headline{font-size:2.5em;line-height:1.25;font-weight:normal}.u-headline-teaser{font-size:1.5em;line-height:1.25;margin-bottom:9px;font-weight:normal}.u-headline-list{font-size:2em;line-height:1.25;margin-bottom:9px;font-weight:300}.u-dateline{font-size:1.25em;line-height:1.25;margin-bottom:9px;text-transform:uppercase;font-weight:600}.u-headline-page{font-size:3.5em;line-height:1.25;color:var(--color-daadblue);font-weight:300;margin-bottom:36px}@media screen and (max-width: 611px){.u-headline-page{font-size:2em}}.u-headline-list{font-size:2em;line-height:1.25;font-weight:300;font-style:normal;margin-bottom:9px}.u-intro{font-size:2em;font-weight:300}.u-headline-large-light{font-size:2em;line-height:1.25;font-weight:300;margin-bottom:36px;color:#0060af}@media screen and (max-width: 611px){.u-headline-large-light{margin-bottom:13px}}.u-p-base{padding:36px}.u-p-smallish{padding:24px}.u-p-medium{padding:18px}@media screen and (max-width: 1421px){.u-p-0-down-desktop{padding:0}}.u-vp-large{padding:72px 0}.u-vp-base{padding:36px 0}.u-vp-smallish{padding:24px 0}.u-vp-medium{padding:18px 0}.u-vp-small{padding:12px 0}.u-hp-base{padding:0 36px}.u-hp-medium{padding:0 18px}.u-hp-small{padding:0 12px}.u-pt-base{padding-top:36px}.u-pt-large{padding-top:72px}.u-pb-large{padding-bottom:72px}.u-pb-medium{padding-bottom:18px}.u-pb-small{padding-bottom:12px}.u-pr-small{padding-right:12px}.u-vm-large{margin:72px 0}.u-vm-base{margin:36px 0}.u-vm-medium{margin:18px 0}.u-mb-large{margin-bottom:72px}.u-mb-base{margin-bottom:36px !important}.u-mb-smallish{margin-bottom:24px !important}.u-mb-medium{margin-bottom:18px}.u-mb-small{margin-bottom:9px}.u-mb-0{margin-bottom:0 !important}.u-mt-0{margin-top:0 !important}.u-mt-large{margin-top:72px}.u-mt-60{margin-top:60px}.u-mt-48{margin-top:48px}.u-mt-base{margin-top:36px}.u-mt-smallish{margin-top:24px}.u-mt-medium{margin-top:18px}.u-mt-small{margin-top:12px}.u-mt-tiny{margin-top:9px}.u-mr-base{margin-right:36px}.u-mr-small{margin-right:12px}.u-mr-tiny{margin-right:6px}.u-ml-base{margin-left:36px}.u-ml-medium-large{margin-left:27px}.u-ml-small{margin-left:12px}.u-ml-tiny{margin-left:4px}.u-size-base{font-size:1em !important}.u-size-copy{font-size:1.25em}.u-size-large{font-size:2em;line-height:1.5}.u-size-huge{font-size:3.5em;line-height:1.25}@media screen and (max-width: 611px){.u-size-huge{font-size:2em;line-height:1.25}}.u-size-small{font-size:.75em}.u-size-teaser-headline{font-size:1.5em}@media screen and (max-width: 611px){.u-size-teaser-headline-mobile{font-size:1.5em}}.u-size-teaser{font-size:1.125em}.u-size-collapsible{font-size:1.8em;line-height:1.25}.u-size-filter{font-size:1.5em}@media screen and (max-width: 611px){.u-size-base-on-mobile{font-size:1em}}@media screen and (max-width: 611px){.u-size-teaser-headline-on-mobile{font-size:1.5em}}.u-line-height-headline{line-height:1.25}.u-weight-normal{font-weight:normal}.u-weight-light{font-weight:300}.u-weight-semibold{font-weight:600}.u-weight-bold{font-weight:bold}.u-style-normal{font-style:normal}.u-style-italic{font-style:italic}.u-uppercase{text-transform:uppercase}.u-align-center{text-align:center}.u-flex{display:flex}.u-flex-col{display:flex;flex-direction:column}.u-flex-space-between{display:flex;justify-content:space-between}.u-flex-center{display:flex;justify-content:center}.u-flex-end{display:flex;justify-content:flex-end}.u-flex-reverse{display:flex;flex-direction:row-reverse}.u-flex-items-center{display:flex;align-items:center}.u-flex-column{display:flex;flex-direction:column}.u-flex-top{display:flex;align-items:flex-start}@media screen and (max-width: 1097px){.u-reverse-down-tablet{display:flex !important;flex-direction:column-reverse}}.u-relative{position:relative}.u-vertical-bottom{vertical-align:bottom}.u-flip-horizontally{transform:scaleY(-1)}.u-flip-vertically{transform:scaleX(-1)}.u-rotate-270{transform:rotate(270deg)}.u-rotate-90{transform:rotate(90deg)}.u-rotate-180{transform:rotate(180deg)}.u-underline{text-decoration:underline}.u-underline-interaction :focus,.u-underline-interaction :active,.u-underline-interaction:not([disabled]):hover{text-decoration:underline;color:var(--color-daadblue);cursor:pointer}.u-underline-interaction--keep-color :focus,.u-underline-interaction--keep-color :active,.u-underline-interaction--keep-color:not([disabled]):hover{text-decoration:underline;color:currentColor;cursor:pointer}.u-link{color:inherit}.u-link:hover{color:var(--color-daadblue);text-decoration:underline}.u-position-relative{position:relative}.u-grid-breakout{position:relative;width:100vw;left:calc(50% - 50vw)}.u-clear-float{clear:both}.u-hover-white:hover{color:#fff}.u-rounded{border-radius:9999px}.u-border-bottom{border-bottom:2px solid var(--color-anthracite)}.u-divider{display:block;padding-bottom:72px;border-bottom:1px solid #767676}@media screen and (max-width: 611px){.u-divider{padding-bottom:36px}}.u-hyphenation{hyphens:auto;-webkit-hyphens:auto}.u-nowrap{white-space:nowrap}.u-fullwidth{width:100%}.u-width-50{width:50%}.u-self-center{position:absolute;transform:translateX(-50%) translateY(-50%);left:50%;top:50%}.u-break-all{word-break:break-all}.u-keep-all{word-break:keep-all}.u-at-icon:before{content:"@";font-style:normal}.is-ltr{direction:ltr !important;text-align:left !important}.is-rtl .u-grid-breakout{right:calc(50% - 50vw);left:initial}.is-rtl .u-ml-base{margin-left:0;margin-right:36px}.is-rtl .u-ml-medium-large{margin-left:0;margin-right:27px}.is-rtl .u-ml-small{margin-left:0;margin-right:12px}.is-rtl .u-ml-tiny{margin-left:0;margin-right:4px}.is-rtl .u-mr-base{margin-right:0;margin-left:36px}.is-rtl .u-mr-small{margin-right:0;margin-left:12px}.is-rtl .u-ml-tiny-rtl{margin-right:0;margin-left:4px}.is-rtl .u-mr-tiny{margin-right:0;margin-left:6px}.is-rtl .u-unflip-vertically-rtl{transform:scaleX(1)}.is-rtl .u-flip-vertically-rtl{transform:scaleX(-1)}.u-overflow-hidden{overflow:hidden}.is-sr-only-focusable:focus{clip:auto !important;overflow:visible !important;position:static !important;white-space:normal !important}.u-z-index-1{z-index:1}.u-form-height-large{height:52px !important}.u-form-height-small{height:40px !important}.u-form-text{font-size:1.25em;line-height:1.25;margin-bottom:9px;text-style:italic}.u-button-text{font-size:1.25em;line-height:1.25;text-transform:uppercase;font-weight:600}.o-button,#fbuilder .pbreak .pbPrevious,#fbuilder .pbreak .pbNext,#fbuilder .pbSubmit{min-height:48px;font-size:1.25em;border-radius:24px;text-transform:uppercase;letter-spacing:.94px;color:#fff;text-align:center;background:var(--color-daadblue-background);display:inline-block;padding:8px 18px;font-weight:600;border:1px solid var(--color-daadblue-border);cursor:pointer;position:relative}.o-button::before,#fbuilder .pbreak .pbPrevious::before,#fbuilder .pbreak .pbNext::before,#fbuilder .pbSubmit::before{background:linear-gradient(0deg, #0d5998, #0060af 52%, #1479cc);content:"";display:block;height:100%;position:absolute;border-radius:24px;top:0;left:0;opacity:0;width:100%;z-index:-1;transition:opacity 300ms}.o-button:focus,#fbuilder .pbreak .pbPrevious:focus,#fbuilder .pbreak .pbNext:focus,#fbuilder .pbSubmit:focus{outline-offset:-0.25rem;outline:0.125rem solid currentColor;text-decoration:underline}.o-button :focus,#fbuilder .pbreak .pbPrevious :focus,#fbuilder .pbreak .pbNext :focus,#fbuilder .pbSubmit :focus,.o-button :active,#fbuilder .pbreak .pbPrevious :active,#fbuilder .pbreak .pbNext :active,#fbuilder .pbSubmit :active,.o-button:not([disabled]):hover,#fbuilder .pbreak .pbPrevious:not([disabled]):hover,#fbuilder .pbreak .pbNext:not([disabled]):hover,#fbuilder .pbSubmit:not([disabled]):hover{color:#fff;text-decoration:underline}.o-button :focus:before,#fbuilder .pbreak .pbPrevious :focus:before,#fbuilder .pbreak .pbNext :focus:before,#fbuilder .pbSubmit :focus:before,.o-button :active:before,#fbuilder .pbreak .pbPrevious :active:before,#fbuilder .pbreak .pbNext :active:before,#fbuilder .pbSubmit :active:before,.o-button:not([disabled]):hover:before,#fbuilder .pbreak .pbPrevious:not([disabled]):hover:before,#fbuilder .pbreak .pbNext:not([disabled]):hover:before,#fbuilder .pbSubmit:not([disabled]):hover:before{opacity:1;z-index:0}.o-button span,#fbuilder .pbreak .pbPrevious span,#fbuilder .pbreak .pbNext span,#fbuilder .pbSubmit span,.o-button svg,#fbuilder .pbreak .pbPrevious svg,#fbuilder .pbreak .pbNext svg,#fbuilder .pbSubmit svg{z-index:1;position:relative}.o-button[disabled],#fbuilder .pbreak .pbPrevious[disabled],#fbuilder .pbreak .pbNext[disabled],#fbuilder .pbSubmit[disabled]{background:#767676;border:1px solid #767676}.o-button[target=_blank] span,#fbuilder .pbreak .pbPrevious[target=_blank] span,#fbuilder .pbreak .pbNext[target=_blank] span,#fbuilder .pbSubmit[target=_blank] span{display:flex;justify-content:center;align-items:center}.o-button[target=_blank] span:before,#fbuilder .pbreak .pbPrevious[target=_blank] span:before,#fbuilder .pbreak .pbNext[target=_blank] span:before,#fbuilder .pbSubmit[target=_blank] span:before{content:'';display:inline-block;width:18px;height:18px;background-size:100%;background-repeat:no-repeat;margin:0 3px;background-image:url("data:image/svg+xml,%3C%3Fxml version=%271.0%27 encoding=%27UTF-8%27%3F%3E%3Csvg width=%2724px%27 height=%2724px%27 viewBox=%270 0 24 24%27 version=%271.1%27 xmlns=%27http://www.w3.org/2000/svg%27 xmlns:xlink=%27http://www.w3.org/1999/xlink%27%3E%3C%21-- Generator: Sketch 52.2 %2867145%29 - http://www.bohemiancoding.com/sketch --%3E%3Ctitle%3EIcons/pfeilextern%3C/title%3E%3Cdesc%3ECreated with Sketch.%3C/desc%3E%3Cg id=%27Icons/pfeilextern%27 stroke=%27none%27 stroke-width=%271%27 fill=%27%23fff%27 fill-rule=%27evenodd%27%3E%3Cg id=%27Group%27 transform=%27translate%28-6.000000, -5.000000%29%27%3E%3Cg id=%27Regular%27%3E%3Cpath d=%27M26.4393398,16.25 L17.2196699,7.03033009 C16.9267767,6.73743687 16.9267767,6.26256313 17.2196699,5.96966991 C17.5125631,5.6767767 17.9874369,5.6767767 18.2803301,5.96966991 L28.7803301,16.4696699 C29.0732233,16.7625631 29.0732233,17.2374369 28.7803301,17.5303301 L18.2803301,28.0303301 C17.9874369,28.3232233 17.5125631,28.3232233 17.2196699,28.0303301 C16.9267767,27.7374369 16.9267767,27.2625631 17.2196699,26.9696699 L26.4393398,17.75 L5.75,17.75 C5.33578644,17.75 5,17.4142136 5,17 C5,16.5857864 5.33578644,16.25 5.75,16.25 L26.4393398,16.25 Z%27 id=%27Combined-Shape%27 transform=%27translate%2817.000000, 17.000000%29 rotate%28-45.000000%29 translate%28-17.000000, -17.000000%29 %27/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/svg%3E%0A")}.o-button--no-styles{background:none;color:inherit;border:none;padding:0;font:inherit;cursor:pointer}@media screen and (max-width: 1097px){.o-button__submit{border-radius:8px;padding:4px 7px}.o-button__submit:before{border-radius:8px}}.o-button__submit--icon{display:block;height:36px}.o-button--white-border{border:1px solid #fff}.o-button--white-border:focus{border:none}.o-button--square{min-height:unset;border-radius:unset;padding:6px 24px}.o-button--square::before{border-radius:unset}.o-divider{border-top:1px solid var(--color-black);border-bottom:1px solid var(--color-black)}.o-checkbox{position:relative;padding-left:44px;color:var(--color-anthracite-contain)}.o-checkbox:hover{cursor:pointer}.o-checkbox input{position:absolute;opacity:0;cursor:pointer}.o-checkbox input:checked ~ .checkmark:after{color:#000}.o-checkbox .checkmark{position:absolute;top:0;left:0;height:32px;width:32px;background-color:#fff;border:1px solid #363636;border-radius:2px}.o-checkbox .checkmark:after{content:'\2713';color:#fff;position:absolute;display:block;top:-1px;line-height:32px;font-size:32px;left:6px}.o-fader{position:fixed;width:100%;height:100%;background:color-mix(in srgb, var(--color-back) 85%, transparent);z-index:200;display:none;top:0;left:0}.o-fader--transparent{opacity:0}.o-fader--absolute{position:absolute}.o-fader--light{background:color-mix(in srgb, var(--color-white) 85%, transparent)}.o-fader--high-z{z-index:999}.fader-visible{display:block}.o-load-spinner{display:inline-block;width:80px;height:80px}.o-load-spinner:after{content:"";display:block;width:80px;height:80px;margin:8px;border-radius:50%;border:8px solid #e2e2e2;border-color:#e2e2e2 transparent #e2e2e2 transparent;animation:spin 1.2s linear infinite}@keyframes spin{0%{transform:rotate(0deg)}100%{transform:rotate(360deg)}}.o-image{display:block;position:relative;overflow:hidden}.o-image:before{display:block;content:"";padding-top:100%}.o-image__asset{position:absolute;top:49.9%;left:50%;width:100%;height:auto;transform:translate(-50%, -50%)}.o-image__asset-video{height:100%;left:0;position:absolute;top:0;width:100%}.o-image__asset iframe{display:block;width:100%;height:auto}.o-image--1-1:before{padding-top:100%}.o-image--4-3:before{padding-top:75%}.o-image--16-9:before{padding-top:56.5%}.o-image--1-3:before{padding-top:33.333%}.o-image--16-9-down-sm:before{padding-top:56.5%}@media screen and (max-width: 611px){.o-image--16-9-down-sm:before{padding-top:100%}}.o-image--break-grid-right{margin-right:-36px}@media screen and (max-width: 1097px){.o-image--break-grid-right{margin-right:0}}.o-image--round{border-radius:50%}.o-image--round:before{padding-top:100%}.o-image--framed{border:1px solid var(--color-lightgrey)}.o-image--crop-center .o-image__asset{width:auto;max-width:none;height:auto}.is-rtl .o-image--break-grid-right{margin-right:0;margin-left:-36px}@media screen and (max-width: 1097px){.is-rtl .o-image--break-grid-right{margin-right:0}}.o-more-link{display:inline-flex;align-items:baseline;font-size:1.125em;color:var(--color-daadblue);font-style:italic}.o-more-link .o-more-link__icon{display:block;background:var(--color-daadblue-background-white);width:16px;height:16px;min-width:16px;border-radius:50%;margin-right:6px;color:var(--color-white);position:relative;line-height:1.25;transform:translateY(2px)}.o-more-link .o-more-link__icon--external{transform:rotate(-45deg) translateY(2px)}.o-more-link .o-more-link__icon--external{transform:rotate(-45deg)}.o-more-link .o-more-link__icon .svg-icon{position:absolute;top:50%;left:50%;transform:translateX(-50%) translateY(-50%);font-size:55%;margin:0}.o-more-link--stretched:after{content:"";position:absolute;left:0;top:0;bottom:0;right:0}.o-more-link:hover{color:var(--color-daadblue);text-decoration:underline}.is-rtl .o-more-link{flex-direction:row-reverse}.o-pagination{font-size:1.125em;color:var(--color-daadblue);font-style:italic;margin-bottom:9px}.o-pagination:hover{color:var(--color-daadblue);text-decoration:underline}.o-pagination:before{content:"";display:block;background:var(--color-daadblue-background);width:16px;height:16px;border-radius:50%;margin-right:6px}.o-pagination__select{padding-right:54px !important;padding-left:12px !important;font-style:normal}.is-rtl .o-pagination__select{padding-left:54px !important;padding-right:12px !important}.is-rtl .o-pagination__select:after{left:18px}.o-icon-headline{position:relative}.o-icon-headline h3{padding-left:72px;display:block;font-weight:600}.o-icon-headline .svg-icon{font-size:200%;position:absolute;left:0;top:50%;transform:translateY(-50%)}.o-spaced-navigation{display:flex;justify-content:center}.o-spaced-navigation__item:not(:last-child){padding-right:12px}.o-copyright{position:absolute;right:0;bottom:1px;background-color:rgba(51,51,51,0.7);color:#fff;padding:0 6px;line-height:1.2;font-size:1.125em;z-index:999;cursor:pointer}.o-form div,.o-form p{margin-bottom:24px !important}.o-form label{margin:0;font-size:1.25em;display:block;cursor:pointer;line-height:1.25;margin-bottom:6px;text-align:left}.o-form input[type="text"],.o-form input[type="email"],.o-form input[type="number"]{display:inline-block;width:100%;height:48px;padding:6px 36px 6px 18px;font-size:1.5em;font-weight:400;vertical-align:middle;background-color:#fff;border:1px solid #767676;border-radius:0;appearance:none}.o-form input[type="text"]:read-only{background-color:#e9ebee}.o-form h2{font-size:2em !important;margin-top:40px}.o-form textarea{width:100%;padding:18px;font-size:1.5em;font-weight:400}.o-form__select{display:inline-block;width:100%;height:48px;padding:6px 36px 6px 18px;font-size:1.5em;font-weight:400;vertical-align:middle;border:1px solid #767676;border-radius:0;appearance:none;background:#fff url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns=%27http://www.w3.org/2000/svg%27 viewBox=%270 0 4 5%27%3E%3Cpath fill=%27%23343a40%27 d=%27M2 0L0 2h4zm0 5L0 3h4z%27/%3E%3C/svg%3E") no-repeat right 0.75rem center/0.5rem 0.625rem;color:var(--color-anthracite-contain)}.o-form__select--empty{font-style:italic;color:#767676}.o-form__multi-select{min-height:175px}.o-form__checkbox{position:relative;padding-left:42px;display:block;min-height:32px}.o-form__checkbox input{position:absolute;z-index:-1;opacity:0}.o-form__checkbox input:focus-visible ~ .o-form__checkbox-label:before{outline:1px auto;outline:1px auto -webkit-focus-ring-color}.o-form__checkbox input:checked ~ .o-form__checkbox-label:before{background-image:url("data:image/svg+xml;charset=utf-8,<svg xmlns=%27http://www.w3.org/2000/svg%27 viewBox=%270 0 22 20%27><rect width=%27100%25%27 height=%27100%25%27 fill=%27%23fff%27/><path d=%27M6.545 18.756a.534.534 0 01-.384-.162L.736 13.086a.554.554 0 010-.779.538.538 0 01.768 0l5 5.075L19.684.785a.537.537 0 01.762-.083c.233.19.27.539.081.774L6.965 18.551a.539.539 0 01-.42.205z%27 stroke=%27%23333%27 fill=%27none%27/></svg>");background-repeat:no-repeat;background-size:50%;background-position:center;border-color:var(--color-daadblue-border)}.o-form__checkbox-label{vertical-align:middle}.o-form__checkbox-label:before{display:block;content:'';width:32px;height:32px;border:1px solid #767676;position:absolute;left:0;top:50%;transform:translateY(-50%);background:#fff}.o-form__radio{position:relative;padding-left:24px}.o-form__radio input{position:absolute;z-index:-1;opacity:0}.o-form__radio input:focus-visible ~ .o-form__radio-label:before{outline:1px auto;outline:1px auto -webkit-focus-ring-color}.o-form__radio input:focus-visible ~ .o-form__radio-label{border:2px #0060af solid}.o-form__radio input:checked ~ .o-form__radio-label:before{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns=%27http://www.w3.org/2000/svg%27 viewBox=%27-4 -4 8 8%27%3E%3Ccircle r=%273.5%27 stroke=%27%23fff%27 stroke-width=%271.5%27 fill=%270%27/%3E%3C/svg%3E");background-repeat:no-repeat;background-size:70%;background-position:center}.o-form__radio-label{display:block}.o-form__radio-label:before{display:block;content:'';width:20px;height:20px;border:1px solid #333;position:absolute;left:0;top:50%;transform:translateY(-50%);background:#fff;border-radius:50%}.o-form__submit{font-size:1.25em !important;letter-spacing:1.5px}.is-rtl .o-form label{text-align:right}.is-rtl .o-form__radio{padding-left:0;padding-right:24px}.is-rtl .o-form__radio-label:before{left:initial;right:0}.is-rtl .o-form__select{padding:6px 18px 6px 36px;background:#fff url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns=%27http://www.w3.org/2000/svg%27 viewBox=%270 0 4 5%27%3E%3Cpath fill=%27%23343a40%27 d=%27M2 0L0 2h4zm0 5L0 3h4z%27/%3E%3C/svg%3E") no-repeat left 0.75rem center/0.5rem 0.625rem}.o-icon-link{color:var(--color-anthracite);text-decoration:underline;display:inline-flex;align-items:center}.o-icon-link:hover{color:var(--color-daadblue)}.o-icon-link:before{content:'';background-color:var(--color-daadblue-background-white);background-image:url("data:image/svg+xml,%3C%3Fxml version=%271.0%27 encoding=%27UTF-8%27%3F%3E%3Csvg width=%2724px%27 height=%2724px%27 viewBox=%270 0 24 24%27 version=%271.1%27 xmlns=%27http://www.w3.org/2000/svg%27 xmlns:xlink=%27http://www.w3.org/1999/xlink%27%3E%3C%21-- Generator: Sketch 52.2 %2867145%29 - http://www.bohemiancoding.com/sketch --%3E%3Ctitle%3EIcons/pfeilextern%3C/title%3E%3Cdesc%3ECreated with Sketch.%3C/desc%3E%3Cg id=%27Icons/pfeilextern%27 stroke=%27none%27 stroke-width=%271%27 fill=%27%23ffff%27 fill-rule=%27evenodd%27%3E%3Cg id=%27Group%27 transform=%27translate%28-6.000000, -5.000000%29%27%3E%3Cg id=%27Regular%27%3E%3Cpath d=%27M26.4393398,16.25 L17.2196699,7.03033009 C16.9267767,6.73743687 16.9267767,6.26256313 17.2196699,5.96966991 C17.5125631,5.6767767 17.9874369,5.6767767 18.2803301,5.96966991 L28.7803301,16.4696699 C29.0732233,16.7625631 29.0732233,17.2374369 28.7803301,17.5303301 L18.2803301,28.0303301 C17.9874369,28.3232233 17.5125631,28.3232233 17.2196699,28.0303301 C16.9267767,27.7374369 16.9267767,27.2625631 17.2196699,26.9696699 L26.4393398,17.75 L5.75,17.75 C5.33578644,17.75 5,17.4142136 5,17 C5,16.5857864 5.33578644,16.25 5.75,16.25 L26.4393398,16.25 Z%27 id=%27Combined-Shape%27 transform=%27translate%2817.000000, 17.000000%29 rotate%28-45.000000%29 translate%28-17.000000, -17.000000%29 %27/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/svg%3E%0A");display:inline-block;width:18px;height:18px;background-size:66.66% auto;background-position:50%;background-repeat:no-repeat;margin:0 6px 0 3px;border-radius:50%}.o-icon-link[href^="mailto:"]:before{background-image:url("data:image/svg+xml,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22UTF-8%22%3F%3E%0A%3Csvg%20width%3D%2224px%22%20height%3D%2224px%22%20viewBox%3D%220%200%2024%2024%22%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%3E%0A%20%20%20%20%3C%21--%20Generator%3A%20Sketch%2053.1%20%2872631%29%20-%20https%3A%2F%2Fsketchapp.com%20--%3E%0A%20%20%20%20%3Ctitle%3EIcons%2Femail%3C%2Ftitle%3E%0A%20%20%20%20%3Cdesc%3ECreated%20with%20Sketch.%3C%2Fdesc%3E%0A%20%20%20%20%3Cg%20id%3D%22Icons%2Femail%22%20stroke%3D%22none%22%20stroke-width%3D%221%22%20fill%3D%22%23ffffff%22%20fill-rule%3D%22evenodd%22%3E%0A%20%20%20%20%20%20%20%20%3Cg%20id%3D%22Group%22%20transform%3D%22translate%280.000000%2C%204.000000%29%22%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%3Cg%20id%3D%22email-action-unread%22%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%3Cpath%20d%3D%22M2.25%2C2.56231244%20L2.25%2C14.25%20C2.25%2C14.6642136%202.58578644%2C15%203%2C15%20L21%2C15%20C21.4142136%2C15%2021.75%2C14.6642136%2021.75%2C14.25%20L21.75%2C2.56231244%20L14.4743005%2C8.1584546%20C13.0156081%2C9.2805937%2010.9843919%2C9.2805937%209.52574515%2C8.1584897%20L2.25%2C2.56231244%20Z%20M20.6708071%2C1.5%20L3.32919293%2C1.5%20L10.4403005%2C6.9695454%20C11.3598015%2C7.67689677%2012.6401985%2C7.67689677%2013.5597452%2C6.9695103%20L20.6708071%2C1.5%20Z%20M22.731932%2C0.813623721%20C22.737774%2C0.820492647%2022.7435155%2C0.827491537%2022.7491526%2C0.834619888%20C23.0623616%2C1.22120934%2023.25%2C1.71369202%2023.25%2C2.25%20L23.25%2C14.25%20C23.25%2C15.4926407%2022.2426407%2C16.5%2021%2C16.5%20L3%2C16.5%20C1.75735931%2C16.5%200.75%2C15.4926407%200.75%2C14.25%20L0.75%2C2.25%20C0.75%2C1.71369202%200.937638429%2C1.22120934%201.25084736%2C0.834619888%20C1.25648454%2C0.827491537%201.26222603%2C0.820492647%201.26806799%2C0.813623721%20C1.68078247%2C0.316540054%202.30342529%2C0%203%2C0%20L21%2C0%20C21.6965747%2C0%2022.3192175%2C0.316540054%2022.731932%2C0.813623721%20Z%22%20id%3D%22Combined-Shape%22%2F%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%3C%2Fg%3E%0A%20%20%20%20%20%20%20%20%3C%2Fg%3E%0A%20%20%20%20%3C%2Fg%3E%0A%3C%2Fsvg%3E%0A")}.o-icon-link__anker--up:before{background-image:url("data:image/svg+xml,%3Csvg id=%27Ebene_1%27 xmlns=%27http://www.w3.org/2000/svg%27 viewBox=%270 0 40 20.73%27%3E%3Cdefs%3E%3Cstyle%3E.cls-1%7Bfill:%230060af;fill-rule:evenodd;%7D%3C/style%3E%3C/defs%3E%3Ctitle%3EPfeil oben%3C/title%3E%3Cpath id=%27Shape%27 class=%27cls-1%27 d=%27M37.87,20.37a1.25,1.25,0,0,0,1.76-1.77L21.77.73a2.51,2.51,0,0,0-3.54,0L.37,18.6a1.25,1.25,0,0,0,1.76,1.77L20,2.5Z%27 transform=%27translate%280 0%29%27/%3E%3C/svg%3E%0A") !important;background-position:center}.o-icon-link__anker--down:before{background-image:url("data:image/svg+xml,%3C%3Fxml version=%271.0%27 encoding=%27UTF-8%27 standalone=%27no%27%3F%3E%3Csvg id=%27Ebene_1%27 viewBox=%270 0 40 20.73%27 version=%271.1%27 sodipodi:docname=%27pointer.svg%27 inkscape:version=%271.2.2 %28b0a84865, 2022-12-01%29%27 xmlns:inkscape=%27http://www.inkscape.org/namespaces/inkscape%27 xmlns:sodipodi=%27http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd%27 xmlns=%27http://www.w3.org/2000/svg%27 xmlns:svg=%27http://www.w3.org/2000/svg%27%3E%3Csodipodi:namedview id=%27namedview140%27 pagecolor=%27%23ffffff%27 bordercolor=%27%23000000%27 borderopacity=%270.25%27 inkscape:showpageshadow=%272%27 inkscape:pageopacity=%270.0%27 inkscape:pagecheckerboard=%270%27 inkscape:deskcolor=%27%23d1d1d1%27 showgrid=%27false%27 inkscape:zoom=%2711.384467%27 inkscape:cx=%2720.071207%27 inkscape:cy=%2710.365%27 inkscape:window-width=%271344%27 inkscape:window-height=%27430%27 inkscape:window-x=%270%27 inkscape:window-y=%27205%27 inkscape:window-maximized=%270%27 inkscape:current-layer=%27Ebene_1%27 /%3E%3Cdefs id=%27defs134%27%3E%3Cstyle id=%27style132%27%3E.cls-1%7Bfill:%230060af;fill-rule:evenodd;%7D%3C/style%3E%3C/defs%3E%3Ctitle id=%27title136%27%3EPfeil oben%3C/title%3E%3Cpath id=%27Shape%27 class=%27cls-1%27 d=%27M 2.13,0.31543195 A 1.25,1.25 0 0 0 0.37000005,2.085432 L 18.23,19.955432 a 2.51,2.51 0 0 0 3.54,0 l 17.86,-17.87 A 1.25,1.25 0 0 0 37.87,0.31543195 L 20,18.185432 Z%27 /%3E%3C/svg%3E%0A") !important;background-position:center}html[data-theme="dark"] .o-icon-link:before{background-image:url("data:image/svg+xml,%3C%3Fxml version=%271.0%27 encoding=%27UTF-8%27%3F%3E%3Csvg width=%2724px%27 height=%2724px%27 viewBox=%270 0 24 24%27 version=%271.1%27 xmlns=%27http://www.w3.org/2000/svg%27 xmlns:xlink=%27http://www.w3.org/1999/xlink%27%3E%3Cg id=%27Icons/pfeilextern%27 stroke=%27none%27 stroke-width=%271%27 fill=%27%23333333%27 fill-rule=%27evenodd%27%3E%3Cg id=%27Group%27 transform=%27translate%28-6.000000, -5.000000%29%27%3E%3Cg id=%27Regular%27%3E%3Cpath d=%27M26.4393398,16.25 L17.2196699,7.03033009 C16.9267767,6.73743687 16.9267767,6.26256313 17.2196699,5.96966991 C17.5125631,5.6767767 17.9874369,5.6767767 18.2803301,5.96966991 L28.7803301,16.4696699 C29.0732233,16.7625631 29.0732233,17.2374369 28.7803301,17.5303301 L18.2803301,28.0303301 C17.9874369,28.3232233 17.5125631,28.3232233 17.2196699,28.0303301 C16.9267767,27.7374369 16.9267767,27.2625631 17.2196699,26.9696699 L26.4393398,17.75 L5.75,17.75 C5.33578644,17.75 5,17.4142136 5,17 C5,16.5857864 5.33578644,16.25 5.75,16.25 L26.4393398,16.25 Z%27 id=%27Combined-Shape%27 transform=%27translate%2817.000000, 17.000000%29 rotate%28-45.000000%29 translate%28-17.000000, -17.000000%29 %27/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/svg%3E%0A")}html[data-theme="dark"] .o-icon-link[href^="mailto:"]:before{background-image:url("data:image/svg+xml,%3C%3Fxml version=%271.0%27 encoding=%27UTF-8%27%3F%3E%3Csvg width=%2724px%27 height=%2724px%27 viewBox=%270 0 24 24%27 version=%271.1%27 xmlns=%27http://www.w3.org/2000/svg%27 xmlns:xlink=%27http://www.w3.org/1999/xlink%27%3E%3C%21-- Generator: Sketch 53.1 %2872631%29 - https://sketchapp.com --%3E%3Ctitle%3EIcons/email%3C/title%3E%3Cdesc%3ECreated with Sketch.%3C/desc%3E%3Cg id=%27Icons/email%27 stroke=%27none%27 stroke-width=%271%27 fill=%27%23333333%27 fill-rule=%27evenodd%27%3E%3Cg id=%27Group%27 transform=%27translate%280.000000, 4.000000%29%27%3E%3Cg id=%27email-action-unread%27%3E%3Cpath d=%27M2.25,2.56231244 L2.25,14.25 C2.25,14.6642136 2.58578644,15 3,15 L21,15 C21.4142136,15 21.75,14.6642136 21.75,14.25 L21.75,2.56231244 L14.4743005,8.1584546 C13.0156081,9.2805937 10.9843919,9.2805937 9.52574515,8.1584897 L2.25,2.56231244 Z M20.6708071,1.5 L3.32919293,1.5 L10.4403005,6.9695454 C11.3598015,7.67689677 12.6401985,7.67689677 13.5597452,6.9695103 L20.6708071,1.5 Z M22.731932,0.813623721 C22.737774,0.820492647 22.7435155,0.827491537 22.7491526,0.834619888 C23.0623616,1.22120934 23.25,1.71369202 23.25,2.25 L23.25,14.25 C23.25,15.4926407 22.2426407,16.5 21,16.5 L3,16.5 C1.75735931,16.5 0.75,15.4926407 0.75,14.25 L0.75,2.25 C0.75,1.71369202 0.937638429,1.22120934 1.25084736,0.834619888 C1.25648454,0.827491537 1.26222603,0.820492647 1.26806799,0.813623721 C1.68078247,0.316540054 2.30342529,0 3,0 L21,0 C21.6965747,0 22.3192175,0.316540054 22.731932,0.813623721 Z%27 id=%27Combined-Shape%27/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/svg%3E%0A")}.is-rtl .o-icon-link:before{margin:0 3px 0 6px}.o-tag-list{display:flex;flex-wrap:wrap;margin:0 -6px}.o-tag-list__item{margin:6px}.o-tag-list__tag{margin:0;padding:0 18px;border:1px solid #e2e2e2;background:#e2e2e2;font-size:1.25em;line-height:1;border-radius:36px;height:36px;vertical-align:middle;display:block;cursor:pointer}.o-tag-list__tag:focus{outline-offset:-0.25rem;outline:0.125rem solid currentColor;text-decoration:underline}.o-tag-list__tag--light{border-color:#333;background:#fff;color:#333}.o-tag-list__tag--active{color:#fff;background:#0060af;border-color:#0060af}.o-tag-list__tag :focus,.o-tag-list__tag :active,.o-tag-list__tag:not([disabled]):hover{color:#fff;text-decoration:underline;background:#0060af;border-color:#0060af}.c-alert{padding:18px 0;min-height:135px}@media screen and (max-width: 1421px){.c-alert{max-height:none}}.c-alert.text-white *{color:#fff}.c-alert__text{display:block;width:100%;padding:0 36px}.c-alert__text p+p{margin-top:18px}.c-alert__text a{text-decoration:underline}.c-alert__text a :focus,.c-alert__text a :active,.c-alert__text a:not([disabled]):hover{color:#fff}.c-alert__text strong{color:unset}.c-alert__button{background:none;border:none;padding:0;margin:0;color:#fff;height:20px;cursor:pointer}.c-alert__icon{font-size:32px;min-width:32px}.c-navigation-sidebar{font-size:1.25em;font-weight:300}.c-navigation-sidebar li+li{border-top:1px solid #767676}.c-navigation-sidebar li a{color:var(--color-anthracite);display:block;padding:9px 0}.c-navigation-sidebar li a :focus,.c-navigation-sidebar li a :active,.c-navigation-sidebar li a:not([disabled]):hover{text-decoration:underline;color:var(--color-daadblue)}.c-navigation-sidebar .children{display:none}.c-navigation-sidebar .children li>a{padding-left:9px}.c-navigation-sidebar .children .children li>a{padding-left:18px}.c-navigation-sidebar .children .children .children li>a{padding-left:27px}.c-navigation-sidebar .current_page_ancestor>a,.c-navigation-sidebar .current_page_parent>a,.c-navigation-sidebar .current_page_item>a{font-weight:normal}.c-navigation-sidebar .current_page_ancestor>a:before,.c-navigation-sidebar .current_page_parent>a:before,.c-navigation-sidebar .current_page_item>a:before{content:'';background-image:url("data:image/svg+xml,%3C%3Fxml version=%271.0%27 encoding=%27utf-8%27%3F%3E%3Csvg version=%271.1%27 id=%27Layer_1%27 xmlns=%27http://www.w3.org/2000/svg%27 xmlns:xlink=%27http://www.w3.org/1999/xlink%27 x=%270px%27 y=%270px%27 viewBox=%270 0 8.5 15.5%27 style=%27enable-background:new 0 0 8.5 15.5;%27 xml:space=%27preserve%27%3E%3Cpath class=%27st0%27 d=%27M0.4,0.9c-0.2-0.2-0.2-0.5,0-0.7C0.6,0,0.9,0,1.1,0.2l6.9,6.9c0.2,0.2,0.3,0.4,0.3,0.7c0,0.3-0.1,0.5-0.3,0.7 l-6.9,6.9c-0.2,0.2-0.5,0.2-0.7,0c-0.2-0.2-0.2-0.5,0-0.7l6.9-6.9L0.4,0.9z%27/%3E%3C/svg%3E");display:inline-block;width:0.75em;height:0.75em;background-repeat:no-repeat;margin:0 3px}.c-navigation-sidebar .current_page_ancestor .children,.c-navigation-sidebar .current_page_parent .children,.c-navigation-sidebar .current_page_item .children{display:block;border-top:1px solid #767676;background:#e2e2e2}html[data-theme="dark"] .c-navigation-sidebar .current_page_item>a:before{background-image:url("data:image/svg+xml,%3C%3Fxml version=%271.0%27 encoding=%27utf-8%27%3F%3E%3Csvg version=%271.1%27 id=%27Layer_1%27 xmlns=%27http://www.w3.org/2000/svg%27 xmlns:xlink=%27http://www.w3.org/1999/xlink%27 x=%270px%27 y=%270px%27 viewBox=%270 0 8.5 15.5%27 style=%27enable-background:new 0 0 8.5 15.5;%27 xml:space=%27preserve%27 fill=%27%23fff%27%3E%3Cpath class=%27st0%27 d=%27M0.4,0.9c-0.2-0.2-0.2-0.5,0-0.7C0.6,0,0.9,0,1.1,0.2l6.9,6.9c0.2,0.2,0.3,0.4,0.3,0.7c0,0.3-0.1,0.5-0.3,0.7 l-6.9,6.9c-0.2,0.2-0.5,0.2-0.7,0c-0.2-0.2-0.2-0.5,0-0.7l6.9-6.9L0.4,0.9z%27/%3E%3C/svg%3E%0A")}.is-rtl .children li>a{padding-right:9px;padding-left:0}.is-rtl .children .children li>a{padding-right:18px;padding-left:0}.is-rtl .children .children .children li>a{padding-right:27px;padding-left:0}.is-rtl .current_page_ancestor>a:before,.is-rtl .current_page_parent>a:before,.is-rtl .current_page_item>a:before{transform:scaleX(-1)}.c-emergency{position:fixed;top:0;left:0;width:100vw;height:100vh;background:rgba(0,0,0,0.9);z-index:999999}.c-emergency__container{display:flex;flex-direction:column;align-items:center;justify-content:center;position:absolute;top:50%;left:50%;width:85vw;max-height:90vh;background:var(--color-white-background);transform:translateX(-50%) translateY(-50%)}.c-emergency__container--not-closable{min-height:80vh}.c-emergency__content{display:flex;flex-direction:column;align-items:center;overflow-y:auto;gap:18px;padding:24px 72px 36px 72px;text-align:center}@media screen and (max-width: 611px){.c-emergency__content{padding:0 18px 12px 18px}}.c-emergency__content--not-closable{padding-top:18px}.c-emergency__close-button{background:none;border:none;color:var(--color-black);top:12px;right:12px;cursor:pointer}.c-emergency__close-button-container{display:flex;width:100%;justify-content:end;top:0;padding:12px 12px 12px 0}@media screen and (max-width: 611px){.c-emergency__close-button-container{top:0;padding:12px 12px 12px 0}}.c-emergency__text{max-width:900px}.c-employee{display:flex;flex-direction:column;gap:36px}.c-employee__wrapper{display:flex;align-items:top}@media screen and (max-width: 611px){.c-employee__wrapper{display:block}}.c-employee__wrapper--small{display:flex}@media screen and (max-width: 611px){.c-employee__wrapper--small{display:flex}}.c-employee__asset{width:180px;height:180px;min-width:180px;margin-right:36px;position:relative}@media screen and (max-width: 611px){.c-employee__asset{width:100%;max-width:180px;margin:0 auto 18px auto}}.c-employee__asset--small{width:90px;height:90px;min-width:90px;margin-right:18px}@media screen and (max-width: 611px){.c-employee__asset--small{width:90px;height:auto;min-width:90px;margin:0 18px 0 0}}@media screen and (max-width: 1421px){.c-employee__collapsible{margin-top:18px}}.c-employee__collapsible--has-image{padding-left:216px}@media screen and (max-width: 1421px){.c-employee__collapsible--has-image{padding:0}}.c-employee__link--internal{color:var(--color-anthracite)}.c-employee__link--internal:before{content:'';display:inline-block;width:0.75em;height:0.75em;background-size:100%;background-repeat:no-repeat;margin:0 3px;background-image:url("data:image/svg+xml,%3C%3Fxml version=%271.0%27 encoding=%27UTF-8%27%3F%3E%3Csvg width=%2714px%27 height=%2714px%27 viewBox=%270 0 14 14%27 version=%271.1%27 xmlns=%27http://www.w3.org/2000/svg%27 xmlns:xlink=%27http://www.w3.org/1999/xlink%27%3E%3Ctitle%3EIcons/pfeilintern%3C/title%3E%3Cg id=%27Artikelseite-ASIC%27 stroke=%27none%27 stroke-width=%271%27 fill=%27none%27 fill-rule=%27evenodd%27%3E%3Cg id=%27Artikelseite-ASIC---WYSIWYG%27 transform=%27translate%28-762.000000, -5136.000000%29%27 fill=%27%230060af%27%3E%3Cg id=%27Icons/pfeilintern%27 transform=%27translate%28762.000000, 5136.437500%29%27%3E%3Cpath d=%27M7.74685922,0.128140783 L13.8718592,6.25314078 C13.9646596,6.34594115 14.007055,6.47005915 13.9990454,6.59147414 C13.9996549,6.6019098 14,6.61340884 14,6.625 C14,6.87706245 13.8367962,7.08556115 13.6245666,7.1200071 L7.74685922,12.9968592 C7.57600484,13.1677136 7.29899516,13.1677136 7.12814078,12.9968592 C6.95728641,12.8260048 6.95728641,12.5489952 7.12814078,12.3781408 L12.38,7.125 L0.4375,7.125 C0.195875422,7.125 0,6.90114237 0,6.625 C0,6.34885763 0.195875422,6.125 0.4375,6.125 L12.506,6.125 L7.12814078,0.746859217 C6.95728641,0.576004839 6.95728641,0.298995161 7.12814078,0.128140783 C7.29899516,-0.0427135944 7.57600484,-0.0427135944 7.74685922,0.128140783 Z%27 id=%27Combined-Shape%27%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/svg%3E")}html[data-theme="dark"] .c-employee__link--internal:before{background-image:url("data:image/svg+xml,%3C%3Fxml version=%271.0%27 encoding=%27UTF-8%27%3F%3E%3Csvg width=%2714px%27 height=%2714px%27 viewBox=%270 0 14 14%27 version=%271.1%27 xmlns=%27http://www.w3.org/2000/svg%27 xmlns:xlink=%27http://www.w3.org/1999/xlink%27%3E%3Ctitle%3EIcons/pfeilintern%3C/title%3E%3Cg id=%27Artikelseite-ASIC%27 stroke=%27none%27 stroke-width=%271%27 fill=%27none%27 fill-rule=%27evenodd%27%3E%3Cg id=%27Artikelseite-ASIC---WYSIWYG%27 transform=%27translate%28-762.000000, -5136.000000%29%27 fill=%27%23fff%27%3E%3Cg id=%27Icons/pfeilintern%27 transform=%27translate%28762.000000, 5136.437500%29%27%3E%3Cpath d=%27M7.74685922,0.128140783 L13.8718592,6.25314078 C13.9646596,6.34594115 14.007055,6.47005915 13.9990454,6.59147414 C13.9996549,6.6019098 14,6.61340884 14,6.625 C14,6.87706245 13.8367962,7.08556115 13.6245666,7.1200071 L7.74685922,12.9968592 C7.57600484,13.1677136 7.29899516,13.1677136 7.12814078,12.9968592 C6.95728641,12.8260048 6.95728641,12.5489952 7.12814078,12.3781408 L12.38,7.125 L0.4375,7.125 C0.195875422,7.125 0,6.90114237 0,6.625 C0,6.34885763 0.195875422,6.125 0.4375,6.125 L12.506,6.125 L7.12814078,0.746859217 C6.95728641,0.576004839 6.95728641,0.298995161 7.12814078,0.128140783 C7.29899516,-0.0427135944 7.57600484,-0.0427135944 7.74685922,0.128140783 Z%27 id=%27Combined-Shape%27%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/svg%3E")}.is-rtl .c-employee__asset{margin-right:0;margin-left:36px}@media screen and (max-width: 611px){.is-rtl .c-employee__asset{margin:0 auto 18px auto}}.c-employee-repeater__container{padding:0 144px}@media screen and (max-width: 1097px){.c-employee-repeater__container{padding:18px}}.c-employee-repeater__wrapper{display:flex;align-items:top;position:relative}@media screen and (max-width: 611px){.c-employee-repeater__wrapper{display:block}}.c-employee-repeater__wrapper--small{display:flex}.c-employee-repeater__item{margin-bottom:62px}.c-employee-repeater__item--last{margin-bottom:0}.c-employee-repeater__asset{width:288px;height:288px;min-width:288px;margin-right:72px;position:relative}@media screen and (max-width: 1097px){.c-employee-repeater__asset{width:186px;height:186px;min-width:186px;margin-right:69px}}@media screen and (max-width: 611px){.c-employee-repeater__asset{width:100%;height:unset;max-width:288px;margin:0 auto 18px auto}}.c-employee-repeater__asset--small{width:144px;height:144px;min-width:144px;margin-right:18px}@media screen and (max-width: 611px){.c-employee-repeater__asset--small{width:144px;height:auto;min-width:144px;margin:0 18px 0 0}}.c-employee-repeater__asset-position{margin-top:30px}.c-employee-repeater__headline{font-size:1.5em}.c-employee-repeater__intro-text{margin-bottom:12px;line-height:32px}.c-employee-repeater__modal{display:none;position:fixed;top:0;left:0;width:100vw;height:100vh;background:rgba(0,0,0,0.7);z-index:1001}.c-employee-repeater__modal__container{display:flex;flex-direction:column;overflow-y:auto}.c-employee-repeater__modal__wrapper{display:flex;position:absolute;top:50%;left:50%;max-width:90vw;width:70%;max-height:90vh;background:#fff;transform:translateX(-50%) translateY(-50%);flex-direction:column;gap:18px}@media screen and (max-width: 611px){.c-employee-repeater__modal__wrapper{width:90%}}.c-employee-repeater__modal__content{padding:0 36px 36px 36px;overflow-y:auto}.c-employee-repeater__modal__close-button{background:none;border:none;color:#000;top:12px;right:12px;cursor:pointer}.c-employee-repeater__modal__close-button-container{display:flex;width:100%;justify-content:end;top:0;padding:12px 12px 12px 0}.is-rtl .c-employee-repeater__asset{margin-right:0;margin-left:36px}@media screen and (max-width: 611px){.is-rtl .c-employee-repeater__asset{margin:0 auto 18px auto}}.c-error-page__container{padding:0}@media screen and (max-width: 611px){.c-error-page__container{padding:18px}}.c-error-page__header{display:flex;justify-content:center;margin-bottom:63px}@media screen and (max-width: 611px){.c-error-page__header{margin-bottom:36px}}.c-error-page__search{margin:36px 0 108px 0}@media screen and (max-width: 611px){.c-error-page__search{margin:36px 0}}.c-collapsible__trigger{border:none;display:block;background:none;border-bottom:1px solid #767676;width:100%;text-align:left;padding:0 0 9px 0;cursor:pointer;font-size:1.5em;line-height:1.25}.c-collapsible__trigger .svg-icon{font-size:300%;fill:var(--color-daadblue);transform:rotate(90deg)}.c-collapsible__trigger--open .svg-icon{fill:var(--color-daadblue);transform:rotate(-90deg)}.c-collapsible__trigger--h2{color:#0060af;font-size:1.6em;line-height:1.25;font-weight:300}.c-collapsible__trigger--h3{color:#0060af;font-size:1.2em;line-height:1.25}.c-collapsible__trigger--h4{font-weight:600;font-size:1em}.c-collapsible__trigger--h4 .svg-icon{color:#0060af}.c-collapsible__trigger--no-text{text-align:right;margin-top:-36px}@media screen and (max-width: 1421px){.c-collapsible__trigger--no-text{margin:0}}.c-collapsible__trigger--no-text .svg-icon{width:36px;height:36px}.c-collapsible__content .c-wysiwyg p:last-child{margin-bottom:0}.c-collapsible .u-reset-padding-in-accordeon{padding:0}.is-rtl .c-collapsible__trigger--no-text{text-align:left}.c-darkmode-toggle__container{position:relative;width:2.8rem;height:1.5rem}.c-darkmode-toggle__switch{position:absolute;display:inline-block;font-size:1.25em;height:1.5rem;width:2.8rem;background:var(--color-grey);border-radius:2.8rem}.c-darkmode-toggle__switch:before{position:absolute;content:"";background-image:url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMTRweCIgaGVpZ2h0PSIxNHB4IiB2aWV3Qm94PSIwIDAgMTQgMTQiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8dGl0bGU+SWNvbnMvRE0tU3VuPC90aXRsZT4KICAgIDxnIGlkPSJTeW1ib2xzIiBzdHJva2U9Im5vbmUiIHN0cm9rZS13aWR0aD0iMSIgZmlsbD0ibm9uZSIgZmlsbC1ydWxlPSJldmVub2RkIj4KICAgICAgICA8ZyBpZD0iSWNvbnMvVG9nZ2xlLWFjdGl2ZS1ibHVlIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgtNS4wMDAwMDAsIC0zLjAwMDAwMCkiIGZpbGw9IiNGRkZGRkYiIGZpbGwtcnVsZT0ibm9uemVybyI+CiAgICAgICAgICAgIDxnIGlkPSJJY29ucy9ETS1TdW4iIHRyYW5zZm9ybT0idHJhbnNsYXRlKDUuMDAwMDAwLCAzLjAwMDAwMCkiPgogICAgICAgICAgICAgICAgPHBhdGggZD0iTTcsMTEuMzc1IEM0LjU4NzkxNjY3LDExLjM3NSAyLjYyNSw5LjQxMjA4MzMzIDIuNjI1LDcgQzIuNjI1LDQuNTg3OTE2NjcgNC41ODc5MTY2NywyLjYyNSA3LDIuNjI1IEM5LjQxMjA4MzMzLDIuNjI1IDExLjM3NSw0LjU4NzkxNjY3IDExLjM3NSw3IEMxMS4zNzUsOS40MTIwODMzMyA5LjQxMjA4MzMzLDExLjM3NSA3LDExLjM3NSBaIE03LDMuNSBDNS4wNzAzMzMzMywzLjUgMy41LDUuMDcwMzMzMzMgMy41LDcgQzMuNSw4LjkyOTY2NjY3IDUuMDcwMzMzMzMsMTAuNSA3LDEwLjUgQzguOTI5NjY2NjcsMTAuNSAxMC41LDguOTI5NjY2NjcgMTAuNSw3IEMxMC41LDUuMDcwMzMzMzMgOC45Mjk2NjY2NywzLjUgNywzLjUgWiIgaWQ9IlNoYXBlIj48L3BhdGg+CiAgICAgICAgICAgICAgICA8cGF0aCBkPSJNNy40Mzc1LDEuNzUgQzcuMTk2LDEuNzUgNywxLjU1NCA3LDEuMzEyNSBMNywwLjQzNzUgQzcsMC4xOTYgNy4xOTYsMCA3LjQzNzUsMCBDNy42NzksMCA3Ljg3NSwwLjE5NiA3Ljg3NSwwLjQzNzUgTDcuODc1LDEuMzEyNSBDNy44NzUsMS41NTQgNy42NzksMS43NSA3LjQzNzUsMS43NSBaIiBpZD0iUGF0aCI+PC9wYXRoPgogICAgICAgICAgICAgICAgPHBhdGggZD0iTTExLjAxMjQ5NTEsMy41IEMxMC44NzU4Mjk4LDMuNSAxMC43NDY2ODEsMy40NDY3MDA1MSAxMC42NTAzMzE5LDMuMzQ5NjY4MSBDMTAuNTUzMjk5NSwzLjI1MjYzNTY5IDEwLjUsMy4xMjQxNzAyNSAxMC41LDIuOTg3NTA0ODggQzEwLjUsMi44NTA4Mzk1MiAxMC41NTMyOTk1LDIuNzIxNjkwNzUgMTAuNjUwMzMxOSwyLjYyNTM0MTY2IEwxMS4zNzUzNDE3LDEuOTAwMzMxOSBDMTEuNDcyMzc0MSwxLjgwMzI5OTQ5IDExLjYwMDgzOTUsMS43NSAxMS43Mzc1MDQ5LDEuNzUgQzExLjg3NDE3MDIsMS43NSAxMi4wMDMzMTksMS44MDMyOTk0OSAxMi4wOTk2NjgxLDEuOTAwMzMxOSBDMTIuMTk2NzAwNSwxLjk5NzM2NDMxIDEyLjI1LDIuMTI1ODI5NzUgMTIuMjUsMi4yNjI0OTUxMiBDMTIuMjUsMi4zOTkxNjA0OCAxMi4xOTY3MDA1LDIuNTI4MzA5MjUgMTIuMDk5NjY4MSwyLjYyNDY1ODM0IEwxMS4zNzQ2NTgzLDMuMzQ5NjY4MSBDMTEuMjc4MzA5MywzLjQ0NjcwMDUxIDExLjE0OTE2MDUsMy41IDExLjAxMjQ5NTEsMy41IFoiIGlkPSJQYXRoIj48L3BhdGg+CiAgICAgICAgICAgICAgICA8cGF0aCBkPSJNMTIuNjg3NSw3Ljg3NSBDMTIuNDQ2LDcuODc1IDEyLjI1LDcuNjc5IDEyLjI1LDcuNDM3NSBDMTIuMjUsNy4xOTYgMTIuNDQ2LDcgMTIuNjg3NSw3IEwxMy41NjI1LDcgQzEzLjgwNCw3IDE0LDcuMTk2IDE0LDcuNDM3NSBDMTQsNy42NzkgMTMuODA0LDcuODc1IDEzLjU2MjUsNy44NzUgTDEyLjY4NzUsNy44NzUgWiIgaWQ9IlBhdGgiPjwvcGF0aD4KICAgICAgICAgICAgICAgIDxwYXRoIGQ9Ik0xMS43Mzc3ODgyLDEyLjI1IEMxMS42MDEwMTYsMTIuMjUgMTEuNDcxNzY2MywxMi4xOTY3MjEzIDExLjM3NTM0MTksMTIuMDk5NzI2OCBMMTAuNjQ5NzY1NSwxMS4zNzUgQzEwLjQ1MDA3ODIsMTEuMTc1NTQ2NCAxMC40NTAwNzgyLDEwLjg1MDQwOTggMTAuNjQ5NzY1NSwxMC42NTAyNzMyIEMxMC43NDY4NzM4LDEwLjU1MzI3ODcgMTAuODc1NDM5NiwxMC41IDExLjAxMjIxMTgsMTAuNSBDMTEuMTQ4OTg0LDEwLjUgMTEuMjc4MjMzNywxMC41NTMyNzg3IDExLjM3NDY1ODEsMTAuNjUwMjczMiBMMTIuMTAwMjM0NSwxMS4zNzUgQzEyLjI5OTkyMTgsMTEuNTc0NDUzNiAxMi4yOTk5MjE4LDExLjg5OTU5MDIgMTIuMTAwMjM0NSwxMi4wOTk3MjY4IEMxMi4wMDM4MTAxLDEyLjE5NjcyMTMgMTEuODc0NTYwNCwxMi4yNSAxMS43Mzc3ODgyLDEyLjI1IFoiIGlkPSJQYXRoIj48L3BhdGg+CiAgICAgICAgICAgICAgICA8cGF0aCBkPSJNNy40Mzc1LDE0IEM3LjE5NiwxNCA3LDEzLjgwNCA3LDEzLjU2MjUgTDcsMTIuNjg3NSBDNywxMi40NDYgNy4xOTYsMTIuMjUgNy40Mzc1LDEyLjI1IEM3LjY3OSwxMi4yNSA3Ljg3NSwxMi40NDYgNy44NzUsMTIuNjg3NSBMNy44NzUsMTMuNTYyNSBDNy44NzUsMTMuODA0IDcuNjc5LDE0IDcuNDM3NSwxNCBaIiBpZD0iUGF0aCI+PC9wYXRoPgogICAgICAgICAgICAgICAgPHBhdGggZD0iTTIuMjYyNjk1MzEsMTIuMjUgQzIuMTI1OTc2NTYsMTIuMjUgMS45OTY3NzczNCwxMi4xOTY3MDA1IDEuOTAwMzkwNjIsMTIuMDk5NjY4MSBDMS44MDMzMjAzMSwxMi4wMDI2MzU3IDEuNzUsMTEuODc0MTcwMiAxLjc1LDExLjczNzUwNDkgQzEuNzUsMTEuNjAwODM5NSAxLjgwMzMyMDMxLDExLjQ3MTY5MDcgMS45MDAzOTA2MiwxMS4zNzUzNDE3IEwyLjYyNTY4MzU5LDEwLjY1MDMzMTkgQzIuNzIyMDcwMzEsMTAuNTUzMjk5NSAyLjg1MTI2OTUzLDEwLjUgMi45ODc5ODgyOCwxMC41IEMzLjEyNDcwNzAzLDEwLjUgMy4yNTM5MDYyNSwxMC41NTMyOTk1IDMuMzUwMjkyOTcsMTAuNjUwMzMxOSBDMy41NDk5MDIzNCwxMC44NDk4NjMzIDMuNTQ5OTAyMzQsMTEuMTc1MTI2OSAzLjM1MDI5Mjk3LDExLjM3NTM0MTcgTDIuNjI1LDEyLjEwMDM1MTQgQzIuNTI4NjEzMjgsMTIuMTk2NzAwNSAyLjQwMDA5NzY2LDEyLjI1IDIuMjYyNjk1MzEsMTIuMjUgWiIgaWQ9IlBhdGgiPjwvcGF0aD4KICAgICAgICAgICAgICAgIDxwYXRoIGQ9Ik0wLjQzNzUsNy44NzUgQzAuMTk2LDcuODc1IDAsNy42NzkgMCw3LjQzNzUgQzAsNy4xOTYgMC4xOTYsNyAwLjQzNzUsNyBMMS4zMTI1LDcgQzEuNTU0LDcgMS43NSw3LjE5NiAxLjc1LDcuNDM3NSBDMS43NSw3LjY3OSAxLjU1NCw3Ljg3NSAxLjMxMjUsNy44NzUgTDAuNDM3NSw3Ljg3NSBaIiBpZD0iUGF0aCI+PC9wYXRoPgogICAgICAgICAgICAgICAgPHBhdGggZD0iTTIuOTg3NTA0ODgsMy41IEMyLjg1MDgzOTUyLDMuNSAyLjcyMTY5MDc1LDMuNDQ2NzAwNTEgMi42MjUzNDE2NiwzLjM0OTY2ODEgTDEuOTAwMzMxOSwyLjYyNDY1ODM0IEMxLjgwMzI5OTQ5LDIuNTI4MzA5MjUgMS43NSwyLjM5OTE2MDQ4IDEuNzUsMi4yNjI0OTUxMiBDMS43NSwyLjEyNTgyOTc1IDEuODAzMjk5NDksMS45OTY2ODA5OCAxLjkwMDMzMTksMS45MDAzMzE5IEMxLjk5NjY4MDk4LDEuODAzMjk5NDkgMi4xMjU4Mjk3NSwxLjc1IDIuMjYyNDk1MTIsMS43NSBDMi4zOTkxNjA0OCwxLjc1IDIuNTI4MzA5MjUsMS44MDMyOTk0OSAyLjYyNDY1ODM0LDEuOTAwMzMxOSBMMy4zNDk2NjgxLDIuNjI1MzQxNjYgQzMuNDQ2NzAwNTEsMi43MjE2OTA3NSAzLjUsMi44NTA4Mzk1MiAzLjUsMi45ODc1MDQ4OCBDMy41LDMuMTI0MTcwMjUgMy40NDY3MDA1MSwzLjI1MzMxOTAyIDMuMzQ5NjY4MSwzLjM0OTY2ODEgQzMuMjUzMzE5MDIsMy40NDY3MDA1MSAzLjEyNDE3MDI1LDMuNSAyLjk4NzUwNDg4LDMuNSBaIiBpZD0iUGF0aCI+PC9wYXRoPgogICAgICAgICAgICA8L2c+CiAgICAgICAgPC9nPgogICAgPC9nPgo8L3N2Zz4=);background-position:center;background-repeat:no-repeat;background-size:contain;width:1rem;height:1rem;right:.25rem;top:.25rem}.c-darkmode-toggle__switch:after{content:"";position:absolute;height:1.125rem;width:1.125rem;border-radius:1.125rem;top:.1875rem;left:.1875rem;background:#fff;box-shadow:0 0.1em 0.3em rgba(0,0,0,0.3);-webkit-transition:all 300ms;-moz-transition:all 300ms;transition:all 300ms}.c-darkmode-toggle__input{position:absolute;opacity:0;z-index:-1}.c-darkmode-toggle__input:checked ~ .c-darkmode-toggle__switch:after{-webkit-transform:translate3d(1.3rem, 0, 0);-moz-transform:translate3d(1.3rem, 0, 0);transform:translate3d(1.3rem, 0, 0)}.c-darkmode-toggle__input:checked ~ .c-darkmode-toggle__switch{background:#0060af}.c-darkmode-toggle__input:checked ~ .c-darkmode-toggle__switch:before{position:absolute;content:"";background-image:url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMTBweCIgaGVpZ2h0PSIxNHB4IiB2aWV3Qm94PSIwIDAgMTAgMTQiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8dGl0bGU+SWNvbnMvRE0tTW9vbjwvdGl0bGU+CiAgICA8ZyBpZD0iU3ltYm9scyIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9Ikljb25zL1RvZ2dsZS1hY3RpdmUtYmx1ZSIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoLTcuMDAwMDAwLCAtMy4wMDAwMDApIiBmaWxsPSIjRkZGRkZGIiBmaWxsLXJ1bGU9Im5vbnplcm8iPgogICAgICAgICAgICA8ZyBpZD0iSWNvbnMvRE0tTW9vbiIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoNy4wMDAwMDAsIDMuMDAwMDAwKSI+CiAgICAgICAgICAgICAgICA8ZyB0cmFuc2Zvcm09InRyYW5zbGF0ZSgtMC4wMDAwMDAsIDAuMDAwMDAwKSIgaWQ9IlNoYXBlIj4KICAgICAgICAgICAgICAgICAgICA8cGF0aCBkPSJNNy4wMDA4MTU4OSwxNCBDNi4yOTE3NDg0NSwxNCA1LjU4NjE3OTcxLDEzLjg5MDk1NzYgNC45MDM5MzU1NSwxMy42NzY5NTQ1IEMzLjEyMDc3MDksMTMuMTE3MTY0NCAxLjY2MjQwMTEyLDExLjg5NjEyMjMgMC43OTc2NDIwNzYsMTAuMjM4OTEwNCBDLTAuMDY3MTE2OTczLDguNTgxNjk4NTMgLTAuMjM1MDUzOTk3LDYuNjg3MTU4OTggMC4zMjQ3MzYwODIsNC45MDM5OTQzNCBDMC44ODUxMDkyNzUsMy4xMjA4Mjk2OSAyLjEwNTU2ODI3LDEuNjYyNDU5OTEgMy43NjI3ODAxNSwwLjc5NzcwMDg2MiBDNC43NjIyMzg2OSwwLjI3NTgxMzIzNyA1Ljg3OTQ4NjM4LDAgNi45OTI2NTIyOCwwIEM3LjcwMjg4NTk0LDAgOC40MTEzNzAyNiwwLjEwOTA0MjQ0MiA5LjA5NzExMzExLDAuMzI0Nzk0ODY5IEM5LjI4MDIxMTExLDAuMzgyNTIzMjIgOS40MDMyNDgzMSwwLjU0OTg3NzEyOSA5LjQwMzI0ODMxLDAuNzQxNzIxODU0IEM5LjQwMzI0ODMxLDAuOTMzNTY2NTc5IDkuMjgwMjExMTEsMS4xMDE1MDM2IDkuMDk3MTEzMTEsMS4xNTkyMzE5NSBDNi41MzM3NDEwNCwxLjk2NTY3OTU0IDQuODExMjIwMzIsNC4zMTMyOTkxOCA0LjgxMDYzNzIsNy4wMDA4NzQ2NyBDNC44MTEyMjAzMiw5LjY4Nzg2NzA1IDYuNTMzNzQxMDQsMTIuMDM1NDg2NyA5LjA5NzExMzExLDEyLjg0MTkzNDMgQzkuMjgwMjExMTEsMTIuODk5NjYyNiA5LjQwMzI0ODMxLDEzLjA2NzAxNjUgOS40MDMyNDgzMSwxMy4yNTg4NjEzIEM5LjQwMzI0ODMxLDEzLjQ1MDcwNiA5LjI4MDIxMTExLDEzLjYxODY0MyA5LjA5NzExMzExLDEzLjY3NTc4ODIgQzguNDE1NDUyMDYsMTMuODkwOTU3NiA3LjcwOTg4MzMyLDE0IDcuMDAwODE1ODksMTQgWiBNNi45OTMyMzUzOSwwLjg3NTI1NTExMyBDNi4wMTk0MzM5LDAuODc1MjU1MTEzIDUuMDQyNzE2ODQsMS4xMTY2NjQ1OCA0LjE2NzQ2MTczLDEuNTczMjQzMzcgQzIuNzE3ODM4NjcsMi4zMzAxMjYyIDEuNjQ5NTcyNiwzLjYwNTk4MTA5IDEuMTU5NzU2MjgsNS4xNjYzOTU5MyBDMC42NjkzNTY4NDksNi43MjY4MTA3OCAwLjgxNjMwMTc0NSw4LjM4NDYwNTc3IDEuNTczMTg0NTgsOS44MzQyMjg4MyBDMi4zMzAwNjc0MiwxMS4yODM4NTE5IDMuNjA1OTIyMywxMi4zNTIxMTggNS4xNjYzMzcxNSwxMi44NDI1MTc0IEM1Ljc2NDAyOTY4LDEzLjAzMDI4MDMgNi4zODE1NDgxMSwxMy4xMjUzMjggNy4wMDEzOTksMTMuMTI1MzI4IEM3LjE2OTkxOTE0LDEzLjEyNTMyOCA3LjMzODQzOTI4LDEzLjExODMzMDYgNy41MDYzNzYzLDEzLjEwNDMzNTkgQzUuMzE3MzYzODUsMTEuODc5MjEyIDMuOTM3MTMxNDMsOS41NTQ5MTY5MSAzLjkzNjU0ODMyLDcuMDAxNDU3NzkgQzMuOTM3MTMxNDMsNC40NDY4MzI0NCA1LjMxNzk0Njk2LDIuMTIyNTM3MzggNy41MDc1NDI1MywwLjg5NzQxMzQ3IEM3LjMzNjY4OTkzLDAuODgyMjUyNDg5IDcuMTY0NjcxMTEsMC44NzUyNTUxMTMgNi45OTMyMzUzOSwwLjg3NTI1NTExMyBaIj48L3BhdGg+CiAgICAgICAgICAgICAgICA8L2c+CiAgICAgICAgICAgIDwvZz4KICAgICAgICA8L2c+CiAgICA8L2c+Cjwvc3ZnPg==);background-position:center;background-repeat:no-repeat;background-size:contain;width:1rem;height:1rem;left:.25rem;top:.25rem}.c-breadcrumb__mobile{display:none}@media screen and (max-width: 1421px){.c-breadcrumb__mobile{display:block}}.c-breadcrumb__widescreen{display:flex}@media screen and (max-width: 1421px){.c-breadcrumb__widescreen{display:none}}.js-advanced-table{position:relative}@media screen and (max-width: 1097px){.js-advanced-table{overflow-x:scroll}}.c-advanced-table__table{width:100%;max-width:100%}@media screen and (max-width: 1097px){.c-advanced-table__table{width:auto;max-width:none}}.c-advanced-table__table caption{text-align:left;color:var(--color-daadblue);font-size:1.25em;margin-bottom:12px}.c-advanced-table__table thead td,.c-advanced-table__table thead th{border-bottom:1px solid #767676;padding:9px;hyphens:auto;text-align:left;font-weight:bold}.c-advanced-table__table tbody td{border-bottom:1px solid #767676;padding:9px;hyphens:auto;color:var(--color-anthracite)}.c-advanced-table__table tbody tr:nth-child(even) td{background:var(--color-lightgrey)}.c-advanced-table__fixed-head{position:fixed;background:#fff;top:0;box-shadow:0px 9px 15px -10px #000;max-width:100%;z-index:1}@media screen and (max-width: 1097px){.c-advanced-table__fixed-head{display:none !important}}.c-advanced-table__fixed-head td,.c-advanced-table__fixed-head th{border-bottom:1px solid #767676;padding:9px;hyphens:auto;font-weight:bold}.fullwidth-tables .c-advanced-table__fixed-head{width:152.2%;max-width:none}@media screen and (max-width: 1421px){.fullwidth-tables .c-advanced-table__fixed-head{width:100%;max-width:100%}}.fullwidth-tables .c-advanced-table__table{position:relative;width:152.2%;max-width:none}@media screen and (max-width: 1421px){.fullwidth-tables .c-advanced-table__table{width:100%;max-width:100%}}.c-downloadbox__container{position:relative;border:1px solid #979797;padding:34px 48px;margin:54px 0}@media screen and (max-width: 611px){.c-downloadbox__container{padding:19px 15px}}.c-downloadbox__headline{display:flex;flex-direction:row;font-size:1.5em;line-height:1.25}.c-downloadbox__headline a,.c-downloadbox__headline svg{color:#0060af}.c-downloadbox__headline--no-content{margin-bottom:25px}@media screen and (max-width: 611px){.c-downloadbox__headline--no-content{margin-bottom:21px}}.c-downloadbox__headline--icon{margin:7px 6px 0 0;flex-shrink:0}.c-downloadbox__description{font-size:1.25em;line-height:32px;margin-top:18px;margin-bottom:40px}@media screen and (max-width: 611px){.c-downloadbox__description{margin-top:0;margin-bottom:24px}}.c-downloadbox__description ul{margin:18px 0 !important}.c-downloadbox__icon{position:absolute;display:flex;width:88px;height:88px;justify-content:center;align-items:center;top:-44px;right:44px;background-color:#0060af;border-radius:50%}@media screen and (max-width: 611px){.c-downloadbox__icon{width:64px;height:64px;top:-32px;right:32px}.c-downloadbox__icon svg{width:34px;height:34px}}.c-downloadbox__icon--half{width:64px;height:64px;top:-32px;right:32px}.c-downloadbox__icon--half svg{width:34px;height:34px}.c-downloadbox--full{clear:both}.c-downloadbox--half{width:50%;float:left;margin-right:36px}@media screen and (max-width: 1097px){.c-downloadbox--half{float:none;clear:both;width:100%}}.c-event-header__container{display:flex;justify-content:space-between}@media screen and (max-width: 611px){.c-event-header__container{flex-direction:column}}.c-event-series__teaser{height:30px;align-self:flex-start;text-align:center;letter-spacing:1.5px}.c-event-series__teaser--margin-bottom{margin-bottom:18px}.c-event-series__details{height:30px;position:absolute;align-self:flex-end;text-align:center;right:0;letter-spacing:1.5px}@media screen and (max-width: 611px){.c-event-series__details{position:relative;width:fit-content;margin-bottom:9px}}.c-chart__chart{padding:18px 0 9px 0;width:100%}.c-chart__actions{display:flex;background:#e2e2e2;padding:0 18px 18px 18px;align-items:center}.c-chart__export-button{border:none;padding:0;margin:0;background:var(--color-daadblue-background);width:48px;height:48px;line-height:48px;display:block;border-radius:50%;color:#fff;font-size:1.125em;flex-shrink:0;cursor:pointer}.c-chart__export-button .svg-icon{vertical-align:sub}.c-gallery{width:100%;height:auto;position:relative;overflow:hidden;margin-bottom:36px;margin:36px 0}.c-gallery>a img{width:100%;height:auto;transition-duration:.2s;opacity:1}.c-gallery>a{display:block;transition-duration:.2s}.c-gallery:hover>a img{transform:scale(1.05);opacity:1.33;transition-duration:.2s}.c-gallery>a i{position:absolute;top:50%;left:50%;background:#fff;width:164px;height:164px;line-height:164px;text-align:center;color:var(--color-daadblue);transform:translateX(-50%) translateY(-50%);font-size:164px;border-radius:50%}@media screen and (max-width: 611px){.c-gallery>a i{width:84px;height:84px}}.c-gallery>a i:after{content:'';width:88px;height:88px;position:absolute;left:50%;top:50%;transform:translateY(-50%) translateX(-50%);background-image:url("data:image/svg+xml,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22UTF-8%22%3F%3E%0A%3Csvg%20width%3D%2288px%22%20height%3D%2288px%22%20viewBox%3D%220%200%2088%2088%22%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%3E%0A%20%20%20%20%3Cdefs%3E%0A%20%20%20%20%20%20%20%20%3Cpath%20d%3D%22M82.5%2C4.12114787e-13%20C85.5323333%2C4.12114787e-13%2088%2C2.46766667%2088%2C5.5%20L88%2C71.5%20C88%2C74.5323333%2085.5323333%2C77%2082.5%2C77%20L73.3333333%2C77%20L73.3333333%2C82.5%20C73.3333333%2C85.5323333%2070.8656667%2C88%2067.8333333%2C88%20L5.5%2C88%20C2.46766667%2C88%204.12114787e-13%2C85.5323333%204.12114787e-13%2C82.5%20L4.12114787e-13%2C20.1666667%20C4.12114787e-13%2C17.1343333%202.46766667%2C14.6666667%205.5%2C14.6666667%20L11%2C14.6666667%20L11%2C5.5%20C11%2C2.46766667%2013.4676667%2C4.12114787e-13%2016.5%2C4.12114787e-13%20L82.5%2C4.12114787e-13%20Z%20M11%2C18.3333333%20L5.5%2C18.3333333%20C4.488%2C18.3333333%203.66666667%2C19.1546667%203.66666667%2C20.1666667%20L3.66666667%2C82.5%20C3.66666667%2C83.512%204.488%2C84.3333333%205.5%2C84.3333333%20L67.8333333%2C84.3333333%20C68.8453333%2C84.3333333%2069.6666667%2C83.512%2069.6666667%2C82.5%20L69.6666667%2C77%20L16.5%2C77%20C13.4676667%2C77%2011%2C74.5323333%2011%2C71.5%20L11%2C18.3333333%20Z%20M76.835%2C62.3186667%20L14.6666667%2C62.3223333%20L14.6666667%2C71.5%20C14.6666667%2C72.512%2015.488%2C73.3333333%2016.5%2C73.3333333%20L82.5%2C73.3333333%20C83.512%2C73.3333333%2084.3333333%2C72.512%2084.3333333%2C71.5%20L84.3333333%2C62.3223333%20L77.1356667%2C62.3223333%20C77.088%2C62.3296667%2077.0403333%2C62.3333333%2077%2C62.3333333%20C76.9376667%2C62.3333333%2076.8826667%2C62.326%2076.835%2C62.3186667%20Z%20M82.5%2C3.66666667%20L16.5%2C3.66666667%20C15.488%2C3.66666667%2014.6666667%2C4.488%2014.6666667%2C5.5%20L14.6666667%2C58.6556667%20L30.1363333%2C58.6556667%20L39.2663333%2C43.439%20C39.479%2C43.0833333%2039.7466667%2C42.7716667%2040.0656667%2C42.5076667%20C40.722%2C41.9613333%2041.5543333%2C41.6606667%2042.405%2C41.6606667%20C42.5186667%2C41.6606667%2042.6286667%2C41.6643333%2042.7423333%2C41.6753333%20C43.7176667%2C41.7633333%2044.6013333%2C42.229%2045.2283333%2C42.9806667%20L51.1683333%2C50.1086667%20L62.4873333%2C33.1246667%20C62.9126667%2C32.4866667%2063.5176667%2C32.0026667%2064.2436667%2C31.7276667%20C64.6616667%2C31.57%2065.098%2C31.4893333%2065.538%2C31.4893333%20C67.056%2C31.4893333%2068.4346667%2C32.4426667%2068.97%2C33.858%20L78.265%2C58.6556667%20L84.3333333%2C58.6556667%20L84.3333333%2C5.5%20C84.3333333%2C4.488%2083.512%2C3.66666667%2082.5%2C3.66666667%20Z%20M65.5416667%2C35.1486667%20L52.8586667%2C54.1823333%20C52.5396667%2C54.659%2052.008%2C54.9633333%2051.4323333%2C54.9963333%20L51.425%2C54.9963333%20C50.7796667%2C54.9963333%2050.2773333%2C54.7616667%2049.9253333%2C54.34%20L42.4086667%2C45.3236667%20L34.4116667%2C58.6556667%20L74.3526667%2C58.6556667%20L65.5416667%2C35.1486667%20Z%20M36.6666667%2C14.6556667%20C40.711%2C14.6556667%2044%2C17.9446667%2044%2C21.989%20C44%2C26.0333333%2040.711%2C29.3223333%2036.6666667%2C29.3223333%20C32.6223333%2C29.3223333%2029.3333333%2C26.0333333%2029.3333333%2C21.989%20C29.3333333%2C17.9446667%2032.6223333%2C14.6556667%2036.6666667%2C14.6556667%20Z%20M36.6666667%2C18.3223333%20C34.6463333%2C18.3223333%2033%2C19.9686667%2033%2C21.989%20C33%2C24.0093333%2034.6463333%2C25.6556667%2036.6666667%2C25.6556667%20C38.687%2C25.6556667%2040.3333333%2C24.0093333%2040.3333333%2C21.989%20C40.3333333%2C19.9686667%2038.687%2C18.3223333%2036.6666667%2C18.3223333%20Z%22%20id%3D%22path-1%22%3E%3C%2Fpath%3E%0A%20%20%20%20%3C%2Fdefs%3E%0A%20%20%20%20%3Cg%20id%3D%22Asset-Artboard-Page%22%20stroke%3D%22none%22%20stroke-width%3D%221%22%20fill%3D%22%230060af%22%20fill-rule%3D%22evenodd%22%3E%0A%20%20%20%20%20%20%20%20%3Cg%20id%3D%22Icons%2FBildergalerie%22%20transform%3D%22translate%280.500000%2C%200.000000%29%22%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%3Cmask%20id%3D%22mask-2%22%20fill%3D%22white%22%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%3Cuse%20xlink%3Ahref%3D%22%23path-1%22%3E%3C%2Fuse%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%3C%2Fmask%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%3Cuse%20id%3D%22bildergalerie%22%20xlink%3Ahref%3D%22%23path-1%22%3E%3C%2Fuse%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%3Cg%20id%3D%22Farben%2Fdaad_blau%22%20mask%3D%22url%28%23mask-2%29%22%20fill%3D%22%230060af%22%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%3C%2Fg%3E%0A%20%20%20%20%20%20%20%20%3C%2Fg%3E%0A%20%20%20%20%3C%2Fg%3E%0A%3C%2Fsvg%3E%0A");background-size:100% auto}@media screen and (max-width: 611px){.c-gallery>a i:after{width:48px;height:48px}}.c-gallery>a:hover i:after{background-image:url("data:image/svg+xml,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22UTF-8%22%3F%3E%0A%3Csvg%20width%3D%2288px%22%20height%3D%2288px%22%20viewBox%3D%220%200%2088%2088%22%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%3E%0A%20%20%20%20%3Cdefs%3E%0A%20%20%20%20%20%20%20%20%3Cpath%20d%3D%22M82.5%2C4.12114787e-13%20C85.5323333%2C4.12114787e-13%2088%2C2.46766667%2088%2C5.5%20L88%2C71.5%20C88%2C74.5323333%2085.5323333%2C77%2082.5%2C77%20L73.3333333%2C77%20L73.3333333%2C82.5%20C73.3333333%2C85.5323333%2070.8656667%2C88%2067.8333333%2C88%20L5.5%2C88%20C2.46766667%2C88%204.12114787e-13%2C85.5323333%204.12114787e-13%2C82.5%20L4.12114787e-13%2C20.1666667%20C4.12114787e-13%2C17.1343333%202.46766667%2C14.6666667%205.5%2C14.6666667%20L11%2C14.6666667%20L11%2C5.5%20C11%2C2.46766667%2013.4676667%2C4.12114787e-13%2016.5%2C4.12114787e-13%20L82.5%2C4.12114787e-13%20Z%20M11%2C18.3333333%20L5.5%2C18.3333333%20C4.488%2C18.3333333%203.66666667%2C19.1546667%203.66666667%2C20.1666667%20L3.66666667%2C82.5%20C3.66666667%2C83.512%204.488%2C84.3333333%205.5%2C84.3333333%20L67.8333333%2C84.3333333%20C68.8453333%2C84.3333333%2069.6666667%2C83.512%2069.6666667%2C82.5%20L69.6666667%2C77%20L16.5%2C77%20C13.4676667%2C77%2011%2C74.5323333%2011%2C71.5%20L11%2C18.3333333%20Z%20M76.835%2C62.3186667%20L14.6666667%2C62.3223333%20L14.6666667%2C71.5%20C14.6666667%2C72.512%2015.488%2C73.3333333%2016.5%2C73.3333333%20L82.5%2C73.3333333%20C83.512%2C73.3333333%2084.3333333%2C72.512%2084.3333333%2C71.5%20L84.3333333%2C62.3223333%20L77.1356667%2C62.3223333%20C77.088%2C62.3296667%2077.0403333%2C62.3333333%2077%2C62.3333333%20C76.9376667%2C62.3333333%2076.8826667%2C62.326%2076.835%2C62.3186667%20Z%20M82.5%2C3.66666667%20L16.5%2C3.66666667%20C15.488%2C3.66666667%2014.6666667%2C4.488%2014.6666667%2C5.5%20L14.6666667%2C58.6556667%20L30.1363333%2C58.6556667%20L39.2663333%2C43.439%20C39.479%2C43.0833333%2039.7466667%2C42.7716667%2040.0656667%2C42.5076667%20C40.722%2C41.9613333%2041.5543333%2C41.6606667%2042.405%2C41.6606667%20C42.5186667%2C41.6606667%2042.6286667%2C41.6643333%2042.7423333%2C41.6753333%20C43.7176667%2C41.7633333%2044.6013333%2C42.229%2045.2283333%2C42.9806667%20L51.1683333%2C50.1086667%20L62.4873333%2C33.1246667%20C62.9126667%2C32.4866667%2063.5176667%2C32.0026667%2064.2436667%2C31.7276667%20C64.6616667%2C31.57%2065.098%2C31.4893333%2065.538%2C31.4893333%20C67.056%2C31.4893333%2068.4346667%2C32.4426667%2068.97%2C33.858%20L78.265%2C58.6556667%20L84.3333333%2C58.6556667%20L84.3333333%2C5.5%20C84.3333333%2C4.488%2083.512%2C3.66666667%2082.5%2C3.66666667%20Z%20M65.5416667%2C35.1486667%20L52.8586667%2C54.1823333%20C52.5396667%2C54.659%2052.008%2C54.9633333%2051.4323333%2C54.9963333%20L51.425%2C54.9963333%20C50.7796667%2C54.9963333%2050.2773333%2C54.7616667%2049.9253333%2C54.34%20L42.4086667%2C45.3236667%20L34.4116667%2C58.6556667%20L74.3526667%2C58.6556667%20L65.5416667%2C35.1486667%20Z%20M36.6666667%2C14.6556667%20C40.711%2C14.6556667%2044%2C17.9446667%2044%2C21.989%20C44%2C26.0333333%2040.711%2C29.3223333%2036.6666667%2C29.3223333%20C32.6223333%2C29.3223333%2029.3333333%2C26.0333333%2029.3333333%2C21.989%20C29.3333333%2C17.9446667%2032.6223333%2C14.6556667%2036.6666667%2C14.6556667%20Z%20M36.6666667%2C18.3223333%20C34.6463333%2C18.3223333%2033%2C19.9686667%2033%2C21.989%20C33%2C24.0093333%2034.6463333%2C25.6556667%2036.6666667%2C25.6556667%20C38.687%2C25.6556667%2040.3333333%2C24.0093333%2040.3333333%2C21.989%20C40.3333333%2C19.9686667%2038.687%2C18.3223333%2036.6666667%2C18.3223333%20Z%22%20id%3D%22path-1%22%3E%3C%2Fpath%3E%0A%20%20%20%20%3C%2Fdefs%3E%0A%20%20%20%20%3Cg%20id%3D%22Asset-Artboard-Page%22%20stroke%3D%22none%22%20stroke-width%3D%221%22%20fill%3D%22%23dd3700%22%20fill-rule%3D%22evenodd%22%3E%0A%20%20%20%20%20%20%20%20%3Cg%20id%3D%22Icons%2FBildergalerie%22%20transform%3D%22translate%280.500000%2C%200.000000%29%22%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%3Cmask%20id%3D%22mask-2%22%20fill%3D%22white%22%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%3Cuse%20xlink%3Ahref%3D%22%23path-1%22%3E%3C%2Fuse%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%3C%2Fmask%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%3Cuse%20id%3D%22bildergalerie%22%20xlink%3Ahref%3D%22%23path-1%22%3E%3C%2Fuse%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%3Cg%20id%3D%22Farben%2Fdaad_blau%22%20mask%3D%22url%28%23mask-2%29%22%20fill%3D%22%23dd3700%22%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%3C%2Fg%3E%0A%20%20%20%20%20%20%20%20%3C%2Fg%3E%0A%20%20%20%20%3C%2Fg%3E%0A%3C%2Fsvg%3E%0A")}.c-gallery .hidden,.c-gallery .copyright{display:none}.c-facts{padding:36px 0}.c-facts__container-without-background{padding-top:0;padding-bottom:100px}@media screen and (max-width: 1097px){.c-facts__container{flex-direction:column;align-items:center}}.c-facts__background{position:absolute;width:100vw;height:100%;object-fit:cover;top:0}.c-facts__fact{text-align:center;width:33.3333%;padding:0 18px;color:#fff}@media screen and (max-width: 1097px){.c-facts__fact{width:100%}}.c-facts__number{font-size:9em;transition:transform 0.3s ease}@media screen and (max-width: 1097px){.c-facts__number{font-size:6.25em}}.c-facts__number:hover{transform:scale(1.1)}.c-facts__number-wrapper{display:flex;flex-direction:column-reverse}.c-facts__number-headline{line-height:44px}.c-facts__headline{color:#fff;border-bottom-color:#fff}.c-facts__text{font-size:1.25em;line-height:32px}.c-filters{margin-bottom:72px}.c-filters__switch{margin:0;padding:0;list-style:none;border-bottom:1px solid var(--color-anthracite);padding-bottom:3px;margin-bottom:36px}.c-filters__switch-item{display:inline-block;font-size:1.125em;margin-bottom:0;color:var(--color-anthracite)}@media screen and (max-width: 611px){.c-filters__switch-item{margin:0}}.c-filters__switch-link{color:var(--color-anthracite);padding-bottom:3px}.c-filters__switch-link :focus,.c-filters__switch-link :active,.c-filters__switch-link:not([disabled]):hover{border-bottom:3px solid var(--color-anthracite);color:var(--color-anthracite)}.c-filters__switch-link--active{font-weight:600;border-bottom:3px solid var(--color-anthracite)}.c-filters__switch-link:first-child{margin-right:36px}.c-filters__list{margin:0;padding:0;list-style:none;position:relative;z-index:203}.c-filters__headline{margin-bottom:18px}.c-filters__list-item{padding:18px 0;position:relative;clear:both}@media screen and (max-width: 1097px){.c-filters__list-item{position:unset}}.c-filters__list-item-link{color:var(--color-anthracite);margin-right:6px}.c-filters__remove-filter{font-size:30px;font-weight:bold;line-height:1px;vertical-align:middle;margin-right:3px}.c-filters__remove-filter:hover{text-decoration:none}.c-filters__datepicker-input{width:0;height:0;background:none;border:none;margin:0;padding:0;opacity:0;visibility:hidden;display:block}.c-filters--horizontal{margin:0;position:relative}.c-filters--horizontal .c-filters__list{display:flex;flex-wrap:wrap}.c-filters--horizontal li{display:block;padding:0 9px}.c-filters--horizontal__first-item{padding-left:0 !important}@media screen and (max-width: 611px){.c-filters--horizontal__first-item{padding-left:9px !important}}.c-filters__trigger{padding:6px 36px 6px 18px;border-radius:36px;cursor:pointer;display:block;position:relative;margin:9px 0 0;border:1px solid var(--color-anthracite);background:#fff;white-space:nowrap;color:var(--color-anthracite-contain)}.c-filters__trigger :focus,.c-filters__trigger :active,.c-filters__trigger:not([disabled]):hover{text-decoration:underline}.c-filters__trigger__icon{position:absolute;top:50%;right:12px;transform:rotate(90deg) translateX(-50%);font-size:2em}.c-filters__trigger--current .c-filters__trigger__icon{transform:rotate(90deg) translateX(-50%) scaleX(-1)}.c-filters__trigger--selected{background:var(--color-daadblue-background);color:#fff;border-color:var(--color-daadblue-border)}.c-filters__dropdown{position:absolute;background:#fff;z-index:201;width:260px;padding:18px;margin-top:12px;font-size:1.25em;box-shadow:0 0 10px rgba(0,0,0,0.4);display:none}@media screen and (max-width: 1097px){.c-filters__dropdown{width:100%;left:0}}.c-filters__datepicker-dropdown{position:absolute;background:#fff;z-index:201;width:100%}@media screen and (max-width: 1097px){.c-filters__datepicker-dropdown{width:100%;left:0}}.c-filters__checklist{margin:0;padding:0}.c-filters__checklist li{padding:12px 0}.c-filters__checklist label{margin:0;display:block;font-weight:600}.c-filters__checklist input:focus{box-shadow:none}.c-filters__checklist-checkbox{margin-right:12px}.c-filters__submit{background:var(--color-daadblue-background);border:none;color:#fff;font-size:1em;text-transform:uppercase;padding:12px;margin:18px 0 0;width:100%;border-radius:36px;cursor:pointer;font-weight:600}.c-filters__submit:active,.c-filters__submithover,.c-filters__submitfocus{outline:none;box-shadow:none}.c-filters__used-filters-list{list-style:none;padding:0;display:flex;flex-wrap:wrap;margin:0}.c-filters__used-filters-list-item{margin:12px 12px 12px 0}.c-filters__toggle-filters{display:none;position:relative;padding-left:20px;font-weight:bold;font-size:18px}.c-filters__toggle-filters:before{font-family:'icomoon';content:"\e915 ";position:absolute;left:0px;font-size:18px}.c-filters__used-filters-list-item-link{position:relative;display:block;line-height:1;border:1px solid var(--color-anthracite);background:#fff;color:var(--color-anthracite-contain);font-size:1.25em;padding:6px 36px 6px 12px}.c-filters__used-filters-list-item-link__icon{font-size:1rem;position:absolute;top:6px;right:9px}.c-filters__mobile-headline{display:none !important}.c-filters__mobile-headline-text{border-bottom:1px solid var(--color-anthracite);padding-bottom:12px;margin-bottom:12px}.c-filters__mobile-delete{display:none !important}.c-filters__mobile-delete-button{margin-bottom:18px;position:relative;padding:0 0 0 30px;line-height:25px;border:none;background:none;width:100%;text-align:left;color:var(--color-anthracite);display:block}.c-filters__mobile-delete-button:before{font-family:'icomoon';content:"\e918 ";position:absolute;left:0px;font-size:26px;color:var(--color-daadblue)}.c-filters__mobile-submit-button{margin-top:18px;position:relative;padding:0 0 0 30px;line-height:25px;display:none;border:none;border-top:1px solid var(--color-anthracite);background:none;width:100%;text-align:left;padding-top:18px}.c-filters__mobile-submit-button:before{font-family:'icomoon';content:"\e915 ";position:absolute;left:0px;font-size:26px;color:var(--color-daadblue)}.c-filters__mobile-close{float:right;font-size:30px;line-height:20px}.is-rtl .c-filters__switch-link:first-child{margin-right:0;margin-left:36px}.is-rtl .c-filters--horizontal__first-item{padding-right:0 !important}@media screen and (max-width: 611px){.is-rtl .c-filters--horizontal__first-item{padding-right:9px !important}}.c-home-slider{position:relative;width:100%;max-width:100vw}.c-home-slider .slick-slide{line-height:0}.c-home-slider__slide{height:709px;position:relative;overflow:hidden}@media screen and (max-width: 1097px){.c-home-slider__slide{height:auto;max-height:709px}}.c-home-slider__slide:before{padding-top:47%;display:block;content:""}.c-home-slider__slide img{position:absolute;top:50%;left:50%;width:100%;height:auto;transform:translate(-50%, -50%);max-width:none}@media screen and (max-width: 1421px){.c-home-slider__slide img.too-narrow{height:100%;width:auto}}.c-home-slider__slide-content{position:absolute;z-index:100;width:720px;height:400px;background:#00325f;background:rgba(0,50,95,0.9);top:50%;left:50%;transform:translateX(-50%) translateY(-50%);padding:36px}@media screen and (max-width: 1097px){.c-home-slider__slide-content{position:relative;width:100%;height:auto;left:0;top:inherit;transform:none;background:var(--color-darkblue-background);padding-bottom:90px}}.c-home-slider__navigation{display:flex;justify-content:center;align-items:center;position:absolute;left:0;width:100%;color:#fff;bottom:36px}@media screen and (max-width: 1097px){.c-home-slider__navigation{bottom:30px;justify-content:space-around}}.c-home-slider__navigation .slick-dots button{color:#fff}.c-home-slider__button{background:none;border:none;color:currentColor;padding:0;margin:0 6px}@media screen and (max-width: 611px){.c-home-slider__button{display:none}}.c-home-slider__arrows--mobile{display:none}@media screen and (max-width: 1097px){.c-home-slider__arrows--mobile{display:block}}.c-home-slider__arrows--desktop{position:absolute;top:50%;display:flex;justify-content:space-between;width:100%;transform:translateY(-50%);z-index:1;padding:0 36px}@media screen and (max-width: 1097px){.c-home-slider__arrows--desktop{display:none}}.c-home-slider__arrows button{background:var(--color-darkblue);margin:0;width:48px;height:48px;padding:0;border:none;border-radius:50%;color:#fff;text-align:center;line-height:0}.c-home-slider__arrows button :focus,.c-home-slider__arrows button :active,.c-home-slider__arrows button:not([disabled]):hover{background:var(--color-red);cursor:pointer}@media screen and (max-width: 1097px){.c-home-slider__arrows button{background:#fff;color:var(--color-daadblue-background)}.c-home-slider__arrows button :focus,.c-home-slider__arrows button :active,.c-home-slider__arrows button:not([disabled]):hover{background:var(--color-red);color:#fff;cursor:pointer}}.c-home-slider__dots{display:flex;flex-direction:row-reverse;align-items:center}.is-rtl .c-home-slider__arrows{flex-direction:row-reverse}.c-header{top:0;background:var(--color-white-background);width:100%;z-index:99999}@media screen and (max-width: 1421px){.c-header{height:auto}}.c-header--landingpage{height:auto;position:relative}.c-header__wrapper{display:flex;flex-direction:column;padding-top:12px}@media screen and (max-width: 1097px){.c-header__wrapper{padding:0 18px}}@media screen and (max-width: 611px){.c-header__wrapper{padding:18px 18px 0 18px}}.c-header__wrapper--microsite{padding-top:8px}.c-header__info-wrapper{display:flex;align-items:center;margin-top:-30px}@media screen and (max-width: 1097px){.c-header__info-wrapper{position:relative;flex-direction:column;align-items:flex-start;justify-content:flex-start;margin:0}}.c-header__info-wrapper--microsite{margin:0 0 40px 0}@media screen and (max-width: 611px){.c-header__info-wrapper--microsite{margin:0 0 20px 0}}.c-header__logo{overflow:hidden;margin-left:-30px}@media screen and (max-width: 611px){.c-header__logo{margin:0 0 18px 0}}.c-header__logo--fixed-size{margin:0}.c-header__logo-image{width:auto;height:166px;display:block}@media screen and (max-width: 611px){.c-header__logo-image{width:auto;height:56px;display:block}}.c-header__logo-image-full{height:164px;width:auto;display:block}@media screen and (max-width: 611px){.c-header__logo-image-full{display:none}}@media screen and (max-width: 1097px){.c-header__logo-image-full{height:115px}}.c-header__logo-image-mobile{display:none}@media screen and (max-width: 611px){.c-header__logo-image-mobile{width:56px;height:56px;display:block}}.c-header__competence{border-left:1px solid var(--color-black);padding-left:18px;font-size:1.125em}@media screen and (max-width: 1097px){.c-header__competence{padding:18px 0;border-top:1px solid #333;border-left:none;display:block;width:100%}}.c-header__competence a{color:var(--color-anthracite);text-decoration:underline}.c-header__competence a :focus,.c-header__competence a :active,.c-header__competence a:not([disabled]):hover{color:var(--color-daadblue)}.c-header__competence a[target="_blank"]:before{content:'';display:inline-block;width:0.75em;height:0.75em;background-size:100%;background-repeat:no-repeat;margin:0 3px;background-image:url("data:image/svg+xml,%3C%3Fxml version=%271.0%27 encoding=%27UTF-8%27%3F%3E%3Csvg width=%2724px%27 height=%2724px%27 viewBox=%270 0 24 24%27 version=%271.1%27 xmlns=%27http://www.w3.org/2000/svg%27 xmlns:xlink=%27http://www.w3.org/1999/xlink%27%3E%3C%21-- Generator: Sketch 52.2 %2867145%29 - http://www.bohemiancoding.com/sketch --%3E%3Ctitle%3EIcons/pfeilextern%3C/title%3E%3Cdesc%3ECreated with Sketch.%3C/desc%3E%3Cg id=%27Icons/pfeilextern%27 stroke=%27none%27 stroke-width=%271%27 fill=%27%230060af%27 fill-rule=%27evenodd%27%3E%3Cg id=%27Group%27 transform=%27translate%28-6.000000, -5.000000%29%27%3E%3Cg id=%27Regular%27%3E%3Cpath d=%27M26.4393398,16.25 L17.2196699,7.03033009 C16.9267767,6.73743687 16.9267767,6.26256313 17.2196699,5.96966991 C17.5125631,5.6767767 17.9874369,5.6767767 18.2803301,5.96966991 L28.7803301,16.4696699 C29.0732233,16.7625631 29.0732233,17.2374369 28.7803301,17.5303301 L18.2803301,28.0303301 C17.9874369,28.3232233 17.5125631,28.3232233 17.2196699,28.0303301 C16.9267767,27.7374369 16.9267767,27.2625631 17.2196699,26.9696699 L26.4393398,17.75 L5.75,17.75 C5.33578644,17.75 5,17.4142136 5,17 C5,16.5857864 5.33578644,16.25 5.75,16.25 L26.4393398,16.25 Z%27 id=%27Combined-Shape%27 transform=%27translate%2817.000000, 17.000000%29 rotate%28-45.000000%29 translate%28-17.000000, -17.000000%29 %27/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/svg%3E%0A")}.c-header__competence a[href^="mailto:"]:before{display:none}.c-header__navigation{display:flex;justify-content:flex-end;position:relative;z-index:2}@media screen and (max-width: 611px){.c-header__navigation{margin-bottom:18px}}.c-header__navigation--microsite{margin-bottom:0}.c-header__navigation-trigger{position:absolute;right:18px;margin:0;padding:0;background:none;border:none;color:var(--color-daadblue);cursor:pointer}@media screen and (max-width: 1097px){.c-header__navigation-trigger{right:0;top:42.5px}}@media screen and (max-width: 611px){.c-header__navigation-trigger{margin-top:-9px;top:28px}}.c-header__navigation-trigger .svg-icon{width:29px;height:29px}.c-header__navigation-trigger--microsite .svg-icon{width:38px;height:38px}@media screen and (max-width: 611px){.c-header__navigation-trigger--microsite .svg-icon{width:24px;height:24px}}.c-header--sticky{position:fixed;animation-name:revealHeader;animation-iteration-count:1;animation-duration:.5s;z-index:99999;box-shadow:0px 9px 15px -10px #000;height:200px}@media screen and (max-width: 1421px){.c-header--sticky{height:auto}}.c-header--sticky .c-alert{display:none !important}.c-header--sticky .c-header__info-wrapper{display:none}@media screen and (max-width: 1421px){.c-header--sticky .c-header__info-wrapper{display:flex}}.c-header--sticky.c-header--microsite{height:auto}.c-header--sticky .c-header__info-wrapper--microsite{margin:0 0 18px 0}@media screen and (max-width: 1421px){.c-header--sticky .c-header__competence{display:none}}.c-header--sticky .c-header__navigation{margin-bottom:36px}@media screen and (max-width: 1097px){.c-header--sticky .c-header__navigation{margin-bottom:0}}@media screen and (max-width: 1097px){.c-header--sticky .c-header__navigation-trigger{right:0;top:50%;transform:translateY(-50%)}}.c-header--sticky .c-alert{display:none}@media screen and (max-width: 1421px){.c-header--sticky .c-header__language-switch,.c-header--sticky .c-header__darkmode-switch{display:none}}.c-header__search-wrapper{position:absolute;width:100%;top:100%;background-color:var(--color-white)}.c-header__search-input:focus{outline:0.125rem solid currentColor}html[data-theme="light"] .c-header__logo-image-full{height:164px;width:auto;display:block}@media screen and (max-width: 611px){html[data-theme="light"] .c-header__logo-image-full{display:none}}html[data-theme="light"] .c-header__logo-image-full--darkmode{display:none}html[data-theme="dark"] .c-header__logo-image-full--darkmode{height:164px;width:auto;display:block}@media screen and (max-width: 611px){html[data-theme="dark"] .c-header__logo-image-full--darkmode{display:none}}html[data-theme="dark"] .c-header__logo-image-full{display:none}html[data-theme="light"] .c-header__logo-image-mobile{display:none}@media screen and (max-width: 611px){html[data-theme="light"] .c-header__logo-image-mobile{width:56px;height:56px;display:block}}html[data-theme="light"] .c-header__logo-image-mobile--darkmode{display:none}html[data-theme="dark"] .c-header__logo-image-mobile--darkmode{display:none}@media screen and (max-width: 611px){html[data-theme="dark"] .c-header__logo-image-mobile--darkmode{width:56px;height:56px;display:block}}html[data-theme="dark"] .c-header__logo-image-mobile{display:none}html[data-theme="dark"] .c-header__competence a[target="_blank"]:before{background-image:url("data:image/svg+xml,%3C%3Fxml version=%271.0%27 encoding=%27UTF-8%27%3F%3E%3Csvg width=%2724px%27 height=%2724px%27 viewBox=%270 0 24 24%27 version=%271.1%27 xmlns=%27http://www.w3.org/2000/svg%27 xmlns:xlink=%27http://www.w3.org/1999/xlink%27%3E%3C%21-- Generator: Sketch 52.2 %2867145%29 - http://www.bohemiancoding.com/sketch --%3E%3Ctitle%3EIcons/pfeilextern%3C/title%3E%3Cdesc%3ECreated with Sketch.%3C/desc%3E%3Cg id=%27Icons/pfeilextern%27 stroke=%27none%27 stroke-width=%271%27 fill=%27%23fff%27 fill-rule=%27evenodd%27%3E%3Cg id=%27Group%27 transform=%27translate%28-6.000000, -5.000000%29%27%3E%3Cg id=%27Regular%27%3E%3Cpath d=%27M26.4393398,16.25 L17.2196699,7.03033009 C16.9267767,6.73743687 16.9267767,6.26256313 17.2196699,5.96966991 C17.5125631,5.6767767 17.9874369,5.6767767 18.2803301,5.96966991 L28.7803301,16.4696699 C29.0732233,16.7625631 29.0732233,17.2374369 28.7803301,17.5303301 L18.2803301,28.0303301 C17.9874369,28.3232233 17.5125631,28.3232233 17.2196699,28.0303301 C16.9267767,27.7374369 16.9267767,27.2625631 17.2196699,26.9696699 L26.4393398,17.75 L5.75,17.75 C5.33578644,17.75 5,17.4142136 5,17 C5,16.5857864 5.33578644,16.25 5.75,16.25 L26.4393398,16.25 Z%27 id=%27Combined-Shape%27 transform=%27translate%2817.000000, 17.000000%29 rotate%28-45.000000%29 translate%28-17.000000, -17.000000%29 %27/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/svg%3E%0A")}@keyframes revealHeader{from{top:-200px}to{top:0}}.is-rtl .c-header__logo{margin-left:0;margin-right:-30px}@media screen and (max-width: 611px){.is-rtl .c-header__logo{margin:0 0 18px 0}}.is-rtl .c-header__competence{border-left:none;padding-left:0;border-right:1px solid #000;padding-right:18px}@media screen and (max-width: 1097px){.is-rtl .c-header__competence{padding:18px 0;border-right:none;border-top:1px solid #333}}.is-rtl .c-header__navigation-trigger{right:initial;left:18px}.c-meta-navigation{font-size:1.125em;display:flex;flex-wrap:wrap}.c-meta-navigation a{color:var(--color-anthracite)}.c-meta-navigation a[target="_blank"]:before{content:'';display:inline-block;width:0.75em;height:0.75em;background-size:100%;background-repeat:no-repeat;margin:0 3px;background-image:url("data:image/svg+xml,%3C%3Fxml version=%271.0%27 encoding=%27UTF-8%27%3F%3E%3Csvg width=%2724px%27 height=%2724px%27 viewBox=%270 0 24 24%27 version=%271.1%27 xmlns=%27http://www.w3.org/2000/svg%27 xmlns:xlink=%27http://www.w3.org/1999/xlink%27%3E%3C%21-- Generator: Sketch 52.2 %2867145%29 - http://www.bohemiancoding.com/sketch --%3E%3Ctitle%3EIcons/pfeilextern%3C/title%3E%3Cdesc%3ECreated with Sketch.%3C/desc%3E%3Cg id=%27Icons/pfeilextern%27 stroke=%27none%27 stroke-width=%271%27 fill=%27%230060af%27 fill-rule=%27evenodd%27%3E%3Cg id=%27Group%27 transform=%27translate%28-6.000000, -5.000000%29%27%3E%3Cg id=%27Regular%27%3E%3Cpath d=%27M26.4393398,16.25 L17.2196699,7.03033009 C16.9267767,6.73743687 16.9267767,6.26256313 17.2196699,5.96966991 C17.5125631,5.6767767 17.9874369,5.6767767 18.2803301,5.96966991 L28.7803301,16.4696699 C29.0732233,16.7625631 29.0732233,17.2374369 28.7803301,17.5303301 L18.2803301,28.0303301 C17.9874369,28.3232233 17.5125631,28.3232233 17.2196699,28.0303301 C16.9267767,27.7374369 16.9267767,27.2625631 17.2196699,26.9696699 L26.4393398,17.75 L5.75,17.75 C5.33578644,17.75 5,17.4142136 5,17 C5,16.5857864 5.33578644,16.25 5.75,16.25 L26.4393398,16.25 Z%27 id=%27Combined-Shape%27 transform=%27translate%2817.000000, 17.000000%29 rotate%28-45.000000%29 translate%28-17.000000, -17.000000%29 %27/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/svg%3E%0A")}.c-meta-navigation a:hover{text-decoration:underline;color:var(--color-daadblue)}.c-meta-navigation__wrapper{display:flex;flex-direction:row;gap:20px}.c-meta-navigation__wrapper .svg-icon--twitter{height:20px;margin-top:4px}.c-meta-navigation__container{display:flex;flex-direction:row;flex-wrap:wrap;flex-grow:1;justify-content:space-between;align-items:center;gap:20px}.c-meta-navigation__links{font-size:1.125em;display:flex;flex-wrap:wrap}.c-meta-navigation__item{display:flex;flex-direction:row;align-items:center;color:var(--color-anthracite)}.c-meta-navigation__item:not(:last-child){padding-right:9px}.c-meta-navigation__item:not(:last-child)--current{font-weight:600}.c-meta-navigation__item:not(:last-child):after{display:inline-block;width:1px;height:1em;background-color:currentColor;content:"";margin-left:6px;vertical-align:sub}.c-meta-navigation__social-media{margin-top:28px}@media screen and (max-width: 611px){.c-meta-navigation__social-media{margin-top:24px}}.c-meta-navigation--no-divider .c-meta-navigation__item{margin-left:6px}.c-meta-navigation--no-divider .c-meta-navigation__item:after{display:none}.c-meta-navigation--left-divider:before{display:inline-block;width:1px;height:1em;background-color:currentColor;content:"";margin:0 18px;vertical-align:sub}.c-meta-navigation__legal{display:inline-block}.c-meta-navigation__legal img{transform:translateY(3px)}html[data-theme="light"] .c-meta-navigation__logo{width:54px;height:54px;flex-shrink:0}html[data-theme="light"] .c-meta-navigation__logo--darkmode{display:none}html[data-theme="dark"] .c-meta-navigation__logo--darkmode{width:54px;height:54px;flex-shrink:0}html[data-theme="dark"] .c-meta-navigation__logo{display:none}html[data-theme="dark"] .c-meta-navigation a[target="_blank"]:before{background-image:url("data:image/svg+xml,%3C%3Fxml version=%271.0%27 encoding=%27UTF-8%27%3F%3E%3Csvg width=%2724px%27 height=%2724px%27 viewBox=%270 0 24 24%27 version=%271.1%27 xmlns=%27http://www.w3.org/2000/svg%27 xmlns:xlink=%27http://www.w3.org/1999/xlink%27%3E%3C%21-- Generator: Sketch 52.2 %2867145%29 - http://www.bohemiancoding.com/sketch --%3E%3Ctitle%3EIcons/pfeilextern%3C/title%3E%3Cdesc%3ECreated with Sketch.%3C/desc%3E%3Cg id=%27Icons/pfeilextern%27 stroke=%27none%27 stroke-width=%271%27 fill=%27%23fff%27 fill-rule=%27evenodd%27%3E%3Cg id=%27Group%27 transform=%27translate%28-6.000000, -5.000000%29%27%3E%3Cg id=%27Regular%27%3E%3Cpath d=%27M26.4393398,16.25 L17.2196699,7.03033009 C16.9267767,6.73743687 16.9267767,6.26256313 17.2196699,5.96966991 C17.5125631,5.6767767 17.9874369,5.6767767 18.2803301,5.96966991 L28.7803301,16.4696699 C29.0732233,16.7625631 29.0732233,17.2374369 28.7803301,17.5303301 L18.2803301,28.0303301 C17.9874369,28.3232233 17.5125631,28.3232233 17.2196699,28.0303301 C16.9267767,27.7374369 16.9267767,27.2625631 17.2196699,26.9696699 L26.4393398,17.75 L5.75,17.75 C5.33578644,17.75 5,17.4142136 5,17 C5,16.5857864 5.33578644,16.25 5.75,16.25 L26.4393398,16.25 Z%27 id=%27Combined-Shape%27 transform=%27translate%2817.000000, 17.000000%29 rotate%28-45.000000%29 translate%28-17.000000, -17.000000%29 %27/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/svg%3E%0A")}.is-rtl .c-meta-navigation__item:not(:last-child){padding-right:0;padding-left:9px}.is-rtl .c-meta-navigation__item:not(:last-child):after{margin-left:0;margin-right:6px}.c-microsite__stage-container{color:#fff;padding:55px 135px 70px 135px}@media screen and (max-width: 1097px){.c-microsite__stage-container{padding:24px 20px 18px 18px}}.c-microsite__stage-background{position:absolute;width:100vw;height:100%;object-fit:cover;top:0}.c-microsite__headline{margin-bottom:33px}@media screen and (max-width: 1097px){.c-microsite__headline{margin-bottom:12px}}.c-microsite__intro{font-size:2em;font-weight:300}@media screen and (max-width: 1097px){.c-microsite__intro{font-size:1.5em;line-height:1.25}}.c-infobox{padding:18px;margin:36px 0}.c-infobox--padded{padding:48.024px}.c-infobox--full{clear:both}.c-infobox--half{width:50%;float:left;margin-right:36px}@media screen and (max-width: 1097px){.c-infobox--half{float:none;clear:both;width:100%}}.c-list-teaser{display:flex;position:relative;margin:0 -18px}@media screen and (max-width: 1097px){.c-list-teaser{display:block}}@media screen and (max-width: 611px){.c-list-teaser{margin:0 -12px}}@media screen and (max-width: 1097px){.c-list-teaser--nested{display:block}}.c-list-teaser__asset{width:25%;height:fit-content;margin:2px 18px;overflow:hidden;position:relative}@media screen and (max-width: 1097px){.c-list-teaser__asset{width:100%;margin-bottom:18px}}@media screen and (max-width: 611px){.c-list-teaser__asset{margin:0 0 18px 0}}.c-list-teaser__asset--nested{width:37.5%}@media screen and (max-width: 1097px){.c-list-teaser__asset--nested{width:100%;margin:9px 0}}.c-list-teaser__item-content{width:75%;padding:0 18px}@media screen and (max-width: 1097px){.c-list-teaser__item-content{width:100%}}.c-list-teaser__item-content--nested{width:62.5%}@media screen and (max-width: 1097px){.c-list-teaser__item-content--nested{width:100%;margin-bottom:18px}}.c-list-teaser__item-content--full{width:100%}.c-list-teaser__dateline{margin-bottom:14px}.c-list-teaser .o-image{transition:transform .5s ease}@media (prefers-reduced-motion: no-preference){.c-list-teaser :focus .o-image,.c-list-teaser :active .o-image,.c-list-teaser:not([disabled]):hover .o-image{transform:scale(1.2)}}.c-list-teaser:hover h3,.c-list-teaser:hover h4,.c-list-teaser:hover .o-more-link{color:var(--color-daadblue);text-decoration:underline}.c-list-teaser:hover h3 a,.c-list-teaser:hover h4 a,.c-list-teaser:hover .o-more-link a{color:var(--color-daadblue)}.c-list-teaser--no-hover .o-image{transition:none}@media (prefers-reduced-motion: no-preference){.c-list-teaser--no-hover :focus .o-image,.c-list-teaser--no-hover :active .o-image,.c-list-teaser--no-hover:not([disabled]):hover .o-image{transform:none}}.c-list-teaser--no-hover:hover h3,.c-list-teaser--no-hover:hover h4,.c-list-teaser--no-hover:hover .o-more-link{color:currentColor;text-decoration:none}.c-list-teaser--no-hover:hover h3 a,.c-list-teaser--no-hover:hover h4 a,.c-list-teaser--no-hover:hover .o-more-link a{color:currentColor}.c-list-teaser__individual--hover:hover{color:#0060af !important;text-decoration:underline !important}.c-logo-cta__wrapper{margin-bottom:100px;background-color:#b9326e}@media screen and (max-width: 1097px){.c-logo-cta__wrapper{margin-bottom:36px}}.c-logo-cta__container{display:flex;align-items:center;min-height:328px}@media screen and (max-width: 1097px){.c-logo-cta__container{flex-direction:column-reverse;padding:46px 44px}}.c-logo-cta__text-container{display:flex;flex-direction:column;max-width:740px}@media screen and (max-width: 1421px){.c-logo-cta__text-container{max-width:540px;text-align:center;align-items:center}}.c-logo-cta__background{position:absolute;width:100vw;height:90%;object-fit:cover;top:50%;transform:translateY(-50%)}.c-logo-cta__image{width:434px;height:434px;position:absolute;top:50%;transform:translateY(-50%);right:0}@media screen and (max-width: 1097px){.c-logo-cta__image{position:relative;top:unset;transform:unset;width:288px;height:288px;margin-bottom:36px}}.c-logo-cta__text{font-size:2.5em;line-height:44px;margin-bottom:28px}@media screen and (max-width: 1097px){.c-logo-cta__text{font-size:2em}}.c-logo-cta__button{display:flex;width:fit-content;align-items:center;gap:12px}.c-logo-cta__button .svg-icon{fill:transparent;z-index:1}.c-news-teaser__splitup{display:flex;margin:0 -18px}.c-news-teaser__splitup>div{width:50%;padding:18px}@media screen and (max-width: 1097px){.c-news-teaser__splitup>div{width:100%}}.c-news-teaser__navigation-item{border-bottom:1px solid var(--color-black);padding-bottom:9px;margin-bottom:9px}.c-news-teaser__switch{border:none;background:none;margin:0;padding:0;cursor:pointer;text-align:left;font-weight:300}.c-news-teaser__switch--active{font-weight:600}@media screen and (max-width: 1097px){.c-news-teaser__switch--active{font-weight:300}}@media screen and (max-width: 1097px){.c-news-teaser__preview{display:none}}.c-news-teaser__item{position:relative;display:flex;flex-direction:row-reverse;margin:0 -18px}.c-news-teaser__item .o-image{transition:transform .5s ease}@media (prefers-reduced-motion: no-preference){.c-news-teaser__item :focus .o-image,.c-news-teaser__item :active .o-image,.c-news-teaser__item:not([disabled]):hover .o-image{transform:scale(1.2)}}.c-news-teaser__item:hover h3,.c-news-teaser__item:hover h4,.c-news-teaser__item:hover .o-more-link{color:var(--color-daadblue);text-decoration:underline}.c-news-teaser__item:hover h3 a,.c-news-teaser__item:hover h4 a,.c-news-teaser__item:hover .o-more-link a{color:var(--color-daadblue)}.c-news-teaser__content{padding:0 18px;position:relative;flex-grow:1}.c-news-teaser__content--overview{width:100%;margin:18px 0}.c-news-teaser__content--no-asset{width:100%;margin-top:0}.c-news-teaser__asset-wrapper{position:relative;width:50%;height:fit-content;margin:0 18px;float:right;overflow:hidden;flex-shrink:0}.c-news-teaser__asset-wrapper--overview{width:100%}@media screen and (max-width: 1421px){.c-news-teaser__asset-wrapper{display:none}}@media screen and (min-width: 612px), print{.c-news-list__reverse-columns{flex-direction:row-reverse;display:flex;align-items:flex-start;justify-content:space-between}}.c-news-list__filter--label{display:block;font-size:1.125em}.c-news-list__filter--margin{margin:18px 18px 0}.c-newsroom__tabs{display:flex;flex-direction:row;list-style:none;border-bottom:1px solid #333;margin-bottom:56px}.c-newsroom__tabs-item{display:flex;font-size:1.125em;margin-bottom:0;color:#333}@media screen and (max-width: 611px){.c-newsroom__tabs-item{margin:0}}.c-newsroom__tabs-link{color:#333;padding:6px 16px;background-size:0 100%;background-repeat:no-repeat;background-image:linear-gradient(0deg, #333 7%, transparent 0);transition:background-size 400ms ease}.c-newsroom__tabs-link :focus,.c-newsroom__tabs-link :active,.c-newsroom__tabs-link:not([disabled]):hover{background-color:#cdcdcd}.c-newsroom__tabs-link.active{background-color:#e2e2e2;font-weight:600;background-size:100% 100%}.c-newsroom__list{width:1296px;margin-left:-18px}@media screen and (max-width: 1421px){.c-newsroom__list{width:1134px;margin-left:-36px}}@media screen and (max-width: 1097px){.c-newsroom__list{width:612px;margin-left:-18px}}@media screen and (max-width: 611px){.c-newsroom__list{width:100%;margin-left:0}}.c-newsroom__news-button{width:fit-content;align-self:center}.c-newsroom__item{position:relative;width:50%;padding:0 18px 36px 18px}@media screen and (max-width: 1097px){.c-newsroom__item{padding:0 9px 18px 9px;width:100%}}.c-newsroom__item-container{background:#fff;box-shadow:0 0 6px 0 rgba(0,0,0,0.12),0 3px 6px 0 rgba(0,0,0,0.12)}.c-newsroom__item-container .o-image{transition:transform .5s ease}@media (prefers-reduced-motion: no-preference){.c-newsroom__item-container :focus .o-image,.c-newsroom__item-container :active .o-image,.c-newsroom__item-container:not([disabled]):hover .o-image{transform:scale(1.2)}}.c-newsroom__item-container:hover h3,.c-newsroom__item-container:hover h4,.c-newsroom__item-container:hover .o-more-link{color:var(--color-daadblue);text-decoration:underline}.c-newsroom__item-container:hover h3 a,.c-newsroom__item-container:hover h4 a,.c-newsroom__item-container:hover .o-more-link a{color:var(--color-daadblue)}.c-newsroom__item-container--row{display:flex;flex-direction:row;flex-wrap:wrap}@media screen and (max-width: 1421px){.c-newsroom__item-container--row{flex-direction:column}}.c-newsroom__item-content{padding:18px 24px;overflow:hidden;width:100%}.c-newsroom__item-content--row{width:50%}@media screen and (max-width: 1421px){.c-newsroom__item-content--row{width:100%}}.c-newsroom__item-dateline{font-size:1.125em;line-height:1.25;margin-bottom:9px;text-transform:uppercase;font-weight:600;letter-spacing:1.5px}.c-newsroom__item-social{width:25% !important}@media screen and (max-width: 1421px){.c-newsroom__item-social{width:50% !important}}@media screen and (max-width: 611px){.c-newsroom__item-social{width:100% !important}}.c-newsroom__item--row{width:50%}@media screen and (max-width: 611px){.c-newsroom__item--row{width:100%}}.c-newsroom__asset-image--row{height:100%;object-fit:cover}.c-newsroom__asset--row{width:50%}@media screen and (max-width: 1421px){.c-newsroom__asset--row{width:100%}}.c-slide-teaser{margin:0 -18px}@media screen and (max-width: 611px){.c-slide-teaser{padding-bottom:72px}}.c-slide-teaser__headline{font-weight:600}.c-slide-teaser--single{margin:0}.c-slide-teaser__item{position:relative;background:var(--color-white-background);margin:0 18px;box-shadow:0 0 6px 0 rgba(0,0,0,0.12),0 3px 6px 0 rgba(0,0,0,0.12)}.c-slide-teaser__item .o-image{transition:transform .5s ease}@media (prefers-reduced-motion: no-preference){.c-slide-teaser__item :focus .o-image,.c-slide-teaser__item :active .o-image,.c-slide-teaser__item:not([disabled]):hover .o-image{transform:scale(1.2)}}.c-slide-teaser__item:hover h3,.c-slide-teaser__item:hover h4,.c-slide-teaser__item:hover .o-more-link{color:var(--color-daadblue);text-decoration:underline}.c-slide-teaser__item:hover h3 a,.c-slide-teaser__item:hover h4 a,.c-slide-teaser__item:hover .o-more-link a{color:var(--color-daadblue)}.c-slide-teaser__item--newsroom{margin:0 18px 36px 18px}@media screen and (max-width: 1097px){.c-slide-teaser__item--newsroom{margin:0 9px 18px 9px}}.c-slide-teaser__item.bg-white-darkmode-gray{background:var(--color-white-darkmode-gray-background)}.c-slide-teaser__asset{position:relative;overflow:hidden}.c-slide-teaser__asset-social .o-image::before{padding:0}.c-slide-teaser__asset-social .o-image__asset{position:relative;left:unset;transform:none}.c-slide-teaser__asset{position:relative}.c-slide-teaser__asset-icon{position:absolute;top:0;right:0;z-index:1;pointer-events:none}.c-slide-teaser__item-content{padding:18px 24px;overflow:hidden}.c-slide-teaser__item-content a{word-wrap:break-word;word-break:break-all}.c-slide-teaser__item-content a:hover{color:#0060af;text-decoration:underline}.c-slide-teaser__item-content p{word-break:break-word}.c-slide-teaser__navigation{display:flex;align-items:center}@media screen and (max-width: 611px){.c-slide-teaser__navigation{position:absolute;bottom:0;left:50%;transform:translateX(-50%);z-index:10}}.c-slide-teaser__navigation--center{justify-content:center}.c-slide-teaser__navigation--relative{position:relative;left:0;transform:none}.c-slide-teaser__button{color:currentColor;background:none;border:none;margin:0;padding:0;height:36px;width:32px;text-align:center;cursor:pointer}.c-slide-teaser__button .svg-icon{width:32px;height:32px}.c-slide-teaser__button--play-pause .svg-icon{width:21.33333px;height:21.33333px}.c-slide-teaser__count{font-size:66%}.c-slide-teaser__dots{display:flex;justify-content:center;align-items:center}@media screen and (max-width: 611px){.c-slide-teaser__dots{display:none}}.c-slide-teaser__dots .slick-dots button{color:var(--color-anthracite)}.c-slide-teaser--bottom-border{padding-bottom:18px;margin-bottom:18px;border-bottom:1px solid #aaa}.is-rtl .c-slide-teaser__navigation{flex-direction:row-reverse}.c-special-frontpage-teaser{display:flex;justify-content:center;align-items:center}.c-special-frontpage-teaser .o-image{width:64px;height:64px;min-width:64px}.university-ads__filter{padding:36px 18px 54px 18px}@media screen and (max-width: 611px){.university-ads__filter{padding:36px 18px}}.university-ads__filter--label{display:block;font-size:1.125em;font-weight:600}@media screen and (max-width: 611px){.university-ads__filter--button{margin-top:18px}}@media screen and (min-width: 612px), print{.university-ads__filter--button{padding-left:36px}}@media screen and (min-width: 612px), print{.is-rtl .university-ads__filter--button{padding-left:0;padding-right:36px}}.c-video{margin:36px 0}.c-video__placeholer{position:relative;background:#000}.c-video__placeholer img{display:block;width:100%;height:auto}.c-video__placeholder-wrapper--no-image:after{position:absolute;content:"";background-color:color-mix(in srgb, var(--color-darkblue-background) 80%, transparent);display:block;width:100%;height:100%;top:0}.c-video__placeholer-overlay{position:absolute;top:50%;left:50%;transform:translateX(-50%) translateY(-50%);background-color:color-mix(in srgb, var(--color-darkblue-background) 80%, transparent);width:100%;height:100%;display:flex;justify-content:space-around;align-items:center}@media screen and (max-width: 611px){.c-video__placeholer-overlay{height:200%}}.c-video__placeholer-content{padding:36px;font-size:1.25em}@media screen and (max-width: 611px){.c-video__placeholer-content{font-size:1em}}.c-video__placeholer-content a{color:inherit;text-decoration:underline}.c-video-extended__wrapper{display:flex;flex-direction:row}@media screen and (max-width: 1097px){.c-video-extended__wrapper{flex-direction:column}}.c-video-extended__container{padding-top:44px;padding-bottom:80px}@media screen and (max-width: 1097px){.c-video-extended__container{padding:36px 0}}.c-video-extended__background{position:absolute;width:100vw;height:100%;object-fit:cover;top:0}.c-video-extended__content{width:50%;color:#fff}@media screen and (max-width: 1097px){.c-video-extended__content{width:100%}}.c-video-extended__headline{font-size:2em}.c-video-extended__text{font-size:1.125em;line-height:26px}.c-video-extended--flex-reverse{flex-direction:row-reverse}@media screen and (max-width: 1097px){.c-video-extended--flex-reverse{flex-direction:column}}.c-video__revoke-consent{position:absolute;display:flex;justify-content:center;align-items:center;right:15px;top:15px;border-radius:4px;height:32px;width:32px;cursor:pointer;background:#000;background:rgba(0,0,0,0.9);z-index:2}.c-video__revoke-consent :focus,.c-video__revoke-consent :active,.c-video__revoke-consent:not([disabled]):hover{background-color:#0060af}.c-video__revoke-consent :focus button,.c-video__revoke-consent :active button,.c-video__revoke-consent:not([disabled]):hover button{background-image:url("data:image/svg+xml,%3Csvg xmlns=%27http://www.w3.org/2000/svg%27 width=%2717%27 height=%2719%27%3E%3Cg fill=%27none%27 fill-rule=%27evenodd%27 stroke=%27%23000%27 stroke-width=%271.5%27%3E%3Cpath d=%27M3.03955187,1.44552895 L14.4126979,12.9880739 C13.9813057,13.8501717 13.4159473,14.6379867 12.7380889,15.322267 L0.749994361,3.33809826 L0.749981312,2.61907388 C1.67820694,1.88925361 2.35150452,1.64301063 3.03955187,1.44552895 Z%27 transform=%27translate%28.583%29%27/%3E%3Cpath d=%27M8.05486604,0.750739731 C10.4883,0.728295766 12.885299,1.21681275 15.1026494,2.1843343 L15.3736421,8.92000739 C15.3736421,10.801577 14.7942555,12.5859916 13.7758423,14.0689026 C12.7574169,15.5518314 11.2999545,16.7332496 9.5440831,17.4087002 L8.68309079,17.739533 C8.28319328,17.89335 7.84045251,17.89335 7.44031397,17.7394404 L6.5798281,17.4088022 C4.82369133,16.7332496 3.36622894,15.5518314 2.34780353,14.0689026 C1.32939029,12.5859916 0.750003698,10.801577 0.750003698,8.92000739 L0.749987206,2.61939462 C3.24507956,1.21544161 5.63874374,0.728327286 8.05486604,0.750739731 Z%27 transform=%27translate%28.583%29%27/%3E%3C/g%3E%3C/svg%3E%0A");background-position:center;background-repeat:no-repeat}.c-video__revoke-consent-button{width:18px;height:18px;background-image:url("data:image/svg+xml,%3Csvg xmlns=%27http://www.w3.org/2000/svg%27 width=%2717%27 height=%2719%27%3E%3Cg fill=%27none%27 fill-rule=%27evenodd%27 stroke=%27%23fff%27 stroke-width=%271.5%27%3E%3Cpath d=%27M3.03955187,1.44552895 L14.4126979,12.9880739 C13.9813057,13.8501717 13.4159473,14.6379867 12.7380889,15.322267 L0.749994361,3.33809826 L0.749981312,2.61907388 C1.67820694,1.88925361 2.35150452,1.64301063 3.03955187,1.44552895 Z%27 transform=%27translate%28.583%29%27/%3E%3Cpath d=%27M8.05486604,0.750739731 C10.4883,0.728295766 12.885299,1.21681275 15.1026494,2.1843343 L15.3736421,8.92000739 C15.3736421,10.801577 14.7942555,12.5859916 13.7758423,14.0689026 C12.7574169,15.5518314 11.2999545,16.7332496 9.5440831,17.4087002 L8.68309079,17.739533 C8.28319328,17.89335 7.84045251,17.89335 7.44031397,17.7394404 L6.5798281,17.4088022 C4.82369133,16.7332496 3.36622894,15.5518314 2.34780353,14.0689026 C1.32939029,12.5859916 0.750003698,10.801577 0.750003698,8.92000739 L0.749987206,2.61939462 C3.24507956,1.21544161 5.63874374,0.728327286 8.05486604,0.750739731 Z%27 transform=%27translate%28.583%29%27/%3E%3C/g%3E%3C/svg%3E%0A");background-position:center;background-repeat:no-repeat}.c-wysiwyg div,.c-wysiwyg p{margin-bottom:36px}.c-wysiwyg h1{color:var(--color-daadblue);margin-bottom:18px;font-weight:300}.c-wysiwyg h1+p,.c-wysiwyg h1+ol,.c-wysiwyg h1+ul{margin-top:-9px}.c-wysiwyg h2{color:var(--color-daadblue);margin-bottom:18px;font-size:1.6em;line-height:1.25;font-weight:300}.c-wysiwyg h2+p,.c-wysiwyg h2+ol,.c-wysiwyg h2+ul{margin-top:-9px}.c-wysiwyg h3{color:var(--color-daadblue);margin-bottom:18px;font-size:1.2em;line-height:1.25}.c-wysiwyg h3+p,.c-wysiwyg h3+ol,.c-wysiwyg h3+ul{margin-top:-9px}.c-wysiwyg h4{font-weight:600;margin-bottom:18px}.c-wysiwyg h4+ol,.c-wysiwyg h4+ul,.c-wysiwyg h4+p{margin-top:-18px}.c-wysiwyg img{display:block;margin:0}.c-wysiwyg strong{color:var(--color-anthracite);font-weight:600}@media screen and (max-width: 611px){.c-wysiwyg .wp-caption{width:auto !important}}.c-wysiwyg .alignnone{margin:36px 0}.c-wysiwyg .alignleft{float:left;margin:9px 36px 0 0;max-width:50%}@media screen and (max-width: 611px){.c-wysiwyg .alignleft{max-width:none;margin-right:0;float:none}}.c-wysiwyg .alignleft img{width:100%;height:auto;max-width:none}.c-wysiwyg .alignright{float:right;margin:9px 0 0 36px;max-width:50%}@media screen and (max-width: 611px){.c-wysiwyg .alignright{max-width:none;margin-left:0;float:none}}.c-wysiwyg .alignright img{width:100%;height:auto;max-width:none}.c-wysiwyg .wp-caption-text{margin-top:12px;font-size:90%}.c-wysiwyg ul{list-style:initial;padding:0 0 0 36px;margin:36px 0}.c-wysiwyg ul+ul{margin:18px 18px 18px 0}.c-wysiwyg ol{padding:0 0 0 36px;margin:36px 0 36px 0}.c-wysiwyg ol+ol{margin:18px 18px 18px 0}.c-wysiwyg *[data-tooltip]{border-bottom:2px dotted #767676;text-decoration:none;cursor:help}.c-wysiwyg a{text-decoration:underline;color:currentColor}.c-wysiwyg a :focus,.c-wysiwyg a :active,.c-wysiwyg a:not([disabled]):hover{color:var(--color-daadblue-lightergrey)}.c-wysiwyg a[href]:not([target="_blank"]):before{content:'';display:inline-block;width:0.75em;height:0.75em;background-size:100%;background-repeat:no-repeat;margin:0 3px;background-image:url("data:image/svg+xml,%3C%3Fxml version=%271.0%27 encoding=%27UTF-8%27%3F%3E%3Csvg width=%2714px%27 height=%2714px%27 viewBox=%270 0 14 14%27 version=%271.1%27 xmlns=%27http://www.w3.org/2000/svg%27 xmlns:xlink=%27http://www.w3.org/1999/xlink%27%3E%3Ctitle%3EIcons/pfeilintern%3C/title%3E%3Cg id=%27Artikelseite-ASIC%27 stroke=%27none%27 stroke-width=%271%27 fill=%27none%27 fill-rule=%27evenodd%27%3E%3Cg id=%27Artikelseite-ASIC---WYSIWYG%27 transform=%27translate%28-762.000000, -5136.000000%29%27 fill=%27%230060af%27%3E%3Cg id=%27Icons/pfeilintern%27 transform=%27translate%28762.000000, 5136.437500%29%27%3E%3Cpath d=%27M7.74685922,0.128140783 L13.8718592,6.25314078 C13.9646596,6.34594115 14.007055,6.47005915 13.9990454,6.59147414 C13.9996549,6.6019098 14,6.61340884 14,6.625 C14,6.87706245 13.8367962,7.08556115 13.6245666,7.1200071 L7.74685922,12.9968592 C7.57600484,13.1677136 7.29899516,13.1677136 7.12814078,12.9968592 C6.95728641,12.8260048 6.95728641,12.5489952 7.12814078,12.3781408 L12.38,7.125 L0.4375,7.125 C0.195875422,7.125 0,6.90114237 0,6.625 C0,6.34885763 0.195875422,6.125 0.4375,6.125 L12.506,6.125 L7.12814078,0.746859217 C6.95728641,0.576004839 6.95728641,0.298995161 7.12814078,0.128140783 C7.29899516,-0.0427135944 7.57600484,-0.0427135944 7.74685922,0.128140783 Z%27 id=%27Combined-Shape%27%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/svg%3E")}.c-wysiwyg a[href][target="_blank"]:before{content:'';display:inline-block;width:0.75em;height:0.75em;background-size:100%;background-repeat:no-repeat;margin:0 3px;background-image:url("data:image/svg+xml,%3C%3Fxml version=%271.0%27 encoding=%27UTF-8%27%3F%3E%3Csvg width=%2724px%27 height=%2724px%27 viewBox=%270 0 24 24%27 version=%271.1%27 xmlns=%27http://www.w3.org/2000/svg%27 xmlns:xlink=%27http://www.w3.org/1999/xlink%27%3E%3C%21-- Generator: Sketch 52.2 %2867145%29 - http://www.bohemiancoding.com/sketch --%3E%3Ctitle%3EIcons/pfeilextern%3C/title%3E%3Cdesc%3ECreated with Sketch.%3C/desc%3E%3Cg id=%27Icons/pfeilextern%27 stroke=%27none%27 stroke-width=%271%27 fill=%27%230060af%27 fill-rule=%27evenodd%27%3E%3Cg id=%27Group%27 transform=%27translate%28-6.000000, -5.000000%29%27%3E%3Cg id=%27Regular%27%3E%3Cpath d=%27M26.4393398,16.25 L17.2196699,7.03033009 C16.9267767,6.73743687 16.9267767,6.26256313 17.2196699,5.96966991 C17.5125631,5.6767767 17.9874369,5.6767767 18.2803301,5.96966991 L28.7803301,16.4696699 C29.0732233,16.7625631 29.0732233,17.2374369 28.7803301,17.5303301 L18.2803301,28.0303301 C17.9874369,28.3232233 17.5125631,28.3232233 17.2196699,28.0303301 C16.9267767,27.7374369 16.9267767,27.2625631 17.2196699,26.9696699 L26.4393398,17.75 L5.75,17.75 C5.33578644,17.75 5,17.4142136 5,17 C5,16.5857864 5.33578644,16.25 5.75,16.25 L26.4393398,16.25 Z%27 id=%27Combined-Shape%27 transform=%27translate%2817.000000, 17.000000%29 rotate%28-45.000000%29 translate%28-17.000000, -17.000000%29 %27/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/svg%3E%0A")}.c-wysiwyg a.mailto[href^="mailto:"]:before{content:'';display:inline-block;width:0.75em;height:0.75em;background-size:100%;background-repeat:no-repeat;margin:0 3px;background-image:url("data:image/svg+xml,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22UTF-8%22%3F%3E%0A%3Csvg%20width%3D%2224px%22%20height%3D%2224px%22%20viewBox%3D%220%200%2024%2024%22%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%3E%0A%20%20%20%20%3C%21--%20Generator%3A%20Sketch%2053.1%20%2872631%29%20-%20https%3A%2F%2Fsketchapp.com%20--%3E%0A%20%20%20%20%3Ctitle%3EIcons%2Femail%3C%2Ftitle%3E%0A%20%20%20%20%3Cdesc%3ECreated%20with%20Sketch.%3C%2Fdesc%3E%0A%20%20%20%20%3Cg%20id%3D%22Icons%2Femail%22%20stroke%3D%22none%22%20stroke-width%3D%221%22%20fill%3D%22%230060af%22%20fill-rule%3D%22evenodd%22%3E%0A%20%20%20%20%20%20%20%20%3Cg%20id%3D%22Group%22%20transform%3D%22translate%280.000000%2C%204.000000%29%22%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%3Cg%20id%3D%22email-action-unread%22%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%3Cpath%20d%3D%22M2.25%2C2.56231244%20L2.25%2C14.25%20C2.25%2C14.6642136%202.58578644%2C15%203%2C15%20L21%2C15%20C21.4142136%2C15%2021.75%2C14.6642136%2021.75%2C14.25%20L21.75%2C2.56231244%20L14.4743005%2C8.1584546%20C13.0156081%2C9.2805937%2010.9843919%2C9.2805937%209.52574515%2C8.1584897%20L2.25%2C2.56231244%20Z%20M20.6708071%2C1.5%20L3.32919293%2C1.5%20L10.4403005%2C6.9695454%20C11.3598015%2C7.67689677%2012.6401985%2C7.67689677%2013.5597452%2C6.9695103%20L20.6708071%2C1.5%20Z%20M22.731932%2C0.813623721%20C22.737774%2C0.820492647%2022.7435155%2C0.827491537%2022.7491526%2C0.834619888%20C23.0623616%2C1.22120934%2023.25%2C1.71369202%2023.25%2C2.25%20L23.25%2C14.25%20C23.25%2C15.4926407%2022.2426407%2C16.5%2021%2C16.5%20L3%2C16.5%20C1.75735931%2C16.5%200.75%2C15.4926407%200.75%2C14.25%20L0.75%2C2.25%20C0.75%2C1.71369202%200.937638429%2C1.22120934%201.25084736%2C0.834619888%20C1.25648454%2C0.827491537%201.26222603%2C0.820492647%201.26806799%2C0.813623721%20C1.68078247%2C0.316540054%202.30342529%2C0%203%2C0%20L21%2C0%20C21.6965747%2C0%2022.3192175%2C0.316540054%2022.731932%2C0.813623721%20Z%22%20id%3D%22Combined-Shape%22%2F%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%3C%2Fg%3E%0A%20%20%20%20%20%20%20%20%3C%2Fg%3E%0A%20%20%20%20%3C%2Fg%3E%0A%3C%2Fsvg%3E%0A")}.c-wysiwyg a[href^="#"]{text-decoration:none}.c-wysiwyg a[href^="#"]:hover{color:var(--color-daadblue-lightergrey);text-decoration:underline}.c-wysiwyg a.download[href][target="_blank"]:before{content:'';display:inline-block;width:0.75em;height:0.75em;background-size:100%;background-repeat:no-repeat;margin:0 3px;background-image:url("data:image/svg+xml,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22UTF-8%22%3F%3E%0A%3Csvg%20width%3D%2224px%22%20height%3D%2224px%22%20viewBox%3D%220%200%2024%2024%22%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%3E%0A%20%20%20%20%3C%21--%20Generator%3A%20Sketch%2053.1%20%2872631%29%20-%20https%3A%2F%2Fsketchapp.com%20--%3E%0A%20%20%20%20%3Ctitle%3EIcons%2FDownload%3C%2Ftitle%3E%0A%20%20%20%20%3Cdesc%3ECreated%20with%20Sketch.%3C%2Fdesc%3E%0A%20%20%20%20%3Cg%20id%3D%22Icons%2FDownload%22%20stroke%3D%22none%22%20stroke-width%3D%221%22%20fill%3D%22%230060af%22%20fill-rule%3D%22evenodd%22%3E%0A%20%20%20%20%20%20%20%20%3Cg%20id%3D%22Group%22%20transform%3D%22translate%280.000000%2C%20-1.000000%29%22%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%3Cg%20id%3D%22move-down-1%22%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%3Cpath%20d%3D%22M11.25%2C17.2384166%20L11.25%2C1.71808%20C11.25%2C1.30386644%2011.5857864%2C0.96808%2012%2C0.96808%20C12.4142136%2C0.96808%2012.75%2C1.30386644%2012.75%2C1.71808%20L12.75%2C17.2384166%20L15.2306011%2C14.8570395%20C15.5294095%2C14.5701834%2016.0041844%2C14.5798727%2016.2910405%2C14.8786811%20C16.5778966%2C15.1774895%2016.5682073%2C15.6522644%2016.2693989%2C15.9391205%20L12.5193989%2C19.5391205%20C12.2291773%2C19.8177332%2011.7708227%2C19.8177332%2011.4806011%2C19.5391205%20L7.73060113%2C15.9391205%20C7.43179272%2C15.6522644%207.42210343%2C15.1774895%207.70895951%2C14.8786811%20C7.99581558%2C14.5798727%208.47059046%2C14.5701834%208.76939887%2C14.8570395%20L11.25%2C17.2384166%20Z%20M0.75%2C24.06808%20C0.335786438%2C24.06808%200%2C23.7322936%200%2C23.31808%20C0%2C22.9038664%200.335786438%2C22.56808%200.75%2C22.56808%20L23.25%2C22.56808%20C23.6642136%2C22.56808%2024%2C22.9038664%2024%2C23.31808%20C24%2C23.7322936%2023.6642136%2C24.06808%2023.25%2C24.06808%20L0.75%2C24.06808%20Z%22%20id%3D%22Shape%22%2F%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%3C%2Fg%3E%0A%20%20%20%20%20%20%20%20%3C%2Fg%3E%0A%20%20%20%20%3C%2Fg%3E%0A%3C%2Fsvg%3E%0A")}.c-wysiwyg a:has(img):before{display:none !important}.c-wysiwyg--maps-layer ul,.c-wysiwyg--maps-layer ol{padding-left:18px;margin:18px 0}html[data-theme="dark"] .c-wysiwyg a:not([target="_blank"]):not([href^="mailto:"]):before{background-image:url("data:image/svg+xml,%3C%3Fxml version=%271.0%27 encoding=%27UTF-8%27%3F%3E%3Csvg width=%2714px%27 height=%2714px%27 viewBox=%270 0 14 14%27 version=%271.1%27 xmlns=%27http://www.w3.org/2000/svg%27 xmlns:xlink=%27http://www.w3.org/1999/xlink%27%3E%3Ctitle%3EIcons/pfeilintern%3C/title%3E%3Cg id=%27Artikelseite-ASIC%27 stroke=%27none%27 stroke-width=%271%27 fill=%27none%27 fill-rule=%27evenodd%27%3E%3Cg id=%27Artikelseite-ASIC---WYSIWYG%27 transform=%27translate%28-762.000000, -5136.000000%29%27 fill=%27%23fff%27%3E%3Cg id=%27Icons/pfeilintern%27 transform=%27translate%28762.000000, 5136.437500%29%27%3E%3Cpath d=%27M7.74685922,0.128140783 L13.8718592,6.25314078 C13.9646596,6.34594115 14.007055,6.47005915 13.9990454,6.59147414 C13.9996549,6.6019098 14,6.61340884 14,6.625 C14,6.87706245 13.8367962,7.08556115 13.6245666,7.1200071 L7.74685922,12.9968592 C7.57600484,13.1677136 7.29899516,13.1677136 7.12814078,12.9968592 C6.95728641,12.8260048 6.95728641,12.5489952 7.12814078,12.3781408 L12.38,7.125 L0.4375,7.125 C0.195875422,7.125 0,6.90114237 0,6.625 C0,6.34885763 0.195875422,6.125 0.4375,6.125 L12.506,6.125 L7.12814078,0.746859217 C6.95728641,0.576004839 6.95728641,0.298995161 7.12814078,0.128140783 C7.29899516,-0.0427135944 7.57600484,-0.0427135944 7.74685922,0.128140783 Z%27 id=%27Combined-Shape%27%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/svg%3E")}html[data-theme="dark"] .c-wysiwyg a[target="_blank"]:not(.download):before{background-image:url("data:image/svg+xml,%3C%3Fxml version=%271.0%27 encoding=%27UTF-8%27%3F%3E%3Csvg width=%2724px%27 height=%2724px%27 viewBox=%270 0 24 24%27 version=%271.1%27 xmlns=%27http://www.w3.org/2000/svg%27 xmlns:xlink=%27http://www.w3.org/1999/xlink%27%3E%3C%21-- Generator: Sketch 52.2 %2867145%29 - http://www.bohemiancoding.com/sketch --%3E%3Ctitle%3EIcons/pfeilextern%3C/title%3E%3Cdesc%3ECreated with Sketch.%3C/desc%3E%3Cg id=%27Icons/pfeilextern%27 stroke=%27none%27 stroke-width=%271%27 fill=%27%23fff%27 fill-rule=%27evenodd%27%3E%3Cg id=%27Group%27 transform=%27translate%28-6.000000, -5.000000%29%27%3E%3Cg id=%27Regular%27%3E%3Cpath d=%27M26.4393398,16.25 L17.2196699,7.03033009 C16.9267767,6.73743687 16.9267767,6.26256313 17.2196699,5.96966991 C17.5125631,5.6767767 17.9874369,5.6767767 18.2803301,5.96966991 L28.7803301,16.4696699 C29.0732233,16.7625631 29.0732233,17.2374369 28.7803301,17.5303301 L18.2803301,28.0303301 C17.9874369,28.3232233 17.5125631,28.3232233 17.2196699,28.0303301 C16.9267767,27.7374369 16.9267767,27.2625631 17.2196699,26.9696699 L26.4393398,17.75 L5.75,17.75 C5.33578644,17.75 5,17.4142136 5,17 C5,16.5857864 5.33578644,16.25 5.75,16.25 L26.4393398,16.25 Z%27 id=%27Combined-Shape%27 transform=%27translate%2817.000000, 17.000000%29 rotate%28-45.000000%29 translate%28-17.000000, -17.000000%29 %27/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/svg%3E%0A")}html[data-theme="dark"] .c-wysiwyg a[href^="mailto:"]:before{background-image:url("data:image/svg+xml,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22UTF-8%22%3F%3E%0A%3Csvg%20width%3D%2224px%22%20height%3D%2224px%22%20viewBox%3D%220%200%2024%2024%22%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%3E%0A%20%20%20%20%3C%21--%20Generator%3A%20Sketch%2053.1%20%2872631%29%20-%20https%3A%2F%2Fsketchapp.com%20--%3E%0A%20%20%20%20%3Ctitle%3EIcons%2Femail%3C%2Ftitle%3E%0A%20%20%20%20%3Cdesc%3ECreated%20with%20Sketch.%3C%2Fdesc%3E%0A%20%20%20%20%3Cg%20id%3D%22Icons%2Femail%22%20stroke%3D%22none%22%20stroke-width%3D%221%22%20fill%3D%22%23fff%22%20fill-rule%3D%22evenodd%22%3E%0A%20%20%20%20%20%20%20%20%3Cg%20id%3D%22Group%22%20transform%3D%22translate%280.000000%2C%204.000000%29%22%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%3Cg%20id%3D%22email-action-unread%22%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%3Cpath%20d%3D%22M2.25%2C2.56231244%20L2.25%2C14.25%20C2.25%2C14.6642136%202.58578644%2C15%203%2C15%20L21%2C15%20C21.4142136%2C15%2021.75%2C14.6642136%2021.75%2C14.25%20L21.75%2C2.56231244%20L14.4743005%2C8.1584546%20C13.0156081%2C9.2805937%2010.9843919%2C9.2805937%209.52574515%2C8.1584897%20L2.25%2C2.56231244%20Z%20M20.6708071%2C1.5%20L3.32919293%2C1.5%20L10.4403005%2C6.9695454%20C11.3598015%2C7.67689677%2012.6401985%2C7.67689677%2013.5597452%2C6.9695103%20L20.6708071%2C1.5%20Z%20M22.731932%2C0.813623721%20C22.737774%2C0.820492647%2022.7435155%2C0.827491537%2022.7491526%2C0.834619888%20C23.0623616%2C1.22120934%2023.25%2C1.71369202%2023.25%2C2.25%20L23.25%2C14.25%20C23.25%2C15.4926407%2022.2426407%2C16.5%2021%2C16.5%20L3%2C16.5%20C1.75735931%2C16.5%200.75%2C15.4926407%200.75%2C14.25%20L0.75%2C2.25%20C0.75%2C1.71369202%200.937638429%2C1.22120934%201.25084736%2C0.834619888%20C1.25648454%2C0.827491537%201.26222603%2C0.820492647%201.26806799%2C0.813623721%20C1.68078247%2C0.316540054%202.30342529%2C0%203%2C0%20L21%2C0%20C21.6965747%2C0%2022.3192175%2C0.316540054%2022.731932%2C0.813623721%20Z%22%20id%3D%22Combined-Shape%22%2F%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%3C%2Fg%3E%0A%20%20%20%20%20%20%20%20%3C%2Fg%3E%0A%20%20%20%20%3C%2Fg%3E%0A%3C%2Fsvg%3E%0A")}html[data-theme="dark"] .c-wysiwyg .download:before{background-image:url("data:image/svg+xml,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22UTF-8%22%3F%3E%0A%3Csvg%20width%3D%2224px%22%20height%3D%2224px%22%20viewBox%3D%220%200%2024%2024%22%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%3E%0A%20%20%20%20%3C%21--%20Generator%3A%20Sketch%2053.1%20%2872631%29%20-%20https%3A%2F%2Fsketchapp.com%20--%3E%0A%20%20%20%20%3Ctitle%3EIcons%2FDownload%3C%2Ftitle%3E%0A%20%20%20%20%3Cdesc%3ECreated%20with%20Sketch.%3C%2Fdesc%3E%0A%20%20%20%20%3Cg%20id%3D%22Icons%2FDownload%22%20stroke%3D%22none%22%20stroke-width%3D%221%22%20fill%3D%22%23fff%22%20fill-rule%3D%22evenodd%22%3E%0A%20%20%20%20%20%20%20%20%3Cg%20id%3D%22Group%22%20transform%3D%22translate%280.000000%2C%20-1.000000%29%22%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%3Cg%20id%3D%22move-down-1%22%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%3Cpath%20d%3D%22M11.25%2C17.2384166%20L11.25%2C1.71808%20C11.25%2C1.30386644%2011.5857864%2C0.96808%2012%2C0.96808%20C12.4142136%2C0.96808%2012.75%2C1.30386644%2012.75%2C1.71808%20L12.75%2C17.2384166%20L15.2306011%2C14.8570395%20C15.5294095%2C14.5701834%2016.0041844%2C14.5798727%2016.2910405%2C14.8786811%20C16.5778966%2C15.1774895%2016.5682073%2C15.6522644%2016.2693989%2C15.9391205%20L12.5193989%2C19.5391205%20C12.2291773%2C19.8177332%2011.7708227%2C19.8177332%2011.4806011%2C19.5391205%20L7.73060113%2C15.9391205%20C7.43179272%2C15.6522644%207.42210343%2C15.1774895%207.70895951%2C14.8786811%20C7.99581558%2C14.5798727%208.47059046%2C14.5701834%208.76939887%2C14.8570395%20L11.25%2C17.2384166%20Z%20M0.75%2C24.06808%20C0.335786438%2C24.06808%200%2C23.7322936%200%2C23.31808%20C0%2C22.9038664%200.335786438%2C22.56808%200.75%2C22.56808%20L23.25%2C22.56808%20C23.6642136%2C22.56808%2024%2C22.9038664%2024%2C23.31808%20C24%2C23.7322936%2023.6642136%2C24.06808%2023.25%2C24.06808%20L0.75%2C24.06808%20Z%22%20id%3D%22Shape%22%2F%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%3C%2Fg%3E%0A%20%20%20%20%20%20%20%20%3C%2Fg%3E%0A%20%20%20%20%3C%2Fg%3E%0A%3C%2Fsvg%3E%0A")}.is-rtl .c-wysiwyg ul{padding:0 36px 0 0}.is-rtl .c-wysiwyg ul+ul{margin:18px 0 18px 18px}.c-quote{clear:both;padding-left:54px;position:relative;margin:36px 0}.c-quote:before{content:"„";display:block;position:absolute;left:0;top:0;color:var(--color-red);font-size:3.75rem;font-weight:bold;line-height:0}.c-quote--half{width:50%;float:left;margin:36px 36px 36px 0}@media screen and (max-width: 1097px){.c-quote--half{clear:both;float:none;width:100%}}.c-quote--half+.c-wysiwyg{margin-top:36px}.c-main-navigation{max-width:1260px;margin:0 auto;border-top:1px solid}@media screen and (max-width: 1421px){.c-main-navigation{display:none}}.c-main-navigation__wrapper{margin:0 -18px}.c-main-navigation__list{display:flex;justify-content:space-between}.c-main-navigation__main-item{margin:0;border:none;background:none;line-height:1.3;text-align:left;font-size:1.5em;font-weight:600;color:var(--color-anthracite);padding:0 18px 0 18px;display:block;min-width:130px}.c-main-navigation__main-item-text{display:block;padding:22px 0 24px 0}.c-main-navigation__main-item-text--current{border-bottom:8px solid}.c-main-navigation__sub-menu{display:none;width:100%;height:100vh;position:absolute;background:var(--color-white-background);left:0;z-index:10000;height:100vh}.c-main-navigation__sub-menu--sticky{top:200px}.c-main-navigation__sub-menu--sticky .c-main-navigation__sub-menu-inner{height:calc(100vh - 200px)}.c-main-navigation__sub-menu-inner{max-width:1260px;margin:0 auto;height:calc(100vh - 316px);overflow-y:scroll;overflow-x:hidden;-ms-overflow-style:none;scrollbar-width:none}.c-main-navigation__sub-menu-inner::-webkit-scrollbar{background:transparent;width:0px}.c-main-navigation__sub-menu-items{margin:54px -18px 36px -18px}.c-main-navigation__sub-menu-items>li{width:50%;padding:0 18px}.c-main-navigation__sub-menu-items>li .svg-icon{font-size:66%;vertical-align:baseline}.c-main-navigation__sub-menu-headline--left{float:left;clear:left}.c-main-navigation__sub-menu-headline--right{display:inline-block}.c-main-navigation__sub-menu-close{display:flex;justify-content:flex-end}.c-main-navigation__sub-menu-close button{border:none;margin:0;padding:0;background:none;cursor:pointer}.is-rtl .c-main-navigation__sub-menu-items>li .svg-icon{transform:scaleX(-1)}.c-mobile-navigation{display:none}@media screen and (max-width: 1421px){.c-mobile-navigation{min-height:200px;height:calc(100vh - 185px);overflow-y:scroll}}@media screen and (max-width: 1097px){.c-mobile-navigation{height:calc(100vh - 306px)}}@media screen and (max-width: 611px){.c-mobile-navigation{height:calc(100vh - 234px)}}.c-mobile-navigation__list-item{display:flex;justify-content:space-between;padding:6px;border-bottom:1px solid #767676}.c-mobile-navigation__list-item .svg-icon{font-size:66%;vertical-align:baseline}.c-mobile-navigation__list-item a{padding-right:9px}.c-mobile-navigation__list-item--depth-2{padding:6px 6px 6px 18px}.c-mobile-navigation__submenu-trigger{margin:0;padding:0;background:none;border:none;cursor:pointer}.c-mobile-navigation__submenu-trigger img{width:24px;height:24px;min-width:24px}.c-mobile-navigation__submenu{display:none}@media screen and (max-width: 1421px){body.with-sticky-header--sticky .c-mobile-navigation{min-height:200px;height:calc(100vh - 185px);overflow-y:scroll}}@media screen and (max-width: 1097px){body.with-sticky-header--sticky .c-mobile-navigation{height:calc(100vh - 215px)}}@media screen and (max-width: 611px){body.with-sticky-header--sticky .c-mobile-navigation{height:calc(100vh - 125px)}}.c-locations__map-wrapper{position:relative;padding-top:75%;width:100%;overflow:hidden}@media screen and (max-width: 611px){.c-locations__map-wrapper{padding-top:125%}}.c-locations__placeholer-overlay{position:absolute;top:50%;left:50%;transform:translateX(-50%) translateY(-50%);background-color:color-mix(in srgb, var(--color-darkblue-background) 80%, transparent);width:100%;height:100%;display:flex;justify-content:space-around;align-items:center;z-index:1}.c-locations__placeholer-content{padding:36px}.c-locations__placeholer-content a{color:inherit;text-decoration:underline}.c-locations__placeholer-content a:hover{color:var(--color-daadblue-lightergrey)}.c-locations__preview{position:absolute;top:50%;left:50%;transform:translateX(-50%) translateY(-50%);width:auto;height:100%;max-width:none}.c-locations__map{position:absolute;top:50%;left:50%;width:100%;height:100%;transform:translate(-50%, -50%)}.c-locations__button-revoke-consent{display:none;position:absolute;margin:10px;padding:0;bottom:0;background-color:#fff;z-index:1000;width:34px;height:34px;justify-content:center;align-items:center;cursor:pointer}.c-locations__button-revoke-consent .svg-icon{fill:transparent;margin-top:0}.c-locations__button-revoke-consent:hover{background-color:#f4f4f4}.c-contacts{margin-bottom:36px}.c-contacts__map-wrapper{position:relative;padding-top:66.66%;width:100%;overflow:hidden}@media screen and (max-width: 611px){.c-contacts__map-wrapper{padding-top:125%}}.c-contacts__placeholer-overlay{position:absolute;top:50%;left:50%;transform:translateX(-50%) translateY(-50%);background-color:color-mix(in srgb, var(--color-darkblue-background) 80%, transparent);width:100%;height:100%;display:flex;justify-content:space-around;align-items:center;z-index:1}.c-contacts__placeholer-overlay a:hover{color:var(--color-daadblue-lightergrey)}.c-contacts__placeholer-content{padding:36px}.c-contacts__placeholer-content a{color:inherit;text-decoration:underline}.c-contacts__preview{position:absolute;top:50%;left:50%;transform:translateX(-50%) translateY(-50%);width:auto;height:100%;max-width:none}.c-contacts__map{position:absolute;top:50%;left:50%;width:100%;height:100%;transform:translate(-50%, -50%)}.c-contacts__filters-list{display:flex;flex-wrap:wrap;font-size:1.5em}.c-contacts__filters-item{padding:0 12px 0 0;border-right:2px solid var(--color-daadblue);margin-right:12px}.c-contacts__filters-item input{position:absolute;height:0;width:0;margin-left:-9999px}.c-contacts__filters-item input+span{color:var(--color-daadblue);font-weight:600;cursor:pointer}.c-contacts__filters-item input:focus ~ span{outline:1px auto;outline:1px auto -webkit-focus-ring-color}.c-contacts__filters-item input[disabled]+span{color:#767676;font-weight:normal;cursor:not-allowed}.c-contacts__filters-item input:checked+span{color:var(--color-anthracite)}.c-contacts__filters-legend-icon{fill:var(--color-darkblue-white)}.c-share__button{border-radius:50%;width:30px;height:30px;border:1px solid var(--color-anthracite);text-align:center;line-height:36px;color:var(--color-anthracite);margin:0 0 0 9px}.c-share__button:hover{color:var(--color-daadblue)}.c-share__button .svg-icon--linkedin{margin-left:3.6px}.is-rtl .c-share__button{margin:0 9px 0 0}.c-timeline{display:flex;flex-direction:row;margin-top:77px}@media screen and (max-width: 1097px){.c-timeline{margin-left:11.5px;margin-top:41px;margin-bottom:0}}.c-timeline-content{margin-bottom:108px;padding-left:36px}@media screen and (max-width: 1097px){.c-timeline-content{margin-bottom:36px;padding-left:0}}.c-timeline__stage-container{color:#fff;padding:33px 156px 81px 156px}@media screen and (max-width: 1097px){.c-timeline__stage-container{padding:18px 27px 29px 31px}}.c-timeline__stage-background{position:absolute;width:100vw;height:100%;object-fit:cover;top:0}.c-timeline__stage-background-color--blue{background-color:#143957}.c-timeline__stage-headline{font-size:3.5em;margin-bottom:36px}@media screen and (max-width: 1097px){.c-timeline__stage-headline{font-size:2em;margin-bottom:9px}}.c-timeline__stage-intro{font-size:2em}@media screen and (max-width: 1097px){.c-timeline__stage-intro{font-size:1.5em;line-height:30px}}.c-timeline__sidebar{padding-top:36px;padding-bottom:0;position:relative;width:287px;flex-shrink:0}@media screen and (max-width: 1097px){.c-timeline__sidebar{width:45px}}.c-timeline__line{border-left:2px solid #000;display:block;height:100%}.c-timeline__indicator{display:flex;position:sticky;margin-left:-23px;margin-top:-30.66667px;top:240px;z-index:3}@media screen and (max-width: 611px){.c-timeline__indicator{top:180px}}.c-timeline__indicator-arrow{display:none}.c-timeline__indicator-next-link{border-radius:50%;box-shadow:0 0 0 3px #fff,0 0 0 5px #0060af;background:#0060af;width:46px;height:46px;display:flex;justify-content:center;align-items:center;cursor:pointer}.c-timeline__indicator-headline{position:relative;font-size:2em;color:#0060af;display:flex;flex-direction:row;justify-content:end;width:100%}@media screen and (max-width: 1097px){.c-timeline__indicator-headline{display:none !important}}.c-timeline__indicator-headline:before{content:"";border-top:2px solid #000;display:block;flex-grow:1;position:relative;top:50%}.c-timeline__indicator-headline span{flex-shrink:0}.c-timeline__indicator button{border-radius:50%;box-shadow:0 0 0 3px #fff,0 0 0 5px #0060af;background:#0060af;z-index:3;padding:0;border:none;outline:none;position:relative;width:46px;height:46px;display:flex;justify-content:center;align-items:center;flex-shrink:0;cursor:pointer}.c-timeline__indicator .svg-icon{color:#fff;position:absolute;margin-top:0}@media screen and (max-width: 1421px){.c-timeline__section{max-width:612px}}@media screen and (max-width: 1097px){.c-timeline__section{max-width:480px}}@media screen and (max-width: 611px){.c-timeline__section{max-width:260px}}.c-timeline__section-headline{margin-left:-325px;text-align:right;width:294.66667px;position:relative;font-size:2em;top:6px}@media screen and (max-width: 1097px){.c-timeline__section-headline{margin-left:-45px;top:0px !important;width:fit-content}}.c-timeline__section-headline:before{content:"";border-top:2px solid #000;display:block;width:100%;position:absolute;top:50%}.c-timeline__section-headline:after{content:"";background:#000;display:block;width:23px;height:23px;position:absolute;top:50%;margin-top:-9.5px;left:-8.5px;border-radius:50%;box-shadow:0 0 0 3.83333px #fff}.c-timeline__section-headline-placeholder{position:absolute;left:1px;top:23px}@media screen and (max-width: 1097px){.c-timeline__section-headline-placeholder{display:none !important}}.c-timeline__section-headline-placeholder:after{content:"";background:#000;display:block;width:23px;height:23px;position:absolute;top:50%;margin-top:-9.5px;left:-9.5px;border-radius:50%;box-shadow:0 0 0 3.83333px #fff}.c-timeline__section-headline span{background:#fff;display:inline-block;padding:0 6px;z-index:2;position:relative;line-height:0.75}@media screen and (max-width: 1097px){.c-timeline__section-headline span{margin-left:38px}}@media screen and (max-width: 611px){.c-timeline__section-headline--last{top:-18px !important}}.c-timeline__section-headline--active{position:absolute;color:#0060af}.c-timeline__section-headline--dot-only:before{display:none}.c-timeline__section-headline--dot-only:after{margin-top:0}.c-timeline__section-next-item{display:flex;align-items:center;justify-content:center;text-align:right;position:relative;top:-24px;left:-2px}@media screen and (max-width: 1097px){.c-timeline__section-next-item{margin-left:11.5px}}.c-timeline__section-next-item-button{display:flex;align-items:center}.c-timeline__section-next-item--last{top:0;width:0;margin-bottom:36px}.c-timeline__section-next-item:before{content:"";border-top:2px solid #000;display:block;width:50%;position:absolute;top:50%;left:0}.c-timeline__section-next-item:after{content:"";background:#000;display:block;width:23px;height:23px;position:absolute;top:50%;margin-top:-9.5px;left:-8.5px;border-radius:50%;box-shadow:0 0 0 3.83333px #fff}.c-timeline__section-content{margin-top:36px}@media screen and (max-width: 611px){.c-timeline__section-content{margin-top:18px}}.c-timeline__scroll-spy{list-style:none;margin:0;padding:0;position:absolute;left:108px;top:1px;background-color:#fff;z-index:3}@media screen and (max-width: 1097px){.c-timeline__scroll-spy{left:64px;background-color:transparent}}.c-timeline__scroll-spy-item{display:block;width:0;transition:width .15s;overflow:hidden}.c-timeline__scroll-spy-item--open{width:150px}.c-timeline__scroll-spy-item-link{display:block;background:#e2e2e2;padding:3.27273px 18px;line-height:1.3;width:150px;color:#333;margin:4.5px 0;border-radius:36px;box-shadow:0px 0px 0px 3.83333px #fff;font-size:1.25em;line-height:32px}@media screen and (max-width: 1097px){.c-timeline__scroll-spy-item-link{box-shadow:none}}.c-timeline__scroll-spy-item-link--active{background:#0060af;color:#fff}.c-timeline__navigation-section{top:0;z-index:1000}.c-timeline__navigation-section--sticky{position:sticky}.c-timeline__navigation-wrapper{display:flex;flex-direction:row;justify-content:center;padding:21px}@media screen and (max-width: 611px){.c-timeline__navigation-wrapper{padding:10px 56px}}.c-timeline__navigation-wrapper .slick-disabled{background:#aaa;color:#333;border:1px solid #aaa;pointer-events:none}.c-timeline__navigation-wrapper .slick-slide div{position:relative}.c-timeline__navigation-track{width:600px}@media screen and (max-width: 611px){.c-timeline__navigation-track{width:100%}}.c-timeline__navigation-item{margin-top:4px;display:flex;justify-content:center;align-items:center;font-size:1.5em;width:100% !important}.c-timeline__navigation-item a{color:#fff;display:flex;flex-direction:column;align-items:center;gap:18px;padding-top:7.5px}.c-timeline__navigation-item a:before{content:"";background:#fff;display:block;width:23px;height:23px;top:50%;border-radius:50%}.c-timeline__navigation-item a:after{content:"";border-top:1px solid #fff;display:block;width:100%;position:absolute;top:23px;left:50%}.c-timeline__navigation-item a:hover{text-decoration:underline}.c-timeline__navigation-item a:hover:before{content:"";background:#fff;display:block;width:23px;height:23px;top:50%;border-radius:50%;box-shadow:0 0 0 3px #00325f,0 0 0 5px #fff;z-index:3}.c-timeline__navigation-item span{color:#fff;display:flex;flex-direction:column;align-items:center;gap:18px;padding-top:7.5px;text-decoration:underline}.c-timeline__navigation-item span:before{content:"";background:#fff;display:block;width:23px;height:23px;top:50%;border-radius:50%;box-shadow:0 0 0 3px #00325f,0 0 0 5px #fff,0 0 0 8px #00325f,0 0 0 10px #fff;z-index:3}.c-timeline__navigation-item span:after{content:"";border-top:1px solid #fff;display:block;width:100%;position:absolute;top:23px;left:50%}.c-timeline__navigation-item--hide-line a:after,.c-timeline__navigation-item--hide-line span:after{content:"";display:none}.c-timeline__navigation-button{background:#fff;display:flex;justify-content:center;align-items:center;width:36px;height:36px;position:relative;border-radius:50%;border:1px solid #fff;margin-top:4.5px;flex-shrink:0;cursor:pointer}.c-timeline__navigation-button .svg-icon{margin-top:0;flex-shrink:0}.c-timeline__navigation-button:hover{background:#0060af;color:#fff;border:1px solid #0060af}.c-timeline .c-teaser-list,.c-timeline .c-employee-repeater{width:100%;left:unset}.c-timeline .c-teaser-list .container,.c-timeline .c-employee-repeater .container{margin:0;padding:0;width:100%}.c-timeline .c-teaser-list h3,.c-timeline .c-employee-repeater h3{color:#0060af;font-size:1.5em;line-height:1.25;text-transform:none;font-weight:400;border-bottom:unset}.c-timeline .c-teaser-list__asset,.c-timeline .c-employee-repeater__asset{width:180px;height:180px;min-width:unset;flex-shrink:0}@media screen and (max-width: 1097px){.c-timeline .c-teaser-list__asset,.c-timeline .c-employee-repeater__asset{height:auto;margin:0 auto 18px auto}}@media screen and (max-width: 1097px){.c-timeline .c-teaser-list__wrapper,.c-timeline .c-employee-repeater__wrapper{display:block}}.c-timeline .c-teaser-list__container,.c-timeline .c-employee-repeater__container{padding:0}.c-timeline .c-wysiwyg div{width:auto !important}@media screen and (max-width: 1097px){.c-timeline .c-quote{margin:18px 0;font-size:.75em;padding-left:24px}}@media screen and (max-width: 1097px){.c-timeline .c-quote:before{font-size:2.5em;top:4px}}.c-to-top{bottom:18px;right:5%;z-index:9999}.c-to-top a{display:block;width:3.75rem;height:3.75rem;color:#fff;background:var(--color-daadgray);border-radius:50%;position:relative}.c-to-top a :focus,.c-to-top a :active,.c-to-top a:not([disabled]):hover{background:var(--color-red)}@media screen and (max-width: 611px){.c-to-top a{width:2.75rem;height:2.75rem;font-size:1.25em}}.c-to-top a:hover{background:var(--color-blue-gray) !important}.c-to-top a:hover :focus .svg-icon,.c-to-top a:hover :active .svg-icon,.c-to-top a:hover:not([disabled]):hover .svg-icon{animation:moveUpDown calc(1s * 1) linear 5}.c-to-top a:active .svg-icon{background:transparent !important}.c-to-top a:focus{outline-offset:-0.25rem;outline:0.125rem solid currentColor}.c-to-top .svg-icon{position:absolute;left:50%;top:45%;transform:translateY(-50%) translateX(-50%) rotate(270deg)}@media screen and (max-width: 611px){.c-to-top .svg-icon{width:1.375rem;height:1.375rem}}.is-rtl .c-to-top{right:initial;left:5%}.c-social-feed__items{margin:0 -18px}.c-social-feed__item{width:33.333%}.c-social-feed__item-icon{position:absolute;top:-14px;right:-20px;z-index:1000;color:#fff;background:var(--color-daadblue-background);width:36px;height:36px;overflow:hidden;text-align:center}.c-social-feed__item-icon--thumbnail{top:4px;right:4px}.c-social-feed__item-icon .svg-icon{display:inline-block;margin-top:6px}.c-social-feed__item-info{display:flex;align-items:center;margin-bottom:18px;z-index:1}.c-social-feed__item-info-headline{font-weight:300;font-size:1.5em}.c-social-feed__item-info-headline--newsroom{font-size:1.125em;font-weight:600;padding-right:18px;display:inline-block}.c-social-feed__item-profile{width:64px;height:64px;margin-right:18px;flex-shrink:0}.c-social-feed__item-content a{color:var(--color-daadblue)}.c-social-feed__more{background:none;padding:0;border:none;cursor:pointer;color:var(--color-black)}.c-social-feed.bg-darkblue .c-social-feed__more{color:#fff}.c-social-feed.bg-darkblue .c-social-feed__more .svg-icon{color:#fff}.is-rtl .c-social-feed__item-icon{right:initial;left:4px}.is-rtl .c-social-feed__item-profile{margin-right:0;margin-left:18px}.c-scholarships__scholarship-info{display:flex;flex-wrap:wrap}.c-scholarships__scholarship-info dt{width:22%;margin-bottom:12px}@media screen and (max-width: 1097px){.c-scholarships__scholarship-info dt{width:100%}}.c-scholarships__scholarship-info dd{width:78%;margin-bottom:12px}@media screen and (max-width: 1097px){.c-scholarships__scholarship-info dd{width:100%;margin-bottom:18px;padding-left:36px}}.c-scholarships__scholarship-info svg{flex-shrink:0}.c-scholarships__application{align-self:center}.c-scholarships__scholarship{border-bottom:1px solid #000;margin-bottom:36px}.c-scholarships__scholarship-wysiwyg p{margin-bottom:12px}.c-scholarships__scholarship-wysiwyg ul{margin:0 0 12px 0;padding-left:18px}.c-scholarships__buttons .o-button,.c-scholarships__buttons #fbuilder .pbreak .pbPrevious,#fbuilder .pbreak .c-scholarships__buttons .pbPrevious,.c-scholarships__buttons #fbuilder .pbreak .pbNext,#fbuilder .pbreak .c-scholarships__buttons .pbNext,.c-scholarships__buttons #fbuilder .pbSubmit,#fbuilder .c-scholarships__buttons .pbSubmit{margin-right:18px}@media screen and (max-width: 1097px){.c-scholarships__buttons .o-button,.c-scholarships__buttons #fbuilder .pbreak .pbPrevious,#fbuilder .pbreak .c-scholarships__buttons .pbPrevious,.c-scholarships__buttons #fbuilder .pbreak .pbNext,#fbuilder .pbreak .c-scholarships__buttons .pbNext,.c-scholarships__buttons #fbuilder .pbSubmit,#fbuilder .c-scholarships__buttons .pbSubmit{display:block;margin-bottom:18px}}.c-scholarships__details a[href*="/information-for-scholarship-applicants"],.c-scholarships__details a[href*="/hinweise-daad-stipendien"],.c-scholarships__details a[href*="/de/studieren-und-forschen-in-deutschland/stipendien-finden/wichtige-hinweise-zu-daad-stipendien/"],.c-scholarships__details a[href*="/de/im-ausland-studieren-forschen-lehren/stipendien-finanzierung/wichtige-hinweise-zu-daad-stipendien/"],.c-scholarships__details a[href*="/de/in-deutschland-studieren/stipendien/hinweise-daad-stipendien/"],.c-scholarships__details a[href*="/en/studying-in-germany/scholarships/information-for-scholarship-applicants/"],.c-scholarships__details a[href*="/en/study-and-research-in-germany/scholarships/important-information-for-scholarship-applicants/"]{background:var(--color-lightblue);display:inline-block;padding:2px 6px}.c-scholarships__details .important-information{padding:18px;border:4px solid #1E96D2}.c-scholarships__details .important-information div{margin:0;display:flex;align-items:center}.c-scholarships__details .important-information div:before{content:"";display:block;background-image:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIzNCIgaGVpZ2h0PSIzNCIgdmlld0JveD0iMCAwIDM0IDM0IiBmaWxsPSJub25lIj4KPHBhdGggZD0iTTIxLjU3MTYgMjQuNDY2N1YzMC44NjY3QzIxLjU3MTYgMzEuNDMyNSAyMS4zMzA4IDMxLjk3NTEgMjAuOTAyMSAzMi4zNzUyQzIwLjQ3MzQgMzIuNzc1MiAxOS44OTIxIDMzIDE5LjI4NTkgMzNIMTQuNzE0NEMxNC4xMDgyIDMzIDEzLjUyNjggMzIuNzc1MiAxMy4wOTgyIDMyLjM3NTJDMTIuNjY5NSAzMS45NzUxIDEyLjQyODcgMzEuNDMyNSAxMi40Mjg3IDMwLjg2NjdWMjQuNDY2NyIgc3Ryb2tlPSIjMzMzMzMzIiBzdHJva2Utd2lkdGg9IjEuNSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIiBzdHJva2UtbGluZWpvaW49InJvdW5kIi8+CjxwYXRoIGQ9Ik0xMi40Mjg3IDI4LjczMzNIMjEuNTcxNiIgc3Ryb2tlPSIjMzMzMzMzIiBzdHJva2Utd2lkdGg9IjEuNSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIiBzdHJva2UtbGluZWpvaW49InJvdW5kIi8+CjxwYXRoIGQ9Ik0xNyAxVjMuMTMzMzMiIHN0cm9rZT0iIzMzMzMzMyIgc3Ryb2tlLXdpZHRoPSIxLjUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCIgc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCIvPgo8cGF0aCBkPSJNMSAxNS45MzMzSDMuMjg1NzIiIHN0cm9rZT0iIzMzMzMzMyIgc3Ryb2tlLXdpZHRoPSIxLjUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCIgc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCIvPgo8cGF0aCBkPSJNNC40Mjg3MSA1LjI2NjY2TDYuMTA0OSA2Ljc3NDIyIiBzdHJva2U9IiMzMzMzMzMiIHN0cm9rZS13aWR0aD0iMS41IiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS1saW5lam9pbj0icm91bmQiLz4KPHBhdGggZD0iTTMyLjk5OTYgMTUuOTMzM0gzMC43MTM5IiBzdHJva2U9IiMzMzMzMzMiIHN0cm9rZS13aWR0aD0iMS41IiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS1saW5lam9pbj0icm91bmQiLz4KPHBhdGggZD0iTTI5LjU3MTcgNS4yNjY2NkwyNy44OTU1IDYuNzc0MjIiIHN0cm9rZT0iIzMzMzMzMyIgc3Ryb2tlLXdpZHRoPSIxLjUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCIgc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCIvPgo8cGF0aCBkPSJNMTIuNDI4NyAxNS4yMjIyQzEzLjAzNDkgMTUuMjIyMiAxMy42MTYzIDE1LjQ0NyAxNC4wNDUgMTUuODQ3MUMxNC40NzM2IDE2LjI0NzEgMTQuNzE0NCAxNi43ODk4IDE0LjcxNDQgMTcuMzU1NlYyNC40NjY3IiBzdHJva2U9IiMzMzMzMzMiIHN0cm9rZS13aWR0aD0iMS41IiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS1saW5lam9pbj0icm91bmQiLz4KPHBhdGggZD0iTTE5LjI4NjEgMjQuNDY2N1YxNy4zNTU2QzE5LjI4NjEgMTYuNzg5OCAxOS41MjY5IDE2LjI0NzEgMTkuOTU1NiAxNS44NDcxQzIwLjM4NDMgMTUuNDQ3IDIwLjk2NTYgMTUuMjIyMiAyMS41NzE4IDE1LjIyMjIiIHN0cm9rZT0iIzMzMzMzMyIgc3Ryb2tlLXdpZHRoPSIxLjUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCIgc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCIvPgo8cGF0aCBkPSJNMTIuMzA3MSAyNC40NjY3SDIxLjY5MzhDMjMuMzkzMSAyMy42ODExIDI0LjgxOTggMjIuNDYzMSAyNS44MDkzIDIwLjk1MzJDMjYuNzk4OCAxOS40NDMzIDI3LjMxMDggMTcuNzAzMSAyNy4yODYxIDE1LjkzMzNDMjcuMjM5MiAxMy40MDEgMjYuMTQwNCAxMC45ODQ2IDI0LjIyMTUgOS4xOTM2NEMyMi4zMDI3IDcuNDAyNzEgMTkuNzEzNyA2LjM3NzIgMTcuMDAwNCA2LjMzMzM0QzE0LjI4NzIgNi4zNzcyIDExLjY5ODIgNy40MDI3MSA5Ljc3OTMyIDkuMTkzNjRDNy44NjA0NyAxMC45ODQ2IDYuNzYxNzEgMTMuNDAxIDYuNzE0NzIgMTUuOTMzM0M2LjY5MDA4IDE3LjcwMzEgNy4yMDIwNSAxOS40NDMzIDguMTkxNTYgMjAuOTUzMkM5LjE4MTA2IDIyLjQ2MzEgMTAuNjA3OCAyMy42ODExIDEyLjMwNzEgMjQuNDY2N1oiIHN0cm9rZT0iIzMzMzMzMyIgc3Ryb2tlLXdpZHRoPSIxLjUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCIgc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCIvPgo8L3N2Zz4=);background-repeat:no-repeat;background-size:contain;min-width:32px;height:32px;margin:0 12px 0 0}.c-scholarships__details .important-information img{display:none}.c-scholarships__important-information{padding:18px;border:4px solid #1E96D2;display:flex;align-items:center}.c-scholarships__important-information-icon{margin:0 12px 0 0;display:block;min-width:32px;min-height:32px}html[data-theme="dark"] .important-information div:before{background-image:url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiIHN0YW5kYWxvbmU9Im5vIj8+CjwhRE9DVFlQRSBzdmcgUFVCTElDICItLy9XM0MvL0RURCBTVkcgMS4xLy9FTiIgImh0dHA6Ly93d3cudzMub3JnL0dyYXBoaWNzL1NWRy8xLjEvRFREL3N2ZzExLmR0ZCI+Cjxzdmcgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDM0IDM0IiB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHhtbDpzcGFjZT0icHJlc2VydmUiIHhtbG5zOnNlcmlmPSJodHRwOi8vd3d3LnNlcmlmLmNvbS8iIHN0eWxlPSJmaWxsLXJ1bGU6ZXZlbm9kZDtjbGlwLXJ1bGU6ZXZlbm9kZDtzdHJva2UtbGluZWpvaW46cm91bmQ7c3Ryb2tlLW1pdGVybGltaXQ6MjsiPgogICAgPHBhdGggZD0iTTIwLjgyMiwyNC40NjdDMjAuODIyLDI0LjA1MyAyMS4xNTgsMjMuNzE3IDIxLjU3MiwyMy43MTdDMjEuOTg2LDIzLjcxNyAyMi4zMjIsMjQuMDUzIDIyLjMyMiwyNC40NjdMMjIuMzIyLDMwLjg2N0MyMi4zMjIsMzEuNjM3IDIxLjk5OCwzMi4zNzkgMjEuNDE0LDMyLjkyNEMyMC44NDksMzMuNDUgMjAuMDg0LDMzLjc1IDE5LjI4NiwzMy43NUwxNC43MTQsMzMuNzVDMTMuOTE2LDMzLjc1IDEzLjE1MSwzMy40NSAxMi41ODYsMzIuOTI0QzEyLjAwMiwzMi4zNzggMTEuNjc5LDMxLjYzNyAxMS42NzksMzAuODY3TDExLjY3OSwyNC40NjdDMTEuNjc5LDI0LjA1MyAxMi4wMTUsMjMuNzE3IDEyLjQyOSwyMy43MTdDMTIuODQzLDIzLjcxNyAxMy4xNzksMjQuMDUzIDEzLjE3OSwyNC40NjdMMTMuMTc5LDMwLjg2N0MxMy4xNzksMzEuMjI4IDEzLjMzNiwzMS41NzIgMTMuNjEsMzEuODI3QzEzLjkwMywzMi4xIDE0LjMwMSwzMi4yNSAxNC43MTQsMzIuMjVMMTkuMjg2LDMyLjI1QzE5LjcsMzIuMjUgMjAuMDk4LDMyLjEgMjAuMzksMzEuODI3QzIwLjY2NCwzMS41NzIgMjAuODIyLDMxLjIyOCAyMC44MjIsMzAuODY3TDIwLjgyMiwyNC40NjdaIiBzdHlsZT0iZmlsbDp3aGl0ZTsiLz4KICAgIDxwYXRoIGQ9Ik0xMi40MjksMjkuNDgzQzEyLjAxNSwyOS40ODMgMTEuNjc5LDI5LjE0NyAxMS42NzksMjguNzMzQzExLjY3OSwyOC4zMTkgMTIuMDE1LDI3Ljk4MyAxMi40MjksMjcuOTgzTDIxLjU3MiwyNy45ODNDMjEuOTg2LDI3Ljk4MyAyMi4zMjIsMjguMzE5IDIyLjMyMiwyOC43MzNDMjIuMzIyLDI5LjE0NyAyMS45ODYsMjkuNDgzIDIxLjU3MiwyOS40ODNMMTIuNDI5LDI5LjQ4M1oiIHN0eWxlPSJmaWxsOndoaXRlOyIvPgogICAgPHBhdGggZD0iTTE2LjI1LDFDMTYuMjUsMC41ODYgMTYuNTg2LDAuMjUgMTcsMC4yNUMxNy40MTQsMC4yNSAxNy43NSwwLjU4NiAxNy43NSwxTDE3Ljc1LDMuMTMzQzE3Ljc1LDMuNTQ3IDE3LjQxNCwzLjg4MyAxNywzLjg4M0MxNi41ODYsMy44ODMgMTYuMjUsMy41NDcgMTYuMjUsMy4xMzNMMTYuMjUsMVoiIHN0eWxlPSJmaWxsOndoaXRlOyIvPgogICAgPHBhdGggZD0iTTEsMTYuNjgzQzAuNTg2LDE2LjY4MyAwLjI1LDE2LjM0NyAwLjI1LDE1LjkzM0MwLjI1LDE1LjUxOSAwLjU4NiwxNS4xODMgMSwxNS4xODNMMy4yODYsMTUuMTgzQzMuNywxNS4xODMgNC4wMzYsMTUuNTE5IDQuMDM2LDE1LjkzM0M0LjAzNiwxNi4zNDcgMy43LDE2LjY4MyAzLjI4NiwxNi42ODNMMSwxNi42ODNaIiBzdHlsZT0iZmlsbDp3aGl0ZTsiLz4KICAgIDxwYXRoIGQ9Ik0zLjkyNyw1LjgyNEMzLjYxOSw1LjU0NyAzLjU5NCw1LjA3MyAzLjg3MSw0Ljc2NUM0LjE0OCw0LjQ1NyA0LjYyMiw0LjQzMiA0LjkzLDQuNzA5TDYuNjA2LDYuMjE3QzYuOTE0LDYuNDkzIDYuOTM5LDYuOTY4IDYuNjYzLDcuMjc2QzYuMzg2LDcuNTg0IDUuOTExLDcuNjA5IDUuNjAzLDcuMzMyTDMuOTI3LDUuODI0WiIgc3R5bGU9ImZpbGw6d2hpdGU7Ii8+CiAgICA8cGF0aCBkPSJNMzMsMTUuMTgzQzMzLjQxNCwxNS4xODMgMzMuNzUsMTUuNTE5IDMzLjc1LDE1LjkzM0MzMy43NSwxNi4zNDcgMzMuNDE0LDE2LjY4MyAzMywxNi42ODNMMzAuNzE0LDE2LjY4M0MzMC4zLDE2LjY4MyAyOS45NjQsMTYuMzQ3IDI5Ljk2NCwxNS45MzNDMjkuOTY0LDE1LjUxOSAzMC4zLDE1LjE4MyAzMC43MTQsMTUuMTgzTDMzLDE1LjE4M1oiIHN0eWxlPSJmaWxsOndoaXRlOyIvPgogICAgPHBhdGggZD0iTTI5LjA3LDQuNzA5QzI5LjM3OCw0LjQzMiAyOS44NTMsNC40NTcgMzAuMTI5LDQuNzY1QzMwLjQwNiw1LjA3MyAzMC4zODEsNS41NDcgMzAuMDczLDUuODI0TDI4LjM5Nyw3LjMzMkMyOC4wODksNy42MDkgMjcuNjE1LDcuNTg0IDI3LjMzOCw3LjI3NkMyNy4wNjEsNi45NjggMjcuMDg2LDYuNDkzIDI3LjM5NCw2LjIxN0wyOS4wNyw0LjcwOVoiIHN0eWxlPSJmaWxsOndoaXRlOyIvPgogICAgPHBhdGggZD0iTTEyLjQyOSwxNS45NzJDMTIuMDE1LDE1Ljk3MiAxMS42NzksMTUuNjM2IDExLjY3OSwxNS4yMjJDMTEuNjc5LDE0LjgwOCAxMi4wMTUsMTQuNDcyIDEyLjQyOSwxNC40NzJDMTMuMjI3LDE0LjQ3MiAxMy45OTIsMTQuNzcyIDE0LjU1NywxNS4yOTlDMTUuMTQxLDE1Ljg0NCAxNS40NjQsMTYuNTg1IDE1LjQ2NCwxNy4zNTZMMTUuNDY0LDI0LjQ2N0MxNS40NjQsMjQuODgxIDE1LjEyOCwyNS4yMTcgMTQuNzE0LDI1LjIxN0MxNC4zLDI1LjIxNyAxMy45NjQsMjQuODgxIDEzLjk2NCwyNC40NjdMMTMuOTY0LDE3LjM1NkMxMy45NjQsMTYuOTk1IDEzLjgwNywxNi42NTEgMTMuNTMzLDE2LjM5NUMxMy4yNDEsMTYuMTIyIDEyLjg0MiwxNS45NzIgMTIuNDI5LDE1Ljk3MloiIHN0eWxlPSJmaWxsOndoaXRlOyIvPgogICAgPHBhdGggZD0iTTIwLjAzNiwyNC40NjdDMjAuMDM2LDI0Ljg4MSAxOS43LDI1LjIxNyAxOS4yODYsMjUuMjE3QzE4Ljg3MiwyNS4yMTcgMTguNTM2LDI0Ljg4MSAxOC41MzYsMjQuNDY3TDE4LjUzNiwxNy4zNTZDMTguNTM2LDE2LjU4NSAxOC44NiwxNS44NDQgMTkuNDQ0LDE1LjI5OUMyMC4wMDksMTQuNzcyIDIwLjc3MywxNC40NzIgMjEuNTcyLDE0LjQ3MkMyMS45ODYsMTQuNDcyIDIyLjMyMiwxNC44MDggMjIuMzIyLDE1LjIyMkMyMi4zMjIsMTUuNjM2IDIxLjk4NiwxNS45NzIgMjEuNTcyLDE1Ljk3MkMyMS4xNTgsMTUuOTcyIDIwLjc2LDE2LjEyMiAyMC40NjcsMTYuMzk1QzIwLjE5NCwxNi42NTEgMjAuMDM2LDE2Ljk5NSAyMC4wMzYsMTcuMzU2TDIwLjAzNiwyNC40NjdaIiBzdHlsZT0iZmlsbDp3aGl0ZTsiLz4KICAgIDxwYXRoIGQ9Ik0xMS45OTIsMjUuMTQ3QzEwLjE2MywyNC4zMDIgOC42MjksMjIuOTg5IDcuNTY0LDIxLjM2NEM2LjQ5MiwxOS43MjggNS45MzgsMTcuODQxIDUuOTY1LDE1LjkyM0w1Ljk2NSwxNS45MTlDNi4wMTYsMTMuMTg3IDcuMTk3LDEwLjU3OCA5LjI2OCw4LjY0NUMxMS4zMiw2LjczIDE0LjA4Nyw1LjYzIDE2Ljk4OCw1LjU4M0wxNy4wMTMsNS41ODNDMTkuOTE0LDUuNjMgMjIuNjgxLDYuNzMgMjQuNzMzLDguNjQ1QzI2LjgwNCwxMC41NzggMjcuOTg1LDEzLjE4NyAyOC4wMzYsMTUuOTE5TDI4LjAzNiwxNS45MjNDMjguMDYzLDE3Ljg0MSAyNy41MDksMTkuNzI4IDI2LjQzNywyMS4zNjRDMjUuMzcyLDIyLjk4OSAyMy44MzcsMjQuMzAyIDIyLjAwOSwyNS4xNDdDMjEuOTEsMjUuMTkzIDIxLjgwMiwyNS4yMTcgMjEuNjk0LDI1LjIxN0wxMi4zMDcsMjUuMjE3QzEyLjE5OCwyNS4yMTcgMTIuMDkxLDI1LjE5MyAxMS45OTIsMjUuMTQ3Wk0xMi40NzUsMjMuNzE2TDIxLjUyNywyMy43MTZDMjMuMDMyLDIyLjk4OSAyNC4yOTcsMjEuODkzIDI1LjE4MiwyMC41NDJDMjYuMDg4LDE5LjE1OSAyNi41NTgsMTcuNTY2IDI2LjUzNiwxNS45NDZDMjYuNDkzLDEzLjYxNCAyNS40NzcsMTEuMzkxIDIzLjcxLDkuNzQyQzIxLjkyNyw4LjA3OCAxOS41MjEsNy4xMjcgMTYuOTk0LDcuMDg0QzE0LjQ3Niw3LjEyOSAxMi4wNzMsOC4wNzkgMTAuMjkxLDkuNzQyQzguNTI0LDExLjM5MSA3LjUwOCwxMy42MTQgNy40NjUsMTUuOTQ2QzcuNDQyLDE3LjU2NiA3LjkxMywxOS4xNTkgOC44MTksMjAuNTQyQzkuNzA0LDIxLjg5MyAxMC45NywyMi45OSAxMi40NzUsMjMuNzE2WiIgc3R5bGU9ImZpbGw6d2hpdGU7Ii8+Cjwvc3ZnPgo=)}.c-scholarship-list__item{padding:36px 0 24px 0}.c-scholarship-list__info{display:flex;flex-wrap:wrap;width:75%}@media screen and (max-width: 1097px){.c-scholarship-list__info{width:100%}}.c-scholarship-list__info>*{width:50%}.c-scholarship-list__info dd{margin-bottom:12px}.c-scholarship-list__tooltip{display:flex;border:none;background:none;padding:0}.c-scholarship-list__tooltip--container{display:flex;align-items:center;gap:6px}.c-scholarship-list__tooltip-info-circle{color:var(--color-grey-border-white);margin-top:0}.c-scholarships-filters__collapsible{display:block;height:auto;transition:height .2s}@media screen and (max-width: 1421px){.c-scholarships-filters__collapsible--collapsed-down-desktop{display:none;height:0;overflow:hidden;transition:height .2s}}.c-scholarships-filters__collapsible-trigger{padding:0;background:none;border:none;box-shadow:none;color:var(--color-daadblue);font-size:1.5em;line-height:1;display:flex;justify-content:space-between;width:100%;margin:36px 0}.c-scholarships-filters__collapsible-trigger-icon{width:24px;height:24px;background:var(--color-daadblue-background);color:#fff;font-style:normal;display:block;line-height:24px;text-align:center;border-radius:50%;font-size:36px}.c-scholarships-tabs{display:flex;border-bottom:1px solid #333;justify-content:space-between;align-items:end}@media screen and (max-width: 1421px){.c-scholarships-tabs{display:block;padding-bottom:12px}}.c-scholarships-tabs__list{display:flex;margin:0 -18px}@media screen and (max-width: 1421px){.c-scholarships-tabs__list{flex-wrap:wrap}}.c-scholarships-tabs__tab{font-size:1.125em;padding:0 18px}@media screen and (max-width: 1421px){.c-scholarships-tabs__tab{margin-bottom:18px}}.c-scholarships-tabs__tab--active .c-scholarships-tabs__tab-link{border-color:#333;font-weight:600}.c-scholarships-tabs__tab-link{display:block;border-bottom:2px solid transparent;padding-bottom:4px}.c-scholarships-tabs__tab-link :focus,.c-scholarships-tabs__tab-link :active,.c-scholarships-tabs__tab-link:not([disabled]):hover{border-color:#333}.c-scholarships-teaser{display:flex;flex-wrap:wrap}.c-scholarships-teaser__column{width:50%;padding:18px}@media screen and (max-width: 1097px){.c-scholarships-teaser__column{width:100%}}.c-scholarships-teaser--assistent .c-scholarships-teaser__column:not(:first-child){width:100%}@media screen and (max-width: 1097px){.c-scholarships-teaser--assistent .c-scholarships-teaser__column:not(:first-child){width:100%}}.c-scholarships-teaser__bubble{padding-bottom:30px}.c-scholarships-teaser__bubble-inner{position:relative;z-index:1;background:#e2e2e2;font-size:2em;font-style:italic;min-height:80px;padding:12px 24px;border-radius:16px;position:relative;display:block;color:var(--color-anthracite-contain)}.c-scholarships-teaser__bubble-inner:after{content:'';position:absolute;display:inline-block;color:transparent;width:0;height:0;border-style:solid;border-width:80px 80px 0 0;border-color:#e2e2e2 transparent transparent transparent;bottom:-30px;left:40px;z-index:-1}

