/* required styles */

.leaflet-pane,
.leaflet-tile,
.leaflet-marker-icon,
.leaflet-marker-shadow,
.leaflet-tile-container,
.leaflet-pane > svg,
.leaflet-pane > canvas,
.leaflet-zoom-box,
.leaflet-image-layer,
.leaflet-layer {
	position: absolute;
	left: 0;
	top: 0;
	}
.leaflet-container {
	overflow: hidden;
	}
.leaflet-tile,
.leaflet-marker-icon,
.leaflet-marker-shadow {
	-webkit-user-select: none;
	   -moz-user-select: none;
	        user-select: none;
	  -webkit-user-drag: none;
	}
/* Prevents IE11 from highlighting tiles in blue */
.leaflet-tile::selection {
	background: transparent;
}
/* Safari renders non-retina tile on retina better with this, but Chrome is worse */
.leaflet-safari .leaflet-tile {
	image-rendering: -webkit-optimize-contrast;
	}
/* hack that prevents hw layers "stretching" when loading new tiles */
.leaflet-safari .leaflet-tile-container {
	width: 1600px;
	height: 1600px;
	-webkit-transform-origin: 0 0;
	}
.leaflet-marker-icon,
.leaflet-marker-shadow {
	display: block;
	}
/* .leaflet-container svg: reset svg max-width decleration shipped in Joomla! (joomla.org) 3.x */
/* .leaflet-container img: map is broken in FF if you have max-width: 100% on tiles */
.leaflet-container .leaflet-overlay-pane svg {
	max-width: none !important;
	max-height: none !important;
	}
.leaflet-container .leaflet-marker-pane img,
.leaflet-container .leaflet-shadow-pane img,
.leaflet-container .leaflet-tile-pane img,
.leaflet-container img.leaflet-image-layer,
.leaflet-container .leaflet-tile {
	max-width: none !important;
	max-height: none !important;
	width: auto;
	padding: 0;
	}

.leaflet-container img.leaflet-tile {
	/* See: https://bugs.chromium.org/p/chromium/issues/detail?id=600120 */
	mix-blend-mode: plus-lighter;
}

.leaflet-container.leaflet-touch-zoom {
	-ms-touch-action: pan-x pan-y;
	touch-action: pan-x pan-y;
	}
.leaflet-container.leaflet-touch-drag {
	-ms-touch-action: pinch-zoom;
	/* Fallback for FF which doesn't support pinch-zoom */
	touch-action: none;
	touch-action: pinch-zoom;
}
.leaflet-container.leaflet-touch-drag.leaflet-touch-zoom {
	-ms-touch-action: none;
	touch-action: none;
}
.leaflet-container {
	-webkit-tap-highlight-color: transparent;
}
.leaflet-container a {
	-webkit-tap-highlight-color: rgba(51, 181, 229, 0.4);
}
.leaflet-tile {
	filter: inherit;
	visibility: hidden;
	}
.leaflet-tile-loaded {
	visibility: inherit;
	}
.leaflet-zoom-box {
	width: 0;
	height: 0;
	-moz-box-sizing: border-box;
	     box-sizing: border-box;
	z-index: 800;
	}
/* workaround for https://bugzilla.mozilla.org/show_bug.cgi?id=888319 */
.leaflet-overlay-pane svg {
	-moz-user-select: none;
	}

.leaflet-pane         { z-index: 400; }

.leaflet-tile-pane    { z-index: 200; }
.leaflet-overlay-pane { z-index: 400; }
.leaflet-shadow-pane  { z-index: 500; }
.leaflet-marker-pane  { z-index: 600; }
.leaflet-tooltip-pane   { z-index: 650; }
.leaflet-popup-pane   { z-index: 700; }

.leaflet-map-pane canvas { z-index: 100; }
.leaflet-map-pane svg    { z-index: 200; }

.leaflet-vml-shape {
	width: 1px;
	height: 1px;
	}
