.outer-history-carousel {
/* offside-js 1.4.0 26-03-2018
* Minimal JavaScript kit without library dependencies to push things off-canvas using just class manipulation
* https://github.com/toomuchdesign/offside.git
*
* by Andrea Carraro
* Available under the MIT license
*/

/* Off-canvas element CSS */
.offside {
    position: fixed; /* Does not play well with some old browsers (see: README) */
    width: 200px;
    height: 100%;
    top: 0;
    z-index: 9999;
    overflow: auto;
    -webkit-overflow-scrolling: touch; /* enables momentum scrolling in iOS overflow elements */
}

/* Left off-canvas elements default status: out of the page */
.offside,
.offside--left {
    left: -200px;
}

/* Right off-canvas elements default status: out of the page */
.offside--right {
    left: auto;
    right: -200px;
}

/*
 * Left off-canvas element is open:
 * - off-canvas element slides in
 * - container elements slides out
 */
.offside--left.is-open,
.offside-js--is-left .offside-sliding-element {
    -webkit-transform: translate3d(200px, 0, 0);
    -moz-transform: translate3d(200px, 0, 0);
    -ms-transform: translate3d(200px, 0, 0);
    -o-transform: translate3d(200px, 0, 0);
    transform: translate3d(200px, 0, 0);
}

/*
 * Right off-canvas element is open:
 * - off-canvas element slides in
 * - container elements slides out
 */
.offside--right.is-open,
.offside-js--is-right .offside-sliding-element {
    -webkit-transform: translate3d(-200px, 0, 0);
    -moz-transform: translate3d(-200px, 0, 0);
    -ms-transform: translate3d(-200px, 0, 0);
    -o-transform: translate3d(-200px, 0, 0);
    transform: translate3d(-200px, 0, 0);
}

/* Elements Transitions */
.offside-js--interact .offside,
.offside-js--interact .offside-sliding-element {
    -webkit-transition: -webkit-transform .2s cubic-bezier(.16, .68, .43, .99);
    -moz-transition: -moz-transform .2s cubic-bezier(.16, .68, .43, .99);
    -o-transition: -o-transform .2s cubic-bezier(.16, .68, .43, .99);
    transition: transform .2s cubic-bezier(.16, .68, .43, .99);
    
    /* improves performance issues on mobile*/
    -webkit-backface-visibility: hidden;
    -webkit-perspective: 1000;
}

/* Body overflow */
.offside-js--init {
    overflow-x: hidden;
}



/* Fallback movements for browser not supporting CSS 3d Transitions
----------------------------------------------- */

/* Modernizr false negative csstransforms3d fix, reset CSS 3d Transitions */
.no-csstransforms3d .offside {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.no-csstransforms3d .offside-sliding-element {
    overflow-x: hidden;
    position: relative;
}

/* Element is open: off-canvas element slides in */
.no-csstransforms3d .offside--left.is-open {
    left: 0;
}

.no-csstransforms3d .offside--right.is-open {
    right: 0;
}

/* Element is open: container elements slide out */
.no-csstransforms3d > .offside-js--is-left .offside-sliding-element {
    right: -200px;
}

.no-csstransforms3d > .offside-js--is-right .offside-sliding-element {
    left: -200px;
}/* 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,
.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;
	}

.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-tile {
	will-change: opacity;
	}
.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;
	}
.leaflet-zoom-anim .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: 0;
	}
.leaflet-container a {
	color: #0078A8;
	}
.leaflet-container a.leaflet-active {
	outline: 2px solid orange;
	}
.leaflet-zoom-box {
	border: 2px dotted #38f;
	background: rgba(255,255,255,0.5);
	}


/* general typography */
.leaflet-container {
	font: 12px/1.5 "Helvetica Neue", Arial, Helvetica, sans-serif;
	}


/* general toolbar styles */

.leaflet-bar {
	box-shadow: 0 1px 5px rgba(0,0,0,0.65);
	border-radius: 4px;
	}
.leaflet-bar a,
.leaflet-bar a:hover {
	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 {
	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(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABoAAAAaCAQAAAADQ4RFAAACf0lEQVR4AY1UM3gkARTePdvdoTxXKc+qTl3aU5U6b2Kbkz3Gtq3Zw6ziLGNPzrYx7946Tr6/ee/XeCQ4D3ykPtL5tHno4n0d/h3+xfuWHGLX81cn7r0iTNzjr7LrlxCqPtkbTQEHeqOrTy4Yyt3VCi/IOB0v7rVC7q45Q3Gr5K6jt+3Gl5nCoDD4MtO+j96Wu8atmhGqcNGHObuf8OM/x3AMx38+4Z2sPqzCxRFK2aF2e5Jol56XTLyggAMTL56XOMoS1W4pOyjUcGGQdZxU6qRh7B9Zp+PfpOFlqt0zyDZckPi1ttmIp03jX8gyJ8a/PG2yutpS/Vol7peZIbZcKBAEEheEIAgFbDkz5H6Zrkm2hVWGiXKiF4Ycw0RWKdtC16Q7qe3X4iOMxruonzegJzWaXFrU9utOSsLUmrc0YjeWYjCW4PDMADElpJSSQ0vQvA1Tm6/JlKnqFs1EGyZiFCqnRZTEJJJiKRYzVYzJck2Rm6P4iH+cmSY0YzimYa8l0EtTODFWhcMIMVqdsI2uiTvKmTisIDHJ3od5GILVhBCarCfVRmo4uTjkhrhzkiBV7SsaqS+TzrzM1qpGGUFt28pIySQHR6h7F6KSwGWm97ay+Z+ZqMcEjEWebE7wxCSQwpkhJqoZA5ivCdZDjJepuJ9IQjGGUmuXJdBFUygxVqVsxFsLMbDe8ZbDYVCGKxs+W080max1hFCarCfV+C1KATwcnvE9gRRuMP2prdbWGowm1KB1y+zwMMENkM755cJ2yPDtqhTI6ED1M/82yIDtC/4j4BijjeObflpO9I9MwXTCsSX8jWAFeHr05WoLTJ5G8IQVS/7vwR6ohirYM7f6HzYpogfS3R2OAAAAAElFTkSuQmCC);
	width: 36px;
	height: 36px;
	}
.leaflet-retina .leaflet-control-layers-toggle {
	background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADQAAAA0CAQAAABvcdNgAAAEsklEQVR4AWL4TydIhpZK1kpWOlg0w3ZXP6D2soBtG42jeI6ZmQTHzAxiTbSJsYLjO9HhP+WOmcuhciVnmHVQcJnp7DFvScowZorad/+V/fVzMdMT2g9Cv9guXGv/7pYOrXh2U+RRR3dSd9JRx6bIFc/ekqHI29JC6pJ5ZEh1yWkhkbcFeSjxgx3L2m1cb1C7bceyxA+CNjT/Ifff+/kDk2u/w/33/IeCMOSaWZ4glosqT3DNnNZQ7Cs58/3Ce5HL78iZH/vKVIaYlqzfdLu8Vi7dnvUbEza5Idt36tquZFldl6N5Z/POLof0XLK61mZCmJSWjVF9tEjUluu74IUXvgttuVIHE7YxSkaYhJZam7yiM9Pv82JYfl9nptxZaxMJE4YSPty+vF0+Y2up9d3wwijfjZbabqm/3bZ9ecKHsiGmRflnn1MW4pjHf9oLufyn2z3y1D6n8g8TZhxyzipLNPnAUpsOiuWimg52psrTZYnOWYNDTMuWBWa0tJb4rgq1UvmutpaYEbZlwU3CLJm/ayYjHW5/h7xWLn9Hh1vepDkyf7dE7MtT5LR4e7yYpHrkhOUpEfssBLq2pPhAqoSWKUkk7EDqkmK6RrCEzqDjhNDWNE+XSMvkJRDWlZTmCW0l0PHQGRZY5t1L83kT0Y3l2SItk5JAWHl2dCOBm+fPu3fo5/3v61RMCO9Jx2EEYYhb0rmNQMX/vm7gqOEJLcXTGw3CAuRNeyaPWwjR8PRqKQ1PDA/dpv+on9Shox52WFnx0KY8onHayrJzm87i5h9xGw/tfkev0jGsQizqezUKjk12hBMKJ4kbCqGPVNXudyyrShovGw5CgxsRICxF6aRmSjlBnHRzg7Gx8fKqEubI2rahQYdR1YgDIRQO7JvQyD52hoIQx0mxa0ODtW2Iozn1le2iIRdzwWewedyZzewidueOGqlsn1MvcnQpuVwLGG3/IR1hIKxCjelIDZ8ldqWz25jWAsnldEnK0Zxro19TGVb2ffIZEsIO89EIEDvKMPrzmBOQcKQ+rroye6NgRRxqR4U8EAkz0CL6uSGOm6KQCdWjvjRiSP1BPalCRS5iQYiEIvxuBMJEWgzSoHADcVMuN7IuqqTeyUPq22qFimFtxDyBBJEwNyt6TM88blFHao/6tWWhuuOM4SAK4EI4QmFHA+SEyWlp4EQoJ13cYGzMu7yszEIBOm2rVmHUNqwAIQabISNMRstmdhNWcFLsSm+0tjJH1MdRxO5Nx0WDMhCtgD6OKgZeljJqJKc9po8juskR9XN0Y1lZ3mWjLR9JCO1jRDMd0fpYC2VnvjBSEFg7wBENc0R9HFlb0xvF1+TBEpF68d+DHR6IOWVv2BECtxo46hOFUBd/APU57WIoEwJhIi2CdpyZX0m93BZicktMj1AS9dClteUFAUNUIEygRZCtik5zSxI9MubTBH1GOiHsiLJ3OCoSZkILa9PxiN0EbvhsAo8tdAf9Seepd36lGWHmtNANTv5Jd0z4QYyeo/UEJqxKRpg5LZx6btLPsOaEmdMyxYdlc8LMaJnikDlhclqmPiQnTEpLUIZEwkRagjYkEibQErwhkTAKCLQEbUgkzJQWc/0PstHHcfEdQ+UAAAAASUVORK5CYII=);
	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;
	}
.leaflet-control-layers-separator {
	height: 0;
	border-top: 1px solid #ddd;
	margin: 5px -10px 5px -6px;
	}

/* Default icon URLs */
.leaflet-default-icon-path {
	background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABkAAAApCAYAAADAk4LOAAAFgUlEQVR4Aa1XA5BjWRTN2oW17d3YaZtr2962HUzbDNpjszW24mRt28p47v7zq/bXZtrp/lWnXr337j3nPCe85NcypgSFdugCpW5YoDAMRaIMqRi6aKq5E3YqDQO3qAwjVWrD8Ncq/RBpykd8oZUb/kaJutow8r1aP9II0WmLKLIsJyv1w/kqw9Ch2MYdB++12Onxee/QMwvf4/Dk/Lfp/i4nxTXtOoQ4pW5Aj7wpici1A9erdAN2OH64x8OSP9j3Ft3b7aWkTg/Fm91siTra0f9on5sQr9INejH6CUUUpavjFNq1B+Oadhxmnfa8RfEmN8VNAsQhPqF55xHkMzz3jSmChWU6f7/XZKNH+9+hBLOHYozuKQPxyMPUKkrX/K0uWnfFaJGS1QPRtZsOPtr3NsW0uyh6NNCOkU3Yz+bXbT3I8G3xE5EXLXtCXbbqwCO9zPQYPRTZ5vIDXD7U+w7rFDEoUUf7ibHIR4y6bLVPXrz8JVZEql13trxwue/uDivd3fkWRbS6/IA2bID4uk0UpF1N8qLlbBlXs4Ee7HLTfV1j54APvODnSfOWBqtKVvjgLKzF5YdEk5ewRkGlK0i33Eofffc7HT56jD7/6U+qH3Cx7SBLNntH5YIPvODnyfIXZYRVDPqgHtLs5ABHD3YzLuespb7t79FY34DjMwrVrcTuwlT55YMPvOBnRrJ4VXTdNnYug5ucHLBjEpt30701A3Ts+HEa73u6dT3FNWwflY86eMHPk+Yu+i6pzUpRrW7SNDg5JHR4KapmM5Wv2E8Tfcb1HoqqHMHU+uWDD7zg54mz5/2BSnizi9T1Dg4QQXLToGNCkb6tb1NU+QAlGr1++eADrzhn/u8Q2YZhQVlZ5+CAOtqfbhmaUCS1ezNFVm2imDbPmPng5wmz+gwh+oHDce0eUtQ6OGDIyR0uUhUsoO3vfDmmgOezH0mZN59x7MBi++WDL1g/eEiU3avlidO671bkLfwbw5XV2P8Pzo0ydy4t2/0eu33xYSOMOD8hTf4CrBtGMSoXfPLchX+J0ruSePw3LZeK0juPJbYzrhkH0io7B3k164hiGvawhOKMLkrQLyVpZg8rHFW7E2uHOL888IBPlNZ1FPzstSJM694fWr6RwpvcJK60+0HCILTBzZLFNdtAzJaohze60T8qBzyh5ZuOg5e7uwQppofEmf2++DYvmySqGBuKaicF1blQjhuHdvCIMvp8whTTfZzI7RldpwtSzL+F1+wkdZ2TBOW2gIF88PBTzD/gpeREAMEbxnJcaJHNHrpzji0gQCS6hdkEeYt9DF/2qPcEC8RM28Hwmr3sdNyht00byAut2k3gufWNtgtOEOFGUwcXWNDbdNbpgBGxEvKkOQsxivJx33iow0Vw5S6SVTrpVq11ysA2Rp7gTfPfktc6zhtXBBC+adRLshf6sG2RfHPZ5EAc4sVZ83yCN00Fk/4kggu40ZTvIEm5g24qtU4KjBrx/BTTH8ifVASAG7gKrnWxJDcU7x8X6Ecczhm3o6YicvsLXWfh3Ch1W0k8x0nXF+0fFxgt4phz8QvypiwCCFKMqXCnqXExjq10beH+UUA7+nG6mdG/Pu0f3LgFcGrl2s0kNNjpmoJ9o4B29CMO8dMT4Q5ox8uitF6fqsrJOr8qnwNbRzv6hSnG5wP+64C7h9lp30hKNtKdWjtdkbuPA19nJ7Tz3zR/ibgARbhb4AlhavcBebmTHcFl2fvYEnW0ox9xMxKBS8btJ+KiEbq9zA4RthQXDhPa0T9TEe69gWupwc6uBUphquXgf+/FrIjweHQS4/pduMe5ERUMHUd9xv8ZR98CxkS4F2n3EUrUZ10EYNw7BWm9x1GiPssi3GgiGRDKWRYZfXlON+dfNbM+GgIwYdwAAAAASUVORK5CYII=);
	}


/* attribution and scale controls */

.leaflet-container .leaflet-control-attribution {
	background: #fff;
	background: rgba(255, 255, 255, 0.7);
	margin: 0;
	}
.leaflet-control-attribution,
.leaflet-control-scale-line {
	padding: 0 5px;
	color: #333;
	}
.leaflet-control-attribution a {
	text-decoration: none;
	}
.leaflet-control-attribution a:hover {
	text-decoration: underline;
	}
.leaflet-container .leaflet-control-attribution,
.leaflet-container .leaflet-control-scale {
	font-size: 11px;
	}
.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;
	font-size: 11px;
	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 19px;
	line-height: 1.4;
	}
.leaflet-popup-content p {
	margin: 18px 0;
	}
.leaflet-popup-tip-container {
	width: 40px;
	height: 20px;
	position: absolute;
	left: 50%;
	margin-left: -20px;
	overflow: hidden;
	pointer-events: none;
	}
.leaflet-popup-tip {
	width: 17px;
	height: 17px;
	padding: 1px;

	margin: -10px auto 0;

	-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;
	padding: 4px 4px 0 0;
	border: none;
	text-align: center;
	width: 18px;
	height: 14px;
	font: 16px/14px Tahoma, Verdana, sans-serif;
	color: #c3c3c3;
	text-decoration: none;
	font-weight: bold;
	background: transparent;
	}
.leaflet-container a.leaflet-popup-close-button:hover {
	color: #999;
	}
.leaflet-popup-scrolled {
	overflow: auto;
	border-bottom: 1px solid #ddd;
	border-top: 1px solid #ddd;
	}

.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-popup-tip-container {
	margin-top: -1px;
	}

.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-clickable {
	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;
	}
[data-simplebar] {
  position: relative;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-content: flex-start;
  align-items: flex-start;
}

.simplebar-wrapper {
  overflow: hidden;
  width: inherit;
  height: inherit;
  max-width: inherit;
  max-height: inherit;
}

.simplebar-mask {
  direction: inherit;
  position: absolute;
  overflow: hidden;
  padding: 0;
  margin: 0;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  width: auto !important;
  height: auto !important;
  z-index: 0;
}

.simplebar-offset {
  direction: inherit !important;
  box-sizing: inherit !important;
  resize: none !important;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  padding: 0;
  margin: 0;
  -webkit-overflow-scrolling: touch;
}

