@font-face {
	  font-family: 'RedHatDisplay';
	  font-weight: 300;
	  font-display: swap;
	  src: url('/fonts/RedHatDisplay-Light.ttf') format('truetype');
	}
	@font-face {
	  font-family: 'RedHatDisplay';
	  font-weight: 400;
	  font-display: swap;
	  src: url('/fonts/RedHatDisplay-Regular.ttf') format('truetype');
	}
	@font-face {
	  font-family: 'RedHatDisplay';
	  font-weight: 500;
	  font-display: swap;
	  src: url('/fonts/RedHatDisplay-Medium.ttf') format('truetype');
	}
	@font-face {
	  font-family: 'RedHatDisplay';
	  font-weight: 600;
	  font-display: swap;
	  src: url('/fonts/RedHatDisplay-SemiBold.ttf') format('truetype');
	}
	@font-face {
	  font-family: 'RedHatDisplay';
	  font-weight: 700;
	  font-display: swap;
	  src: url('/fonts/RedHatDisplay-Bold.ttf') format('truetype');
	}
	@font-face {
	  font-family: 'RedHatDisplay';
	  font-weight: 800;
	  font-display: swap;
	  src: url('/fonts/RedHatDisplay-ExtraBold.ttf') format('truetype');
	}
	@font-face {
	  font-family: 'Roboto';
	  font-weight: 400;
	  font-display: swap;
	  src: url('/fonts/Roboto-Regular.ttf') format('truetype');
	}
	
	html {
		font-size: 16px;
	}
	@media (min-width: 541px) {
		html {
			font-size: 18px;
		}
	}
	@media (min-width: 981px) {
		html {
			font-size: 20px;
		}
	}
	body {
		color: #000;
		font-size: 1rem;
		font-weight: 400;
		font-family: 'RedHatDisplay', Arial, Helvetica, Myriad Pro, sans-serif;
		margin: 0;
	}
	* {
		box-sizing: border-box;
	}
	a {
		color: #000;
		text-decoration: none;
	}
	a:hover {
		color: #000;
		text-decoration: underline;
	}
	p {
		margin: 0 0 1.2rem 0;
	}
	p:last-child {
		margin: 0;
	}
	p.big {
		font-size: 1.2rem;
	}
	p.extrabig {
		font-size: 1.6rem;
	}
	p a {
		text-decoration: underline;
	}
	p a:hover {
		text-decoration: none;
	}
	h1, .h1 {
		font-size: 1.8rem;
		margin: 0 0 1.5rem 0;
		font-weight: 400;
	}
	h2, .h2 {
		font-size: 1.4rem;
		margin: 0 0 1rem 0;
		font-weight: 400;
	}
	h3, .h3 {
		font-size: 1.2rem;
		color: #51788E;
		margin: 0 0 1rem 0;
		font-weight: 400;
	}
	@media (min-width: 380px) {
		h1, .h1 {
			font-size: 2.25rem;
		}
		h2, .h2 {
			font-size: 1.5rem;
		}
		h3, .h3 {
			font-size: 1.2rem;
		}
	}
	@media (min-width: 981px) {
		h1, .h1 {
			font-size: 3.2rem;
			margin: 0 0 1.5rem 0;
		}
		h2, .h2 {
			font-size: 2.4rem;
			margin: 0 0 1rem 0;
		}
		h3, .h3 {
			font-size: 1.2rem;
			color: #51788E;
			margin: 0 0 1rem 0;
		}
	}
	h1 strong, .h1.strong, h2 strong, .h2.strong, h3 strong, .h3.strong {
		font-weight: 800;
	}
	img {
		max-width: 100%;
	}
	.border-30 {
		border-radius: 1.5rem;
	}
	@media (min-width: 541px) {
		.color-2 {
			background-color: #DBEDF7;
		}
	}
	.flex {
		display: flex;
	}
	.flex-between {
		justify-content: space-between;
	}
	.space-1 {
		width: 100%;
		height: 1rem;
	}
	.space-2 {
		width: 100%;
		height: 2rem;
	}
	@media (max-width: 980px) {
		.mobile {
			display: block !important;
		}
		.desktop {
			display: none !important;
		}
	}
	@media (min-width: 981px) {
		.mobile {
			display: none !important;
		}
		.desktop {
			display: block !important;
		}
	}
	header {
		background-color: #fff;
		position: fixed;
		left: 0;
		top: 0;
		width: 100%;
		padding: 15px 1rem 13px 1rem;
		box-shadow: 0 0 20px rgba(0,0,0,0.1);
		height: 62px;
		z-index: 8;
	}
	@media (min-width: 981px) {
		header {
			height: 110px;
			padding: 20px 1rem;
		}
	}
	header + * {
		margin-top: 62px;
	}
	@media (min-width: 981px) {
		header + * {
			margin-top: 110px;
		}
	}
	.logo {
		margin: 0;
		display: block;
		width: 194px;
	}
	@media (min-width: 981px) {
		.logo {
			margin: 0 auto;
			display: block;
			width: 374px;
		}
	}
	section {
		padding: 2rem 0 0 0;
		position: relative;
		overflow: hidden;
		z-index: 2;
	}
	section:last-of-type {
		padding: 2rem 0 2rem 0;
	}
	section.section_search {
		padding: 2rem 0 2rem 0;
	}
	@media (min-width: 541px) {
		section, section:last-of-type {
			padding: 4.5rem 0;
		}
		section.section_search {
			padding: 4.5rem 0;
		}
	}
	.inner {
		width: 1354px;
		max-width: calc(100% - 2rem);
		padding: 0 1rem;
		margin: 0 auto;
		box-sizing: content-box;
		position: relative;
		z-index: 3;
	}
	.footer-flex-1 {
		display: flex;
		align-items: baseline;
	}
	@media (max-width: 980px) {
		.footer-flex-1 {
			display: flex;
			flex-wrap: wrap;
			align-items: baseline;
		}
		.footer-flex-1 > div {
			width: 100%;
		}
		.footer-flex-1 > div:nth-child(1){
			order: 3;
		}
		.footer-flex-1 > div:nth-child(2){
			order: 1;
			margin: 0 0 2rem 0;
		}
		.footer-flex-1 > div:nth-child(3){
			order: 2;
			margin: 0 0 2rem 0;
		}
	}
	footer {
		background-color: #51788E;
		padding: 2rem 0;
		color: #fff;
		font-size: 1.1rem;
	}
	@media (min-width: 981px) {
		footer {
			padding: 0.7rem 0 1.7rem 0;
		}
	}
	
	@media (min-width: 981px) {
		footer img.flogo {
			margin: 0;
		}
	}
	footer p {
		display: inline-block;
	}
	footer p span {
		display: block;
	}
	@media (min-width: 541px) {
		footer p span {
			display: inline-block;
		}
		footer p span:after {
			content: ' -';
		}
	}
	footer p a {
		color: #fff;
		margin: 0 2rem 0 0;
	}
	footer p a:hover {
		color: #fff;
	}
	footer p a.underline {
		text-decoration: underline;
	}
	footer p a.underline:hover {
		text-decoration: none;
	}
	
	footer p a.flink {
		display: block;
		text-decoration: none;
	}
	footer p a.flink:hover {
		text-decoration: underline;
	}
	@media (min-width: 541px) {
		footer p a.flink {
			display: inline-block;
		}
	}
	footer .socials {
		min-width: 100px;
	}
	footer .social {
		
	}
	footer .socials a {
		display: inline-block;
		margin: 0.25rem 1rem 0 0;
	}
	footer .socials a img {
		display: block;
	}
	footer .socials a:last-child {
		margin: 0.25rem 0 0 0 !important;
	}
	
	@media (min-width: 769px) {
		footer .social {
			display: flex;
		}
		footer .social a + a {
			margin: 0 0 0 1rem;
		}
	}
	
	.button {
		background-color: #fff;
		border: 2px solid #51788E;
		border-radius: 1.25rem;
		line-height: 1.5rem;
		padding: calc(0.5rem - 2px) 1.5rem;
		text-decoration: none !important;
		font-weight: bold;
		color: #51788E !important;
		display: inline-block;
	}
	.button:hover {
		background-color: #f4f4f4;
	}
	.button-phone {
		background-color: #fff;
		border: 2px solid #51788E;
		border-radius: 1.25rem;
		line-height: 1.5rem;
		padding: calc(0.5rem - 2px) 1.3rem calc(0.5rem - 2px) 2.3rem;
		text-decoration: none !important;
		font-weight: bold;
		font-size: 0.8rem;
		color: #51788E !important;
		display: inline-block;
		background-image: url('/img/icon_phone_b.svg');
		background-repeat: no-repeat;
		background-position: 0.8rem center;
		margin: 0 0.6rem 0.3rem 0;
	}
	.button-phone:hover {
		background-color: #f4f4f4;
	}
	@media (max-width: 540px) {
		.button-phone {
			background-size: 16px;
			padding: calc(0.5rem - 2px) 0.8rem calc(0.5rem - 2px) 2rem;
			background-position: 0.6rem center;
		}
	}
	.button-more {
		background-color: #51788E;
		border: 2px solid #51788E;
		border-radius: 1.25rem;
		line-height: 1.5rem;
		padding: calc(0.5rem - 2px) 2.3rem calc(0.5rem - 2px) 1.3rem;
		text-decoration: none !important;
		font-weight: bold;
		font-size: 0.8rem;
		color: #fff !important;
		display: inline-block;
		background-image: url('/img/more.svg');
		background-repeat: no-repeat;
		background-position: calc(100% - 1rem) center;
		margin: 0 0.6rem 0.3rem 0;
	}
	.button-more:hover {
		background-color: #40687e;
		border-color: #40687e;
	}
	@media (max-width: 540px) {
		.button-more {
			background-size: 14px;
			padding: calc(0.5rem - 2px) 1.8rem calc(0.5rem - 2px) 0.8rem;
			background-position: calc(100% - 0.6rem) center;
		}
	}
	.button-phone:last-child, .button-more:last-child {
		margin-right: 0;
	}
	.button-white {
		background-color: #fff;
		border: 2px solid #fff;
		border-radius: 1.25rem;
		line-height: 1.5rem;
		padding: calc(0.5rem - 2px) 2rem;
		text-decoration: none !important;
		font-weight: bold;
		color: #51788E !important;
		display: inline-block;
	}
	.button-white:hover {
		background-color: #f4f4f4;
	}
	.button-red {
		background-color: #fff;
		border: 2px solid #E32F2F;
		border-radius: 50%;
		line-height: 1.5rem;
		padding: 0;
		background-image: url('/img/icon_phone_plus.svg');
		background-repeat: no-repeat;
		background-position: center;
		background-size: 18px;
		text-decoration: none !important;
		font-weight: bold;
		color: #E32F2F !important;
		display: inline-block;
		position: absolute;
		right: 1rem;
		top: 50%;
		transform: translate(0,-50%);
		text-indent: -9999px;
		height: 38px;
		width: 38px;
	}
	.button-red:hover {
		background-color: #f4f4f4;
	}
	@media (min-width: 981px) {
		.button-red {
			right: 4rem;
			text-indent: 0;
			padding: calc(0.5rem - 2px) 1.5rem calc(0.5rem - 2px) 2.5rem;
			background-position: 1rem center;
			background-size: auto;
			height: auto;
			width: auto;
			border-radius: 1.25rem;
		}
	}
	.button-search {
		background-color: #fff;
		border: 2px solid #51788E;
		border-radius: 1.5rem;
		line-height: 2rem;
		padding: calc(0.5rem - 2px) 4rem calc(0.5rem - 2px) 2rem;
		color: #51788E;
		font-size: 0.8rem;
		font-weight: 800;
		text-decoration: none !important;
		display: inline-block;
		margin: 0 0 0 auto;
		position: relative;
	}
	.button-search:hover {
		background-color: #f4f4f4;
		color: #51788E;
	}
	.button-search span {
		height: 3rem;
		width: 3rem;
		display: inline-block;
		border-radius: 50%;
		background-color: #51788E;
		background-image: url('/img/person_search.svg');
		background-repeat: no-repeat;
		background-position: center;
		vertical-align: middle;
		/*margin: -0.5rem -2px -0.5rem 1.5rem;*/
		position: absolute;
		top: -2px;
		right: -2px;
	}
	.button-search em {
		font-style: normal;
		margin: 0 5px 0 0;
	}
	.box-search-before {
		text-align: center;
		color: #51788E;
		margin: 0 0 2rem 0;
	}
	.box-search-before a {
		color: #fff;
	}
	.box-search {

	}
	@media (min-width: 541px) {
		.box-search {
			background-color: rgba(255,255,255,0.8);
			border: 1px solid #000;
			border-radius: 20px;
			padding: 2.5rem;
		}
	}
	.box-search input {
		border: 2px solid #51788E;
		height: 3.5rem;
		border-radius: 1.75rem;
		font-size: 1rem;
		padding: 0 1.5rem;
		display: inline-block;
	}
	.box-search input.search-text {
		width: 100%; /* calc(100% - 100px - 1rem); */
		margin: 0 0 1.2rem 0; /*0 1rem 1.2rem 0; */
		
	}
	/*@media (min-width: 541px) {
		.box-search input.search-text {
			width: calc(100% - 150px - 1.5rem);
			margin: 0 1.5rem 1.2rem 0;
		}
	}
	@media (min-width: 981px) {
		.box-search input.search-text {
			width: calc(100% - 336px - 1.5rem);
		}
	}*/
	.box-search input.search-zip {
		width: 100px;
		margin: 0 0 1.2rem 0;
	}
	@media (min-width: 541px) {
		.box-search input.search-zip {
			width: 150px;
		}
	}
	@media (min-width: 981px) {
		.box-search input.search-zip {
			width: 335px;
		}
	}
	.toggle-category-list {
		text-align: right;
		margin: 0 0 25px 0;
	}
	.toggle-category-list a {
		color: #51788E;
		font-size: 0.9rem;
		position: relative;
		padding: 0 0 0 20px;
	}
	.toggle-category-list a:before {
		content: '';
		width: 10px;
		height: 2px;
		background-color: #51788E;
		display: block;
		top: 50%;
		left: 0;
		position: absolute;
		transform: rotate(45deg);
	}
	.toggle-category-list a:after {
		content: '';
		width: 10px;
		height: 2px;
		background-color: #51788E;
		display: block;
		top: 50%;
		left: 6px;
		position: absolute;
		transform: rotate(-45deg);
	}
	.toggle-category-list a.active:before {
		transform: rotate(-45deg);
	}
	.toggle-category-list a.active:after {
		transform: rotate(45deg);
	}
	.list-category {
		margin: -5px -5px 0.5rem -5px;
		width: calc(100% + 10px);
		max-height: 100px;
		overflow: hidden;
		transition: max-height 1s;
	}
	@media (min-width: 981px) {
		.list-category {
			max-height: 110px;
		}
	}
	.list-category.active {
		max-height: 1000px;
	}
	.list-category label {
		display: inline-block;
		margin: 5px;
		cursor: pointer;
	}
	.list-category label input {
		position: fixed;
		top: -99999px;
	}
	.list-category label span {
		background-color: #DCE4E8;
		border-radius: 1.25rem;
		line-height: 1.2rem;
		padding: 0.5rem 1.2rem;
		text-decoration: none !important;
		font-weight: bold;
		font-size: 0.8rem;
		color: #51788E;
		display: inline-block;
	}
	.list-category label input:checked + span {
		background-color: #51788E;
		color: #DCE4E8;
	}
	
	.list-category-2 {
		margin: -5px -5px 0.5rem -5px;
		width: calc(100% + 10px);
		overflow: hidden;
	}
	.list-category-2.active {
		max-height: 1000px;
	}
	.list-category-2 label {
		display: inline-block;
		margin: 5px;
		cursor: pointer;
	}
	.list-category-2 label input {
		position: fixed;
		top: -99999px;
	}
	.list-category-2 label span {
		background-color: #DCE4E8;
		border-radius: 1.25rem;
		line-height: 1.2rem;
		padding: 0.5rem 1.2rem;
		text-decoration: none !important;
		font-weight: bold;
		font-size: 0.8rem;
		color: #51788E;
		display: inline-block;
	}
	.list-category-2 label input:checked + span {
		background-color: #51788E;
		color: #DCE4E8;
	}
	
	#myVideo {
	  position: absolute;
	  top: 50%;
	  left: 0;
	  right: 0;
	  width: 100%;
      height: 100%;
	  min-width: 100%; 
	  min-height: 100%;
	  object-fit: cover;
	  transform: translate(0,-50%);
	  z-index: -1;
	}
	.layer {
		top: 0;
		right: 0;
		bottom: 0;
		left: 0;
		position: absolute;
		/*background: linear-gradient(0deg,rgba(0, 0, 0, 0.1) 0%,  rgba(0, 0, 0, 0.4) 100%);*/
		z-index: 2;
	}
	.cols {
		margin: 0 -2rem;
	}
	@media (min-width: 981px) {
		.cols {
			display: flex;
		}
	}
	.cols > div {
		padding: 0 2rem;
		margin: 0;
	}
	.cols > div + div {
		margin: 2rem 0 0 0;
	}
	
	@media (min-width: 981px) {
		.cols > div {
			margin: 0 !important;
		}
		.cols-48-52 > div:nth-child(1) {
			width: 48%;
		}
		.cols-48-52 > div:nth-child(2) {
			width: 52%;
		}
		
		.cols-67-33 > div:nth-child(1) {
			width: 67%;
		}
		.cols-67-33 > div:nth-child(2) {
			width: 33%;
		}
	}
	
	.blue-icon-text {
		background-color: #51788E;
		padding: 1.5rem;
		border-radius: 1.5rem;
		color: #fff;
		font-size: 1.1rem;
		font-family: 'Roboto';
		justify-content: center;
		margin: 0 0 1.6rem 0;
	}
	.blue-icon-text a {
		color: #fff;
	}
	.blue-icon-text:last-child {
		margin: 0;
	}
	@media (min-width: 541px) {
		.blue-icon-text {
			display: flex;
			padding: 0.8rem;
		}
	}
	.blue-icon-text > .icon {
		min-height: 100px !important;
		display: flex;
		height: 100%;
	}
	@media (min-width: 541px) {
		.blue-icon-text > .icon {
			width: 100px;
		}
	}
	.blue-icon-text > .icon img {
		margin: auto;
	}
	.blue-icon-text > .text {
		
		text-align: center;
		display: flex;
		min-height: 100px !important;
	}
	@media (min-width: 541px) {
		.blue-icon-text > .text {
			width: calc(100% - 100px);
			text-align: left;
			padding: 0 0 0 1rem;
			border-left: 1px solid #fff;
		}
	}
	.blue-icon-text > .text > *:first-child {
		margin-top: auto;
	}
	.blue-icon-text > .text > *:last-child {
		margin-bottom: auto;
	}
	.box-bgr-1 {
		border-radius: 1.5rem;
		background-image: url('/img/287274946.jpg');
		background-size: cover;
		background-position: center;
		position: relative;
		overflow: hidden;
		color: #fff;
		padding: 2.8rem;
		text-align: center;
	}
	.box-bgr-1:before {
		content: '';
		position: absolute;
		top: 0;
		left: 0;
		right: 0;
		bottom: 0;
		background-color: rgba(0,0,0,0.25);
		z-index: 1;
	}
	.box-bgr-1 > div {
		z-index: 2;
		position: relative;
		max-width: 100%;
		width: 1096px;
		margin: 0 auto;
	}
	.box-bgr-1 a.button-white {
		margin: 0.25rem;
	}
	
	.section_filter {
		background-color: #51788E;
		padding: 2rem 1.5rem;
		color: #fff;
		z-index:5;
		overflow:visible;
	}
	.section_filter a {
		color: #fff;
		text-decoration: underline;
		font-size: 0.7rem;
		font-weight: bold;
		line-height: 2rem;
	}
	.filter-box {
		display: flex;
		max-width: calc(100% + 0.6rem);
		margin-left: -0.3rem;
		margin-right: -0.3rem;
		position: relative;
	}
	.filter-box > div {
		padding: 0 0.3rem;
		width: 100%;
	}
	@media (min-width: 1500px) {
		.filter-box > div {
			padding: 0 1rem;
		}
	}
	.filter-box > div:first-child,
	.filter-box > div:last-child	{
		width: auto;
	}
	
	@media (min-width: 981px) and (max-width: 1200px) {
		.filter-box {
			flex-wrap: wrap;
		}
		.filter-box > div {
			order: 3;
			margin: 0 0 0.3rem 0;
			width: 20%;
		}
		.filter-box > div:first-child {
			order: 1;
			width: 50%;
		}
		.filter-box > div:last-child {
			order: 2;
			width: 50%;
			text-align: right;
		}
	}
	
	@media (max-width: 980px) {
		.filter-box {
			flex-wrap: wrap;
		}
		.filter-box > div {
			order: 3;
			margin: 0 0 0.3rem 0;
		}
		.filter-box > div:first-child {
			order: 1;
			width: 50%;
		}
		.filter-box > div:last-child {
			order: 2;
			width: 50%;
			text-align: right;
		}
	}
	
	.type-select {
		border-radius: 3px;
		border: none;
		background-color: #fff;
		padding: 0 0 0 1rem;
		height: 2rem;
		width: 100%;
		max-width: 100%;
		font-size: 0.8rem;
	}
	@media (max-width: 1300px) {
		.type-select {
			padding: 0 0 0 0.5rem;
		}
	}
	.type-input {
		border-radius: 3px;
		border: none;
		background-color: #fff;
		padding: 0 0.5rem 0 1rem;
		height: 2rem;
		width: 100%;
		max-width: 100%;
		font-size: 0.8rem;
	}
	@media (max-width: 1300px) {
		.type-input {
			padding: 0 0.5rem;
		}
	}
	.type-input.place {
		padding: 0 2rem 0 1rem;
		background-image: url('/img/place.svg');
		background-position: calc(100% - 0.5rem) center;
		background-repeat: no-repeat;
	}
	@media (max-width: 1300px) {
		.type-input.place {
			padding: 0 2rem 0 0.5rem;
		}
	}
	
	.icon-filter {
		background-image: url('/img/filter.svg');
		background-repeat: no-repeat;
		background-position: left center;
		background-size: auto 1.2rem;
		padding: 0 0 0 36px;
		line-height: 2rem;
		font-size: 1.1rem;
		font-weight: 800;
	}
	
	.section_map {
		width: 100%;
		/*height: calc(100vh - 7.4rem - 165px);*/
		height: calc(100vh - 6rem - 110px);
		padding: 0 !important;
	}
	.section_map .slide-info {
		position: absolute;
		top: 0;
		left: 0;
		bottom: 0;
		width: 490px;
		max-width: 100%;
		background-color: #fff;
		box-shadow: 0 5px 5px rgba(0,0,0,0.2);
		z-index: 9999;
		transform: translate(-100%,0);
		transition: transform 0.5s;
	}
	.section_map .slide-info.active {
		transform: translate(0,0);
	}
	.section_map .slide-info .inn {
		overflow-y: auto;
		height: 100%;
	}
	.section_map .slide-info .toggle {
		position: absolute;
		top: 50%;
		right: -40px;
		width: 54px;
		height: 70px;
		box-shadow: 0 0 5px rgba(0,0,0,0.2);
		background-color: #fff;
		border-radius: 10px;
		display: block;
		z-index: 9;
		background-image: url('/img/caret-toggle.svg');
		background-position: calc(100% - 10px) center;
		background-repeat: no-repeat;
	}
	.section_map .slide-info.active .toggle {
		background-image: url('/img/caret-toggle-active.svg');
	}
	.section_map .slide-info .toggle:hover {
		background-color: #f4f4f4;
	}
	.section_map .slide-info .listing .title {
		font-sizE: 1.1rem;
		font-weight: 800;
		color: #51788E;
		padding: 1rem 1.5rem 0.4rem 1.5rem;
	}
	@media (max-width: 540px) {
		.section_map .slide-info .listing .title {
			padding: 1rem 1rem 0.4rem 1rem;
		}
	}
	.section_map .slide-info .listing .title span {
		font-size: 0.8rem;
		font-weight: 400;
	}
	.section_map .slide-info .listing .item {
		padding: 1.3rem 1.5rem 1.1rem 1.5rem;
		border-bottom: 1px solid #51788E;
		color: #51788E;
		font-size: 0.9rem;
	}
	@media (max-width: 540px) {
		.section_map .slide-info .listing .item {
			padding: 1.5rem 1rem 1.1rem 1rem;
		}
	}
	.section_map .slide-info .listing .item p {
		line-height: 150%;
	}
	.section_map .slide-info .listing .item p.name {
		margin: 0;
		font-weight: 800;
	}
	.section_map .slide-info .listing .item p.subtitle {
		margin: 0;
		font-weight: 600;
	}
	.section_map .slide-info .listing .item > div:nth-child(2) {
		margin: 0 0 1rem 0;
	}
	.section_map .slide-info .listing .item .lang {
		background-image: url('/img/globe.svg');
		background-position: 0 center;
		background-repeat: no-repeat;
		padding: 0 0 0 36px;
		margin: 5px 0 1rem 0;
		line-height: 24px
	}
	
	
	.section_map .slide-info .details {
		padding: 1.5rem 1.5rem 1.1rem 1.5rem;
		color: #51788E;
		font-size: 0.9rem;
		
		  position: absolute;
		  top: 0;
		  left: 0;
		  right: 0;
		  bottom: 0;
		  background: #fff;
		  overflow-y: auto;
	}
	@media (max-width: 980px) {
		.section_map .slide-info .details {
			position: fixed;
			top: 62px;
			left: 0;
			right: 0;
			bottom: 0;
			background: #fff;
			overflow-y: auto;
		}
	}
	.section_map .slide-info .details p {
		line-height: 150%;
	}
	.section_map .slide-info .details p.name {
		font-weight: 800;
		font-size: 1.1rem;
		padding-right: 20px;
		margin: 0 0 0.5rem 0;
	}
	.section_map .slide-info .details p.subname {
		font-weight: 800;
		font-size: 1rem;
		padding-right: 20px;
		margin: 0 0 0.5rem 0;
	}
	.section_map .slide-info .details p.name:empty,
	.section_map .slide-info .details p.subname:empty	{
		margin: 0;
	}
	.section_map .slide-info .details a {
		color: #51788E;
	}
	.section_map .slide-info .details .lang {
		background-image: url('/img/globe.svg');
		background-position: 1.5rem 0.5rem;
		background-repeat: no-repeat;
		padding: 0.5rem 10px 0.5rem calc(1.5rem + 36px);
		margin: 0 -1.5rem 0 -1.5rem;
		border-top: 1px solid #51788E;
	}
	.section_map .slide-info .details .web {
		background-image: url('/img/link.svg');
		background-position: 1.5rem 0.5rem;
		background-repeat: no-repeat;
		padding: 0.5rem 10px 0.5rem calc(1.5rem + 36px);
		margin: 0 -1.5rem 0 -1.5rem;
		border-top: 1px solid #51788E;
	}
	.section_map .slide-info .details .address {
		background-image: url('/img/place.svg');
		background-position: 1.5rem 0.5rem;
		background-repeat: no-repeat;
		padding: 0.5rem 10px 0.5rem calc(1.5rem + 36px);
		margin: 0 -1.5rem 0 -1.5rem;
		border-top: 1px solid #51788E;
	}
	.section_map .slide-info .details .phone {
		background-image: url('/img/icon_phone_b.svg');
		background-position: 1.5rem 0.5rem;
		background-repeat: no-repeat;
		padding: 0.5rem 10px 0.5rem calc(1.5rem + 36px);
		margin: 0 -1.5rem 0 -1.5rem;
		border-top: 1px solid #51788E;
	}
	.section_map .slide-info .details .mail {
		background-image: url('/img/mail.svg');
		background-position: 1.5rem 0.65rem;
		background-repeat: no-repeat;
		padding: 0.5rem 0 0.5rem calc(1.5rem + 36px);
		margin: 0 -1.5rem 0 -1.5rem;
		border-top: 1px solid #51788E;
	}
	.section_map .slide-info .details .time {
		padding: 0.5rem 10px 0.5rem calc(1.5rem + 36px);
		margin: 0 -1.5rem 0 -1.5rem;
		border-top: 1px solid #51788E;
	}
	.flex-time {
		margin: 0 0 1rem 0;
		line-height: 150%;
	}
	.flex-time > div {
		display: flex;
		width: 100%;
	}
	.flex-time > div > div {
		width: 50%;
	}
	
	.map-info-box {
		width: 100%;
		font-family: 'RedHatDisplay';
		padding:0.5rem;
	}
	.map-info-box h2 {
		font-weight: 800;
		line-height: 150%;
		color: #51788E;
		font-size: 0.9rem;
		margin: 0;
	}
	.map-info-box > div:nth-child(2), .map-info-box > div:nth-child(3) {
		font-weight: 400;
		line-height: 150%;
		color: #51788E;
		font-size: 0.9rem;
	}
	.map-info-box .lang {
		background-image: url('/img/globe.svg');
		background-position: 0 center;
		background-repeat: no-repeat;
		padding: 0 0 0 36px;
		margin: 10px 0 1rem 0;
		color: #51788E;
		font-size: 0.9rem;
		line-height: 24px;
	}
	
	#map {
		height: 100%;
	}
	
	.leaflet-touch .leaflet-bar {
		width: 50px;
		border: 2px solid #51788E !important;
		border-radius: 25px;
		background-color: #fff;
		padding: 5px !important;
	}
	.leaflet-touch .leaflet-bar a {
		width: 36px !important;
		height: 36px !important;
		line-height: 36px !important;
		border-radius: 20px !important;
		background-color: #51788E;
	}
	.leaflet-touch .leaflet-bar a:hover {
		background-color: #000;
	}
	.leaflet-control-zoom-in {
		margin: 0 0 12px 0;
	}
	.leaflet-control-zoom-in, .leaflet-control-zoom-out {
		color: #fff !important;
	}
	.leaflet-bar a.leaflet-disabled {
		background-color: #666 !important;
	}
	.leaflet-top.leaflet-left {
		display: none;
	}
	
	.open-category {
		position: absolute;
		z-index: 9999;
		top: calc(100% + 1rem);
		left: 0;
		right: 0;
		background-color: #fff;
		border: 1px solid #000;
		border-radius: 20px;
		padding: 2.5rem;
		
		display: none;
	}
	.open-category > div {
		max-height: 300px;
		overflow-y: auto;
		overflow-x: hidden;
	}
	.open-category.active {
		display: block;
	}
	.open-category > a {
		position: absolute;
		top: 28px;
		right: 28px;
		width: 20px;
		height: 20px;
		display: block;
		background-color: #51788E;
		border-radius: 50%;
	}
	.open-category > a:before {
		content: '';
		width: 12px;
		height: 2px;
		background-color: #fff;
		position: absolute;
		top: 50%;
		left: 50%;
		transform: translate(-50%,-50%) rotate(45deg);
	}
	.open-category > a:after {
		content: '';
		width: 12px;
		height: 2px;
		background-color: #fff;
		position: absolute;
		top: 50%;
		left: 50%;
		transform: translate(-50%,-50%) rotate(-45deg);
	}
	
	.full-text {
		margin: 0 0 10px 0;
		max-height: 5.3rem;
		overflow: hidden;
		transition: max-height 1s;
		line-height: 150%;
	}
	.full-text.active {
		max-height: 2000px;
	}
	.read-full {
		margin: 0 0 20px 0;
		position: relative;
		display: block;
		padding: 0 0 0 20px;
	}
	.read-full:before {
		content: '';
		width: 10px;
		height: 2px;
		background-color: #51788E;
		display: block;
		top: 50%;
		left: 0;
		position: absolute;
		transform: rotate(45deg);
	}
	.read-full:after {
		content: '';
		width: 10px;
		height: 2px;
		background-color: #51788E;
		display: block;
		top: 50%;
		left: 6px;
		position: absolute;
		transform: rotate(-45deg);
	}
	.read-full.active:before {
		transform: rotate(-45deg);
	}
	.read-full.active:after {
		transform: rotate(45deg);
	}
	
	.ui-widget.ui-widget-content {
		border: 2px solid #51788E !important;
		max-height: 200px;
		overflow-y: auto;
		overflow-x: hidden;
		border-radius: 5px;
		font-size: 0.8rem;
	}
	
	@media (max-width: 540px) {
		.search-desktop {
			display: none;
		}
		.button-search { 
		width: 100%;}
		.box-search input {
			height: 3rem;
		}
		.box-search input.search-text {
		  width: 100%;
		  margin: 0 0 1.2rem 0;
		}
		.box-search input.search-zip {
			width: 100%;
		}
		[name="toglle-search"] {
			width: 100%;
			padding-right: 50px !important;
			margin: 0 0 1.2rem 0;
			background-image: url('/img/i-down.png');
			background-position: right center;
			background-repeat: no-repeat;
		}
		[name="toglle-search"].active {
			background-image: url('/img/i-up.png');
		}
		.mobile-category {
			position: relative;
		}
		.list-category {
			position: absolute;
			top: -5px;
			left: 10px;
			right: 10px;
			background-color: #fff;
			max-height: 300px !important;
			overflow-y: auto;
			z-index: 999;
			padding: 10px;
			border-radius: 20px;
			border: 2px solid #51788E;
			width: auto;
			display: none;
		}
		.list-category.opened {
			display: block;
		}
		.toggle-category-list {
			display: none;
		}
	}
	
	.close-details {
		position: fixed; /*absolute;*/
		top: 40px;
		right: 20px;
		width: 20px;
		height: 20px;
		background-color: #51788E;
		border-radius: 50%;
		
		transform: translate(-50%, -50%);
	}
	@media (max-width: 920px) {
		.close-details {
			position: fixed;
			top: 98px;
			transform: translate(-50%, -50%);
		}
	}
	.close-details:before {
		content: '';
		width: 10px;
		height: 2px;
		background-color: #fff;
		position: absolute;
		top: 50%;
		left: 50%;
		transform: translate(-50%,-50%) rotate(45deg);
	}
	.close-details:after {
		content: '';
		width: 10px;
		height: 2px;
		background-color: #fff;
		position: absolute;
		top: 50%;
		left: 50%;
		transform: translate(-50%,-50%) rotate(-45deg);
	}
	
	.leaflet-container a.leaflet-popup-close-button {
		top: 20px !important;
		right: 20px !important;
		color: #fff !important;
		width: 22px !important;
		height: 22px !important;
		background-color: #51788E !important;
		border-radius: 50% !important;
		line-height: 20px !important;
	}
	
	@media (min-width: 541px) {
		[name="toglle-search"] {
			display: none !important;
		}
	}
	
	@media (max-width: 980px) {
		.section_map .slide-info {
			position: relative;
			width: 100%;
			transform: none !important; /* translate(0,0);  */
		}
		.section_map {
			height: auto;
		}
		.section_map .slide-info.active .toggle {
			display: none;
		}
		#map {
			height:47vh;
		}
		.leaflet-touch .leaflet-bar {
			width: 39px;
		}
		.leaflet-touch .leaflet-bar a {
		  width: 26px !important;
		  height: 26px !important;
		  line-height: 26px !important;
		  border-radius: 50% !important;
		}
		.leaflet-popup-content {
			max-width: 80vw;
		}
		.leaflet-popup-content {
			margin: 10px 20px 10px 16px !important;
		}
		.map-info-box {
			padding: 0;
		}
		.leaflet-top {
		  top: 80px !important;
		}
		.social img {
			width: 30px;
		}
		footer .socials a {
			margin: 0.25rem 0.5rem 0 0;
		}
	}
	
	.home-top-section {
		overflow:visible;
		z-index: 5;
	}
	
	.max-980 {
		width: 980px;
		max-width: 100%;
		margin: 0 auto;
	}
	
	.no-results {
		position: fixed;
		top: 50%;
		left: 50%;
		transform: translate(-50%,-50%);
		background-color: #fff;
		padding: 10px 20px;
		border-radius: 6px;
		border: 2px solid #E32F2F;
		z-index: 99999;
		color: #E32F2F;
		font-size: 0.9rem;
		box-shadow: 0 0 50px rgba(0,0,0,0.2);
	}
	
	.cookiefirst-root > span {
		left: unset !important;
		bottom: 25px !important;
		right: 25px !important;
	}
	
	.accordion {
		
	}
	
	.accordion-item {
		
	}
	
	.accordion-header {
		font-size: 1.2rem;
		background-color: #DBEDF7;
		padding: 0.5rem 1rem;
		border-radius: 6px;
		cursor: pointer;
		position: relative;
		margin: 0;
	}
	.accordion-header:after {
		content: '';
		width: 10px;
		height: 10px;
		border-top: 2px solid #000;
		border-right: 2px solid #000;
		transform: rotate(135deg);
		position: absolute;
		top: 0.8rem;
		right: 1rem;
	}
	
	.accordion-collapse {
		overflow: hidden;
		max-height: 10000px;
		transition: max-height 0.2s, padding 1s;
		padding: 0.5rem 1rem 1rem 1rem;
		margin: 0.5rem 0;
	}
	.accordion-collapse.collapse {
		max-height: 0;
		transition: max-height 0.2s, padding 1s;
		padding: 0 1rem 0 1rem;
	}
	
	.erase {
		position: absolute;
		top: 0.5rem;
		right: 0.5rem;
		width: 1rem;
		height: 1rem;
		display: block;
		display: none;
	}
	.erase:before {
		content: '';
		display: block;
		width: 1rem;
		height: 2px;
		background-color: #333;
		position: absolute;
		top: 50%;
		left: 50%;
		transform: translate(-50%,-50%) rotate(45deg);
	}
	.erase:after {
		content: '';
		display: block;
		width: 1rem;
		height: 2px;
		background-color: #333;
		position: absolute;
		top: 50%;
		left: 50%;
		transform: translate(-50%,-50%) rotate(-45deg);
	}
	
	@media (min-width: 981px) {
		.filter {
			display: block !important;
		}
		.toggle-filter {
			display: none !important; 
		}
	}
	
	
	@media (max-width: 980px) {
		.section_filter {
			padding: 1rem 1rem;
		}
		.filter {
			display: none !important;
		}
		.toggle-filter {
			display: block !important; 
			cursor: pointer;
		}
		.toggle-filter a {
			display: inline-block;
			width: 20px;
			height: 20px;
			background-color: #fff;
			vertical-align: sub;
			margin: 0 0 0 3px;
			border-radius: 50%;
			position: relative;
		}
		.toggle-filter a:before {
			content: '';
			width: 8px;
			height: 2px;
			background-color: #51788E;
			position: absolute;
			top: 50%;
			left: 4px;
			transform: rotate(45deg);
		}
		.toggle-filter a:after {
			content: '';
			width: 8px;
			height: 2px;
			background-color: #51788E;
			position: absolute;
			top: 50%;
			right: 4px;
			transform: rotate(-45deg);
		}
		.toggle-filter a.selected:before {
			transform: rotate(-45deg);
		}
		.toggle-filter a.selected:after {
			transform: rotate(45deg);
		}
			
		.element-filter {
			overflow: hidden;
			max-height: 0;
			margin: 0 !important;
			transition: max-height 0.5s, margin 0.5s;
		}
		.element-filter.selected {
			overflow: hidden;
			max-height: 200px;
			margin: 0 0 0.3rem 0 !important;
		}
	}
	
	.col2input {
		display: flex; 
	}
	.col2input input {
		width: calc(50% - 0.3rem);
	}
	.col2input input:first-child {
		margin-right: 0.3rem;
	}
	.col2input input:last-child {
		margin-left: 0.3rem;
	}

.info-i {
	display: inline-block;
  width: 16px;
  height: 16px;
  line-height: 14px;
  border-radius: 50%;
  border: 1px solid #51788E;
  text-align: center;
  margin: 0 0 3px 5px;
  font-weight: bold;
  font-size: 11px;
  vertical-align: bottom;
  background-color: #f4f4f4;
  font-family: times new roman;
}

@media (max-width: 980px) {
	body.overflow {
		overflow: hidden;
	}
}