.lvml {
	behavior: url(#default#VML);
	display: inline-block;
	position: absolute;
	}


/* control positioning */

.leaflet-control {
	position: relative;
	z-index: 800;
	pointer-events: visiblePainted; /* IE 9-10 doesn't have auto */
	pointer-events: auto;
	}
.leaflet-top,
.leaflet-bottom {
	position: absolute;
	z-index: 1000;
	pointer-events: none;
	}
.leaflet-top {
	top: 0;
	}
.leaflet-right {
	right: 0;
	}
.leaflet-bottom {
	bottom: 0;
	}
.leaflet-left {
	left: 0;
	}
.leaflet-control {
	float: left;
	clear: both;
	}
.leaflet-right .leaflet-control {
	float: right;
	}
.leaflet-top .leaflet-control {
	margin-top: 10px;
	}
.leaflet-bottom .leaflet-control {
	margin-bottom: 10px;
	}
.leaflet-left .leaflet-control {
	margin-left: 10px;
	}
.leaflet-right .leaflet-control {
	margin-right: 10px;
	}


/* zoom and fade animations */

.leaflet-fade-anim .leaflet-popup {
	opacity: 0;
	-webkit-transition: opacity 0.2s linear;
	   -moz-transition: opacity 0.2s linear;
	        transition: opacity 0.2s linear;
	}
.leaflet-fade-anim .leaflet-map-pane .leaflet-popup {
	opacity: 1;
	}
.leaflet-zoom-animated {
	-webkit-transform-origin: 0 0;
	    -ms-transform-origin: 0 0;
	        transform-origin: 0 0;
	}
svg.leaflet-zoom-animated {
	will-change: transform;
}

.leaflet-zoom-anim .leaflet-zoom-animated {
	-webkit-transition: -webkit-transform 0.25s cubic-bezier(0,0,0.25,1);
	   -moz-transition:    -moz-transform 0.25s cubic-bezier(0,0,0.25,1);
	        transition:         transform 0.25s cubic-bezier(0,0,0.25,1);
	}
.leaflet-zoom-anim .leaflet-tile,
.leaflet-pan-anim .leaflet-tile {
	-webkit-transition: none;
	   -moz-transition: none;
	        transition: none;
	}

.leaflet-zoom-anim .leaflet-zoom-hide {
	visibility: hidden;
	}


/* cursors */

.leaflet-interactive {
	cursor: pointer;
	}
.leaflet-grab {
	cursor: -webkit-grab;
	cursor:    -moz-grab;
	cursor:         grab;
	}
.leaflet-crosshair,
.leaflet-crosshair .leaflet-interactive {
	cursor: crosshair;
	}
.leaflet-popup-pane,
.leaflet-control {
	cursor: auto;
	}
.leaflet-dragging .leaflet-grab,
.leaflet-dragging .leaflet-grab .leaflet-interactive,
.leaflet-dragging .leaflet-marker-draggable {
	cursor: move;
	cursor: -webkit-grabbing;
	cursor:    -moz-grabbing;
	cursor:         grabbing;
	}

/* marker & overlays interactivity */
.leaflet-marker-icon,
.leaflet-marker-shadow,
.leaflet-image-layer,
.leaflet-pane > svg path,
.leaflet-tile-container {
	pointer-events: none;
	}

.leaflet-marker-icon.leaflet-interactive,
.leaflet-image-layer.leaflet-interactive,
.leaflet-pane > svg path.leaflet-interactive,
svg.leaflet-image-layer.leaflet-interactive path {
	pointer-events: visiblePainted; /* IE 9-10 doesn't have auto */
	pointer-events: auto;
	}

/* visual tweaks */

.leaflet-container {
	background: #ddd;
	outline-offset: 1px;
	}
.leaflet-container a {
	color: #0078A8;
	}
.leaflet-zoom-box {
	border: 2px dotted #38f;
	background: rgba(255,255,255,0.5);
	}


/* general typography */
.leaflet-container {
	font-family: "Helvetica Neue", Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-size: 0.75rem;
	line-height: 1.5;
	}


/* general toolbar styles */

.leaflet-bar {
	box-shadow: 0 1px 5px rgba(0,0,0,0.65);
	border-radius: 4px;
	}
.leaflet-bar a {
	background-color: #fff;
	border-bottom: 1px solid #ccc;
	width: 26px;
	height: 26px;
	line-height: 26px;
	display: block;
	text-align: center;
	text-decoration: none;
	color: black;
	}
.leaflet-bar a,
.leaflet-control-layers-toggle {
	background-position: 50% 50%;
	background-repeat: no-repeat;
	display: block;
	}
.leaflet-bar a:hover,
.leaflet-bar a:focus {
	background-color: #f4f4f4;
	}
.leaflet-bar a:first-child {
	border-top-left-radius: 4px;
	border-top-right-radius: 4px;
	}
.leaflet-bar a:last-child {
	border-bottom-left-radius: 4px;
	border-bottom-right-radius: 4px;
	border-bottom: none;
	}
.leaflet-bar a.leaflet-disabled {
	cursor: default;
	background-color: #f4f4f4;
	color: #bbb;
	}

.leaflet-touch .leaflet-bar a {
	width: 30px;
	height: 30px;
	line-height: 30px;
	}
.leaflet-touch .leaflet-bar a:first-child {
	border-top-left-radius: 2px;
	border-top-right-radius: 2px;
	}
.leaflet-touch .leaflet-bar a:last-child {
	border-bottom-left-radius: 2px;
	border-bottom-right-radius: 2px;
	}

/* zoom control */

.leaflet-control-zoom-in,
.leaflet-control-zoom-out {
	font: bold 18px 'Lucida Console', Monaco, monospace;
	text-indent: 1px;
	}

.leaflet-touch .leaflet-control-zoom-in, .leaflet-touch .leaflet-control-zoom-out  {
	font-size: 22px;
	}


/* layers control */

.leaflet-control-layers {
	box-shadow: 0 1px 5px rgba(0,0,0,0.4);
	background: #fff;
	border-radius: 5px;
	}
.leaflet-control-layers-toggle {
	background-image: url(./img/layers.png);
	width: 36px;
	height: 36px;
	}
.leaflet-retina .leaflet-control-layers-toggle {
	background-image: url(./img/layers-2x.png);
	background-size: 26px 26px;
	}
.leaflet-touch .leaflet-control-layers-toggle {
	width: 44px;
	height: 44px;
	}
.leaflet-control-layers .leaflet-control-layers-list,
.leaflet-control-layers-expanded .leaflet-control-layers-toggle {
	display: none;
	}
.leaflet-control-layers-expanded .leaflet-control-layers-list {
	display: block;
	position: relative;
	}
.leaflet-control-layers-expanded {
	padding: 6px 10px 6px 6px;
	color: #333;
	background: #fff;
	}
.leaflet-control-layers-scrollbar {
	overflow-y: scroll;
	overflow-x: hidden;
	padding-right: 5px;
	}
.leaflet-control-layers-selector {
	margin-top: 2px;
	position: relative;
	top: 1px;
	}
.leaflet-control-layers label {
	display: block;
	font-size: 13px;
	font-size: 1.08333em;
	}
.leaflet-control-layers-separator {
	height: 0;
	border-top: 1px solid #ddd;
	margin: 5px -10px 5px -6px;
	}

/* Default icon URLs */
.leaflet-default-icon-path { /* used only in path-guessing heuristic, see L.Icon.Default */
	background-image: url(./img/marker-icon.png);
	}


/* attribution and scale controls */

.leaflet-container .leaflet-control-attribution {
	background: #fff;
	background: rgba(255, 255, 255, 0.8);
	margin: 0;
	}
.leaflet-control-attribution,
.leaflet-control-scale-line {
	padding: 0 5px;
	color: #333;
	line-height: 1.4;
	}
.leaflet-control-attribution a {
	text-decoration: none;
	}
.leaflet-control-attribution a:hover,
.leaflet-control-attribution a:focus {
	text-decoration: underline;
	}
.leaflet-attribution-flag {
	display: inline !important;
	vertical-align: baseline !important;
	width: 1em;
	height: 0.6669em;
	}
.leaflet-left .leaflet-control-scale {
	margin-left: 5px;
	}
.leaflet-bottom .leaflet-control-scale {
	margin-bottom: 5px;
	}
.leaflet-control-scale-line {
	border: 2px solid #777;
	border-top: none;
	line-height: 1.1;
	padding: 2px 5px 1px;
	white-space: nowrap;
	-moz-box-sizing: border-box;
	     box-sizing: border-box;
	background: rgba(255, 255, 255, 0.8);
	text-shadow: 1px 1px #fff;
	}
.leaflet-control-scale-line:not(:first-child) {
	border-top: 2px solid #777;
	border-bottom: none;
	margin-top: -2px;
	}
.leaflet-control-scale-line:not(:first-child):not(:last-child) {
	border-bottom: 2px solid #777;
	}

.leaflet-touch .leaflet-control-attribution,
.leaflet-touch .leaflet-control-layers,
.leaflet-touch .leaflet-bar {
	box-shadow: none;
	}
.leaflet-touch .leaflet-control-layers,
.leaflet-touch .leaflet-bar {
	border: 2px solid rgba(0,0,0,0.2);
	background-clip: padding-box;
	}


/* popup */

.leaflet-popup {
	position: absolute;
	text-align: center;
	margin-bottom: 20px;
	}
.leaflet-popup-content-wrapper {
	padding: 1px;
	text-align: left;
	border-radius: 12px;
	}
.leaflet-popup-content {
	margin: 13px 24px 13px 20px;
	line-height: 1.3;
	font-size: 13px;
	font-size: 1.08333em;
	min-height: 1px;
	}
.leaflet-popup-content p {
	margin: 17px 0;
	margin: 1.3em 0;
	}
.leaflet-popup-tip-container {
	width: 40px;
	height: 20px;
	position: absolute;
	left: 50%;
	margin-top: -1px;
	margin-left: -20px;
	overflow: hidden;
	pointer-events: none;
	}
.leaflet-popup-tip {
	width: 17px;
	height: 17px;
	padding: 1px;

	margin: -10px auto 0;
	pointer-events: auto;

	-webkit-transform: rotate(45deg);
	   -moz-transform: rotate(45deg);
	    -ms-transform: rotate(45deg);
	        transform: rotate(45deg);
	}
.leaflet-popup-content-wrapper,
.leaflet-popup-tip {
	background: white;
	color: #333;
	box-shadow: 0 3px 14px rgba(0,0,0,0.4);
	}
.leaflet-container a.leaflet-popup-close-button {
	position: absolute;
	top: 0;
	right: 0;
	border: none;
	text-align: center;
	width: 24px;
	height: 24px;
	font: 16px/24px Tahoma, Verdana, sans-serif;
	color: #757575;
	text-decoration: none;
	background: transparent;
	}
.leaflet-container a.leaflet-popup-close-button:hover,
.leaflet-container a.leaflet-popup-close-button:focus {
	color: #585858;
	}
.leaflet-popup-scrolled {
	overflow: auto;
	}

.leaflet-oldie .leaflet-popup-content-wrapper {
	-ms-zoom: 1;
	}
.leaflet-oldie .leaflet-popup-tip {
	width: 24px;
	margin: 0 auto;

	-ms-filter: "progid:DXImageTransform.Microsoft.Matrix(M11=0.70710678, M12=0.70710678, M21=-0.70710678, M22=0.70710678)";
	filter: progid:DXImageTransform.Microsoft.Matrix(M11=0.70710678, M12=0.70710678, M21=-0.70710678, M22=0.70710678);
	}

.leaflet-oldie .leaflet-control-zoom,
.leaflet-oldie .leaflet-control-layers,
.leaflet-oldie .leaflet-popup-content-wrapper,
.leaflet-oldie .leaflet-popup-tip {
	border: 1px solid #999;
	}


/* div icon */

.leaflet-div-icon {
	background: #fff;
	border: 1px solid #666;
	}


/* Tooltip */
/* Base styles for the element that has a tooltip */
.leaflet-tooltip {
	position: absolute;
	padding: 6px;
	background-color: #fff;
	border: 1px solid #fff;
	border-radius: 3px;
	color: #222;
	white-space: nowrap;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	pointer-events: none;
	box-shadow: 0 1px 3px rgba(0,0,0,0.4);
	}
.leaflet-tooltip.leaflet-interactive {
	cursor: pointer;
	pointer-events: auto;
	}
.leaflet-tooltip-top:before,
.leaflet-tooltip-bottom:before,
.leaflet-tooltip-left:before,
.leaflet-tooltip-right:before {
	position: absolute;
	pointer-events: none;
	border: 6px solid transparent;
	background: transparent;
	content: "";
	}

/* Directions */

.leaflet-tooltip-bottom {
	margin-top: 6px;
}
.leaflet-tooltip-top {
	margin-top: -6px;
}
.leaflet-tooltip-bottom:before,
.leaflet-tooltip-top:before {
	left: 50%;
	margin-left: -6px;
	}
.leaflet-tooltip-top:before {
	bottom: 0;
	margin-bottom: -12px;
	border-top-color: #fff;
	}
.leaflet-tooltip-bottom:before {
	top: 0;
	margin-top: -12px;
	margin-left: -6px;
	border-bottom-color: #fff;
	}
.leaflet-tooltip-left {
	margin-left: -6px;
}
.leaflet-tooltip-right {
	margin-left: 6px;
}
.leaflet-tooltip-left:before,
.leaflet-tooltip-right:before {
	top: 50%;
	margin-top: -6px;
	}
.leaflet-tooltip-left:before {
	right: 0;
	margin-right: -12px;
	border-left-color: #fff;
	}
.leaflet-tooltip-right:before {
	left: 0;
	margin-left: -12px;
	border-right-color: #fff;
	}

/* Printing */

@media print {
	/* Prevent printers from removing background-images of controls. */
	.leaflet-control {
		-webkit-print-color-adjust: exact;
		print-color-adjust: exact;
		}
	}
.lozad {
  opacity: 0;
  transition: all .66s; }
  .lozad.loaded {
    opacity: 1; }

.flex-wrap {
  flex-wrap: wrap !important; }

.tooltip {
  position: absolute;
  z-index: 1070;
  display: block;
  margin: 0;
  font-family: var(--bs-font-sans-serif);
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
  text-align: left;
  text-align: start;
  text-decoration: none;
  text-shadow: none;
  text-transform: none;
  letter-spacing: normal;
  word-break: normal;
  word-spacing: normal;
  white-space: normal;
  line-break: auto;
  font-size: 0.875rem;
  word-wrap: break-word;
  opacity: 0; }
  .tooltip.show {
    opacity: 0.9; }
  .tooltip .tooltip-arrow {
    position: absolute;
    display: block;
    width: 0.8rem;
    height: 0.4rem; }
    .tooltip .tooltip-arrow::before {
      position: absolute;
      content: "";
      border-color: transparent;
      border-style: solid; }

.bs-tooltip-top, .bs-tooltip-auto[data-popper-placement^="top"] {
  padding: 0.4rem 0; }
  .bs-tooltip-top .tooltip-arrow, .bs-tooltip-auto[data-popper-placement^="top"] .tooltip-arrow {
    bottom: 0; }
    .bs-tooltip-top .tooltip-arrow::before, .bs-tooltip-auto[data-popper-placement^="top"] .tooltip-arrow::before {
      top: -1px;
      border-width: 0.4rem 0.4rem 0;
      border-top-color: #000; }

.bs-tooltip-end, .bs-tooltip-auto[data-popper-placement^="right"] {
  padding: 0 0.4rem; }
  .bs-tooltip-end .tooltip-arrow, .bs-tooltip-auto[data-popper-placement^="right"] .tooltip-arrow {
    left: 0;
    width: 0.4rem;
    height: 0.8rem; }
    .bs-tooltip-end .tooltip-arrow::before, .bs-tooltip-auto[data-popper-placement^="right"] .tooltip-arrow::before {
      right: -1px;
      border-width: 0.4rem 0.4rem 0.4rem 0;
      border-right-color: #000; }

.bs-tooltip-bottom, .bs-tooltip-auto[data-popper-placement^="bottom"] {
  padding: 0.4rem 0; }
  .bs-tooltip-bottom .tooltip-arrow, .bs-tooltip-auto[data-popper-placement^="bottom"] .tooltip-arrow {
    top: 0; }
    .bs-tooltip-bottom .tooltip-arrow::before, .bs-tooltip-auto[data-popper-placement^="bottom"] .tooltip-arrow::before {
      bottom: -1px;
      border-width: 0 0.4rem 0.4rem;
      border-bottom-color: #000; }

.bs-tooltip-start, .bs-tooltip-auto[data-popper-placement^="left"] {
  padding: 0 0.4rem; }
  .bs-tooltip-start .tooltip-arrow, .bs-tooltip-auto[data-popper-placement^="left"] .tooltip-arrow {
    right: 0;
    width: 0.4rem;
    height: 0.8rem; }
    .bs-tooltip-start .tooltip-arrow::before, .bs-tooltip-auto[data-popper-placement^="left"] .tooltip-arrow::before {
      left: -1px;
      border-width: 0.4rem 0 0.4rem 0.4rem;
      border-left-color: #000; }

.tooltip-inner {
  max-width: 200px;
  padding: 0.25rem 0.5rem;
  color: #fff;
  text-align: center;
  background-color: #000;
  border-radius: 0.25rem; }

.table {
  --bs-table-bg: transparent;
  --bs-table-striped-color: #212529;
  --bs-table-striped-bg: rgba(0, 0, 0, 0.05);
  --bs-table-active-color: #212529;
  --bs-table-active-bg: rgba(0, 0, 0, 0.1);
  --bs-table-hover-color: #212529;
  --bs-table-hover-bg: rgba(0, 0, 0, 0.075);
  width: 100%;
  margin-bottom: 1rem;
  color: #212529;
  vertical-align: top;
  border-color: #dee2e6; }
  .table > :not(caption) > * > * {
    padding: 0.5rem 0.5rem;
    background-color: var(--bs-table-bg);
    background-image: linear-gradient(var(--bs-table-accent-bg), var(--bs-table-accent-bg));
    border-bottom-width: 1px; }
  .table > tbody {
    vertical-align: inherit; }
  .table > thead {
    vertical-align: bottom; }
  .table > :not(:last-child) > :last-child > * {
    border-bottom-color: currentColor; }

.caption-top {
  caption-side: top; }

.table-sm > :not(caption) > * > * {
  padding: 0.25rem 0.25rem; }

.table-bordered > :not(caption) > * {
  border-width: 1px 0; }
  .table-bordered > :not(caption) > * > * {
    border-width: 0 1px; }

.table-borderless > :not(caption) > * > * {
  border-bottom-width: 0; }

.table-striped > tbody > tr:nth-of-type(odd) {
  --bs-table-accent-bg: var(--bs-table-striped-bg);
  color: var(--bs-table-striped-color); }

.table-active {
  --bs-table-accent-bg: var(--bs-table-active-bg);
  color: var(--bs-table-active-color); }

.table-hover > tbody > tr:hover {
  --bs-table-accent-bg: var(--bs-table-hover-bg);
  color: var(--bs-table-hover-color); }

.table-primary {
  --bs-table-bg: #cfe2ff;
  --bs-table-striped-bg: #c5d7f2;
  --bs-table-striped-color: #000;
  --bs-table-active-bg: #bacbe6;
  --bs-table-active-color: #000;
  --bs-table-hover-bg: #bfd1ec;
  --bs-table-hover-color: #000;
  color: #000;
  border-color: #bacbe6; }

.table-secondary {
  --bs-table-bg: #e2e3e5;
  --bs-table-striped-bg: #d7d8da;
  --bs-table-striped-color: #000;
  --bs-table-active-bg: #cbccce;
  --bs-table-active-color: #000;
  --bs-table-hover-bg: #d1d2d4;
  --bs-table-hover-color: #000;
  color: #000;
  border-color: #cbccce; }

.table-success {
  --bs-table-bg: #d1e7dd;
  --bs-table-striped-bg: #c7dbd2;
  --bs-table-striped-color: #000;
  --bs-table-active-bg: #bcd0c7;
  --bs-table-active-color: #000;
  --bs-table-hover-bg: #c1d6cc;
  --bs-table-hover-color: #000;
  color: #000;
  border-color: #bcd0c7; }

.table-info {
  --bs-table-bg: #cff4fc;
  --bs-table-striped-bg: #c5e8ef;
  --bs-table-striped-color: #000;
  --bs-table-active-bg: #badce3;
  --bs-table-active-color: #000;
  --bs-table-hover-bg: #bfe2e9;
  --bs-table-hover-color: #000;
  color: #000;
  border-color: #badce3; }

.table-warning {
  --bs-table-bg: #fff3cd;
  --bs-table-striped-bg: #f2e7c3;
  --bs-table-striped-color: #000;
  --bs-table-active-bg: #e6dbb9;
  --bs-table-active-color: #000;
  --bs-table-hover-bg: #ece1be;
  --bs-table-hover-color: #000;
  color: #000;
  border-color: #e6dbb9; }

.table-danger {
  --bs-table-bg: #f8d7da;
  --bs-table-striped-bg: #eccccf;
  --bs-table-striped-color: #000;
  --bs-table-active-bg: #dfc2c4;
  --bs-table-active-color: #000;
  --bs-table-hover-bg: #e5c7ca;
  --bs-table-hover-color: #000;
  color: #000;
  border-color: #dfc2c4; }

.table-light {
  --bs-table-bg: #f8f9fa;
  --bs-table-striped-bg: #ecedee;
  --bs-table-striped-color: #000;
  --bs-table-active-bg: #dfe0e1;
  --bs-table-active-color: #000;
  --bs-table-hover-bg: #e5e6e7;
  --bs-table-hover-color: #000;
  color: #000;
  border-color: #dfe0e1; }

.table-dark {
  --bs-table-bg: #212529;
  --bs-table-striped-bg: #2c3034;
  --bs-table-striped-color: #fff;
  --bs-table-active-bg: #373b3e;
  --bs-table-active-color: #fff;
  --bs-table-hover-bg: #323539;
  --bs-table-hover-color: #fff;
  color: #fff;
  border-color: #373b3e; }

.table-responsive {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch; }

@media (max-width: 575.98px) {
  .table-responsive-sm {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch; } }

@media (max-width: 767.98px) {
  .table-responsive-md {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch; } }

@media (max-width: 991.98px) {
  .table-responsive-lg {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch; } }

@media (max-width: 1199.98px) {
  .table-responsive-xl {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch; } }

@media (max-width: 1399.98px) {
  .table-responsive-xxl {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch; } }

.slbOverlay, .slbWrapOuter, .slbWrap {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0; }

.slbOverlay {
  overflow: hidden;
  z-index: 2000;
  background-color: #000;
  opacity: 0.7;
  -webkit-animation: slbOverlay 0.5s;
  -moz-animation: slbOverlay 0.5s;
  animation: slbOverlay 0.5s; }

.slbWrapOuter {
  overflow-x: hidden;
  overflow-y: auto;
  z-index: 2010; }

.slbWrap {
  position: absolute;
  text-align: center; }

.slbWrap:before {
  content: "";
  display: inline-block;
  height: 100%;
  vertical-align: middle; }

.slbContentOuter {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  margin: 0px auto;
  padding: 0 1em;
  box-sizing: border-box;
  z-index: 2020;
  text-align: left;
  max-width: 100%; }

.slbContentEl .slbContentOuter {
  padding: 5em 1em; }

.slbContent {
  position: relative; }

.slbContentEl .slbContent {
  -webkit-animation: slbEnter 0.3s;
  -moz-animation: slbEnter 0.3s;
  animation: slbEnter 0.3s;
  background-color: #fff;
  box-shadow: 0 0.2em 1em rgba(0, 0, 0, 0.4); }

.slbImageWrap {
  -webkit-animation: slbEnter 0.3s;
  -moz-animation: slbEnter 0.3s;
  animation: slbEnter 0.3s;
  position: relative; }

.slbImageWrap:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 5em;
  bottom: 5em;
  display: block;
  z-index: -1;
  box-shadow: 0 0.2em 1em rgba(0, 0, 0, 0.6);
  background-color: #FFF; }

.slbDirectionNext .slbImageWrap {
  -webkit-animation: slbEnterNext 0.4s;
  -moz-animation: slbEnterNext 0.4s;
  animation: slbEnterNext 0.4s; }

.slbDirectionPrev .slbImageWrap {
  -webkit-animation: slbEnterPrev 0.4s;
  -moz-animation: slbEnterPrev 0.4s;
  animation: slbEnterPrev 0.4s; }

.slbImage {
  width: auto;
  max-width: 100%;
  height: auto;
  display: block;
  line-height: 0;
  box-sizing: border-box;
  padding: 5em 0;
  margin: 0 auto; }

.slbCaption {
  display: inline-block;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  word-wrap: normal;
  font-size: 1.4em;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0.71429em 0;
  color: #fff;
  color: rgba(255, 255, 255, 0.7);
  text-align: center; }

.slbCloseBtn, .slbArrow {
  margin: 0;
  padding: 0;
  border: 0;
  cursor: pointer;
  background: none; }

.slbCloseBtn::-moz-focus-inner, .slbArrow::-moz-focus-inner {
  padding: 0;
  border: 0; }

.slbCloseBtn:hover, .slbArrow:hover {
  opacity: 0.5; }

.slbCloseBtn:active, .slbArrow:active {
  opacity: 0.8; }

.slbCloseBtn {
  -webkit-animation: slbEnter 0.3s;
  -moz-animation: slbEnter 0.3s;
  animation: slbEnter 0.3s;
  font-size: 3em;
  width: 1.66667em;
  height: 1.66667em;
  line-height: 1.66667em;
  position: absolute;
  right: -0.33333em;
  top: 0;
  color: #fff;
  color: rgba(255, 255, 255, 0.7);
  text-align: center; }

.slbLoading .slbCloseBtn {
  display: none; }

.slbLoadingText {
  font-size: 1.4em;
  color: #fff;
  color: rgba(255, 255, 255, 0.9); }

.slbArrows {
  position: fixed;
  top: 50%;
  left: 0;
  right: 0; }

.slbLoading .slbArrows {
  display: none; }

.slbArrow {
  position: absolute;
  top: 50%;
  margin-top: -5em;
  width: 5em;
  height: 10em;
  opacity: 0.7;
  text-indent: -999em;
  overflow: hidden; }

.slbArrow:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -0.8em 0 0 -0.8em;
  border: 0.8em solid transparent; }

.slbArrow.next {
  right: 0; }

.slbArrow.next:before {
  border-left-color: #fff; }

.slbArrow.prev {
  left: 0; }

.slbArrow.prev:before {
  border-right-color: #fff; }

.slbIframeCont {
  width: 80em;
  height: 0;
  overflow: hidden;
  padding-top: 56.25%;
  margin: 5em 0; }

.slbIframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  box-shadow: 0 0.2em 1em rgba(0, 0, 0, 0.6);
  background: #000; }

@-webkit-keyframes slbOverlay {
  from {
    opacity: 0; }
  to {
    opacity: 0.7; } }

@-moz-keyframes slbOverlay {
  from {
    opacity: 0; }
  to {
    opacity: 0.7; } }

@keyframes slbOverlay {
  from {
    opacity: 0; }
  to {
    opacity: 0.7; } }

@-webkit-keyframes slbEnter {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -1em, 0); }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0); } }

@-moz-keyframes slbEnter {
  from {
    opacity: 0;
    -moz-transform: translate3d(0, -1em, 0); }
  to {
    opacity: 1;
    -moz-transform: translate3d(0, 0, 0); } }

@keyframes slbEnter {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -1em, 0);
    -moz-transform: translate3d(0, -1em, 0);
    -ms-transform: translate3d(0, -1em, 0);
    -o-transform: translate3d(0, -1em, 0);
    transform: translate3d(0, -1em, 0); }
  to {
    opacity: 1;
    -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); } }

@-webkit-keyframes slbEnterNext {
  from {
    opacity: 0;
    -webkit-transform: translate3d(4em, 0, 0); }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0); } }

@-moz-keyframes slbEnterNext {
  from {
    opacity: 0;
    -moz-transform: translate3d(4em, 0, 0); }
  to {
    opacity: 1;
    -moz-transform: translate3d(0, 0, 0); } }

@keyframes slbEnterNext {
  from {
    opacity: 0;
    -webkit-transform: translate3d(4em, 0, 0);
    -moz-transform: translate3d(4em, 0, 0);
    -ms-transform: translate3d(4em, 0, 0);
    -o-transform: translate3d(4em, 0, 0);
    transform: translate3d(4em, 0, 0); }
  to {
    opacity: 1;
    -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); } }

@-webkit-keyframes slbEnterPrev {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-4em, 0, 0); }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0); } }

@-moz-keyframes slbEnterPrev {
  from {
    opacity: 0;
    -moz-transform: translate3d(-4em, 0, 0); }
  to {
    opacity: 1;
    -moz-transform: translate3d(0, 0, 0); } }

@keyframes slbEnterPrev {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-4em, 0, 0);
    -moz-transform: translate3d(-4em, 0, 0);
    -ms-transform: translate3d(-4em, 0, 0);
    -o-transform: translate3d(-4em, 0, 0);
    transform: translate3d(-4em, 0, 0); }
  to {
    opacity: 1;
    -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); } }