.simplebar-content-wrapper {
  direction: inherit;
  box-sizing: border-box !important;
  position: relative;
  display: block;
  height: 100%; /* Required for horizontal native scrollbar to not appear if parent is taller than natural height */
  width: auto;
  max-width: 100%; /* Not required for horizontal scroll to trigger */
  max-height: 100%; /* Needed for vertical scroll to trigger */
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.simplebar-content-wrapper::-webkit-scrollbar,
.simplebar-hide-scrollbar::-webkit-scrollbar {
  width: 0;
  height: 0;
}

.simplebar-content:before,
.simplebar-content:after {
  content: ' ';
  display: table;
}

.simplebar-placeholder {
  max-height: 100%;
  max-width: 100%;
  width: 100%;
  pointer-events: none;
}

.simplebar-height-auto-observer-wrapper {
  box-sizing: inherit !important;
  height: 100%;
  width: 100%;
  max-width: 1px;
  position: relative;
  float: left;
  max-height: 1px;
  overflow: hidden;
  z-index: -1;
  padding: 0;
  margin: 0;
  pointer-events: none;
  flex-grow: inherit;
  flex-shrink: 0;
  flex-basis: 0;
}

.simplebar-height-auto-observer {
  box-sizing: inherit;
  display: block;
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  height: 1000%;
  width: 1000%;
  min-height: 1px;
  min-width: 1px;
  overflow: hidden;
  pointer-events: none;
  z-index: -1;
}

.simplebar-track {
  z-index: 1;
  position: absolute;
  right: 0;
  bottom: 0;
  pointer-events: none;
  overflow: hidden;
}

[data-simplebar].simplebar-dragging .simplebar-content {
  pointer-events: none;
  user-select: none;
  -webkit-user-select: none;
}

[data-simplebar].simplebar-dragging .simplebar-track {
  pointer-events: all;
}

.simplebar-scrollbar {
  position: absolute;
  left: 0;
  right: 0;
  min-height: 10px;
}

.simplebar-scrollbar:before {
  position: absolute;
  content: '';
  background: black;
  border-radius: 7px;
  left: 2px;
  right: 2px;
  opacity: 0;
  transition: opacity 0.2s linear;
}

.simplebar-scrollbar.simplebar-visible:before {
  /* When hovered, remove all transitions from drag handle */
  opacity: 0.5;
  transition: opacity 0s linear;
}

.simplebar-track.simplebar-vertical {
  top: 0;
  width: 11px;
}

.simplebar-track.simplebar-vertical .simplebar-scrollbar:before {
  top: 2px;
  bottom: 2px;
}

.simplebar-track.simplebar-horizontal {
  left: 0;
  height: 11px;
}

.simplebar-track.simplebar-horizontal .simplebar-scrollbar:before {
  height: 100%;
  left: 2px;
  right: 2px;
}

.simplebar-track.simplebar-horizontal .simplebar-scrollbar {
  right: auto;
  left: 0;
  top: 2px;
  height: 7px;
  min-height: 0;
  min-width: 10px;
  width: auto;
}

/* Rtl support */
[data-simplebar-direction='rtl'] .simplebar-track.simplebar-vertical {
  right: auto;
  left: 0;
}

.hs-dummy-scrollbar-size {
  direction: rtl;
  position: fixed;
  opacity: 0;
  visibility: hidden;
  height: 500px;
  width: 500px;
  overflow-y: hidden;
  overflow-x: scroll;
}

.simplebar-hide-scrollbar {
  position: fixed;
  left: 0;
  visibility: hidden;
  overflow-y: scroll;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
/**
 * Swiper 6.2.0
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * http://swiperjs.com
 *
 * Copyright 2014-2020 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: September 4, 2020
 */

@font-face {
  font-family: 'swiper-icons';
  src: url('data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA') format('woff');
  font-weight: 400;
  font-style: normal;
}
:root {
  --swiper-theme-color: #007aff;
}
.swiper-container {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  /* Fix of Webkit flickering */
  z-index: 1;
}
.swiper-container-vertical > .swiper-wrapper {
  flex-direction: column;
}
.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  box-sizing: content-box;
}
.swiper-container-android .swiper-slide,
.swiper-wrapper {
  transform: translate3d(0px, 0, 0);
}
.swiper-container-multirow > .swiper-wrapper {
  flex-wrap: wrap;
}
.swiper-container-multirow-column > .swiper-wrapper {
  flex-wrap: wrap;
  flex-direction: column;
}
.swiper-container-free-mode > .swiper-wrapper {
  transition-timing-function: ease-out;
  margin: 0 auto;
}
.swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform;
}
.swiper-slide-invisible-blank {
  visibility: hidden;
}
/* Auto Height */
.swiper-container-autoheight,
.swiper-container-autoheight .swiper-slide {
  height: auto;
}
.swiper-container-autoheight .swiper-wrapper {
  align-items: flex-start;
  transition-property: transform, height;
}
/* 3D Effects */
.swiper-container-3d {
  perspective: 1200px;
}
.swiper-container-3d .swiper-wrapper,
.swiper-container-3d .swiper-slide,
.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top,
.swiper-container-3d .swiper-slide-shadow-bottom,
.swiper-container-3d .swiper-cube-shadow {
  transform-style: preserve-3d;
}
.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top,
.swiper-container-3d .swiper-slide-shadow-bottom {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}
.swiper-container-3d .swiper-slide-shadow-left {
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-container-3d .swiper-slide-shadow-right {
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-container-3d .swiper-slide-shadow-top {
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-container-3d .swiper-slide-shadow-bottom {
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
/* CSS Mode */
.swiper-container-css-mode > .swiper-wrapper {
  overflow: auto;
  scrollbar-width: none;
  /* For Firefox */
  -ms-overflow-style: none;
  /* For Internet Explorer and Edge */
}
.swiper-container-css-mode > .swiper-wrapper::-webkit-scrollbar {
  display: none;
}
.swiper-container-css-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: start start;
}
.swiper-container-horizontal.swiper-container-css-mode > .swiper-wrapper {
  scroll-snap-type: x mandatory;
}
.swiper-container-vertical.swiper-container-css-mode > .swiper-wrapper {
  scroll-snap-type: y mandatory;
}
:root {
  --swiper-navigation-size: 44px;
  /*
  --swiper-navigation-color: var(--swiper-theme-color);
  */
}
.swiper-button-prev,
.swiper-button-next {
  position: absolute;
  top: 50%;
  width: calc(var(--swiper-navigation-size) / 44 * 27);
  height: var(--swiper-navigation-size);
  margin-top: calc(-1 * var(--swiper-navigation-size) / 2);
  z-index: 10;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--swiper-navigation-color, var(--swiper-theme-color));
}
.swiper-button-prev.swiper-button-disabled,
.swiper-button-next.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none;
}
.swiper-button-prev:after,
.swiper-button-next:after {
  font-family: swiper-icons;
  font-size: var(--swiper-navigation-size);
  text-transform: none !important;
  letter-spacing: 0;
  text-transform: none;
  font-variant: initial;
  line-height: 1;
}
.swiper-button-prev,
.swiper-container-rtl .swiper-button-next {
  left: 10px;
  right: auto;
}
.swiper-button-prev:after,
.swiper-container-rtl .swiper-button-next:after {
  content: 'prev';
}
.swiper-button-next,
.swiper-container-rtl .swiper-button-prev {
  right: 10px;
  left: auto;
}
.swiper-button-next:after,
.swiper-container-rtl .swiper-button-prev:after {
  content: 'next';
}
.swiper-button-prev.swiper-button-white,
.swiper-button-next.swiper-button-white {
  --swiper-navigation-color: #ffffff;
}
.swiper-button-prev.swiper-button-black,
.swiper-button-next.swiper-button-black {
  --swiper-navigation-color: #000000;
}
.swiper-button-lock {
  display: none;
}
:root {
  /*
  --swiper-pagination-color: var(--swiper-theme-color);
  */
}
.swiper-pagination {
  position: absolute;
  text-align: center;
  transition: 300ms opacity;
  transform: translate3d(0, 0, 0);
  z-index: 10;
}
.swiper-pagination.swiper-pagination-hidden {
  opacity: 0;
}
/* Common Styles */
.swiper-pagination-fraction,
.swiper-pagination-custom,
.swiper-container-horizontal > .swiper-pagination-bullets {
  bottom: 10px;
  left: 0;
  width: 100%;
}
/* Bullets */
.swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0;
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transform: scale(0.33);
  position: relative;
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
  transform: scale(1);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
  transform: scale(1);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
  transform: scale(0.66);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
  transform: scale(0.33);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
  transform: scale(0.66);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
  transform: scale(0.33);
}
.swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  display: inline-block;
  border-radius: 100%;
  background: #000;
  opacity: 0.2;
}
button.swiper-pagination-bullet {
  border: none;
  margin: 0;
  padding: 0;
  box-shadow: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer;
}
.swiper-pagination-bullet-active {
  opacity: 1;
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
}
.swiper-container-vertical > .swiper-pagination-bullets {
  right: 10px;
  top: 50%;
  transform: translate3d(0px, -50%, 0);
}
.swiper-container-vertical > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 6px 0;
  display: block;
}
.swiper-container-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
}
.swiper-container-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  display: inline-block;
  transition: 200ms transform, 200ms top;
}
.swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 4px;
}
.swiper-container-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}
.swiper-container-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: 200ms transform, 200ms left;
}
.swiper-container-horizontal.swiper-container-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: 200ms transform, 200ms right;
}
/* Progress */
.swiper-pagination-progressbar {
  background: rgba(0, 0, 0, 0.25);
  position: absolute;
}
.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transform: scale(0);
  transform-origin: left top;
}
.swiper-container-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  transform-origin: right top;
}
.swiper-container-horizontal > .swiper-pagination-progressbar,
.swiper-container-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  width: 100%;
  height: 4px;
  left: 0;
  top: 0;
}
.swiper-container-vertical > .swiper-pagination-progressbar,
.swiper-container-horizontal > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  width: 4px;
  height: 100%;
  left: 0;
  top: 0;
}
.swiper-pagination-white {
  --swiper-pagination-color: #ffffff;
}
.swiper-pagination-black {
  --swiper-pagination-color: #000000;
}
.swiper-pagination-lock {
  display: none;
}
/* Scrollbar */
.swiper-scrollbar {
  border-radius: 10px;
  position: relative;
  -ms-touch-action: none;
  background: rgba(0, 0, 0, 0.1);
}
.swiper-container-horizontal > .swiper-scrollbar {
  position: absolute;
  left: 1%;
  bottom: 3px;
  z-index: 50;
  height: 5px;
  width: 98%;
}
.swiper-container-vertical > .swiper-scrollbar {
  position: absolute;
  right: 3px;
  top: 1%;
  z-index: 50;
  width: 5px;
  height: 98%;
}
.swiper-scrollbar-drag {
  height: 100%;
  width: 100%;
  position: relative;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 10px;
  left: 0;
  top: 0;
}
.swiper-scrollbar-cursor-drag {
  cursor: move;
}
.swiper-scrollbar-lock {
  display: none;
}
.swiper-zoom-container {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.swiper-zoom-container > img,
.swiper-zoom-container > svg,
.swiper-zoom-container > canvas {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.swiper-slide-zoomed {
  cursor: move;
}
/* Preloader */
:root {
  /*
  --swiper-preloader-color: var(--swiper-theme-color);
  */
}
.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  transform-origin: 50%;
  animation: swiper-preloader-spin 1s infinite linear;
  box-sizing: border-box;
  border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
  border-radius: 50%;
  border-top-color: transparent;
}
.swiper-lazy-preloader-white {
  --swiper-preloader-color: #fff;
}
.swiper-lazy-preloader-black {
  --swiper-preloader-color: #000;
}
@keyframes swiper-preloader-spin {
  100% {
    transform: rotate(360deg);
  }
}
/* a11y */
.swiper-container .swiper-notification {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  opacity: 0;
  z-index: -1000;
}
.swiper-container-fade.swiper-container-free-mode .swiper-slide {
  transition-timing-function: ease-out;
}
.swiper-container-fade .swiper-slide {
  pointer-events: none;
  transition-property: opacity;
}
.swiper-container-fade .swiper-slide .swiper-slide {
  pointer-events: none;
}
.swiper-container-fade .swiper-slide-active,
.swiper-container-fade .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}
.swiper-container-cube {
  overflow: visible;
}
.swiper-container-cube .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  z-index: 1;
  visibility: hidden;
  transform-origin: 0 0;
  width: 100%;
  height: 100%;
}
.swiper-container-cube .swiper-slide .swiper-slide {
  pointer-events: none;
}
.swiper-container-cube.swiper-container-rtl .swiper-slide {
  transform-origin: 100% 0;
}
.swiper-container-cube .swiper-slide-active,
.swiper-container-cube .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}
.swiper-container-cube .swiper-slide-active,
.swiper-container-cube .swiper-slide-next,
.swiper-container-cube .swiper-slide-prev,
.swiper-container-cube .swiper-slide-next + .swiper-slide {
  pointer-events: auto;
  visibility: visible;
}
.swiper-container-cube .swiper-slide-shadow-top,
.swiper-container-cube .swiper-slide-shadow-bottom,
.swiper-container-cube .swiper-slide-shadow-left,
.swiper-container-cube .swiper-slide-shadow-right {
  z-index: 0;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}
.swiper-container-cube .swiper-cube-shadow {
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.6;
  -webkit-filter: blur(50px);
  filter: blur(50px);
  z-index: 0;
}
.swiper-container-flip {
  overflow: visible;
}
.swiper-container-flip .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  z-index: 1;
}
.swiper-container-flip .swiper-slide .swiper-slide {
  pointer-events: none;
}
.swiper-container-flip .swiper-slide-active,
.swiper-container-flip .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}
.swiper-container-flip .swiper-slide-shadow-top,
.swiper-container-flip .swiper-slide-shadow-bottom,
.swiper-container-flip .swiper-slide-shadow-left,
.swiper-container-flip .swiper-slide-shadow-right {
  z-index: 0;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}
/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */

/* Document
   ========================================================================== */

/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */

/* line 11, node_modules/normalize.css/normalize.css */

