@import url(https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css);
/* required styles */

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

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

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

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

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

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

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


/* control positioning */

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


/* zoom and fade animations */

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

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

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


/* cursors */

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

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

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

/* visual tweaks */

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


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


/* general toolbar styles */

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

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

/* zoom control */

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

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


/* layers control */

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

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


/* attribution and scale controls */

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

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


/* popup */

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

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

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

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

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

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


/* div icon */

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


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

/* Directions */

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

/* Printing */

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

.color-black{color:#363636}.font-black{color:#363636}.color-grey-dark{color:#878787}.font-grey-dark{color:#878787}.color-grey{color:#b8b8b8}.font-grey{color:#b8b8b8}.color-grey-light{color:#f6f6f6}.font-grey-light{color:#f6f6f6}.color-white{color:#fff}.font-white{color:#fff}.color-yellow{color:#fbad18}.font-yellow{color:#fbad18}.color-yellow-light{color:#ffc567}.font-yellow-light{color:#ffc567}.color-purple{color:#3f1486}.font-purple{color:#3f1486}.color-purple-light{color:#639}.font-purple-light{color:#639}.color-black{color:#363636}.font-black{color:#363636}.color-grey-dark{color:#878787}.font-grey-dark{color:#878787}.color-grey{color:#b8b8b8}.font-grey{color:#b8b8b8}.color-grey-light{color:#f6f6f6}.font-grey-light{color:#f6f6f6}.color-white{color:#fff}.font-white{color:#fff}.color-yellow{color:#fbad18}.font-yellow{color:#fbad18}.color-yellow-light{color:#ffc567}.font-yellow-light{color:#ffc567}.color-purple{color:#3f1486}.font-purple{color:#3f1486}.color-purple-light{color:#639}.font-purple-light{color:#639}form h3,form h4{margin:25px 0;font-family:"gothambold",sans-serif}form h3{font-size:34px}form h4{font-size:20px;margin-bottom:0}form h4+p{margin:0;color:#878787;font-size:16px}form.loading::after{content:"";position:absolute;top:0;left:0;width:100%;height:100%;background:rgba(255,255,255,.5)}form fieldset{border:none;padding:0;display:flex;column-gap:15px;row-gap:15px;margin:15px 0 0 0}form fieldset label{margin-top:0}@media screen and (max-width: 1100px){form fieldset{flex-wrap:wrap}}form label{user-select:none}form select[multiple]{display:none}form select,form input[type=text],form input[type=email],form input[type=number],form input[type=tel],form input[type=date],form textarea{padding:10px 25px;border-radius:25px;border:1px solid #b8b8b8;color:#363636;background-color:#fff;flex:auto}form select.invalid,form input[type=text].invalid,form input[type=email].invalid,form input[type=number].invalid,form input[type=tel].invalid,form input[type=date].invalid,form textarea.invalid{border:solid 1px red !important;background-color:#f8d7da !important;color:#721c24 !important}form select{color:#363636 !important;-webkit-appearance:none;-moz-appearance:none;background:url(/assets/img/_components/drop-down-arrow.svg) no-repeat right #fff;background-size:10px;background-origin:content-box;cursor:pointer}form select:hover{background-color:#f6f6f6}form select:last-child{margin-right:0}form select:has(+input[type=tel].invalid){border:solid 1px red !important;background-color:#f8d7da !important;color:#721c24 !important}form select:has(+input[type=tel]){position:absolute;margin:0;left:-1px;width:80px;height:100%;padding:10px 10px}form select:has(+input[type=tel])+input[type=tel]{padding-left:82px}form select:has(+input[type=tel])+input[type=tel]+span{left:82px}form label{cursor:pointer;position:relative;display:flex;white-space:nowrap;align-items:center;flex:auto;margin:15px 0 0 0}form label:last-child{margin-right:0}form label input[type=text]+span,form label input[type=email]+span,form label input[type=number]+span,form label textarea+span,form label input[type=tel]+span{position:absolute;left:25px;top:50%;transform:translateY(-50%);pointer-events:none;transition:.3s;opacity:1;color:#878787 !important}form label input[type=text]+span.hidden,form label input[type=email]+span.hidden,form label input[type=number]+span.hidden,form label textarea+span.hidden,form label input[type=tel]+span.hidden{opacity:0;left:100% !important}form label .input-unit{position:absolute;color:rgba(0,0,0,0) !important;margin-left:25px;pointer-events:none;font-family:"gothamlight",sans-serif;font-size:16px}form label .input-unit span{color:#363636}form label input[type=number][data-unit]{caret-color:#000;color:#363636;font-family:"gothamlight",sans-serif;font-size:16px}form label input[type=radio],form label input[type=checkbox] input[type=date]{position:absolute;opacity:0}form label input[type=radio]:hover+span:before,form label input[type=checkbox] input[type=date]:hover+span:before{background:#f6f6f6;color:#fff}form label input[type=radio]:checked+span:before,form label input[type=checkbox] input[type=date]:checked+span:before{background:#fbad18;content:"✔";color:#fff}form label input[type=radio].invalid:not(:checked)+span:before,form label input[type=checkbox] input[type=date].invalid:not(:checked)+span:before{border:solid 1px red !important;background-color:#f8d7da !important;color:#f8d7da !important}form label input[type=radio]+span,form label input[type=checkbox] input[type=date]+span{display:inline-block;line-height:25px}form label input[type=radio]+span:before,form label input[type=checkbox] input[type=date]+span:before{transition:.3s;display:inline-block;width:1rem;height:1rem;content:" ";line-height:1rem;font-size:.9rem;text-align:center;background:#fff;color:#fff !important;border:1px solid #b8b8b8;margin:0 6px 0 0}form label input[type=radio]+span:before{border-radius:150px}form label input[type=checkbox]+span:before{border-radius:5px}form label input[type=radio].maj-radio-button.invalid+span{border:solid 1px red;background-color:#f8d7da;color:#721c24}form label input[type=radio].maj-radio-button:checked+span{background-color:#fbad18}form label input[type=radio].maj-radio-button:not(:checked)+span:hover{background-color:#fbad18;color:#fff}form label input[type=radio].maj-radio-button+span{background-color:#b8b8b8;cursor:pointer;color:#fff;border-radius:150px;font-family:"gothambold",sans-serif;font-size:18px;padding:0 50px;line-height:46px;width:100%;text-align:center}form label input[type=radio].maj-radio-button+span:before{display:none !important}form>.maj-flexbox{gap:40px}form textarea:focus,form select:focus,form input:focus{outline:none}form input:-webkit-autofill,form input:-webkit-autofill:hover,form input:-webkit-autofill:focus,form input:-webkit-autofill:active{-webkit-box-shadow:0 0 0 30px #fff inset !important}html{scroll-behavior:smooth;scroll-padding-top:90px}@media screen and (max-width: 1100px){html{scroll-padding-top:75px}}body,html{overflow-x:hidden}body{margin:0;width:100%;font-family:"gothambook",sans-serif;font-size:18px;color:#363636;background-color:#fff;padding-top:75px;overflow-x:hidden}@media screen and (max-width: 1100px){body{padding-top:60px}}body input,body textarea{font-size:18px;font-family:"gothambook",sans-serif}body img{width:100%;object-fit:cover;transition:0s}body iframe{width:100%}body h2{color:#fbad18;font-family:"gothambold",sans-serif;font-size:25px;margin:40px 0 25px 0}body h3,body h4{color:#fbad18;font-family:"gothambold",sans-serif}body p{font-size:20px;color:#363636;font-family:"gothambook",sans-serif;line-height:27px}body ul{font-size:16px;color:#363636;font-family:"gothambook",sans-serif}body ul li{line-height:25px}body hr{width:100%;margin:25px 0;border:none}body a{color:#3f1486;font-family:"gothammedium",sans-serif;text-decoration:none}body a:hover{color:#fbad18}body a,body a *,body button,body button *{cursor:pointer}::selection{background-color:#3f1486;color:#fff}::-moz-selection{background-color:#3f1486;color:#fff}@font-face{font-family:gothamblack;src:url(/assets/fonts/Gotham-Black.otf)}@font-face{font-family:gothamblackitalic;src:url(/assets/fonts/GothamBlack-Italic.otf)}@font-face{font-family:gothambold;src:url(/assets/fonts/Gotham-Bold.otf)}@font-face{font-family:gothammedium;src:url(/assets/fonts/Gotham-Medium.otf)}@font-face{font-family:gothambook;src:url(/assets/fonts/Gotham-Book.otf)}@font-face{font-family:gothamlight;src:url(/assets/fonts/Gotham-Light.otf)}.color-black{color:#363636}.font-black{color:#363636}.color-grey-dark{color:#878787}.font-grey-dark{color:#878787}.color-grey{color:#b8b8b8}.font-grey{color:#b8b8b8}.color-grey-light{color:#f6f6f6}.font-grey-light{color:#f6f6f6}.color-white{color:#fff}.font-white{color:#fff}.color-yellow{color:#fbad18}.font-yellow{color:#fbad18}.color-yellow-light{color:#ffc567}.font-yellow-light{color:#ffc567}.color-purple{color:#3f1486}.font-purple{color:#3f1486}.color-purple-light{color:#639}.font-purple-light{color:#639}.mt-1{margin-top:1px}.mb-1{margin-bottom:1px}.mt-2{margin-top:2px}.mb-2{margin-bottom:2px}.mt-3{margin-top:3px}.mb-3{margin-bottom:3px}.mt-4{margin-top:4px}.mb-4{margin-bottom:4px}.mt-5{margin-top:5px}.mb-5{margin-bottom:5px}.mt-6{margin-top:6px}.mb-6{margin-bottom:6px}.mt-7{margin-top:7px}.mb-7{margin-bottom:7px}.mt-8{margin-top:8px}.mb-8{margin-bottom:8px}.mt-9{margin-top:9px}.mb-9{margin-bottom:9px}.mt-10{margin-top:10px}.mb-10{margin-bottom:10px}.mt-11{margin-top:11px}.mb-11{margin-bottom:11px}.mt-12{margin-top:12px}.mb-12{margin-bottom:12px}.mt-13{margin-top:13px}.mb-13{margin-bottom:13px}.mt-14{margin-top:14px}.mb-14{margin-bottom:14px}.mt-15{margin-top:15px}.mb-15{margin-bottom:15px}.mt-16{margin-top:16px}.mb-16{margin-bottom:16px}.mt-17{margin-top:17px}.mb-17{margin-bottom:17px}.mt-18{margin-top:18px}.mb-18{margin-bottom:18px}.mt-19{margin-top:19px}.mb-19{margin-bottom:19px}.mt-20{margin-top:20px}.mb-20{margin-bottom:20px}.mt-21{margin-top:21px}.mb-21{margin-bottom:21px}.mt-22{margin-top:22px}.mb-22{margin-bottom:22px}.mt-23{margin-top:23px}.mb-23{margin-bottom:23px}.mt-24{margin-top:24px}.mb-24{margin-bottom:24px}.mt-25{margin-top:25px}.mb-25{margin-bottom:25px}.mt-26{margin-top:26px}.mb-26{margin-bottom:26px}.mt-27{margin-top:27px}.mb-27{margin-bottom:27px}.mt-28{margin-top:28px}.mb-28{margin-bottom:28px}.mt-29{margin-top:29px}.mb-29{margin-bottom:29px}.mt-30{margin-top:30px}.mb-30{margin-bottom:30px}.mt-31{margin-top:31px}.mb-31{margin-bottom:31px}.mt-32{margin-top:32px}.mb-32{margin-bottom:32px}.mt-33{margin-top:33px}.mb-33{margin-bottom:33px}.mt-34{margin-top:34px}.mb-34{margin-bottom:34px}.mt-35{margin-top:35px}.mb-35{margin-bottom:35px}.mt-36{margin-top:36px}.mb-36{margin-bottom:36px}.mt-37{margin-top:37px}.mb-37{margin-bottom:37px}.mt-38{margin-top:38px}.mb-38{margin-bottom:38px}.mt-39{margin-top:39px}.mb-39{margin-bottom:39px}.mt-40{margin-top:40px}.mb-40{margin-bottom:40px}.mt-41{margin-top:41px}.mb-41{margin-bottom:41px}.mt-42{margin-top:42px}.mb-42{margin-bottom:42px}.mt-43{margin-top:43px}.mb-43{margin-bottom:43px}.mt-44{margin-top:44px}.mb-44{margin-bottom:44px}.mt-45{margin-top:45px}.mb-45{margin-bottom:45px}.mt-46{margin-top:46px}.mb-46{margin-bottom:46px}.mt-47{margin-top:47px}.mb-47{margin-bottom:47px}.mt-48{margin-top:48px}.mb-48{margin-bottom:48px}.mt-49{margin-top:49px}.mb-49{margin-bottom:49px}.mt-50{margin-top:50px}.mb-50{margin-bottom:50px}.mt-51{margin-top:51px}.mb-51{margin-bottom:51px}.mt-52{margin-top:52px}.mb-52{margin-bottom:52px}.mt-53{margin-top:53px}.mb-53{margin-bottom:53px}.mt-54{margin-top:54px}.mb-54{margin-bottom:54px}.mt-55{margin-top:55px}.mb-55{margin-bottom:55px}.mt-56{margin-top:56px}.mb-56{margin-bottom:56px}.mt-57{margin-top:57px}.mb-57{margin-bottom:57px}.mt-58{margin-top:58px}.mb-58{margin-bottom:58px}.mt-59{margin-top:59px}.mb-59{margin-bottom:59px}.mt-60{margin-top:60px}.mb-60{margin-bottom:60px}.mt-61{margin-top:61px}.mb-61{margin-bottom:61px}.mt-62{margin-top:62px}.mb-62{margin-bottom:62px}.mt-63{margin-top:63px}.mb-63{margin-bottom:63px}.mt-64{margin-top:64px}.mb-64{margin-bottom:64px}.mt-65{margin-top:65px}.mb-65{margin-bottom:65px}.mt-66{margin-top:66px}.mb-66{margin-bottom:66px}.mt-67{margin-top:67px}.mb-67{margin-bottom:67px}.mt-68{margin-top:68px}.mb-68{margin-bottom:68px}.mt-69{margin-top:69px}.mb-69{margin-bottom:69px}.mt-70{margin-top:70px}.mb-70{margin-bottom:70px}.mt-71{margin-top:71px}.mb-71{margin-bottom:71px}.mt-72{margin-top:72px}.mb-72{margin-bottom:72px}.mt-73{margin-top:73px}.mb-73{margin-bottom:73px}.mt-74{margin-top:74px}.mb-74{margin-bottom:74px}.mt-75{margin-top:75px}.mb-75{margin-bottom:75px}.mt-76{margin-top:76px}.mb-76{margin-bottom:76px}.mt-77{margin-top:77px}.mb-77{margin-bottom:77px}.mt-78{margin-top:78px}.mb-78{margin-bottom:78px}.mt-79{margin-top:79px}.mb-79{margin-bottom:79px}.mt-80{margin-top:80px}.mb-80{margin-bottom:80px}.mt-81{margin-top:81px}.mb-81{margin-bottom:81px}.mt-82{margin-top:82px}.mb-82{margin-bottom:82px}.mt-83{margin-top:83px}.mb-83{margin-bottom:83px}.mt-84{margin-top:84px}.mb-84{margin-bottom:84px}.mt-85{margin-top:85px}.mb-85{margin-bottom:85px}.mt-86{margin-top:86px}.mb-86{margin-bottom:86px}.mt-87{margin-top:87px}.mb-87{margin-bottom:87px}.mt-88{margin-top:88px}.mb-88{margin-bottom:88px}.mt-89{margin-top:89px}.mb-89{margin-bottom:89px}.mt-90{margin-top:90px}.mb-90{margin-bottom:90px}.mt-91{margin-top:91px}.mb-91{margin-bottom:91px}.mt-92{margin-top:92px}.mb-92{margin-bottom:92px}.mt-93{margin-top:93px}.mb-93{margin-bottom:93px}.mt-94{margin-top:94px}.mb-94{margin-bottom:94px}.mt-95{margin-top:95px}.mb-95{margin-bottom:95px}.mt-96{margin-top:96px}.mb-96{margin-bottom:96px}.mt-97{margin-top:97px}.mb-97{margin-bottom:97px}.mt-98{margin-top:98px}.mb-98{margin-bottom:98px}.mt-99{margin-top:99px}.mb-99{margin-bottom:99px}.mt-100{margin-top:100px}.mb-100{margin-bottom:100px}.mt-101{margin-top:101px}.mb-101{margin-bottom:101px}.mt-102{margin-top:102px}.mb-102{margin-bottom:102px}.mt-103{margin-top:103px}.mb-103{margin-bottom:103px}.mt-104{margin-top:104px}.mb-104{margin-bottom:104px}.mt-105{margin-top:105px}.mb-105{margin-bottom:105px}.mt-106{margin-top:106px}.mb-106{margin-bottom:106px}.mt-107{margin-top:107px}.mb-107{margin-bottom:107px}.mt-108{margin-top:108px}.mb-108{margin-bottom:108px}.mt-109{margin-top:109px}.mb-109{margin-bottom:109px}.mt-110{margin-top:110px}.mb-110{margin-bottom:110px}.mt-111{margin-top:111px}.mb-111{margin-bottom:111px}.mt-112{margin-top:112px}.mb-112{margin-bottom:112px}.mt-113{margin-top:113px}.mb-113{margin-bottom:113px}.mt-114{margin-top:114px}.mb-114{margin-bottom:114px}.mt-115{margin-top:115px}.mb-115{margin-bottom:115px}.mt-116{margin-top:116px}.mb-116{margin-bottom:116px}.mt-117{margin-top:117px}.mb-117{margin-bottom:117px}.mt-118{margin-top:118px}.mb-118{margin-bottom:118px}.mt-119{margin-top:119px}.mb-119{margin-bottom:119px}.mt-120{margin-top:120px}.mb-120{margin-bottom:120px}.mt-121{margin-top:121px}.mb-121{margin-bottom:121px}.mt-122{margin-top:122px}.mb-122{margin-bottom:122px}.mt-123{margin-top:123px}.mb-123{margin-bottom:123px}.mt-124{margin-top:124px}.mb-124{margin-bottom:124px}.mt-125{margin-top:125px}.mb-125{margin-bottom:125px}.mt-126{margin-top:126px}.mb-126{margin-bottom:126px}.mt-127{margin-top:127px}.mb-127{margin-bottom:127px}.mt-128{margin-top:128px}.mb-128{margin-bottom:128px}.mt-129{margin-top:129px}.mb-129{margin-bottom:129px}.mt-130{margin-top:130px}.mb-130{margin-bottom:130px}.mt-131{margin-top:131px}.mb-131{margin-bottom:131px}.mt-132{margin-top:132px}.mb-132{margin-bottom:132px}.mt-133{margin-top:133px}.mb-133{margin-bottom:133px}.mt-134{margin-top:134px}.mb-134{margin-bottom:134px}.mt-135{margin-top:135px}.mb-135{margin-bottom:135px}.mt-136{margin-top:136px}.mb-136{margin-bottom:136px}.mt-137{margin-top:137px}.mb-137{margin-bottom:137px}.mt-138{margin-top:138px}.mb-138{margin-bottom:138px}.mt-139{margin-top:139px}.mb-139{margin-bottom:139px}.mt-140{margin-top:140px}.mb-140{margin-bottom:140px}.mt-141{margin-top:141px}.mb-141{margin-bottom:141px}.mt-142{margin-top:142px}.mb-142{margin-bottom:142px}.mt-143{margin-top:143px}.mb-143{margin-bottom:143px}.mt-144{margin-top:144px}.mb-144{margin-bottom:144px}.mt-145{margin-top:145px}.mb-145{margin-bottom:145px}.mt-146{margin-top:146px}.mb-146{margin-bottom:146px}.mt-147{margin-top:147px}.mb-147{margin-bottom:147px}.mt-148{margin-top:148px}.mb-148{margin-bottom:148px}.mt-149{margin-top:149px}.mb-149{margin-bottom:149px}.mt-150{margin-top:150px}.mb-150{margin-bottom:150px}.mt-151{margin-top:151px}.mb-151{margin-bottom:151px}.mt-152{margin-top:152px}.mb-152{margin-bottom:152px}.mt-153{margin-top:153px}.mb-153{margin-bottom:153px}.mt-154{margin-top:154px}.mb-154{margin-bottom:154px}.mt-155{margin-top:155px}.mb-155{margin-bottom:155px}.mt-156{margin-top:156px}.mb-156{margin-bottom:156px}.mt-157{margin-top:157px}.mb-157{margin-bottom:157px}.mt-158{margin-top:158px}.mb-158{margin-bottom:158px}.mt-159{margin-top:159px}.mb-159{margin-bottom:159px}.mt-160{margin-top:160px}.mb-160{margin-bottom:160px}.mt-161{margin-top:161px}.mb-161{margin-bottom:161px}.mt-162{margin-top:162px}.mb-162{margin-bottom:162px}.mt-163{margin-top:163px}.mb-163{margin-bottom:163px}.mt-164{margin-top:164px}.mb-164{margin-bottom:164px}.mt-165{margin-top:165px}.mb-165{margin-bottom:165px}.mt-166{margin-top:166px}.mb-166{margin-bottom:166px}.mt-167{margin-top:167px}.mb-167{margin-bottom:167px}.mt-168{margin-top:168px}.mb-168{margin-bottom:168px}.mt-169{margin-top:169px}.mb-169{margin-bottom:169px}.mt-170{margin-top:170px}.mb-170{margin-bottom:170px}.mt-171{margin-top:171px}.mb-171{margin-bottom:171px}.mt-172{margin-top:172px}.mb-172{margin-bottom:172px}.mt-173{margin-top:173px}.mb-173{margin-bottom:173px}.mt-174{margin-top:174px}.mb-174{margin-bottom:174px}.mt-175{margin-top:175px}.mb-175{margin-bottom:175px}.mt-176{margin-top:176px}.mb-176{margin-bottom:176px}.mt-177{margin-top:177px}.mb-177{margin-bottom:177px}.mt-178{margin-top:178px}.mb-178{margin-bottom:178px}.mt-179{margin-top:179px}.mb-179{margin-bottom:179px}.mt-180{margin-top:180px}.mb-180{margin-bottom:180px}.mt-181{margin-top:181px}.mb-181{margin-bottom:181px}.mt-182{margin-top:182px}.mb-182{margin-bottom:182px}.mt-183{margin-top:183px}.mb-183{margin-bottom:183px}.mt-184{margin-top:184px}.mb-184{margin-bottom:184px}.mt-185{margin-top:185px}.mb-185{margin-bottom:185px}.mt-186{margin-top:186px}.mb-186{margin-bottom:186px}.mt-187{margin-top:187px}.mb-187{margin-bottom:187px}.mt-188{margin-top:188px}.mb-188{margin-bottom:188px}.mt-189{margin-top:189px}.mb-189{margin-bottom:189px}.mt-190{margin-top:190px}.mb-190{margin-bottom:190px}.mt-191{margin-top:191px}.mb-191{margin-bottom:191px}.mt-192{margin-top:192px}.mb-192{margin-bottom:192px}.mt-193{margin-top:193px}.mb-193{margin-bottom:193px}.mt-194{margin-top:194px}.mb-194{margin-bottom:194px}.mt-195{margin-top:195px}.mb-195{margin-bottom:195px}.mt-196{margin-top:196px}.mb-196{margin-bottom:196px}.mt-197{margin-top:197px}.mb-197{margin-bottom:197px}.mt-198{margin-top:198px}.mb-198{margin-bottom:198px}.mt-199{margin-top:199px}.mb-199{margin-bottom:199px}.mt-200{margin-top:200px}.mb-200{margin-bottom:200px}.mt-201{margin-top:201px}.mb-201{margin-bottom:201px}.mt-202{margin-top:202px}.mb-202{margin-bottom:202px}.mt-203{margin-top:203px}.mb-203{margin-bottom:203px}.mt-204{margin-top:204px}.mb-204{margin-bottom:204px}.mt-205{margin-top:205px}.mb-205{margin-bottom:205px}.mt-206{margin-top:206px}.mb-206{margin-bottom:206px}.mt-207{margin-top:207px}.mb-207{margin-bottom:207px}.mt-208{margin-top:208px}.mb-208{margin-bottom:208px}.mt-209{margin-top:209px}.mb-209{margin-bottom:209px}.mt-210{margin-top:210px}.mb-210{margin-bottom:210px}.mt-211{margin-top:211px}.mb-211{margin-bottom:211px}.mt-212{margin-top:212px}.mb-212{margin-bottom:212px}.mt-213{margin-top:213px}.mb-213{margin-bottom:213px}.mt-214{margin-top:214px}.mb-214{margin-bottom:214px}.mt-215{margin-top:215px}.mb-215{margin-bottom:215px}.mt-216{margin-top:216px}.mb-216{margin-bottom:216px}.mt-217{margin-top:217px}.mb-217{margin-bottom:217px}.mt-218{margin-top:218px}.mb-218{margin-bottom:218px}.mt-219{margin-top:219px}.mb-219{margin-bottom:219px}.mt-220{margin-top:220px}.mb-220{margin-bottom:220px}.mt-221{margin-top:221px}.mb-221{margin-bottom:221px}.mt-222{margin-top:222px}.mb-222{margin-bottom:222px}.mt-223{margin-top:223px}.mb-223{margin-bottom:223px}.mt-224{margin-top:224px}.mb-224{margin-bottom:224px}.mt-225{margin-top:225px}.mb-225{margin-bottom:225px}.mt-226{margin-top:226px}.mb-226{margin-bottom:226px}.mt-227{margin-top:227px}.mb-227{margin-bottom:227px}.mt-228{margin-top:228px}.mb-228{margin-bottom:228px}.mt-229{margin-top:229px}.mb-229{margin-bottom:229px}.mt-230{margin-top:230px}.mb-230{margin-bottom:230px}.mt-231{margin-top:231px}.mb-231{margin-bottom:231px}.mt-232{margin-top:232px}.mb-232{margin-bottom:232px}.mt-233{margin-top:233px}.mb-233{margin-bottom:233px}.mt-234{margin-top:234px}.mb-234{margin-bottom:234px}.mt-235{margin-top:235px}.mb-235{margin-bottom:235px}.mt-236{margin-top:236px}.mb-236{margin-bottom:236px}.mt-237{margin-top:237px}.mb-237{margin-bottom:237px}.mt-238{margin-top:238px}.mb-238{margin-bottom:238px}.mt-239{margin-top:239px}.mb-239{margin-bottom:239px}.mt-240{margin-top:240px}.mb-240{margin-bottom:240px}.mt-241{margin-top:241px}.mb-241{margin-bottom:241px}.mt-242{margin-top:242px}.mb-242{margin-bottom:242px}.mt-243{margin-top:243px}.mb-243{margin-bottom:243px}.mt-244{margin-top:244px}.mb-244{margin-bottom:244px}.mt-245{margin-top:245px}.mb-245{margin-bottom:245px}.mt-246{margin-top:246px}.mb-246{margin-bottom:246px}.mt-247{margin-top:247px}.mb-247{margin-bottom:247px}.mt-248{margin-top:248px}.mb-248{margin-bottom:248px}.mt-249{margin-top:249px}.mb-249{margin-bottom:249px}.mt-250{margin-top:250px}.mb-250{margin-bottom:250px}.font-1{font-size:1px}.font-2{font-size:2px}.font-3{font-size:3px}.font-4{font-size:4px}.font-5{font-size:5px}.font-6{font-size:6px}.font-7{font-size:7px}.font-8{font-size:8px}.font-9{font-size:9px}.font-10{font-size:10px}.font-11{font-size:11px}.font-12{font-size:12px}.font-13{font-size:13px}.font-14{font-size:14px}.font-15{font-size:15px}.font-16{font-size:16px}.font-17{font-size:17px}.font-18{font-size:18px}.font-19{font-size:19px}.font-20{font-size:20px}.font-21{font-size:21px}.font-22{font-size:22px}.font-23{font-size:23px}.font-24{font-size:24px}.font-25{font-size:25px}.font-26{font-size:26px}.font-27{font-size:27px}.font-28{font-size:28px}.font-29{font-size:29px}.font-30{font-size:30px}.font-31{font-size:31px}.font-32{font-size:32px}.font-33{font-size:33px}.font-34{font-size:34px}.font-35{font-size:35px}.font-36{font-size:36px}.font-37{font-size:37px}.font-38{font-size:38px}.font-39{font-size:39px}.font-40{font-size:40px}.font-41{font-size:41px}.font-42{font-size:42px}.font-43{font-size:43px}.font-44{font-size:44px}.font-45{font-size:45px}.font-46{font-size:46px}.font-47{font-size:47px}.font-48{font-size:48px}.font-49{font-size:49px}.font-50{font-size:50px}.center-container{margin-top:15px;display:flex;justify-content:center;vertical-align:center}.d-block{display:block}.maj-block-title{text-align:center;color:#fbad18;font-family:gothambold,sans-serif;font-size:31px;margin-bottom:25px;margin-left:auto;margin-right:auto}.maj-block-title+p{text-align:center;margin-left:auto;margin-right:auto;font-family:"gothambold",sans-serif}.maj-max-width{max-width:1080px}.margin-center{margin-left:auto;margin-right:auto}button.margin-center{display:block}.maj-img-card{margin:25px 0 0 0;display:flex;border-radius:25px;overflow:hidden;position:relative;padding:25px;min-height:500px;flex-direction:column;justify-content:end}.maj-img-card h3,.maj-img-card p{color:#fff}.maj-img-card h3{margin:0 0 10px 0;font-size:34px}.maj-img-card .background{padding:inherit;display:block;position:absolute;left:0;bottom:0;background:rgba(0,0,0,.3)}.maj-img-card img{position:absolute;top:0;left:0;height:100%;z-index:-1}.maj-grid{display:grid;grid-template-columns:repeat(auto-fit, minmax(300px, 1fr));gap:25px}label{display:initial;margin-bottom:initial;font-weight:initial}.container{margin-right:auto;margin-left:auto}@media screen and (min-width: 320px)and (max-width: 770px){.container{width:calc(100% - 30px);padding:0 15px}}@media screen and (min-width: 770px)and (max-width: 1100px){.container{width:720px}}@media screen and (min-width: 1100px)and (max-width: 1500px){.container{width:1000px}}@media screen and (min-width: 1500px){.container{width:1440px}}.pagination{list-style:none;display:flex;justify-content:center;column-gap:5px;margin:25px 0 0 0;padding:0;font-size:22px}.pagination li.disabled a{display:none}.pagination li.active a{background:#fbad18;color:#fff;border-radius:5px;padding:5px}.pagination li.active a:hover{background:#fff;color:#fbad18}.jumbo{position:relative;display:flex;justify-content:center;align-items:center;flex-direction:column;width:100%;height:600px}.jumbo>img{position:absolute;z-index:-1;top:0;left:0;width:100%;height:600px}.jumbo+footer{margin-top:0}.cookies-bar{position:fixed;bottom:0;left:0;width:calc(100% - 20px);background-color:#3f1486;padding:10px;align-items:center;color:#fff;column-gap:10px;row-gap:10px}.color-black{color:#363636}.font-black{color:#363636}.color-grey-dark{color:#878787}.font-grey-dark{color:#878787}.color-grey{color:#b8b8b8}.font-grey{color:#b8b8b8}.color-grey-light{color:#f6f6f6}.font-grey-light{color:#f6f6f6}.color-white{color:#fff}.font-white{color:#fff}.color-yellow{color:#fbad18}.font-yellow{color:#fbad18}.color-yellow-light{color:#ffc567}.font-yellow-light{color:#ffc567}.color-purple{color:#3f1486}.font-purple{color:#3f1486}.color-purple-light{color:#639}.font-purple-light{color:#639}.breadcrumb{margin:20px 0}.breadcrumb img{height:26px;width:26px;float:left;margin-top:8px}.breadcrumb ul{list-style:none;position:relative;line-height:42px;background:#fff;border-radius:20px;width:fit-content;padding:0 15px;margin:0}.breadcrumb ul li{display:inline-block;line-height:42px}.breadcrumb ul li:first-child{background:url("/assets/img/_components/breadcrumb-icon.svg") no-repeat 0 50%;background-size:26px 26px;padding-left:40px;height:100%}.breadcrumb ul li:last-child a{color:#fbad18}.breadcrumb a{color:#363636;font-family:gothambold,sans-serif}.breadcrumb a:hover{color:#fbad18 !important}@media screen and (max-width: 770px){.breadcrumb ul{line-height:26px}.breadcrumb ul li{line-height:26px;font-size:14px}.breadcrumb ul li:first-child{display:none}}.color-black{color:#363636}.font-black{color:#363636}.color-grey-dark{color:#878787}.font-grey-dark{color:#878787}.color-grey{color:#b8b8b8}.font-grey{color:#b8b8b8}.color-grey-light{color:#f6f6f6}.font-grey-light{color:#f6f6f6}.color-white{color:#fff}.font-white{color:#fff}.color-yellow{color:#fbad18}.font-yellow{color:#fbad18}.color-yellow-light{color:#ffc567}.font-yellow-light{color:#ffc567}.color-purple{color:#3f1486}.font-purple{color:#3f1486}.color-purple-light{color:#639}.font-purple-light{color:#639}.map-container{height:350px;width:100%;overflow:hidden;border-radius:25px;z-index:0}.map-container .map-icon{width:initial !important;height:initial !important;text-align:center;white-space:nowrap;display:flex;gap:5px}.map-container .map-icon *{display:inline-block}.map-container .map-icon img{height:40px}.map-container .map-icon span{font-family:"gothambold",sans-serif;white-space:normal;font-size:16px;width:90px;color:#3f1486;text-shadow:#fff 1px 0 10px;line-height:18px}.color-black{color:#363636}.font-black{color:#363636}.color-grey-dark{color:#878787}.font-grey-dark{color:#878787}.color-grey{color:#b8b8b8}.font-grey{color:#b8b8b8}.color-grey-light{color:#f6f6f6}.font-grey-light{color:#f6f6f6}.color-white{color:#fff}.font-white{color:#fff}.color-yellow{color:#fbad18}.font-yellow{color:#fbad18}.color-yellow-light{color:#ffc567}.font-yellow-light{color:#ffc567}.color-purple{color:#3f1486}.font-purple{color:#3f1486}.color-purple-light{color:#639}.font-purple-light{color:#639}.carousel{position:relative;display:flex;overflow:clip;align-items:center}.carousel .inner{white-space:nowrap;height:100%;min-width:100%}.carousel .inner .item{display:inline-block;width:100%;height:100%;overflow:hidden;border-radius:25px;margin-right:0px}@media screen and (max-width: 1100px){.carousel .inner .item{border-radius:0 !important;margin:0}}.carousel .inner .item img{height:100%;transition:transform .3s !important}.carousel .inner .item img:hover{transform:scale(1.3)}.carousel .inner .item.move-left{transition:.3s;transform:translateX(calc(-100% - 0px))}.carousel .inner .item.move-right{transform:translateX(calc(-100% - 0px))}.carousel .inner .item.move-right.end{transition:.3s;transform:translateX(0) !important}.carousel .carousel-btn-container{width:100%;height:100%;display:flex;justify-content:space-between;align-items:center;pointer-events:none;position:absolute}.carousel .carousel-btn-container .control-right,.carousel .carousel-btn-container .control-left{margin:0;padding:0;pointer-events:auto;background:rgba(0,0,0,0);border:none;font-size:60px;color:rgba(255,255,255,.7);transition:.3s ease;cursor:pointer;width:80px}.carousel .carousel-btn-container .control-right:hover,.carousel .carousel-btn-container .control-left:hover{color:#fff}.color-black{color:#363636}.font-black{color:#363636}.color-grey-dark{color:#878787}.font-grey-dark{color:#878787}.color-grey{color:#b8b8b8}.font-grey{color:#b8b8b8}.color-grey-light{color:#f6f6f6}.font-grey-light{color:#f6f6f6}.color-white{color:#fff}.font-white{color:#fff}.color-yellow{color:#fbad18}.font-yellow{color:#fbad18}.color-yellow-light{color:#ffc567}.font-yellow-light{color:#ffc567}.color-purple{color:#3f1486}.font-purple{color:#3f1486}.color-purple-light{color:#639}.font-purple-light{color:#639}.color-black{color:#363636}.font-black{color:#363636}.color-grey-dark{color:#878787}.font-grey-dark{color:#878787}.color-grey{color:#b8b8b8}.font-grey{color:#b8b8b8}.color-grey-light{color:#f6f6f6}.font-grey-light{color:#f6f6f6}.color-white{color:#fff}.font-white{color:#fff}.color-yellow{color:#fbad18}.font-yellow{color:#fbad18}.color-yellow-light{color:#ffc567}.font-yellow-light{color:#ffc567}.color-purple{color:#3f1486}.font-purple{color:#3f1486}.color-purple-light{color:#639}.font-purple-light{color:#639}.mt-1{margin-top:1px}.mb-1{margin-bottom:1px}.mt-2{margin-top:2px}.mb-2{margin-bottom:2px}.mt-3{margin-top:3px}.mb-3{margin-bottom:3px}.mt-4{margin-top:4px}.mb-4{margin-bottom:4px}.mt-5{margin-top:5px}.mb-5{margin-bottom:5px}.mt-6{margin-top:6px}.mb-6{margin-bottom:6px}.mt-7{margin-top:7px}.mb-7{margin-bottom:7px}.mt-8{margin-top:8px}.mb-8{margin-bottom:8px}.mt-9{margin-top:9px}.mb-9{margin-bottom:9px}.mt-10{margin-top:10px}.mb-10{margin-bottom:10px}.mt-11{margin-top:11px}.mb-11{margin-bottom:11px}.mt-12{margin-top:12px}.mb-12{margin-bottom:12px}.mt-13{margin-top:13px}.mb-13{margin-bottom:13px}.mt-14{margin-top:14px}.mb-14{margin-bottom:14px}.mt-15{margin-top:15px}.mb-15{margin-bottom:15px}.mt-16{margin-top:16px}.mb-16{margin-bottom:16px}.mt-17{margin-top:17px}.mb-17{margin-bottom:17px}.mt-18{margin-top:18px}.mb-18{margin-bottom:18px}.mt-19{margin-top:19px}.mb-19{margin-bottom:19px}.mt-20{margin-top:20px}.mb-20{margin-bottom:20px}.mt-21{margin-top:21px}.mb-21{margin-bottom:21px}.mt-22{margin-top:22px}.mb-22{margin-bottom:22px}.mt-23{margin-top:23px}.mb-23{margin-bottom:23px}.mt-24{margin-top:24px}.mb-24{margin-bottom:24px}.mt-25{margin-top:25px}.mb-25{margin-bottom:25px}.mt-26{margin-top:26px}.mb-26{margin-bottom:26px}.mt-27{margin-top:27px}.mb-27{margin-bottom:27px}.mt-28{margin-top:28px}.mb-28{margin-bottom:28px}.mt-29{margin-top:29px}.mb-29{margin-bottom:29px}.mt-30{margin-top:30px}.mb-30{margin-bottom:30px}.mt-31{margin-top:31px}.mb-31{margin-bottom:31px}.mt-32{margin-top:32px}.mb-32{margin-bottom:32px}.mt-33{margin-top:33px}.mb-33{margin-bottom:33px}.mt-34{margin-top:34px}.mb-34{margin-bottom:34px}.mt-35{margin-top:35px}.mb-35{margin-bottom:35px}.mt-36{margin-top:36px}.mb-36{margin-bottom:36px}.mt-37{margin-top:37px}.mb-37{margin-bottom:37px}.mt-38{margin-top:38px}.mb-38{margin-bottom:38px}.mt-39{margin-top:39px}.mb-39{margin-bottom:39px}.mt-40{margin-top:40px}.mb-40{margin-bottom:40px}.mt-41{margin-top:41px}.mb-41{margin-bottom:41px}.mt-42{margin-top:42px}.mb-42{margin-bottom:42px}.mt-43{margin-top:43px}.mb-43{margin-bottom:43px}.mt-44{margin-top:44px}.mb-44{margin-bottom:44px}.mt-45{margin-top:45px}.mb-45{margin-bottom:45px}.mt-46{margin-top:46px}.mb-46{margin-bottom:46px}.mt-47{margin-top:47px}.mb-47{margin-bottom:47px}.mt-48{margin-top:48px}.mb-48{margin-bottom:48px}.mt-49{margin-top:49px}.mb-49{margin-bottom:49px}.mt-50{margin-top:50px}.mb-50{margin-bottom:50px}.mt-51{margin-top:51px}.mb-51{margin-bottom:51px}.mt-52{margin-top:52px}.mb-52{margin-bottom:52px}.mt-53{margin-top:53px}.mb-53{margin-bottom:53px}.mt-54{margin-top:54px}.mb-54{margin-bottom:54px}.mt-55{margin-top:55px}.mb-55{margin-bottom:55px}.mt-56{margin-top:56px}.mb-56{margin-bottom:56px}.mt-57{margin-top:57px}.mb-57{margin-bottom:57px}.mt-58{margin-top:58px}.mb-58{margin-bottom:58px}.mt-59{margin-top:59px}.mb-59{margin-bottom:59px}.mt-60{margin-top:60px}.mb-60{margin-bottom:60px}.mt-61{margin-top:61px}.mb-61{margin-bottom:61px}.mt-62{margin-top:62px}.mb-62{margin-bottom:62px}.mt-63{margin-top:63px}.mb-63{margin-bottom:63px}.mt-64{margin-top:64px}.mb-64{margin-bottom:64px}.mt-65{margin-top:65px}.mb-65{margin-bottom:65px}.mt-66{margin-top:66px}.mb-66{margin-bottom:66px}.mt-67{margin-top:67px}.mb-67{margin-bottom:67px}.mt-68{margin-top:68px}.mb-68{margin-bottom:68px}.mt-69{margin-top:69px}.mb-69{margin-bottom:69px}.mt-70{margin-top:70px}.mb-70{margin-bottom:70px}.mt-71{margin-top:71px}.mb-71{margin-bottom:71px}.mt-72{margin-top:72px}.mb-72{margin-bottom:72px}.mt-73{margin-top:73px}.mb-73{margin-bottom:73px}.mt-74{margin-top:74px}.mb-74{margin-bottom:74px}.mt-75{margin-top:75px}.mb-75{margin-bottom:75px}.mt-76{margin-top:76px}.mb-76{margin-bottom:76px}.mt-77{margin-top:77px}.mb-77{margin-bottom:77px}.mt-78{margin-top:78px}.mb-78{margin-bottom:78px}.mt-79{margin-top:79px}.mb-79{margin-bottom:79px}.mt-80{margin-top:80px}.mb-80{margin-bottom:80px}.mt-81{margin-top:81px}.mb-81{margin-bottom:81px}.mt-82{margin-top:82px}.mb-82{margin-bottom:82px}.mt-83{margin-top:83px}.mb-83{margin-bottom:83px}.mt-84{margin-top:84px}.mb-84{margin-bottom:84px}.mt-85{margin-top:85px}.mb-85{margin-bottom:85px}.mt-86{margin-top:86px}.mb-86{margin-bottom:86px}.mt-87{margin-top:87px}.mb-87{margin-bottom:87px}.mt-88{margin-top:88px}.mb-88{margin-bottom:88px}.mt-89{margin-top:89px}.mb-89{margin-bottom:89px}.mt-90{margin-top:90px}.mb-90{margin-bottom:90px}.mt-91{margin-top:91px}.mb-91{margin-bottom:91px}.mt-92{margin-top:92px}.mb-92{margin-bottom:92px}.mt-93{margin-top:93px}.mb-93{margin-bottom:93px}.mt-94{margin-top:94px}.mb-94{margin-bottom:94px}.mt-95{margin-top:95px}.mb-95{margin-bottom:95px}.mt-96{margin-top:96px}.mb-96{margin-bottom:96px}.mt-97{margin-top:97px}.mb-97{margin-bottom:97px}.mt-98{margin-top:98px}.mb-98{margin-bottom:98px}.mt-99{margin-top:99px}.mb-99{margin-bottom:99px}.mt-100{margin-top:100px}.mb-100{margin-bottom:100px}.mt-101{margin-top:101px}.mb-101{margin-bottom:101px}.mt-102{margin-top:102px}.mb-102{margin-bottom:102px}.mt-103{margin-top:103px}.mb-103{margin-bottom:103px}.mt-104{margin-top:104px}.mb-104{margin-bottom:104px}.mt-105{margin-top:105px}.mb-105{margin-bottom:105px}.mt-106{margin-top:106px}.mb-106{margin-bottom:106px}.mt-107{margin-top:107px}.mb-107{margin-bottom:107px}.mt-108{margin-top:108px}.mb-108{margin-bottom:108px}.mt-109{margin-top:109px}.mb-109{margin-bottom:109px}.mt-110{margin-top:110px}.mb-110{margin-bottom:110px}.mt-111{margin-top:111px}.mb-111{margin-bottom:111px}.mt-112{margin-top:112px}.mb-112{margin-bottom:112px}.mt-113{margin-top:113px}.mb-113{margin-bottom:113px}.mt-114{margin-top:114px}.mb-114{margin-bottom:114px}.mt-115{margin-top:115px}.mb-115{margin-bottom:115px}.mt-116{margin-top:116px}.mb-116{margin-bottom:116px}.mt-117{margin-top:117px}.mb-117{margin-bottom:117px}.mt-118{margin-top:118px}.mb-118{margin-bottom:118px}.mt-119{margin-top:119px}.mb-119{margin-bottom:119px}.mt-120{margin-top:120px}.mb-120{margin-bottom:120px}.mt-121{margin-top:121px}.mb-121{margin-bottom:121px}.mt-122{margin-top:122px}.mb-122{margin-bottom:122px}.mt-123{margin-top:123px}.mb-123{margin-bottom:123px}.mt-124{margin-top:124px}.mb-124{margin-bottom:124px}.mt-125{margin-top:125px}.mb-125{margin-bottom:125px}.mt-126{margin-top:126px}.mb-126{margin-bottom:126px}.mt-127{margin-top:127px}.mb-127{margin-bottom:127px}.mt-128{margin-top:128px}.mb-128{margin-bottom:128px}.mt-129{margin-top:129px}.mb-129{margin-bottom:129px}.mt-130{margin-top:130px}.mb-130{margin-bottom:130px}.mt-131{margin-top:131px}.mb-131{margin-bottom:131px}.mt-132{margin-top:132px}.mb-132{margin-bottom:132px}.mt-133{margin-top:133px}.mb-133{margin-bottom:133px}.mt-134{margin-top:134px}.mb-134{margin-bottom:134px}.mt-135{margin-top:135px}.mb-135{margin-bottom:135px}.mt-136{margin-top:136px}.mb-136{margin-bottom:136px}.mt-137{margin-top:137px}.mb-137{margin-bottom:137px}.mt-138{margin-top:138px}.mb-138{margin-bottom:138px}.mt-139{margin-top:139px}.mb-139{margin-bottom:139px}.mt-140{margin-top:140px}.mb-140{margin-bottom:140px}.mt-141{margin-top:141px}.mb-141{margin-bottom:141px}.mt-142{margin-top:142px}.mb-142{margin-bottom:142px}.mt-143{margin-top:143px}.mb-143{margin-bottom:143px}.mt-144{margin-top:144px}.mb-144{margin-bottom:144px}.mt-145{margin-top:145px}.mb-145{margin-bottom:145px}.mt-146{margin-top:146px}.mb-146{margin-bottom:146px}.mt-147{margin-top:147px}.mb-147{margin-bottom:147px}.mt-148{margin-top:148px}.mb-148{margin-bottom:148px}.mt-149{margin-top:149px}.mb-149{margin-bottom:149px}.mt-150{margin-top:150px}.mb-150{margin-bottom:150px}.mt-151{margin-top:151px}.mb-151{margin-bottom:151px}.mt-152{margin-top:152px}.mb-152{margin-bottom:152px}.mt-153{margin-top:153px}.mb-153{margin-bottom:153px}.mt-154{margin-top:154px}.mb-154{margin-bottom:154px}.mt-155{margin-top:155px}.mb-155{margin-bottom:155px}.mt-156{margin-top:156px}.mb-156{margin-bottom:156px}.mt-157{margin-top:157px}.mb-157{margin-bottom:157px}.mt-158{margin-top:158px}.mb-158{margin-bottom:158px}.mt-159{margin-top:159px}.mb-159{margin-bottom:159px}.mt-160{margin-top:160px}.mb-160{margin-bottom:160px}.mt-161{margin-top:161px}.mb-161{margin-bottom:161px}.mt-162{margin-top:162px}.mb-162{margin-bottom:162px}.mt-163{margin-top:163px}.mb-163{margin-bottom:163px}.mt-164{margin-top:164px}.mb-164{margin-bottom:164px}.mt-165{margin-top:165px}.mb-165{margin-bottom:165px}.mt-166{margin-top:166px}.mb-166{margin-bottom:166px}.mt-167{margin-top:167px}.mb-167{margin-bottom:167px}.mt-168{margin-top:168px}.mb-168{margin-bottom:168px}.mt-169{margin-top:169px}.mb-169{margin-bottom:169px}.mt-170{margin-top:170px}.mb-170{margin-bottom:170px}.mt-171{margin-top:171px}.mb-171{margin-bottom:171px}.mt-172{margin-top:172px}.mb-172{margin-bottom:172px}.mt-173{margin-top:173px}.mb-173{margin-bottom:173px}.mt-174{margin-top:174px}.mb-174{margin-bottom:174px}.mt-175{margin-top:175px}.mb-175{margin-bottom:175px}.mt-176{margin-top:176px}.mb-176{margin-bottom:176px}.mt-177{margin-top:177px}.mb-177{margin-bottom:177px}.mt-178{margin-top:178px}.mb-178{margin-bottom:178px}.mt-179{margin-top:179px}.mb-179{margin-bottom:179px}.mt-180{margin-top:180px}.mb-180{margin-bottom:180px}.mt-181{margin-top:181px}.mb-181{margin-bottom:181px}.mt-182{margin-top:182px}.mb-182{margin-bottom:182px}.mt-183{margin-top:183px}.mb-183{margin-bottom:183px}.mt-184{margin-top:184px}.mb-184{margin-bottom:184px}.mt-185{margin-top:185px}.mb-185{margin-bottom:185px}.mt-186{margin-top:186px}.mb-186{margin-bottom:186px}.mt-187{margin-top:187px}.mb-187{margin-bottom:187px}.mt-188{margin-top:188px}.mb-188{margin-bottom:188px}.mt-189{margin-top:189px}.mb-189{margin-bottom:189px}.mt-190{margin-top:190px}.mb-190{margin-bottom:190px}.mt-191{margin-top:191px}.mb-191{margin-bottom:191px}.mt-192{margin-top:192px}.mb-192{margin-bottom:192px}.mt-193{margin-top:193px}.mb-193{margin-bottom:193px}.mt-194{margin-top:194px}.mb-194{margin-bottom:194px}.mt-195{margin-top:195px}.mb-195{margin-bottom:195px}.mt-196{margin-top:196px}.mb-196{margin-bottom:196px}.mt-197{margin-top:197px}.mb-197{margin-bottom:197px}.mt-198{margin-top:198px}.mb-198{margin-bottom:198px}.mt-199{margin-top:199px}.mb-199{margin-bottom:199px}.mt-200{margin-top:200px}.mb-200{margin-bottom:200px}.mt-201{margin-top:201px}.mb-201{margin-bottom:201px}.mt-202{margin-top:202px}.mb-202{margin-bottom:202px}.mt-203{margin-top:203px}.mb-203{margin-bottom:203px}.mt-204{margin-top:204px}.mb-204{margin-bottom:204px}.mt-205{margin-top:205px}.mb-205{margin-bottom:205px}.mt-206{margin-top:206px}.mb-206{margin-bottom:206px}.mt-207{margin-top:207px}.mb-207{margin-bottom:207px}.mt-208{margin-top:208px}.mb-208{margin-bottom:208px}.mt-209{margin-top:209px}.mb-209{margin-bottom:209px}.mt-210{margin-top:210px}.mb-210{margin-bottom:210px}.mt-211{margin-top:211px}.mb-211{margin-bottom:211px}.mt-212{margin-top:212px}.mb-212{margin-bottom:212px}.mt-213{margin-top:213px}.mb-213{margin-bottom:213px}.mt-214{margin-top:214px}.mb-214{margin-bottom:214px}.mt-215{margin-top:215px}.mb-215{margin-bottom:215px}.mt-216{margin-top:216px}.mb-216{margin-bottom:216px}.mt-217{margin-top:217px}.mb-217{margin-bottom:217px}.mt-218{margin-top:218px}.mb-218{margin-bottom:218px}.mt-219{margin-top:219px}.mb-219{margin-bottom:219px}.mt-220{margin-top:220px}.mb-220{margin-bottom:220px}.mt-221{margin-top:221px}.mb-221{margin-bottom:221px}.mt-222{margin-top:222px}.mb-222{margin-bottom:222px}.mt-223{margin-top:223px}.mb-223{margin-bottom:223px}.mt-224{margin-top:224px}.mb-224{margin-bottom:224px}.mt-225{margin-top:225px}.mb-225{margin-bottom:225px}.mt-226{margin-top:226px}.mb-226{margin-bottom:226px}.mt-227{margin-top:227px}.mb-227{margin-bottom:227px}.mt-228{margin-top:228px}.mb-228{margin-bottom:228px}.mt-229{margin-top:229px}.mb-229{margin-bottom:229px}.mt-230{margin-top:230px}.mb-230{margin-bottom:230px}.mt-231{margin-top:231px}.mb-231{margin-bottom:231px}.mt-232{margin-top:232px}.mb-232{margin-bottom:232px}.mt-233{margin-top:233px}.mb-233{margin-bottom:233px}.mt-234{margin-top:234px}.mb-234{margin-bottom:234px}.mt-235{margin-top:235px}.mb-235{margin-bottom:235px}.mt-236{margin-top:236px}.mb-236{margin-bottom:236px}.mt-237{margin-top:237px}.mb-237{margin-bottom:237px}.mt-238{margin-top:238px}.mb-238{margin-bottom:238px}.mt-239{margin-top:239px}.mb-239{margin-bottom:239px}.mt-240{margin-top:240px}.mb-240{margin-bottom:240px}.mt-241{margin-top:241px}.mb-241{margin-bottom:241px}.mt-242{margin-top:242px}.mb-242{margin-bottom:242px}.mt-243{margin-top:243px}.mb-243{margin-bottom:243px}.mt-244{margin-top:244px}.mb-244{margin-bottom:244px}.mt-245{margin-top:245px}.mb-245{margin-bottom:245px}.mt-246{margin-top:246px}.mb-246{margin-bottom:246px}.mt-247{margin-top:247px}.mb-247{margin-bottom:247px}.mt-248{margin-top:248px}.mb-248{margin-bottom:248px}.mt-249{margin-top:249px}.mb-249{margin-bottom:249px}.mt-250{margin-top:250px}.mb-250{margin-bottom:250px}.font-1{font-size:1px}.font-2{font-size:2px}.font-3{font-size:3px}.font-4{font-size:4px}.font-5{font-size:5px}.font-6{font-size:6px}.font-7{font-size:7px}.font-8{font-size:8px}.font-9{font-size:9px}.font-10{font-size:10px}.font-11{font-size:11px}.font-12{font-size:12px}.font-13{font-size:13px}.font-14{font-size:14px}.font-15{font-size:15px}.font-16{font-size:16px}.font-17{font-size:17px}.font-18{font-size:18px}.font-19{font-size:19px}.font-20{font-size:20px}.font-21{font-size:21px}.font-22{font-size:22px}.font-23{font-size:23px}.font-24{font-size:24px}.font-25{font-size:25px}.font-26{font-size:26px}.font-27{font-size:27px}.font-28{font-size:28px}.font-29{font-size:29px}.font-30{font-size:30px}.font-31{font-size:31px}.font-32{font-size:32px}.font-33{font-size:33px}.font-34{font-size:34px}.font-35{font-size:35px}.font-36{font-size:36px}.font-37{font-size:37px}.font-38{font-size:38px}.font-39{font-size:39px}.font-40{font-size:40px}.font-41{font-size:41px}.font-42{font-size:42px}.font-43{font-size:43px}.font-44{font-size:44px}.font-45{font-size:45px}.font-46{font-size:46px}.font-47{font-size:47px}.font-48{font-size:48px}.font-49{font-size:49px}.font-50{font-size:50px}.center-container{margin-top:15px;display:flex;justify-content:center;vertical-align:center}.d-block{display:block}.maj-block-title{text-align:center;color:#fbad18;font-family:gothambold,sans-serif;font-size:31px;margin-bottom:25px;margin-left:auto;margin-right:auto}.maj-block-title+p{text-align:center;margin-left:auto;margin-right:auto;font-family:"gothambold",sans-serif}.maj-max-width{max-width:1080px}.margin-center{margin-left:auto;margin-right:auto}button.margin-center{display:block}.maj-img-card{margin:25px 0 0 0;display:flex;border-radius:25px;overflow:hidden;position:relative;padding:25px;min-height:500px;flex-direction:column;justify-content:end}.maj-img-card h3,.maj-img-card p{color:#fff}.maj-img-card h3{margin:0 0 10px 0;font-size:34px}.maj-img-card .background{padding:inherit;display:block;position:absolute;left:0;bottom:0;background:rgba(0,0,0,.3)}.maj-img-card img{position:absolute;top:0;left:0;height:100%;z-index:-1}.maj-grid{display:grid;grid-template-columns:repeat(auto-fit, minmax(300px, 1fr));gap:25px}label{display:initial;margin-bottom:initial;font-weight:initial}.container{margin-right:auto;margin-left:auto}@media screen and (min-width: 320px)and (max-width: 770px){.container{width:calc(100% - 30px);padding:0 15px}}@media screen and (min-width: 770px)and (max-width: 1100px){.container{width:720px}}@media screen and (min-width: 1100px)and (max-width: 1500px){.container{width:1000px}}@media screen and (min-width: 1500px){.container{width:1440px}}.pagination{list-style:none;display:flex;justify-content:center;column-gap:5px;margin:25px 0 0 0;padding:0;font-size:22px}.pagination li.disabled a{display:none}.pagination li.active a{background:#fbad18;color:#fff;border-radius:5px;padding:5px}.pagination li.active a:hover{background:#fff;color:#fbad18}.jumbo{position:relative;display:flex;justify-content:center;align-items:center;flex-direction:column;width:100%;height:600px}.jumbo>img{position:absolute;z-index:-1;top:0;left:0;width:100%;height:600px}.jumbo+footer{margin-top:0}.cookies-bar{position:fixed;bottom:0;left:0;width:calc(100% - 20px);background-color:#3f1486;padding:10px;align-items:center;color:#fff;column-gap:10px;row-gap:10px}@media screen and (max-width: 770px){body:has(.maj-modal.active){padding:0}body:has(.maj-modal.active)>div:not(.maj-modal.active),body:has(.maj-modal.active)>section,body:has(.maj-modal.active)>nav,body:has(.maj-modal.active)>footer,body:has(.maj-modal.active)>header{display:none}}@media screen and (min-width: 770px){body:has(.maj-modal.active){overflow:hidden}body:has(.maj-modal.active) .maj-modal-backdrop{z-index:99990;position:fixed;width:100%;height:100%;top:0;left:0;background:rgba(0,0,0,.5)}}.maj-modal{visibility:hidden;position:absolute;opacity:0;display:block;z-index:99991;background:#fff;border-radius:25px}.maj-modal.alert{width:auto !important}.maj-modal.alert p{display:flex;align-items:center;justify-content:center;column-gap:10px;margin-top:80px}@media screen and (min-width: 770px){.maj-modal.alert p{margin-top:80px}}.maj-modal.active{visibility:visible;opacity:1}.maj-modal .close-btn{z-index:99999;position:absolute;top:15px;right:15px;font-size:30px;line-height:30px;background:none;border:none;color:#fbad18}.maj-modal .close-btn:hover{color:#3f1486}@media screen and (max-width: 770px){.maj-modal{width:calc(100vw - 30px);background-color:#fff;padding:15px;display:none}.maj-modal.active{position:relative;display:block;top:0}.maj-modal:has(.maj-modal-title){padding-top:120px !important}.maj-modal:has(.maj-modal-title) .maj-modal-title{position:fixed;display:flex;align-items:center;justify-content:center;text-align:center;top:0;left:0;margin:15px !important;padding:15px 60px 15px 15px !important;width:calc(100% - 105px) !important;height:75px;overflow:clip;z-index:99998;color:#fbad18;font-size:18px;background-color:#fff;border-radius:15px;box-shadow:rgba(50,50,93,.25) 0 6px 12px -2px,rgba(0,0,0,.3) 0px 3px 7px -3px}.maj-modal:has(.maj-modal-title) .close-btn{margin:30px 30px;height:40px;position:fixed;top:-15px;right:0}}@media screen and (min-width: 770px){.maj-modal{max-height:calc(100vh - 80px);overflow:auto;transition:.3s;position:fixed;z-index:99999;left:50%;top:50%;transform:translate(-50%, 100vh);padding:40px}.maj-modal.active{transform:translate(-50%, -50%)}.maj-modal{-ms-overflow-style:none;scrollbar-width:none}.maj-modal::-webkit-scrollbar{display:none}}@media screen and (min-width: 770px)and (max-width: 1100px){.maj-modal{width:750px}}@media screen and (min-width: 770px)and (min-width: 1100px){.maj-modal{width:920px}}.color-black{color:#363636}.font-black{color:#363636}.color-grey-dark{color:#878787}.font-grey-dark{color:#878787}.color-grey{color:#b8b8b8}.font-grey{color:#b8b8b8}.color-grey-light{color:#f6f6f6}.font-grey-light{color:#f6f6f6}.color-white{color:#fff}.font-white{color:#fff}.color-yellow{color:#fbad18}.font-yellow{color:#fbad18}.color-yellow-light{color:#ffc567}.font-yellow-light{color:#ffc567}.color-purple{color:#3f1486}.font-purple{color:#3f1486}.color-purple-light{color:#639}.font-purple-light{color:#639}.maj-flexbox{display:flex;justify-content:space-between}.maj-flexbox.no-wrap{flex-wrap:nowrap !important}@media screen and (max-width: 1500px){.maj-flexbox:not(.wrap-md){flex-wrap:wrap}}@media screen and (max-width: 1100px){.maj-flexbox.wrap-md{flex-wrap:wrap}}.maj-flexbox.wrap{flex-wrap:wrap}.maj-flexbox.wrap>*{flex:1 1 100%}.maj-flexbox.gap-5{row-gap:5px;column-gap:5px}.maj-flexbox.col-gap-5{column-gap:5px}.maj-flexbox.row-gap-5{row-gap:5px}.maj-flexbox.gap-5-5{column-gap:5px;row-gap:5px}.maj-flexbox.gap-5-10{column-gap:5px;row-gap:10px}.maj-flexbox.gap-5-15{column-gap:5px;row-gap:15px}.maj-flexbox.gap-5-20{column-gap:5px;row-gap:20px}.maj-flexbox.gap-5-25{column-gap:5px;row-gap:25px}.maj-flexbox.gap-5-30{column-gap:5px;row-gap:30px}.maj-flexbox.gap-5-35{column-gap:5px;row-gap:35px}.maj-flexbox.gap-5-40{column-gap:5px;row-gap:40px}.maj-flexbox.gap-5-45{column-gap:5px;row-gap:45px}.maj-flexbox.gap-5-50{column-gap:5px;row-gap:50px}.maj-flexbox.gap-5-55{column-gap:5px;row-gap:55px}.maj-flexbox.gap-5-60{column-gap:5px;row-gap:60px}.maj-flexbox.gap-5-65{column-gap:5px;row-gap:65px}.maj-flexbox.gap-5-70{column-gap:5px;row-gap:70px}.maj-flexbox.gap-5-75{column-gap:5px;row-gap:75px}.maj-flexbox.gap-5-80{column-gap:5px;row-gap:80px}.maj-flexbox.gap-5-85{column-gap:5px;row-gap:85px}.maj-flexbox.gap-5-90{column-gap:5px;row-gap:90px}.maj-flexbox.gap-5-95{column-gap:5px;row-gap:95px}.maj-flexbox.gap-5-100{column-gap:5px;row-gap:100px}.maj-flexbox.gap-10{row-gap:10px;column-gap:10px}.maj-flexbox.col-gap-10{column-gap:10px}.maj-flexbox.row-gap-10{row-gap:10px}.maj-flexbox.gap-10-5{column-gap:10px;row-gap:5px}.maj-flexbox.gap-10-10{column-gap:10px;row-gap:10px}.maj-flexbox.gap-10-15{column-gap:10px;row-gap:15px}.maj-flexbox.gap-10-20{column-gap:10px;row-gap:20px}.maj-flexbox.gap-10-25{column-gap:10px;row-gap:25px}.maj-flexbox.gap-10-30{column-gap:10px;row-gap:30px}.maj-flexbox.gap-10-35{column-gap:10px;row-gap:35px}.maj-flexbox.gap-10-40{column-gap:10px;row-gap:40px}.maj-flexbox.gap-10-45{column-gap:10px;row-gap:45px}.maj-flexbox.gap-10-50{column-gap:10px;row-gap:50px}.maj-flexbox.gap-10-55{column-gap:10px;row-gap:55px}.maj-flexbox.gap-10-60{column-gap:10px;row-gap:60px}.maj-flexbox.gap-10-65{column-gap:10px;row-gap:65px}.maj-flexbox.gap-10-70{column-gap:10px;row-gap:70px}.maj-flexbox.gap-10-75{column-gap:10px;row-gap:75px}.maj-flexbox.gap-10-80{column-gap:10px;row-gap:80px}.maj-flexbox.gap-10-85{column-gap:10px;row-gap:85px}.maj-flexbox.gap-10-90{column-gap:10px;row-gap:90px}.maj-flexbox.gap-10-95{column-gap:10px;row-gap:95px}.maj-flexbox.gap-10-100{column-gap:10px;row-gap:100px}.maj-flexbox.gap-15{row-gap:15px;column-gap:15px}.maj-flexbox.col-gap-15{column-gap:15px}.maj-flexbox.row-gap-15{row-gap:15px}.maj-flexbox.gap-15-5{column-gap:15px;row-gap:5px}.maj-flexbox.gap-15-10{column-gap:15px;row-gap:10px}.maj-flexbox.gap-15-15{column-gap:15px;row-gap:15px}.maj-flexbox.gap-15-20{column-gap:15px;row-gap:20px}.maj-flexbox.gap-15-25{column-gap:15px;row-gap:25px}.maj-flexbox.gap-15-30{column-gap:15px;row-gap:30px}.maj-flexbox.gap-15-35{column-gap:15px;row-gap:35px}.maj-flexbox.gap-15-40{column-gap:15px;row-gap:40px}.maj-flexbox.gap-15-45{column-gap:15px;row-gap:45px}.maj-flexbox.gap-15-50{column-gap:15px;row-gap:50px}.maj-flexbox.gap-15-55{column-gap:15px;row-gap:55px}.maj-flexbox.gap-15-60{column-gap:15px;row-gap:60px}.maj-flexbox.gap-15-65{column-gap:15px;row-gap:65px}.maj-flexbox.gap-15-70{column-gap:15px;row-gap:70px}.maj-flexbox.gap-15-75{column-gap:15px;row-gap:75px}.maj-flexbox.gap-15-80{column-gap:15px;row-gap:80px}.maj-flexbox.gap-15-85{column-gap:15px;row-gap:85px}.maj-flexbox.gap-15-90{column-gap:15px;row-gap:90px}.maj-flexbox.gap-15-95{column-gap:15px;row-gap:95px}.maj-flexbox.gap-15-100{column-gap:15px;row-gap:100px}.maj-flexbox.gap-20{row-gap:20px;column-gap:20px}.maj-flexbox.col-gap-20{column-gap:20px}.maj-flexbox.row-gap-20{row-gap:20px}.maj-flexbox.gap-20-5{column-gap:20px;row-gap:5px}.maj-flexbox.gap-20-10{column-gap:20px;row-gap:10px}.maj-flexbox.gap-20-15{column-gap:20px;row-gap:15px}.maj-flexbox.gap-20-20{column-gap:20px;row-gap:20px}.maj-flexbox.gap-20-25{column-gap:20px;row-gap:25px}.maj-flexbox.gap-20-30{column-gap:20px;row-gap:30px}.maj-flexbox.gap-20-35{column-gap:20px;row-gap:35px}.maj-flexbox.gap-20-40{column-gap:20px;row-gap:40px}.maj-flexbox.gap-20-45{column-gap:20px;row-gap:45px}.maj-flexbox.gap-20-50{column-gap:20px;row-gap:50px}.maj-flexbox.gap-20-55{column-gap:20px;row-gap:55px}.maj-flexbox.gap-20-60{column-gap:20px;row-gap:60px}.maj-flexbox.gap-20-65{column-gap:20px;row-gap:65px}.maj-flexbox.gap-20-70{column-gap:20px;row-gap:70px}.maj-flexbox.gap-20-75{column-gap:20px;row-gap:75px}.maj-flexbox.gap-20-80{column-gap:20px;row-gap:80px}.maj-flexbox.gap-20-85{column-gap:20px;row-gap:85px}.maj-flexbox.gap-20-90{column-gap:20px;row-gap:90px}.maj-flexbox.gap-20-95{column-gap:20px;row-gap:95px}.maj-flexbox.gap-20-100{column-gap:20px;row-gap:100px}.maj-flexbox.gap-25{row-gap:25px;column-gap:25px}.maj-flexbox.col-gap-25{column-gap:25px}.maj-flexbox.row-gap-25{row-gap:25px}.maj-flexbox.gap-25-5{column-gap:25px;row-gap:5px}.maj-flexbox.gap-25-10{column-gap:25px;row-gap:10px}.maj-flexbox.gap-25-15{column-gap:25px;row-gap:15px}.maj-flexbox.gap-25-20{column-gap:25px;row-gap:20px}.maj-flexbox.gap-25-25{column-gap:25px;row-gap:25px}.maj-flexbox.gap-25-30{column-gap:25px;row-gap:30px}.maj-flexbox.gap-25-35{column-gap:25px;row-gap:35px}.maj-flexbox.gap-25-40{column-gap:25px;row-gap:40px}.maj-flexbox.gap-25-45{column-gap:25px;row-gap:45px}.maj-flexbox.gap-25-50{column-gap:25px;row-gap:50px}.maj-flexbox.gap-25-55{column-gap:25px;row-gap:55px}.maj-flexbox.gap-25-60{column-gap:25px;row-gap:60px}.maj-flexbox.gap-25-65{column-gap:25px;row-gap:65px}.maj-flexbox.gap-25-70{column-gap:25px;row-gap:70px}.maj-flexbox.gap-25-75{column-gap:25px;row-gap:75px}.maj-flexbox.gap-25-80{column-gap:25px;row-gap:80px}.maj-flexbox.gap-25-85{column-gap:25px;row-gap:85px}.maj-flexbox.gap-25-90{column-gap:25px;row-gap:90px}.maj-flexbox.gap-25-95{column-gap:25px;row-gap:95px}.maj-flexbox.gap-25-100{column-gap:25px;row-gap:100px}.maj-flexbox.gap-30{row-gap:30px;column-gap:30px}.maj-flexbox.col-gap-30{column-gap:30px}.maj-flexbox.row-gap-30{row-gap:30px}.maj-flexbox.gap-30-5{column-gap:30px;row-gap:5px}.maj-flexbox.gap-30-10{column-gap:30px;row-gap:10px}.maj-flexbox.gap-30-15{column-gap:30px;row-gap:15px}.maj-flexbox.gap-30-20{column-gap:30px;row-gap:20px}.maj-flexbox.gap-30-25{column-gap:30px;row-gap:25px}.maj-flexbox.gap-30-30{column-gap:30px;row-gap:30px}.maj-flexbox.gap-30-35{column-gap:30px;row-gap:35px}.maj-flexbox.gap-30-40{column-gap:30px;row-gap:40px}.maj-flexbox.gap-30-45{column-gap:30px;row-gap:45px}.maj-flexbox.gap-30-50{column-gap:30px;row-gap:50px}.maj-flexbox.gap-30-55{column-gap:30px;row-gap:55px}.maj-flexbox.gap-30-60{column-gap:30px;row-gap:60px}.maj-flexbox.gap-30-65{column-gap:30px;row-gap:65px}.maj-flexbox.gap-30-70{column-gap:30px;row-gap:70px}.maj-flexbox.gap-30-75{column-gap:30px;row-gap:75px}.maj-flexbox.gap-30-80{column-gap:30px;row-gap:80px}.maj-flexbox.gap-30-85{column-gap:30px;row-gap:85px}.maj-flexbox.gap-30-90{column-gap:30px;row-gap:90px}.maj-flexbox.gap-30-95{column-gap:30px;row-gap:95px}.maj-flexbox.gap-30-100{column-gap:30px;row-gap:100px}.maj-flexbox.gap-35{row-gap:35px;column-gap:35px}.maj-flexbox.col-gap-35{column-gap:35px}.maj-flexbox.row-gap-35{row-gap:35px}.maj-flexbox.gap-35-5{column-gap:35px;row-gap:5px}.maj-flexbox.gap-35-10{column-gap:35px;row-gap:10px}.maj-flexbox.gap-35-15{column-gap:35px;row-gap:15px}.maj-flexbox.gap-35-20{column-gap:35px;row-gap:20px}.maj-flexbox.gap-35-25{column-gap:35px;row-gap:25px}.maj-flexbox.gap-35-30{column-gap:35px;row-gap:30px}.maj-flexbox.gap-35-35{column-gap:35px;row-gap:35px}.maj-flexbox.gap-35-40{column-gap:35px;row-gap:40px}.maj-flexbox.gap-35-45{column-gap:35px;row-gap:45px}.maj-flexbox.gap-35-50{column-gap:35px;row-gap:50px}.maj-flexbox.gap-35-55{column-gap:35px;row-gap:55px}.maj-flexbox.gap-35-60{column-gap:35px;row-gap:60px}.maj-flexbox.gap-35-65{column-gap:35px;row-gap:65px}.maj-flexbox.gap-35-70{column-gap:35px;row-gap:70px}.maj-flexbox.gap-35-75{column-gap:35px;row-gap:75px}.maj-flexbox.gap-35-80{column-gap:35px;row-gap:80px}.maj-flexbox.gap-35-85{column-gap:35px;row-gap:85px}.maj-flexbox.gap-35-90{column-gap:35px;row-gap:90px}.maj-flexbox.gap-35-95{column-gap:35px;row-gap:95px}.maj-flexbox.gap-35-100{column-gap:35px;row-gap:100px}.maj-flexbox.gap-40{row-gap:40px;column-gap:40px}.maj-flexbox.col-gap-40{column-gap:40px}.maj-flexbox.row-gap-40{row-gap:40px}.maj-flexbox.gap-40-5{column-gap:40px;row-gap:5px}.maj-flexbox.gap-40-10{column-gap:40px;row-gap:10px}.maj-flexbox.gap-40-15{column-gap:40px;row-gap:15px}.maj-flexbox.gap-40-20{column-gap:40px;row-gap:20px}.maj-flexbox.gap-40-25{column-gap:40px;row-gap:25px}.maj-flexbox.gap-40-30{column-gap:40px;row-gap:30px}.maj-flexbox.gap-40-35{column-gap:40px;row-gap:35px}.maj-flexbox.gap-40-40{column-gap:40px;row-gap:40px}.maj-flexbox.gap-40-45{column-gap:40px;row-gap:45px}.maj-flexbox.gap-40-50{column-gap:40px;row-gap:50px}.maj-flexbox.gap-40-55{column-gap:40px;row-gap:55px}.maj-flexbox.gap-40-60{column-gap:40px;row-gap:60px}.maj-flexbox.gap-40-65{column-gap:40px;row-gap:65px}.maj-flexbox.gap-40-70{column-gap:40px;row-gap:70px}.maj-flexbox.gap-40-75{column-gap:40px;row-gap:75px}.maj-flexbox.gap-40-80{column-gap:40px;row-gap:80px}.maj-flexbox.gap-40-85{column-gap:40px;row-gap:85px}.maj-flexbox.gap-40-90{column-gap:40px;row-gap:90px}.maj-flexbox.gap-40-95{column-gap:40px;row-gap:95px}.maj-flexbox.gap-40-100{column-gap:40px;row-gap:100px}.maj-flexbox.gap-45{row-gap:45px;column-gap:45px}.maj-flexbox.col-gap-45{column-gap:45px}.maj-flexbox.row-gap-45{row-gap:45px}.maj-flexbox.gap-45-5{column-gap:45px;row-gap:5px}.maj-flexbox.gap-45-10{column-gap:45px;row-gap:10px}.maj-flexbox.gap-45-15{column-gap:45px;row-gap:15px}.maj-flexbox.gap-45-20{column-gap:45px;row-gap:20px}.maj-flexbox.gap-45-25{column-gap:45px;row-gap:25px}.maj-flexbox.gap-45-30{column-gap:45px;row-gap:30px}.maj-flexbox.gap-45-35{column-gap:45px;row-gap:35px}.maj-flexbox.gap-45-40{column-gap:45px;row-gap:40px}.maj-flexbox.gap-45-45{column-gap:45px;row-gap:45px}.maj-flexbox.gap-45-50{column-gap:45px;row-gap:50px}.maj-flexbox.gap-45-55{column-gap:45px;row-gap:55px}.maj-flexbox.gap-45-60{column-gap:45px;row-gap:60px}.maj-flexbox.gap-45-65{column-gap:45px;row-gap:65px}.maj-flexbox.gap-45-70{column-gap:45px;row-gap:70px}.maj-flexbox.gap-45-75{column-gap:45px;row-gap:75px}.maj-flexbox.gap-45-80{column-gap:45px;row-gap:80px}.maj-flexbox.gap-45-85{column-gap:45px;row-gap:85px}.maj-flexbox.gap-45-90{column-gap:45px;row-gap:90px}.maj-flexbox.gap-45-95{column-gap:45px;row-gap:95px}.maj-flexbox.gap-45-100{column-gap:45px;row-gap:100px}.maj-flexbox.gap-50{row-gap:50px;column-gap:50px}.maj-flexbox.col-gap-50{column-gap:50px}.maj-flexbox.row-gap-50{row-gap:50px}.maj-flexbox.gap-50-5{column-gap:50px;row-gap:5px}.maj-flexbox.gap-50-10{column-gap:50px;row-gap:10px}.maj-flexbox.gap-50-15{column-gap:50px;row-gap:15px}.maj-flexbox.gap-50-20{column-gap:50px;row-gap:20px}.maj-flexbox.gap-50-25{column-gap:50px;row-gap:25px}.maj-flexbox.gap-50-30{column-gap:50px;row-gap:30px}.maj-flexbox.gap-50-35{column-gap:50px;row-gap:35px}.maj-flexbox.gap-50-40{column-gap:50px;row-gap:40px}.maj-flexbox.gap-50-45{column-gap:50px;row-gap:45px}.maj-flexbox.gap-50-50{column-gap:50px;row-gap:50px}.maj-flexbox.gap-50-55{column-gap:50px;row-gap:55px}.maj-flexbox.gap-50-60{column-gap:50px;row-gap:60px}.maj-flexbox.gap-50-65{column-gap:50px;row-gap:65px}.maj-flexbox.gap-50-70{column-gap:50px;row-gap:70px}.maj-flexbox.gap-50-75{column-gap:50px;row-gap:75px}.maj-flexbox.gap-50-80{column-gap:50px;row-gap:80px}.maj-flexbox.gap-50-85{column-gap:50px;row-gap:85px}.maj-flexbox.gap-50-90{column-gap:50px;row-gap:90px}.maj-flexbox.gap-50-95{column-gap:50px;row-gap:95px}.maj-flexbox.gap-50-100{column-gap:50px;row-gap:100px}.maj-flexbox.gap-55{row-gap:55px;column-gap:55px}.maj-flexbox.col-gap-55{column-gap:55px}.maj-flexbox.row-gap-55{row-gap:55px}.maj-flexbox.gap-55-5{column-gap:55px;row-gap:5px}.maj-flexbox.gap-55-10{column-gap:55px;row-gap:10px}.maj-flexbox.gap-55-15{column-gap:55px;row-gap:15px}.maj-flexbox.gap-55-20{column-gap:55px;row-gap:20px}.maj-flexbox.gap-55-25{column-gap:55px;row-gap:25px}.maj-flexbox.gap-55-30{column-gap:55px;row-gap:30px}.maj-flexbox.gap-55-35{column-gap:55px;row-gap:35px}.maj-flexbox.gap-55-40{column-gap:55px;row-gap:40px}.maj-flexbox.gap-55-45{column-gap:55px;row-gap:45px}.maj-flexbox.gap-55-50{column-gap:55px;row-gap:50px}.maj-flexbox.gap-55-55{column-gap:55px;row-gap:55px}.maj-flexbox.gap-55-60{column-gap:55px;row-gap:60px}.maj-flexbox.gap-55-65{column-gap:55px;row-gap:65px}.maj-flexbox.gap-55-70{column-gap:55px;row-gap:70px}.maj-flexbox.gap-55-75{column-gap:55px;row-gap:75px}.maj-flexbox.gap-55-80{column-gap:55px;row-gap:80px}.maj-flexbox.gap-55-85{column-gap:55px;row-gap:85px}.maj-flexbox.gap-55-90{column-gap:55px;row-gap:90px}.maj-flexbox.gap-55-95{column-gap:55px;row-gap:95px}.maj-flexbox.gap-55-100{column-gap:55px;row-gap:100px}.maj-flexbox.gap-60{row-gap:60px;column-gap:60px}.maj-flexbox.col-gap-60{column-gap:60px}.maj-flexbox.row-gap-60{row-gap:60px}.maj-flexbox.gap-60-5{column-gap:60px;row-gap:5px}.maj-flexbox.gap-60-10{column-gap:60px;row-gap:10px}.maj-flexbox.gap-60-15{column-gap:60px;row-gap:15px}.maj-flexbox.gap-60-20{column-gap:60px;row-gap:20px}.maj-flexbox.gap-60-25{column-gap:60px;row-gap:25px}.maj-flexbox.gap-60-30{column-gap:60px;row-gap:30px}.maj-flexbox.gap-60-35{column-gap:60px;row-gap:35px}.maj-flexbox.gap-60-40{column-gap:60px;row-gap:40px}.maj-flexbox.gap-60-45{column-gap:60px;row-gap:45px}.maj-flexbox.gap-60-50{column-gap:60px;row-gap:50px}.maj-flexbox.gap-60-55{column-gap:60px;row-gap:55px}.maj-flexbox.gap-60-60{column-gap:60px;row-gap:60px}.maj-flexbox.gap-60-65{column-gap:60px;row-gap:65px}.maj-flexbox.gap-60-70{column-gap:60px;row-gap:70px}.maj-flexbox.gap-60-75{column-gap:60px;row-gap:75px}.maj-flexbox.gap-60-80{column-gap:60px;row-gap:80px}.maj-flexbox.gap-60-85{column-gap:60px;row-gap:85px}.maj-flexbox.gap-60-90{column-gap:60px;row-gap:90px}.maj-flexbox.gap-60-95{column-gap:60px;row-gap:95px}.maj-flexbox.gap-60-100{column-gap:60px;row-gap:100px}.maj-flexbox.gap-65{row-gap:65px;column-gap:65px}.maj-flexbox.col-gap-65{column-gap:65px}.maj-flexbox.row-gap-65{row-gap:65px}.maj-flexbox.gap-65-5{column-gap:65px;row-gap:5px}.maj-flexbox.gap-65-10{column-gap:65px;row-gap:10px}.maj-flexbox.gap-65-15{column-gap:65px;row-gap:15px}.maj-flexbox.gap-65-20{column-gap:65px;row-gap:20px}.maj-flexbox.gap-65-25{column-gap:65px;row-gap:25px}.maj-flexbox.gap-65-30{column-gap:65px;row-gap:30px}.maj-flexbox.gap-65-35{column-gap:65px;row-gap:35px}.maj-flexbox.gap-65-40{column-gap:65px;row-gap:40px}.maj-flexbox.gap-65-45{column-gap:65px;row-gap:45px}.maj-flexbox.gap-65-50{column-gap:65px;row-gap:50px}.maj-flexbox.gap-65-55{column-gap:65px;row-gap:55px}.maj-flexbox.gap-65-60{column-gap:65px;row-gap:60px}.maj-flexbox.gap-65-65{column-gap:65px;row-gap:65px}.maj-flexbox.gap-65-70{column-gap:65px;row-gap:70px}.maj-flexbox.gap-65-75{column-gap:65px;row-gap:75px}.maj-flexbox.gap-65-80{column-gap:65px;row-gap:80px}.maj-flexbox.gap-65-85{column-gap:65px;row-gap:85px}.maj-flexbox.gap-65-90{column-gap:65px;row-gap:90px}.maj-flexbox.gap-65-95{column-gap:65px;row-gap:95px}.maj-flexbox.gap-65-100{column-gap:65px;row-gap:100px}.maj-flexbox.gap-70{row-gap:70px;column-gap:70px}.maj-flexbox.col-gap-70{column-gap:70px}.maj-flexbox.row-gap-70{row-gap:70px}.maj-flexbox.gap-70-5{column-gap:70px;row-gap:5px}.maj-flexbox.gap-70-10{column-gap:70px;row-gap:10px}.maj-flexbox.gap-70-15{column-gap:70px;row-gap:15px}.maj-flexbox.gap-70-20{column-gap:70px;row-gap:20px}.maj-flexbox.gap-70-25{column-gap:70px;row-gap:25px}.maj-flexbox.gap-70-30{column-gap:70px;row-gap:30px}.maj-flexbox.gap-70-35{column-gap:70px;row-gap:35px}.maj-flexbox.gap-70-40{column-gap:70px;row-gap:40px}.maj-flexbox.gap-70-45{column-gap:70px;row-gap:45px}.maj-flexbox.gap-70-50{column-gap:70px;row-gap:50px}.maj-flexbox.gap-70-55{column-gap:70px;row-gap:55px}.maj-flexbox.gap-70-60{column-gap:70px;row-gap:60px}.maj-flexbox.gap-70-65{column-gap:70px;row-gap:65px}.maj-flexbox.gap-70-70{column-gap:70px;row-gap:70px}.maj-flexbox.gap-70-75{column-gap:70px;row-gap:75px}.maj-flexbox.gap-70-80{column-gap:70px;row-gap:80px}.maj-flexbox.gap-70-85{column-gap:70px;row-gap:85px}.maj-flexbox.gap-70-90{column-gap:70px;row-gap:90px}.maj-flexbox.gap-70-95{column-gap:70px;row-gap:95px}.maj-flexbox.gap-70-100{column-gap:70px;row-gap:100px}.maj-flexbox.gap-75{row-gap:75px;column-gap:75px}.maj-flexbox.col-gap-75{column-gap:75px}.maj-flexbox.row-gap-75{row-gap:75px}.maj-flexbox.gap-75-5{column-gap:75px;row-gap:5px}.maj-flexbox.gap-75-10{column-gap:75px;row-gap:10px}.maj-flexbox.gap-75-15{column-gap:75px;row-gap:15px}.maj-flexbox.gap-75-20{column-gap:75px;row-gap:20px}.maj-flexbox.gap-75-25{column-gap:75px;row-gap:25px}.maj-flexbox.gap-75-30{column-gap:75px;row-gap:30px}.maj-flexbox.gap-75-35{column-gap:75px;row-gap:35px}.maj-flexbox.gap-75-40{column-gap:75px;row-gap:40px}.maj-flexbox.gap-75-45{column-gap:75px;row-gap:45px}.maj-flexbox.gap-75-50{column-gap:75px;row-gap:50px}.maj-flexbox.gap-75-55{column-gap:75px;row-gap:55px}.maj-flexbox.gap-75-60{column-gap:75px;row-gap:60px}.maj-flexbox.gap-75-65{column-gap:75px;row-gap:65px}.maj-flexbox.gap-75-70{column-gap:75px;row-gap:70px}.maj-flexbox.gap-75-75{column-gap:75px;row-gap:75px}.maj-flexbox.gap-75-80{column-gap:75px;row-gap:80px}.maj-flexbox.gap-75-85{column-gap:75px;row-gap:85px}.maj-flexbox.gap-75-90{column-gap:75px;row-gap:90px}.maj-flexbox.gap-75-95{column-gap:75px;row-gap:95px}.maj-flexbox.gap-75-100{column-gap:75px;row-gap:100px}.maj-flexbox.gap-80{row-gap:80px;column-gap:80px}.maj-flexbox.col-gap-80{column-gap:80px}.maj-flexbox.row-gap-80{row-gap:80px}.maj-flexbox.gap-80-5{column-gap:80px;row-gap:5px}.maj-flexbox.gap-80-10{column-gap:80px;row-gap:10px}.maj-flexbox.gap-80-15{column-gap:80px;row-gap:15px}.maj-flexbox.gap-80-20{column-gap:80px;row-gap:20px}.maj-flexbox.gap-80-25{column-gap:80px;row-gap:25px}.maj-flexbox.gap-80-30{column-gap:80px;row-gap:30px}.maj-flexbox.gap-80-35{column-gap:80px;row-gap:35px}.maj-flexbox.gap-80-40{column-gap:80px;row-gap:40px}.maj-flexbox.gap-80-45{column-gap:80px;row-gap:45px}.maj-flexbox.gap-80-50{column-gap:80px;row-gap:50px}.maj-flexbox.gap-80-55{column-gap:80px;row-gap:55px}.maj-flexbox.gap-80-60{column-gap:80px;row-gap:60px}.maj-flexbox.gap-80-65{column-gap:80px;row-gap:65px}.maj-flexbox.gap-80-70{column-gap:80px;row-gap:70px}.maj-flexbox.gap-80-75{column-gap:80px;row-gap:75px}.maj-flexbox.gap-80-80{column-gap:80px;row-gap:80px}.maj-flexbox.gap-80-85{column-gap:80px;row-gap:85px}.maj-flexbox.gap-80-90{column-gap:80px;row-gap:90px}.maj-flexbox.gap-80-95{column-gap:80px;row-gap:95px}.maj-flexbox.gap-80-100{column-gap:80px;row-gap:100px}.maj-flexbox.gap-85{row-gap:85px;column-gap:85px}.maj-flexbox.col-gap-85{column-gap:85px}.maj-flexbox.row-gap-85{row-gap:85px}.maj-flexbox.gap-85-5{column-gap:85px;row-gap:5px}.maj-flexbox.gap-85-10{column-gap:85px;row-gap:10px}.maj-flexbox.gap-85-15{column-gap:85px;row-gap:15px}.maj-flexbox.gap-85-20{column-gap:85px;row-gap:20px}.maj-flexbox.gap-85-25{column-gap:85px;row-gap:25px}.maj-flexbox.gap-85-30{column-gap:85px;row-gap:30px}.maj-flexbox.gap-85-35{column-gap:85px;row-gap:35px}.maj-flexbox.gap-85-40{column-gap:85px;row-gap:40px}.maj-flexbox.gap-85-45{column-gap:85px;row-gap:45px}.maj-flexbox.gap-85-50{column-gap:85px;row-gap:50px}.maj-flexbox.gap-85-55{column-gap:85px;row-gap:55px}.maj-flexbox.gap-85-60{column-gap:85px;row-gap:60px}.maj-flexbox.gap-85-65{column-gap:85px;row-gap:65px}.maj-flexbox.gap-85-70{column-gap:85px;row-gap:70px}.maj-flexbox.gap-85-75{column-gap:85px;row-gap:75px}.maj-flexbox.gap-85-80{column-gap:85px;row-gap:80px}.maj-flexbox.gap-85-85{column-gap:85px;row-gap:85px}.maj-flexbox.gap-85-90{column-gap:85px;row-gap:90px}.maj-flexbox.gap-85-95{column-gap:85px;row-gap:95px}.maj-flexbox.gap-85-100{column-gap:85px;row-gap:100px}.maj-flexbox.gap-90{row-gap:90px;column-gap:90px}.maj-flexbox.col-gap-90{column-gap:90px}.maj-flexbox.row-gap-90{row-gap:90px}.maj-flexbox.gap-90-5{column-gap:90px;row-gap:5px}.maj-flexbox.gap-90-10{column-gap:90px;row-gap:10px}.maj-flexbox.gap-90-15{column-gap:90px;row-gap:15px}.maj-flexbox.gap-90-20{column-gap:90px;row-gap:20px}.maj-flexbox.gap-90-25{column-gap:90px;row-gap:25px}.maj-flexbox.gap-90-30{column-gap:90px;row-gap:30px}.maj-flexbox.gap-90-35{column-gap:90px;row-gap:35px}.maj-flexbox.gap-90-40{column-gap:90px;row-gap:40px}.maj-flexbox.gap-90-45{column-gap:90px;row-gap:45px}.maj-flexbox.gap-90-50{column-gap:90px;row-gap:50px}.maj-flexbox.gap-90-55{column-gap:90px;row-gap:55px}.maj-flexbox.gap-90-60{column-gap:90px;row-gap:60px}.maj-flexbox.gap-90-65{column-gap:90px;row-gap:65px}.maj-flexbox.gap-90-70{column-gap:90px;row-gap:70px}.maj-flexbox.gap-90-75{column-gap:90px;row-gap:75px}.maj-flexbox.gap-90-80{column-gap:90px;row-gap:80px}.maj-flexbox.gap-90-85{column-gap:90px;row-gap:85px}.maj-flexbox.gap-90-90{column-gap:90px;row-gap:90px}.maj-flexbox.gap-90-95{column-gap:90px;row-gap:95px}.maj-flexbox.gap-90-100{column-gap:90px;row-gap:100px}.maj-flexbox.gap-95{row-gap:95px;column-gap:95px}.maj-flexbox.col-gap-95{column-gap:95px}.maj-flexbox.row-gap-95{row-gap:95px}.maj-flexbox.gap-95-5{column-gap:95px;row-gap:5px}.maj-flexbox.gap-95-10{column-gap:95px;row-gap:10px}.maj-flexbox.gap-95-15{column-gap:95px;row-gap:15px}.maj-flexbox.gap-95-20{column-gap:95px;row-gap:20px}.maj-flexbox.gap-95-25{column-gap:95px;row-gap:25px}.maj-flexbox.gap-95-30{column-gap:95px;row-gap:30px}.maj-flexbox.gap-95-35{column-gap:95px;row-gap:35px}.maj-flexbox.gap-95-40{column-gap:95px;row-gap:40px}.maj-flexbox.gap-95-45{column-gap:95px;row-gap:45px}.maj-flexbox.gap-95-50{column-gap:95px;row-gap:50px}.maj-flexbox.gap-95-55{column-gap:95px;row-gap:55px}.maj-flexbox.gap-95-60{column-gap:95px;row-gap:60px}.maj-flexbox.gap-95-65{column-gap:95px;row-gap:65px}.maj-flexbox.gap-95-70{column-gap:95px;row-gap:70px}.maj-flexbox.gap-95-75{column-gap:95px;row-gap:75px}.maj-flexbox.gap-95-80{column-gap:95px;row-gap:80px}.maj-flexbox.gap-95-85{column-gap:95px;row-gap:85px}.maj-flexbox.gap-95-90{column-gap:95px;row-gap:90px}.maj-flexbox.gap-95-95{column-gap:95px;row-gap:95px}.maj-flexbox.gap-95-100{column-gap:95px;row-gap:100px}.maj-flexbox.gap-100{row-gap:100px;column-gap:100px}.maj-flexbox.col-gap-100{column-gap:100px}.maj-flexbox.row-gap-100{row-gap:100px}.maj-flexbox.gap-100-5{column-gap:100px;row-gap:5px}.maj-flexbox.gap-100-10{column-gap:100px;row-gap:10px}.maj-flexbox.gap-100-15{column-gap:100px;row-gap:15px}.maj-flexbox.gap-100-20{column-gap:100px;row-gap:20px}.maj-flexbox.gap-100-25{column-gap:100px;row-gap:25px}.maj-flexbox.gap-100-30{column-gap:100px;row-gap:30px}.maj-flexbox.gap-100-35{column-gap:100px;row-gap:35px}.maj-flexbox.gap-100-40{column-gap:100px;row-gap:40px}.maj-flexbox.gap-100-45{column-gap:100px;row-gap:45px}.maj-flexbox.gap-100-50{column-gap:100px;row-gap:50px}.maj-flexbox.gap-100-55{column-gap:100px;row-gap:55px}.maj-flexbox.gap-100-60{column-gap:100px;row-gap:60px}.maj-flexbox.gap-100-65{column-gap:100px;row-gap:65px}.maj-flexbox.gap-100-70{column-gap:100px;row-gap:70px}.maj-flexbox.gap-100-75{column-gap:100px;row-gap:75px}.maj-flexbox.gap-100-80{column-gap:100px;row-gap:80px}.maj-flexbox.gap-100-85{column-gap:100px;row-gap:85px}.maj-flexbox.gap-100-90{column-gap:100px;row-gap:90px}.maj-flexbox.gap-100-95{column-gap:100px;row-gap:95px}.maj-flexbox.gap-100-100{column-gap:100px;row-gap:100px}.flex-auto{flex:auto}.flex-33{flex:1 1 33.333333%}.flex-5{flex:1 1 5%;max-width:100%}.flex-10{flex:1 1 10%;max-width:100%}.flex-15{flex:1 1 15%;max-width:100%}.flex-20{flex:1 1 20%;max-width:100%}.flex-25{flex:1 1 25%;max-width:100%}.flex-30{flex:1 1 30%;max-width:100%}.flex-35{flex:1 1 35%;max-width:100%}.flex-40{flex:1 1 40%;max-width:100%}.flex-45{flex:1 1 45%;max-width:100%}.flex-50{flex:1 1 50%;max-width:100%}.flex-55{flex:1 1 55%;max-width:100%}.flex-60{flex:1 1 60%;max-width:100%}.flex-65{flex:1 1 65%;max-width:100%}.flex-70{flex:1 1 70%;max-width:100%}.flex-75{flex:1 1 75%;max-width:100%}.flex-80{flex:1 1 80%;max-width:100%}.flex-85{flex:1 1 85%;max-width:100%}.flex-90{flex:1 1 90%;max-width:100%}.flex-95{flex:1 1 95%;max-width:100%}.flex-100{flex:1 1 100%;max-width:100%}.flex-50-px{flex:1 1 50px;max-width:100%}.flex-100-px{flex:1 1 100px;max-width:100%}.flex-150-px{flex:1 1 150px;max-width:100%}.flex-200-px{flex:1 1 200px;max-width:100%}.flex-250-px{flex:1 1 250px;max-width:100%}.flex-300-px{flex:1 1 300px;max-width:100%}.flex-350-px{flex:1 1 350px;max-width:100%}.flex-400-px{flex:1 1 400px;max-width:100%}.flex-450-px{flex:1 1 450px;max-width:100%}.flex-500-px{flex:1 1 500px;max-width:100%}.flex-550-px{flex:1 1 550px;max-width:100%}.flex-600-px{flex:1 1 600px;max-width:100%}.flex-650-px{flex:1 1 650px;max-width:100%}.flex-700-px{flex:1 1 700px;max-width:100%}.flex-750-px{flex:1 1 750px;max-width:100%}.flex-800-px{flex:1 1 800px;max-width:100%}.flex-850-px{flex:1 1 850px;max-width:100%}.flex-900-px{flex:1 1 900px;max-width:100%}.flex-950-px{flex:1 1 950px;max-width:100%}.flex-1000-px{flex:1 1 1000px;max-width:100%}.flex-1050-px{flex:1 1 1050px;max-width:100%}.flex-1100-px{flex:1 1 1100px;max-width:100%}.flex-1150-px{flex:1 1 1150px;max-width:100%}.flex-1200-px{flex:1 1 1200px;max-width:100%}.flex-1250-px{flex:1 1 1250px;max-width:100%}.flex-1300-px{flex:1 1 1300px;max-width:100%}.flex-1350-px{flex:1 1 1350px;max-width:100%}.flex-1400-px{flex:1 1 1400px;max-width:100%}.flex-1450-px{flex:1 1 1450px;max-width:100%}.flex-1500-px{flex:1 1 1500px;max-width:100%}.maj-slide:not(.active){display:none !important}.color-black{color:#363636}.font-black{color:#363636}.color-grey-dark{color:#878787}.font-grey-dark{color:#878787}.color-grey{color:#b8b8b8}.font-grey{color:#b8b8b8}.color-grey-light{color:#f6f6f6}.font-grey-light{color:#f6f6f6}.color-white{color:#fff}.font-white{color:#fff}.color-yellow{color:#fbad18}.font-yellow{color:#fbad18}.color-yellow-light{color:#ffc567}.font-yellow-light{color:#ffc567}.color-purple{color:#3f1486}.font-purple{color:#3f1486}.color-purple-light{color:#639}.font-purple-light{color:#639}.maj-autocomplete-container{position:absolute;top:100%;width:100%;background:#fff;z-index:9999;display:flex;flex-direction:column;justify-content:left;border:1px solid #b8b8b8;border-radius:15px;margin-top:10px}.maj-autocomplete-container button.maj-autocomplete-value{display:block;text-align:left;line-height:25px;background:none;border:none;color:#363636;padding:10px 25px}.maj-autocomplete-container button.maj-autocomplete-value:hover{background:#f6f6f6}.color-black{color:#363636}.font-black{color:#363636}.color-grey-dark{color:#878787}.font-grey-dark{color:#878787}.color-grey{color:#b8b8b8}.font-grey{color:#b8b8b8}.color-grey-light{color:#f6f6f6}.font-grey-light{color:#f6f6f6}.color-white{color:#fff}.font-white{color:#fff}.color-yellow{color:#fbad18}.font-yellow{color:#fbad18}.color-yellow-light{color:#ffc567}.font-yellow-light{color:#ffc567}.color-purple{color:#3f1486}.font-purple{color:#3f1486}.color-purple-light{color:#639}.font-purple-light{color:#639}.double-range-container{width:100%;height:4px;display:block;position:relative;background-color:#d3d3d3;min-width:150px}.double-range-container span.double-range-value{width:100%;height:4px;display:block;position:absolute;background-color:#fbad18;pointer-events:none}.double-range-container span.double-range-min-label,.double-range-container span.double-range-max-label{position:absolute;top:10px;font-size:15px !important;color:#878787;font-family:"gothamlight",sans-serif !important}.double-range-container span.double-range-min-label.double-range-min-label,.double-range-container span.double-range-max-label.double-range-min-label{left:0}.double-range-container span.double-range-min-label.double-range-max-label,.double-range-container span.double-range-max-label.double-range-max-label{right:0}.double-range-container input[type=range].double-range,.double-range-container input[type=range].double-range+input[type=range]{-webkit-appearance:none;appearance:none;height:4px;width:100%;position:absolute;background-color:rgba(0,0,0,0);pointer-events:none;margin:0}.double-range-container input[type=range].double-range::-webkit-slider-thumb,.double-range-container input[type=range].double-range+input[type=range]::-webkit-slider-thumb{-webkit-appearance:none;pointer-events:all;width:15px;height:15px;background:linear-gradient(0, #FBAD18, #ffc567);border-radius:50%;box-shadow:none;cursor:pointer;z-index:15;transform:translateY(-1px)}.double-range-container input[type=range].double-range::-webkit-slider-thumb:active,.double-range-container input[type=range].double-range+input[type=range]::-webkit-slider-thumb:active{box-shadow:inset 0 0 3px #fbad18,0 0 9px #fbad18;-webkit-box-shadow:inset 0 0 3px #fbad18,0 0 9px #fbad18}.double-range-container input[type=range].double-range.double-range-value,.double-range-container input[type=range].double-range+input[type=range].double-range-value{position:absolute;display:block;background:linear-gradient(90deg, #FBAD18, #ffc567);height:4px;width:0}.color-black{color:#363636}.font-black{color:#363636}.color-grey-dark{color:#878787}.font-grey-dark{color:#878787}.color-grey{color:#b8b8b8}.font-grey{color:#b8b8b8}.color-grey-light{color:#f6f6f6}.font-grey-light{color:#f6f6f6}.color-white{color:#fff}.font-white{color:#fff}.color-yellow{color:#fbad18}.font-yellow{color:#fbad18}.color-yellow-light{color:#ffc567}.font-yellow-light{color:#ffc567}.color-purple{color:#3f1486}.font-purple{color:#3f1486}.color-purple-light{color:#639}.font-purple-light{color:#639}.maj-button{background:#fbad18;color:#fff;border-radius:50px;border:none;padding:5px 12px;font-family:gothammedium,sans-serif;display:inline-block;font-size:18px;line-height:25px}.maj-button:hover{background:#fff;color:#fbad18}.maj-button.big{padding:0 40px;line-height:46px;white-space:nowrap}.maj-button.purple{background:#3f1486;color:#fff}.maj-button.purple:hover{background:#fff;color:#3f1486}.maj-button.grey{background:linear-gradient(45deg, #b8b8b8, #f6f6f6);color:#fff}.maj-button.grey:hover{background:#fff;color:#878787}.maj-button.black{background:#363636;color:#fff}.maj-button.black:hover{background-color:#fff;color:#363636}.maj-button-link{border:none;background:none;font-family:"gothammedium",sans-serif;padding:0;margin:0;display:inline;color:inherit;font-size:inherit}.maj-button-link:hover{color:#fbad18}.color-black{color:#363636}.font-black{color:#363636}.color-grey-dark{color:#878787}.font-grey-dark{color:#878787}.color-grey{color:#b8b8b8}.font-grey{color:#b8b8b8}.color-grey-light{color:#f6f6f6}.font-grey-light{color:#f6f6f6}.color-white{color:#fff}.font-white{color:#fff}.color-yellow{color:#fbad18}.font-yellow{color:#fbad18}.color-yellow-light{color:#ffc567}.font-yellow-light{color:#ffc567}.color-purple{color:#3f1486}.font-purple{color:#3f1486}.color-purple-light{color:#639}.font-purple-light{color:#639}.color-black{color:#363636}.font-black{color:#363636}.color-grey-dark{color:#878787}.font-grey-dark{color:#878787}.color-grey{color:#b8b8b8}.font-grey{color:#b8b8b8}.color-grey-light{color:#f6f6f6}.font-grey-light{color:#f6f6f6}.color-white{color:#fff}.font-white{color:#fff}.color-yellow{color:#fbad18}.font-yellow{color:#fbad18}.color-yellow-light{color:#ffc567}.font-yellow-light{color:#ffc567}.color-purple{color:#3f1486}.font-purple{color:#3f1486}.color-purple-light{color:#639}.font-purple-light{color:#639}.mt-1{margin-top:1px}.mb-1{margin-bottom:1px}.mt-2{margin-top:2px}.mb-2{margin-bottom:2px}.mt-3{margin-top:3px}.mb-3{margin-bottom:3px}.mt-4{margin-top:4px}.mb-4{margin-bottom:4px}.mt-5{margin-top:5px}.mb-5{margin-bottom:5px}.mt-6{margin-top:6px}.mb-6{margin-bottom:6px}.mt-7{margin-top:7px}.mb-7{margin-bottom:7px}.mt-8{margin-top:8px}.mb-8{margin-bottom:8px}.mt-9{margin-top:9px}.mb-9{margin-bottom:9px}.mt-10{margin-top:10px}.mb-10{margin-bottom:10px}.mt-11{margin-top:11px}.mb-11{margin-bottom:11px}.mt-12{margin-top:12px}.mb-12{margin-bottom:12px}.mt-13{margin-top:13px}.mb-13{margin-bottom:13px}.mt-14{margin-top:14px}.mb-14{margin-bottom:14px}.mt-15{margin-top:15px}.mb-15{margin-bottom:15px}.mt-16{margin-top:16px}.mb-16{margin-bottom:16px}.mt-17{margin-top:17px}.mb-17{margin-bottom:17px}.mt-18{margin-top:18px}.mb-18{margin-bottom:18px}.mt-19{margin-top:19px}.mb-19{margin-bottom:19px}.mt-20{margin-top:20px}.mb-20{margin-bottom:20px}.mt-21{margin-top:21px}.mb-21{margin-bottom:21px}.mt-22{margin-top:22px}.mb-22{margin-bottom:22px}.mt-23{margin-top:23px}.mb-23{margin-bottom:23px}.mt-24{margin-top:24px}.mb-24{margin-bottom:24px}.mt-25{margin-top:25px}.mb-25{margin-bottom:25px}.mt-26{margin-top:26px}.mb-26{margin-bottom:26px}.mt-27{margin-top:27px}.mb-27{margin-bottom:27px}.mt-28{margin-top:28px}.mb-28{margin-bottom:28px}.mt-29{margin-top:29px}.mb-29{margin-bottom:29px}.mt-30{margin-top:30px}.mb-30{margin-bottom:30px}.mt-31{margin-top:31px}.mb-31{margin-bottom:31px}.mt-32{margin-top:32px}.mb-32{margin-bottom:32px}.mt-33{margin-top:33px}.mb-33{margin-bottom:33px}.mt-34{margin-top:34px}.mb-34{margin-bottom:34px}.mt-35{margin-top:35px}.mb-35{margin-bottom:35px}.mt-36{margin-top:36px}.mb-36{margin-bottom:36px}.mt-37{margin-top:37px}.mb-37{margin-bottom:37px}.mt-38{margin-top:38px}.mb-38{margin-bottom:38px}.mt-39{margin-top:39px}.mb-39{margin-bottom:39px}.mt-40{margin-top:40px}.mb-40{margin-bottom:40px}.mt-41{margin-top:41px}.mb-41{margin-bottom:41px}.mt-42{margin-top:42px}.mb-42{margin-bottom:42px}.mt-43{margin-top:43px}.mb-43{margin-bottom:43px}.mt-44{margin-top:44px}.mb-44{margin-bottom:44px}.mt-45{margin-top:45px}.mb-45{margin-bottom:45px}.mt-46{margin-top:46px}.mb-46{margin-bottom:46px}.mt-47{margin-top:47px}.mb-47{margin-bottom:47px}.mt-48{margin-top:48px}.mb-48{margin-bottom:48px}.mt-49{margin-top:49px}.mb-49{margin-bottom:49px}.mt-50{margin-top:50px}.mb-50{margin-bottom:50px}.mt-51{margin-top:51px}.mb-51{margin-bottom:51px}.mt-52{margin-top:52px}.mb-52{margin-bottom:52px}.mt-53{margin-top:53px}.mb-53{margin-bottom:53px}.mt-54{margin-top:54px}.mb-54{margin-bottom:54px}.mt-55{margin-top:55px}.mb-55{margin-bottom:55px}.mt-56{margin-top:56px}.mb-56{margin-bottom:56px}.mt-57{margin-top:57px}.mb-57{margin-bottom:57px}.mt-58{margin-top:58px}.mb-58{margin-bottom:58px}.mt-59{margin-top:59px}.mb-59{margin-bottom:59px}.mt-60{margin-top:60px}.mb-60{margin-bottom:60px}.mt-61{margin-top:61px}.mb-61{margin-bottom:61px}.mt-62{margin-top:62px}.mb-62{margin-bottom:62px}.mt-63{margin-top:63px}.mb-63{margin-bottom:63px}.mt-64{margin-top:64px}.mb-64{margin-bottom:64px}.mt-65{margin-top:65px}.mb-65{margin-bottom:65px}.mt-66{margin-top:66px}.mb-66{margin-bottom:66px}.mt-67{margin-top:67px}.mb-67{margin-bottom:67px}.mt-68{margin-top:68px}.mb-68{margin-bottom:68px}.mt-69{margin-top:69px}.mb-69{margin-bottom:69px}.mt-70{margin-top:70px}.mb-70{margin-bottom:70px}.mt-71{margin-top:71px}.mb-71{margin-bottom:71px}.mt-72{margin-top:72px}.mb-72{margin-bottom:72px}.mt-73{margin-top:73px}.mb-73{margin-bottom:73px}.mt-74{margin-top:74px}.mb-74{margin-bottom:74px}.mt-75{margin-top:75px}.mb-75{margin-bottom:75px}.mt-76{margin-top:76px}.mb-76{margin-bottom:76px}.mt-77{margin-top:77px}.mb-77{margin-bottom:77px}.mt-78{margin-top:78px}.mb-78{margin-bottom:78px}.mt-79{margin-top:79px}.mb-79{margin-bottom:79px}.mt-80{margin-top:80px}.mb-80{margin-bottom:80px}.mt-81{margin-top:81px}.mb-81{margin-bottom:81px}.mt-82{margin-top:82px}.mb-82{margin-bottom:82px}.mt-83{margin-top:83px}.mb-83{margin-bottom:83px}.mt-84{margin-top:84px}.mb-84{margin-bottom:84px}.mt-85{margin-top:85px}.mb-85{margin-bottom:85px}.mt-86{margin-top:86px}.mb-86{margin-bottom:86px}.mt-87{margin-top:87px}.mb-87{margin-bottom:87px}.mt-88{margin-top:88px}.mb-88{margin-bottom:88px}.mt-89{margin-top:89px}.mb-89{margin-bottom:89px}.mt-90{margin-top:90px}.mb-90{margin-bottom:90px}.mt-91{margin-top:91px}.mb-91{margin-bottom:91px}.mt-92{margin-top:92px}.mb-92{margin-bottom:92px}.mt-93{margin-top:93px}.mb-93{margin-bottom:93px}.mt-94{margin-top:94px}.mb-94{margin-bottom:94px}.mt-95{margin-top:95px}.mb-95{margin-bottom:95px}.mt-96{margin-top:96px}.mb-96{margin-bottom:96px}.mt-97{margin-top:97px}.mb-97{margin-bottom:97px}.mt-98{margin-top:98px}.mb-98{margin-bottom:98px}.mt-99{margin-top:99px}.mb-99{margin-bottom:99px}.mt-100{margin-top:100px}.mb-100{margin-bottom:100px}.mt-101{margin-top:101px}.mb-101{margin-bottom:101px}.mt-102{margin-top:102px}.mb-102{margin-bottom:102px}.mt-103{margin-top:103px}.mb-103{margin-bottom:103px}.mt-104{margin-top:104px}.mb-104{margin-bottom:104px}.mt-105{margin-top:105px}.mb-105{margin-bottom:105px}.mt-106{margin-top:106px}.mb-106{margin-bottom:106px}.mt-107{margin-top:107px}.mb-107{margin-bottom:107px}.mt-108{margin-top:108px}.mb-108{margin-bottom:108px}.mt-109{margin-top:109px}.mb-109{margin-bottom:109px}.mt-110{margin-top:110px}.mb-110{margin-bottom:110px}.mt-111{margin-top:111px}.mb-111{margin-bottom:111px}.mt-112{margin-top:112px}.mb-112{margin-bottom:112px}.mt-113{margin-top:113px}.mb-113{margin-bottom:113px}.mt-114{margin-top:114px}.mb-114{margin-bottom:114px}.mt-115{margin-top:115px}.mb-115{margin-bottom:115px}.mt-116{margin-top:116px}.mb-116{margin-bottom:116px}.mt-117{margin-top:117px}.mb-117{margin-bottom:117px}.mt-118{margin-top:118px}.mb-118{margin-bottom:118px}.mt-119{margin-top:119px}.mb-119{margin-bottom:119px}.mt-120{margin-top:120px}.mb-120{margin-bottom:120px}.mt-121{margin-top:121px}.mb-121{margin-bottom:121px}.mt-122{margin-top:122px}.mb-122{margin-bottom:122px}.mt-123{margin-top:123px}.mb-123{margin-bottom:123px}.mt-124{margin-top:124px}.mb-124{margin-bottom:124px}.mt-125{margin-top:125px}.mb-125{margin-bottom:125px}.mt-126{margin-top:126px}.mb-126{margin-bottom:126px}.mt-127{margin-top:127px}.mb-127{margin-bottom:127px}.mt-128{margin-top:128px}.mb-128{margin-bottom:128px}.mt-129{margin-top:129px}.mb-129{margin-bottom:129px}.mt-130{margin-top:130px}.mb-130{margin-bottom:130px}.mt-131{margin-top:131px}.mb-131{margin-bottom:131px}.mt-132{margin-top:132px}.mb-132{margin-bottom:132px}.mt-133{margin-top:133px}.mb-133{margin-bottom:133px}.mt-134{margin-top:134px}.mb-134{margin-bottom:134px}.mt-135{margin-top:135px}.mb-135{margin-bottom:135px}.mt-136{margin-top:136px}.mb-136{margin-bottom:136px}.mt-137{margin-top:137px}.mb-137{margin-bottom:137px}.mt-138{margin-top:138px}.mb-138{margin-bottom:138px}.mt-139{margin-top:139px}.mb-139{margin-bottom:139px}.mt-140{margin-top:140px}.mb-140{margin-bottom:140px}.mt-141{margin-top:141px}.mb-141{margin-bottom:141px}.mt-142{margin-top:142px}.mb-142{margin-bottom:142px}.mt-143{margin-top:143px}.mb-143{margin-bottom:143px}.mt-144{margin-top:144px}.mb-144{margin-bottom:144px}.mt-145{margin-top:145px}.mb-145{margin-bottom:145px}.mt-146{margin-top:146px}.mb-146{margin-bottom:146px}.mt-147{margin-top:147px}.mb-147{margin-bottom:147px}.mt-148{margin-top:148px}.mb-148{margin-bottom:148px}.mt-149{margin-top:149px}.mb-149{margin-bottom:149px}.mt-150{margin-top:150px}.mb-150{margin-bottom:150px}.mt-151{margin-top:151px}.mb-151{margin-bottom:151px}.mt-152{margin-top:152px}.mb-152{margin-bottom:152px}.mt-153{margin-top:153px}.mb-153{margin-bottom:153px}.mt-154{margin-top:154px}.mb-154{margin-bottom:154px}.mt-155{margin-top:155px}.mb-155{margin-bottom:155px}.mt-156{margin-top:156px}.mb-156{margin-bottom:156px}.mt-157{margin-top:157px}.mb-157{margin-bottom:157px}.mt-158{margin-top:158px}.mb-158{margin-bottom:158px}.mt-159{margin-top:159px}.mb-159{margin-bottom:159px}.mt-160{margin-top:160px}.mb-160{margin-bottom:160px}.mt-161{margin-top:161px}.mb-161{margin-bottom:161px}.mt-162{margin-top:162px}.mb-162{margin-bottom:162px}.mt-163{margin-top:163px}.mb-163{margin-bottom:163px}.mt-164{margin-top:164px}.mb-164{margin-bottom:164px}.mt-165{margin-top:165px}.mb-165{margin-bottom:165px}.mt-166{margin-top:166px}.mb-166{margin-bottom:166px}.mt-167{margin-top:167px}.mb-167{margin-bottom:167px}.mt-168{margin-top:168px}.mb-168{margin-bottom:168px}.mt-169{margin-top:169px}.mb-169{margin-bottom:169px}.mt-170{margin-top:170px}.mb-170{margin-bottom:170px}.mt-171{margin-top:171px}.mb-171{margin-bottom:171px}.mt-172{margin-top:172px}.mb-172{margin-bottom:172px}.mt-173{margin-top:173px}.mb-173{margin-bottom:173px}.mt-174{margin-top:174px}.mb-174{margin-bottom:174px}.mt-175{margin-top:175px}.mb-175{margin-bottom:175px}.mt-176{margin-top:176px}.mb-176{margin-bottom:176px}.mt-177{margin-top:177px}.mb-177{margin-bottom:177px}.mt-178{margin-top:178px}.mb-178{margin-bottom:178px}.mt-179{margin-top:179px}.mb-179{margin-bottom:179px}.mt-180{margin-top:180px}.mb-180{margin-bottom:180px}.mt-181{margin-top:181px}.mb-181{margin-bottom:181px}.mt-182{margin-top:182px}.mb-182{margin-bottom:182px}.mt-183{margin-top:183px}.mb-183{margin-bottom:183px}.mt-184{margin-top:184px}.mb-184{margin-bottom:184px}.mt-185{margin-top:185px}.mb-185{margin-bottom:185px}.mt-186{margin-top:186px}.mb-186{margin-bottom:186px}.mt-187{margin-top:187px}.mb-187{margin-bottom:187px}.mt-188{margin-top:188px}.mb-188{margin-bottom:188px}.mt-189{margin-top:189px}.mb-189{margin-bottom:189px}.mt-190{margin-top:190px}.mb-190{margin-bottom:190px}.mt-191{margin-top:191px}.mb-191{margin-bottom:191px}.mt-192{margin-top:192px}.mb-192{margin-bottom:192px}.mt-193{margin-top:193px}.mb-193{margin-bottom:193px}.mt-194{margin-top:194px}.mb-194{margin-bottom:194px}.mt-195{margin-top:195px}.mb-195{margin-bottom:195px}.mt-196{margin-top:196px}.mb-196{margin-bottom:196px}.mt-197{margin-top:197px}.mb-197{margin-bottom:197px}.mt-198{margin-top:198px}.mb-198{margin-bottom:198px}.mt-199{margin-top:199px}.mb-199{margin-bottom:199px}.mt-200{margin-top:200px}.mb-200{margin-bottom:200px}.mt-201{margin-top:201px}.mb-201{margin-bottom:201px}.mt-202{margin-top:202px}.mb-202{margin-bottom:202px}.mt-203{margin-top:203px}.mb-203{margin-bottom:203px}.mt-204{margin-top:204px}.mb-204{margin-bottom:204px}.mt-205{margin-top:205px}.mb-205{margin-bottom:205px}.mt-206{margin-top:206px}.mb-206{margin-bottom:206px}.mt-207{margin-top:207px}.mb-207{margin-bottom:207px}.mt-208{margin-top:208px}.mb-208{margin-bottom:208px}.mt-209{margin-top:209px}.mb-209{margin-bottom:209px}.mt-210{margin-top:210px}.mb-210{margin-bottom:210px}.mt-211{margin-top:211px}.mb-211{margin-bottom:211px}.mt-212{margin-top:212px}.mb-212{margin-bottom:212px}.mt-213{margin-top:213px}.mb-213{margin-bottom:213px}.mt-214{margin-top:214px}.mb-214{margin-bottom:214px}.mt-215{margin-top:215px}.mb-215{margin-bottom:215px}.mt-216{margin-top:216px}.mb-216{margin-bottom:216px}.mt-217{margin-top:217px}.mb-217{margin-bottom:217px}.mt-218{margin-top:218px}.mb-218{margin-bottom:218px}.mt-219{margin-top:219px}.mb-219{margin-bottom:219px}.mt-220{margin-top:220px}.mb-220{margin-bottom:220px}.mt-221{margin-top:221px}.mb-221{margin-bottom:221px}.mt-222{margin-top:222px}.mb-222{margin-bottom:222px}.mt-223{margin-top:223px}.mb-223{margin-bottom:223px}.mt-224{margin-top:224px}.mb-224{margin-bottom:224px}.mt-225{margin-top:225px}.mb-225{margin-bottom:225px}.mt-226{margin-top:226px}.mb-226{margin-bottom:226px}.mt-227{margin-top:227px}.mb-227{margin-bottom:227px}.mt-228{margin-top:228px}.mb-228{margin-bottom:228px}.mt-229{margin-top:229px}.mb-229{margin-bottom:229px}.mt-230{margin-top:230px}.mb-230{margin-bottom:230px}.mt-231{margin-top:231px}.mb-231{margin-bottom:231px}.mt-232{margin-top:232px}.mb-232{margin-bottom:232px}.mt-233{margin-top:233px}.mb-233{margin-bottom:233px}.mt-234{margin-top:234px}.mb-234{margin-bottom:234px}.mt-235{margin-top:235px}.mb-235{margin-bottom:235px}.mt-236{margin-top:236px}.mb-236{margin-bottom:236px}.mt-237{margin-top:237px}.mb-237{margin-bottom:237px}.mt-238{margin-top:238px}.mb-238{margin-bottom:238px}.mt-239{margin-top:239px}.mb-239{margin-bottom:239px}.mt-240{margin-top:240px}.mb-240{margin-bottom:240px}.mt-241{margin-top:241px}.mb-241{margin-bottom:241px}.mt-242{margin-top:242px}.mb-242{margin-bottom:242px}.mt-243{margin-top:243px}.mb-243{margin-bottom:243px}.mt-244{margin-top:244px}.mb-244{margin-bottom:244px}.mt-245{margin-top:245px}.mb-245{margin-bottom:245px}.mt-246{margin-top:246px}.mb-246{margin-bottom:246px}.mt-247{margin-top:247px}.mb-247{margin-bottom:247px}.mt-248{margin-top:248px}.mb-248{margin-bottom:248px}.mt-249{margin-top:249px}.mb-249{margin-bottom:249px}.mt-250{margin-top:250px}.mb-250{margin-bottom:250px}.font-1{font-size:1px}.font-2{font-size:2px}.font-3{font-size:3px}.font-4{font-size:4px}.font-5{font-size:5px}.font-6{font-size:6px}.font-7{font-size:7px}.font-8{font-size:8px}.font-9{font-size:9px}.font-10{font-size:10px}.font-11{font-size:11px}.font-12{font-size:12px}.font-13{font-size:13px}.font-14{font-size:14px}.font-15{font-size:15px}.font-16{font-size:16px}.font-17{font-size:17px}.font-18{font-size:18px}.font-19{font-size:19px}.font-20{font-size:20px}.font-21{font-size:21px}.font-22{font-size:22px}.font-23{font-size:23px}.font-24{font-size:24px}.font-25{font-size:25px}.font-26{font-size:26px}.font-27{font-size:27px}.font-28{font-size:28px}.font-29{font-size:29px}.font-30{font-size:30px}.font-31{font-size:31px}.font-32{font-size:32px}.font-33{font-size:33px}.font-34{font-size:34px}.font-35{font-size:35px}.font-36{font-size:36px}.font-37{font-size:37px}.font-38{font-size:38px}.font-39{font-size:39px}.font-40{font-size:40px}.font-41{font-size:41px}.font-42{font-size:42px}.font-43{font-size:43px}.font-44{font-size:44px}.font-45{font-size:45px}.font-46{font-size:46px}.font-47{font-size:47px}.font-48{font-size:48px}.font-49{font-size:49px}.font-50{font-size:50px}.center-container{margin-top:15px;display:flex;justify-content:center;vertical-align:center}.d-block{display:block}.maj-block-title{text-align:center;color:#fbad18;font-family:gothambold,sans-serif;font-size:31px;margin-bottom:25px;margin-left:auto;margin-right:auto}.maj-block-title+p{text-align:center;margin-left:auto;margin-right:auto;font-family:"gothambold",sans-serif}.maj-max-width{max-width:1080px}.margin-center{margin-left:auto;margin-right:auto}button.margin-center{display:block}.maj-img-card{margin:25px 0 0 0;display:flex;border-radius:25px;overflow:hidden;position:relative;padding:25px;min-height:500px;flex-direction:column;justify-content:end}.maj-img-card h3,.maj-img-card p{color:#fff}.maj-img-card h3{margin:0 0 10px 0;font-size:34px}.maj-img-card .background{padding:inherit;display:block;position:absolute;left:0;bottom:0;background:rgba(0,0,0,.3)}.maj-img-card img{position:absolute;top:0;left:0;height:100%;z-index:-1}.maj-grid{display:grid;grid-template-columns:repeat(auto-fit, minmax(300px, 1fr));gap:25px}label{display:initial;margin-bottom:initial;font-weight:initial}.container{margin-right:auto;margin-left:auto}@media screen and (min-width: 320px)and (max-width: 770px){.container{width:calc(100% - 30px);padding:0 15px}}@media screen and (min-width: 770px)and (max-width: 1100px){.container{width:720px}}@media screen and (min-width: 1100px)and (max-width: 1500px){.container{width:1000px}}@media screen and (min-width: 1500px){.container{width:1440px}}.pagination{list-style:none;display:flex;justify-content:center;column-gap:5px;margin:25px 0 0 0;padding:0;font-size:22px}.pagination li.disabled a{display:none}.pagination li.active a{background:#fbad18;color:#fff;border-radius:5px;padding:5px}.pagination li.active a:hover{background:#fff;color:#fbad18}.jumbo{position:relative;display:flex;justify-content:center;align-items:center;flex-direction:column;width:100%;height:600px}.jumbo>img{position:absolute;z-index:-1;top:0;left:0;width:100%;height:600px}.jumbo+footer{margin-top:0}.cookies-bar{position:fixed;bottom:0;left:0;width:calc(100% - 20px);background-color:#3f1486;padding:10px;align-items:center;color:#fff;column-gap:10px;row-gap:10px}.select-multiple-container{position:relative;display:block;width:100%;-webkit-user-select:none;-ms-user-select:none;user-select:none}.select-multiple-container .select-multiple-values{max-width:100%;display:flex;flex-wrap:wrap;align-items:center;overflow:scroll;column-gap:4px;row-gap:2px;height:42px;padding:4px 0}.select-multiple-container .select-multiple-values{-ms-overflow-style:none;scrollbar-width:none}.select-multiple-container .select-multiple-values::-webkit-scrollbar{display:none}.select-multiple-container .select-multiple-values .select-multiple-placeholder:not(:only-child){display:none}.select-multiple-container .select-multiple-values .select-multiple-value-tag{display:inline-block;height:18px;line-height:18px;padding:0 6px;background-color:#fbad18;color:#fff;font-family:"gothammedium",sans-serif;font-size:14px;border-radius:25px;cursor:pointer}.select-multiple-container .select-multiple-values .select-multiple-value-tag:after{content:"⨯"}.select-multiple-container .select-multiple-select{position:absolute;z-index:9999;display:block;max-height:200px;width:100%;overflow-y:auto;background-color:#fff;bottom:0;transform:translateY(100%);border-top:1px solid #363636;border-radius:0 0 25px 25px;box-shadow:inset 0 30px 25px -20px #b8b8b8}.select-multiple-container .select-multiple-select{-ms-overflow-style:none;scrollbar-width:none}.select-multiple-container .select-multiple-select::-webkit-scrollbar{display:none}.select-multiple-container .select-multiple-select:not(.active){display:none}.select-multiple-container .select-multiple-select .select-multiple-option{height:25px;line-height:25px;color:#878787;text-align:left;padding:0 15px;white-space:nowrap;cursor:pointer}.select-multiple-container .select-multiple-select .select-multiple-option:before{content:"◯";font-size:10px;transform:translateY(-3px);display:inline-block}.select-multiple-container .select-multiple-select .select-multiple-option:hover{color:#363636}.select-multiple-container .select-multiple-select .select-multiple-option.selected{color:#363636}.select-multiple-container .select-multiple-select .select-multiple-option.selected:before{color:#fbad18;content:"⬤"}.color-black{color:#363636}.font-black{color:#363636}.color-grey-dark{color:#878787}.font-grey-dark{color:#878787}.color-grey{color:#b8b8b8}.font-grey{color:#b8b8b8}.color-grey-light{color:#f6f6f6}.font-grey-light{color:#f6f6f6}.color-white{color:#fff}.font-white{color:#fff}.color-yellow{color:#fbad18}.font-yellow{color:#fbad18}.color-yellow-light{color:#ffc567}.font-yellow-light{color:#ffc567}.color-purple{color:#3f1486}.font-purple{color:#3f1486}.color-purple-light{color:#639}.font-purple-light{color:#639}.home-page-jumbo-container{display:inline-block;height:100dvh;width:100vw}.home-page-jumbo-container .paralax-container{transform:scale(1.05);overflow:hidden;z-index:-1;position:absolute;top:0;left:0;height:100dvh;width:100vw;margin-top:70px;margin-left:-10px}.home-page-jumbo-container .paralax-container img{position:absolute;top:0;left:0;height:100dvh;width:100vw}.home-page-jumbo-container .paralax-container #home-paralax-placeholder{z-index:6}.home-page-jumbo-container .paralax-container #home-paralax-plane1{z-index:5}.home-page-jumbo-container .paralax-container #home-paralax-plane2{z-index:4}.home-page-jumbo-container .paralax-container #home-paralax-plane3{z-index:3}.home-page-jumbo-container .paralax-container #home-paralax-plane4{z-index:2}.home-page-jumbo-container .paralax-container #home-paralax-plane5{z-index:1}.home-page-jumbo{max-width:100%;text-align:center}.home-page-jumbo a{padding:15px 40px;border-radius:25px;background-color:#fbad18;margin:20px auto;border:none;height:50px;font-family:gothammedium,sans-serif !important;font-size:16px !important;text-align:center;font-style:normal !important;color:#fff;letter-spacing:1px;display:inline-block}.home-page-jumbo h1{color:#fff;font-size:56px;max-width:1000px;font-family:gothamblack,sans-serif;letter-spacing:1px;margin:350px auto 0;text-align:center}.home-page-jumbo h1 span{color:#fbad18}@media screen and (max-width: 1100px){.home-page-jumbo h1{margin:80px auto 0;font-size:40px !important}}.home-page-jumbo form.home{padding-top:0 !important}@media screen and (max-width: 770px){.home-page-jumbo form.home{padding:0 15px}}.home-page-jumbo form.home .search-bar{width:calc(100% - 15px);max-width:650px;margin:25px auto}@media screen and (max-width: 1100px){.home-page-jumbo form.home .search-bar .city-search-bar{width:calc(100% - 30px)}.home-page-jumbo form.home .search-bar .type-search-bar{width:calc(100% - 50px);padding:0 25px;margin-bottom:15px}}@media screen and (min-width: 1100px){.home-page-jumbo form.home .search-bar{height:50px;white-space:nowrap}.home-page-jumbo form.home .search-bar .city-search-bar{width:320px;border-radius:0 25px 25px 0}.home-page-jumbo form.home .search-bar .type-search-bar{float:left;width:273px;border-right:2px solid #b8b8b8;border-radius:25px 0 0 25px}}@media screen and (min-width: 1100px){.home-page-jumbo form.home a.estimation-sm{display:none}}@media screen and (max-width: 1100px){.home-page-jumbo form.home a.estimation-sm{font-weight:bolder;line-height:20px;padding:14px 25px;height:auto;border-radius:150px;margin:7px auto;animation:pulse-yellow .5s ease-in-out infinite;white-space:normal}@keyframes pulse-yellow{0%{box-shadow:0 0 0 0 rgba(251,173,24,.7)}70%{box-shadow:0 0 0 15px rgba(251,173,24,0)}100%{box-shadow:0 0 0 0 rgba(251,173,24,0)}}}@media screen and (max-width: 770px){.home-page-jumbo form.home button[type=submit]{line-height:20px;padding:14px 25px;max-width:calc(100% - 15px);white-space:break-spaces;margin:5px auto}}@media screen and (min-width: 1500px){.home-page.best-in-marseille .city-card:first-child{display:none}}.home-page-streetview iframe{height:500px;border-radius:25px}.home-page-reseaux{margin:50px 0 0 0;width:100vw;min-width:320px;background-color:#ececec;padding:30px 0}.home-page-reseaux .container{min-height:600px;display:flex;gap:80px}@media screen and (max-width: 1500px){.home-page-reseaux .container{flex-wrap:wrap;justify-content:center;text-align:center;gap:0}.home-page-reseaux .container *{text-align:center}}.home-page-reseaux .container .left{flex:1 1 600px;max-width:600px}.home-page-reseaux .container .right{flex:1 1;display:flex;flex-wrap:wrap;justify-content:space-between}.home-page-reseaux .container .right>h2{width:100%;text-align:center}.home-page-reseaux .container .right>p{text-align:center}.home-page-reseaux .container .right .flex-reseaux{width:100%;display:flex;justify-content:center;gap:20px}.home-page-reseaux .container .right .flex-reseaux img{max-width:175px;max-height:175px}.home-page.nous-recrutons .recrutons-card{margin-top:50px;position:relative;min-height:340px;padding:25px;display:flex;flex-wrap:wrap;justify-content:end;flex-direction:column;overflow:hidden;border-radius:25px}.home-page.nous-recrutons .recrutons-card p{color:#fff}.home-page.nous-recrutons .recrutons-card h3{color:#fff;font-size:49px;max-width:765px;font-family:"gothambold",sans-serif}@media screen and (max-width: 770px){.home-page.nous-recrutons .recrutons-card h3{font-size:31px}}.home-page.nous-recrutons .recrutons-card a.maj-button{margin-left:auto;font-size:18px}.home-page.nous-recrutons .recrutons-card img{z-index:-1;position:absolute;top:0;left:0;height:100%;filter:brightness(0.7)}.home-page.home-page-blog{display:flex;flex-wrap:wrap;justify-content:center}.home-page.home-page-blog h2{width:100%;margin-bottom:25px}.home-page.home-page-blog .articles{width:100%}.home-page.home-page-blog .maj-button{font-size:18px;margin:10px 0}#back-to-top{position:fixed;bottom:0;right:0;margin:30px;padding:15px;border-radius:150px;background-color:#fbad18;color:#fff}#estimation-btn{position:fixed;right:25px;height:157px;width:159px;display:flex;align-items:center;justify-content:center;transition:.3s;opacity:1}#estimation-btn:not(.btt-hidden){top:100px}#estimation-btn.btt-hidden{position:absolute;bottom:-80px;opacity:0}@media screen and (max-width: 1100px){#estimation-btn{display:none}}#estimation-btn .circle-svg .circle-circle{height:50px;width:50px;transform:translate(1px, -5px);border-radius:150px;animation:pulse 1s ease-in-out infinite}@keyframes pulse{0%{box-shadow:0 0 0 0 rgba(251,173,24,.7)}70%{box-shadow:0 0 0 30px rgba(251,173,24,0)}100%{box-shadow:0 0 0 0 rgba(251,173,24,0)}}#estimation-btn #estimation-btn-svg{position:absolute;top:0}.color-black{color:#363636}.font-black{color:#363636}.color-grey-dark{color:#878787}.font-grey-dark{color:#878787}.color-grey{color:#b8b8b8}.font-grey{color:#b8b8b8}.color-grey-light{color:#f6f6f6}.font-grey-light{color:#f6f6f6}.color-white{color:#fff}.font-white{color:#fff}.color-yellow{color:#fbad18}.font-yellow{color:#fbad18}.color-yellow-light{color:#ffc567}.font-yellow-light{color:#ffc567}.color-purple{color:#3f1486}.font-purple{color:#3f1486}.color-purple-light{color:#639}.font-purple-light{color:#639}.container-top-bar-biens{width:100%;background-color:#f6f6f6}.container-top-bar-biens .grid-top-bar-biens{display:grid}@media screen and (max-width: 770px){.container-top-bar-biens .grid-top-bar-biens{grid-template-columns:repeat(auto-fit, 1fr);row-gap:15px}}@media screen and (min-width: 770px){.container-top-bar-biens .grid-top-bar-biens{grid-template-columns:repeat(auto-fit, minmax(450px, 1fr))}}.container-top-bar-biens .grid-top-bar-biens *{display:inline;margin:20px 10px}.container-top-bar-biens .grid-top-bar-biens .bloc-top-bar-biens:first-child{text-align:left}.container-top-bar-biens .grid-top-bar-biens .bloc-top-bar-biens:first-child h2{line-height:42px;font-size:28px;color:#363636;font-family:"gothammedium",sans-serif}@media screen and (max-width: 770px){.container-top-bar-biens .grid-top-bar-biens .bloc-top-bar-biens:first-child{text-align:center;margin:15px 0 0 0}}.container-top-bar-biens .grid-top-bar-biens .bloc-top-bar-biens:last-child{text-align:right;line-height:30px}@media screen and (max-width: 770px){.container-top-bar-biens .grid-top-bar-biens .bloc-top-bar-biens:last-child{text-align:left;margin:0 0 15px 0}}.container-top-bar-biens .grid-top-bar-biens .bloc-top-bar-biens:last-child a,.container-top-bar-biens .grid-top-bar-biens .bloc-top-bar-biens:last-child button{margin:5px;border-radius:20px;border:none;background:#fff;font-size:12px;padding:8px;width:150px;color:#000;font-family:"gothambold",sans-serif;white-space:nowrap}.container-top-bar-biens .grid-top-bar-biens .bloc-top-bar-biens:last-child a:hover,.container-top-bar-biens .grid-top-bar-biens .bloc-top-bar-biens:last-child a:hover,.container-top-bar-biens .grid-top-bar-biens .bloc-top-bar-biens:last-child button:hover,.container-top-bar-biens .grid-top-bar-biens .bloc-top-bar-biens:last-child button:hover{background:#fbad18;color:#fff}.container-top-bar-biens .grid-top-bar-biens .bloc-top-bar-biens:last-child a.active,.container-top-bar-biens .grid-top-bar-biens .bloc-top-bar-biens:last-child a.active,.container-top-bar-biens .grid-top-bar-biens .bloc-top-bar-biens:last-child button.active,.container-top-bar-biens .grid-top-bar-biens .bloc-top-bar-biens:last-child button.active{background:#3f1486;color:#fff}.color-black{color:#363636}.font-black{color:#363636}.color-grey-dark{color:#878787}.font-grey-dark{color:#878787}.color-grey{color:#b8b8b8}.font-grey{color:#b8b8b8}.color-grey-light{color:#f6f6f6}.font-grey-light{color:#f6f6f6}.color-white{color:#fff}.font-white{color:#fff}.color-yellow{color:#fbad18}.font-yellow{color:#fbad18}.color-yellow-light{color:#ffc567}.font-yellow-light{color:#ffc567}.color-purple{color:#3f1486}.font-purple{color:#3f1486}.color-purple-light{color:#639}.font-purple-light{color:#639}.logo-svg{margin-top:20px;margin-bottom:20px;display:flex;justify-content:center;align-items:center;flex-wrap:wrap}.logo-svg>a{margin-right:40px;width:150px;height:150px;display:flex;flex-direction:column;justify-content:center;align-items:center;text-align:center;color:#363636}.logo-svg>a svg#logo-marseille-svg{transform:scale(1.5);padding-top:13px}.logo-svg>a svg{fill:#363636 !important}.logo-svg>a svg#vivre-a-marseille-svg path:first-child{stroke:#363636 !important;fill:none !important}.logo-svg>a svg#vivre-a-marseille-svg path:nth-child(2){stroke:#363636 !important;fill:none !important}.logo-svg>a svg#logo-marseille-svg path:first-child{stroke:#363636 !important;fill:none !important}.logo-svg>a svg#logo-marseille-svg path:nth-child(2){stroke:#363636 !important;fill:none !important}.logo-svg>a svg#vente-immo-svg path{stroke:#363636 !important;fill:none !important}.logo-svg>a svg#location-immo-svg path{stroke:#363636 !important;fill:none !important}.logo-svg>a svg#architecture-svg path{stroke:#363636;fill:#363636}.logo-svg>a svg path.logo-marseille-sun{transition:transform .3s cubic-bezier(0.47, 1.64, 0.41, 0.8);transform-box:fill-box;transform-origin:center}.logo-svg>a svg path.logo-marseille-sun{fill:#fff !important}.logo-svg>a svg path.logo-marseille-sun#vivre-a-marseille-svg path:first-child{stroke:#fff !important;fill:none !important}.logo-svg>a svg path.logo-marseille-sun#vivre-a-marseille-svg path:nth-child(2){stroke:#fff !important;fill:none !important}.logo-svg>a svg path.logo-marseille-sun#logo-marseille-svg path:first-child{stroke:#fff !important;fill:none !important}.logo-svg>a svg path.logo-marseille-sun#logo-marseille-svg path:nth-child(2){stroke:#fff !important;fill:none !important}.logo-svg>a svg path.logo-marseille-sun#vente-immo-svg path{stroke:#fff !important;fill:none !important}.logo-svg>a svg path.logo-marseille-sun#location-immo-svg path{stroke:#fff !important;fill:none !important}.logo-svg>a svg path.logo-marseille-sun#architecture-svg path{stroke:#fff;fill:#fff}.logo-svg>a svg path.clouds1{transition:transform .5s cubic-bezier(0.47, 1.64, 0.41, 0.8);transform:translate(-33px)}.logo-svg>a svg path.clouds2{transition:transform .5s cubic-bezier(0.47, 1.64, 0.41, 0.8);transform:translate(43px)}.logo-svg>a:hover:not(.active) #logo-type path#logo-type-panneau{animation:animate3dBackAndForth 1s ease-in-out}@keyframes animate3dBackAndForth{0%{transform:rotateY(10deg) rotate3d(1, 0, 0, 0)}25%{transform:rotateY(10deg) rotate3d(1, 0, 0, -45deg)}50%{transform:rotateY(10deg) rotate3d(1, 0, 0, 45deg)}75%{transform:rotateY(10deg) rotate3d(1, 0, 0, -20deg)}90%{transform:rotateY(10deg) rotate3d(1, 0, 0, 20deg)}100%{transform:rotateY(10deg) rotate3d(1, 0, 0, 0)}}.logo-svg>a.active,.logo-svg>a:hover{color:#fbad18}.logo-svg>a.active svg,.logo-svg>a:hover svg{fill:#fbad18 !important}.logo-svg>a.active svg#vivre-a-marseille-svg path:first-child,.logo-svg>a:hover svg#vivre-a-marseille-svg path:first-child{stroke:#fbad18 !important;fill:none !important}.logo-svg>a.active svg#vivre-a-marseille-svg path:nth-child(2),.logo-svg>a:hover svg#vivre-a-marseille-svg path:nth-child(2){stroke:#fbad18 !important;fill:none !important}.logo-svg>a.active svg#logo-marseille-svg path:first-child,.logo-svg>a:hover svg#logo-marseille-svg path:first-child{stroke:#fbad18 !important;fill:none !important}.logo-svg>a.active svg#logo-marseille-svg path:nth-child(2),.logo-svg>a:hover svg#logo-marseille-svg path:nth-child(2){stroke:#fbad18 !important;fill:none !important}.logo-svg>a.active svg#vente-immo-svg path,.logo-svg>a:hover svg#vente-immo-svg path{stroke:#fbad18 !important;fill:none !important}.logo-svg>a.active svg#location-immo-svg path,.logo-svg>a:hover svg#location-immo-svg path{stroke:#fbad18 !important;fill:none !important}.logo-svg>a.active svg#architecture-svg path,.logo-svg>a:hover svg#architecture-svg path{stroke:#fbad18;fill:#fbad18}.logo-svg>a.active svg path.clouds1,.logo-svg>a:hover svg path.clouds1{transition:transform .5s cubic-bezier(0.47, 1.64, 0.41, 0.8);transform:translate(0px)}.logo-svg>a.active svg path.clouds1,.logo-svg>a:hover svg path.clouds1{fill:#fbad18 !important}.logo-svg>a.active svg path.clouds1#vivre-a-marseille-svg path:first-child,.logo-svg>a:hover svg path.clouds1#vivre-a-marseille-svg path:first-child{stroke:#fbad18 !important;fill:none !important}.logo-svg>a.active svg path.clouds1#vivre-a-marseille-svg path:nth-child(2),.logo-svg>a:hover svg path.clouds1#vivre-a-marseille-svg path:nth-child(2){stroke:#fbad18 !important;fill:none !important}.logo-svg>a.active svg path.clouds1#logo-marseille-svg path:first-child,.logo-svg>a:hover svg path.clouds1#logo-marseille-svg path:first-child{stroke:#fbad18 !important;fill:none !important}.logo-svg>a.active svg path.clouds1#logo-marseille-svg path:nth-child(2),.logo-svg>a:hover svg path.clouds1#logo-marseille-svg path:nth-child(2){stroke:#fbad18 !important;fill:none !important}.logo-svg>a.active svg path.clouds1#vente-immo-svg path,.logo-svg>a:hover svg path.clouds1#vente-immo-svg path{stroke:#fbad18 !important;fill:none !important}.logo-svg>a.active svg path.clouds1#location-immo-svg path,.logo-svg>a:hover svg path.clouds1#location-immo-svg path{stroke:#fbad18 !important;fill:none !important}.logo-svg>a.active svg path.clouds1#architecture-svg path,.logo-svg>a:hover svg path.clouds1#architecture-svg path{stroke:#fbad18;fill:#fbad18}.logo-svg>a.active svg path.clouds2,.logo-svg>a:hover svg path.clouds2{transition:transform .5s cubic-bezier(0.47, 1.64, 0.41, 0.8);transform:translate(0px)}.logo-svg>a.active svg path.clouds2,.logo-svg>a:hover svg path.clouds2{fill:#fbad18 !important}.logo-svg>a.active svg path.clouds2#vivre-a-marseille-svg path:first-child,.logo-svg>a:hover svg path.clouds2#vivre-a-marseille-svg path:first-child{stroke:#fbad18 !important;fill:none !important}.logo-svg>a.active svg path.clouds2#vivre-a-marseille-svg path:nth-child(2),.logo-svg>a:hover svg path.clouds2#vivre-a-marseille-svg path:nth-child(2){stroke:#fbad18 !important;fill:none !important}.logo-svg>a.active svg path.clouds2#logo-marseille-svg path:first-child,.logo-svg>a:hover svg path.clouds2#logo-marseille-svg path:first-child{stroke:#fbad18 !important;fill:none !important}.logo-svg>a.active svg path.clouds2#logo-marseille-svg path:nth-child(2),.logo-svg>a:hover svg path.clouds2#logo-marseille-svg path:nth-child(2){stroke:#fbad18 !important;fill:none !important}.logo-svg>a.active svg path.clouds2#vente-immo-svg path,.logo-svg>a:hover svg path.clouds2#vente-immo-svg path{stroke:#fbad18 !important;fill:none !important}.logo-svg>a.active svg path.clouds2#location-immo-svg path,.logo-svg>a:hover svg path.clouds2#location-immo-svg path{stroke:#fbad18 !important;fill:none !important}.logo-svg>a.active svg path.clouds2#architecture-svg path,.logo-svg>a:hover svg path.clouds2#architecture-svg path{stroke:#fbad18;fill:#fbad18}.logo-svg>a.active svg path.logo-marseille-sun,.logo-svg>a:hover svg path.logo-marseille-sun{transform:translate(0px, -15px) rotate(90deg)}.logo-svg>a.active svg path.logo-marseille-sun,.logo-svg>a:hover svg path.logo-marseille-sun{fill:#fff !important}.logo-svg>a.active svg path.logo-marseille-sun#vivre-a-marseille-svg path:first-child,.logo-svg>a:hover svg path.logo-marseille-sun#vivre-a-marseille-svg path:first-child{stroke:#fff !important;fill:none !important}.logo-svg>a.active svg path.logo-marseille-sun#vivre-a-marseille-svg path:nth-child(2),.logo-svg>a:hover svg path.logo-marseille-sun#vivre-a-marseille-svg path:nth-child(2){stroke:#fff !important;fill:none !important}.logo-svg>a.active svg path.logo-marseille-sun#logo-marseille-svg path:first-child,.logo-svg>a:hover svg path.logo-marseille-sun#logo-marseille-svg path:first-child{stroke:#fff !important;fill:none !important}.logo-svg>a.active svg path.logo-marseille-sun#logo-marseille-svg path:nth-child(2),.logo-svg>a:hover svg path.logo-marseille-sun#logo-marseille-svg path:nth-child(2){stroke:#fff !important;fill:none !important}.logo-svg>a.active svg path.logo-marseille-sun#vente-immo-svg path,.logo-svg>a:hover svg path.logo-marseille-sun#vente-immo-svg path{stroke:#fff !important;fill:none !important}.logo-svg>a.active svg path.logo-marseille-sun#location-immo-svg path,.logo-svg>a:hover svg path.logo-marseille-sun#location-immo-svg path{stroke:#fff !important;fill:none !important}.logo-svg>a.active svg path.logo-marseille-sun#architecture-svg path,.logo-svg>a:hover svg path.logo-marseille-sun#architecture-svg path{stroke:#fff;fill:#fff}.logo-svg>a span{margin-top:13px}.acheter-bien-grid{display:flex;gap:25px;flex-wrap:wrap;justify-content:center}@media screen and (max-width: 770px){.acheter-bien-grid{gap:10px}}.acheter-bien-grid .city-card{position:relative;display:block;cursor:pointer;overflow:hidden;border-radius:25px}@media screen and (min-width: 770px){.acheter-bien-grid .city-card{height:236px;width:266px}}@media screen and (max-width: 770px){.acheter-bien-grid .city-card{flex:1 1 calc(50% - 10px);height:175px;max-width:50%}}.acheter-bien-grid .city-card:hover a{background-color:rgba(251,173,24,.5)}.acheter-bien-grid .city-card a{width:100%;height:100%;display:block}.acheter-bien-grid .city-card a img{position:absolute;z-index:0;top:0;left:0;height:100%;mix-blend-mode:multiply}.acheter-bien-grid .city-card a h3{position:absolute;bottom:15px;left:15px;margin:0;font-size:26px;color:#fff}@media screen and (max-width: 770px){.acheter-bien-grid .city-card a h3{position:absolute;bottom:15px;left:15px;margin:0;font-size:20px;color:#fff}}.acheter-bien-grid .city-card .anim-svg{position:absolute;width:100%;height:100%}@media screen and (max-width: 770px){.acheter-bien-grid .city-card .anim-svg{display:none}}.acheter-bien-grid .city-card .anim-svg svg{transform-origin:center;transition:all 400ms cubic-bezier(0.47, 1.64, 0.41, 0.8)}.color-black{color:#363636}.font-black{color:#363636}.color-grey-dark{color:#878787}.font-grey-dark{color:#878787}.color-grey{color:#b8b8b8}.font-grey{color:#b8b8b8}.color-grey-light{color:#f6f6f6}.font-grey-light{color:#f6f6f6}.color-white{color:#fff}.font-white{color:#fff}.color-yellow{color:#fbad18}.font-yellow{color:#fbad18}.color-yellow-light{color:#ffc567}.font-yellow-light{color:#ffc567}.color-purple{color:#3f1486}.font-purple{color:#3f1486}.color-purple-light{color:#639}.font-purple-light{color:#639}.estimez-votre-bien{position:relative;padding:25px;color:#fff;overflow:hidden;border-radius:25px}.estimez-votre-bien img{position:absolute;top:0;left:0;height:initial;width:initial;z-index:-1;filter:brightness(0.7);object-fit:contain}@media screen and (min-width: 1500px){.estimez-votre-bien img{transform:scale(1.5)}}@media screen and (max-width: 1500px){.estimez-votre-bien img{height:100%}}.contactez-agence{max-width:920px;margin:15px auto 0 auto}.contactez-agence h3{color:#3f1486}.contactez-agence h4{color:#3f1486}.contactez-agence h5{font-size:18px;margin:15px 0 0 0}.contactez-agence .maj-button{margin-left:auto;display:block}.contactez-agence .radios-type-bien{column-gap:15px;row-gap:15px;flex-wrap:wrap;margin-bottom:40px}.contactez-agence .radios-type-bien label{flex:auto;height:70px;padding:10px 0;display:flex;flex-direction:column;align-items:center;justify-content:center;border:solid 2px #363636;border-radius:15px;row-gap:10px;cursor:pointer;transition:.2s}@media screen and (max-width: 1100px){.contactez-agence .radios-type-bien label{flex:1 0 calc(50% - 25px)}}.contactez-agence .radios-type-bien label:hover{background:#f6f6f6}.contactez-agence .radios-type-bien label svg{height:80px;width:unset}.contactez-agence .radios-type-bien label svg path{stroke:#363636}.contactez-agence .radios-type-bien label:has(input:checked){background:#fbad18;color:#fff}.contactez-agence .radios-type-bien label:has(input:checked) svg path{stroke:#fff}.contactez-agence .radios-type-bien label:has(input.invalid:not(:checked)){border:solid 1px red;background-color:#f8d7da;color:#363636}.questions-deplacement{margin-top:15px}.questions-deplacement .maj-img-card{flex:auto;min-width:250px}.color-black{color:#363636}.font-black{color:#363636}.color-grey-dark{color:#878787}.font-grey-dark{color:#878787}.color-grey{color:#b8b8b8}.font-grey{color:#b8b8b8}.color-grey-light{color:#f6f6f6}.font-grey-light{color:#f6f6f6}.color-white{color:#fff}.font-white{color:#fff}.color-yellow{color:#fbad18}.font-yellow{color:#fbad18}.color-yellow-light{color:#ffc567}.font-yellow-light{color:#ffc567}.color-purple{color:#3f1486}.font-purple{color:#3f1486}.color-purple-light{color:#639}.font-purple-light{color:#639}.color-black{color:#363636}.font-black{color:#363636}.color-grey-dark{color:#878787}.font-grey-dark{color:#878787}.color-grey{color:#b8b8b8}.font-grey{color:#b8b8b8}.color-grey-light{color:#f6f6f6}.font-grey-light{color:#f6f6f6}.color-white{color:#fff}.font-white{color:#fff}.color-yellow{color:#fbad18}.font-yellow{color:#fbad18}.color-yellow-light{color:#ffc567}.font-yellow-light{color:#ffc567}.color-purple{color:#3f1486}.font-purple{color:#3f1486}.color-purple-light{color:#639}.font-purple-light{color:#639}.carousel{position:relative;display:flex;overflow:clip;align-items:center}.carousel .inner{white-space:nowrap;height:100%;min-width:100%}.carousel .inner .item{display:inline-block;width:100%;height:100%;overflow:hidden;border-radius:25px;margin-right:0px}@media screen and (max-width: 1100px){.carousel .inner .item{border-radius:0 !important;margin:0}}.carousel .inner .item img{height:100%;transition:transform .3s !important}.carousel .inner .item img:hover{transform:scale(1.3)}.carousel .inner .item.move-left{transition:.3s;transform:translateX(calc(-100% - 0px))}.carousel .inner .item.move-right{transform:translateX(calc(-100% - 0px))}.carousel .inner .item.move-right.end{transition:.3s;transform:translateX(0) !important}.carousel .carousel-btn-container{width:100%;height:100%;display:flex;justify-content:space-between;align-items:center;pointer-events:none;position:absolute}.carousel .carousel-btn-container .control-right,.carousel .carousel-btn-container .control-left{margin:0;padding:0;pointer-events:auto;background:rgba(0,0,0,0);border:none;font-size:60px;color:rgba(255,255,255,.7);transition:.3s ease;cursor:pointer;width:80px}.carousel .carousel-btn-container .control-right:hover,.carousel .carousel-btn-container .control-left:hover{color:#fff}@media screen and (max-width: 1100px){section.titre-detail-bien{justify-content:center}}section.titre-detail-bien .titre-detail-bien-left h1{color:#363636;font-size:26px;margin-bottom:5px;font-family:"gothambold",sans-serif}section.titre-detail-bien .titre-detail-bien-left .lieu{font-size:26px;margin:5px 0;font-family:"gothammedium",sans-serif}section.titre-detail-bien .titre-detail-bien-left .reference{margin:0;font-size:26px;color:#878787;font-family:"gothamlight",sans-serif}section.titre-detail-bien .titre-detail-bien-left .reference span{font-family:"gothambold",sans-serif}section.titre-detail-bien .titre-detail-bien-left .tag{display:inline-block;background-color:#f6f6f6;border-radius:5px;padding:5px 15px;margin:15px 5px 0 0}section.titre-detail-bien .titre-detail-bien-left .tag i{margin-right:5px}section.titre-detail-bien .titre-detail-bien-right .prix{color:#3f1486;font-size:36px;font-family:"gothambold",sans-serif}@media screen and (min-width: 1100px){section.titre-detail-bien .titre-detail-bien-right .prix{text-align:right}}section.titre-detail-bien .titre-detail-bien-right a{display:inline-block;font-size:20px;padding:20px 30px;border-radius:25px;white-space:nowrap}section.titre-detail-bien .titre-detail-bien-right a i{font-size:36px;margin-right:15px;float:left}section.titre-detail-bien .titre-detail-bien-right a span{font-size:18px;font-family:"gothamlight",sans-serif}section.titre-detail-bien .titre-detail-bien-right a span span{font-family:"gothambold",sans-serif}section.description-detail-bien h2{color:#3f1486}section.description-detail-bien .maj-flexbox{justify-content:left;gap:25px}section.description-detail-bien .maj-flexbox ul{padding:0;list-style:none}section.description-detail-bien .maj-flexbox ul li span{font-family:"gothambold",sans-serif}section.maps-detail-bien h2{color:#3f1486;margin-bottom:0}section.maps-detail-bien .map-container{height:475px}section.maps-detail-bien>p{margin-top:0;color:#878787;font-size:13px}#details-bien-emprunt-btn{margin-top:40px}section.blog-detail-bien h2{color:#3f1486}section.blog-detail-bien .maj-flexbox>a{display:block;flex:0 1 430px}section.blog-detail-bien .maj-flexbox>a:hover img{filter:opacity(0.8)}section.blog-detail-bien .maj-flexbox>a:hover h4{color:#3f1486}section.blog-detail-bien .maj-flexbox>a h4{color:#363636;margin:15px 0 5px 0;font-size:18px}section.blog-detail-bien .maj-flexbox>a p{margin:0;line-height:20px;font-family:"gothamlight",sans-serif}section.blog-detail-bien .maj-flexbox>a img{height:250px;border-radius:25px}section.contact-detail-bien h2{color:#363636}section.contact-detail-bien>div{background:#f6f6f6;border-radius:25px;padding:25px;margin-top:25px}section.contact-detail-bien>div h4,section.contact-detail-bien>div option,section.contact-detail-bien>div input[type=radio]+span{color:#363636}section.contact-detail-bien>div h3{display:none}#carousel-detail-bien{height:400px;padding:15px 0;position:relative;display:flex;overflow:clip;align-items:center}#carousel-detail-bien .inner{white-space:nowrap;height:100%;min-width:100%}#carousel-detail-bien .inner .item{display:inline-block;width:100%;height:100%;overflow:hidden;border-radius:25px;margin-right:30px}@media screen and (max-width: 1100px){#carousel-detail-bien .inner .item{border-radius:0 !important;margin:0}}#carousel-detail-bien .inner .item img{height:100%;transition:transform .3s !important}#carousel-detail-bien .inner .item img:hover{transform:scale(1.3)}#carousel-detail-bien .inner .item.move-left{transition:.3s;transform:translateX(calc(-100% - 30px))}#carousel-detail-bien .inner .item.move-right{transform:translateX(calc(-100% - 30px))}#carousel-detail-bien .inner .item.move-right.end{transition:.3s;transform:translateX(0) !important}#carousel-detail-bien .carousel-btn-container{width:100%;height:100%;display:flex;justify-content:space-between;align-items:center;pointer-events:none;position:absolute}#carousel-detail-bien .carousel-btn-container .control-right,#carousel-detail-bien .carousel-btn-container .control-left{margin:0;padding:0;pointer-events:auto;background:rgba(0,0,0,0);border:none;font-size:60px;color:rgba(255,255,255,.7);transition:.3s ease;cursor:pointer;width:80px}#carousel-detail-bien .carousel-btn-container .control-right:hover,#carousel-detail-bien .carousel-btn-container .control-left:hover{color:#fff}#carousel-detail-bien .container .inner{transform:none !important}#carousel-detail-bien .inner{height:400px}#carousel-detail-bien .inner .item{box-shadow:0 4px 26px 0 rgba(0,0,0,.1);position:relative}#carousel-detail-bien .inner .not-available{position:absolute;top:0;left:0;margin:15px;border-radius:25px;padding:0 15px;line-height:30px;height:28px;font-size:15px;color:#fff;background-color:#3f1486;font-family:"gothambold",sans-serif;z-index:1;pointer-events:none}@media screen and (min-width: 1100px){#carousel-detail-bien .inner{transform:translateX(-315px)}#carousel-detail-bien .inner .item{width:600px}#carousel-detail-bien .inner .item.move-left,#carousel-detail-bien .inner .item.move-right{transform:translateX(-630px)}}@media screen and (max-width: 1100px){#carousel-detail-bien .item{width:calc(100% - 15px)}#carousel-detail-bien .item.move-left{transform:translateX(-100%) !important}#carousel-detail-bien .item.move-right{transform:translateX(-100%) !important}#carousel-detail-bien .item.move-right.end{transition:.3s;transform:translateX(0) !important}}.back-btn{background:#fff;color:#3f1486;border-radius:50px;border:2px solid #3f1486;padding:5px 12px;font-family:gothammedium,sans-serif;display:inline-block;font-size:18px;line-height:25px;position:relative}.back-btn:hover{background:#fff;color:#3f1486;border:none}.back-btn.big{border:2px solid #3f1486;padding:0 50px;line-height:46px;box-shadow:none;text-shadow:none}.color-black{color:#363636}.font-black{color:#363636}.color-grey-dark{color:#878787}.font-grey-dark{color:#878787}.color-grey{color:#b8b8b8}.font-grey{color:#b8b8b8}.color-grey-light{color:#f6f6f6}.font-grey-light{color:#f6f6f6}.color-white{color:#fff}.font-white{color:#fff}.color-yellow{color:#fbad18}.font-yellow{color:#fbad18}.color-yellow-light{color:#ffc567}.font-yellow-light{color:#ffc567}.color-purple{color:#3f1486}.font-purple{color:#3f1486}.color-purple-light{color:#639}.font-purple-light{color:#639}.modeles-lettre h3{color:#fbad18}.modeles-lettre .download-card{background-color:#f1f2f7;border-radius:50px;display:flex;justify-content:space-between;gap:15px;margin:0 0 25px 0;padding:16px 16px 16px 30px}@media screen and (max-width: 770px){.modeles-lettre .download-card{padding:15px 0 10px 15px}}.modeles-lettre .download-card p{color:#878787;margin:auto 0;padding:0}@media screen and (max-width: 770px){.modeles-lettre .download-card p{text-align:center;font-size:14px;width:100%}}.modeles-lettre .download-card button{text-align:center;margin:auto 0;font-size:15px;padding:15px;flex:0 0 200px}.modeles-lettre .download-card button i.fa-download{font-size:26px}@media screen and (max-width: 770px){.modeles-lettre .download-card button{line-height:5px;flex:0 0 80px}.modeles-lettre .download-card button span{font-size:8px}.modeles-lettre .download-card button span span{display:none}}@media screen and (min-width: 770px){.modeles-lettre .download-card button i.fa-download{display:none}}.color-black{color:#363636}.font-black{color:#363636}.color-grey-dark{color:#878787}.font-grey-dark{color:#878787}.color-grey{color:#b8b8b8}.font-grey{color:#b8b8b8}.color-grey-light{color:#f6f6f6}.font-grey-light{color:#f6f6f6}.color-white{color:#fff}.font-white{color:#fff}.color-yellow{color:#fbad18}.font-yellow{color:#fbad18}.color-yellow-light{color:#ffc567}.font-yellow-light{color:#ffc567}.color-purple{color:#3f1486}.font-purple{color:#3f1486}.color-purple-light{color:#639}.font-purple-light{color:#639}.blog-categories{display:flex;justify-content:center;align-items:center;margin:30px 0;flex-wrap:wrap;column-gap:20px;row-gap:20px}.blog-categories a{width:200px;text-align:center;font-size:18px;color:#363636;text-overflow:clip;white-space:nowrap;border-radius:25px;font-family:"gothammedium",sans-serif}.blog-categories a svg#vivre-a-marseille-svg{transform:scale(1.6)}.blog-categories a svg{top:0;height:50px}.blog-categories a svg{fill:#363636 !important}.blog-categories a svg#vivre-a-marseille-svg path:first-child{stroke:#363636 !important;fill:none !important}.blog-categories a svg#vivre-a-marseille-svg path:nth-child(2){stroke:#363636 !important;fill:none !important}.blog-categories a svg#logo-marseille-svg path:first-child{stroke:#363636 !important;fill:none !important}.blog-categories a svg#logo-marseille-svg path:nth-child(2){stroke:#363636 !important;fill:none !important}.blog-categories a svg#vente-immo-svg path{stroke:#363636 !important;fill:none !important}.blog-categories a svg#location-immo-svg path{stroke:#363636 !important;fill:none !important}.blog-categories a svg#architecture-svg path{stroke:#363636;fill:#363636}.blog-categories a svg{fill:#363636 !important}.blog-categories a svg#vivre-a-marseille-svg path:first-child{stroke:#363636 !important;fill:none !important}.blog-categories a svg#vivre-a-marseille-svg path:nth-child(2){stroke:#363636 !important;fill:none !important}.blog-categories a svg#logo-marseille-svg path:first-child{stroke:#363636 !important;fill:none !important}.blog-categories a svg#logo-marseille-svg path:nth-child(2){stroke:#363636 !important;fill:none !important}.blog-categories a svg#vente-immo-svg path{stroke:#363636 !important;fill:none !important}.blog-categories a svg#location-immo-svg path{stroke:#363636 !important;fill:none !important}.blog-categories a svg#architecture-svg path{stroke:#363636;fill:#363636}.blog-categories a svg path.logo-marseille-sun{transition:transform .3s cubic-bezier(0.47, 1.64, 0.41, 0.8);transform-box:fill-box;transform-origin:center}.blog-categories a svg path.logo-marseille-sun{fill:#fff !important}.blog-categories a svg path.logo-marseille-sun#vivre-a-marseille-svg path:first-child{stroke:#fff !important;fill:none !important}.blog-categories a svg path.logo-marseille-sun#vivre-a-marseille-svg path:nth-child(2){stroke:#fff !important;fill:none !important}.blog-categories a svg path.logo-marseille-sun#logo-marseille-svg path:first-child{stroke:#fff !important;fill:none !important}.blog-categories a svg path.logo-marseille-sun#logo-marseille-svg path:nth-child(2){stroke:#fff !important;fill:none !important}.blog-categories a svg path.logo-marseille-sun#vente-immo-svg path{stroke:#fff !important;fill:none !important}.blog-categories a svg path.logo-marseille-sun#location-immo-svg path{stroke:#fff !important;fill:none !important}.blog-categories a svg path.logo-marseille-sun#architecture-svg path{stroke:#fff;fill:#fff}.blog-categories a.active,.blog-categories a:hover{color:#fbad18}.blog-categories a.active svg,.blog-categories a:hover svg{overflow:visible;top:0;height:50px}.blog-categories a.active svg,.blog-categories a:hover svg{fill:#fbad18 !important}.blog-categories a.active svg#vivre-a-marseille-svg path:first-child,.blog-categories a:hover svg#vivre-a-marseille-svg path:first-child{stroke:#fbad18 !important;fill:none !important}.blog-categories a.active svg#vivre-a-marseille-svg path:nth-child(2),.blog-categories a:hover svg#vivre-a-marseille-svg path:nth-child(2){stroke:#fbad18 !important;fill:none !important}.blog-categories a.active svg#logo-marseille-svg path:first-child,.blog-categories a:hover svg#logo-marseille-svg path:first-child{stroke:#fbad18 !important;fill:none !important}.blog-categories a.active svg#logo-marseille-svg path:nth-child(2),.blog-categories a:hover svg#logo-marseille-svg path:nth-child(2){stroke:#fbad18 !important;fill:none !important}.blog-categories a.active svg#vente-immo-svg path,.blog-categories a:hover svg#vente-immo-svg path{stroke:#fbad18 !important;fill:none !important}.blog-categories a.active svg#location-immo-svg path,.blog-categories a:hover svg#location-immo-svg path{stroke:#fbad18 !important;fill:none !important}.blog-categories a.active svg#architecture-svg path,.blog-categories a:hover svg#architecture-svg path{stroke:#fbad18;fill:#fbad18}.blog-categories a.active svg path.logo-marseille-sun,.blog-categories a:hover svg path.logo-marseille-sun{transform:translate(0px, -15px) rotate(90deg)}.blog-categories a.active svg path.logo-marseille-sun,.blog-categories a:hover svg path.logo-marseille-sun{fill:#fff !important}.blog-categories a.active svg path.logo-marseille-sun#vivre-a-marseille-svg path:first-child,.blog-categories a:hover svg path.logo-marseille-sun#vivre-a-marseille-svg path:first-child{stroke:#fff !important;fill:none !important}.blog-categories a.active svg path.logo-marseille-sun#vivre-a-marseille-svg path:nth-child(2),.blog-categories a:hover svg path.logo-marseille-sun#vivre-a-marseille-svg path:nth-child(2){stroke:#fff !important;fill:none !important}.blog-categories a.active svg path.logo-marseille-sun#logo-marseille-svg path:first-child,.blog-categories a:hover svg path.logo-marseille-sun#logo-marseille-svg path:first-child{stroke:#fff !important;fill:none !important}.blog-categories a.active svg path.logo-marseille-sun#logo-marseille-svg path:nth-child(2),.blog-categories a:hover svg path.logo-marseille-sun#logo-marseille-svg path:nth-child(2){stroke:#fff !important;fill:none !important}.blog-categories a.active svg path.logo-marseille-sun#vente-immo-svg path,.blog-categories a:hover svg path.logo-marseille-sun#vente-immo-svg path{stroke:#fff !important;fill:none !important}.blog-categories a.active svg path.logo-marseille-sun#location-immo-svg path,.blog-categories a:hover svg path.logo-marseille-sun#location-immo-svg path{stroke:#fff !important;fill:none !important}.blog-categories a.active svg path.logo-marseille-sun#architecture-svg path,.blog-categories a:hover svg path.logo-marseille-sun#architecture-svg path{stroke:#fff;fill:#fff}.blog-categories a.active svg path.cls-1,.blog-categories a:hover svg path.cls-1{animation:stretchImmo 1.3s}@keyframes stretchImmo{0%{transform:scaleY(1.03) scaleX(100%)}10%{transform-origin:bottom;transform:scaleY(1.1) scaleX(85%)}20%{transform-origin:bottom;transform:scaleY(1.05) scaleX(95%)}30%{transform-origin:bottom;transform:scaleY(1.1) scaleX(85%)}40%{transform-origin:bottom;transform:scaleY(1.05) scaleX(95%)}50%{transform-origin:bottom;transform:scaleY(1.1) scaleX(90%)}60%{transform-origin:bottom;transform:scaleY(1.1) scaleX(90%)}70%{transform-origin:bottom;transform:scaleY(1.1) scaleX(90%)}80%{transform-origin:bottom;transform:scaleY(1.08) scaleX(90%)}90%{transform-origin:bottom;transform:scaleY(1.03) scaleX(90%)}100%{transform-origin:bottom;transform:scaleY(1) scaleX(100%)}}.blog-card{-webkit-box-shadow:0 4px 11px 0 rgba(0,0,0,.25);box-shadow:0 4px 11px 0 rgba(0,0,0,.25);border-radius:20px;padding:15px 25px}.blog-card h3{margin:0}.blog-card a:not(.maj-button){color:#363636}.blog-card a:not(.maj-button):hover{color:#3f1486}.blog-card ul{padding:0;list-style:none;line-height:24px}.blog-container{margin-top:50px}.blog-container .content-section ul{list-style:disc;padding:0;margin-bottom:25px}.blog-container .content-section ul li{margin-left:40px;margin-bottom:7px}.blog-container .content-data img{flex:1 1 250px !important}.blog-container .content-data .content-right{flex:1 1 350px !important}.blog-snipet{position:relative;margin-bottom:25px}@media screen and (min-width: 1100px){.blog-snipet .maj-button{position:absolute;right:15px;bottom:15px}}.author{font-size:20px;font-family:gothammedium,sans-serif;display:flex;margin-bottom:50px;padding:15px 30px;column-gap:40px;row-gap:10px}@media screen and (max-width: 770px){.author{flex-wrap:wrap}}.author .img-author img{width:56px}.author h4{margin:0;color:#363636}.author p{font-size:16px;font-family:gothambook,sans-serif;margin:10px 0 0;padding:0}@media screen and (max-width: 770px){.summary{margin-bottom:40px}}.summary h3{margin-bottom:15px;font-size:22px;color:#363636}@media screen and (min-width: 770px){.summary .summary-link{margin-left:-30px}}.summary .summary-link ul{list-style-type:none;counter-reset:list}.summary .summary-link ul li{margin-left:30px}@media screen and (max-width: 770px){.summary .summary-link ul li{margin-left:0;margin-bottom:5px}}.summary .summary-link ul li:before{counter-increment:list;content:counters(list, ".") ". "}.articles{display:grid;justify-items:center}@media screen and (min-width: 770px){.articles{grid-template-columns:repeat(auto-fit, minmax(350px, 1fr));grid-gap:75px}}@media screen and (max-width: 770px){.articles{grid-template-columns:repeat(auto-fit, 1fr);grid-gap:25px}}.articles .article-blog{max-width:430px}@media screen and (max-width: 770px){.articles .article-blog{border-radius:25px;box-shadow:rgba(50,50,93,.25) 0 6px 12px -2px,rgba(0,0,0,.3) 0px 3px 7px -3px}.articles .article-blog>*:not(.img-link){padding:0 15px}}.articles .article-blog p{padding:0;line-height:30px !important}.articles .article-blog .img-link{display:block;position:relative;margin-bottom:20px;border-radius:16px;height:230px}.articles .article-blog .img-link:after{display:block;content:"Lire ...";transition:.2s;text-align:center;font-family:gothambold,sans-serif;font-size:25px;color:rgba(0,0,0,0);align-content:space-around;position:absolute;top:0;left:0;width:100%;height:100%;border-radius:16px;background-color:rgba(0,0,0,0)}.articles .article-blog .img-link:hover:after{background-color:rgba(0,0,0,.4);color:#fff;transition:.2s}.articles .article-blog .img-link img{width:100%;height:230px;border-radius:16px}.articles .article-blog .category-blog{margin-bottom:20px}.articles .article-blog .category-blog a{color:#363636;font-size:20px}.articles .article-blog .category-blog a:hover{color:#fbad18}.articles .article-blog h3{margin-top:20px;margin-bottom:20px;font-size:26px}.articles .article-blog h3 a{color:#363636}.articles .article-blog h3 a:hover{color:#fbad18}.articles .article-blog .content-intro{color:#363636;font-size:16px;margin-bottom:0;line-height:20px}.blog-article-sidebar .articles{margin-top:40px;grid-gap:40px}.blog-article-sidebar .article-blog{-webkit-box-shadow:0 4px 11px 0 rgba(0,0,0,.25);box-shadow:0 4px 11px 0 rgba(0,0,0,.25);border-radius:20px}.blog-article-sidebar .article-blog p,.blog-article-sidebar .article-blog h3{padding:0 25px}.blog-article-sidebar .arrondissements h3{font-size:25px;margin-bottom:15px}.blog-article-sidebar .arrondissements ul li{margin-left:0;font-size:15px}.blog-article-sidebar svg#vivre-a-marseille-svg{transform:scale(0.5)}.color-black{color:#363636}.font-black{color:#363636}.color-grey-dark{color:#878787}.font-grey-dark{color:#878787}.color-grey{color:#b8b8b8}.font-grey{color:#b8b8b8}.color-grey-light{color:#f6f6f6}.font-grey-light{color:#f6f6f6}.color-white{color:#fff}.font-white{color:#fff}.color-yellow{color:#fbad18}.font-yellow{color:#fbad18}.color-yellow-light{color:#ffc567}.font-yellow-light{color:#ffc567}.color-purple{color:#3f1486}.font-purple{color:#3f1486}.color-purple-light{color:#639}.font-purple-light{color:#639}.la-team .grid-la-team{display:grid;grid-template-columns:repeat(auto-fit, minmax(150px, 1fr));grid-gap:40px}@media screen and (max-width: 770px){.la-team .grid-la-team .nego{max-width:125px}}.la-team .grid-la-team .nego img{border-radius:25px;box-shadow:rgba(50,50,93,.25) 0 6px 12px -2px,rgba(0,0,0,.3) 0px 3px 7px -3px;margin-bottom:10px;width:100%;object-fit:cover;background-color:#f6f6f6;aspect-ratio:1}.la-team .grid-la-team .nego h4{color:#878787;margin:0;text-align:center;font-size:20px;font-family:"gothambold",sans-serif}.la-team .grid-la-team .nego span{color:#878787;margin:0;text-align:center;font-size:20px;font-family:"gothamlight",sans-serif;display:block}.color-black{color:#363636}.font-black{color:#363636}.color-grey-dark{color:#878787}.font-grey-dark{color:#878787}.color-grey{color:#b8b8b8}.font-grey{color:#b8b8b8}.color-grey-light{color:#f6f6f6}.font-grey-light{color:#f6f6f6}.color-white{color:#fff}.font-white{color:#fff}.color-yellow{color:#fbad18}.font-yellow{color:#fbad18}.color-yellow-light{color:#ffc567}.font-yellow-light{color:#ffc567}.color-purple{color:#3f1486}.font-purple{color:#3f1486}.color-purple-light{color:#639}.font-purple-light{color:#639}.bdv-container p{font-size:18px}.bdv-container .bdv-date{color:#3f1486;font-family:"gothambold",sans-serif;font-size:26px}.bdv-container .bdv-bien-card{box-shadow:rgba(50,50,93,.25) 0 6px 12px -2px,rgba(0,0,0,.3) 0px 3px 7px -3px;padding:15px;border-radius:25px;background-color:#f6f6f6;line-height:20px}.bdv-container .bdv-bien-card img{height:250px;border-radius:25px;margin-bottom:15px}.bdv-container input[type=checkbox]+span{white-space:wrap;line-height:20px;font-size:20px;display:flex;align-items:center;justify-content:center}.bdv-container input[type=checkbox]+span:before{height:30px;width:30px;min-width:30px;font-size:25px;display:flex;align-items:center;justify-content:center;float:left}.bdv-container button{margin-left:auto;display:block}.color-black{color:#363636}.font-black{color:#363636}.color-grey-dark{color:#878787}.font-grey-dark{color:#878787}.color-grey{color:#b8b8b8}.font-grey{color:#b8b8b8}.color-grey-light{color:#f6f6f6}.font-grey-light{color:#f6f6f6}.color-white{color:#fff}.font-white{color:#fff}.color-yellow{color:#fbad18}.font-yellow{color:#fbad18}.color-yellow-light{color:#ffc567}.font-yellow-light{color:#ffc567}.color-purple{color:#3f1486}.font-purple{color:#3f1486}.color-purple-light{color:#639}.font-purple-light{color:#639}.bdp-container input[type=checkbox]+span{white-space:wrap;line-height:20px;font-size:20px;display:flex;align-items:center;justify-content:center}.bdp-container input[type=checkbox]+span:before{height:30px;width:30px;min-width:30px;font-size:25px;display:flex;align-items:center;justify-content:center;float:left}.bdp-container button{margin-left:auto;display:block}.color-black{color:#363636}.font-black{color:#363636}.color-grey-dark{color:#878787}.font-grey-dark{color:#878787}.color-grey{color:#b8b8b8}.font-grey{color:#b8b8b8}.color-grey-light{color:#f6f6f6}.font-grey-light{color:#f6f6f6}.color-white{color:#fff}.font-white{color:#fff}.color-yellow{color:#fbad18}.font-yellow{color:#fbad18}.color-yellow-light{color:#ffc567}.font-yellow-light{color:#ffc567}.color-purple{color:#3f1486}.font-purple{color:#3f1486}.color-purple-light{color:#639}.font-purple-light{color:#639}.ra-container .ra-activites{box-shadow:rgba(50,50,93,.25) 0 6px 12px -2px,rgba(0,0,0,.3) 0px 3px 7px -3px;padding:15px;border-radius:25px;background-color:#f6f6f6;line-height:20px}.ra-container input[type=checkbox]+span{white-space:wrap;line-height:20px;font-size:20px;display:flex;align-items:center;justify-content:center}.ra-container input[type=checkbox]+span:before{height:30px;width:30px;min-width:30px;font-size:25px;display:flex;align-items:center;justify-content:center;float:left}.ra-container hr:not(:last-child){border-bottom:1px solid #363636}.ra-container button{margin-left:auto;display:block}.color-black{color:#363636}.font-black{color:#363636}.color-grey-dark{color:#878787}.font-grey-dark{color:#878787}.color-grey{color:#b8b8b8}.font-grey{color:#b8b8b8}.color-grey-light{color:#f6f6f6}.font-grey-light{color:#f6f6f6}.color-white{color:#fff}.font-white{color:#fff}.color-yellow{color:#fbad18}.font-yellow{color:#fbad18}.color-yellow-light{color:#ffc567}.font-yellow-light{color:#ffc567}.color-purple{color:#3f1486}.font-purple{color:#3f1486}.color-purple-light{color:#639}.font-purple-light{color:#639}.error404{flex-direction:row;justify-content:center}.error404 .right{padding:30px;display:flex;flex-direction:column;align-items:center;row-gap:15px;justify-content:center}.error404 .right h1,.error404 .right p{color:#fff;margin:0;font-family:"gothambold",sans-serif}@media screen and (max-width: 1500px){.error404 .right h1,.error404 .right p{text-align:center}}.error404 .right .maj-button{display:block;padding:10px 25px;text-align:center}@media screen and (min-width: 1500px){.error404{justify-content:right}.error404 .right{margin-right:200px}}.color-black{color:#363636}.font-black{color:#363636}.color-grey-dark{color:#878787}.font-grey-dark{color:#878787}.color-grey{color:#b8b8b8}.font-grey{color:#b8b8b8}.color-grey-light{color:#f6f6f6}.font-grey-light{color:#f6f6f6}.color-white{color:#fff}.font-white{color:#fff}.color-yellow{color:#fbad18}.font-yellow{color:#fbad18}.color-yellow-light{color:#ffc567}.font-yellow-light{color:#ffc567}.color-purple{color:#3f1486}.font-purple{color:#3f1486}.color-purple-light{color:#639}.font-purple-light{color:#639}.nav-bar{background:linear-gradient(90deg, #3f1486 0%, #663399 100%);height:75px;left:0;position:fixed;top:0;width:100vw;z-index:100}.nav-bar .container{display:flex;justify-content:space-between}.nav-bar .container .titleBurg{color:#fff;font-family:gothamblack,sans-serif;margin-top:25px;font-size:23px;letter-spacing:3px}@media screen and (max-width: 1100px){.nav-bar .container .titleBurg{margin-top:15px}.nav-bar .container .titleBurg svg g:nth-child(2){display:none}}.nav-bar .container .titleBurg:hover svg *{fill:#fbad18}.nav-bar .container .menu-right{height:70%;display:flex;justify-content:center;align-items:center}@media screen and (max-width: 1100px){.nav-bar .container .menu-right .menu-big-links{display:none}}.nav-bar .container .menu-right .btn{text-decoration:none;color:#fff;padding:0 0;margin-right:15px;letter-spacing:1px;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0;font-family:gothambook,sans-serif;float:left;font-size:13px;height:100%;line-height:73px}.nav-bar .container .menu-right .btn:hover{color:#fbad18 !important}.nav-bar .container .menu-right .btn.underline-yellow{text-decoration:underline #ffc567 !important;text-underline-offset:8px}.nav-bar .container .menu-right .btn-search{font-family:"gothambold",sans-serif;display:inline-block;color:#3f1486;box-shadow:0 6px 7px 5px rgba(0,0,0,.15);border:none;border-radius:50px;padding:6px 13px;background-color:#fff}.nav-bar .container .menu-right .btn-search i{margin-right:13px}.nav-bar .container .menu-right .btn-search:hover{box-shadow:none;transform:translateY(1px)}.nav-bar .container .menu-right .search-pipe{display:inline-block;float:left;color:#fff;border-radius:0;font-family:gothambook,sans-serif;font-size:14px;height:100%;line-height:73px;margin-right:15px}@media screen and (max-width: 1100px){.nav-bar{padding-left:inherit;padding-right:inherit;height:60px}}@media screen and (max-width: 1500px){.nav-bar .search-pipe{display:none !important}.nav-bar .btn-search{box-shadow:none !important;background-color:rgba(0,0,0,0) !important;margin:0 !important}.nav-bar .btn-search i{margin:0 !important;line-height:25px;font-size:25px;color:#fff}.nav-bar .btn-search span{display:none}}.menu{top:-200%;color:#fff;width:295px;position:fixed;z-index:99;background-color:#471294;right:0;transition:.2s}@media screen and (max-width: 1100px){.menu{margin-top:60px}}@media screen and (min-width: 1100px){.menu{margin-top:75px}}.menu.visible{top:0}.menu ul{list-style:none;padding:5px 35px}.menu ul li{margin-bottom:15px}.menu ul li hr{border-bottom:1px solid #fbad18;margin:0}.menu ul a,.menu ul button.maj-button-link{background:none;border:none;padding:0;list-style:none;font-family:gothammedium,sans-serif;font-size:15px;cursor:pointer;letter-spacing:1.5px;color:#fff !important}.menu ul a:hover,.menu ul button.maj-button-link:hover{color:#fbad18 !important}.menu-burger{display:block;position:relative;overflow:hidden;width:62px;height:57px;font-size:0;text-indent:-9999px;border:none;cursor:pointer;background-color:rgba(0,0,0,0)}.menu-burger.is-active span{background-color:rgba(0,0,0,0);transform:translateX(-10px)}.menu-burger.is-active span::before{transform:rotate(45deg) translate(57%, 50%)}.menu-burger.is-active span:after{transform:rotate(-45deg) translate(50%, 50%)}.menu-burger span{display:block;position:absolute;left:18px;right:18px;height:2px;background:#fff;transition:.3s}.menu-burger span::before,.menu-burger span::after{position:absolute;display:block;left:0;width:100%;height:2px;background-color:#fff;content:"";transition:.3s}.menu-burger span::before{top:-10px}.menu-burger span::after{bottom:-10px}.color-black{color:#363636}.font-black{color:#363636}.color-grey-dark{color:#878787}.font-grey-dark{color:#878787}.color-grey{color:#b8b8b8}.font-grey{color:#b8b8b8}.color-grey-light{color:#f6f6f6}.font-grey-light{color:#f6f6f6}.color-white{color:#fff}.font-white{color:#fff}.color-yellow{color:#fbad18}.font-yellow{color:#fbad18}.color-yellow-light{color:#ffc567}.font-yellow-light{color:#ffc567}.color-purple{color:#3f1486}.font-purple{color:#3f1486}.color-purple-light{color:#639}.font-purple-light{color:#639}footer{background:linear-gradient(90deg, #3f1486 0%, #663399 100%);color:#fff;margin-top:25px;padding:25px 10%}footer .fa{color:#fbad18;margin-right:5px}footer p{color:#fff;font-size:14px;letter-spacing:.02em;margin:40px 0 0}footer li{color:#fff;font-size:14px;line-height:24px;letter-spacing:.02em}footer a{color:#fff}footer a:hover{color:#fbad18 !important;text-decoration:none !important}footer ul{list-style-type:none}footer .titleFooter{font-size:15px;color:#fbad18;margin-bottom:20px;padding-bottom:0;font-family:"gothambook",sans-serif;margin-top:22px}footer .footer-partners a{display:inline-block;margin-bottom:10px}footer .footer-partners a svg,footer .footer-partners a svg *{fill:#fff !important}footer .footer-partners a:hover svg,footer .footer-partners a:hover svg *{fill:#fbad18 !important}footer .footer-partners a.partner-seloger{height:36px}footer .footer-partners a.partner-seloger svg{height:100%}footer .footer-partners a.partner-avendrealouer{height:40px}footer .footer-partners a.partner-avendrealouer svg{height:100%}footer .footer-partners a.partner-leboncoin{margin-bottom:15px}footer .footer-partners a.partner-seloger svg path{transform:translateX(-5px)}@media screen and (max-width: 1100px){footer .footer-partners{text-align:center}}footer .contact img{width:25px;margin:20px 5px}.color-black{color:#363636}.font-black{color:#363636}.color-grey-dark{color:#878787}.font-grey-dark{color:#878787}.color-grey{color:#b8b8b8}.font-grey{color:#b8b8b8}.color-grey-light{color:#f6f6f6}.font-grey-light{color:#f6f6f6}.color-white{color:#fff}.font-white{color:#fff}.color-yellow{color:#fbad18}.font-yellow{color:#fbad18}.color-yellow-light{color:#ffc567}.font-yellow-light{color:#ffc567}.color-purple{color:#3f1486}.font-purple{color:#3f1486}.color-purple-light{color:#639}.font-purple-light{color:#639}header.content-header{position:relative;background-repeat:no-repeat;background-size:cover;background-position:center;display:flex;flex-direction:column;align-items:center;justify-content:center;overflow:hidden}@media screen and (min-width: 770px){header.content-header{height:423px}header.content-header .container{position:absolute;top:0}}header.content-header img{position:absolute;width:100%;height:100%;z-index:-1}header.content-header h1{margin:85px auto;max-width:750px;text-align:center;font-family:"gothamblack",sans-serif;font-size:40px;color:#fff}@media screen and (max-width: 770px){header.content-header h1{font-size:26px;margin:40px 15px 90px 15px}}header.content-header h1::before{content:"#";color:#fbad18}section.content-intro{text-align:center;margin-top:38px}section.content-intro p{max-width:100%;font-family:"gothambook",sans-serif;line-height:20px}section.content-section h2{text-transform:initial;color:#3f1486;letter-spacing:0;font-size:36px}@media screen and (max-width: 770px){section.content-section h2{font-size:28px;margin:0}}section.content-section .content-data{display:flex;flex-wrap:wrap;margin:0 0 35px 0;column-gap:80px;row-gap:15px}section.content-section .content-data h2{flex:1 1 100%}section.content-section .content-data img{order:1;flex:1 1 650px;border-radius:10px;min-width:0;min-height:0}@media screen and (min-width: 1500px){section.content-section .content-data img{aspect-ratio:100}}section.content-section .content-data img+.content-right{flex:1 1 650px}section.content-section .content-data .content-right{order:2}section.content-section .content-data .content-right h3{margin:0 0 25px 0;color:#fbad18;font-size:26px;font-family:"gothambook",sans-serif}@media screen and (min-width: 1500px){section.content-section .content-data:nth-child(odd) img{order:2}section.content-section .content-data:nth-child(odd) .content-right{order:1}}ul.column-list{display:grid;grid-template-columns:repeat(4, 25%);grid-template-rows:repeat(4, 25px);grid-auto-flow:column;font-family:gothambook,sans-serif;padding:0;list-style:none}@media screen and (max-width: 1100px){ul.column-list{grid-template-columns:100%;grid-auto-flow:row}}.color-black{color:#363636}.font-black{color:#363636}.color-grey-dark{color:#878787}.font-grey-dark{color:#878787}.color-grey{color:#b8b8b8}.font-grey{color:#b8b8b8}.color-grey-light{color:#f6f6f6}.font-grey-light{color:#f6f6f6}.color-white{color:#fff}.font-white{color:#fff}.color-yellow{color:#fbad18}.font-yellow{color:#fbad18}.color-yellow-light{color:#ffc567}.font-yellow-light{color:#ffc567}.color-purple{color:#3f1486}.font-purple{color:#3f1486}.color-purple-light{color:#639}.font-purple-light{color:#639}@media screen and (max-width: 770px){#estimation-modal #nologo-majordhom{display:none}}#estimation-modal h2{text-align:center;width:100%;margin:0;max-width:unset !important}@media screen and (min-width: 770px){#estimation-modal h2{margin-top:15px !important;margin-bottom:-20px !important}}#estimation-modal h4{text-transform:none;color:#363636}#estimation-modal .stepper{margin:15px 5px 7px auto;width:fit-content;display:block;color:#878787;font-size:15px}#estimation-modal .maj-slide>*{max-width:600px;margin:0 auto}#estimation-modal .estimation-paginator{flex:auto;height:19px;border-radius:25px;background-color:#f6f6f6}#estimation-modal .estimation-paginator.active{background-color:#fbad18}#estimation-modal .maj-button{max-width:290px;height:48px;display:block;line-height:18px}@media screen and (max-width: 770px){#estimation-modal .maj-button{min-width:100%}}#estimation-modal .maj-button.previous{background-color:#b8b8b8}#estimation-modal .maj-button.previous:hover{background-color:#fff;color:#878787}#estimation-modal fieldset{justify-content:left}#estimation-modal fieldset label{flex:unset}#estimation-modal #radios-type-bien{column-gap:15px;row-gap:15px;flex-wrap:wrap;margin-bottom:40px}#estimation-modal #radios-type-bien label{flex:1 0 250px;height:180px;display:flex;flex-direction:column;align-items:center;justify-content:center;border:solid 2px #363636;border-radius:15px;row-gap:10px;cursor:pointer;transition:.2s}#estimation-modal #radios-type-bien label:hover{background:#f6f6f6}#estimation-modal #radios-type-bien label svg{height:80px;width:unset}#estimation-modal #radios-type-bien label svg path{stroke:#363636}#estimation-modal #radios-type-bien label:has(input:checked){background:#fbad18;color:#fff}#estimation-modal #radios-type-bien label:has(input:checked) svg path{stroke:#fff}#estimation-modal #radios-type-bien label:has(input.invalid:not(:checked)){border:solid 1px red;background-color:#f8d7da;color:#363636}#estimation-modal .estimation-loading{display:flex;flex-direction:column;align-items:center;row-gap:25px;font-family:"gothammedium",sans-serif;color:#878787}#estimation-modal .estimation-loading .loader{width:50px;aspect-ratio:1;border-radius:50%;background:radial-gradient(farthest-side, #FBAD18 94%, rgba(0, 0, 0, 0)) top/8px 8px no-repeat,conic-gradient(rgba(0, 0, 0, 0) 30%, #FBAD18);-webkit-mask:radial-gradient(farthest-side, rgba(0, 0, 0, 0) calc(100% - 8px), #000 0);animation:l13 1s infinite linear}@keyframes l13{100%{transform:rotate(1turn)}}#estimation-contact-form h2{text-align:center;width:100%;max-width:unset !important}@media screen and (min-width: 770px){#estimation-contact-form h2{margin:0 !important}}#estimation-contact-form .maj-slide{display:flex;flex-direction:column;align-items:center}#estimation-contact-form .maj-slide>*{max-width:600px;margin:0 auto}#estimation-contact-form p.last-slide{max-width:100%;font-size:16px;line-height:20px;color:#363636;text-align:center;margin-top:10px !important}#estimation-contact-form .address{color:#363636;font-family:"gothammedium",sans-serif;font-size:18px;margin:15px 0}#estimation-contact-form .price{color:#fbad18;font-family:"gothambold",sans-serif;font-size:36px;margin-top:7px}#estimation-contact-form .price_max_label{font-family:"gothambold",sans-serif;font-size:16px;color:#878787;margin-bottom:5px}#estimation-contact-form .surface{font-family:"gothambold",sans-serif;font-size:16px;color:#878787;margin-bottom:7px}#estimation-contact-form .type_bien{font-family:"gothambold",sans-serif;font-size:16px;color:#878787;margin-bottom:7px}#estimation-contact-form .nb_piece{font-family:"gothambold",sans-serif;font-size:16px;color:#878787;margin-bottom:7px}#estimation-contact-form .price_min_label{font-size:20px;color:#878787;margin-bottom:25px}#estimation-contact-form div.maj-flexbox{margin-top:50px;align-items:center;justify-content:center;text-align:center;column-gap:25px;row-gap:15px}@media screen and (max-width: 770px){#estimation-contact-form div.maj-flexbox{flex-direction:column-reverse}}#estimation-contact-form div.maj-flexbox a.maj-button{display:flex;align-items:center;padding:5px 25px}@media screen and (max-width: 770px){#estimation-contact-form div.maj-flexbox a.maj-button{flex:1}}#estimation-contact-form div:has(.map-container){width:100%}#estimation-contact-form .map-container{height:225px;width:100%;margin-top:25px}.color-black{color:#363636}.font-black{color:#363636}.color-grey-dark{color:#878787}.font-grey-dark{color:#878787}.color-grey{color:#b8b8b8}.font-grey{color:#b8b8b8}.color-grey-light{color:#f6f6f6}.font-grey-light{color:#f6f6f6}.color-white{color:#fff}.font-white{color:#fff}.color-yellow{color:#fbad18}.font-yellow{color:#fbad18}.color-yellow-light{color:#ffc567}.font-yellow-light{color:#ffc567}.color-purple{color:#3f1486}.font-purple{color:#3f1486}.color-purple-light{color:#639}.font-purple-light{color:#639}#dl-lettre-modal h2{color:#363636}#dl-lettre-modal button[type=submit]{display:block;margin-left:auto}.color-black{color:#363636}.font-black{color:#363636}.color-grey-dark{color:#878787}.font-grey-dark{color:#878787}.color-grey{color:#b8b8b8}.font-grey{color:#b8b8b8}.color-grey-light{color:#f6f6f6}.font-grey-light{color:#f6f6f6}.color-white{color:#fff}.font-white{color:#fff}.color-yellow{color:#fbad18}.font-yellow{color:#fbad18}.color-yellow-light{color:#ffc567}.font-yellow-light{color:#ffc567}.color-purple{color:#3f1486}.font-purple{color:#3f1486}.color-purple-light{color:#639}.font-purple-light{color:#639}#contact-modal h2{color:#3f1486;text-align:center}#contact-modal button[type=submit]{display:block;margin-left:auto}.color-black{color:#363636}.font-black{color:#363636}.color-grey-dark{color:#878787}.font-grey-dark{color:#878787}.color-grey{color:#b8b8b8}.font-grey{color:#b8b8b8}.color-grey-light{color:#f6f6f6}.font-grey-light{color:#f6f6f6}.color-white{color:#fff}.font-white{color:#fff}.color-yellow{color:#fbad18}.font-yellow{color:#fbad18}.color-yellow-light{color:#ffc567}.font-yellow-light{color:#ffc567}.color-purple{color:#3f1486}.font-purple{color:#3f1486}.color-purple-light{color:#639}.font-purple-light{color:#639}#search-modal{background-color:#f6f6f6}#search-modal .maj-flexbox.wrap-md{justify-content:left}#search-modal #vente-loc-ref label{flex:1 1 33%;display:flex;align-items:center;justify-content:center;background-color:#fff;color:#363636;font-family:"gothambold",sans-serif;min-width:150px;border-radius:25px;margin-bottom:25px;height:48px}#search-modal #vente-loc-ref label input[type=text]{height:100%;padding:0 20px}#search-modal #vente-loc-ref label input[type=text]+span{font-family:"gothamlight",sans-serif}#search-modal #vente-loc-ref label:has(input[type=radio]:checked){background-color:#fbad18;color:#fff}#search-modal #vente-loc-ref label input[type=radio]+span:before{display:none}#search-modal .checkboxes{display:block}#search-modal .checkboxes>*{display:block}#search-modal .checkboxes h4{color:#363636;font-size:20px;text-transform:none;margin-bottom:0}#search-modal .sliders{display:block}#search-modal .sliders>label{margin-top:25px;display:flex}#search-modal .sliders>label span{font-family:"gothambold",sans-serif;font-size:20px;flex:1 1 150px}#search-modal .maj-button.purple{width:100%;margin-top:25px;height:48px}@media screen and (max-width: 1100px){#search-modal .search-values{flex-direction:column-reverse;gap:0 !important}#search-modal .search-values>fieldset{flex:none !important}}#search-modal .search-bar{width:100%}@media screen and (max-width: 1100px){#search-modal .search-bar .city-search-bar{width:calc(100% - 30px)}#search-modal .search-bar .type-search-bar{width:calc(100% - 50px);padding:0 25px;margin-bottom:15px}}@media screen and (min-width: 1100px){#search-modal .search-bar{white-space:nowrap}#search-modal .search-bar .city-search-bar{width:calc(50% - 30px);border-radius:0 25px 25px 0}#search-modal .search-bar .type-search-bar{width:calc(50% - 25px);float:left;border-right:2px solid #b8b8b8;border-radius:25px 0 0 25px}}@media screen and (max-width: 770px){#search-modal{padding-top:50px}}.color-black{color:#363636}.font-black{color:#363636}.color-grey-dark{color:#878787}.font-grey-dark{color:#878787}.color-grey{color:#b8b8b8}.font-grey{color:#b8b8b8}.color-grey-light{color:#f6f6f6}.font-grey-light{color:#f6f6f6}.color-white{color:#fff}.font-white{color:#fff}.color-yellow{color:#fbad18}.font-yellow{color:#fbad18}.color-yellow-light{color:#ffc567}.font-yellow-light{color:#ffc567}.color-purple{color:#3f1486}.font-purple{color:#3f1486}.color-purple-light{color:#639}.font-purple-light{color:#639}#emprunt-modal{min-height:735px}@media screen and (min-width: 770px){#emprunt-modal .maj-modal-title{display:none}}@media screen and (max-width: 770px){#emprunt-modal #nologo-majordhom{display:none}}#emprunt-modal img{height:100%;display:block;margin:-40px 30px -40px -40px}@media screen and (max-width: 1500px){#emprunt-modal img{display:none !important}}#emprunt-modal .emprunt-container{position:relative}@media screen and (min-width: 770px){#emprunt-modal .emprunt-container{padding:15px 40px}}@media screen and (max-width: 770px){#emprunt-modal .emprunt-container{max-width:1023px;max-height:887px}#emprunt-modal .emprunt-container label{white-space:normal}#emprunt-modal .emprunt-container *:has(.subfield:not(.hidden)){margin-bottom:25px}}@media screen and (min-width: 1500px){#emprunt-modal .emprunt-container{padding:15px 40px 40px 15px}}#emprunt-modal .emprunt-container .stepper{display:none}@media screen and (max-width: 770px){#emprunt-modal .emprunt-container .stepper{display:block;text-align:right;font-size:14px}}#emprunt-modal .emprunt-container h2{color:#363636;margin-bottom:0;font-size:36px;max-width:570px;margin-top:0}#emprunt-modal .emprunt-container h2+p{color:#878787;margin-top:0}@media screen and (max-width: 770px){#emprunt-modal .emprunt-container h2.first-slide{margin-top:-50px}#emprunt-modal .emprunt-container h2:not(.first-slide,#emprunt-end-title){display:none}}#emprunt-modal .emprunt-container fieldset{justify-content:left;align-items:center;flex-wrap:wrap}#emprunt-modal .emprunt-container fieldset h4{flex:0 0 260px;color:#363636;margin:0}@media screen and (max-width: 1100px){#emprunt-modal .emprunt-container fieldset h4{flex:0 0 100%}}@media screen and (max-width: 770px){#emprunt-modal .emprunt-container fieldset h4{margin:0}}#emprunt-modal .emprunt-container fieldset h4+div{flex-wrap:wrap}@media screen and (max-width: 1100px){#emprunt-modal .emprunt-container fieldset h4+div{width:100%}}@media screen and (min-width: 1100px){#emprunt-modal .emprunt-container fieldset h4+div.s-activites{margin-left:-25px}}@media screen and (max-width: 1100px){#emprunt-modal .emprunt-container fieldset h4+div.s-activites{margin-top:-25px}}#emprunt-modal .emprunt-container .subfield{display:flex;flex-wrap:wrap;position:absolute;width:100%;column-gap:15px;justify-items:left;align-items:center;font-size:13px;color:#878787;transition:.5s}@media screen and (max-width: 770px){#emprunt-modal .emprunt-container .subfield#type_bien_subfield{font-size:15px}}@media screen and (max-width: 770px){#emprunt-modal .emprunt-container .subfield{max-width:calc(100% - 80px);margin-bottom:15px;font-size:18px}}#emprunt-modal .emprunt-container .subfield>*{flex:inherit}#emprunt-modal .emprunt-container .subfield.hidden{transform:translateY(-25px);opacity:0;pointer-events:none}#emprunt-modal .emprunt-container #subfield_taux_interet{margin-top:5px;margin-left:25px}#emprunt-modal .emprunt-container #apport_montant_subfield,#emprunt-modal .emprunt-container #send_mail_subfield{padding-left:25px}#emprunt-modal .emprunt-container .emprunt-pictos{padding:10px;margin:0 auto 15px;flex-wrap:nowrap}@media screen and (max-width: 770px){#emprunt-modal .emprunt-container .emprunt-pictos{padding:0;margin:10px 0 0 0 !important}}#emprunt-modal .emprunt-container .emprunt-pictos.first-slide{margin:50px auto 0;padding:0}@media screen and (max-width: 770px){#emprunt-modal .emprunt-container .emprunt-pictos.first-slide{flex-direction:column;align-items:flex-start;row-gap:5px}#emprunt-modal .emprunt-container .emprunt-pictos.first-slide div{flex-direction:row;column-gap:15px}}#emprunt-modal .emprunt-container .emprunt-pictos.first-slide div{padding:0}@media screen and (min-width: 770px){#emprunt-modal .emprunt-container .emprunt-pictos.first-slide div:nth-child(odd) svg{transform:scale(2);padding-bottom:15px}}@media screen and (max-width: 770px){#emprunt-modal .emprunt-container .emprunt-pictos:not(.first-slide){column-gap:10px}#emprunt-modal .emprunt-container .emprunt-pictos:not(.first-slide) div{flex:auto;padding:8px !important;background-color:#b8b8b8}#emprunt-modal .emprunt-container .emprunt-pictos:not(.first-slide) div>*{display:none}}#emprunt-modal .emprunt-container .emprunt-pictos div{border-radius:15px;display:flex;flex-direction:column;justify-content:center;padding:15px;align-items:center;font-family:"gothambold",sans-serif}@media screen and (min-width: 770px){#emprunt-modal .emprunt-container .emprunt-pictos div{text-align:center}}@media screen and (max-width: 770px){#emprunt-modal .emprunt-container .emprunt-pictos div:nth-child(even){display:none}}#emprunt-modal .emprunt-container .emprunt-pictos div svg{margin-bottom:5px}#emprunt-modal .emprunt-container .emprunt-pictos div #financement_svg.active path{fill:#fff}#emprunt-modal .emprunt-container .emprunt-pictos div.active{background:#fbad18;color:#fff}#emprunt-modal .emprunt-container .emprunt-pictos div.active:last-child{background:#fbad18}#emprunt-modal .emprunt-container .emprunt-pictos div.active svg path{fill:#fff;stroke:#fff}#emprunt-modal .emprunt-container .emprunt-pictos div.active svg rect{fill:#fff}#emprunt-modal .emprunt-container .emprunt-pictos div.active svg circle{stroke:#fff}#emprunt-modal .emprunt-container .emprunt-pictos div.active #svg_votre_achat circle:last-child{fill:#fff}#emprunt-modal .emprunt-container p.emprunt-left{max-width:515px;line-height:18px;font-size:16px}#emprunt-modal .emprunt-container .emprunt-bottom{row-gap:0}#emprunt-modal .emprunt-container .emprunt-bottom.maj-flexbox{justify-content:center}@media screen and (max-width: 770px){#emprunt-modal .emprunt-container .emprunt-bottom{margin-top:15px;position:relative}#emprunt-modal .emprunt-container .emprunt-bottom .maj-flexbox{justify-content:center;align-items:center;column-gap:0 !important}#emprunt-modal .emprunt-container .emprunt-bottom.maj-flexbox{justify-content:center;align-items:center;column-gap:0 !important}#emprunt-modal .emprunt-container .emprunt-bottom.maj-flexbox>*{flex:auto}#emprunt-modal .emprunt-container .emprunt-bottom.maj-flexbox.end *{white-space:break-spaces;line-height:20px;padding:13px 40px}}@media screen and (min-width: 770px){#emprunt-modal .emprunt-container .emprunt-bottom{margin:15px;position:fixed !important;bottom:10px !important;right:10px !important;width:calc(100% - 50px) !important;row-gap:15px !important;flex-wrap:nowrap !important;white-space:nowrap !important}}#emprunt-modal .emprunt-container .emprunt-bottom.end{max-height:60px}#emprunt-modal .emprunt-container .emprunt-bottom p{max-width:515px;font-size:16px;line-height:18px;text-align:left;margin-left:auto;white-space:normal}#emprunt-modal .emprunt-container .emprunt-bottom .maj-button-link{color:#363636;margin:15px}#emprunt-modal .emprunt-container .emprunt-bottom .maj-button-link:hover{color:#fbad18}#emprunt-modal .emprunt-container .emprunt-bottom .maj-button-link i.fa{font-size:14px}#emprunt-modal .emprunt-container .emprunt-bottom .maj-button i.fa{font-size:14px}#emprunt-modal .emprunt-end .emprunt-pictos{margin:0 !important}@media screen and (max-width: 770px){#emprunt-modal .emprunt-end .emprunt-pictos{margin-top:-50px !important;margin-bottom:15px !important}}#emprunt-modal .emprunt-end .emprunt-results{max-width:775px;margin:0 auto}#emprunt-modal .emprunt-end .emprunt-results #emprunt-result,#emprunt-modal .emprunt-end .emprunt-results #emprunt-notaire{text-align:center;font-size:30px;font-family:"gothambold",sans-serif;color:orange;margin-bottom:20px}#emprunt-modal .emprunt-end .emprunt-results #emprunt-credit,#emprunt-modal .emprunt-end .emprunt-results #emprunt-assurance,#emprunt-modal .emprunt-end .emprunt-results #emprunt-mensualite{font-family:"gothambold",sans-serif}#emprunt-modal .emprunt-end .emprunt-results .emprunt-valeurs{max-width:400px;margin:0 auto}#emprunt-modal .emprunt-end .emprunt-results .emprunt-valeurs input{border:none;border-bottom:1px solid #878787}#emprunt-modal .emprunt-end .emprunt-results .input-container{position:relative;margin-bottom:10px}@media screen and (max-width: 1500px){#emprunt-modal .emprunt-end .emprunt-results .input-container{width:100%;flex-direction:column}}#emprunt-modal .emprunt-end .emprunt-results .input-container span{position:absolute;pointer-events:none;color:#878787;right:0}@media screen and (max-width: 1500px){#emprunt-modal .emprunt-end .emprunt-results .input-container span{position:relative}}#emprunt-modal .emprunt-end .emprunt-results h4.center{color:#363636;font-family:"gothammedium",sans-serif;max-width:515px;display:block;text-align:center;margin:25px auto 10px;font-size:24px}#emprunt-modal .emprunt-end .emprunt-results #emprunt-result+.maj-flexbox{font-size:15px;justify-content:center;column-gap:10px}#emprunt-modal p.emprunt-left{color:#363636;font-family:"gothambold",sans-serif;margin-top:25px}#emprunt-modal .emprunt-bottom p{max-width:515px;text-align:left;margin-right:auto}.emprunt-loading{display:flex;flex-direction:column;align-items:center;row-gap:25px;font-family:"gothammedium",sans-serif;color:#878787}.emprunt-loading .loader{width:50px;aspect-ratio:1;border-radius:50%;background:radial-gradient(farthest-side, #FBAD18 94%, rgba(0, 0, 0, 0)) top/8px 8px no-repeat,conic-gradient(rgba(0, 0, 0, 0) 30%, #FBAD18);-webkit-mask:radial-gradient(farthest-side, rgba(0, 0, 0, 0) calc(100% - 8px), #000 0);animation:l13 1s infinite linear}@keyframes l13{100%{transform:rotate(1turn)}}@media screen and (max-width: 770px){.subfield input#inde_3ans_subfield{text-align:right;font-size:10px;align-items:flex-start}}@media screen and (max-width: 1500px){.subfield{text-align:right;font-size:10px}}.emprunt-results-top{display:flex;flex-direction:row;text-align:center;justify-content:space-between;column-gap:30px;width:100%}.emprunt-results-top h4.center1{color:#000;font-family:"gothammedium",sans-serif;max-width:515px;display:flex;flex-direction:column;text-align:center;margin:25px auto 10px;white-space:nowrap;overflow:visible;font-size:24px}.emprunt-results-top #emprunt-result1,.emprunt-results-top #emprunt-result2,.emprunt-results-top #emprunt-result3{text-align:center;font-size:30px;font-family:"gothambold",sans-serif;color:orange;margin-bottom:20px}.emprunt-results-top #emprunt-item{display:flex;flex-direction:column;align-items:center;flex:1}.color-black{color:#363636}.font-black{color:#363636}.color-grey-dark{color:#878787}.font-grey-dark{color:#878787}.color-grey{color:#b8b8b8}.font-grey{color:#b8b8b8}.color-grey-light{color:#f6f6f6}.font-grey-light{color:#f6f6f6}.color-white{color:#fff}.font-white{color:#fff}.color-yellow{color:#fbad18}.font-yellow{color:#fbad18}.color-yellow-light{color:#ffc567}.font-yellow-light{color:#ffc567}.color-purple{color:#3f1486}.font-purple{color:#3f1486}.color-purple-light{color:#639}.font-purple-light{color:#639}.search-bar{display:block}.search-bar>*{height:40px;background:#fff;border-radius:25px}.search-bar .type-search-bar{height:50px;display:inline-block;padding-left:25px}.search-bar .city-search-bar{height:50px;display:inline-flex;align-items:center;position:relative;padding:0 15px;column-gap:10px}.search-bar .city-search-bar img{height:25px;width:25px;min-width:25px}.search-bar .city-search-bar .select-multiple-container{width:calc(100% - 50px - 30px)}.color-black{color:#363636}.font-black{color:#363636}.color-grey-dark{color:#878787}.font-grey-dark{color:#878787}.color-grey{color:#b8b8b8}.font-grey{color:#b8b8b8}.color-grey-light{color:#f6f6f6}.font-grey-light{color:#f6f6f6}.color-white{color:#fff}.font-white{color:#fff}.color-yellow{color:#fbad18}.font-yellow{color:#fbad18}.color-yellow-light{color:#ffc567}.font-yellow-light{color:#ffc567}.color-purple{color:#3f1486}.font-purple{color:#3f1486}.color-purple-light{color:#639}.font-purple-light{color:#639}.container-article-immo{display:inline-block;width:100%}.container-article-immo .grid-article-immo{display:grid}@media screen and (min-width: 1500px){.container-article-immo .grid-article-immo{grid-template-columns:repeat(auto-fit, minmax(350px, 1fr));grid-gap:50px}}@media screen and (max-width: 1500px){.container-article-immo .grid-article-immo{grid-template-columns:repeat(auto-fit, minmax(290px, 1fr));grid-gap:25px}}@media screen and (max-width: 770px){.container-article-immo .grid-article-immo{grid-template-columns:repeat(auto-fit, 1fr)}}.article-immo{overflow:hidden;display:block;width:100%;border-radius:15px;padding:0;height:340px;background-color:#fff;border-bottom:#3f1486 solid 5px;box-shadow:rgba(50,50,93,.25) 0 6px 12px -2px,rgba(0,0,0,.3) 0px 3px 7px -3px;max-width:540px;position:relative}.article-immo .not-available{position:absolute;top:0;left:0;margin:15px;border-radius:25px;padding:0 15px;line-height:30px;height:28px;font-size:15px;color:#fff;background-color:#3f1486;font-family:"gothambold",sans-serif;z-index:1;pointer-events:none}.article-immo .carousel{height:250px}.article-immo .flex-article-immo{padding:25px 20px;color:rgba(0,0,0,.65) !important;display:flex;justify-content:space-between;flex-wrap:nowrap}.article-immo .flex-article-immo .left-article-immo{min-width:20px;white-space:nowrap}@media screen and (max-width: 1500px){.article-immo .flex-article-immo .left-article-immo *{font-size:16px !important}}.article-immo .flex-article-immo .left-article-immo .titleHouse{text-overflow:ellipsis;overflow:hidden;margin:0 5px 0 0;color:#000;font-size:18px}.article-immo .flex-article-immo .right-article-immo{min-width:110px}.article-immo .flex-article-immo .right-article-immo .price{color:#3f1486;font-family:"gothambold",sans-serif;font-size:20px;text-align:right;white-space:nowrap}@media screen and (max-width: 1500px){.article-immo{height:260px}.article-immo .carousel{height:180px}}.color-black{color:#363636}.font-black{color:#363636}.color-grey-dark{color:#878787}.font-grey-dark{color:#878787}.color-grey{color:#b8b8b8}.font-grey{color:#b8b8b8}.color-grey-light{color:#f6f6f6}.font-grey-light{color:#f6f6f6}.color-white{color:#fff}.font-white{color:#fff}.color-yellow{color:#fbad18}.font-yellow{color:#fbad18}.color-yellow-light{color:#ffc567}.font-yellow-light{color:#ffc567}.color-purple{color:#3f1486}.font-purple{color:#3f1486}.color-purple-light{color:#639}.font-purple-light{color:#639}p.les-outils{max-width:1080px;font-size:20px;font-family:"gothambook",sans-serif}.les-outils-grid{display:flex;flex-wrap:wrap;gap:25px;justify-content:end}.les-outils-grid *{color:#fff}.les-outils-grid .maj-button{font-size:18px;display:inline-block}.les-outils-grid>*{position:relative;padding:25px;display:flex;flex-wrap:wrap;justify-content:end;flex-direction:column}.les-outils-grid>* p{line-height:20px;margin:0 0 15px 0}.les-outils-grid>* h3{margin:0}.les-outils-grid>*::before{z-index:-1;content:"";position:absolute;top:0;left:0;width:100%;height:100%;border-radius:25px;background-size:cover;filter:brightness(0.7)}.les-outils-grid>*.estimation{min-height:300px;max-width:calc(100% - 50px);flex:1 1 100%}.les-outils-grid>*.estimation h3{font-size:49px;max-width:765px;font-family:"gothambold",sans-serif}@media screen and (max-width: 770px){.les-outils-grid>*.estimation h3{font-size:31px}}.les-outils-grid>*.estimation .maj-button{margin-right:auto}@media screen and (max-width: 1500px){.les-outils-grid>*.estimation .maj-button{margin-left:0;margin-right:auto}}.les-outils-grid>*.estimation p{max-width:765px}.les-outils-grid>*.estimation::before{background-image:url("/assets/img/estimation/estimation.png")}.les-outils-grid>*.second-line{min-height:250px}.les-outils-grid>*.second-line h3{font-size:31px;max-width:640px;font-family:"gothambold",sans-serif}.les-outils-grid>*.second-line.financement{flex:1 1 850px}.les-outils-grid>*.second-line.financement p{max-width:640px}.les-outils-grid>*.second-line.financement:before{background-image:url("/assets/img/simulate/couple-et-banquier.jpeg");background-position:center;background-size:cover}.les-outils-grid>*.second-line.financement button{margin-right:auto}.les-outils-grid>*.second-line.documents{flex:1 1 450px}.les-outils-grid>*.second-line.documents p{max-width:640px}.les-outils-grid>*.second-line.documents:before{background-image:url("/assets/img/documents/papier-stylo.jpeg");background-position:center;background-size:cover}.les-outils-grid>*.second-line.documents a{margin-right:auto}.color-black{color:#363636}.font-black{color:#363636}.color-grey-dark{color:#878787}.font-grey-dark{color:#878787}.color-grey{color:#b8b8b8}.font-grey{color:#b8b8b8}.color-grey-light{color:#f6f6f6}.font-grey-light{color:#f6f6f6}.color-white{color:#fff}.font-white{color:#fff}.color-yellow{color:#fbad18}.font-yellow{color:#fbad18}.color-yellow-light{color:#ffc567}.font-yellow-light{color:#ffc567}.color-purple{color:#3f1486}.font-purple{color:#3f1486}.color-purple-light{color:#639}.font-purple-light{color:#639}.contact-form{position:relative;padding-bottom:60px}.contact-form h3,.contact-form h4{color:#fff}.contact-form .maj-button[type=submit]{position:absolute;bottom:0;right:0}.contact-form .maj-button.purple{font-size:14px;line-height:14px;height:40px;background-color:#3f1486}.contact-form .maj-button.purple:hover{color:#3f1486;background-color:#fff}.contact-form .dispo-box button{background-color:#f6f6f6;font-family:"gothambold",sans-serif;color:#878787;padding:5px 10px;border-radius:25px;border:none;margin:10px 10px 0 0;display:inline-block}.contact-form input[type=date]::-webkit-calendar-picker-indicator{text-align:center;background:rgba(0,0,0,0);bottom:0;color:rgba(0,0,0,0);cursor:pointer;height:auto;left:0;position:absolute;right:0;top:0;width:auto}.color-black{color:#363636}.font-black{color:#363636}.color-grey-dark{color:#878787}.font-grey-dark{color:#878787}.color-grey{color:#b8b8b8}.font-grey{color:#b8b8b8}.color-grey-light{color:#f6f6f6}.font-grey-light{color:#f6f6f6}.color-white{color:#fff}.font-white{color:#fff}.color-yellow{color:#fbad18}.font-yellow{color:#fbad18}.color-yellow-light{color:#ffc567}.font-yellow-light{color:#ffc567}.color-purple{color:#3f1486}.font-purple{color:#3f1486}.color-purple-light{color:#639}.font-purple-light{color:#639}.city-grid .maj-img-card{min-height:100px;margin:0;color:#fff;font-size:25px;font-family:"gothambold",sans-serif;padding-bottom:10px;position:relative}.city-grid .maj-img-card img{transition:.3s}.city-grid .maj-img-card:hover:after{background:linear-gradient(0deg, rgba(251, 173, 24, 0.2) 0%, rgba(251, 173, 24, 0) 100%)}.city-grid .maj-img-card:hover img{transform:scale(1.3)}.city-grid .maj-img-card:after{content:" ";display:block;position:absolute;width:100%;height:100%;background:linear-gradient(0deg, rgba(63, 20, 134, 0.2) 0%, rgba(63, 20, 134, 0) 100%);top:0;left:0;z-index:-1}.grecaptcha-badge{visibility:hidden}