.breadcrumbs {
  margin: 0;
  padding: 0;
  padding-top: .25rem; }

.breadcrumbs--bg {
  border-bottom: 1px solid #f7f7f7;
  padding: 0; }
  .breadcrumbs--bg .breadcrumbs__ul {
    padding-top: 12px;
    padding-bottom: 12px;
    color: #002772; }
    .breadcrumbs--bg .breadcrumbs__ul a {
      color: #002772; }
    .breadcrumbs--bg .breadcrumbs__ul .icon {
      fill: #394A59;
      color: #394A59; }
      .breadcrumbs--bg .breadcrumbs__ul .icon path, .breadcrumbs--bg .breadcrumbs__ul .icon circle, .breadcrumbs--bg .breadcrumbs__ul .icon line, .breadcrumbs--bg .breadcrumbs__ul .icon polygon, .breadcrumbs--bg .breadcrumbs__ul .icon ellipse, .breadcrumbs--bg .breadcrumbs__ul .icon svg, .breadcrumbs--bg .breadcrumbs__ul .icon use {
        fill: #394A59;
        color: #394A59; }
    .breadcrumbs--bg .breadcrumbs__ul .home {
      fill: #002772;
      color: #002772; }
      .breadcrumbs--bg .breadcrumbs__ul .home path, .breadcrumbs--bg .breadcrumbs__ul .home circle, .breadcrumbs--bg .breadcrumbs__ul .home line, .breadcrumbs--bg .breadcrumbs__ul .home polygon, .breadcrumbs--bg .breadcrumbs__ul .home ellipse, .breadcrumbs--bg .breadcrumbs__ul .home svg, .breadcrumbs--bg .breadcrumbs__ul .home use {
        fill: #002772;
        color: #002772; }

.breadcrumbs__ul {
  font-size: .875rem;
  font-weight: 400;
  color: #fff;
  list-style: none;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin: 0;
  padding: 0; }
  .breadcrumbs__ul li {
    margin-right: 6px; }
  .breadcrumbs__ul .icon {
    margin-left: 4px;
    width: 10px;
    height: 10px;
    background-size: contain;
    background-position: center;
    vertical-align: middle;
    display: inline-block;
    fill: #fff;
    color: #fff;
    position: relative;
    top: -1px; }
    .breadcrumbs__ul .icon img, .breadcrumbs__ul .icon svg {
      width: 10px;
      height: 10px;
      display: block; }
    .breadcrumbs__ul .icon path, .breadcrumbs__ul .icon circle, .breadcrumbs__ul .icon line, .breadcrumbs__ul .icon polygon, .breadcrumbs__ul .icon ellipse, .breadcrumbs__ul .icon svg, .breadcrumbs__ul .icon use {
      fill: #fff;
      color: #fff; }
  .breadcrumbs__ul .home {
    margin-right: 4px;
    width: 10px;
    height: 10px;
    background-size: contain;
    background-position: center;
    vertical-align: middle;
    display: inline-block;
    fill: #fff;
    color: #fff;
    position: relative;
    top: -1px; }
    .breadcrumbs__ul .home img, .breadcrumbs__ul .home svg {
      width: 10px;
      height: 10px;
      display: block; }
    .breadcrumbs__ul .home path, .breadcrumbs__ul .home circle, .breadcrumbs__ul .home line, .breadcrumbs__ul .home polygon, .breadcrumbs__ul .home ellipse, .breadcrumbs__ul .home svg, .breadcrumbs__ul .home use {
      fill: #fff;
      color: #fff; }
  .breadcrumbs__ul a {
    color: #fff;
    transition: color .3s;
    font-weight: 700; }
    .breadcrumbs__ul a .icon {
      fill: #fff;
      color: #fff; }
      .breadcrumbs__ul a .icon path, .breadcrumbs__ul a .icon circle, .breadcrumbs__ul a .icon line, .breadcrumbs__ul a .icon polygon, .breadcrumbs__ul a .icon ellipse, .breadcrumbs__ul a .icon svg, .breadcrumbs__ul a .icon use {
        fill: #fff;
        color: #fff; }
  .breadcrumbs__ul li:hover .home {
    fill: #00DDFF;
    color: #00DDFF; }
    .breadcrumbs__ul li:hover .home path, .breadcrumbs__ul li:hover .home circle, .breadcrumbs__ul li:hover .home line, .breadcrumbs__ul li:hover .home polygon, .breadcrumbs__ul li:hover .home ellipse, .breadcrumbs__ul li:hover .home svg, .breadcrumbs__ul li:hover .home use {
      fill: #00DDFF;
      color: #00DDFF; }
  .breadcrumbs__ul li:hover a {
    text-decoration: none; }
  .breadcrumbs__ul li:hover .home {
    fill: #00DDFF;
    color: #00DDFF; }
    .breadcrumbs__ul li:hover .home path, .breadcrumbs__ul li:hover .home circle, .breadcrumbs__ul li:hover .home line, .breadcrumbs__ul li:hover .home polygon, .breadcrumbs__ul li:hover .home ellipse, .breadcrumbs__ul li:hover .home svg, .breadcrumbs__ul li:hover .home use {
      fill: #00DDFF;
      color: #00DDFF; }

@media screen and (max-width: 992px) {
  .breadcrumb .wrapper {
    flex-wrap: wrap; }
  .breadcrumb__breadcrumb {
    width: 100%;
    margin-bottom: .5rem; }
    .breadcrumb__breadcrumb ul {
      justify-content: flex-start;
      flex-wrap: wrap; } }

@media screen and (max-width: 992px) {
  .breadcrumb__breadcrumb {
    margin-bottom: 0; }
  .breadcrumb__menu {
    display: none; } }

@media screen and (max-width: 576px) {
  .breadcrumb__breadcrumb {
    flex-wrap: wrap; } }

.page {
  position: relative; }
  .page .bg-bubbles-1 {
    position: absolute;
    right: 0;
    top: 15%;
    opacity: .9; }
  .page .bg-bubbles-2 {
    position: absolute;
    left: 0;
    bottom: 5%;
    opacity: .9; }
  .page .container-fluid {
    position: relative;
    z-index: 10; }

.page__heading {
  position: relative;
  overflow: hidden;
  padding-top: 40px;
  padding-bottom: 40px; }
  .page__heading .bg {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-color: #002772; }
    .page__heading .bg img, .page__heading .bg picture {
      width: 100%;
      height: 100%;
      display: block;
      object-fit: cover;
      opacity: .9; }
  .page__heading .container-fluid {
    position: relative;
    z-index: 10; }
  .page__heading h1 {
    color: #fff;
    font-weight: 900;
    font-size: 3.45rem;
    margin-bottom: 0;
    text-transform: uppercase; }
  .page__heading .page-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    margin-left: -20px;
    margin-right: -20px; }
    .page__heading .page-nav ul li {
      margin-right: 10px;
      text-transform: uppercase;
      font-weight: 900;
      font-size: 1.125rem;
      letter-spacing: 0.04em;
      position: relative; }
      .page__heading .page-nav ul li:after {
        position: absolute;
        left: 20px;
        right: 20px;
        bottom: 15px;
        border-radius: 20px;
        height: 6px;
        background-color: transparent;
        content: '';
        transition: background .3s; }
    .page__heading .page-nav ul a {
      display: block;
      color: #fff;
      padding: 25px 20px; }
    .page__heading .page-nav ul .active:after {
      background-color: #00DDFF; }

.page__heading--sm h1 {
  font-size: 2.75rem;
  text-transform: none; }

.page__heading--sm .date {
  color: #fff; }

.page__content {
  padding-top: 110px;
  padding-bottom: 110px; }
  .page__content .page-content-icon {
    text-align: center; }
    .page__content .page-content-icon img {
      margin-bottom: 1.25rem;
      height: 60px; }
    .page__content .page-content-icon p {
      text-transform: uppercase;
      font-weight: 700;
      margin-bottom: 0; }
  .page__content .page-content-icon-2 {
    margin-bottom: 1.25rem;
    height: 60px; }

.page__nav-2 {
  background: #FFFFFF;
  box-shadow: 0px 4px 100px rgba(0, 0, 0, 0.25);
  border-radius: 19px;
  padding: 45px;
  padding-top: 30px;
  padding-bottom: 30px;
  position: sticky;
  top: 115px;
  margin-top: -355px;
  z-index: 10; }
  .page__nav-2 ul {
    list-style: none;
    padding: 0;
    margin: 0; }
    .page__nav-2 ul a {
      display: block;
      color: #002772;
      padding-bottom: 20px;
      padding-top: 20px;
      border-bottom: 1px solid rgba(0, 39, 114, 0.11);
      text-transform: uppercase;
      font-weight: 900;
      letter-spacing: 0.08em;
      position: relative;
      padding-left: 30px; }
    .page__nav-2 ul li:last-child a {
      border-bottom: 0; }
    .page__nav-2 ul .icon {
      width: 15px;
      height: 10px;
      background-size: contain;
      background-position: center;
      vertical-align: middle;
      display: inline-block;
      fill: #00DDFF;
      color: #00DDFF;
      position: absolute;
      left: 0;
      top: 50%;
      transform: translateY(-50%); }
      .page__nav-2 ul .icon img, .page__nav-2 ul .icon svg {
        width: 15px;
        height: 10px;
        display: block; }
      .page__nav-2 ul .icon path, .page__nav-2 ul .icon circle, .page__nav-2 ul .icon line, .page__nav-2 ul .icon polygon, .page__nav-2 ul .icon ellipse, .page__nav-2 ul .icon svg, .page__nav-2 ul .icon use {
        fill: #00DDFF;
        color: #00DDFF; }
    .page__nav-2 ul a:hover {
      color: #00DDFF; }

.page__card .item-wrapper {
  display: block;
  border-radius: 17px;
  transition: all .3s;
  height: 100%; }

.page__card .item-wrapper:hover {
  background-color: #fff;
  box-shadow: 20px 50px 50px rgba(0, 39, 114, 0.05); }

.page__card .head {
  padding: 34px 23px;
  display: flex;
  align-items: center; }
  .page__card .head .heading {
    font-size: 1.125rem;
    color: #002772;
    font-weight: 900;
    text-transform: uppercase;
    margin: 0; }
  .page__card .head .icon {
    width: 102px;
    height: 102px;
    background-size: contain;
    background-position: center;
    vertical-align: middle;
    display: inline-block;
    margin-right: 1rem; }
    .page__card .head .icon img, .page__card .head .icon svg {
      width: 102px;
      height: 102px;
      display: block; }
  .page__card .head .icon--route {
    position: relative;
    top: 6.5px; }

.page__card .body {
  padding: 34px 23px;
  padding-top: 0; }

@media screen and (max-width: 1600px) {
  .page .bg-bubbles-1 {
    opacity: .25; }
  .page .bg-bubbles-2 {
    opacity: .25; } }

@media screen and (max-width: 992px) {
  .page__heading {
    padding-top: 60px;
    padding-bottom: 60px; }
    .page__heading h1 {
      font-size: 3rem; }
  .page__nav-2 {
    margin-top: 30px; } }

@media screen and (max-width: 767px) {
  .page__heading {
    padding-top: 50px;
    padding-bottom: 50px; }
    .page__heading h1 {
      font-size: 2.5rem; } }

@media screen and (max-width: 576px) {
  .page__heading {
    padding-top: 30px;
    padding-bottom: 30px; }
    .page__heading h1 {
      font-size: 2rem; }
  .page__content {
    padding-top: 50px;
    padding-bottom: 50px; }
  .page__nav-2 {
    padding: 25px; } }

.error {
  padding-top: 80px;
  padding-bottom: 80px; }

.error__wrapper {
  text-align: center;
  margin-bottom: 3rem; }
  .error__wrapper h1 {
    margin-bottom: 1rem; }
  .error__wrapper strong {
    display: block;
    font-size: 7rem;
    font-weight: 900;
    line-height: .9; }
  .error__wrapper .btn {
    position: relative;
    z-index: 10; }

.pricing__content {
  padding-top: 110px;
  padding-bottom: 110px;
  position: relative;
  z-index: 10; }
  .pricing__content h2 {
    color: #00d0f0;
    font-size: 1.3rem;
    letter-spacing: 0.08em;
    margin-bottom: 3rem; }
  .pricing__content h3 {
    color: #002772;
    font-size: 2.25rem;
    letter-spacing: 0.15em;
    font-weight: 900;
    margin-bottom: 1.25rem;
    text-transform: uppercase; }
  .pricing__content h4 {
    color: #002772;
    margin-bottom: 1rem; }
  .pricing__content a {
    text-decoration: underline;
    color: #002772;
    font-weight: 700; }
  .pricing__content a:hover {
    text-decoration: none; }
  .pricing__content .table-pricing {
    margin-bottom: 3rem; }
    .pricing__content .table-pricing td, .pricing__content .table-pricing th {
      padding: 1.3rem;
      text-align: center;
      border: 0;
      color: #002772; }
    .pricing__content .table-pricing th {
      font-weight: 900; }
    .pricing__content .table-pricing thead td, .pricing__content .table-pricing thead th {
      letter-spacing: 0.15em;
      color: #fff;
      text-transform: uppercase;
      font-weight: 900;
      font-size: 1.13rem; }
    .pricing__content .table-pricing tbody td, .pricing__content .table-pricing tbody th {
      background: #d3dae7; }
      .pricing__content .table-pricing tbody td:nth-child(odd), .pricing__content .table-pricing tbody th:nth-child(odd) {
        background: #ccd4e3; }
    .pricing__content .table-pricing tbody tr:nth-child(odd) td, .pricing__content .table-pricing tbody tr:nth-child(odd) th {
      background: #e4e8f0; }
      .pricing__content .table-pricing tbody tr:nth-child(odd) td:nth-child(odd), .pricing__content .table-pricing tbody tr:nth-child(odd) th:nth-child(odd) {
        background: #e0e5ee; }
    .pricing__content .table-pricing .heading td, .pricing__content .table-pricing .heading th {
      background: #002772; }
      .pricing__content .table-pricing .heading td:nth-child(2n), .pricing__content .table-pricing .heading th:nth-child(2n) {
        background: #123C8D; }
    .pricing__content .table-pricing .heading-first-row td, .pricing__content .table-pricing .heading-first-row th {
      background: #002772; }
      .pricing__content .table-pricing .heading-first-row td:nth-child(2), .pricing__content .table-pricing .heading-first-row th:nth-child(2) {
        background: #002772; }
      .pricing__content .table-pricing .heading-first-row td:nth-child(3), .pricing__content .table-pricing .heading-first-row th:nth-child(3) {
        background: #123C8D; }
    .pricing__content .table-pricing .heading-second-row td:nth-child(1), .pricing__content .table-pricing .heading-second-row th:nth-child(1) {
      background: #FA05FF; }
    .pricing__content .table-pricing .heading-second-row .price-1 {
      background: #FA05FF; }
    .pricing__content .table-pricing .heading-second-row .price-2 {
      background: #06EFFE; }
    .pricing__content .table-pricing .heading-second-row .price-3 {
      background: #B0DE4E; }
    .pricing__content .table-pricing .heading-dolphin-row td, .pricing__content .table-pricing .heading-dolphin-row th {
      background: #002772; }
      .pricing__content .table-pricing .heading-dolphin-row td:nth-child(odd), .pricing__content .table-pricing .heading-dolphin-row th:nth-child(odd) {
        background: #123C8D; }
  .pricing__content .table-striped {
    margin-bottom: 3rem; }
    .pricing__content .table-striped td, .pricing__content .table-striped th {
      padding: 1.3rem;
      border: 0;
      color: #002772; }
    .pricing__content .table-striped th {
      font-weight: 900; }
    .pricing__content .table-striped thead td, .pricing__content .table-striped thead th {
      letter-spacing: 0.15em;
      color: #fff;
      text-transform: uppercase;
      font-weight: 900;
      font-size: 1.13rem;
      background: #002772; }
    .pricing__content .table-striped tbody td, .pricing__content .table-striped tbody th {
      background: #d3dae7; }
      .pricing__content .table-striped tbody td:nth-child(odd), .pricing__content .table-striped tbody th:nth-child(odd) {
        background: #ccd4e3; }
    .pricing__content .table-striped tbody tr:nth-child(odd) td, .pricing__content .table-striped tbody tr:nth-child(odd) th {
      background: #e4e8f0; }
      .pricing__content .table-striped tbody tr:nth-child(odd) td:nth-child(odd), .pricing__content .table-striped tbody tr:nth-child(odd) th:nth-child(odd) {
        background: #e0e5ee; }
  .pricing__content .text-sm {
    font-size: .875rem; }
  .pricing__content .text-red {
    color: red; }

.pricing__info {
  background: rgba(0, 39, 114, 0.05);
  padding-top: 110px;
  padding-bottom: 110px; }
  .pricing__info a {
    text-decoration: underline;
    color: #002772;
    font-weight: 700; }
  .pricing__info a:hover {
    text-decoration: none; }

@media (max-width: 767px) {
  .pricing {
    overflow: hidden; }
    .pricing .table-wrapper-1 {
      position: relative;
      display: flex; }
      .pricing .table-wrapper-1:after {
        width: 50px;
        display: block;
        height: 100%;
        content: ''; }
      .pricing .table-wrapper-1:before {
        position: absolute;
        top: 0;
        bottom: 20px;
        right: -20px;
        width: 35%;
        background: linear-gradient(90deg, rgba(255, 255, 255, 0) 30%, #FFFFFF 100%);
        content: "";
        pointer-events: none; }
    .pricing .table-wrapper-2 {
      overflow-x: scroll; }
    .pricing .table {
      width: 900px; } }

.wysiwyg-content p, .wysiwyg-content ul, .wysiwyg-content ol, .wysiwyg-content table {
  line-height: 1.5; }

.wysiwyg-content h2, .wysiwyg-content h3, .wysiwyg-content h4, .wysiwyg-content h5, .wysiwyg-content h6 {
  margin-bottom: 1.25rem; }

.wysiwyg-content a {
  color: #002772;
  font-weight: 700;
  border-bottom: 2px solid #00DDFF;
  text-decoration: none; }

.wysiwyg-content a:hover {
  color: #002772;
  text-decoration: none;
  border-bottom: 2px solid transparent; }

.wysiwyg-content h2 {
  font-weight: 700;
  font-size: 2.25rem;
  line-height: 1.23;
  margin-bottom: 1.75rem; }

.wysiwyg-content h3 {
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 1.23; }

.wysiwyg-content table {
  width: 100% !important; }

.pagination {
  position: relative;
  margin-top: 3rem;
  text-align: center; }

.pagination__ul {
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  padding: 0;
  margin: 0;
  position: relative;
  z-index: 10;
  font-size: .875rem; }
  .pagination__ul ul {
    list-style: none;
    padding: 0;
    margin: 0;
    margin-left: auto; }

.pagination__item {
  display: inline-block;
  line-height: normal;
  margin-right: 5px;
  margin-bottom: 5px;
  font-weight: 700;
  color: #002772;
  background-color: #ECF1F3;
  border-radius: 2px; }
  .pagination__item a, .pagination__item .link {
    display: block;
    color: #394A59;
    padding: 22px;
    padding-bottom: 14px;
    padding-top: 14px;
    transition: all .3s; }
  .pagination__item .icon {
    width: 16px;
    height: 16px;
    background-size: contain;
    background-position: center;
    vertical-align: middle;
    display: inline-block;
    fill: #565656;
    color: #565656; }
    .pagination__item .icon img, .pagination__item .icon svg {
      width: 16px;
      height: 16px;
      display: block; }
    .pagination__item .icon path, .pagination__item .icon circle, .pagination__item .icon line, .pagination__item .icon polygon, .pagination__item .icon ellipse, .pagination__item .icon svg, .pagination__item .icon use {
      fill: #565656;
      color: #565656; }
  .pagination__item a:hover {
    text-decoration: none;
    background-color: #00DDFF;
    color: #fff; }
    .pagination__item a:hover .icon {
      fill: #00DDFF;
      color: #00DDFF;
      opacity: 1; }
      .pagination__item a:hover .icon path, .pagination__item a:hover .icon circle, .pagination__item a:hover .icon line, .pagination__item a:hover .icon polygon, .pagination__item a:hover .icon ellipse, .pagination__item a:hover .icon svg, .pagination__item a:hover .icon use {
        fill: #00DDFF;
        color: #00DDFF; }

.pagination__item--current {
  padding: 22px;
  padding-bottom: 14px;
  padding-top: 14px;
  font-weight: 400;
  background-color: transparent;
  color: #002772;
  background-color: #f9fcfd;
  opacity: .65; }
  .pagination__item--current a {
    color: #002772; }

.pagination__item--dots {
  padding: 22px;
  padding-bottom: 14px;
  padding-top: 14px;
  border-radius: 2px;
  background: transparent;
  border-color: transparent; }

.pagination__item--disabled {
  opacity: .21; }

.pagination__item--disabled-arrow {
  display: none; }

.pagination__item--arrow a, .pagination__item--arrow .link {
  color: #394A59;
  font-weight: 300;
  text-transform: uppercase; }

@media screen and (max-width: 992px) {
  .pagination .btn-wrapper {
    justify-content: flex-start;
    right: auto; }
  .pagination__ul {
    flex-wrap: wrap; } }

@media screen and (max-width: 767px) {
  .pagination__ul {
    justify-content: center; }
  .pagination__item--more, .pagination__item--dots, .pagination__item--current {
    padding: 10px;
    padding-bottom: 5px;
    padding-top: 5px; }
  .pagination__item {
    margin-bottom: .75rem; }
    .pagination__item a {
      padding: 10px;
      padding-bottom: 5px;
      padding-top: 5px; } }

.faq .container-fluid {
  position: relative;
  z-index: 10; }

.faq .faq-wrapper {
  padding-bottom: 110px;
  position: relative; }
  .faq .faq-wrapper:after {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 30px;
    content: "";
    display: block;
    background: rgba(0, 39, 114, 0.05); }

.faq__content {
  padding-top: 110px;
  padding-bottom: 90px; }

.faq__item {
  background: #FFFFFF;
  box-shadow: 0px 4px 10px rgba(0, 39, 114, 0.12);
  border-radius: 30px;
  margin-bottom: 1rem; }
  .faq__item h2 {
    font-size: 1.2rem;
    font-weight: 700;
    margin: 0;
    padding: 0;
    color: #002772;
    text-transform: none;
    letter-spacing: 0;
    flex-grow: 1;
    text-align: left; }
  .faq__item .faq-item-btn {
    border: 0;
    background: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    padding: 21px;
    padding-left: 28px;
    padding-right: 28px;
    width: 100%;
    box-sizing: border-box; }
  .faq__item .faq-item-icon {
    width: 18px;
    height: 18px;
    position: relative;
    margin-right: 1.5rem; }
    .faq__item .faq-item-icon:after {
      width: 18px;
      height: 3px;
      content: "";
      background-color: #00DDFF;
      display: block;
      position: absolute;
      left: 0;
      right: 0;
      top: 50%;
      transform: translateY(-50%); }
    .faq__item .faq-item-icon:before {
      width: 18px;
      height: 3px;
      content: "";
      background-color: #00DDFF;
      display: block;
      position: absolute;
      left: 0;
      right: 0;
      top: 50%;
      transform: translateY(-50%) rotate(90deg);
      transition: all .3s; }
  .faq__item .faq-item-btn:not(.collapsed) .faq-item-icon::before {
    transform: translateY(-50%) rotate(0); }
  .faq__item .faq-item-content .wrapper {
    display: block;
    padding: 28px;
    padding-top: 0;
    padding-bottom: 21px; }
  .faq__item .faq-item-content p:last-child {
    margin-bottom: 0; }

.contact {
  overflow: hidden; }

.contact__info {
  padding-top: 80px;
  padding-bottom: 80px; }
  .contact__info h2 {
    font-size: 1.2rem;
    margin-bottom: 1.25rem; }
  .contact__info table {
    margin-bottom: 1rem; }
  .contact__info .mail {
    margin-bottom: 1rem;
    display: block; }
  .contact__info .phone {
    font-weight: 900;
    display: block;
    font-size: 1.6rem;
    color: #002772;
    margin-bottom: 1.25rem;
    padding-left: 38px;
    position: relative;
    line-height: 1.15; }
    .contact__info .phone .text-sm {
      font-size: .875rem;
      font-weight: 400;
      display: block; }
    .contact__info .phone .icon {
      width: 23px;
      height: 23px;
      background-size: contain;
      background-position: center;
      vertical-align: middle;
      display: inline-block;
      fill: #00DDFF;
      color: #00DDFF;
      margin-right: .876rem;
      position: absolute;
      left: 0;
      top: 50%;
      transform: translateY(-50%); }
      .contact__info .phone .icon img, .contact__info .phone .icon svg {
        width: 23px;
        height: 23px;
        display: block; }
      .contact__info .phone .icon path, .contact__info .phone .icon circle, .contact__info .phone .icon line, .contact__info .phone .icon polygon, .contact__info .phone .icon ellipse, .contact__info .phone .icon svg, .contact__info .phone .icon use {
        fill: #00DDFF;
        color: #00DDFF; }
  .contact__info table {
    margin-bottom: 1rem; }
    .contact__info table th {
      padding-left: 0;
      padding-right: .35rem; }
  .contact__info a:not(.phone) {
    text-decoration: underline;
    color: #002772; }
  .contact__info a:hover {
    text-decoration: none; }

.contact__form {
  padding-top: 80px;
  padding-bottom: 80px;
  position: relative;
  height: 100%; }
  .contact__form h2 {
    margin-bottom: 2rem; }
  .contact__form .form-wrapper {
    position: relative;
    z-index: 10;
    max-width: 508px;
    margin: 0 auto;
    display: block;
    padding-left: 15px;
    padding-right: 15px; }
  .contact__form:after {
    position: absolute;
    left: 0;
    right: -9999px;
    top: 0;
    bottom: 0;
    content: "";
    background: rgba(0, 39, 114, 0.05); }
  .contact__form .form-group {
    margin-bottom: 1rem; }
  .contact__form input, .contact__form textarea {
    background: #FFFFFF;
    box-shadow: 0px 4px 10px rgba(0, 39, 114, 0.12);
    border-radius: 30px;
    border: 0; }
  .contact__form textarea {
    height: 70px; }

.contact__map {
  width: 100%;
  display: block;
  height: 600px;
  background: rgba(0, 39, 114, 0.1);
  position: relative;
  z-index: 5; }

@media screen and (max-width: 992px) {
  .contact__form .form-wrapper {
    padding: 0;
    max-width: none; }
  .contact__form:after {
    left: -15px;
    right: -15px; } }

@media screen and (max-width: 576px) {
  .contact__info {
    padding-top: 50px;
    padding-bottom: 50px; }
  .contact__form {
    padding-top: 50px;
    padding-bottom: 50px; } }

.services {
  padding-top: 100px;
  padding-bottom: 100px; }

.services__item {
  margin-bottom: 1rem; }
  .services__item .thumb {
    height: 250px;
    overflow: hidden; }
    .services__item .thumb img, .services__item .thumb picture {
      width: 100%;
      height: 100%;
      display: block;
      object-fit: cover;
      transition: all .3s; }
  .services__item .item-wrapper {
    display: block;
    position: relative; }
  .services__item h2 {
    position: absolute;
    left: 0;
    bottom: 0;
    padding: 40px;
    font-weight: 900;
    color: #fff;
    font-size: 1.73rem;
    margin: 0;
    max-width: 475px;
    letter-spacing: 0;
    text-transform: none;
    z-index: 5; }
  .services__item .item-wrapper:hover .thumb img {
    transform: scale(1.1, 1.1); }

@media screen and (max-width: 576px) {
  .services__item h2 {
    padding: 20px; } }

.attractions {
  padding-top: 0;
  padding-bottom: 0; }
  .attractions .attractions-container {
    width: 100%;
    max-width: 1920px;
    margin: 0 auto;
    display: block; }

.attractions__item .item-content {
  padding: 50px;
  height: 100%;
  display: flex;
  align-items: center;
  width: 100%; }

.attractions__item .item-content-wrapper {
  width: 100%; }

.attractions__item .item-thumb {
  height: 100%; }
  .attractions__item .item-thumb img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover; }

.attractions__item h2 {
  margin-bottom: 1.5rem; }

.attractions__item p:last-child {
  margin-bottom: 0; }

.attractions__categories {
  position: relative;
  padding-top: 45px;
  padding-bottom: 45px; }
  .attractions__categories .bg {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-color: #002772; }
    .attractions__categories .bg img, .attractions__categories .bg picture {
      width: 100%;
      height: 100%;
      display: block;
      object-fit: cover;
      backdrop-filter: blur(20px);
      opacity: .92; }
  .attractions__categories .container-fluid {
    position: relative;
    z-index: 10; }
  .attractions__categories .item {
    text-align: center;
    position: relative; }
    .attractions__categories .item:after {
      position: absolute;
      left: 0;
      right: 0;
      bottom: 0;
      max-width: 113px;
      height: 7px;
      display: block;
      margin: 0 auto;
      border-radius: 29px;
      background: #FB9218;
      content: "";
      pointer-events: none; }
    .attractions__categories .item .icon {
      width: 48px;
      height: 48px;
      background-size: contain;
      background-position: center;
      vertical-align: middle;
      display: inline-block;
      fill: #fff;
      color: #fff;
      display: block;
      margin: 0 auto;
      margin-bottom: 2.5rem; }
      .attractions__categories .item .icon img, .attractions__categories .item .icon svg {
        width: 48px;
        height: 48px;
        display: block; }
      .attractions__categories .item .icon path, .attractions__categories .item .icon circle, .attractions__categories .item .icon line, .attractions__categories .item .icon polygon, .attractions__categories .item .icon ellipse, .attractions__categories .item .icon svg, .attractions__categories .item .icon use {
        fill: #fff;
        color: #fff; }
    .attractions__categories .item h2, .attractions__categories .item .item-heading {
      font-size: 1rem;
      letter-spacing: 0.15em;
      color: #fff;
      font-weight: 700;
      margin-bottom: 0; }
  .attractions__categories .item-wrapper {
    padding: 30px;
    border-radius: 23px;
    display: block;
    height: 100%; }
  .attractions__categories .item-wrapper:hover, .attractions__categories .item-wrapper.active {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px); }
  .attractions__categories .item:nth-child(1):after {
    background: #FB9218; }
  .attractions__categories .item:nth-child(1):hover:after {
    box-shadow: 5px 0px 25px 5px #FB9218; }
  .attractions__categories .item:nth-child(2):after {
    background: #B0DE4E; }
  .attractions__categories .item:nth-child(2):hover:after {
    box-shadow: 5px 0px 25px 5px #B0DE4E; }
  .attractions__categories .item:nth-child(3):after {
    background: #FB185C; }
  .attractions__categories .item:nth-child(3):hover:after {
    box-shadow: 5px 0px 25px 5px #FB185C; }
  .attractions__categories .item:nth-child(4):after {
    background: #FFE607; }
  .attractions__categories .item:nth-child(4):hover:after {
    box-shadow: 5px 0px 25px 5px #FFE607; }
  .attractions__categories .item:nth-child(5):after {
    background: #06EFFE; }
  .attractions__categories .item:nth-child(5):hover:after {
    box-shadow: 5px 0px 25px 5px #06EFFE; }
  .attractions__categories .item:nth-child(6):after {
    background: #FA05FF; }
  .attractions__categories .item:nth-child(6):hover:after {
    box-shadow: 5px 0px 25px 5px #FA05FF; }
  .attractions__categories .item:nth-child(7):after {
    background: #3888FF; }
  .attractions__categories .item:nth-child(7):hover:after {
    box-shadow: 5px 0px 25px 5px #3888FF; }
  .attractions__categories .item:hover:after {
    animation: width .3s linear forwards; }

@keyframes width {
  0% {
    opacity: 1; }
  50% {
    opacity: 0;
    max-width: 185px; }
  100% {
    opacity: 1;
    transform: translateX(0); } }

.attractions__categories--sm {
  padding-top: 0;
  padding-bottom: 0; }
  .attractions__categories--sm .item {
    margin-bottom: 1rem;
    margin-top: 1rem; }
    .attractions__categories--sm .item .icon {
      width: 30px;
      height: 30px;
      background-size: contain;
      background-position: center;
      vertical-align: middle;
      display: inline-block;
      margin-bottom: 1.25rem; }
      .attractions__categories--sm .item .icon img, .attractions__categories--sm .item .icon svg {
        width: 30px;
        height: 30px;
        display: block; }
    .attractions__categories--sm .item .item-heading {
      font-size: .875rem; }
  .attractions__categories--sm .item-wrapper {
    padding: 25px 15px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px); }
  .attractions__categories--sm .item-wrapper:hover, .attractions__categories--sm .item-wrapper.active {
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(20px); }

@media screen and (max-width: 576px) {
  .attractions__item .item-content {
    padding: 30px 15px; } }

.files-list {
  background: radial-gradient(152.01% 152.01% at 50% 0%, #FFFFFF 0%, #EFF3F5 100%);
  padding-top: 70px;
  padding-bottom: 70px;
  margin-bottom: 70px; }
  .files-list ul {
    list-style: none;
    padding: 0; }

.files-list--intranet {
  background: none;
  margin-bottom: 0;
  padding-top: 50px;
  padding-bottom: 0; }

.files-list--intranet-2 {
  background: none;
  margin-bottom: 0;
  padding-top: 0;
  padding-bottom: 15px; }

.files-list__item .item-wrapper {
  display: flex;
  width: 100%;
  align-items: center;
  color: #002772;
  padding: 12px;
  border-top: 1px solid #ECF1F3; }

.files-list__item .size {
  margin-left: auto;
  margin-right: 0;
  color: #394A59;
  min-width: 100px;
  padding-left: .5rem;
  font-size: .75rem;
  text-align: right; }

.files-list__item .icon {
  margin-right: 1rem;
  max-width: 23px; }

.files-list__item:nth-last-child(1), .files-list__item:nth-last-child(2) {
  border-bottom: 1px solid #ECF1F3; }

.files-list__item .item-wrapper:hover {
  text-decoration: none;
  color: #00DDFF; }

.files-list__item--2 {
  border-top: 1px solid #dbe3e6; }

.gallery {
  margin-bottom: 110px; }
  .gallery h2 {
    text-align: left;
    margin-bottom: 1.25rem;
    font-size: 1.9375rem; }
  .gallery .gallery-wrapper {
    position: relative;
    margin-left: -8px;
    margin-right: -8px; }

.gallery--intranet {
  margin-top: 50px;
  margin-bottom: 0; }

.gallery__item {
  width: calc(100% / 4 - 16px);
  margin: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
  padding: 0;
  z-index: 2; }
  .gallery__item img {
    width: 100%; }
  .gallery__item:hover {
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.25); }
    .gallery__item:hover .more {
      right: 0;
      bottom: 0; }

.gallery__item--lg {
  width: calc(100% / 6 - 16px); }

.gallery--intranet {
  margin-top: 50px;
  margin-bottom: 0; }
  .gallery--intranet .gallery__item {
    width: calc(100% / 3 - 16px); }

@media screen and (max-width: 576px) {
  .gallery__item {
    width: calc(100% / 2 - 16px); }
  .gallery--intranet .gallery__item {
    width: calc(100% / 2 - 16px); } }