html {
  line-height: 1.15;
  /* 1 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
}

/* Sections
   ========================================================================== */

/**
 * Remove the margin in all browsers.
 */

/* line 23, node_modules/normalize.css/normalize.css */

body {
  margin: 0;
}

/**
 * Render the `main` element consistently in IE.
 */

/* line 31, node_modules/normalize.css/normalize.css */

main {
  display: block;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */

/* line 40, node_modules/normalize.css/normalize.css */

h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/* Grouping content
   ========================================================================== */

/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */

/* line 53, node_modules/normalize.css/normalize.css */

hr {
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  /* 1 */
  height: 0;
  /* 1 */
  overflow: visible;
  /* 2 */
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */

/* line 64, node_modules/normalize.css/normalize.css */

pre {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */
}

/* Text-level semantics
   ========================================================================== */

/**
 * Remove the gray background on active links in IE 10.
 */

/* line 76, node_modules/normalize.css/normalize.css */

a {
  background-color: transparent;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */

/* line 85, node_modules/normalize.css/normalize.css */

abbr[title] {
  border-bottom: none;
  /* 1 */
  text-decoration: underline;
  /* 2 */
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
  /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */

/* line 95, node_modules/normalize.css/normalize.css */

b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */

/* line 105, node_modules/normalize.css/normalize.css */

code,
kbd,
samp {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */

/* line 116, node_modules/normalize.css/normalize.css */

small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */

/* line 125, node_modules/normalize.css/normalize.css */

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

/* line 133, node_modules/normalize.css/normalize.css */

sub {
  bottom: -0.25em;
}

/* line 137, node_modules/normalize.css/normalize.css */

sup {
  top: -0.5em;
}

/* Embedded content
   ========================================================================== */

/**
 * Remove the border on images inside links in IE 10.
 */

/* line 148, node_modules/normalize.css/normalize.css */

img {
  border-style: none;
}

/* Forms
   ========================================================================== */

/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */

/* line 160, node_modules/normalize.css/normalize.css */

button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  /* 1 */
  font-size: 100%;
  /* 1 */
  line-height: 1.15;
  /* 1 */
  margin: 0;
  /* 2 */
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */

/* line 176, node_modules/normalize.css/normalize.css */

button,
input {
  /* 1 */
  overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */

/* line 186, node_modules/normalize.css/normalize.css */

button,
select {
  /* 1 */
  text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */

/* line 195, node_modules/normalize.css/normalize.css */

button,
[type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
}

/**
 * Remove the inner border and padding in Firefox.
 */

/* line 206, node_modules/normalize.css/normalize.css */

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */

/* line 218, node_modules/normalize.css/normalize.css */

button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Correct the padding in Firefox.
 */

/* line 229, node_modules/normalize.css/normalize.css */

fieldset {
  padding: 0.35em 0.75em 0.625em;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */

/* line 240, node_modules/normalize.css/normalize.css */

legend {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  /* 1 */
  color: inherit;
  /* 2 */
  display: table;
  /* 1 */
  max-width: 100%;
  /* 1 */
  padding: 0;
  /* 3 */
  white-space: normal;
  /* 1 */
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */

/* line 253, node_modules/normalize.css/normalize.css */

progress {
  vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */

/* line 261, node_modules/normalize.css/normalize.css */

textarea {
  overflow: auto;
}

/**
 * 1. Add the correct box sizing in IE 10.
 * 2. Remove the padding in IE 10.
 */

/* line 270, node_modules/normalize.css/normalize.css */

[type="checkbox"],
[type="radio"] {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */

/* line 280, node_modules/normalize.css/normalize.css */

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */

/* line 290, node_modules/normalize.css/normalize.css */

[type="search"] {
  -webkit-appearance: textfield;
  /* 1 */
  outline-offset: -2px;
  /* 2 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */

/* line 299, node_modules/normalize.css/normalize.css */

[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */

/* line 308, node_modules/normalize.css/normalize.css */

::-webkit-file-upload-button {
  -webkit-appearance: button;
  /* 1 */
  font: inherit;
  /* 2 */
}

/* Interactive
   ========================================================================== */

/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */

/* line 320, node_modules/normalize.css/normalize.css */

details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */

/* line 328, node_modules/normalize.css/normalize.css */

summary {
  display: list-item;
}

/* Misc
   ========================================================================== */

/**
 * Add the correct display in IE 10+.
 */

/* line 339, node_modules/normalize.css/normalize.css */

template {
  display: none;
}

/**
 * Add the correct display in IE 10.
 */

/* line 347, node_modules/normalize.css/normalize.css */

[hidden] {
  display: none;
}

/** Import our variables */

/** Colors */

/** Box Model  */

/*!
 * Hamburgers
 * @description Tasty CSS-animated hamburgers
 * @author Jonathan Suh @jonsuh
 * @site https://jonsuh.com/hamburgers
 * @link https://github.com/jonsuh/hamburgers
 */

/* line 3, node_modules/hamburgers/_sass/hamburgers/_base.scss */

.hamburger {
  padding: 10px 10px;
  display: inline-block;
  cursor: pointer;
  -webkit-transition-property: opacity, -webkit-filter;
  transition-property: opacity, -webkit-filter;
  -o-transition-property: opacity, filter;
  transition-property: opacity, filter;
  transition-property: opacity, filter, -webkit-filter;
  -webkit-transition-duration: 0.15s;
       -o-transition-duration: 0.15s;
          transition-duration: 0.15s;
  -webkit-transition-timing-function: linear;
       -o-transition-timing-function: linear;
          transition-timing-function: linear;
  font: inherit;
  color: inherit;
  text-transform: none;
  background-color: transparent;
  border: 0;
  margin: 0;
  overflow: visible;
}

/* line 21, node_modules/hamburgers/_sass/hamburgers/_base.scss */

.hamburger:hover {
  opacity: 0.7;
}

/* line 31, node_modules/hamburgers/_sass/hamburgers/_base.scss */

.hamburger.is-active:hover {
  opacity: 0.7;
}

/* line 40, node_modules/hamburgers/_sass/hamburgers/_base.scss */

.hamburger.is-active .hamburger-inner,
.hamburger.is-active .hamburger-inner::before,
.hamburger.is-active .hamburger-inner::after {
  background-color: #000;
}

/* line 48, node_modules/hamburgers/_sass/hamburgers/_base.scss */

.hamburger-box {
  width: 30px;
  height: 19px;
  display: inline-block;
  position: relative;
}

/* line 55, node_modules/hamburgers/_sass/hamburgers/_base.scss */

.hamburger-inner {
  display: block;
  top: 50%;
  margin-top: -1.5px;
}

/* line 60, node_modules/hamburgers/_sass/hamburgers/_base.scss */

.hamburger-inner,
.hamburger-inner::before,
.hamburger-inner::after {
  width: 30px;
  height: 3px;
  background-color: #000;
  border-radius: 10px;
  position: absolute;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  -o-transition-property: -o-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform, -o-transform;
  -webkit-transition-duration: 0.15s;
       -o-transition-duration: 0.15s;
          transition-duration: 0.15s;
  -webkit-transition-timing-function: ease;
       -o-transition-timing-function: ease;
          transition-timing-function: ease;
}

/* line 73, node_modules/hamburgers/_sass/hamburgers/_base.scss */

.hamburger-inner::before,
.hamburger-inner::after {
  content: "";
  display: block;
}

/* line 79, node_modules/hamburgers/_sass/hamburgers/_base.scss */

.hamburger-inner::before {
  top: -8px;
}

/* line 83, node_modules/hamburgers/_sass/hamburgers/_base.scss */

.hamburger-inner::after {
  bottom: -8px;
}

/*
   * Boring
   */

/* line 7, node_modules/hamburgers/_sass/hamburgers/types/_boring.scss */

.hamburger--boring .hamburger-inner,
.hamburger--boring .hamburger-inner::before,
.hamburger--boring .hamburger-inner::after {
  -webkit-transition-property: none;
  -o-transition-property: none;
  transition-property: none;
}

/* line 15, node_modules/hamburgers/_sass/hamburgers/types/_boring.scss */

.hamburger--boring.is-active .hamburger-inner {
  -webkit-transform: rotate(45deg);
       -o-transform: rotate(45deg);
          transform: rotate(45deg);
}

/* line 18, node_modules/hamburgers/_sass/hamburgers/types/_boring.scss */

.hamburger--boring.is-active .hamburger-inner::before {
  top: 0;
  opacity: 0;
}

/* line 23, node_modules/hamburgers/_sass/hamburgers/types/_boring.scss */

.hamburger--boring.is-active .hamburger-inner::after {
  bottom: 0;
  -webkit-transform: rotate(-90deg);
       -o-transform: rotate(-90deg);
          transform: rotate(-90deg);
}

/** Import everything from autoload */

/**
 * Import npm dependencies
 *
 * Prefix your imports with `~` to grab from node_modules/
 * @see https://github.com/webpack-contrib/sass-loader#imports
 */

/** Import theme styles */

/* line 1, resources/assets/styles/common/_app.scss */

.container,
.container-medium,
.container-narrow,
.container-large {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}

/* line 11, resources/assets/styles/common/_app.scss */

.container {
  max-width: 68.75rem;
}

/* line 15, resources/assets/styles/common/_app.scss */

.container-medium {
  max-width: 44.375rem;
}

/* line 19, resources/assets/styles/common/_app.scss */

.container-narrow {
  max-width: 33.75rem;
}

/* line 23, resources/assets/styles/common/_app.scss */

.container-large {
  max-width: 56.5625rem;
}

/* line 27, resources/assets/styles/common/_app.scss */

.outer-padding {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding-left: 1rem;
  padding-right: 1rem;
}

/* line 33, resources/assets/styles/common/_app.scss */

[role=document] {
  padding-top: 62px;
}

@media (min-width: 46.25em) {
  /* line 33, resources/assets/styles/common/_app.scss */

  [role=document] {
    padding-top: 77px;
  }
}

/* line 41, resources/assets/styles/common/_app.scss */

.border-radius {
  border-radius: 1.25rem;
}

/* line 45, resources/assets/styles/common/_app.scss */

.box-shadow {
  -webkit-box-shadow: 0 0 10px #43485e;
          box-shadow: 0 0 10px #43485e;
}

/* line 49, resources/assets/styles/common/_app.scss */

.box-shadow-small {
  -webkit-box-shadow: 0 0 5px #dfdfdf;
          box-shadow: 0 0 5px #dfdfdf;
}

/* line 53, resources/assets/styles/common/_app.scss */

.section-margin,
.page-template-default.perspectives-landing .page-items-wrapper,
.page-template-default.publications-landing .page-items-wrapper,
.our-people-landing .page-items {
  margin-bottom: 3.5rem;
  margin-top: 3.5rem;
}

/* line 58, resources/assets/styles/common/_app.scss */

.section-margin-large {
  margin-bottom: 7rem;
  margin-top: 7rem;
}

/* line 63, resources/assets/styles/common/_app.scss */

.visually-hidden {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  -webkit-clip-path: inset(100%);
          clip-path: inset(100%);
  height: 1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

/* line 68, resources/assets/styles/common/_app.scss */

.no-focus:focus {
  outline: none;
}

/* line 73, resources/assets/styles/common/_app.scss */

.negative-footer-margin,
.flexible-content-row:where(:last-of-type) {
  margin-bottom: -8.75rem;
  position: relative;
}

/* line 78, resources/assets/styles/common/_app.scss */

.padded-box,
.flexible-content-archive-preview.has-background-shadow > .outer-padding > [class^=container] {
  padding: 2.8125rem;
}

/* line 82, resources/assets/styles/common/_app.scss */

.padded-box-box-shadow {
  -webkit-box-shadow: 0 0 10px #d4d4d4;
          box-shadow: 0 0 10px #d4d4d4;
}

/* line 88, resources/assets/styles/common/_app.scss */

body.sidebar-primary .page-content {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 100%;
          flex: 1 1 100%;
}

@media (min-width: 46.25em) {
  /* line 92, resources/assets/styles/common/_app.scss */

  body.sidebar-primary .page-items {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 100%;
            flex: 1 1 100%;
  }
}

/* line 98, resources/assets/styles/common/_app.scss */

body.sidebar-primary .page-items-wrapper {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

@media (min-width: 46.25em) {
  /* line 98, resources/assets/styles/common/_app.scss */

  body.sidebar-primary .page-items-wrapper {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

/* line 114, resources/assets/styles/common/_app.scss */

body.sidebar-primary .sidebar {
  -ms-flex-preferred-size: auto;
      flex-basis: auto;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

@media (min-width: 46.25em) and (max-width: 61.24em) {
  /* line 114, resources/assets/styles/common/_app.scss */

  body.sidebar-primary .sidebar {
    margin-right: 2.5rem;
  }
}

@media (min-width: 46.25em) {
  /* line 114, resources/assets/styles/common/_app.scss */

  body.sidebar-primary .sidebar {
    -ms-flex-preferred-size: 240px;
        flex-basis: 240px;
  }
}

@media (min-width: 61.25em) {
  /* line 114, resources/assets/styles/common/_app.scss */

  body.sidebar-primary .sidebar {
    margin-right: 5rem;
  }
}

/* line 132, resources/assets/styles/common/_app.scss */

body.sidebar-primary .sidebar-right {
  -ms-flex-preferred-size: auto;
      flex-basis: auto;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

@media (min-width: 46.25em) {
  /* line 132, resources/assets/styles/common/_app.scss */

  body.sidebar-primary .sidebar-right {
    -ms-flex-preferred-size: 240px;
        flex-basis: 240px;
  }
}

@media (min-width: 61.25em) {
  /* line 132, resources/assets/styles/common/_app.scss */

  body.sidebar-primary .sidebar-right {
    margin-left: 5rem;
  }
}

/* line 147, resources/assets/styles/common/_app.scss */

.hidden {
  display: none;
}

/* line 1, resources/assets/styles/common/_flex-grids.scss */

.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

/* line 5, resources/assets/styles/common/_flex-grids.scss */

.flex-inline {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}

/* line 9, resources/assets/styles/common/_flex-grids.scss */

.flex-grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
  -ms-flex-negative: 1;
      flex-shrink: 1;
}

/* line 15, resources/assets/styles/common/_flex-grids.scss */

[class*=flex-col] > * {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  padding-left: 1rem;
  padding-right: 1rem;
}

@media (min-width: 46.25em) {
  /* line 15, resources/assets/styles/common/_flex-grids.scss */

  [class*=flex-col] > * {
    -webkit-box-flex: 0;
        -ms-flex-positive: 0;
            flex-grow: 0;
  }
}

/* line 26, resources/assets/styles/common/_flex-grids.scss */

.flex-col-two > * {
  -ms-flex-preferred-size: 100%;
      flex-basis: 100%;
}

@media (min-width: 25em) {
  /* line 26, resources/assets/styles/common/_flex-grids.scss */

  .flex-col-two > * {
    -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
  }
}

/* line 34, resources/assets/styles/common/_flex-grids.scss */

.flex-col-three > * {
  -ms-flex-preferred-size: 100%;
      flex-basis: 100%;
}

@media (min-width: 25em) {
  /* line 34, resources/assets/styles/common/_flex-grids.scss */

  .flex-col-three > * {
    -ms-flex-preferred-size: 33.299%;
        flex-basis: 33.299%;
  }
}

/* line 42, resources/assets/styles/common/_flex-grids.scss */

.flex-col-four > * {
  -ms-flex-preferred-size: 100%;
      flex-basis: 100%;
}

@media (min-width: 25em) {
  /* line 42, resources/assets/styles/common/_flex-grids.scss */

  .flex-col-four > * {
    -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
  }
}

@media (min-width: 46.25em) {
  /* line 42, resources/assets/styles/common/_flex-grids.scss */

  .flex-col-four > * {
    -ms-flex-preferred-size: 30%;
        flex-basis: 30%;
  }
}

@media (min-width: 61.25em) {
  /* line 42, resources/assets/styles/common/_flex-grids.scss */

  .flex-col-four > * {
    -ms-flex-preferred-size: 25%;
        flex-basis: 25%;
  }
}

/* line 58, resources/assets/styles/common/_flex-grids.scss */

.flex-even-spaced > * {
  -ms-flex-preferred-size: 0;
      flex-basis: 0;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  -ms-flex-negative: 1;
      flex-shrink: 1;
}

/* line 64, resources/assets/styles/common/_flex-grids.scss */

.flex-wrap {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

/* line 68, resources/assets/styles/common/_flex-grids.scss */

.flex-justify-content-center {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

/* line 72, resources/assets/styles/common/_flex-grids.scss */

.justify-content-space-between {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

/* line 76, resources/assets/styles/common/_flex-grids.scss */

.flex-justify-content-space-around {
  -ms-flex-pack: distribute;
      justify-content: space-around;
}

/* line 80, resources/assets/styles/common/_flex-grids.scss */

.flex-justify-content-end {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

/* line 84, resources/assets/styles/common/_flex-grids.scss */

.flex-align-items-center {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

/* line 88, resources/assets/styles/common/_flex-grids.scss */

.flex-direction-column {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

/* line 92, resources/assets/styles/common/_flex-grids.scss */

.overflow-hidden {
  overflow: hidden;
}

/* line 96, resources/assets/styles/common/_flex-grids.scss */

.flex-gutter {
  margin-left: -1.25rem;
  margin-right: -1.25rem;
  overflow: hidden;
}

/* line 101, resources/assets/styles/common/_flex-grids.scss */

.flex-gutter > * {
  margin-left: 1.25rem;
  margin-right: 1.25rem;
}

/* line 108, resources/assets/styles/common/_flex-grids.scss */

.flex-col-team > * {
  -ms-flex-preferred-size: 190px;
      flex-basis: 190px;
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
}

/* line 114, resources/assets/styles/common/_flex-grids.scss */

.align-self-start {
  -ms-flex-item-align: start;
      align-self: flex-start;
}

/* line 118, resources/assets/styles/common/_flex-grids.scss */

.align-self-end {
  -ms-flex-item-align: end;
      align-self: flex-end;
}

/* line 1, resources/assets/styles/common/_forms.scss */

input[type="text"],
input[type="email"],
textarea {
  border: none;
  border-radius: 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0.625rem;
}

/* line 10, resources/assets/styles/common/_forms.scss */

input[type=submit] {
  background-color: transparent;
  border: none;
}

/* line 15, resources/assets/styles/common/_forms.scss */

.newsletter-bulletin-signup {
  position: relative;
  margin-left: auto;
  margin-right: auto;
  max-width: 23.75rem;
}

/* line 21, resources/assets/styles/common/_forms.scss */

.newsletter-bulletin-signup .gform_footer {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
}

/* line 30, resources/assets/styles/common/_forms.scss */

.newsletter-bulletin-signup .button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  margin: 0;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
}

/* line 42, resources/assets/styles/common/_forms.scss */

.newsletter-bulletin-signup .button .fas {
  color: #108579;
}

/* line 46, resources/assets/styles/common/_forms.scss */

.newsletter-bulletin-signup .button:focus {
  outline: none;
}

/* line 51, resources/assets/styles/common/_forms.scss */

.newsletter-bulletin-signup input[type=email] {
  color: #43485e;
  text-align: center;
  width: 100%;
}

/* line 56, resources/assets/styles/common/_forms.scss */

.newsletter-bulletin-signup input[type=email]:focus {
  outline: none;
}

/* line 12, resources/assets/styles/mixins/_typography.scss */

.newsletter-bulletin-signup input[type=email]::-webkit-input-placeholder {
  color: #a0a0a0;
}

/* line 12, resources/assets/styles/mixins/_typography.scss */

.newsletter-bulletin-signup input[type=email]:-moz-placeholder {
  color: #a0a0a0;
}

/* line 12, resources/assets/styles/mixins/_typography.scss */

.newsletter-bulletin-signup input[type=email]::-moz-placeholder {
  color: #a0a0a0;
}

/* line 12, resources/assets/styles/mixins/_typography.scss */

.newsletter-bulletin-signup input[type=email]:-ms-input-placeholder {
  color: #a0a0a0;
}

/* line 66, resources/assets/styles/common/_forms.scss */

.mc4wp-response {
  margin-top: 1.25rem;
  color: #108579;
}

/* line 72, resources/assets/styles/common/_forms.scss */

.hidden_label label {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  -webkit-clip-path: inset(100%);
          clip-path: inset(100%);
  height: 1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

/* line 77, resources/assets/styles/common/_forms.scss */

.gform_fields {
  list-style: none;
  padding: 0;
}

/* line 1, resources/assets/styles/common/_grids.scss */

.grid {
  display: grid;
}

/* line 4, resources/assets/styles/common/_grids.scss */

.grid__post-teasers {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: clamp(1rem, 4vw, 2rem) clamp(2rem, 4vw, 4rem);
  grid-template-columns: repeat(auto-fit, minmax(160px, 220px));
}

/* line 10, resources/assets/styles/common/_grids.scss */

.grid__team-listing {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: clamp(2rem, 4vw, 4rem);
  grid-template-columns: repeat(auto-fit, minmax(160px, 160px));
  margin-top: 2rem;
}

/* line 1, resources/assets/styles/common/_icons.scss */

.icon-chevron {
  border-style: solid;
  border-width: 0.0625rem 0.0625rem 0 0;
  content: "";
  display: inline-block;
  height: 0.375rem;
  position: relative;
  -webkit-transform: rotate(135deg);
       -o-transform: rotate(135deg);
          transform: rotate(135deg);
  top: -0.1875rem;
  width: 0.375rem;
}

/* line 3, resources/assets/styles/common/_lists.scss */

ul,
ol {
  margin: 0 0 24px 6px;
  padding-left: 16px;
}

/* line 9, resources/assets/styles/common/_lists.scss */

ul {
  list-style-type: square;
}

/* line 13, resources/assets/styles/common/_lists.scss */

ol {
  list-style-type: decimal;
}

/* line 17, resources/assets/styles/common/_lists.scss */

li {
  margin-bottom: 0.2em;
}

/* line 21, resources/assets/styles/common/_lists.scss */

li ul,
li ol {
  margin-top: 0;
  margin-bottom: 0;
  margin-left: 14px;
}

/* line 28, resources/assets/styles/common/_lists.scss */

li ul {
  list-style-type: disc;
}

/* line 32, resources/assets/styles/common/_lists.scss */

li ul ul {
  list-style-type: circle;
}

/* line 36, resources/assets/styles/common/_lists.scss */

li p {
  margin: 0.4em 0 0.6em;
}

/* line 40, resources/assets/styles/common/_lists.scss */

.list-unstyled {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

/* line 1, resources/assets/styles/common/_media.scss */

img {
  max-width: 100%;
  height: auto;
}

/* line 6, resources/assets/styles/common/_media.scss */

a img {
  /* Remove border on IE */
  border: none;
}

/* line 11, resources/assets/styles/common/_media.scss */

figure {
  position: relative;
  clear: both;
  outline: 0;
  margin: 10px 0 30px;
  padding: 0;
  min-height: 100px;
}

/* line 20, resources/assets/styles/common/_media.scss */

figure img {
  display: block;
  max-width: 100%;
  margin: auto auto 4px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/* line 27, resources/assets/styles/common/_media.scss */

figure figcaption {
  position: relative;
  width: 100%;
  text-align: center;
  left: 0;
  margin-top: 10px;
  font-weight: 400;
  font-size: 14px;
  color: #666665;
}

/* line 38, resources/assets/styles/common/_media.scss */

figure figcaption a {
  text-decoration: none;
  color: #666665;
}

/* line 43, resources/assets/styles/common/_media.scss */

iframe {
  display: block;
  max-width: 100%;
  margin-bottom: 30px;
}

/* line 49, resources/assets/styles/common/_media.scss */

figure iframe {
  margin: auto;
}

/* line 53, resources/assets/styles/common/_media.scss */

.round-image {
  border-radius: 100%;
}

/* line 57, resources/assets/styles/common/_media.scss */

.rounded-image {
  border-radius: 20px;
}

/* line 61, resources/assets/styles/common/_media.scss */

.small-image {
  height: auto;
  max-width: 125px;
  width: 100%;
}

/* line 67, resources/assets/styles/common/_media.scss */

.image-link {
  display: inline-block;
}

/* line 71, resources/assets/styles/common/_media.scss */

.block {
  display: block;
}

/* line 75, resources/assets/styles/common/_media.scss */

.svg-image {
  border-radius: 0;
}

/* line 1, resources/assets/styles/common/_tables.scss */

table {
  width: 100%;
  max-width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
  margin-bottom: 1.5em;
  font-size: 0.96em;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/* line 11, resources/assets/styles/common/_tables.scss */

th,
td {
  text-align: left;
  padding: 4px 8px 4px 10px;
  border: 1px solid #dadada;
}

/* line 18, resources/assets/styles/common/_tables.scss */

td {
  vertical-align: top;
}

/* line 22, resources/assets/styles/common/_tables.scss */

tr:nth-child(even) {
  background-color: #efefee;
}

/* line 26, resources/assets/styles/common/_tables.scss */

table pre {
  margin: 0;
  padding: 0;
  border: none;
  background: none;
}

/* line 1, resources/assets/styles/common/_typography.scss */

body {
  font-family: "Rubik", "Droid Sans", "Helvetica Neue", "PingFang SC", "Hiragino Sans GB", "Droid Sans Fallback", "Microsoft YaHei", sans-serif;
  color: #43485e;
  font-size: 16px;
  font-weight: 400;
}

/* line 9, resources/assets/styles/common/_typography.scss */

h1,
h2,
h3,
h4,
h5,
h6,
.pagetitle {
  font-family: "Rubik", "Droid Sans", "Helvetica Neue", "PingFang SC", "Hiragino Sans GB", "Droid Sans Fallback", "Microsoft YaHei", sans-serif;
  font-weight: 500;
}

/* line 21, resources/assets/styles/common/_typography.scss */

h1,
.heading-1 {
  font-size: 1.875rem;
  font-weight: 500;
  line-height: 42px;
  margin: 0.67em 0;
}

@media (min-width: 46.25em) and (max-width: 61.24em) {
  /* line 21, resources/assets/styles/common/_typography.scss */

  h1,
  .heading-1 {
    font-size: 2.5rem;
    line-height: 55px;
  }
}

@media (min-width: 61.25em) {
  /* line 21, resources/assets/styles/common/_typography.scss */

  h1,
  .heading-1 {
    font-size: 3.75rem;
    line-height: 72px;
  }
}

/* line 39, resources/assets/styles/common/_typography.scss */

h2,
.heading-2 {
  color: #ba0c2f;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 30px;
  margin: 0.83em 0;
}

@media (min-width: 25em) and (max-width: 46.24em) {
  /* line 39, resources/assets/styles/common/_typography.scss */

  h2,
  .heading-2 {
    font-size: 1.375rem;
  }
}

@media (min-width: 46.25em) {
  /* line 39, resources/assets/styles/common/_typography.scss */

  h2,
  .heading-2 {
    font-size: 1.5rem;
    line-height: 35px;
  }
}

/* line 57, resources/assets/styles/common/_typography.scss */

h3,
.heading-3 {
  font-size: 1.17em;
  margin: 1em 0;
}

/* line 63, resources/assets/styles/common/_typography.scss */

h4,
h5,
h6 {
  font-size: 1em;
  margin: 1.6em 0 1em 0;
}

/* line 70, resources/assets/styles/common/_typography.scss */

h6 {
  font-weight: 500;
}

/* line 74, resources/assets/styles/common/_typography.scss */

h1 a,
h2 a,
h3 a {
  text-decoration: none;
}

/* line 80, resources/assets/styles/common/_typography.scss */

p {
  line-height: 24px;
  margin-top: 0;
  margin-bottom: 1.24em;
}

/* line 86, resources/assets/styles/common/_typography.scss */

a {
  color: #43485e;
  word-wrap: break-word;
  -webkit-text-decoration-color: rgba(0, 0, 0, 0.4);
          text-decoration-color: rgba(0, 0, 0, 0.4);
}

/* line 92, resources/assets/styles/common/_typography.scss */

a:hover {
  color: #555;
  -webkit-text-decoration-color: rgba(0, 0, 0, 0.6);
          text-decoration-color: rgba(0, 0, 0, 0.6);
}

/* line 97, resources/assets/styles/common/_typography.scss */

strong,
b {
  font-weight: 700;
}

/* line 102, resources/assets/styles/common/_typography.scss */


/* line 107, resources/assets/styles/common/_typography.scss */

hr {
  background-color: #ffc127;
  border: none;
  height: 1px;
  margin: 2.1875rem 0;
  width: 100%;
}

/* line 115, resources/assets/styles/common/_typography.scss */

blockquote {
  margin: 0 0 1.64em 0;
  border-left: 3px solid #dadada;
  padding-left: 12px;
  color: #666664;
}

/* line 122, resources/assets/styles/common/_typography.scss */

blockquote a {
  color: #666664;
}

/* line 126, resources/assets/styles/common/_typography.scss */

code,
tt {
  color: #808080;
  font-size: 0.96em;
  background-color: #f9f9f7;
  padding: 1px 2px;
  border: 1px solid #eee;
  border-radius: 3px;
  font-family: Menlo, Monaco, Consolas, "Courier New", monospace;
  word-wrap: break-word;
}

/* line 138, resources/assets/styles/common/_typography.scss */

pre {
  margin: 1.64em 0;
  padding: 7px;
  border: none;
  border-left: 3px solid #dadada;
  padding-left: 10px;
  overflow: auto;
  line-height: 1.5;
  font-size: 0.96em;
  font-family: Menlo, Monaco, Consolas, "Courier New", monospace;
  color: #4c4c4c;
  background-color: #f9f9f7;
}

/* line 152, resources/assets/styles/common/_typography.scss */

pre code,
pre tt {
  color: #4c4c4c;
  border: none;
  background: none;
  padding: 0;
}

/* line 160, resources/assets/styles/common/_typography.scss */

.font-style-bold {
  font-weight: 600;
}

/* line 164, resources/assets/styles/common/_typography.scss */

.font-style-semibold {
  font-weight: 500;
}

/* line 168, resources/assets/styles/common/_typography.scss */

.font-style-normal {
  font-weight: 400;
}

/* line 172, resources/assets/styles/common/_typography.scss */

.font-style-light {
  font-weight: 300;
}

/* line 176, resources/assets/styles/common/_typography.scss */

.color-green {
  color: #108579;
}

/* line 180, resources/assets/styles/common/_typography.scss */

.color-blue {
  color: #4997ba;
}

/* line 184, resources/assets/styles/common/_typography.scss */

.color-light-green {
  color: #e8f3f2;
}

/* line 188, resources/assets/styles/common/_typography.scss */

.color-light-grey {
  color: #a0a0a0;
}

/* line 192, resources/assets/styles/common/_typography.scss */

.text-align-center {
  text-align: center;
}

/* line 195, resources/assets/styles/common/_typography.scss */

.text-align-center ul,
.text-align-center ol {
  list-style-position: inside;
}

/* line 201, resources/assets/styles/common/_typography.scss */

.font-style-quote {
  font-size: 1.375rem;
  line-height: 1.875rem;
}

/* line 206, resources/assets/styles/common/_typography.scss */

.font-style-heading-archive-preview {
  font-size: 1.625rem;
  font-weight: 400;
  line-height: 42px;
  margin: 0.9375rem 0 1.25rem 0;
}

/* line 213, resources/assets/styles/common/_typography.scss */

.font-style-heading-post-teaser {
  font-size: 1rem;
  font-weight: 700;
  line-height: 22px;
  margin: 0.9375rem 0 0 0;
}

/* line 220, resources/assets/styles/common/_typography.scss */

.font-style-subheading-post-teaser {
  display: inline-block;
  font-size: 1rem;
  font-weight: 300;
  margin: 0.3125rem 0 0 0;
}

/* line 226, resources/assets/styles/common/_typography.scss */

.font-style-subheading-post-teaser a {
  text-decoration: none;
}

/* line 231, resources/assets/styles/common/_typography.scss */

.font-style-testimonial-body {
  font-size: 1.375rem;
  font-weight: 300;
  line-height: 1.875rem;
}

/* line 237, resources/assets/styles/common/_typography.scss */

.font-style-testimonial-author {
  font-size: 0.875rem;
  font-weight: 300;
  line-height: 1.25rem;
  margin: 0;
}

/* line 244, resources/assets/styles/common/_typography.scss */

.font-style-accreditation {
  font-size: 0.875rem;
  line-height: 1.1875rem;
}

/* line 249, resources/assets/styles/common/_typography.scss */

.font-style-footer-link {
  font-size: 0.75rem;
}

/* line 253, resources/assets/styles/common/_typography.scss */

.font-style-filter-heading {
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.25rem;
}

/* line 259, resources/assets/styles/common/_typography.scss */

.font-style-team-member-title {
  font-size: 1.5rem;
  line-height: 1.4;
  margin: 0;
}

/* line 265, resources/assets/styles/common/_typography.scss */

.font-color-base {
  color: #43485e;
}

/* line 269, resources/assets/styles/common/_typography.scss */

.font-color-red {
  color: #ba0c2f;
}

/* line 273, resources/assets/styles/common/_typography.scss */

.text-decoration-none {
  text-decoration: none;
}

/* line 277, resources/assets/styles/common/_typography.scss */

.font-size-16 {
  font-size: 1rem;
}

/* line 281, resources/assets/styles/common/_typography.scss */

.font-size-18 {
  font-size: 1.125rem;
}

/* line 285, resources/assets/styles/common/_typography.scss */

.font-size-20 {
  font-size: 1.25rem;
}

/* line 289, resources/assets/styles/common/_typography.scss */

.font-size-22 {
  font-size: 1.375rem;
}

/* line 293, resources/assets/styles/common/_typography.scss */

.font-size-24 {
  font-size: 1.5rem;
}

/* line 297, resources/assets/styles/common/_typography.scss */

.font-style-italic {
  font-style: italic;
}

/* line 302, resources/assets/styles/common/_typography.scss */

.entry-content li {
  line-height: 1.5;
  margin-bottom: 0.4rem;
}

/** Colors */

/** Box Model  */

/* line 3, resources/assets/styles/components/_article-share.scss */

.social-share ul li {
  margin-left: 0.625rem;
}

/* line 6, resources/assets/styles/components/_article-share.scss */

.social-share ul li i {
  font-size: 1.375rem;
}

/* line 1, resources/assets/styles/components/_bluesky-feed.scss */

.bluesky-feed {
  border: 1px solid #cfd9de;
  border-radius: 12px;
  padding: 12px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  padding-bottom: 24px;
}

/* line 9, resources/assets/styles/components/_bluesky-feed.scss */

.bluesky-feed .bluesky-header a {
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  text-decoration: none;
  border-bottom: 1px solid #cfd9de;
  font-weight: 600;
}

/* line 1, resources/assets/styles/components/_bulletin-signup.scss */

.bulletin-signup {
  margin-bottom: 7.5rem;
  margin-top: 6rem;
}

/* line 5, resources/assets/styles/components/_bulletin-signup.scss */

.bulletin-signup > svg {
  display: block;
}

/* line 9, resources/assets/styles/components/_bulletin-signup.scss */

.bulletin-signup .bulletin-inner {
  background-color: #e8f3f2;
  margin-bottom: -1px;
  margin-top: -1px;
  padding-bottom: 2.5rem;
  padding-top: 4rem;
}

@media (min-width: 46.25em) {
  /* line 9, resources/assets/styles/components/_bulletin-signup.scss */

  .bulletin-signup .bulletin-inner {
    padding-bottom: 4rem;
    padding-top: 5rem;
  }
}

/* line 22, resources/assets/styles/components/_bulletin-signup.scss */

.bulletin-signup .social-media-links {
  margin-top: 4.375rem;
}

/* line 25, resources/assets/styles/components/_bulletin-signup.scss */

.bulletin-signup .social-media-links h3 {
  color: #108579;
  font-size: 1.5rem;
  font-weight: normal;
}

/* line 32, resources/assets/styles/components/_bulletin-signup.scss */

.bulletin-signup .social-media-links ul li {
  margin-left: 0.3125rem;
  margin-right: 0.3125rem;
}

/* line 36, resources/assets/styles/components/_bulletin-signup.scss */

.bulletin-signup .social-media-links ul li .fab {
  color: #4997ba;
}

/* line 40, resources/assets/styles/components/_bulletin-signup.scss */

.bulletin-signup .social-media-links ul li a {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #fff;
  border-radius: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 22px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0.625rem;
  text-decoration: none;
  width: 22px;
}

/* line 51, resources/assets/styles/components/_bulletin-signup.scss */

.bulletin-signup .social-media-links ul li a:hover {
  background-color: #108579;
}

/* line 54, resources/assets/styles/components/_bulletin-signup.scss */

.bulletin-signup .social-media-links ul li a:hover .fab {
  color: #fff;
}

/* line 1, resources/assets/styles/components/_buttons.scss */

.button {
  border: none;
  border-radius: 1.25rem;
  color: #fff;
  display: inline-block;
  font-size: 0.8125rem;
  margin-left: 0.3125rem;
  margin-right: 0.3125rem;
  padding: 0.625rem 2.1875rem;
  text-decoration: none;
}

/* line 12, resources/assets/styles/components/_buttons.scss */

.button:focus,
.button:hover {
  color: #fff;
  opacity: 0.75;
  outline: none;
}

/* line 20, resources/assets/styles/components/_buttons.scss */

.button-red {
  background-color: #ba0c2f;
}

/* line 24, resources/assets/styles/components/_buttons.scss */

.button-green {
  background-color: #108579;
}

/* line 28, resources/assets/styles/components/_buttons.scss */

.button-publication-green {
  background-color: #108579;
}

/* line 32, resources/assets/styles/components/_buttons.scss */

.button-white {
  background-color: #fff;
  border: 1px solid #a0a0a0;
  color: #43485e;
}

/* line 37, resources/assets/styles/components/_buttons.scss */

.button-white:focus,
.button-white:hover {
  border-color: #43485e;
  color: #43485e;
  opacity: 1;
}

/* line 45, resources/assets/styles/components/_buttons.scss */

.button-small {
  padding: 0.625rem 1.25rem;
}

/* line 49, resources/assets/styles/components/_buttons.scss */

.block {
  display: block;
}

/* line 3, resources/assets/styles/components/_carousels.scss */

.client-carousel h2,
.partner-carousel h2 {
  margin-bottom: 3.75rem !important;
}

/* line 7, resources/assets/styles/components/_carousels.scss */

.client-carousel .swiper-outer,
.partner-carousel .swiper-outer {
  position: relative;
}

/* line 11, resources/assets/styles/components/_carousels.scss */

.client-carousel #swiper-client,
.client-carousel #swiper-partner,
.partner-carousel #swiper-client,
.partner-carousel #swiper-partner {
  padding-left: 5rem;
  padding-right: 5rem;
}

/* line 17, resources/assets/styles/components/_carousels.scss */

.client-carousel img,
.partner-carousel img {
  height: auto;
  max-width: 230px;
  width: 100%;
}

@media (min-width: 46.25em) {
  /* line 17, resources/assets/styles/components/_carousels.scss */

  .client-carousel img,
  .partner-carousel img {
    max-height: 90px;
    width: auto;
  }
}

/* line 28, resources/assets/styles/components/_carousels.scss */

.client-carousel .swiper-slide,
.partner-carousel .swiper-slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

/* line 34, resources/assets/styles/components/_carousels.scss */

.client-carousel .swiper-button-prev::after,
.client-carousel .swiper-button-next::after,
.partner-carousel .swiper-button-prev::after,
.partner-carousel .swiper-button-next::after {
  color: #43485e;
  font-size: 1.875rem;
}

/** Search form */

/* line 2, resources/assets/styles/components/_history-carousel.scss */

.history-swiper-container-outer {
  background-color: #fff6df;
  overflow: hidden;
  padding-top: 0rem;
  position: relative;
}

@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  /* line 2, resources/assets/styles/components/_history-carousel.scss */

  .history-swiper-container-outer {
    display: none;
  }
}

@media (min-width: 61.25em) {
  /* line 2, resources/assets/styles/components/_history-carousel.scss */

  .history-swiper-container-outer {
    padding-top: 6.25rem;
  }
}

/* line 19, resources/assets/styles/components/_history-carousel.scss */

.history-swiper-container-outer .history-swiper-container:not(.swiper-container-initialized) .swiper-pagination {
  display: none !important;
}

/* line 23, resources/assets/styles/components/_history-carousel.scss */

.history-swiper-container-outer .history-swiper-container:not(.swiper-container-initialized) .swiper-wrapper {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

/* line 27, resources/assets/styles/components/_history-carousel.scss */

.history-swiper-container-outer .history-swiper-container:not(.swiper-container-initialized) .swiper-slide {
  padding-top: 5rem;
}

/* line 31, resources/assets/styles/components/_history-carousel.scss */

.history-swiper-container-outer .history-swiper-container:not(.swiper-container-initialized) .history-slide-items-container {
  border: none;
  margin-top: auto !important;
}

/* line 35, resources/assets/styles/components/_history-carousel.scss */

.history-swiper-container-outer .history-swiper-container:not(.swiper-container-initialized) .history-slide-items-container::before {
  left: 1.875rem;
  position: absolute;
  top: 0;
  content: "";
  display: block;
  width: 3px;
  height: 100%;
  margin-left: -1px;
  background: #ffc127;
  z-index: 5;
}

@media (min-width: 46.25em) {
  /* line 35, resources/assets/styles/components/_history-carousel.scss */

  .history-swiper-container-outer .history-swiper-container:not(.swiper-container-initialized) .history-slide-items-container::before {
    left: 50%;
  }
}

/* line 53, resources/assets/styles/components/_history-carousel.scss */

.history-swiper-container-outer .history-swiper-container:not(.swiper-container-initialized) .history-slide-items {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

/* line 56, resources/assets/styles/components/_history-carousel.scss */

.history-swiper-container-outer .history-swiper-container:not(.swiper-container-initialized) .history-slide-items .history-slide-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-left: 1.875rem;
  max-width: 100%;
  padding: 1.875rem;
  padding-bottom: 0;
  position: relative;
  text-align: left;
  -webkit-transform: translateY(0);
       -o-transform: translateY(0);
          transform: translateY(0);
}

@media (min-width: 46.25em) {
  /* line 56, resources/assets/styles/components/_history-carousel.scss */

  .history-swiper-container-outer .history-swiper-container:not(.swiper-container-initialized) .history-slide-items .history-slide-item {
    padding: 0rem;
    margin-right: 1.875rem;
    text-align: center;
    width: 40%;
  }
}

/* line 74, resources/assets/styles/components/_history-carousel.scss */

.history-swiper-container-outer .history-swiper-container:not(.swiper-container-initialized) .history-slide-items .history-slide-item::before {
  background-color: #ffc127;
  content: "";
  display: block;
  height: 2px;
  left: 0;
  position: absolute;
  top: 2.1875rem;
  width: 1.25rem;
}

@media (min-width: 46.25em) {
  /* line 74, resources/assets/styles/components/_history-carousel.scss */

  .history-swiper-container-outer .history-swiper-container:not(.swiper-container-initialized) .history-slide-items .history-slide-item::before {
    display: none;
  }
}

@media (min-width: 46.25em) {
  /* line 89, resources/assets/styles/components/_history-carousel.scss */

  .history-swiper-container-outer .history-swiper-container:not(.swiper-container-initialized) .history-slide-items .history-slide-item:nth-child(even) {
    -ms-flex-item-align: end;
        align-self: flex-end;
    margin-top: -2.5rem;
  }
}

/* line 97, resources/assets/styles/components/_history-carousel.scss */

.history-swiper-container-outer .history-swiper-container:not(.swiper-container-initialized) .history-slide-items .history-slide-item .history-slide-item-text .inner > * {
  margin-top: 0;
}

/* line 103, resources/assets/styles/components/_history-carousel.scss */

.history-swiper-container-outer .history-swiper-container:not(.swiper-container-initialized) .history-slide-items .history-slide-item.has-image .image-container {
  margin-left: 0;
  margin-top: 0;
}

@media (min-width: 46.25em) {
  /* line 103, resources/assets/styles/components/_history-carousel.scss */

  .history-swiper-container-outer .history-swiper-container:not(.swiper-container-initialized) .history-slide-items .history-slide-item.has-image .image-container {
    margin-left: auto;
    margin-right: auto;
  }
}

/* line 119, resources/assets/styles/components/_history-carousel.scss */

.history-swiper-container-outer .history-swiper-container.swiper-container-initialized .history-slide-items.total-items-2 {
  max-width: 50rem;
}

/* line 124, resources/assets/styles/components/_history-carousel.scss */

.history-swiper-container-outer .history-swiper-container.swiper-container-initialized .history-slide-item {
  margin-left: 1.875rem;
  margin-right: 1.875rem;
  max-width: 300px;
  position: absolute;
  z-index: 1;
}

/* line 131, resources/assets/styles/components/_history-carousel.scss */

.history-swiper-container-outer .history-swiper-container.swiper-container-initialized .history-slide-item:nth-child(odd) {
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
}

/* line 135, resources/assets/styles/components/_history-carousel.scss */

.history-swiper-container-outer .history-swiper-container.swiper-container-initialized .history-slide-item:nth-child(odd).has-image .image-container {
  margin-top: -4.6875rem;
}

/* line 141, resources/assets/styles/components/_history-carousel.scss */

.history-swiper-container-outer .history-swiper-container.swiper-container-initialized .history-slide-item:nth-child(even) {
  -webkit-transform: translateY(-100%);
       -o-transform: translateY(-100%);
          transform: translateY(-100%);
}

/* line 146, resources/assets/styles/components/_history-carousel.scss */

.history-swiper-container-outer .history-swiper-container.swiper-container-initialized .history-slide-item:nth-child(even).has-image .image-container {
  margin-bottom: -4.6875rem;
}

/* line 153, resources/assets/styles/components/_history-carousel.scss */

.history-swiper-container-outer .history-swiper-container.swiper-container-initialized .history-slide-item.has-image .image-container {
  margin-left: auto;
  margin-right: auto;
}

/* line 161, resources/assets/styles/components/_history-carousel.scss */

.history-swiper-container-outer .swiper-slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

/* line 174, resources/assets/styles/components/_history-carousel.scss */

.history-swiper-container-outer .swiper-slide .swiper-slide-inner {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}

/* line 179, resources/assets/styles/components/_history-carousel.scss */

.history-swiper-container-outer .swiper-pagination {
  bottom: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  top: -3.125rem;
}

/* line 186, resources/assets/styles/components/_history-carousel.scss */

.history-swiper-container-outer .swiper-pagination svg {
  height: 9px;
  width: 42px;
}

/* line 191, resources/assets/styles/components/_history-carousel.scss */

.history-swiper-container-outer .swiper-pagination .swiper-pagination-bullet-active {
  background-color: transparent;
}

/* line 194, resources/assets/styles/components/_history-carousel.scss */

.history-swiper-container-outer .swiper-pagination .swiper-pagination-bullet-active svg path {
  stroke-width: 4px !important;
  -webkit-transition: stroke-width 0.45s ease-in-out;
  -o-transition: stroke-width 0.45s ease-in-out;
  transition: stroke-width 0.45s ease-in-out;
}

/* line 201, resources/assets/styles/components/_history-carousel.scss */

.history-swiper-container-outer .swiper-button-prev,
.history-swiper-container-outer .swiper-button-next {
  background-color: #ffc127;
  border: 3px solid #fff6df;
  border-radius: 100%;
  color: #fff;
  display: none;
  height: 30px;
  position: relative;
  width: 30px;
}

@media (min-width: 61.25em) {
  /* line 201, resources/assets/styles/components/_history-carousel.scss */

  .history-swiper-container-outer .swiper-button-prev,
  .history-swiper-container-outer .swiper-button-next {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

/* line 216, resources/assets/styles/components/_history-carousel.scss */

.history-swiper-container-outer .swiper-button-prev::after,
.history-swiper-container-outer .swiper-button-next::after {
  display: none;
}

/* line 221, resources/assets/styles/components/_history-carousel.scss */

.history-swiper-container-outer .swiper-button-prev {
  left: 0;
  top: 3px;
}

@media (max-width: 100em) {
  /* line 221, resources/assets/styles/components/_history-carousel.scss */

  .history-swiper-container-outer .swiper-button-prev {
    left: 40px;
    top: -4px;
  }
}

/* line 231, resources/assets/styles/components/_history-carousel.scss */

.history-swiper-container-outer .swiper-button-next {
  right: 0;
  top: -3px;
}

@media (max-width: 100em) {
  /* line 231, resources/assets/styles/components/_history-carousel.scss */

  .history-swiper-container-outer .swiper-button-next {
    right: -60px;
    top: 0px;
  }
}

/* line 241, resources/assets/styles/components/_history-carousel.scss */

.history-swiper-container-outer .slide-title {
  font-size: 1.875rem;
  font-weight: 600;
  line-height: 1.2;
  margin-top: 0.625rem;
}

@media (min-width: 46.25em) {
  /* line 241, resources/assets/styles/components/_history-carousel.scss */

  .history-swiper-container-outer .slide-title {
    font-size: 3.125rem;
  }
}

/* line 253, resources/assets/styles/components/_history-carousel.scss */

.history-slide-items-outer {
  padding-bottom: 3.125rem;
  padding-top: 1.875rem;
}

@media (min-width: 46.25em) {
  /* line 253, resources/assets/styles/components/_history-carousel.scss */

  .history-slide-items-outer {
    padding-bottom: 6.25rem;
    padding-top: 3.75rem;
  }
}

/* line 263, resources/assets/styles/components/_history-carousel.scss */

.history-slide-items-container {
  position: relative;
}

/* line 267, resources/assets/styles/components/_history-carousel.scss */

.history-slide-items-container .svg-line {
  display: none;
  height: auto;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}

@media (min-width: 61.25em) {
  /* line 267, resources/assets/styles/components/_history-carousel.scss */

  .history-slide-items-container .svg-line {
    display: block;
  }
}

@media (min-width: 61.25em) {
  /* line 281, resources/assets/styles/components/_history-carousel.scss */

  .history-slide-items {
    display: block;
  }
}

/* line 287, resources/assets/styles/components/_history-carousel.scss */

.history-slide-item {
  -ms-flex-item-align: start;
      align-self: flex-start;
  -ms-flex-preferred-size: auto;
      flex-basis: auto;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

/* line 293, resources/assets/styles/components/_history-carousel.scss */

.history-slide-item h3,
.history-slide-item h4 {
  color: #ba0c2f;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
  margin-top: 1.25rem;
}

/* line 302, resources/assets/styles/components/_history-carousel.scss */

.history-slide-item h4 {
  font-style: italic;
}

/* line 306, resources/assets/styles/components/_history-carousel.scss */

.history-slide-item .image-container {
  background-color: #fff;
  border: 5px solid #fff6df;
  border-radius: 100%;
  position: relative;
  height: 130px;
  width: 130px;
}

/* line 315, resources/assets/styles/components/_history-carousel.scss */

.history-slide-item .image-container img {
  height: auto;
  max-height: 75px;
  max-width: 75px;
  width: auto;
}

/* line 323, resources/assets/styles/components/_history-carousel.scss */

.history-slide-item .body {
  font-size: 0.875rem;
  margin-bottom: 1.25rem;
  margin-top: 1.25rem;
}

/* line 330, resources/assets/styles/components/_history-carousel.scss */

.historical-moments-section {
  margin-top: 2.5rem;
}

/* line 333, resources/assets/styles/components/_history-carousel.scss */

.historical-moments-section > h3 {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #e67400;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 1.375rem;
  font-style: italic;
  margin-bottom: 2.5rem;
  text-align: left;
}

/* line 342, resources/assets/styles/components/_history-carousel.scss */

.historical-moments-section > h3::after {
  background-color: #e67400;
  content: "";
  display: block;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  height: 1px;
  margin-left: 0.625rem;
}

/* line 353, resources/assets/styles/components/_history-carousel.scss */

.historical-moments-section .historical-moments .historical-moment {
  color: #e67400;
}

@media (max-width: 46.24em) {
  /* line 353, resources/assets/styles/components/_history-carousel.scss */

  .historical-moments-section .historical-moments .historical-moment {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
  }
}

/* line 360, resources/assets/styles/components/_history-carousel.scss */

.historical-moments-section .historical-moments .historical-moment .historical-moment-inner {
  padding: 0 1.875rem;
}

/* line 367, resources/assets/styles/components/_history-carousel.scss */

.obj-container {
  width: 100%;
  margin: 0 auto 4rem auto;
  position: relative;
}

/* line 372, resources/assets/styles/components/_history-carousel.scss */

.obj-container svg {
  height: 100%;
  left: 0;
  top: 0;
  width: 100%;
  z-index: -1;
}

/* line 382, resources/assets/styles/components/_history-carousel.scss */

.object {
  background: blue;
  width: 20px;
  height: 20px;
  border-radius: 10px;
  position: absolute;
  top: -10px;
  left: -10px;
  opacity: 0.5;
}

/* line 393, resources/assets/styles/components/_history-carousel.scss */

.text-item {
  position: absolute;
  top: -10px;
  left: -10px;
}

/* line 1, resources/assets/styles/components/_interactive-map.scss */

.work-locations {
  margin-bottom: 3.75rem;
  padding: 1.875rem 0;
  position: relative;
  -webkit-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
  z-index: 1;
}

@media (min-width: 61.25em) {
  /* line 1, resources/assets/styles/components/_interactive-map.scss */

  .work-locations {
    background-color: #edf5f8;
  }
}

/* line 12, resources/assets/styles/components/_interactive-map.scss */

.work-locations > .container {
  position: relative;
}

/* line 16, resources/assets/styles/components/_interactive-map.scss */

.work-locations #leaflet-locations-map {
  display: none;
  height: 600px;
}

@media (min-width: 61.25em) {
  /* line 16, resources/assets/styles/components/_interactive-map.scss */

  .work-locations #leaflet-locations-map {
    display: block;
  }
}

/* line 25, resources/assets/styles/components/_interactive-map.scss */

.work-locations .leaflet-container {
  background-color: #edf5f8;
}

/* line 29, resources/assets/styles/components/_interactive-map.scss */

.work-locations .interactive-posts-navigation {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

@media (min-width: 61.25em) {
  /* line 29, resources/assets/styles/components/_interactive-map.scss */

  .work-locations .interactive-posts-navigation {
    height: 88%;
    position: absolute;
    right: 30px;
    top: 12%;
    z-index: 400;
  }
}

/* line 43, resources/assets/styles/components/_interactive-map.scss */

.work-locations .interactive-posts-navigation__inner-container {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  width: 100%;
}

@media (min-width: 61.25em) {
  /* line 43, resources/assets/styles/components/_interactive-map.scss */

  .work-locations .interactive-posts-navigation__inner-container {
    width: 400px;
  }

  /* line 50, resources/assets/styles/components/_interactive-map.scss */

  .work-locations .interactive-posts-navigation__inner-container.box-shadow {
    -webkit-box-shadow: unset;
            box-shadow: unset;
  }
}

@media (min-width: 61.25em) {
  /* line 56, resources/assets/styles/components/_interactive-map.scss */

  .work-locations .interactive-posts-navigation > .container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 100%;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
    position: relative;
    z-index: 400;
  }
}

@media (min-width: 61.25em) {
  /* line 68, resources/assets/styles/components/_interactive-map.scss */

  .work-locations .interactive-posts-navigation .background {
    background-color: rgba(223, 223, 223, 0.9);
  }
}

@media (min-width: 61.25em) {
  /* line 74, resources/assets/styles/components/_interactive-map.scss */

  .work-locations .interactive-posts-navigation .flex-container {
    padding: 2.1875rem 1.875rem;
  }
}

/* line 80, resources/assets/styles/components/_interactive-map.scss */

.work-locations .interactive-posts-navigation .simplebar-init {
  height: 175px;
  -webkit-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

@media (max-width: 61.24em) {
  /* line 80, resources/assets/styles/components/_interactive-map.scss */

  .work-locations .interactive-posts-navigation .simplebar-init {
    height: auto !important;
  }
}

@media (max-width: 61.24em) {
  /* line 91, resources/assets/styles/components/_interactive-map.scss */

  .work-locations .interactive-posts-navigation .scroll {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

@media (min-width: 61.25em) {
  /* line 91, resources/assets/styles/components/_interactive-map.scss */

  .work-locations .interactive-posts-navigation .scroll {
    padding-right: 1.875rem;
  }
}

@media (max-width: 61.24em) {
  /* line 101, resources/assets/styles/components/_interactive-map.scss */

  .work-locations .interactive-posts-navigation .box-shadow {
    -webkit-box-shadow: none;
            box-shadow: none;
  }
}

/* line 107, resources/assets/styles/components/_interactive-map.scss */

.work-locations .interactive-posts-navigation .expand-nav-list {
  background-color: transparent;
  border: none;
  cursor: pointer;
  display: none;
  margin-bottom: 1.25rem;
  margin-right: 1.875rem;
  padding: 0;
}

@media (min-width: 61.25em) {
  /* line 107, resources/assets/styles/components/_interactive-map.scss */

  .work-locations .interactive-posts-navigation .expand-nav-list {
    display: inline-block;
  }
}

/* line 120, resources/assets/styles/components/_interactive-map.scss */

.work-locations .interactive-posts-navigation .expand-nav-list:focus {
  outline: none;
}

/* line 124, resources/assets/styles/components/_interactive-map.scss */

.work-locations .interactive-posts-navigation .expand-nav-list i {
  font-size: 1.5625rem;
}

/* line 129, resources/assets/styles/components/_interactive-map.scss */

.work-locations .interactive-posts-navigation .map-navigation-item {
  background-color: #fff;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
  -webkit-transition: all 0.3 ease;
  -o-transition: all 0.3 ease;
  transition: all 0.3 ease;
}

@media (min-width: 61.25em) {
  /* line 129, resources/assets/styles/components/_interactive-map.scss */

  .work-locations .interactive-posts-navigation .map-navigation-item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-bottom: 1.875rem;
  }
}

/* line 140, resources/assets/styles/components/_interactive-map.scss */

.work-locations .interactive-posts-navigation .map-navigation-item:last-child {
  margin-bottom: 0;
}

/* line 144, resources/assets/styles/components/_interactive-map.scss */

.work-locations .interactive-posts-navigation .map-navigation-item .padding {
  padding: 0.625rem;
  padding-left: 1.875rem;
}

@media (min-width: 61.25em) {
  /* line 144, resources/assets/styles/components/_interactive-map.scss */

  .work-locations .interactive-posts-navigation .map-navigation-item .padding {
    padding: 1.875rem;
    padding-left: 3.4375rem;
  }
}

/* line 154, resources/assets/styles/components/_interactive-map.scss */

.work-locations .interactive-posts-navigation .map-navigation-item .marker {
  height: 22px;
  left: 0rem;
  position: absolute;
  width: 18px;
}

@media (min-width: 61.25em) {
  /* line 154, resources/assets/styles/components/_interactive-map.scss */

  .work-locations .interactive-posts-navigation .map-navigation-item .marker {
    left: 1.5625rem;
  }
}

/* line 165, resources/assets/styles/components/_interactive-map.scss */

.work-locations .interactive-posts-navigation .map-navigation-item h3 {
  color: #ba0c2f;
  font-size: 1.0625rem;
  font-weight: 600;
  margin: 0;
}

/* line 173, resources/assets/styles/components/_interactive-map.scss */

.work-locations .interactive-posts-navigation .map-navigation-item .posts-list li {
  border-bottom: 1px solid #4997ba;
  margin: 0;
  padding: 0.625rem 0;
}

/* line 178, resources/assets/styles/components/_interactive-map.scss */

.work-locations .interactive-posts-navigation .map-navigation-item .posts-list li a {
  display: block;
  text-decoration: none;
}

/* line 188, resources/assets/styles/components/_interactive-map.scss */

.work-locations .simplebar-track.simplebar-vertical {
  background-color: #fff;
  border-radius: 10px;
  width: 16px;
}

/* line 195, resources/assets/styles/components/_interactive-map.scss */

.work-locations .simplebar-scrollbar {
  cursor: pointer;
}

/* line 199, resources/assets/styles/components/_interactive-map.scss */

.work-locations .leaflet-popup {
  width: auto !important;
}

/* line 203, resources/assets/styles/components/_interactive-map.scss */

.work-locations .leaflet-popup-content-wrapper,
.work-locations .leaflet-popup-tip {
  background-color: #ba0c2f;
  -webkit-box-shadow: none;
          box-shadow: none;
}

/* line 208, resources/assets/styles/components/_interactive-map.scss */

.work-locations .leaflet-popup-content-wrapper .leaflet-popup-content,
.work-locations .leaflet-popup-tip .leaflet-popup-content {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0.8125rem 1.1875rem;
  margin-right: 0.9375rem;
}

/* line 215, resources/assets/styles/components/_interactive-map.scss */

.work-locations .leaflet-popup-content-wrapper h3,
.work-locations .leaflet-popup-tip h3 {
  color: #fff;
  font-size: 1.125rem;
  margin: 0;
}

/* line 221, resources/assets/styles/components/_interactive-map.scss */

.work-locations .leaflet-popup-content-wrapper a,
.work-locations .leaflet-popup-tip a {
  color: #fff;
  display: inline-block;
  padding: 0.3125rem;
  text-decoration: none;
}

/* line 228, resources/assets/styles/components/_interactive-map.scss */

.work-locations .leaflet-popup-content-wrapper .chevron-icon,
.work-locations .leaflet-popup-tip .chevron-icon {
  display: block;
  margin-left: 0.625rem;
  margin-top: 0.3125rem;
  pointer-events: none;
}

/* line 234, resources/assets/styles/components/_interactive-map.scss */

.work-locations .leaflet-popup-content-wrapper .chevron-icon svg,
.work-locations .leaflet-popup-tip .chevron-icon svg {
  height: 20px;
  pointer-events: none;
  width: 20px;
}

/* line 239, resources/assets/styles/components/_interactive-map.scss */

.work-locations .leaflet-popup-content-wrapper .chevron-icon svg *,
.work-locations .leaflet-popup-tip .chevron-icon svg * {
  fill: #fff;
}

/* line 246, resources/assets/styles/components/_interactive-map.scss */

.work-locations .leaflet-popup-close-button,
.work-locations .leaflet-control-attribution {
  display: none;
}

/* line 1, resources/assets/styles/components/_logo.scss */

.brand {
  display: block;
  height: 2.5rem;
  width: 7rem;
}

/* line 6, resources/assets/styles/components/_logo.scss */

.brand span {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  -webkit-clip-path: inset(100%);
          clip-path: inset(100%);
  height: 1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

/* line 1, resources/assets/styles/components/_micromodal.scss */

.modal {
  display: none;
}

/* line 5, resources/assets/styles/components/_micromodal.scss */

.modal.is-open {
  display: block;
}

/* line 9, resources/assets/styles/components/_micromodal.scss */

.modal__overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 100;
}

/* line 22, resources/assets/styles/components/_micromodal.scss */

.modal__container {
  background-color: #fff;
  -webkit-box-shadow: 0 0 10px #a0a0a0;
          box-shadow: 0 0 10px #a0a0a0;
  padding: 1.25rem 1.25rem 0.625rem;
  max-width: 90vw;
  max-height: 100vh;
  border-radius: 40px;
  overflow-y: auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-align: center;
}

@media (min-width: 46.25em) {
  /* line 22, resources/assets/styles/components/_micromodal.scss */

  .modal__container {
    padding: 1.25rem 2.5rem;
    max-width: 500px;
  }
}

/* line 39, resources/assets/styles/components/_micromodal.scss */

.modal__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}

/* line 46, resources/assets/styles/components/_micromodal.scss */

.modal__title {
  margin-top: 0;
  margin-bottom: 0;
  font-weight: 600;
  font-size: 1.25rem;
  line-height: 1.25;
  color: #00449e;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/* line 56, resources/assets/styles/components/_micromodal.scss */

.round-button {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #ffc127;
  border: none;
  border-radius: 100%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 50px;
  width: 50px;
}

/* line 66, resources/assets/styles/components/_micromodal.scss */

.round-button svg {
  height: 25px;
  pointer-events: none;
  position: relative;
  top: 2px;
  width: 23px;
}

/* line 73, resources/assets/styles/components/_micromodal.scss */

.round-button svg path {
  fill: #fff;
}

/* line 79, resources/assets/styles/components/_micromodal.scss */

.modal__close {
  border: 0;
  cursor: pointer;
  position: absolute;
  right: 0;
}

/* line 85, resources/assets/styles/components/_micromodal.scss */

.modal__close:focus {
  outline: none;
}

/* line 89, resources/assets/styles/components/_micromodal.scss */

.modal__close:hover {
  opacity: 0.75;
}

/* line 93, resources/assets/styles/components/_micromodal.scss */

.modal__close svg {
  display: block;
  height: 15px;
  margin: auto;
  width: 14px;
}

/* line 101, resources/assets/styles/components/_micromodal.scss */

.modal__content {
  margin-top: 2rem;
  margin-bottom: 2rem;
  line-height: 1.5;
  color: rgba(0, 0, 0, 0.8);
}

/* line 108, resources/assets/styles/components/_micromodal.scss */

.modal__btn {
  font-size: 0.875rem;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  background-color: #e6e6e6;
  color: rgba(0, 0, 0, 0.8);
  border-radius: 0.25rem;
  border-style: none;
  border-width: 0;
  cursor: pointer;
  -webkit-appearance: button;
  text-transform: none;
  overflow: visible;
  line-height: 1.15;
  margin: 0;
  will-change: transform;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
  transition: -webkit-transform 0.25s ease-out;
  -webkit-transition: -webkit-transform 0.25s ease-out;
  -o-transition: -o-transform 0.25s ease-out;
  transition: transform 0.25s ease-out;
  transition: transform 0.25s ease-out, -webkit-transform 0.25s ease-out, -o-transform 0.25s ease-out;
  transition: transform 0.25s ease-out, -webkit-transform 0.25s ease-out;
}

/* line 133, resources/assets/styles/components/_micromodal.scss */

.modal__btn:focus,
.modal__btn:hover {
  -webkit-transform: scale(1.05);
  -o-transform: scale(1.05);
     transform: scale(1.05);
}

/* line 139, resources/assets/styles/components/_micromodal.scss */

.modal__btn-primary {
  background-color: #00449e;
  color: #fff;
}

@-webkit-keyframes mmfadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@-o-keyframes mmfadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes mmfadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@-webkit-keyframes mmfadeOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

@-o-keyframes mmfadeOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

@keyframes mmfadeOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

@-webkit-keyframes mmslideIn {
  from {
    -webkit-transform: translateY(15%);
            transform: translateY(15%);
  }

  to {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@-o-keyframes mmslideIn {
  from {
    -o-transform: translateY(15%);
       transform: translateY(15%);
  }

  to {
    -o-transform: translateY(0);
       transform: translateY(0);
  }
}

@keyframes mmslideIn {
  from {
    -webkit-transform: translateY(15%);
         -o-transform: translateY(15%);
            transform: translateY(15%);
  }

  to {
    -webkit-transform: translateY(0);
         -o-transform: translateY(0);
            transform: translateY(0);
  }
}

@-webkit-keyframes mmslideOut {
  from {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }

  to {
    -webkit-transform: translateY(-10%);
            transform: translateY(-10%);
  }
}

@-o-keyframes mmslideOut {
  from {
    -o-transform: translateY(0);
       transform: translateY(0);
  }

  to {
    -o-transform: translateY(-10%);
       transform: translateY(-10%);
  }
}

@keyframes mmslideOut {
  from {
    -webkit-transform: translateY(0);
         -o-transform: translateY(0);
            transform: translateY(0);
  }

  to {
    -webkit-transform: translateY(-10%);
         -o-transform: translateY(-10%);
            transform: translateY(-10%);
  }
}

/* line 184, resources/assets/styles/components/_micromodal.scss */

.micromodal-slide {
  display: none;
}

/* line 188, resources/assets/styles/components/_micromodal.scss */

.micromodal-slide.is-open {
  display: block;
}

/* line 192, resources/assets/styles/components/_micromodal.scss */

.micromodal-slide[aria-hidden="false"] .modal__overlay {
  -webkit-animation: mmfadeIn 0.3s cubic-bezier(0, 0, 0.2, 1);
       -o-animation: mmfadeIn 0.3s cubic-bezier(0, 0, 0.2, 1);
          animation: mmfadeIn 0.3s cubic-bezier(0, 0, 0.2, 1);
}

/* line 196, resources/assets/styles/components/_micromodal.scss */

.micromodal-slide[aria-hidden="false"] .modal__container {
  -webkit-animation: mmslideIn 0.3s cubic-bezier(0, 0, 0.2, 1);
       -o-animation: mmslideIn 0.3s cubic-bezier(0, 0, 0.2, 1);
          animation: mmslideIn 0.3s cubic-bezier(0, 0, 0.2, 1);
}

/* line 200, resources/assets/styles/components/_micromodal.scss */

.micromodal-slide[aria-hidden="true"] .modal__overlay {
  -webkit-animation: mmfadeOut 0.3s cubic-bezier(0, 0, 0.2, 1);
       -o-animation: mmfadeOut 0.3s cubic-bezier(0, 0, 0.2, 1);
          animation: mmfadeOut 0.3s cubic-bezier(0, 0, 0.2, 1);
}

/* line 204, resources/assets/styles/components/_micromodal.scss */

.micromodal-slide[aria-hidden="true"] .modal__container {
  -webkit-animation: mmslideOut 0.3s cubic-bezier(0, 0, 0.2, 1);
       -o-animation: mmslideOut 0.3s cubic-bezier(0, 0, 0.2, 1);
          animation: mmslideOut 0.3s cubic-bezier(0, 0, 0.2, 1);
}

/* line 208, resources/assets/styles/components/_micromodal.scss */

.micromodal-slide .modal__container,
.micromodal-slide .modal__overlay {
  will-change: transform;
}

/* line 1, resources/assets/styles/components/_social-media-links.scss */

.theme-social-media-links {
  margin-left: -0.625rem;
  margin-right: -0.625rem;
  overflow: hidden;
}

/* line 6, resources/assets/styles/components/_social-media-links.scss */

.theme-social-media-links li {
  margin-left: 0.625rem;
  margin-right: 0.625rem;
}

/* line 11, resources/assets/styles/components/_social-media-links.scss */

.theme-social-media-links a {
  display: inline-block;
}

/* line 15, resources/assets/styles/components/_social-media-links.scss */

.theme-social-media-links a:hover .fab {
  color: #ba0c2f;
}

/* line 20, resources/assets/styles/components/_social-media-links.scss */

.theme-social-media-links a .fab {
  color: #43485e;
  font-size: 1.3125rem;
}

/* line 2, resources/assets/styles/components/_spot-colour.scss */

.spot-colour-lime-green h1,
.spot-colour-lime-green h2 {
  color: #74a339;
}

/* line 7, resources/assets/styles/components/_spot-colour.scss */

.spot-colour-lime-green hr {
  background-color: #74a339;
}

/* line 13, resources/assets/styles/components/_spot-colour.scss */

.spot-colour-sky-blue h1,
.spot-colour-sky-blue h2 {
  color: #4997ba;
}

/* line 18, resources/assets/styles/components/_spot-colour.scss */

.spot-colour-sky-blue hr {
  background-color: #4997ba;
}

/* line 24, resources/assets/styles/components/_spot-colour.scss */

.spot-colour-orange h1,
.spot-colour-orange h2 {
  color: #e67400;
}

/* line 29, resources/assets/styles/components/_spot-colour.scss */

.spot-colour-orange hr {
  background-color: #e67400;
}

/**
 * WordPress Generated Classes
 * @see http://codex.wordpress.org/CSS#WordPress_Generated_Classes
 */

/** Media alignment */

/* line 7, resources/assets/styles/components/_wp-classes.scss */

.alignnone {
  margin-left: 0;
  margin-right: 0;
  max-width: 100%;
  height: auto;
}

/* line 14, resources/assets/styles/components/_wp-classes.scss */

.aligncenter {
  display: block;
  margin: 0.5rem auto;
  height: auto;
}

/* line 20, resources/assets/styles/components/_wp-classes.scss */

.alignleft,
.alignright {
  margin-bottom: 0.5rem;
  height: auto;
}

@media (min-width: 30rem) {
  /* line 27, resources/assets/styles/components/_wp-classes.scss */

  .alignleft {
    float: left;
    margin-right: 0.5rem;
  }

  /* line 32, resources/assets/styles/components/_wp-classes.scss */

  .alignright {
    float: right;
    margin-left: 0.5rem;
  }
}

/** Captions */

/** Text meant only for screen readers */

/* line 45, resources/assets/styles/components/_wp-classes.scss */

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
  color: #000;
  background: #fff;
}

/* line 2, resources/assets/styles/layouts/_accreditations-teaser.scss */

article.type-accreditations.view-mode-teaser {
  margin-bottom: 1.875rem;
  margin-top: 1.875rem;
}

/* line 7, resources/assets/styles/layouts/_accreditations-teaser.scss */

article.type-accreditations.view-mode-teaser .image-wrapper img {
  height: auto;
  max-height: 5rem;
  max-width: 150px;
  width: auto;
}

/* line 3, resources/assets/styles/layouts/_job-role-full.scss */

article.job_role.view-mode-full header hr {
  margin: 2rem 0;
}

/* line 8, resources/assets/styles/layouts/_job-role-full.scss */

article.job_role.view-mode-full .intro {
  margin-bottom: 1.25rem;
}

/* line 13, resources/assets/styles/layouts/_job-role-full.scss */

article.job_role.view-mode-full .meta p {
  margin: 0.25rem 0;
}

/* line 18, resources/assets/styles/layouts/_job-role-full.scss */

article.job_role.view-mode-full .job-pagetitle {
  color: #43485e;
  font-size: 1.5625rem;
  font-weight: 700;
  line-height: 1.6;
  margin-bottom: 0;
}

/* line 26, resources/assets/styles/layouts/_job-role-full.scss */

article.job_role.view-mode-full .contract-type {
  color: #ba0c2f;
}

/* line 30, resources/assets/styles/layouts/_job-role-full.scss */

article.job_role.view-mode-full .download-button {
  margin-left: 0;
  margin-top: 1rem;
}

/* line 36, resources/assets/styles/layouts/_job-role-full.scss */

article.job_role.view-mode-full .social-share i {
  color: #ba0c2f;
}

/* line 39, resources/assets/styles/layouts/_job-role-full.scss */

article.job_role.view-mode-full .social-share i:hover {
  color: #43485e;
}

/* line 1, resources/assets/styles/layouts/_job-role-teaser.scss */

.job-roles-list {
  background-color: #fff;
}

/* line 5, resources/assets/styles/layouts/_job-role-teaser.scss */

article.type-job_role.view-mode-teaser {
  border-top: 1px solid #ffc127;
  padding-bottom: 1.875rem;
  padding-top: 1.875rem;
}

/* line 10, resources/assets/styles/layouts/_job-role-teaser.scss */

article.type-job_role.view-mode-teaser:last-child {
  border-bottom: 1px solid #ffc127;
}

/* line 14, resources/assets/styles/layouts/_job-role-teaser.scss */

article.type-job_role.view-mode-teaser h3,
article.type-job_role.view-mode-teaser h4 {
  margin: 0.75rem 0;
}

/* line 20, resources/assets/styles/layouts/_job-role-teaser.scss */

article.type-job_role.view-mode-teaser .post-content *:last-child {
  margin-bottom: 0;
}

/* line 25, resources/assets/styles/layouts/_job-role-teaser.scss */

article.type-job_role.view-mode-teaser .contract-type {
  color: #ba0c2f;
}

/* line 29, resources/assets/styles/layouts/_job-role-teaser.scss */

article.type-job_role.view-mode-teaser .closing-date,
article.type-job_role.view-mode-teaser .download-button {
  margin: 1.25rem 0 0 0;
}

/* line 34, resources/assets/styles/layouts/_job-role-teaser.scss */

article.type-job_role.view-mode-teaser .actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 1rem;
}

/* line 40, resources/assets/styles/layouts/_job-role-teaser.scss */

article.type-job_role.view-mode-teaser .actions > * {
  display: inline-block;
  margin: 0.75rem;
}

/* line 2, resources/assets/styles/layouts/_page.scss */

.page-has-subtitle .pagetitle {
  margin-bottom: 0rem;
}

/* line 6, resources/assets/styles/layouts/_page.scss */

.page-has-subtitle .pagesubtitle {
  margin-top: 0.625rem;
}

/* line 13, resources/assets/styles/layouts/_page.scss */

.page-template-default:not(.home) h1.pagetitle,
.page-template-default:not(.home) .pagetitle,
body[class*=single-] h1.pagetitle,
body[class*=single-] .pagetitle {
  font-size: 1.875rem;
  line-height: 40px;
}

@media (min-width: 46.25em) and (max-width: 61.24em) {
  /* line 13, resources/assets/styles/layouts/_page.scss */

  .page-template-default:not(.home) h1.pagetitle,
  .page-template-default:not(.home) .pagetitle,
  body[class*=single-] h1.pagetitle,
  body[class*=single-] .pagetitle {
    font-size: 2.5rem;
    line-height: 45px;
  }
}

@media (min-width: 61.25em) {
  /* line 13, resources/assets/styles/layouts/_page.scss */

  .page-template-default:not(.home) h1.pagetitle,
  .page-template-default:not(.home) .pagetitle,
  body[class*=single-] h1.pagetitle,
  body[class*=single-] .pagetitle {
    font-size: 3rem;
    line-height: 52px;
  }
}

/* line 31, resources/assets/styles/layouts/_page.scss */

.page-template-default.home h1.pagetitle,
.page-template-default.home .pagetitle {
  color: #43485e;
}

/* line 39, resources/assets/styles/layouts/_page.scss */

.page-template-default h1.pagetitle,
.page-template-default .pagetitle,
.job_role-template-default h1.pagetitle,
.job_role-template-default .pagetitle {
  color: #ba0c2f;
}

/* line 3, resources/assets/styles/layouts/_perspectives-full.scss */

article.type-post.view-mode-full .publications-content {
  border-bottom: 1px solid #4997ba;
  margin-bottom: 1.25rem;
}

/* line 8, resources/assets/styles/layouts/_perspectives-full.scss */

article.type-post.view-mode-full header {
  border-bottom: 1px solid #4997ba;
  margin-bottom: 2.5rem;
}

/* line 13, resources/assets/styles/layouts/_perspectives-full.scss */

article.type-post.view-mode-full hr {
  background-color: #4997ba;
}

/* line 17, resources/assets/styles/layouts/_perspectives-full.scss */

article.type-post.view-mode-full a {
  color: #4997ba !important;
  text-decoration: none;
}

/* line 22, resources/assets/styles/layouts/_perspectives-full.scss */

article.type-post.view-mode-full .post-meta {
  margin-bottom: 1.25rem;
  margin-top: 1.875rem;
}

/* line 26, resources/assets/styles/layouts/_perspectives-full.scss */

article.type-post.view-mode-full .post-meta .author {
  border-right: 1px solid #43485e;
  margin-right: 0.3125rem;
  padding-right: 0.3125rem;
}

/* line 2, resources/assets/styles/layouts/_perspectives-landing.scss */

.page-template-default.perspectives-landing h1 {
  color: #4997ba;
}

@media (min-width: 46.25em) and (max-width: 61.24em) {
  /* line 6, resources/assets/styles/layouts/_perspectives-landing.scss */

  .page-template-default.perspectives-landing .page-items-wrapper {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

/* line 14, resources/assets/styles/layouts/_perspectives-landing.scss */

.page-template-default.perspectives-landing .facetwp-load-more {
  background-color: #4997ba;
}

/* line 18, resources/assets/styles/layouts/_perspectives-landing.scss */

.page-template-default.perspectives-landing article.type-post.view-mode-teaser {
  -ms-flex-preferred-size: 25%;
      flex-basis: 25%;
}

@media (min-width: 61.25em) {
  /* line 18, resources/assets/styles/layouts/_perspectives-landing.scss */

  .page-template-default.perspectives-landing article.type-post.view-mode-teaser {
    -ms-flex-preferred-size: 40%;
        flex-basis: 40%;
  }
}

/* line 2, resources/assets/styles/layouts/_perspectives-teaser.scss */

article.type-post.view-mode-teaser {
  margin-bottom: 2.5rem;
  min-width: 130px;
  padding-top: 3px;
}

/* line 7, resources/assets/styles/layouts/_perspectives-teaser.scss */

article.type-post.view-mode-teaser img {
  height: auto;
  margin: 0 auto;
  width: auto;
}

/* line 15, resources/assets/styles/layouts/_perspectives-teaser.scss */

.post-category-icon {
  background-color: #4997ba;
  height: 30px;
  margin-top: 0.9375rem;
  width: 30px;
}

/* line 21, resources/assets/styles/layouts/_perspectives-teaser.scss */

.post-category-icon i {
  color: #fff;
}

/* line 3, resources/assets/styles/layouts/_publications-full.scss */

article.our_work.view-mode-full .publications-content {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

@media (min-width: 46.25em) {
  /* line 3, resources/assets/styles/layouts/_publications-full.scss */

  article.our_work.view-mode-full .publications-content {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }
}

/* line 10, resources/assets/styles/layouts/_publications-full.scss */

article.our_work.view-mode-full .publications-content > section {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}

/* line 15, resources/assets/styles/layouts/_publications-full.scss */

article.our_work.view-mode-full aside {
  -ms-flex-preferred-size: 260px;
      flex-basis: 260px;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-top: 2.8125rem;
  margin-left: auto;
  margin-right: auto;
  max-width: 360px;
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}

@media (min-width: 46.25em) {
  /* line 15, resources/assets/styles/layouts/_publications-full.scss */

  article.our_work.view-mode-full aside {
    margin-right: 3.75rem;
    margin-top: 0;
    max-width: 100%;
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
}

@media (min-width: 61.25em) {
  /* line 15, resources/assets/styles/layouts/_publications-full.scss */

  article.our_work.view-mode-full aside {
    margin-right: 6.5625rem;
  }
}

/* line 38, resources/assets/styles/layouts/_publications-full.scss */

article.our_work.view-mode-full .download-actions a {
  margin-left: 0;
  margin-right: 0;
  margin-top: 1.25rem;
}

/* line 45, resources/assets/styles/layouts/_publications-full.scss */

article.our_work.view-mode-full h1,
article.our_work.view-mode-full h2 {
  margin: 0;
}

/* line 50, resources/assets/styles/layouts/_publications-full.scss */

article.our_work.view-mode-full .publication-details {
  margin: 1.875rem 0;
}

/* line 54, resources/assets/styles/layouts/_publications-full.scss */

article.our_work.view-mode-full .publication-detail {
  margin-bottom: 0.4375rem;
}

/* line 57, resources/assets/styles/layouts/_publications-full.scss */

article.our_work.view-mode-full .publication-detail .label {
  margin-right: 0.3125rem;
}

/* line 61, resources/assets/styles/layouts/_publications-full.scss */

article.our_work.view-mode-full .publication-detail a {
  text-decoration: none;
}

/* line 66, resources/assets/styles/layouts/_publications-full.scss */

article.our_work.view-mode-full .publication-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

/* line 69, resources/assets/styles/layouts/_publications-full.scss */

article.our_work.view-mode-full .publication-buttons .button-wrapper {
  width: 50%;
}

/* line 72, resources/assets/styles/layouts/_publications-full.scss */

article.our_work.view-mode-full .publication-buttons .button-wrapper:nth-child(odd) {
  margin-right: 10px;
}

/* line 76, resources/assets/styles/layouts/_publications-full.scss */

article.our_work.view-mode-full .publication-buttons .button-wrapper:nth-child(even) {
  margin-left: 10px;
}

/* line 80, resources/assets/styles/layouts/_publications-full.scss */

article.our_work.view-mode-full .publication-buttons .button-wrapper button {
  width: 100%;
}

@media screen and (max-width: 450px) {
  /* line 66, resources/assets/styles/layouts/_publications-full.scss */

  article.our_work.view-mode-full .publication-buttons {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }

  /* line 88, resources/assets/styles/layouts/_publications-full.scss */

  article.our_work.view-mode-full .publication-buttons .button-wrapper {
    width: 100%;
  }

  /* line 91, resources/assets/styles/layouts/_publications-full.scss */

  article.our_work.view-mode-full .publication-buttons .button-wrapper:nth-child(odd) {
    margin-right: 0;
    margin-bottom: 10px;
  }

  /* line 96, resources/assets/styles/layouts/_publications-full.scss */

  article.our_work.view-mode-full .publication-buttons .button-wrapper:nth-child(even) {
    margin-left: 0;
    margin-bottom: 10px;
  }
}

/* line 105, resources/assets/styles/layouts/_publications-full.scss */

article.our_work.view-mode-full .entry-content a,
article.our_work.view-mode-full .entry-content a * {
  color: #108579 !important;
  text-decoration: none;
}

/* line 110, resources/assets/styles/layouts/_publications-full.scss */

article.our_work.view-mode-full .entry-content a:hover,
article.our_work.view-mode-full .entry-content a *:hover {
  color: #43485e !important;
}

/* line 2, resources/assets/styles/layouts/_publications-landing.scss */

.page-template-default.publications-landing h1 {
  color: #108579;
}

/* line 10, resources/assets/styles/layouts/_publications-landing.scss */

.page-template-default.publications-landing .facetwp-sort {
  position: relative;
  width: 100%;
  margin: 0 auto 10px auto;
}

/* line 15, resources/assets/styles/layouts/_publications-landing.scss */

.page-template-default.publications-landing .facetwp-sort .facetwp-sort-select {
  border: none;
  border-bottom: 1px solid #43485e;
  color: #43485e;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.25rem;
  padding: 10px 0;
  outline: none;
  width: 100%;
}

/* line 27, resources/assets/styles/layouts/_publications-landing.scss */

.page-template-default.publications-landing .facetwp-sort .facetwp-sort-select option:hover {
  background-color: tomato;
}

/* line 33, resources/assets/styles/layouts/_publications-landing.scss */

.page-template-default.publications-landing .facetwp-sort::after {
  content: "";
  background-image: url("/app/themes/agulhas/resources/assets/svg/chevron-circle.svg");
  background-size: 14px 14px;
  background-repeat: no-repeat;
  min-width: 14px;
  min-height: 14px;
  background-color: #fff;
  font-size: 0.7rem;
  line-height: 0;
  position: absolute;
  top: 13px;
  right: 5px;
  z-index: 10;
}

/* line 3, resources/assets/styles/layouts/_publications-teaser.scss */

article.type-our_work.view-mode-teaser img {
  height: auto;
  width: 100%;
}

/* line 3, resources/assets/styles/layouts/_service-full.scss */

article.type-service.view-mode-full header {
  margin-bottom: 2.5rem;
}

/* line 10, resources/assets/styles/layouts/_service-full.scss */

.single-service article.type-service + .flexible-content-row {
  margin-top: 0;
}

/* line 1, resources/assets/styles/layouts/_team-member-full.scss */

article.team_member.view-mode-full {
  margin-bottom: 4.6875rem;
}

/* line 4, resources/assets/styles/layouts/_team-member-full.scss */

article.team_member.view-mode-full .featured-image {
  border: 2px solid #fff;
  border-radius: 100%;
  display: block;
  height: auto;
  margin-left: auto;
  margin-right: auto;
  margin-top: -5rem;
  position: relative;
  width: 10rem;
}

/* line 16, resources/assets/styles/layouts/_team-member-full.scss */

article.team_member.view-mode-full .headings {
  margin: 1.875rem 0;
}

/* line 20, resources/assets/styles/layouts/_team-member-full.scss */

article.team_member.view-mode-full h1 {
  margin-bottom: 0.625rem;
}

/* line 24, resources/assets/styles/layouts/_team-member-full.scss */

article.team_member.view-mode-full .team-member-actions {
  margin: 2.5rem 0 3.75rem 0;
}

/* line 27, resources/assets/styles/layouts/_team-member-full.scss */

article.team_member.view-mode-full .team-member-actions .back-button,
article.team_member.view-mode-full .team-member-actions .team-member-modal {
  background-color: #ffc127;
  border: none;
  border-radius: 100%;
  cursor: pointer;
  height: 48px;
  width: 48px;
}

/* line 36, resources/assets/styles/layouts/_team-member-full.scss */

article.team_member.view-mode-full .team-member-actions .back-button:focus,
article.team_member.view-mode-full .team-member-actions .back-button:hover,
article.team_member.view-mode-full .team-member-actions .team-member-modal:focus,
article.team_member.view-mode-full .team-member-actions .team-member-modal:hover {
  opacity: 0.7;
  outline: none;
}

/* line 44, resources/assets/styles/layouts/_team-member-full.scss */

article.team_member.view-mode-full .team-member-actions .back-button i {
  color: #fff;
  font-size: 1.25rem;
}

/* line 50, resources/assets/styles/layouts/_team-member-full.scss */

article.team_member.view-mode-full .team-member-actions .team-member-modal {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-left: 0.9375rem;
}

/* line 56, resources/assets/styles/layouts/_team-member-full.scss */

article.team_member.view-mode-full .team-member-actions .team-member-modal svg {
  display: block;
  height: 22px;
  margin: auto;
  width: 22px;
}

/* line 62, resources/assets/styles/layouts/_team-member-full.scss */

article.team_member.view-mode-full .team-member-actions .team-member-modal svg path {
  fill: #fff;
}

/* line 68, resources/assets/styles/layouts/_team-member-full.scss */

article.team_member.view-mode-full .team-member-actions .social-icons {
  margin-left: 0.9375rem;
}

/* line 71, resources/assets/styles/layouts/_team-member-full.scss */

article.team_member.view-mode-full .team-member-actions .social-icons a {
  background-color: #fff;
  border: 5px solid #ffc127;
  border-radius: 100%;
  height: 38px;
  width: 38px;
}

/* line 78, resources/assets/styles/layouts/_team-member-full.scss */

article.team_member.view-mode-full .team-member-actions .social-icons a:nth-child(2) {
  position: relative;
}

/* line 81, resources/assets/styles/layouts/_team-member-full.scss */

article.team_member.view-mode-full .team-member-actions .social-icons a:nth-child(2)::before {
  background-color: #ffc127;
  border: 5px solid #ffc127;
  content: "";
  height: 100%;
  position: absolute;
  right: 50%;
  top: -5px;
  width: 100%;
  z-index: -1;
}

/* line 94, resources/assets/styles/layouts/_team-member-full.scss */

article.team_member.view-mode-full .team-member-actions .social-icons a i {
  color: #ffc127;
  font-size: 1.25rem;
}

/* line 102, resources/assets/styles/layouts/_team-member-full.scss */

article.team_member.view-mode-full .entry-content {
  text-align: center;
}

/* line 2, resources/assets/styles/layouts/_team-member-teaser.scss */

.our-people > h3 {
  margin-bottom: 0;
}

/* line 6, resources/assets/styles/layouts/_team-member-teaser.scss */

.our-people .our-people-category-list {
  margin-bottom: 3.75rem;
}

/* line 9, resources/assets/styles/layouts/_team-member-teaser.scss */

.our-people .our-people-category-list > * {
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-top: 2rem;
}

/* line 18, resources/assets/styles/layouts/_team-member-teaser.scss */

.our-people-landing h1 {
  color: #e67400;
}

/* line 22, resources/assets/styles/layouts/_team-member-teaser.scss */

.our-people-landing .page-items {
  margin-bottom: 0;
}

/* line 1, resources/assets/styles/layouts/_tinymce.scss */

body#tinymce {
  margin: 12px !important;
}

/* line 1, resources/assets/styles/regions/_banner.scss */

.banner-container-small,
.banner-container-large {
  aspect-ratio: 1 / 0.3;
}

/* line 5, resources/assets/styles/regions/_banner.scss */

.banner-container-small img,
.banner-container-large img {
  -webkit-clip-path: ellipse(100% 55% at 48% 44%);
          clip-path: ellipse(100% 55% at 48% 44%);
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
  width: 100%;
}

/* line 2, resources/assets/styles/regions/_footer.scss */

.site-footer .brand {
  margin-bottom: 3.125rem;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 65em) {
  /* line 2, resources/assets/styles/regions/_footer.scss */

  .site-footer .brand {
    margin-left: 0;
    margin-top: -1.5625rem;
  }
}

@media (max-width: 46.24em) {
  /* line 13, resources/assets/styles/regions/_footer.scss */

  .site-footer .nav {
    -webkit-columns: 2;
       -moz-columns: 2;
            columns: 2;
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
  }
}

@media (min-width: 46.25em) {
  /* line 13, resources/assets/styles/regions/_footer.scss */

  .site-footer .nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
  }
}

/* line 25, resources/assets/styles/regions/_footer.scss */

.site-footer .nav li a {
  font-size: 0.75rem;
  text-decoration: none;
}

@media (max-width: 46.24em) {
  /* line 31, resources/assets/styles/regions/_footer.scss */

  .site-footer .nav > li {
    display: inline-block;
    margin-bottom: 1.25rem;
    width: 100%;
  }
}

@media (min-width: 46.25em) {
  /* line 31, resources/assets/styles/regions/_footer.scss */

  .site-footer .nav > li {
    -ms-flex-preferred-size: 100px;
        flex-basis: 100px;
    margin-right: 2.5rem;
  }
}

/* line 46, resources/assets/styles/regions/_footer.scss */

.site-footer .nav.first-level-bold > li > a {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 0.875rem;
}

/* line 55, resources/assets/styles/regions/_footer.scss */

.site-footer .nav .icon-chevron {
  display: none;
}

@media (max-width: 46.24em) {
  /* line 60, resources/assets/styles/regions/_footer.scss */

  .site-footer .contact-info {
    text-align: center;
  }
}

@media (min-width: 46.25em) and (max-width: 65em) {
  /* line 60, resources/assets/styles/regions/_footer.scss */

  .site-footer .contact-info {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }

  /* line 72, resources/assets/styles/regions/_footer.scss */

  .site-footer .contact-info ul {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    margin: 0 0 1.25rem 0;
  }
}

@media (min-width: 65em) {
  /* line 60, resources/assets/styles/regions/_footer.scss */

  .site-footer .contact-info {
    -ms-flex-preferred-size: 150px;
        flex-basis: 150px;
  }
}

/* line 83, resources/assets/styles/regions/_footer.scss */

.site-footer .theme-contact-details {
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  margin-bottom: 0.625rem;
}

/* line 88, resources/assets/styles/regions/_footer.scss */

.site-footer .theme-contact-details li {
  margin: 0 0 0.25rem 0;
}

/* line 92, resources/assets/styles/regions/_footer.scss */

.site-footer .theme-contact-details a,
.site-footer .theme-contact-details p {
  color: #ba0c2f;
  display: block;
  font-size: 0.75rem;
  line-height: 1.6;
  margin: 0;
  text-decoration: none;
}

@media (min-width: 65em) {
  /* line 105, resources/assets/styles/regions/_footer.scss */

  .site-footer--top > div:first-child,
  .site-footer--bottom > div:first-child {
    -ms-flex-preferred-size: 11.5625rem;
        flex-basis: 11.5625rem;
    font-size: 0.75rem;
  }
}

@media (max-width: 46.24em) {
  /* line 103, resources/assets/styles/regions/_footer.scss */

  .site-footer--top,
  .site-footer--bottom {
    margin-left: auto;
    margin-right: auto;
    max-width: 300px;
  }
}

@media (min-width: 46.25em) and (max-width: 65em) {
  /* line 103, resources/assets/styles/regions/_footer.scss */

  .site-footer--top,
  .site-footer--bottom {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-left: auto;
    margin-right: auto;
    max-width: 700px;
  }
}

/* line 126, resources/assets/styles/regions/_footer.scss */

.site-footer--top {
  margin-bottom: 3.125rem;
}

@media (max-width: 65em) {
  /* line 126, resources/assets/styles/regions/_footer.scss */

  .site-footer--top {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

@media (min-width: 46.25em) {
  /* line 126, resources/assets/styles/regions/_footer.scss */

  .site-footer--top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

/* line 139, resources/assets/styles/regions/_footer.scss */

.site-footer--bottom {
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
  margin-bottom: 2.5rem;
  text-align: center;
}

@media (min-width: 65em) {
  /* line 139, resources/assets/styles/regions/_footer.scss */

  .site-footer--bottom {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    margin-bottom: 7.5rem;
    text-align: left;
  }
}

/* line 150, resources/assets/styles/regions/_footer.scss */

.site-footer--bottom .nav {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 1.25rem;
}

@media (min-width: 65em) {
  /* line 150, resources/assets/styles/regions/_footer.scss */

  .site-footer--bottom .nav {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}

/* line 158, resources/assets/styles/regions/_footer.scss */

.site-footer--bottom .nav li {
  margin-right: 0;
  margin-top: 0;
}

@media (min-width: 65em) {
  /* line 158, resources/assets/styles/regions/_footer.scss */

  .site-footer--bottom .nav li {
    margin-right: 2.5rem;
  }
}

/* line 4, resources/assets/styles/regions/_header.scss */

.admin-bar .site-header {
  top: 32px;
}

/* line 9, resources/assets/styles/regions/_header.scss */

.site-header {
  background-color: #fff;
  border-bottom: 1px solid #43485e;
  padding-bottom: 0.5rem;
  padding-top: 0.625rem;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 80;
}

@media (min-width: 46.25em) {
  /* line 9, resources/assets/styles/regions/_header.scss */

  .site-header {
    padding-bottom: 0;
    padding-top: 1rem;
  }
}

/* line 37, resources/assets/styles/regions/_header.scss */

.site-header .container-inner {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

/* line 42, resources/assets/styles/regions/_header.scss */

.site-header .container-inner .hamburger-wrapper,
.site-header .container-inner .theme-social-media-links {
  -ms-flex-preferred-size: calc(50% - 112px);
      flex-basis: calc(50% - 112px);
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

/* line 48, resources/assets/styles/regions/_header.scss */

.site-header .container-inner .theme-social-media-links {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

@media (min-width: 46.25em) {
  /* line 37, resources/assets/styles/regions/_header.scss */

  .site-header .container-inner {
    -webkit-box-pack: unset;
        -ms-flex-pack: unset;
            justify-content: unset;
  }

  /* line 55, resources/assets/styles/regions/_header.scss */

  .site-header .container-inner .hamburger-wrapper,
  .site-header .container-inner .theme-social-media-links {
    -ms-flex-preferred-size: auto;
        flex-basis: auto;
  }
}

/* line 62, resources/assets/styles/regions/_header.scss */

.site-header .nav-primary {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-item-align: stretch;
      align-self: stretch;
  display: none;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  margin-left: 2.8125rem;
}

@media (min-width: 46.25em) {
  /* line 62, resources/assets/styles/regions/_header.scss */

  .site-header .nav-primary {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

/* line 73, resources/assets/styles/regions/_header.scss */

.site-header .nav-primary ul {
  -ms-flex-item-align: stretch;
      align-self: stretch;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

/* line 77, resources/assets/styles/regions/_header.scss */

.site-header .nav-primary ul li {
  margin: 0;
  padding-right: 1.875rem;
}

/* line 83, resources/assets/styles/regions/_header.scss */

.site-header .nav-primary ul li.current-menu-item > a,
.site-header .nav-primary ul li.current-menu-ancestor > a {
  color: #ba0c2f;
}

/* line 88, resources/assets/styles/regions/_header.scss */

.site-header .nav-primary ul li a {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 0.875rem;
  padding: 1.375rem 0;
  text-decoration: none;
}

/* line 96, resources/assets/styles/regions/_header.scss */

.site-header .nav-primary ul li a:hover .icon-chevron {
  border-color: #ba0c2f;
}

/* line 101, resources/assets/styles/regions/_header.scss */

.site-header .nav-primary ul li a .icon-chevron {
  margin-left: 0.625rem;
}

/* line 106, resources/assets/styles/regions/_header.scss */

.site-header .nav-primary ul li ul {
  padding-left: 10.8125rem;
}

/* line 111, resources/assets/styles/regions/_header.scss */

.site-header .nav-primary ul li:hover > .sub-menu-wrap {
  display: block;
}

/* line 115, resources/assets/styles/regions/_header.scss */

.site-header .nav-primary ul li:hover > a {
  color: #ba0c2f;
}

/* line 121, resources/assets/styles/regions/_header.scss */

.site-header .nav-primary ul .sub-menu-wrap {
  background-color: #fff;
  border-top: 1px solid #43485e;
  display: none;
  left: 0;
  position: absolute;
  top: 100%;
  width: 100%;
  z-index: 10;
}

/* line 131, resources/assets/styles/regions/_header.scss */

.site-header .nav-primary ul .sub-menu-wrap .container {
  margin-top: -1px;
}

@media (min-width: 46.25em) {
  /* line 138, resources/assets/styles/regions/_header.scss */

  .site-header .hamburger-wrapper {
    display: none;
  }
}

/* line 1, resources/assets/styles/regions/_mobile-nav.scss */

body.offside-js--is-open {
  overflow: hidden;
}

/* line 4, resources/assets/styles/regions/_mobile-nav.scss */

body.offside-js--is-open #page-container {
  position: relative;
}

/* line 7, resources/assets/styles/regions/_mobile-nav.scss */

body.offside-js--is-open #page-container::before {
  background-color: rgba(255, 255, 255, 0.85);
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 5;
}

/* line 20, resources/assets/styles/regions/_mobile-nav.scss */

.offside--left {
  left: -300px;
}

/* line 23, resources/assets/styles/regions/_mobile-nav.scss */

.offside--left.is-open {
  -webkit-transform: translate3d(300px, 0, 0);
          transform: translate3d(300px, 0, 0);
}

/* line 28, resources/assets/styles/regions/_mobile-nav.scss */

.offside-js--is-left .offside-sliding-element {
  -webkit-transform: translate3d(300px, 0, 0);
          transform: translate3d(300px, 0, 0);
}

/* line 32, resources/assets/styles/regions/_mobile-nav.scss */

#off-canvas-menu {
  background-color: #fbfbfb;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 300px;
}

/* line 38, resources/assets/styles/regions/_mobile-nav.scss */

#off-canvas-menu .off-canvas-menu-content {
  border-right: 1px solid #e2e2e2;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  padding: 1.25rem 1.875rem;
}

/* line 44, resources/assets/styles/regions/_mobile-nav.scss */

#off-canvas-menu .hamburger {
  margin-left: -0.625rem;
}

/* line 48, resources/assets/styles/regions/_mobile-nav.scss */

#off-canvas-menu .nav {
  margin-bottom: 2.5rem;
  margin-top: 2.5rem;
}

/* line 53, resources/assets/styles/regions/_mobile-nav.scss */

#off-canvas-menu .nav li a {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-bottom: 1px solid #e2e2e2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 0.9375rem;
  padding-bottom: 0.625rem;
  padding-top: 0.3125rem;
  text-decoration: none;
}

/* line 64, resources/assets/styles/regions/_mobile-nav.scss */

#off-canvas-menu .nav li ul {
  margin-left: 1.25rem;
}

/* line 67, resources/assets/styles/regions/_mobile-nav.scss */

#off-canvas-menu .nav li ul li {
  margin-bottom: 0.625rem;
}

/* line 70, resources/assets/styles/regions/_mobile-nav.scss */

#off-canvas-menu .nav li ul li .icon-chevron {
  display: none;
}

/* line 78, resources/assets/styles/regions/_mobile-nav.scss */

#off-canvas-menu .contact-us-link {
  margin-bottom: 1.875rem;
  margin-left: 0;
}

/* line 83, resources/assets/styles/regions/_mobile-nav.scss */

#off-canvas-menu .theme-contact-details {
  margin-bottom: 1.875rem;
}

/* line 86, resources/assets/styles/regions/_mobile-nav.scss */

#off-canvas-menu .theme-contact-details li {
  margin-bottom: 0.3125rem;
}

/* line 90, resources/assets/styles/regions/_mobile-nav.scss */

#off-canvas-menu .theme-contact-details a,
#off-canvas-menu .theme-contact-details p {
  color: #ba0c2f;
  display: block;
  margin: 0;
  text-decoration: none;
}

/* line 99, resources/assets/styles/regions/_mobile-nav.scss */

#off-canvas-menu .theme-social-media-links {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

/* line 107, resources/assets/styles/regions/_mobile-nav.scss */

html.js #off-canvas-menu .nav .sub-menu-wrap {
  display: none;
}

/* line 112, resources/assets/styles/regions/_mobile-nav.scss */

html.js #off-canvas-menu .nav li.open .icon-chevron {
  -webkit-transform: rotate(-45deg);
       -o-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

/* line 116, resources/assets/styles/regions/_mobile-nav.scss */

html.js #off-canvas-menu .nav li.open > .sub-menu-wrap {
  display: block;
}

/* line 2, resources/assets/styles/regions/_sidebar.scss */

.facetwp-template .facetwp-facet {
  margin-bottom: 0;
}

/* line 7, resources/assets/styles/regions/_sidebar.scss */

.sidebar {
  margin-bottom: 2rem;
}

/* line 12, resources/assets/styles/regions/_sidebar.scss */

.sidebar .facetwp-facet.facetwp-type-search input[type=text] {
  border: 1px solid #a0a0a0;
  color: #43485e;
  font-size: 0.875rem;
  padding: 0.46875rem 0.9375rem;
  width: 100%;
}

/* line 19, resources/assets/styles/regions/_sidebar.scss */

.sidebar .facetwp-facet.facetwp-type-search input[type=text]:focus {
  border-color: #43485e;
  outline: none;
}

/* line 12, resources/assets/styles/mixins/_typography.scss */

.sidebar .facetwp-facet.facetwp-type-search input[type=text]::-webkit-input-placeholder {
  color: #43485e;
  font-size: 0.875rem;
}

/* line 12, resources/assets/styles/mixins/_typography.scss */

.sidebar .facetwp-facet.facetwp-type-search input[type=text]:-moz-placeholder {
  color: #43485e;
  font-size: 0.875rem;
}

/* line 12, resources/assets/styles/mixins/_typography.scss */

.sidebar .facetwp-facet.facetwp-type-search input[type=text]::-moz-placeholder {
  color: #43485e;
  font-size: 0.875rem;
}

/* line 12, resources/assets/styles/mixins/_typography.scss */

.sidebar .facetwp-facet.facetwp-type-search input[type=text]:-ms-input-placeholder {
  color: #43485e;
  font-size: 0.875rem;
}

/* line 30, resources/assets/styles/regions/_sidebar.scss */

.sidebar .facetwp-facet.facetwp-type-search .facetwp-input-wrap {
  display: block;
  position: relative;
}

/* line 35, resources/assets/styles/regions/_sidebar.scss */

.sidebar .facetwp-facet.facetwp-type-search .search-icon {
  position: absolute;
  margin-top: -8px;
  right: 0.625rem;
  top: 50%;
}

/* line 41, resources/assets/styles/regions/_sidebar.scss */

.sidebar .facetwp-facet.facetwp-type-search .search-icon svg {
  height: 16px;
  width: 16px;
}

/* line 48, resources/assets/styles/regions/_sidebar.scss */

.sidebar .facetwp-facet.facetwp-type-checkboxes,
.sidebar .facetwp-facet.facetwp-type-radio {
  margin: 0 0 0.3125rem 0;
}

/* line 52, resources/assets/styles/regions/_sidebar.scss */

.sidebar .facetwp-facet.facetwp-type-checkboxes h3,
.sidebar .facetwp-facet.facetwp-type-radio h3 {
  border-bottom: 1px solid #43485e;
  cursor: pointer;
  margin: 0 0 0.625rem 0;
  padding: 0.625rem 0.3125rem;
}

/* line 58, resources/assets/styles/regions/_sidebar.scss */

.sidebar .facetwp-facet.facetwp-type-checkboxes h3 i,
.sidebar .facetwp-facet.facetwp-type-radio h3 i {
  height: 14px;
}

/* line 61, resources/assets/styles/regions/_sidebar.scss */

.sidebar .facetwp-facet.facetwp-type-checkboxes h3 i svg,
.sidebar .facetwp-facet.facetwp-type-radio h3 i svg {
  height: 14px;
  width: 14px;
}

/* line 68, resources/assets/styles/regions/_sidebar.scss */

.sidebar .facetwp-facet.facetwp-type-checkboxes .facet-items,
.sidebar .facetwp-facet.facetwp-type-radio .facet-items {
  display: none;
  margin-bottom: 1.25rem;
}

/* line 73, resources/assets/styles/regions/_sidebar.scss */

.sidebar .facetwp-facet.facetwp-type-checkboxes .facetwp-radio,
.sidebar .facetwp-facet.facetwp-type-checkboxes .facetwp-checkbox,
.sidebar .facetwp-facet.facetwp-type-radio .facetwp-radio,
.sidebar .facetwp-facet.facetwp-type-radio .facetwp-checkbox {
  background: none;
  border-bottom: 1px solid #dfdfdf;
  color: rgba(67, 72, 94, 0.75);
  font-size: 0.875rem;
  padding: 0.3125rem 0.3125rem;
}

/* line 81, resources/assets/styles/regions/_sidebar.scss */

.sidebar .facetwp-facet.facetwp-type-checkboxes .facetwp-radio.checked,
.sidebar .facetwp-facet.facetwp-type-checkboxes .facetwp-checkbox.checked,
.sidebar .facetwp-facet.facetwp-type-radio .facetwp-radio.checked,
.sidebar .facetwp-facet.facetwp-type-radio .facetwp-checkbox.checked {
  color: #43485e;
  font-weight: 500;
}

/* line 89, resources/assets/styles/regions/_sidebar.scss */

.sidebar .facetwp-facet.facetwp-type-checkboxes.open h3 i,
.sidebar .facetwp-facet.facetwp-type-radio.open h3 i {
  -webkit-transform: rotate(90deg);
       -o-transform: rotate(90deg);
          transform: rotate(90deg);
}

/* line 94, resources/assets/styles/regions/_sidebar.scss */

.sidebar .facetwp-facet.facetwp-type-checkboxes.open .facet-items,
.sidebar .facetwp-facet.facetwp-type-radio.open .facet-items {
  display: block;
}

/* line 100, resources/assets/styles/regions/_sidebar.scss */

.sidebar .facetwp-facet.facetwp-facet-perspectives_tags {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 1.875rem;
}

/* line 105, resources/assets/styles/regions/_sidebar.scss */

.sidebar .facetwp-facet.facetwp-facet-perspectives_tags h3 {
  border: none;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 100%;
          flex: 1 1 100%;
  pointer-events: none;
}

/* line 111, resources/assets/styles/regions/_sidebar.scss */

.sidebar .facetwp-facet.facetwp-facet-perspectives_tags .facetwp-radio {
  border: none;
}

/* line 114, resources/assets/styles/regions/_sidebar.scss */

.sidebar .facetwp-facet.facetwp-facet-perspectives_tags .facetwp-radio.checked {
  color: #ba0c2f;
}

/* line 118, resources/assets/styles/regions/_sidebar.scss */

.sidebar .facetwp-facet.facetwp-facet-perspectives_tags .facetwp-radio:nth-child(1) {
  -webkit-box-ordinal-group: 18;
      -ms-flex-order: 17;
          order: 17;
}

/* line 122, resources/assets/styles/regions/_sidebar.scss */

.sidebar .facetwp-facet.facetwp-facet-perspectives_tags .facetwp-radio:nth-child(2) {
  -webkit-box-ordinal-group: 10;
      -ms-flex-order: 9;
          order: 9;
}

/* line 126, resources/assets/styles/regions/_sidebar.scss */

.sidebar .facetwp-facet.facetwp-facet-perspectives_tags .facetwp-radio:nth-child(3) {
  -webkit-box-ordinal-group: 16;
      -ms-flex-order: 15;
          order: 15;
}

/* line 130, resources/assets/styles/regions/_sidebar.scss */

.sidebar .facetwp-facet.facetwp-facet-perspectives_tags .facetwp-radio:nth-child(4) {
  -webkit-box-ordinal-group: 17;
      -ms-flex-order: 16;
          order: 16;
}

/* line 134, resources/assets/styles/regions/_sidebar.scss */

.sidebar .facetwp-facet.facetwp-facet-perspectives_tags .facetwp-radio:nth-child(5) {
  -webkit-box-ordinal-group: 12;
      -ms-flex-order: 11;
          order: 11;
}

/* line 138, resources/assets/styles/regions/_sidebar.scss */

.sidebar .facetwp-facet.facetwp-facet-perspectives_tags .facetwp-radio:nth-child(6) {
  -webkit-box-ordinal-group: 6;
      -ms-flex-order: 5;
          order: 5;
}

/* line 142, resources/assets/styles/regions/_sidebar.scss */

.sidebar .facetwp-facet.facetwp-facet-perspectives_tags .facetwp-radio:nth-child(7) {
  -webkit-box-ordinal-group: 11;
      -ms-flex-order: 10;
          order: 10;
}

/* line 146, resources/assets/styles/regions/_sidebar.scss */

.sidebar .facetwp-facet.facetwp-facet-perspectives_tags .facetwp-radio:nth-child(8) {
  -webkit-box-ordinal-group: 21;
      -ms-flex-order: 20;
          order: 20;
}

/* line 150, resources/assets/styles/regions/_sidebar.scss */

.sidebar .facetwp-facet.facetwp-facet-perspectives_tags .facetwp-radio:nth-child(9) {
  -webkit-box-ordinal-group: 15;
      -ms-flex-order: 14;
          order: 14;
}

/* line 154, resources/assets/styles/regions/_sidebar.scss */

.sidebar .facetwp-facet.facetwp-facet-perspectives_tags .facetwp-radio:nth-child(10) {
  -webkit-box-ordinal-group: 9;
      -ms-flex-order: 8;
          order: 8;
}

/* line 158, resources/assets/styles/regions/_sidebar.scss */

.sidebar .facetwp-facet.facetwp-facet-perspectives_tags .facetwp-radio:nth-child(11) {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}

/* line 162, resources/assets/styles/regions/_sidebar.scss */

.sidebar .facetwp-facet.facetwp-facet-perspectives_tags .facetwp-radio:nth-child(12) {
  -webkit-box-ordinal-group: 14;
      -ms-flex-order: 13;
          order: 13;
}

/* line 166, resources/assets/styles/regions/_sidebar.scss */

.sidebar .facetwp-facet.facetwp-facet-perspectives_tags .facetwp-radio:nth-child(13) {
  -webkit-box-ordinal-group: 5;
      -ms-flex-order: 4;
          order: 4;
}

/* line 170, resources/assets/styles/regions/_sidebar.scss */

.sidebar .facetwp-facet.facetwp-facet-perspectives_tags .facetwp-radio:nth-child(14) {
  -webkit-box-ordinal-group: 19;
      -ms-flex-order: 18;
          order: 18;
}

/* line 174, resources/assets/styles/regions/_sidebar.scss */

.sidebar .facetwp-facet.facetwp-facet-perspectives_tags .facetwp-radio:nth-child(15) {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}

/* line 178, resources/assets/styles/regions/_sidebar.scss */

.sidebar .facetwp-facet.facetwp-facet-perspectives_tags .facetwp-radio:nth-child(16) {
  -webkit-box-ordinal-group: 7;
      -ms-flex-order: 6;
          order: 6;
}

/* line 182, resources/assets/styles/regions/_sidebar.scss */

.sidebar .facetwp-facet.facetwp-facet-perspectives_tags .facetwp-radio:nth-child(17) {
  -webkit-box-ordinal-group: 20;
      -ms-flex-order: 19;
          order: 19;
}

/* line 186, resources/assets/styles/regions/_sidebar.scss */

.sidebar .facetwp-facet.facetwp-facet-perspectives_tags .facetwp-radio:nth-child(18) {
  -webkit-box-ordinal-group: 4;
      -ms-flex-order: 3;
          order: 3;
}

/* line 190, resources/assets/styles/regions/_sidebar.scss */

.sidebar .facetwp-facet.facetwp-facet-perspectives_tags .facetwp-radio:nth-child(19) {
  -webkit-box-ordinal-group: 13;
      -ms-flex-order: 12;
          order: 12;
}

/* line 194, resources/assets/styles/regions/_sidebar.scss */

.sidebar .facetwp-facet.facetwp-facet-perspectives_tags .facetwp-radio:nth-child(20) {
  -webkit-box-ordinal-group: 8;
      -ms-flex-order: 7;
          order: 7;
}

/* line 202, resources/assets/styles/regions/_sidebar.scss */

.facetwp-type-pager {
  text-align: center;
}

/* line 205, resources/assets/styles/regions/_sidebar.scss */

.facetwp-type-pager button {
  cursor: pointer;
}

/* line 210, resources/assets/styles/regions/_sidebar.scss */

.fwp-reset {
  cursor: pointer;
  margin-right: 0;
  margin-top: 0.9375rem;
}

/* line 2, resources/assets/styles/flexible-content/_accordion.scss */

.flexible-content-row.flexible-content-accordion .accordion-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-top: 1px #ffc127 solid;
}

/* line 8, resources/assets/styles/flexible-content/_accordion.scss */

.flexible-content-row.flexible-content-accordion .accordion-title i {
  padding: 4px 20px;
  -webkit-transition: -webkit-transform 0.2s;
  transition: -webkit-transform 0.2s;
  -o-transition: -o-transform 0.2s;
  transition: transform 0.2s;
  transition: transform 0.2s, -webkit-transform 0.2s, -o-transform 0.2s;
}

/* line 12, resources/assets/styles/flexible-content/_accordion.scss */

.flexible-content-row.flexible-content-accordion .accordion-title i::before {
  color: #ba0c2f;
  font-size: 30px;
}

/* line 19, resources/assets/styles/flexible-content/_accordion.scss */

.flexible-content-row.flexible-content-accordion .accordion-content {
  display: none;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 16px;
  margin-bottom: 32px;
}

@media (max-width: 37.49em) {
  /* line 19, resources/assets/styles/flexible-content/_accordion.scss */

  .flexible-content-row.flexible-content-accordion .accordion-content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

/* line 29, resources/assets/styles/flexible-content/_accordion.scss */

.flexible-content-row.flexible-content-accordion .accordion-content .optional-image {
  min-width: 168px;
  max-width: 168px;
}

/* line 33, resources/assets/styles/flexible-content/_accordion.scss */

.flexible-content-row.flexible-content-accordion .accordion-content .optional-image img {
  width: 100%;
}

/* line 38, resources/assets/styles/flexible-content/_accordion.scss */

.flexible-content-row.flexible-content-accordion .accordion-content .content > * {
  margin-top: 0;
  margin-bottom: 20px;
}

/* line 42, resources/assets/styles/flexible-content/_accordion.scss */

.flexible-content-row.flexible-content-accordion .accordion-content .content > *:last-child {
  margin-bottom: 0;
}

/* line 49, resources/assets/styles/flexible-content/_accordion.scss */

.flexible-content-row.flexible-content-accordion .accordion.open .accordion-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

/* line 53, resources/assets/styles/flexible-content/_accordion.scss */

.flexible-content-row.flexible-content-accordion .accordion.open .accordion-title i {
  -webkit-transform: rotate(180deg);
       -o-transform: rotate(180deg);
          transform: rotate(180deg);
  -webkit-transition: -webkit-transform 0.2s;
  transition: -webkit-transform 0.2s;
  -o-transition: -o-transform 0.2s;
  transition: transform 0.2s;
  transition: transform 0.2s, -webkit-transform 0.2s, -o-transform 0.2s;
}

/* line 59, resources/assets/styles/flexible-content/_accordion.scss */

.flexible-content-row.flexible-content-accordion .responsive-iframe.ratio-16-9 {
  height: auto;
}

/* line 1, resources/assets/styles/flexible-content/_all.scss */

.flexible-content-row {
  margin: 3.5rem 0;
  position: relative;
}

@media (min-width: 46.25em) {
  /* line 1, resources/assets/styles/flexible-content/_all.scss */

  .flexible-content-row {
    margin: 4.375rem 0;
  }
}

/* line 9, resources/assets/styles/flexible-content/_all.scss */

.flexible-content-row:nth-of-type(1) {
  margin-top: 1.25rem;
}

/* line 18, resources/assets/styles/flexible-content/_all.scss */

.flexible-content-link {
  margin-top: 1.25rem;
}

/* line 25, resources/assets/styles/flexible-content/_all.scss */

.flexible-content-no-negative-margin :where(.flexible-content-row):last-of-type,
.team_member-template-default :where(.flexible-content-row):last-of-type {
  margin: 4.375rem 0;
}

/* line 31, resources/assets/styles/flexible-content/_all.scss */

.page-header + :is(.flexible-content-row) {
  margin-top: 0;
}

/* line 2, resources/assets/styles/flexible-content/_archive-preview.scss */

.flexible-content-archive-preview > .outer-padding > [class^=container] {
  background-color: #fff;
}

/* line 7, resources/assets/styles/flexible-content/_archive-preview.scss */

.flexible-content-archive-preview.preview-post-type-post h2 {
  color: #4997ba;
}

/* line 11, resources/assets/styles/flexible-content/_archive-preview.scss */

.flexible-content-archive-preview.preview-post-type-post .button {
  background-color: #4997ba;
}

/* line 17, resources/assets/styles/flexible-content/_archive-preview.scss */

.flexible-content-archive-preview.preview-post-type-our_work h2 {
  color: #108579;
}

/* line 21, resources/assets/styles/flexible-content/_archive-preview.scss */

.flexible-content-archive-preview.preview-post-type-our_work .button {
  background-color: #108579;
}

/* line 27, resources/assets/styles/flexible-content/_archive-preview.scss */

.flexible-content-archive-preview.preview-post-type-accreditations h2 {
  color: #e67400;
}

/* line 31, resources/assets/styles/flexible-content/_archive-preview.scss */

.flexible-content-archive-preview.preview-post-type-accreditations .button {
  background-color: #e67400;
}

/* line 35, resources/assets/styles/flexible-content/_archive-preview.scss */

.flexible-content-archive-preview.preview-post-type-accreditations .grid__post-teasers {
  grid-template-columns: repeat(auto-fit, minmax(140px, 140px));
}

/* line 41, resources/assets/styles/flexible-content/_archive-preview.scss */

.flexible-content-archive-preview.preview-post-type-team_member .grid__post-teasers {
  grid-template-columns: repeat(auto-fit, minmax(160px, 160px));
}

/* line 47, resources/assets/styles/flexible-content/_archive-preview.scss */

.flexible-content-archive-preview.has-background-shadow > .outer-padding > [class^=container] {
  -webkit-box-shadow: 0 0 10px #d4d4d4;
          box-shadow: 0 0 10px #d4d4d4;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/* line 1, resources/assets/styles/flexible-content/_dividing-line.scss */

.flexible-content-dividing-line {
  margin: 1rem;
}

/* line 4, resources/assets/styles/flexible-content/_dividing-line.scss */

.flexible-content-dividing-line hr {
  margin: 0;
}

/* line 1, resources/assets/styles/flexible-content/_full-width-image.scss */

.svg-container {
  padding-bottom: 100%;
  position: relative;
}

/* line 5, resources/assets/styles/flexible-content/_full-width-image.scss */

.svg-container svg {
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}

/* line 1, resources/assets/styles/flexible-content/_iframe.scss */

.responsive-iframe.ratio-16-9 {
  aspect-ratio: 16 / 9;
  height: 100%;
  width: 100%;
}

/* line 1, resources/assets/styles/flexible-content/_testimonial.scss */

.flexible-content-testimonials {
  position: relative;
}

/* line 4, resources/assets/styles/flexible-content/_testimonial.scss */

.flexible-content-testimonials__rows {
  width: 100%;
}

/* line 8, resources/assets/styles/flexible-content/_testimonial.scss */

.flexible-content-testimonials .testimonial-svg {
  display: block;
  height: 40px;
  margin-left: auto;
  margin-right: auto;
  width: 40px;
}

/* line 16, resources/assets/styles/flexible-content/_testimonial.scss */

.flexible-content-testimonials .testimonial-body {
  margin: 1.875rem 0;
  width: 100%;
}

/* line 21, resources/assets/styles/flexible-content/_testimonial.scss */

.flexible-content-testimonials .swiper-pagination {
  margin-top: 1.25rem;
  position: relative;
}

/* line 26, resources/assets/styles/flexible-content/_testimonial.scss */

.flexible-content-testimonials .swiper-pagination-bullet {
  height: 9px;
  margin-left: 0.1875rem;
  margin-right: 0.1875rem;
  width: 9px;
}

/* line 33, resources/assets/styles/flexible-content/_testimonial.scss */

.flexible-content-testimonials .swiper-pagination-bullet-active {
  background-color: #ba0c2f;
}

/* line 2, resources/assets/styles/flexible-content/_text-multple-columns.scss */

.flexible-content-text-multiple-columns .text-media-images {
  margin-top: 1.875rem;
}

/* line 5, resources/assets/styles/flexible-content/_text-multple-columns.scss */

.flexible-content-text-multiple-columns .text-media-images > div {
  -ms-flex-preferred-size: 0;
      flex-basis: 0;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

/* line 11, resources/assets/styles/flexible-content/_text-multple-columns.scss */

.flexible-content-text-multiple-columns .text-media-text {
  margin-top: 1.875rem;
}

/* line 15, resources/assets/styles/flexible-content/_text-multple-columns.scss */

.flexible-content-text-multiple-columns .column {
  -ms-flex-preferred-size: 100%;
      flex-basis: 100%;
  max-width: 400px;
  min-width: 190px;
}

@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  /* line 15, resources/assets/styles/flexible-content/_text-multple-columns.scss */

  .flexible-content-text-multiple-columns .column {
    max-width: none;
  }
}

@media (min-width: 46.25em) {
  /* line 15, resources/assets/styles/flexible-content/_text-multple-columns.scss */

  .flexible-content-text-multiple-columns .column {
    -ms-flex-preferred-size: 0;
        flex-basis: 0;
  }
}

/* line 30, resources/assets/styles/flexible-content/_text-multple-columns.scss */

.flexible-content-text-multiple-columns.has-background-color > [class^=container] {
  padding: 2.8125rem;
}

/* line 35, resources/assets/styles/flexible-content/_text-multple-columns.scss */

.flexible-content-text-multiple-columns.has-background-color.background-color-pale_green > [class^=container] {
  background-color: #f1f6ec;
}

/* line 39, resources/assets/styles/flexible-content/_text-multple-columns.scss */

.flexible-content-text-multiple-columns.has-background-color.background-color-pale_green h1,
.flexible-content-text-multiple-columns.has-background-color.background-color-pale_green h2,
.flexible-content-text-multiple-columns.has-background-color.background-color-pale_green h3,
.flexible-content-text-multiple-columns.has-background-color.background-color-pale_green h4,
.flexible-content-text-multiple-columns.has-background-color.background-color-pale_green h5,
.flexible-content-text-multiple-columns.has-background-color.background-color-pale_green h6 {
  color: #74a339;
}

/* line 48, resources/assets/styles/flexible-content/_text-multple-columns.scss */

.flexible-content-text-multiple-columns.has-background-color.background-color-pale_green .button {
  background-color: #fff;
  color: #43485e;
}

/* line 55, resources/assets/styles/flexible-content/_text-multple-columns.scss */

.flexible-content-text-multiple-columns.has-background-color.background-color-pale_blue > [class^=container] {
  background-color: #edf4f8;
}

/* line 59, resources/assets/styles/flexible-content/_text-multple-columns.scss */

.flexible-content-text-multiple-columns.has-background-color.background-color-pale_blue h1,
.flexible-content-text-multiple-columns.has-background-color.background-color-pale_blue h2,
.flexible-content-text-multiple-columns.has-background-color.background-color-pale_blue h3,
.flexible-content-text-multiple-columns.has-background-color.background-color-pale_blue h4,
.flexible-content-text-multiple-columns.has-background-color.background-color-pale_blue h5,
.flexible-content-text-multiple-columns.has-background-color.background-color-pale_blue h6 {
  color: #4997ba;
}

/* line 68, resources/assets/styles/flexible-content/_text-multple-columns.scss */

.flexible-content-text-multiple-columns.has-background-color.background-color-pale_blue .button {
  background-color: #fff;
  color: #43485e;
}

/* line 2, resources/assets/styles/flexible-content/_text-single-column.scss */

.flexible-content-text-single-column .text-media-images {
  margin-top: 1.875rem;
}

/* line 5, resources/assets/styles/flexible-content/_text-single-column.scss */

.flexible-content-text-single-column .text-media-images > div {
  -ms-flex-preferred-size: 0;
      flex-basis: 0;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

/* line 11, resources/assets/styles/flexible-content/_text-single-column.scss */

.flexible-content-text-single-column .text-media-subtitle {
  color: "#9c1546b3";
  font-size: 1.5rem;
  font-weight: 400;
}

/* line 17, resources/assets/styles/flexible-content/_text-single-column.scss */

.flexible-content-text-single-column .text-media-text {
  margin-top: 1.875rem;
}

/* line 22, resources/assets/styles/flexible-content/_text-single-column.scss */

.flexible-content-text-single-column.has-background-color > * > [class^=container] {
  padding: 2.8125rem;
}

/* line 27, resources/assets/styles/flexible-content/_text-single-column.scss */

.flexible-content-text-single-column.has-background-color.background-color-pale_green > * > [class^=container] {
  background-color: #f1f6ec;
}

/* line 31, resources/assets/styles/flexible-content/_text-single-column.scss */

.flexible-content-text-single-column.has-background-color.background-color-pale_green h1,
.flexible-content-text-single-column.has-background-color.background-color-pale_green h2,
.flexible-content-text-single-column.has-background-color.background-color-pale_green h3,
.flexible-content-text-single-column.has-background-color.background-color-pale_green h4,
.flexible-content-text-single-column.has-background-color.background-color-pale_green h5,
.flexible-content-text-single-column.has-background-color.background-color-pale_green h6 {
  color: #74a339;
}

/* line 40, resources/assets/styles/flexible-content/_text-single-column.scss */

.flexible-content-text-single-column.has-background-color.background-color-pale_green .button {
  background-color: #fff;
  color: #43485e;
}

/* line 47, resources/assets/styles/flexible-content/_text-single-column.scss */

.flexible-content-text-single-column.has-background-color.background-color-pale_blue > * > [class^=container] {
  background-color: #edf4f8;
}

/* line 51, resources/assets/styles/flexible-content/_text-single-column.scss */

.flexible-content-text-single-column.has-background-color.background-color-pale_blue h1,
.flexible-content-text-single-column.has-background-color.background-color-pale_blue h2,
.flexible-content-text-single-column.has-background-color.background-color-pale_blue h3,
.flexible-content-text-single-column.has-background-color.background-color-pale_blue h4,
.flexible-content-text-single-column.has-background-color.background-color-pale_blue h5,
.flexible-content-text-single-column.has-background-color.background-color-pale_blue h6 {
  color: #4997ba;
}

/* line 60, resources/assets/styles/flexible-content/_text-single-column.scss */

.flexible-content-text-single-column.has-background-color.background-color-pale_blue .button {
  background-color: #fff;
  color: #43485e;
}

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